diff --git a/package.json b/package.json index d9c00515..7874cf81 100644 --- a/package.json +++ b/package.json @@ -285,6 +285,7 @@ "(([ (attribute_item) (line_comment) ] @header . [ (attribute_item) (line_comment) ]* @header )? . (struct_item) @item)", "(([ (attribute_item) (line_comment) ] @header . [ (attribute_item) (line_comment) ]* @header )? . (impl_item) @item)", "(([ (attribute_item) (line_comment) ] @header . [ (attribute_item) (line_comment) ]* @header )? . (enum_item) @item)", + "(([ (attribute_item) (line_comment) ] @header . [ (attribute_item) (line_comment) ]* @header )? . (field_declaration) @item)", "(match_arm) @arm" ] }, @@ -352,7 +353,7 @@ } }, "scripts": { - "install:all": "yarn install && cd webview-ui && yarn install", + "install:all": "yarn install --frozen-lockfile && cd webview-ui && yarn install --frozen-lockfile", "start:webview": "cd webview-ui && yarn run dev", "build:webview": "cd webview-ui && yarn run build && yarn run check", "vscode:prepublish": "yarn run esbuild-base --minify", @@ -366,26 +367,26 @@ "lint": "tsc --noEmit && eslint src --ext ts" }, "devDependencies": { - "@types/chai": "^4.3.5", - "@types/glob": "^8.0.1", - "@types/mocha": "^10.0.1", - "@types/node": "^20.3.3", - "@types/tar": "^6.1.5", - "@types/vscode": "^1.79.0", - "@types/which": "^3.0.0", + "@types/chai": "5.2.3", + "@types/glob": "8.0.1", + "@types/mocha": "10.0.10", + "@types/node": "24.9.2", + "@types/tar": "6.1.13", + "@types/vscode": "1.105.0", + "@types/which": "3.0.4", "@typescript-eslint/eslint-plugin": "^5.49.0", "@typescript-eslint/parser": "^5.49.0", - "@vscode/test-electron": "^2.2.2", - "chai": "^4.3.7", - "esbuild": "^0.18.11", + "@vscode/test-electron": "2.5.2", + "chai": "6.2.0", + "esbuild": "0.25.11", "eslint": "^8.44.0", - "glob": "^8.1.0", - "mocha": "^10.2.0", - "typescript": "^5.1.6" + "glob": "8.1.0", + "mocha": "11.7.4", + "typescript": "5.9.3" }, "dependencies": { - "tar": "^6.1.15", - "tree-sitter": "^0.22.0", - "which": "^3.0.1" + "tar": "7.5.2", + "tree-sitter": "0.25.0", + "which": "5.0.0" } } diff --git a/src/BlockMode.ts b/src/BlockMode.ts index deba34c7..7d7b545e 100644 --- a/src/BlockMode.ts +++ b/src/BlockMode.ts @@ -43,15 +43,30 @@ function selectBlock(): void { return; } - const cursorIndex = activeEditor.document.offsetAt(activeEditor.selection.active); - const selection = fileTree.selectBlock(cursorIndex); - if (selection !== undefined) { - activeEditor.selection = selection.toVscodeSelection(); - activeEditor.revealRange( - activeEditor.selection, - vscode.TextEditorRevealType.InCenterIfOutsideViewport - ); + const bases = activeEditor.selections.length ? activeEditor.selections : [activeEditor.selection]; + const nextSelections = bases + .map((s) => { + const idx = activeEditor.document.offsetAt(s.active); + const sel = fileTree.selectBlock(idx); + return sel?.toVscodeSelection(); + }) + .filter((s): s is vscode.Selection => !!s); + + if (nextSelections.length === 0) { + return; + } + + const merged = mergeSelections(nextSelections); + if (merged.length === 1) { + activeEditor.selection = merged[0]; + } else { + activeEditor.selections = merged; } + + activeEditor.revealRange( + merged[0] ?? activeEditor.selection, + vscode.TextEditorRevealType.InCenterIfOutsideViewport + ); } function updateSelection(direction: UpdateSelectionDirection): void { @@ -62,15 +77,34 @@ function updateSelection(direction: UpdateSelectionDirection): void { return; } - const selection = fileTree.resolveVscodeSelection(activeEditor.selection); - if (selection !== undefined) { + const bases = activeEditor.selections.length ? activeEditor.selections : [activeEditor.selection]; + const updatedSelections: vscode.Selection[] = []; + + for (const base of bases) { + const selection = fileTree.resolveVscodeSelection(base); + if (selection === undefined) { + continue; + } + selection.update(direction, fileTree.blocks); - activeEditor.selection = selection.toVscodeSelection(); - activeEditor.revealRange( - activeEditor.selection, - vscode.TextEditorRevealType.InCenterIfOutsideViewport - ); + updatedSelections.push(selection.toVscodeSelection()); } + + if (updatedSelections.length === 0) { + return; + } + + const merged = mergeSelections(updatedSelections); + if (merged.length === 1) { + activeEditor.selection = merged[0]; + } else { + activeEditor.selections = merged; + } + + activeEditor.revealRange( + merged[0] ?? activeEditor.selection, + vscode.TextEditorRevealType.InCenterIfOutsideViewport + ); } async function moveSelection(direction: MoveSelectionDirection): Promise { @@ -80,23 +114,55 @@ async function moveSelection(direction: MoveSelectionDirection): Promise { return; } - const selection = fileTree.resolveVscodeSelection(activeEditor.selection); - if (selection === undefined) { - return; - } + const bases = activeEditor.selections.length ? activeEditor.selections : [activeEditor.selection]; - const result = await fileTree.moveSelection(selection, direction); - switch (result.status) { - case "ok": + // Single-selection: preserve existing UX + if (bases.length === 1) { + const selection = fileTree.resolveVscodeSelection(bases[0]); + if (selection === undefined) { + return; + } + + const result = await fileTree.moveSelection(selection, direction); + if (result.status === "ok") { activeEditor.selection = result.result; activeEditor.revealRange(result.result, vscode.TextEditorRevealType.InCenterIfOutsideViewport); - break; - - case "err": - // TODO: add this as a text box above the cursor (can vscode do that?) + } else { getLogger().log(result.result); + } - break; + return; + } + + // Multi-selection: order moves to reduce interference + const order = bases.map((_, i) => i); + order.sort((i, j) => { + const a = bases[i].start; + const b = bases[j].start; + const cmp = a.line - b.line || a.character - b.character; + return direction === "swap-next" ? -cmp : cmp; // down: bottom->top, up: top->bottom + }); + + const results: (vscode.Selection | undefined)[] = bases.slice(); + for (const i of order) { + const current = results[i] ?? bases[i]; + const selection = fileTree.resolveVscodeSelection(current); + if (selection === undefined) { + continue; + } + + const res = await fileTree.moveSelection(selection, direction); + if (res.status === "ok") { + results[i] = res.result; + } else { + getLogger().log(res.result); + } + } + + const finalSelections = results.filter((s): s is vscode.Selection => !!s); + if (finalSelections.length) { + activeEditor.selections = finalSelections; + activeEditor.revealRange(finalSelections[0], vscode.TextEditorRevealType.InCenterIfOutsideViewport); } } @@ -108,43 +174,133 @@ function navigate(direction: "up" | "down" | "left" | "right"): void { return; } - const selection = fileTree.resolveVscodeSelection(activeEditor.selection); + const bases = activeEditor.selections.length ? activeEditor.selections : [activeEditor.selection]; const blocks = fileTree.blocks; - const parent = selection?.getParent(blocks); - const previous = selection?.getPrevious(blocks); - const next = selection?.getNext(blocks); - - let newPosition; - switch (direction) { - case "up": - if (parent) { - newPosition = parent.toVscodeSelection().start; - } - break; - case "down": - if (parent) { - newPosition = parent.toVscodeSelection().end; - } - break; - case "left": - if (previous) { - newPosition = previous.toVscodeSelection().start; - } - break; - case "right": - if (next) { - newPosition = next.toVscodeSelection().start; - } - break; + const nextCursors: vscode.Selection[] = []; + + for (const base of bases) { + const selection = fileTree.resolveVscodeSelection(base); + if (selection === undefined) { + continue; + } + + const parent = selection.getParent(blocks); + const previous = selection.getPrevious(blocks); + const next = selection.getNext(blocks); + + let newPosition: vscode.Position | undefined; + switch (direction) { + case "up": + if (parent) { + newPosition = parent.toVscodeSelection().start; + } + break; + case "down": + if (parent) { + newPosition = parent.toVscodeSelection().end; + } + break; + case "left": + if (previous) { + newPosition = previous.toVscodeSelection().start; + } + break; + case "right": + if (next) { + newPosition = next.toVscodeSelection().start; + } + break; + } + + if (newPosition) { + nextCursors.push(new vscode.Selection(newPosition, newPosition)); + } + } + + if (nextCursors.length === 0) { + return; + } + + const deduped = dedupeSelections(nextCursors); + activeEditor.selections = deduped; + activeEditor.revealRange(deduped[0], vscode.TextEditorRevealType.InCenterIfOutsideViewport); +} + +/** + * Merge overlapping or touching selections (used to keep UX tidy). + */ +function mergeSelections(selections: vscode.Selection[]): vscode.Selection[] { + if (selections.length <= 1) { + return selections; + } + + const ranges = selections.map((s) => new vscode.Range(s.start, s.end)); + ranges.sort((a, b) => { + if (a.start.isBefore(b.start)) { + return -1; + } + if (a.start.isAfter(b.start)) { + return 1; + } + if (a.end.isBefore(b.end)) { + return -1; + } + if (a.end.isAfter(b.end)) { + return 1; + } + return 0; + }); + + const merged: vscode.Range[] = []; + for (const r of ranges) { + const last = merged.at(-1); + if (last === undefined) { + merged.push(r); + } else if (!r.start.isAfter(last.end)) { + const end = r.end.isAfter(last.end) ? r.end : last.end; + merged[merged.length - 1] = new vscode.Range(last.start, end); + } else { + merged.push(r); + } } - if (newPosition) { - activeEditor.selection = new vscode.Selection(newPosition, newPosition); - activeEditor.revealRange( - activeEditor.selection, - vscode.TextEditorRevealType.InCenterIfOutsideViewport - ); + return merged.map((r) => new vscode.Selection(r.start, r.end)); +} + +/** + * De-duplicate selections while preserving order. + */ +function dedupeSelections(selections: vscode.Selection[]): vscode.Selection[] { + if (selections.length <= 1) { + return selections; + } + + selections.sort((a, b) => { + if (a.start.isBefore(b.start)) { + return -1; + } + if (a.start.isAfter(b.start)) { + return 1; + } + if (a.end.isBefore(b.end)) { + return -1; + } + if (a.end.isAfter(b.end)) { + return 1; + } + return 0; + }); + + const seen = new Set(); + const out: vscode.Selection[] = []; + for (const s of selections) { + const key = `${s.start.line}:${s.start.character}-${s.end.line}:${s.end.character}`; + if (!seen.has(key)) { + seen.add(key); + out.push(s); + } } + return out; } function updateTargetHighlights(editor: vscode.TextEditor, vscodeSelection: vscode.Selection): void { diff --git a/src/FileTree.ts b/src/FileTree.ts index 079a854a..7bf24651 100644 --- a/src/FileTree.ts +++ b/src/FileTree.ts @@ -48,7 +48,7 @@ export class FileTree implements vscode.Disposable { const queryStrings = getLanguageConfig(document.languageId).queries; if (queryStrings !== undefined) { - const language = parser.getLanguage() as Language; + const language = parser.getLanguage(); this.queries = queryStrings.map((q) => new Query(language, q)); this.blocks = getQueryBlocks(this.tree.rootNode, this.queries); } diff --git a/src/Installer.ts b/src/Installer.ts index f8ab2516..51a4be82 100644 --- a/src/Installer.ts +++ b/src/Installer.ts @@ -4,6 +4,7 @@ import * as tar from "tar"; import * as vscode from "vscode"; import { ExecException, ExecOptions, exec } from "child_process"; import { Result, err, ok } from "./result"; +import Parser from "tree-sitter"; import { existsSync } from "fs"; import { getLogger } from "./outputChannel"; import { mkdir } from "fs/promises"; @@ -12,7 +13,7 @@ import which from "which"; const NPM_INSTALL_URL = "https://nodejs.org/en/download"; -export type Language = NonNullable; +export type Language = Parser.Language; export function getAbsoluteParserDir(parsersDir: string, parserName: string): string { return path.resolve(path.join(parsersDir, parserName)); @@ -91,7 +92,7 @@ export async function downloadAndBuildParser( const installResult = await runCmd( `${npm} pack --verbose --json --pack-destination ${parserDir} ${parserNpmPackage}`, {}, - onData + (d) => onData?.(d.toString()) ); let tarFilename: string | undefined = undefined; @@ -138,7 +139,9 @@ export async function downloadAndBuildParser( } // if it fails, try to build it - const buildResult = await runCmd(`${treeSitterCli} generate`, { cwd: parserDir }, onData); + const buildResult = await runCmd(`${treeSitterCli} generate`, { cwd: parserDir }, (d) => + onData?.(d.toString()) + ); if (buildResult.status === "err") { const msg = "Failed to build parser using tree-sitter cli > " + @@ -159,18 +162,18 @@ export async function downloadAndBuildParser( async function runCmd( cmd: string, options: ExecOptions = {}, - onData?: (data: string) => void + onData?: (data: Buffer) => void ): Promise> { const logger = getLogger(); logger.log(`Running command: ${cmd}`); const logs: string[] = []; return await new Promise((resolve) => { - const proc = exec(cmd, options, (error, stdout: string, _stderr) => { + const proc = exec(cmd, options, (error, stdout: string | Buffer, _stderr) => { if (error !== null) { resolve(err([error, logs])); } else { - resolve(ok(stdout)); + resolve(ok(stdout.toString())); } }); diff --git a/src/test/suite/BlockTrees.test.ts b/src/test/suite/BlockTrees.test.ts index c17dfa60..31067325 100644 --- a/src/test/suite/BlockTrees.test.ts +++ b/src/test/suite/BlockTrees.test.ts @@ -1,7 +1,6 @@ import * as vscode from "vscode"; import { BlockTree, getBlockTrees } from "../../BlockTree"; -import { Language } from "../../Installer"; import { Query } from "tree-sitter"; import { expect } from "chai"; import { openDocument } from "./testUtils"; @@ -63,7 +62,7 @@ suite("BlockTrees", function () { test("resolves sequential blocks", async function () { const text = "fn foo() {}\nfn bar() {}"; const { fileTree } = await openDocument(text, "rust"); - const lang = fileTree.parser.getLanguage() as Language; + const lang = fileTree.parser.getLanguage(); const queries = [new Query(lang, "(function_item) @item")]; const blocksTrees = getBlockTrees(fileTree.tree, queries); @@ -98,7 +97,7 @@ fn grandma() { } `; const { fileTree } = await openDocument(text, "rust"); - const lang = fileTree.parser.getLanguage() as Language; + const lang = fileTree.parser.getLanguage(); const queries = [new Query(lang, "(function_item) @item")]; const blocksTrees = getBlockTrees(fileTree.tree, queries); diff --git a/src/test/suite/Installer.test.ts b/src/test/suite/Installer.test.ts index 1a80c73b..ac501c5d 100644 --- a/src/test/suite/Installer.test.ts +++ b/src/test/suite/Installer.test.ts @@ -49,7 +49,7 @@ suite("Installer integration tests", function () { ["Ruby", "ruby", "def foo\nend\ndef bar\nend"], // ["SQL", "sql"], ["HTML", "html", ""], - ["CSS", "css", "body { color: red; }"], + // ["CSS", "css", "body { color: red; }"], ["YAML", "yaml", "key: value"], ["JSON", "json", '{ "key": "value" }'], ["XML", "xml"], diff --git a/src/test/suite/extension.test.ts b/src/test/suite/extension.test.ts index c0975700..2534b20b 100644 --- a/src/test/suite/extension.test.ts +++ b/src/test/suite/extension.test.ts @@ -22,25 +22,41 @@ suite("codeBlocks commands", function () { }: { content: string; selectionCommands: SelectionCommand[]; - expectedSelectionContent: string; + expectedSelectionContent: string | string[]; language?: string; }): Promise { + if (typeof expectedSelectionContent === "string") { + expectedSelectionContent = [expectedSelectionContent]; + } + const cursor = "@"; - const cursorIndex = content.indexOf(cursor); - content = content.replace(cursor, ""); + const selections = []; + let cursorIndex = content.indexOf(cursor); + while (cursorIndex > -1) { + content = content.replace(cursor, ""); + selections.push(cursorIndex); + cursorIndex = content.indexOf(cursor); + } + const { activeEditor } = await openDocument(content, language); - activeEditor.selection = new vscode.Selection( - activeEditor.document.positionAt(cursorIndex), - activeEditor.document.positionAt(cursorIndex) + activeEditor.selections = selections.map( + (cursorIndex) => + new vscode.Selection( + activeEditor.document.positionAt(cursorIndex), + activeEditor.document.positionAt(cursorIndex) + ) ); for (const command of selectionCommands) { await vscode.commands.executeCommand(command); } - const selectionContent = activeEditor.document.getText(activeEditor.selection); + const selectionContent = activeEditor.selections + .map((s) => activeEditor.document.getText(s)) + .join("\n--\n"); + expect(selectionContent).to.equal( - expectedSelectionContent, + expectedSelectionContent.join("\n--\n"), "selection commands didn't produce desired selection" ); @@ -54,7 +70,7 @@ suite("codeBlocks commands", function () { selectionCommands: SelectionCommand[]; moveCommands: MoveCommand[]; expectedContent: string; - expectedSelectionContent: string; + expectedSelectionContent: string | string[]; language: string; }; async function testMoveCommands({ @@ -65,6 +81,10 @@ suite("codeBlocks commands", function () { expectedSelectionContent, language, }: TestMoveCommandsParams): Promise { + if (typeof expectedSelectionContent === "string") { + expectedSelectionContent = [expectedSelectionContent]; + } + const activeEditor = await testSelectionCommands({ content, selectionCommands, @@ -77,11 +97,13 @@ suite("codeBlocks commands", function () { } const newContent = activeEditor.document.getText(); - const newSelectionContent = activeEditor.document.getText(activeEditor.selection); + const newSelectionContent = activeEditor.selections + .map((s) => activeEditor.document.getText(s)) + .join("\n--\n"); expect(newContent).to.equal(expectedContent, "move command didn't produce desired content"); expect(newSelectionContent).to.equal( - expectedSelectionContent, + expectedSelectionContent.join("\n--\n"), "move command didn't preserve selection content" ); } @@ -96,7 +118,7 @@ suite("codeBlocks commands", function () { content: string; selectionCommands: SelectionCommand[]; navigateCommands: NavigationCommand[]; - expectedSelectionContent: string; + expectedSelectionContent: string | string[]; language: string; }; async function testNavigateCommands({ @@ -106,13 +128,13 @@ suite("codeBlocks commands", function () { expectedSelectionContent, language, }: TestNavigationCommandsParams): Promise { + const expectedCursorLocations = content.replace(/@/g, ""); const targetCursor = "#"; - const expectedNavigationDestinationIndex = content.replace(/@/g, "").indexOf(targetCursor); - expect(expectedNavigationDestinationIndex).not.to.equal( + expect(expectedCursorLocations.indexOf(targetCursor)).not.to.equal( -1, `target cursor '${targetCursor}' missing from input:\n${content}\n\n` ); - content = content.replace(targetCursor, ""); + content = content.replace(/#/g, ""); const activeEditor = await testSelectionCommands({ content, @@ -125,22 +147,21 @@ suite("codeBlocks commands", function () { await vscode.commands.executeCommand(command); } - const newCursorIndex = activeEditor.document.offsetAt(activeEditor.selection.active); - - const cleanContent = content.replace(/@/g, ""); - expect(newCursorIndex).to.equal( - expectedNavigationDestinationIndex, - "navigation commands didn't arrive to expected destination" + - `\n\tactual: ${ - cleanContent.substring(0, newCursorIndex) + - targetCursor + - cleanContent.substring(newCursorIndex) - }` + - `\n\texpect: ${ - cleanContent.substring(0, expectedNavigationDestinationIndex) + - targetCursor + - cleanContent.substring(expectedNavigationDestinationIndex) - }\n` + let actualCursorLocations = content.replace(/@/g, ""); + const newCursorIndices = activeEditor.selections.map((s) => activeEditor.document.offsetAt(s.active)); + + for (let i = 0; i < newCursorIndices.length; i++) { + const index = newCursorIndices[i] + i; + + actualCursorLocations = + actualCursorLocations.substring(0, index) + + targetCursor + + actualCursorLocations.substring(index); + } + + expect(actualCursorLocations).to.equal( + expectedCursorLocations, + "navigation commands didn't arrive to expected destination" ); } @@ -507,4 +528,76 @@ source_file [0:0 - 0:12] }).timeout(process.env.TEST_TIMEOUT ?? "1m"); }); }); + + suite("Multiple cursor commands", function () { + suite(".selectBlock", function () { + test("supports multi-cursor", async function () { + await testSelectionCommands({ + content: "function @a(){}\nfunction b(){}\nfunction @c(){}", + selectionCommands: ["codeBlocks.selectBlock"], + expectedSelectionContent: ["a", "c"], + language: "typescript", + }); + }); + }); + + suite(".selectNext", function () { + test("updates each selection independently", async function () { + await testSelectionCommands({ + content: "function @a(){}\nfunction b(){}\nfunction @c(){}", + selectionCommands: ["codeBlocks.selectBlock", "codeBlocks.selectNext"], + expectedSelectionContent: ["a()", "c()"], + language: "typescript", + }); + }); + }); + + suite(".navigateDown", function () { + test("moves cursors to next siblings", async function () { + await testNavigateCommands({ + content: "let @a, @#b, #c;", + selectionCommands: ["codeBlocks.selectBlock"], + navigateCommands: ["codeBlocks.navigateDown"], + expectedSelectionContent: ["a", "b"], + language: "typescript", + }); + }); + }); + + suite(".moveDown", function () { + test("swaps each selected element with its next sibling", async function () { + await testMoveCommands({ + content: "fn main() { let a = [@1, 2, @3]; }", + selectionCommands: ["codeBlocks.selectBlock"], + moveCommands: ["codeBlocks.moveDown"], + expectedContent: "fn main() { let a = [2, 1, 3]; }", + expectedSelectionContent: ["1", "3"], + language: "rust", + }); + }); + + test("respects query-generated blocks", async function () { + await testMoveCommands({ + content: `\ +pub struct RustStruct { + f1: i@32, + f2: i@32, + #[trait] + f3: i32, +}`, + selectionCommands: ["codeBlocks.selectBlock", "codeBlocks.selectParent"], + moveCommands: ["codeBlocks.moveDown"], + expectedContent: `\ +pub struct RustStruct { + #[trait] + f3: i32, + f1: i32, + f2: i32, +}`, + expectedSelectionContent: ["f1: i32", "f2: i32"], + language: "rust", + }); + }); + }); + }); }); diff --git a/src/test/suite/index.ts b/src/test/suite/index.ts index 5704f406..e18f884d 100644 --- a/src/test/suite/index.ts +++ b/src/test/suite/index.ts @@ -14,7 +14,7 @@ export async function run(): Promise { const testsRoot = path.resolve(__dirname, ".."); return new Promise((c, e) => { - glob("**/**.test.js", { cwd: testsRoot }, (err, files) => { + glob.glob("**/**.test.js", { cwd: testsRoot }, (err, files) => { if (err) { return e(err); } diff --git a/test-parsers/tree-sitter-rust/bindings/node/binding_test.js b/test-parsers/tree-sitter-rust/bindings/node/binding_test.js index afede30a..55becacf 100644 --- a/test-parsers/tree-sitter-rust/bindings/node/binding_test.js +++ b/test-parsers/tree-sitter-rust/bindings/node/binding_test.js @@ -1,9 +1,9 @@ -/// - const assert = require("node:assert"); const { test } = require("node:test"); +const Parser = require("tree-sitter"); + test("can load grammar", () => { - const parser = new (require("tree-sitter"))(); + const parser = new Parser(); assert.doesNotThrow(() => parser.setLanguage(require("."))); }); diff --git a/test-parsers/tree-sitter-rust/bindings/node/index.js b/test-parsers/tree-sitter-rust/bindings/node/index.js index 6657bcf4..53e68213 100644 --- a/test-parsers/tree-sitter-rust/bindings/node/index.js +++ b/test-parsers/tree-sitter-rust/bindings/node/index.js @@ -1,6 +1,10 @@ const root = require("path").join(__dirname, "..", ".."); -module.exports = require("node-gyp-build")(root); +module.exports = + typeof process.versions.bun === "string" + // Support `bun build --compile` by being statically analyzable enough to find the .node file at build-time + ? require(`../../prebuilds/${process.platform}-${process.arch}/tree-sitter-rust.node`) + : require("node-gyp-build")(root); try { module.exports.nodeTypeInfo = require("../../src/node-types.json"); diff --git a/test-parsers/tree-sitter-rust/grammar.js b/test-parsers/tree-sitter-rust/grammar.js index 386770c2..1907a3a3 100644 --- a/test-parsers/tree-sitter-rust/grammar.js +++ b/test-parsers/tree-sitter-rust/grammar.js @@ -107,7 +107,6 @@ module.exports = grammar({ [$.scoped_identifier, $.scoped_type_identifier], [$.parameters, $._pattern], [$.parameters, $.tuple_struct_pattern], - [$.type_parameters, $.for_lifetimes], [$.array_expression], [$.visibility_modifier], [$.visibility_modifier, $.scoped_identifier, $.scoped_type_identifier], @@ -210,8 +209,8 @@ module.exports = grammar({ ), fragment_specifier: _ => choice( - 'block', 'expr', 'ident', 'item', 'lifetime', 'literal', 'meta', 'pat', - 'path', 'stmt', 'tt', 'ty', 'vis', + 'block', 'expr', 'expr_2021', 'ident', 'item', 'lifetime', 'literal', 'meta', 'pat', + 'pat_param', 'path', 'stmt', 'tt', 'ty', 'vis', ), _tokens: $ => choice( @@ -239,9 +238,9 @@ module.exports = grammar({ alias(choice(...primitiveTypes), $.primitive_type), prec.right(repeat1(choice(...TOKEN_TREE_NON_SPECIAL_PUNCTUATION))), '\'', - 'as', 'async', 'await', 'break', 'const', 'continue', 'default', 'enum', 'fn', 'for', 'if', 'impl', - 'let', 'loop', 'match', 'mod', 'pub', 'return', 'static', 'struct', 'trait', 'type', - 'union', 'unsafe', 'use', 'where', 'while', + 'as', 'async', 'await', 'break', 'const', 'continue', 'default', 'enum', 'fn', 'for', 'gen', + 'if', 'impl', 'let', 'loop', 'match', 'mod', 'pub', 'return', 'static', 'struct', 'trait', + 'type', 'union', 'unsafe', 'use', 'where', 'while', ), // Section - Declarations @@ -426,6 +425,7 @@ module.exports = grammar({ 'type', field('name', $._type_identifier), field('type_parameters', optional($.type_parameters)), + optional($.where_clause), '=', field('type', $._type), optional($.where_clause), @@ -466,8 +466,10 @@ module.exports = grammar({ where_clause: $ => prec.right(seq( 'where', - sepBy1(',', $.where_predicate), - optional(','), + optional(seq( + sepBy1(',', $.where_predicate), + optional(','), + )), )), where_predicate: $ => seq( @@ -549,11 +551,9 @@ module.exports = grammar({ sepBy1(',', seq( repeat($.attribute_item), choice( - $.lifetime, $.metavariable, - $._type_identifier, - $.constrained_type_parameter, - $.optional_type_parameter, + $.type_parameter, + $.lifetime_parameter, $.const_parameter, ), )), @@ -566,21 +566,36 @@ module.exports = grammar({ field('name', $.identifier), ':', field('type', $._type), + optional( + seq( + '=', + field('value', + choice( + $.block, + $.identifier, + $._literal, + $.negative_literal, + ), + ), + ), + ), ), - constrained_type_parameter: $ => seq( - field('left', choice($.lifetime, $._type_identifier)), - field('bounds', $.trait_bounds), - ), + type_parameter: $ => prec(1, seq( + field('name', $._type_identifier), + optional(field('bounds', $.trait_bounds)), + optional( + seq( + '=', + field('default_type', $._type), + ), + ), + )), - optional_type_parameter: $ => seq( - field('name', choice( - $._type_identifier, - $.constrained_type_parameter, - )), - '=', - field('default_type', $._type), - ), + lifetime_parameter: $ => prec(1, seq( + field('name', $.lifetime), + optional(field('bounds', $.trait_bounds)), + )), let_declaration: $ => seq( 'let', @@ -638,7 +653,7 @@ module.exports = grammar({ ), use_wildcard: $ => seq( - optional(seq($._path, '::')), + optional(seq(optional($._path), '::')), '*', ), @@ -817,12 +832,26 @@ module.exports = grammar({ field('type_arguments', $.type_arguments), ), - bounded_type: $ => prec.left(-1, choice( - seq($.lifetime, '+', $._type), - seq($._type, '+', $._type), - seq($._type, '+', $.lifetime), + bounded_type: $ => prec.left(-1, seq( + choice($.lifetime, $._type, $.use_bounds), + '+', + choice($.lifetime, $._type, $.use_bounds), )), + use_bounds: $ => seq( + 'use', + token(prec(1, '<')), + sepBy( + ',', + choice( + $.lifetime, + $._type_identifier, + ), + ), + optional(','), + '>', + ), + type_arguments: $ => seq( token(prec(1, '<')), sepBy1(',', seq( @@ -864,14 +893,15 @@ module.exports = grammar({ abstract_type: $ => seq( 'impl', optional(seq('for', $.type_parameters)), - field('trait', choice( + field('trait', prec(1, choice( $._type_identifier, $.scoped_type_identifier, $.removed_trait_bound, $.generic_type, $.function_type, $.tuple_type, - )), + $.bounded_type, + ))), ), dynamic_type: $ => seq( @@ -882,6 +912,7 @@ module.exports = grammar({ $.scoped_type_identifier, $.generic_type, $.function_type, + $.tuple_type, )), ), @@ -931,6 +962,7 @@ module.exports = grammar({ _expression_ending_with_block: $ => choice( $.unsafe_block, $.async_block, + $.gen_block, $.try_block, $.block, $.if_expression, @@ -1017,7 +1049,10 @@ module.exports = grammar({ reference_expression: $ => prec(PREC.unary, seq( '&', - optional($.mutable_specifier), + choice( + seq('raw', choice('const', $.mutable_specifier)), + optional($.mutable_specifier), + ), field('value', $._expression), )), @@ -1257,6 +1292,7 @@ module.exports = grammar({ closure_expression: $ => prec(PREC.closure, seq( optional('static'), + optional('async'), optional('move'), field('parameters', $.closure_parameters), choice( @@ -1311,6 +1347,12 @@ module.exports = grammar({ $.block, ), + gen_block: $ => seq( + 'gen', + optional('move'), + $.block, + ), + try_block: $ => seq( 'try', $.block, @@ -1331,6 +1373,7 @@ module.exports = grammar({ alias(choice(...primitiveTypes), $.identifier), $.identifier, $.scoped_identifier, + $.generic_pattern, $.tuple_pattern, $.tuple_struct_pattern, $.struct_pattern, @@ -1348,6 +1391,15 @@ module.exports = grammar({ '_', ), + generic_pattern: $ => seq( + choice( + $.identifier, + $.scoped_identifier, + ), + '::', + field('type_arguments', $.type_arguments), + ), + tuple_pattern: $ => seq( '(', sepBy(',', choice($._pattern, $.closure_expression)), @@ -1405,20 +1457,29 @@ module.exports = grammar({ $._pattern, )), - range_pattern: $ => seq( - choice( - $._literal_pattern, - $._path, - ), - choice( - seq( - choice('...', '..=', '..'), - choice( - $._literal_pattern, - $._path, + range_pattern: $ => choice( + seq( + field('left', choice( + $._literal_pattern, + $._path, + )), + choice( + seq( + choice('...', '..=', '..'), + field('right', choice( + $._literal_pattern, + $._path, + )), ), + '..', ), - '..', + ), + seq( + choice('..=', '..'), + field('right', choice( + $._literal_pattern, + $._path, + )), ), ), @@ -1584,11 +1645,12 @@ module.exports = grammar({ identifier: _ => /(r#)?[_\p{XID_Start}][_\p{XID_Continue}]*/, - shebang: _ => /#![\s]*[^\[].+/, + shebang: _ => /#![\r\f\t\v ]*([^\[\n].*)?\n/, _reserved_identifier: $ => alias(choice( 'default', 'union', + 'gen', ), $.identifier), _type_identifier: $ => alias($.identifier, $.type_identifier), @@ -1608,8 +1670,7 @@ module.exports = grammar({ * @param {RuleOrLiteral} sep - The separator to use. * @param {RuleOrLiteral} rule * - * @return {SeqRule} - * + * @returns {SeqRule} */ function sepBy1(sep, rule) { return seq(rule, repeat(seq(sep, rule))); @@ -1622,8 +1683,7 @@ function sepBy1(sep, rule) { * @param {RuleOrLiteral} sep - The separator to use. * @param {RuleOrLiteral} rule * - * @return {ChoiceRule} - * + * @returns {ChoiceRule} */ function sepBy(sep, rule) { return optional(sepBy1(sep, rule)); diff --git a/test-parsers/tree-sitter-rust/package.json b/test-parsers/tree-sitter-rust/package.json index 9a4c2e8c..1d126a06 100644 --- a/test-parsers/tree-sitter-rust/package.json +++ b/test-parsers/tree-sitter-rust/package.json @@ -1,16 +1,22 @@ { "name": "tree-sitter-rust", - "version": "0.23.0", + "version": "0.24.0", "description": "Rust grammar for tree-sitter", - "repository": "github:tree-sitter/tree-sitter-rust", + "repository": "https://github.com/tree-sitter/tree-sitter-rust", "license": "MIT", - "author": "Maxim Sokolov ", + "author": { + "name": "Maxim Sokolov", + "email": "maxim0xff@gmail.com" + }, "contributors": [ - "Max Brunsfeld ", - "Amaan Qureshi " - ], - "maintainers": [ - "Amaan Qureshi " + { + "name": "Max Brunsfeld", + "email": "maxbrunsfeld@gmail.com" + }, + { + "name": "Amaan Qureshi", + "email": "amaanq12@gmail.com" + } ], "main": "bindings/node", "types": "bindings/node", @@ -22,95 +28,37 @@ ], "files": [ "grammar.js", + "tree-sitter.json", "binding.gyp", "prebuilds/**", "bindings/node/*", "queries/*", - "src/**" + "src/**", + "*.wasm" ], "dependencies": { - "node-addon-api": "^8.1.0", - "node-gyp-build": "^4.8.2" + "node-addon-api": "^8.2.2", + "node-gyp-build": "^4.8.4" + }, + "devDependencies": { + "eslint": "^9.15.0", + "eslint-config-treesitter": "^1.0.2", + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.24.4" }, "peerDependencies": { - "tree-sitter": "^0.21.1" + "tree-sitter": "^0.22.1" }, "peerDependenciesMeta": { "tree-sitter": { "optional": true } }, - "devDependencies": { - "eslint": "^8.57.0", - "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.23.0", - "prebuildify": "^6.0.1" - }, "scripts": { "install": "node-gyp-build", - "lint": "grammar.js", + "lint": "eslint grammar.js", "prestart": "tree-sitter build --wasm", "start": "tree-sitter playground", "test": "node --test bindings/node/*_test.js" - }, - "tree-sitter": [ - { - "scope": "source.rust", - "injection-regex": "rust", - "file-types": [ - "rs" - ], - "highlights": [ - "queries/highlights.scm" - ], - "injections": [ - "queries/injections.scm" - ], - "tags": [ - "queries/tags.scm" - ] - } - ], - "eslintConfig": { - "env": { - "commonjs": true, - "es2021": true - }, - "extends": "google", - "parserOptions": { - "ecmaVersion": "latest", - "sourceType": "module" - }, - "rules": { - "arrow-parens": "off", - "camel-case": "off", - "indent": [ - "error", - 2, - { - "SwitchCase": 1 - } - ], - "max-len": [ - "error", - { - "code": 160, - "ignoreComments": true, - "ignoreUrls": true, - "ignoreStrings": true - } - ], - "spaced-comment": [ - "warn", - "always", - { - "line": { - "markers": [ - "/" - ] - } - } - ] - } } } diff --git a/test-parsers/tree-sitter-rust/prebuilds/darwin-arm64/tree-sitter-rust.node b/test-parsers/tree-sitter-rust/prebuilds/darwin-arm64/tree-sitter-rust.node index 4354bd89..d2df251a 100644 Binary files a/test-parsers/tree-sitter-rust/prebuilds/darwin-arm64/tree-sitter-rust.node and b/test-parsers/tree-sitter-rust/prebuilds/darwin-arm64/tree-sitter-rust.node differ diff --git a/test-parsers/tree-sitter-rust/prebuilds/darwin-x64/tree-sitter-rust.node b/test-parsers/tree-sitter-rust/prebuilds/darwin-x64/tree-sitter-rust.node index 2b98115a..7071c52d 100644 Binary files a/test-parsers/tree-sitter-rust/prebuilds/darwin-x64/tree-sitter-rust.node and b/test-parsers/tree-sitter-rust/prebuilds/darwin-x64/tree-sitter-rust.node differ diff --git a/test-parsers/tree-sitter-rust/prebuilds/linux-x64/tree-sitter-rust.node b/test-parsers/tree-sitter-rust/prebuilds/linux-x64/tree-sitter-rust.node index 28ff7dd1..2b9fa2ad 100644 Binary files a/test-parsers/tree-sitter-rust/prebuilds/linux-x64/tree-sitter-rust.node and b/test-parsers/tree-sitter-rust/prebuilds/linux-x64/tree-sitter-rust.node differ diff --git a/test-parsers/tree-sitter-rust/prebuilds/win32-x64/tree-sitter-rust.node b/test-parsers/tree-sitter-rust/prebuilds/win32-x64/tree-sitter-rust.node index 3d4f43dd..8083d2e1 100644 Binary files a/test-parsers/tree-sitter-rust/prebuilds/win32-x64/tree-sitter-rust.node and b/test-parsers/tree-sitter-rust/prebuilds/win32-x64/tree-sitter-rust.node differ diff --git a/test-parsers/tree-sitter-rust/queries/highlights.scm b/test-parsers/tree-sitter-rust/queries/highlights.scm index 8bfa3883..48c7284e 100644 --- a/test-parsers/tree-sitter-rust/queries/highlights.scm +++ b/test-parsers/tree-sitter-rust/queries/highlights.scm @@ -110,6 +110,7 @@ "extern" @keyword "fn" @keyword "for" @keyword +"gen" @keyword "if" @keyword "impl" @keyword "in" @keyword @@ -120,6 +121,7 @@ "mod" @keyword "move" @keyword "pub" @keyword +"raw" @keyword "ref" @keyword "return" @keyword "static" @keyword diff --git a/test-parsers/tree-sitter-rust/queries/tags.scm b/test-parsers/tree-sitter-rust/queries/tags.scm index e22f2b2e..943f46bd 100644 --- a/test-parsers/tree-sitter-rust/queries/tags.scm +++ b/test-parsers/tree-sitter-rust/queries/tags.scm @@ -18,7 +18,7 @@ (declaration_list (function_item - name: (identifier) @name)) @definition.method + name: (identifier) @name) @definition.method) ; function definitions diff --git a/test-parsers/tree-sitter-rust/src/grammar.json b/test-parsers/tree-sitter-rust/src/grammar.json index e36731ff..b5cf2b16 100644 --- a/test-parsers/tree-sitter-rust/src/grammar.json +++ b/test-parsers/tree-sitter-rust/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "rust", "word": "identifier", "rules": { @@ -543,6 +544,10 @@ "type": "STRING", "value": "expr" }, + { + "type": "STRING", + "value": "expr_2021" + }, { "type": "STRING", "value": "ident" @@ -567,6 +572,10 @@ "type": "STRING", "value": "pat" }, + { + "type": "STRING", + "value": "pat_param" + }, { "type": "STRING", "value": "path" @@ -1065,6 +1074,10 @@ "type": "STRING", "value": "for" }, + { + "type": "STRING", + "value": "gen" + }, { "type": "STRING", "value": "if" @@ -2234,6 +2247,18 @@ ] } }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "where_clause" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "=" @@ -2536,37 +2561,50 @@ "type": "STRING", "value": "where" }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "where_predicate" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "where_predicate" - } - ] - } - } - ] - }, { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "where_predicate" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "where_predicate" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] }, { "type": "BLANK" @@ -3118,25 +3156,17 @@ { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "lifetime" - }, { "type": "SYMBOL", "name": "metavariable" }, { "type": "SYMBOL", - "name": "_type_identifier" + "name": "type_parameter" }, { "type": "SYMBOL", - "name": "constrained_type_parameter" - }, - { - "type": "SYMBOL", - "name": "optional_type_parameter" + "name": "lifetime_parameter" }, { "type": "SYMBOL", @@ -3168,25 +3198,17 @@ { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "lifetime" - }, { "type": "SYMBOL", "name": "metavariable" }, { "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "constrained_type_parameter" + "name": "type_parameter" }, { "type": "SYMBOL", - "name": "optional_type_parameter" + "name": "lifetime_parameter" }, { "type": "SYMBOL", @@ -3246,72 +3268,141 @@ "type": "SYMBOL", "name": "_type" } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "negative_literal" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, - "constrained_type_parameter": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + "type_parameter": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "lifetime" + "type": "FIELD", + "name": "bounds", + "content": { + "type": "SYMBOL", + "name": "trait_bounds" + } }, { - "type": "SYMBOL", - "name": "_type_identifier" + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + { + "type": "BLANK" } ] } - }, - { - "type": "FIELD", - "name": "bounds", - "content": { - "type": "SYMBOL", - "name": "trait_bounds" - } - } - ] + ] + } }, - "optional_type_parameter": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { + "lifetime_parameter": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "lifetime" + } + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_type_identifier" + "type": "FIELD", + "name": "bounds", + "content": { + "type": "SYMBOL", + "name": "trait_bounds" + } }, { - "type": "SYMBOL", - "name": "constrained_type_parameter" + "type": "BLANK" } ] } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "default_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] + ] + } }, "let_declaration": { "type": "SEQ", @@ -3615,8 +3706,16 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_path" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -4594,62 +4693,136 @@ "type": "PREC_LEFT", "value": -1, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "lifetime" }, - { - "type": "STRING", - "value": "+" - }, { "type": "SYMBOL", "name": "_type" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "STRING", - "value": "+" }, { "type": "SYMBOL", - "name": "_type" + "name": "use_bounds" } ] }, { - "type": "SEQ", + "type": "STRING", + "value": "+" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "lifetime" }, { - "type": "STRING", - "value": "+" + "type": "SYMBOL", + "name": "_type" }, { "type": "SYMBOL", - "name": "lifetime" + "name": "use_bounds" } ] } ] } }, + "use_bounds": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "use" + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "<" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lifetime" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lifetime" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, "type_arguments": { "type": "SEQ", "members": [ @@ -4913,51 +5086,59 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "for" + "type": "STRING", + "value": "for" + }, + { + "type": "SYMBOL", + "name": "type_parameters" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "trait", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_type_identifier" + }, + { + "type": "SYMBOL", + "name": "removed_trait_bound" }, { "type": "SYMBOL", - "name": "type_parameters" + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "tuple_type" + }, + { + "type": "SYMBOL", + "name": "bounded_type" } ] - }, - { - "type": "BLANK" } - ] - }, - { - "type": "FIELD", - "name": "trait", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "scoped_type_identifier" - }, - { - "type": "SYMBOL", - "name": "removed_trait_bound" - }, - { - "type": "SYMBOL", - "name": "generic_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "tuple_type" - } - ] } } ] @@ -4994,6 +5175,10 @@ { "type": "SYMBOL", "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "tuple_type" } ] } @@ -5243,6 +5428,10 @@ "type": "SYMBOL", "name": "async_block" }, + { + "type": "SYMBOL", + "name": "gen_block" + }, { "type": "SYMBOL", "name": "try_block" @@ -5708,11 +5897,38 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "mutable_specifier" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "raw" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "SYMBOL", + "name": "mutable_specifier" + } + ] + } + ] }, { - "type": "BLANK" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -7406,6 +7622,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -7750,6 +7978,31 @@ } ] }, + "gen_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "gen" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "move" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + }, "try_block": { "type": "SEQ", "members": [ @@ -7909,6 +8162,10 @@ "type": "SYMBOL", "name": "scoped_identifier" }, + { + "type": "SYMBOL", + "name": "generic_pattern" + }, { "type": "SYMBOL", "name": "tuple_pattern" @@ -7971,6 +8228,36 @@ } ] }, + "generic_pattern": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + } + ] + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + }, "tuple_pattern": { "type": "SEQ", "members": [ @@ -8376,62 +8663,110 @@ } }, "range_pattern": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_literal_pattern" + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal_pattern" + }, + { + "type": "SYMBOL", + "name": "_path" + } + ] + } }, { - "type": "SYMBOL", - "name": "_path" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "..." - }, - { - "type": "STRING", - "value": "..=" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "..=" + }, + { + "type": "STRING", + "value": ".." + } + ] }, { - "type": "STRING", - "value": ".." + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal_pattern" + }, + { + "type": "SYMBOL", + "name": "_path" + } + ] + } } ] }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal_pattern" - }, - { - "type": "SYMBOL", - "name": "_path" - } - ] + "type": "STRING", + "value": ".." + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..=" + }, + { + "type": "STRING", + "value": ".." } ] }, { - "type": "STRING", - "value": ".." + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal_pattern" + }, + { + "type": "SYMBOL", + "name": "_path" + } + ] + } } ] } @@ -9234,7 +9569,7 @@ }, "shebang": { "type": "PATTERN", - "value": "#![\\s]*[^\\[].+" + "value": "#![\\r\\f\\t\\v ]*([^\\[\\n].*)?\\n" }, "_reserved_identifier": { "type": "ALIAS", @@ -9248,6 +9583,10 @@ { "type": "STRING", "value": "union" + }, + { + "type": "STRING", + "value": "gen" } ] }, @@ -9324,10 +9663,6 @@ "parameters", "tuple_struct_pattern" ], - [ - "type_parameters", - "for_lifetimes" - ], [ "array_expression" ], @@ -9400,5 +9735,6 @@ "_literal_pattern", "_declaration_statement", "_pattern" - ] -} + ], + "reserved": {} +} \ No newline at end of file diff --git a/test-parsers/tree-sitter-rust/src/node-types.json b/test-parsers/tree-sitter-rust/src/node-types.json index 93c3644b..60a98952 100644 --- a/test-parsers/tree-sitter-rust/src/node-types.json +++ b/test-parsers/tree-sitter-rust/src/node-types.json @@ -153,6 +153,10 @@ "type": "for_expression", "named": true }, + { + "type": "gen_block", + "named": true + }, { "type": "generic_function", "named": true @@ -335,6 +339,10 @@ "type": "const_block", "named": true }, + { + "type": "generic_pattern", + "named": true + }, { "type": "identifier", "named": true @@ -471,6 +479,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "bounded_type", + "named": true + }, { "type": "function_type", "named": true @@ -959,6 +971,10 @@ { "type": "lifetime", "named": true + }, + { + "type": "use_bounds", + "named": true } ] } @@ -1079,6 +1095,10 @@ "type": "for_expression", "named": true }, + { + "type": "gen_block", + "named": true + }, { "type": "generic_function", "named": true @@ -1406,33 +1426,25 @@ "named": true } ] - } - } - }, - { - "type": "constrained_type_parameter", - "named": true, - "fields": { - "bounds": { + }, + "value": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "trait_bounds", + "type": "_literal", "named": true - } - ] - }, - "left": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "lifetime", + "type": "block", "named": true }, { - "type": "type_identifier", + "type": "identifier", + "named": true + }, + { + "type": "negative_literal", "named": true } ] @@ -1493,6 +1505,10 @@ "type": "scoped_type_identifier", "named": true }, + { + "type": "tuple_type", + "named": true + }, { "type": "type_identifier", "named": true @@ -2213,6 +2229,21 @@ ] } }, + { + "type": "gen_block", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + }, { "type": "generic_function", "named": true, @@ -2247,6 +2278,36 @@ } } }, + { + "type": "generic_pattern", + "named": true, + "fields": { + "type_arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + } + ] + } + }, { "type": "generic_type", "named": true, @@ -2615,6 +2676,32 @@ ] } }, + { + "type": "lifetime_parameter", + "named": true, + "fields": { + "bounds": { + "multiple": false, + "required": false, + "types": [ + { + "type": "trait_bounds", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "lifetime", + "named": true + } + ] + } + } + }, { "type": "line_comment", "named": true, @@ -2953,36 +3040,6 @@ "named": true, "fields": {} }, - { - "type": "optional_type_parameter", - "named": true, - "fields": { - "default_type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constrained_type_parameter", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - } - } - }, { "type": "or_pattern", "named": true, @@ -3189,40 +3246,75 @@ { "type": "range_pattern", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_literal_pattern", - "named": true - }, - { - "type": "crate", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "metavariable", - "named": true - }, - { - "type": "scoped_identifier", - "named": true - }, - { - "type": "self", - "named": true - }, - { - "type": "super", - "named": true - } - ] + "fields": { + "left": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_literal_pattern", + "named": true + }, + { + "type": "crate", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "super", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_literal_pattern", + "named": true + }, + { + "type": "crate", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } } }, { @@ -3583,6 +3675,7 @@ { "type": "source_file", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -4379,6 +4472,42 @@ ] } }, + { + "type": "type_parameter", + "named": true, + "fields": { + "bounds": { + "multiple": false, + "required": false, + "types": [ + { + "type": "trait_bounds", + "named": true + } + ] + }, + "default_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, { "type": "type_parameters", "named": true, @@ -4396,11 +4525,7 @@ "named": true }, { - "type": "constrained_type_parameter", - "named": true - }, - { - "type": "lifetime", + "type": "lifetime_parameter", "named": true }, { @@ -4408,11 +4533,7 @@ "named": true }, { - "type": "optional_type_parameter", - "named": true - }, - { - "type": "type_identifier", + "type": "type_parameter", "named": true } ] @@ -4554,6 +4675,25 @@ } } }, + { + "type": "use_bounds", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "lifetime", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, { "type": "use_declaration", "named": true, @@ -4769,7 +4909,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "where_predicate", @@ -5167,6 +5307,10 @@ "type": "expr", "named": false }, + { + "type": "expr_2021", + "named": false + }, { "type": "extern", "named": false @@ -5191,6 +5335,10 @@ "type": "for", "named": false }, + { + "type": "gen", + "named": false + }, { "type": "ident", "named": false @@ -5267,6 +5415,10 @@ "type": "pat", "named": false }, + { + "type": "pat_param", + "named": false + }, { "type": "path", "named": false @@ -5279,6 +5431,10 @@ "type": "pub", "named": false }, + { + "type": "raw", + "named": false + }, { "type": "ref", "named": false diff --git a/test-parsers/tree-sitter-rust/src/parser.c b/test-parsers/tree-sitter-rust/src/parser.c index 58e98a94..9f87b27a 100644 --- a/test-parsers/tree-sitter-rust/src/parser.c +++ b/test-parsers/tree-sitter-rust/src/parser.c @@ -1,19 +1,23 @@ +/* Automatically generated by tree-sitter v0.25.3 */ + #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 3620 -#define LARGE_STATE_COUNT 1004 -#define SYMBOL_COUNT 343 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 3823 +#define LARGE_STATE_COUNT 1063 +#define SYMBOL_COUNT 351 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 153 +#define TOKEN_COUNT 157 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 279 +#define MAX_RESERVED_WORD_SET_SIZE 0 +#define PRODUCTION_ID_COUNT 295 +#define SUPERTYPE_COUNT 5 enum ts_symbol_identifiers { sym_identifier = 1, @@ -34,334 +38,342 @@ enum ts_symbol_identifiers { anon_sym_QMARK = 16, anon_sym_block = 17, anon_sym_expr = 18, - anon_sym_ident = 19, - anon_sym_item = 20, - anon_sym_lifetime = 21, - anon_sym_literal = 22, - anon_sym_meta = 23, - anon_sym_pat = 24, - anon_sym_path = 25, - anon_sym_stmt = 26, - anon_sym_tt = 27, - anon_sym_ty = 28, - anon_sym_vis = 29, - anon_sym_u8 = 30, - anon_sym_i8 = 31, - anon_sym_u16 = 32, - anon_sym_i16 = 33, - anon_sym_u32 = 34, - anon_sym_i32 = 35, - anon_sym_u64 = 36, - anon_sym_i64 = 37, - anon_sym_u128 = 38, - anon_sym_i128 = 39, - anon_sym_isize = 40, - anon_sym_usize = 41, - anon_sym_f32 = 42, - anon_sym_f64 = 43, - anon_sym_bool = 44, - anon_sym_str = 45, - anon_sym_char = 46, - anon_sym_DASH = 47, - anon_sym_SLASH = 48, - anon_sym_PERCENT = 49, - anon_sym_CARET = 50, - anon_sym_BANG = 51, - anon_sym_AMP = 52, - anon_sym_PIPE = 53, - anon_sym_AMP_AMP = 54, - anon_sym_PIPE_PIPE = 55, - anon_sym_LT_LT = 56, - anon_sym_GT_GT = 57, - anon_sym_PLUS_EQ = 58, - anon_sym_DASH_EQ = 59, - anon_sym_STAR_EQ = 60, - anon_sym_SLASH_EQ = 61, - anon_sym_PERCENT_EQ = 62, - anon_sym_CARET_EQ = 63, - anon_sym_AMP_EQ = 64, - anon_sym_PIPE_EQ = 65, - anon_sym_LT_LT_EQ = 66, - anon_sym_GT_GT_EQ = 67, - anon_sym_EQ = 68, - anon_sym_EQ_EQ = 69, - anon_sym_BANG_EQ = 70, - anon_sym_GT = 71, - anon_sym_LT = 72, - anon_sym_GT_EQ = 73, - anon_sym_LT_EQ = 74, - anon_sym_AT = 75, - anon_sym__ = 76, - anon_sym_DOT = 77, - anon_sym_DOT_DOT = 78, - anon_sym_DOT_DOT_DOT = 79, - anon_sym_DOT_DOT_EQ = 80, - anon_sym_COMMA = 81, - anon_sym_COLON_COLON = 82, - anon_sym_DASH_GT = 83, - anon_sym_POUND = 84, - anon_sym_SQUOTE = 85, - anon_sym_as = 86, - anon_sym_async = 87, - anon_sym_await = 88, - anon_sym_break = 89, - anon_sym_const = 90, - anon_sym_continue = 91, - anon_sym_default = 92, - anon_sym_enum = 93, - anon_sym_fn = 94, - anon_sym_for = 95, - anon_sym_if = 96, - anon_sym_impl = 97, - anon_sym_let = 98, - anon_sym_loop = 99, - anon_sym_match = 100, - anon_sym_mod = 101, - anon_sym_pub = 102, - anon_sym_return = 103, - anon_sym_static = 104, - anon_sym_struct = 105, - anon_sym_trait = 106, - anon_sym_type = 107, - anon_sym_union = 108, - anon_sym_unsafe = 109, - anon_sym_use = 110, - anon_sym_where = 111, - anon_sym_while = 112, - anon_sym_extern = 113, - anon_sym_ref = 114, - anon_sym_else = 115, - anon_sym_in = 116, - anon_sym_LT2 = 117, - anon_sym_dyn = 118, - sym_mutable_specifier = 119, - anon_sym_yield = 120, - anon_sym_move = 121, - anon_sym_try = 122, - sym_integer_literal = 123, - aux_sym_string_literal_token1 = 124, - anon_sym_DQUOTE = 125, - sym_char_literal = 126, - sym_escape_sequence = 127, - anon_sym_true = 128, - anon_sym_false = 129, - anon_sym_SLASH_SLASH = 130, - aux_sym_line_comment_token1 = 131, - aux_sym_line_comment_token2 = 132, - aux_sym_line_comment_token3 = 133, - anon_sym_BANG2 = 134, - anon_sym_SLASH2 = 135, - anon_sym_SLASH_STAR = 136, - anon_sym_STAR_SLASH = 137, - sym_shebang = 138, - sym_self = 139, - sym_super = 140, - sym_crate = 141, - sym_metavariable = 142, - sym_string_content = 143, - sym__raw_string_literal_start = 144, - sym_raw_string_literal_content = 145, - sym__raw_string_literal_end = 146, - sym_float_literal = 147, - sym__outer_block_doc_comment_marker = 148, - sym__inner_block_doc_comment_marker = 149, - sym__block_comment_content = 150, - sym__line_doc_content = 151, - sym__error_sentinel = 152, - sym_source_file = 153, - sym__statement = 154, - sym_empty_statement = 155, - sym_expression_statement = 156, - sym_macro_definition = 157, - sym_macro_rule = 158, - sym__token_pattern = 159, - sym_token_tree_pattern = 160, - sym_token_binding_pattern = 161, - sym_token_repetition_pattern = 162, - sym_fragment_specifier = 163, - sym_token_tree = 164, - sym_token_repetition = 165, - sym_attribute_item = 166, - sym_inner_attribute_item = 167, - sym_attribute = 168, - sym_mod_item = 169, - sym_foreign_mod_item = 170, - sym_declaration_list = 171, - sym_struct_item = 172, - sym_union_item = 173, - sym_enum_item = 174, - sym_enum_variant_list = 175, - sym_enum_variant = 176, - sym_field_declaration_list = 177, - sym_field_declaration = 178, - sym_ordered_field_declaration_list = 179, - sym_extern_crate_declaration = 180, - sym_const_item = 181, - sym_static_item = 182, - sym_type_item = 183, - sym_function_item = 184, - sym_function_signature_item = 185, - sym_function_modifiers = 186, - sym_where_clause = 187, - sym_where_predicate = 188, - sym_impl_item = 189, - sym_trait_item = 190, - sym_associated_type = 191, - sym_trait_bounds = 192, - sym_higher_ranked_trait_bound = 193, - sym_removed_trait_bound = 194, - sym_type_parameters = 195, - sym_const_parameter = 196, - sym_constrained_type_parameter = 197, - sym_optional_type_parameter = 198, - sym_let_declaration = 199, - sym_use_declaration = 200, - sym__use_clause = 201, - sym_scoped_use_list = 202, - sym_use_list = 203, - sym_use_as_clause = 204, - sym_use_wildcard = 205, - sym_parameters = 206, - sym_self_parameter = 207, - sym_variadic_parameter = 208, - sym_parameter = 209, - sym_extern_modifier = 210, - sym_visibility_modifier = 211, - sym__type = 212, - sym_bracketed_type = 213, - sym_qualified_type = 214, - sym_lifetime = 215, - sym_array_type = 216, - sym_for_lifetimes = 217, - sym_function_type = 218, - sym_tuple_type = 219, - sym_unit_type = 220, - sym_generic_function = 221, - sym_generic_type = 222, - sym_generic_type_with_turbofish = 223, - sym_bounded_type = 224, - sym_type_arguments = 225, - sym_type_binding = 226, - sym_reference_type = 227, - sym_pointer_type = 228, - sym_never_type = 229, - sym_abstract_type = 230, - sym_dynamic_type = 231, - sym__expression_except_range = 232, - sym__expression = 233, - sym_macro_invocation = 234, - sym_delim_token_tree = 235, - sym__delim_tokens = 236, - sym__non_delim_token = 237, - sym_scoped_identifier = 238, - sym_scoped_type_identifier_in_expression_position = 239, - sym_scoped_type_identifier = 240, - sym_range_expression = 241, - sym_unary_expression = 242, - sym_try_expression = 243, - sym_reference_expression = 244, - sym_binary_expression = 245, - sym_assignment_expression = 246, - sym_compound_assignment_expr = 247, - sym_type_cast_expression = 248, - sym_return_expression = 249, - sym_yield_expression = 250, - sym_call_expression = 251, - sym_arguments = 252, - sym_array_expression = 253, - sym_parenthesized_expression = 254, - sym_tuple_expression = 255, - sym_unit_expression = 256, - sym_struct_expression = 257, - sym_field_initializer_list = 258, - sym_shorthand_field_initializer = 259, - sym_field_initializer = 260, - sym_base_field_initializer = 261, - sym_if_expression = 262, - sym_let_condition = 263, - sym__let_chain = 264, - sym__condition = 265, - sym_else_clause = 266, - sym_match_expression = 267, - sym_match_block = 268, - sym_match_arm = 269, - sym_last_match_arm = 270, - sym_match_pattern = 271, - sym_while_expression = 272, - sym_loop_expression = 273, - sym_for_expression = 274, - sym_const_block = 275, - sym_closure_expression = 276, - sym_closure_parameters = 277, - sym_label = 278, - sym_break_expression = 279, - sym_continue_expression = 280, - sym_index_expression = 281, - sym_await_expression = 282, - sym_field_expression = 283, - sym_unsafe_block = 284, - sym_async_block = 285, - sym_try_block = 286, - sym_block = 287, - sym__pattern = 288, - sym_tuple_pattern = 289, - sym_slice_pattern = 290, - sym_tuple_struct_pattern = 291, - sym_struct_pattern = 292, - sym_field_pattern = 293, - sym_remaining_field_pattern = 294, - sym_mut_pattern = 295, - sym_range_pattern = 296, - sym_ref_pattern = 297, - sym_captured_pattern = 298, - sym_reference_pattern = 299, - sym_or_pattern = 300, - sym__literal = 301, - sym__literal_pattern = 302, - sym_negative_literal = 303, - sym_string_literal = 304, - sym_raw_string_literal = 305, - sym_boolean_literal = 306, - sym_line_comment = 307, - sym__line_doc_comment_marker = 308, - sym__inner_line_doc_comment_marker = 309, - sym__outer_line_doc_comment_marker = 310, - sym_block_comment = 311, - sym__block_doc_comment_marker = 312, - aux_sym_source_file_repeat1 = 313, - aux_sym_macro_definition_repeat1 = 314, - aux_sym_token_tree_pattern_repeat1 = 315, - aux_sym_token_tree_repeat1 = 316, - aux_sym__non_special_token_repeat1 = 317, - aux_sym_declaration_list_repeat1 = 318, - aux_sym_enum_variant_list_repeat1 = 319, - aux_sym_enum_variant_list_repeat2 = 320, - aux_sym_field_declaration_list_repeat1 = 321, - aux_sym_ordered_field_declaration_list_repeat1 = 322, - aux_sym_function_modifiers_repeat1 = 323, - aux_sym_where_clause_repeat1 = 324, - aux_sym_trait_bounds_repeat1 = 325, - aux_sym_type_parameters_repeat1 = 326, - aux_sym_use_list_repeat1 = 327, - aux_sym_parameters_repeat1 = 328, - aux_sym_for_lifetimes_repeat1 = 329, - aux_sym_tuple_type_repeat1 = 330, - aux_sym_type_arguments_repeat1 = 331, - aux_sym_delim_token_tree_repeat1 = 332, - aux_sym_arguments_repeat1 = 333, - aux_sym_tuple_expression_repeat1 = 334, - aux_sym_field_initializer_list_repeat1 = 335, - aux_sym_match_block_repeat1 = 336, - aux_sym_match_arm_repeat1 = 337, - aux_sym_closure_parameters_repeat1 = 338, - aux_sym_tuple_pattern_repeat1 = 339, - aux_sym_slice_pattern_repeat1 = 340, - aux_sym_struct_pattern_repeat1 = 341, - aux_sym_string_literal_repeat1 = 342, - alias_sym_field_identifier = 343, - alias_sym_let_chain = 344, - alias_sym_shorthand_field_identifier = 345, - alias_sym_type_identifier = 346, + anon_sym_expr_2021 = 19, + anon_sym_ident = 20, + anon_sym_item = 21, + anon_sym_lifetime = 22, + anon_sym_literal = 23, + anon_sym_meta = 24, + anon_sym_pat = 25, + anon_sym_pat_param = 26, + anon_sym_path = 27, + anon_sym_stmt = 28, + anon_sym_tt = 29, + anon_sym_ty = 30, + anon_sym_vis = 31, + anon_sym_u8 = 32, + anon_sym_i8 = 33, + anon_sym_u16 = 34, + anon_sym_i16 = 35, + anon_sym_u32 = 36, + anon_sym_i32 = 37, + anon_sym_u64 = 38, + anon_sym_i64 = 39, + anon_sym_u128 = 40, + anon_sym_i128 = 41, + anon_sym_isize = 42, + anon_sym_usize = 43, + anon_sym_f32 = 44, + anon_sym_f64 = 45, + anon_sym_bool = 46, + anon_sym_str = 47, + anon_sym_char = 48, + anon_sym_DASH = 49, + anon_sym_SLASH = 50, + anon_sym_PERCENT = 51, + anon_sym_CARET = 52, + anon_sym_BANG = 53, + anon_sym_AMP = 54, + anon_sym_PIPE = 55, + anon_sym_AMP_AMP = 56, + anon_sym_PIPE_PIPE = 57, + anon_sym_LT_LT = 58, + anon_sym_GT_GT = 59, + anon_sym_PLUS_EQ = 60, + anon_sym_DASH_EQ = 61, + anon_sym_STAR_EQ = 62, + anon_sym_SLASH_EQ = 63, + anon_sym_PERCENT_EQ = 64, + anon_sym_CARET_EQ = 65, + anon_sym_AMP_EQ = 66, + anon_sym_PIPE_EQ = 67, + anon_sym_LT_LT_EQ = 68, + anon_sym_GT_GT_EQ = 69, + anon_sym_EQ = 70, + anon_sym_EQ_EQ = 71, + anon_sym_BANG_EQ = 72, + anon_sym_GT = 73, + anon_sym_LT = 74, + anon_sym_GT_EQ = 75, + anon_sym_LT_EQ = 76, + anon_sym_AT = 77, + anon_sym__ = 78, + anon_sym_DOT = 79, + anon_sym_DOT_DOT = 80, + anon_sym_DOT_DOT_DOT = 81, + anon_sym_DOT_DOT_EQ = 82, + anon_sym_COMMA = 83, + anon_sym_COLON_COLON = 84, + anon_sym_DASH_GT = 85, + anon_sym_POUND = 86, + anon_sym_SQUOTE = 87, + anon_sym_as = 88, + anon_sym_async = 89, + anon_sym_await = 90, + anon_sym_break = 91, + anon_sym_const = 92, + anon_sym_continue = 93, + anon_sym_default = 94, + anon_sym_enum = 95, + anon_sym_fn = 96, + anon_sym_for = 97, + anon_sym_gen = 98, + anon_sym_if = 99, + anon_sym_impl = 100, + anon_sym_let = 101, + anon_sym_loop = 102, + anon_sym_match = 103, + anon_sym_mod = 104, + anon_sym_pub = 105, + anon_sym_return = 106, + anon_sym_static = 107, + anon_sym_struct = 108, + anon_sym_trait = 109, + anon_sym_type = 110, + anon_sym_union = 111, + anon_sym_unsafe = 112, + anon_sym_use = 113, + anon_sym_where = 114, + anon_sym_while = 115, + anon_sym_extern = 116, + anon_sym_ref = 117, + anon_sym_else = 118, + anon_sym_in = 119, + anon_sym_LT2 = 120, + anon_sym_dyn = 121, + sym_mutable_specifier = 122, + anon_sym_raw = 123, + anon_sym_yield = 124, + anon_sym_move = 125, + anon_sym_try = 126, + sym_integer_literal = 127, + aux_sym_string_literal_token1 = 128, + anon_sym_DQUOTE = 129, + sym_char_literal = 130, + sym_escape_sequence = 131, + anon_sym_true = 132, + anon_sym_false = 133, + anon_sym_SLASH_SLASH = 134, + aux_sym_line_comment_token1 = 135, + aux_sym_line_comment_token2 = 136, + aux_sym_line_comment_token3 = 137, + anon_sym_BANG2 = 138, + anon_sym_SLASH2 = 139, + anon_sym_SLASH_STAR = 140, + anon_sym_STAR_SLASH = 141, + sym_shebang = 142, + sym_self = 143, + sym_super = 144, + sym_crate = 145, + sym_metavariable = 146, + sym_string_content = 147, + sym__raw_string_literal_start = 148, + sym_raw_string_literal_content = 149, + sym__raw_string_literal_end = 150, + sym_float_literal = 151, + sym__outer_block_doc_comment_marker = 152, + sym__inner_block_doc_comment_marker = 153, + sym__block_comment_content = 154, + sym__line_doc_content = 155, + sym__error_sentinel = 156, + sym_source_file = 157, + sym__statement = 158, + sym_empty_statement = 159, + sym_expression_statement = 160, + sym_macro_definition = 161, + sym_macro_rule = 162, + sym__token_pattern = 163, + sym_token_tree_pattern = 164, + sym_token_binding_pattern = 165, + sym_token_repetition_pattern = 166, + sym_fragment_specifier = 167, + sym_token_tree = 168, + sym_token_repetition = 169, + sym_attribute_item = 170, + sym_inner_attribute_item = 171, + sym_attribute = 172, + sym_mod_item = 173, + sym_foreign_mod_item = 174, + sym_declaration_list = 175, + sym_struct_item = 176, + sym_union_item = 177, + sym_enum_item = 178, + sym_enum_variant_list = 179, + sym_enum_variant = 180, + sym_field_declaration_list = 181, + sym_field_declaration = 182, + sym_ordered_field_declaration_list = 183, + sym_extern_crate_declaration = 184, + sym_const_item = 185, + sym_static_item = 186, + sym_type_item = 187, + sym_function_item = 188, + sym_function_signature_item = 189, + sym_function_modifiers = 190, + sym_where_clause = 191, + sym_where_predicate = 192, + sym_impl_item = 193, + sym_trait_item = 194, + sym_associated_type = 195, + sym_trait_bounds = 196, + sym_higher_ranked_trait_bound = 197, + sym_removed_trait_bound = 198, + sym_type_parameters = 199, + sym_const_parameter = 200, + sym_type_parameter = 201, + sym_lifetime_parameter = 202, + sym_let_declaration = 203, + sym_use_declaration = 204, + sym__use_clause = 205, + sym_scoped_use_list = 206, + sym_use_list = 207, + sym_use_as_clause = 208, + sym_use_wildcard = 209, + sym_parameters = 210, + sym_self_parameter = 211, + sym_variadic_parameter = 212, + sym_parameter = 213, + sym_extern_modifier = 214, + sym_visibility_modifier = 215, + sym__type = 216, + sym_bracketed_type = 217, + sym_qualified_type = 218, + sym_lifetime = 219, + sym_array_type = 220, + sym_for_lifetimes = 221, + sym_function_type = 222, + sym_tuple_type = 223, + sym_unit_type = 224, + sym_generic_function = 225, + sym_generic_type = 226, + sym_generic_type_with_turbofish = 227, + sym_bounded_type = 228, + sym_use_bounds = 229, + sym_type_arguments = 230, + sym_type_binding = 231, + sym_reference_type = 232, + sym_pointer_type = 233, + sym_never_type = 234, + sym_abstract_type = 235, + sym_dynamic_type = 236, + sym__expression_except_range = 237, + sym__expression = 238, + sym_macro_invocation = 239, + sym_delim_token_tree = 240, + sym__delim_tokens = 241, + sym__non_delim_token = 242, + sym_scoped_identifier = 243, + sym_scoped_type_identifier_in_expression_position = 244, + sym_scoped_type_identifier = 245, + sym_range_expression = 246, + sym_unary_expression = 247, + sym_try_expression = 248, + sym_reference_expression = 249, + sym_binary_expression = 250, + sym_assignment_expression = 251, + sym_compound_assignment_expr = 252, + sym_type_cast_expression = 253, + sym_return_expression = 254, + sym_yield_expression = 255, + sym_call_expression = 256, + sym_arguments = 257, + sym_array_expression = 258, + sym_parenthesized_expression = 259, + sym_tuple_expression = 260, + sym_unit_expression = 261, + sym_struct_expression = 262, + sym_field_initializer_list = 263, + sym_shorthand_field_initializer = 264, + sym_field_initializer = 265, + sym_base_field_initializer = 266, + sym_if_expression = 267, + sym_let_condition = 268, + sym__let_chain = 269, + sym__condition = 270, + sym_else_clause = 271, + sym_match_expression = 272, + sym_match_block = 273, + sym_match_arm = 274, + sym_last_match_arm = 275, + sym_match_pattern = 276, + sym_while_expression = 277, + sym_loop_expression = 278, + sym_for_expression = 279, + sym_const_block = 280, + sym_closure_expression = 281, + sym_closure_parameters = 282, + sym_label = 283, + sym_break_expression = 284, + sym_continue_expression = 285, + sym_index_expression = 286, + sym_await_expression = 287, + sym_field_expression = 288, + sym_unsafe_block = 289, + sym_async_block = 290, + sym_gen_block = 291, + sym_try_block = 292, + sym_block = 293, + sym__pattern = 294, + sym_generic_pattern = 295, + sym_tuple_pattern = 296, + sym_slice_pattern = 297, + sym_tuple_struct_pattern = 298, + sym_struct_pattern = 299, + sym_field_pattern = 300, + sym_remaining_field_pattern = 301, + sym_mut_pattern = 302, + sym_range_pattern = 303, + sym_ref_pattern = 304, + sym_captured_pattern = 305, + sym_reference_pattern = 306, + sym_or_pattern = 307, + sym__literal = 308, + sym__literal_pattern = 309, + sym_negative_literal = 310, + sym_string_literal = 311, + sym_raw_string_literal = 312, + sym_boolean_literal = 313, + sym_line_comment = 314, + sym__line_doc_comment_marker = 315, + sym__inner_line_doc_comment_marker = 316, + sym__outer_line_doc_comment_marker = 317, + sym_block_comment = 318, + sym__block_doc_comment_marker = 319, + aux_sym_source_file_repeat1 = 320, + aux_sym_macro_definition_repeat1 = 321, + aux_sym_token_tree_pattern_repeat1 = 322, + aux_sym_token_tree_repeat1 = 323, + aux_sym__non_special_token_repeat1 = 324, + aux_sym_declaration_list_repeat1 = 325, + aux_sym_enum_variant_list_repeat1 = 326, + aux_sym_enum_variant_list_repeat2 = 327, + aux_sym_field_declaration_list_repeat1 = 328, + aux_sym_ordered_field_declaration_list_repeat1 = 329, + aux_sym_function_modifiers_repeat1 = 330, + aux_sym_where_clause_repeat1 = 331, + aux_sym_trait_bounds_repeat1 = 332, + aux_sym_type_parameters_repeat1 = 333, + aux_sym_use_list_repeat1 = 334, + aux_sym_parameters_repeat1 = 335, + aux_sym_for_lifetimes_repeat1 = 336, + aux_sym_tuple_type_repeat1 = 337, + aux_sym_use_bounds_repeat1 = 338, + aux_sym_type_arguments_repeat1 = 339, + aux_sym_delim_token_tree_repeat1 = 340, + aux_sym_arguments_repeat1 = 341, + aux_sym_tuple_expression_repeat1 = 342, + aux_sym_field_initializer_list_repeat1 = 343, + aux_sym_match_block_repeat1 = 344, + aux_sym_match_arm_repeat1 = 345, + aux_sym_closure_parameters_repeat1 = 346, + aux_sym_tuple_pattern_repeat1 = 347, + aux_sym_slice_pattern_repeat1 = 348, + aux_sym_struct_pattern_repeat1 = 349, + aux_sym_string_literal_repeat1 = 350, + alias_sym_field_identifier = 351, + alias_sym_let_chain = 352, + alias_sym_shorthand_field_identifier = 353, + alias_sym_type_identifier = 354, }; static const char * const ts_symbol_names[] = { @@ -384,12 +396,14 @@ static const char * const ts_symbol_names[] = { [anon_sym_QMARK] = "\?", [anon_sym_block] = "block", [anon_sym_expr] = "expr", + [anon_sym_expr_2021] = "expr_2021", [anon_sym_ident] = "ident", [anon_sym_item] = "item", [anon_sym_lifetime] = "lifetime", [anon_sym_literal] = "literal", [anon_sym_meta] = "meta", [anon_sym_pat] = "pat", + [anon_sym_pat_param] = "pat_param", [anon_sym_path] = "path", [anon_sym_stmt] = "stmt", [anon_sym_tt] = "tt", @@ -461,6 +475,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_enum] = "enum", [anon_sym_fn] = "fn", [anon_sym_for] = "for", + [anon_sym_gen] = "gen", [anon_sym_if] = "if", [anon_sym_impl] = "impl", [anon_sym_let] = "let", @@ -485,6 +500,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT2] = "<", [anon_sym_dyn] = "dyn", [sym_mutable_specifier] = "mutable_specifier", + [anon_sym_raw] = "raw", [anon_sym_yield] = "yield", [anon_sym_move] = "move", [anon_sym_try] = "try", @@ -562,8 +578,8 @@ static const char * const ts_symbol_names[] = { [sym_removed_trait_bound] = "removed_trait_bound", [sym_type_parameters] = "type_parameters", [sym_const_parameter] = "const_parameter", - [sym_constrained_type_parameter] = "constrained_type_parameter", - [sym_optional_type_parameter] = "optional_type_parameter", + [sym_type_parameter] = "type_parameter", + [sym_lifetime_parameter] = "lifetime_parameter", [sym_let_declaration] = "let_declaration", [sym_use_declaration] = "use_declaration", [sym__use_clause] = "_use_clause", @@ -590,6 +606,7 @@ static const char * const ts_symbol_names[] = { [sym_generic_type] = "generic_type", [sym_generic_type_with_turbofish] = "generic_type_with_turbofish", [sym_bounded_type] = "bounded_type", + [sym_use_bounds] = "use_bounds", [sym_type_arguments] = "type_arguments", [sym_type_binding] = "type_binding", [sym_reference_type] = "reference_type", @@ -651,9 +668,11 @@ static const char * const ts_symbol_names[] = { [sym_field_expression] = "field_expression", [sym_unsafe_block] = "unsafe_block", [sym_async_block] = "async_block", + [sym_gen_block] = "gen_block", [sym_try_block] = "try_block", [sym_block] = "block", [sym__pattern] = "_pattern", + [sym_generic_pattern] = "generic_pattern", [sym_tuple_pattern] = "tuple_pattern", [sym_slice_pattern] = "slice_pattern", [sym_tuple_struct_pattern] = "tuple_struct_pattern", @@ -696,6 +715,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_parameters_repeat1] = "parameters_repeat1", [aux_sym_for_lifetimes_repeat1] = "for_lifetimes_repeat1", [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", + [aux_sym_use_bounds_repeat1] = "use_bounds_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", [aux_sym_delim_token_tree_repeat1] = "delim_token_tree_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", @@ -734,12 +754,14 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_block] = anon_sym_block, [anon_sym_expr] = anon_sym_expr, + [anon_sym_expr_2021] = anon_sym_expr_2021, [anon_sym_ident] = anon_sym_ident, [anon_sym_item] = anon_sym_item, [anon_sym_lifetime] = anon_sym_lifetime, [anon_sym_literal] = anon_sym_literal, [anon_sym_meta] = anon_sym_meta, [anon_sym_pat] = anon_sym_pat, + [anon_sym_pat_param] = anon_sym_pat_param, [anon_sym_path] = anon_sym_path, [anon_sym_stmt] = anon_sym_stmt, [anon_sym_tt] = anon_sym_tt, @@ -811,6 +833,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_enum] = anon_sym_enum, [anon_sym_fn] = anon_sym_fn, [anon_sym_for] = anon_sym_for, + [anon_sym_gen] = anon_sym_gen, [anon_sym_if] = anon_sym_if, [anon_sym_impl] = anon_sym_impl, [anon_sym_let] = anon_sym_let, @@ -835,6 +858,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT2] = anon_sym_LT, [anon_sym_dyn] = anon_sym_dyn, [sym_mutable_specifier] = sym_mutable_specifier, + [anon_sym_raw] = anon_sym_raw, [anon_sym_yield] = anon_sym_yield, [anon_sym_move] = anon_sym_move, [anon_sym_try] = anon_sym_try, @@ -912,8 +936,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_removed_trait_bound] = sym_removed_trait_bound, [sym_type_parameters] = sym_type_parameters, [sym_const_parameter] = sym_const_parameter, - [sym_constrained_type_parameter] = sym_constrained_type_parameter, - [sym_optional_type_parameter] = sym_optional_type_parameter, + [sym_type_parameter] = sym_type_parameter, + [sym_lifetime_parameter] = sym_lifetime_parameter, [sym_let_declaration] = sym_let_declaration, [sym_use_declaration] = sym_use_declaration, [sym__use_clause] = sym__use_clause, @@ -940,6 +964,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_generic_type] = sym_generic_type, [sym_generic_type_with_turbofish] = sym_generic_type_with_turbofish, [sym_bounded_type] = sym_bounded_type, + [sym_use_bounds] = sym_use_bounds, [sym_type_arguments] = sym_type_arguments, [sym_type_binding] = sym_type_binding, [sym_reference_type] = sym_reference_type, @@ -1001,9 +1026,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_field_expression] = sym_field_expression, [sym_unsafe_block] = sym_unsafe_block, [sym_async_block] = sym_async_block, + [sym_gen_block] = sym_gen_block, [sym_try_block] = sym_try_block, [sym_block] = sym_block, [sym__pattern] = sym__pattern, + [sym_generic_pattern] = sym_generic_pattern, [sym_tuple_pattern] = sym_tuple_pattern, [sym_slice_pattern] = sym_slice_pattern, [sym_tuple_struct_pattern] = sym_tuple_struct_pattern, @@ -1046,6 +1073,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_parameters_repeat1] = aux_sym_parameters_repeat1, [aux_sym_for_lifetimes_repeat1] = aux_sym_for_lifetimes_repeat1, [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, + [aux_sym_use_bounds_repeat1] = aux_sym_use_bounds_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, [aux_sym_delim_token_tree_repeat1] = aux_sym_delim_token_tree_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, @@ -1141,6 +1169,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_expr_2021] = { + .visible = true, + .named = false, + }, [anon_sym_ident] = { .visible = true, .named = false, @@ -1165,6 +1197,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_pat_param] = { + .visible = true, + .named = false, + }, [anon_sym_path] = { .visible = true, .named = false, @@ -1449,6 +1485,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_gen] = { + .visible = true, + .named = false, + }, [anon_sym_if] = { .visible = true, .named = false, @@ -1545,6 +1585,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_raw] = { + .visible = true, + .named = false, + }, [anon_sym_yield] = { .visible = true, .named = false, @@ -1853,11 +1897,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_constrained_type_parameter] = { + [sym_type_parameter] = { .visible = true, .named = true, }, - [sym_optional_type_parameter] = { + [sym_lifetime_parameter] = { .visible = true, .named = true, }, @@ -1966,6 +2010,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_use_bounds] = { + .visible = true, + .named = true, + }, [sym_type_arguments] = { .visible = true, .named = true, @@ -2211,6 +2259,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_gen_block] = { + .visible = true, + .named = true, + }, [sym_try_block] = { .visible = true, .named = true, @@ -2224,6 +2276,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_generic_pattern] = { + .visible = true, + .named = true, + }, [sym_tuple_pattern] = { .visible = true, .named = true, @@ -2394,6 +2450,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_use_bounds_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_type_arguments_repeat1] = { .visible = false, .named = false, @@ -2529,7 +2589,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}, @@ -2545,261 +2605,279 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [16] = {.index = 16, .length = 2}, [17] = {.index = 16, .length = 2}, [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 2}, - [20] = {.index = 19, .length = 2}, - [21] = {.index = 19, .length = 2}, - [22] = {.index = 21, .length = 1}, - [23] = {.index = 22, .length = 1}, - [24] = {.index = 23, .length = 1}, - [25] = {.index = 23, .length = 1}, - [26] = {.index = 24, .length = 2}, - [27] = {.index = 24, .length = 2}, - [28] = {.index = 26, .length = 1}, - [29] = {.index = 27, .length = 2}, - [30] = {.index = 29, .length = 2}, - [31] = {.index = 31, .length = 2}, - [32] = {.index = 33, .length = 1}, - [33] = {.index = 34, .length = 2}, - [34] = {.index = 27, .length = 2}, - [35] = {.index = 36, .length = 2}, - [36] = {.index = 38, .length = 1}, - [37] = {.index = 39, .length = 1}, - [38] = {.index = 40, .length = 2}, - [39] = {.index = 26, .length = 1}, - [40] = {.index = 16, .length = 2}, - [41] = {.index = 16, .length = 2}, - [42] = {.index = 42, .length = 2}, - [43] = {.index = 44, .length = 2}, - [44] = {.index = 46, .length = 1}, - [45] = {.index = 16, .length = 2}, + [19] = {.index = 19, .length = 1}, + [20] = {.index = 20, .length = 1}, + [21] = {.index = 20, .length = 1}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 19, .length = 1}, + [24] = {.index = 21, .length = 2}, + [25] = {.index = 21, .length = 2}, + [26] = {.index = 23, .length = 1}, + [27] = {.index = 24, .length = 1}, + [28] = {.index = 25, .length = 1}, + [29] = {.index = 25, .length = 1}, + [30] = {.index = 26, .length = 2}, + [31] = {.index = 26, .length = 2}, + [32] = {.index = 28, .length = 2}, + [33] = {.index = 30, .length = 1}, + [34] = {.index = 31, .length = 2}, + [35] = {.index = 33, .length = 2}, + [36] = {.index = 35, .length = 1}, + [37] = {.index = 35, .length = 1}, + [38] = {.index = 36, .length = 2}, + [39] = {.index = 38, .length = 1}, + [40] = {.index = 39, .length = 2}, + [41] = {.index = 31, .length = 2}, + [42] = {.index = 41, .length = 1}, + [43] = {.index = 42, .length = 1}, + [44] = {.index = 43, .length = 2}, + [45] = {.index = 30, .length = 1}, [46] = {.index = 16, .length = 2}, - [47] = {.index = 47, .length = 3}, - [48] = {.index = 50, .length = 2}, - [49] = {.index = 52, .length = 2}, - [50] = {.index = 52, .length = 2}, - [51] = {.index = 54, .length = 2}, - [52] = {.index = 44, .length = 2}, - [53] = {.index = 11, .length = 3}, - [54] = {.index = 3, .length = 1}, - [56] = {.index = 56, .length = 1}, - [57] = {.index = 56, .length = 1}, - [58] = {.index = 57, .length = 1}, - [60] = {.index = 58, .length = 2}, - [61] = {.index = 56, .length = 1}, - [62] = {.index = 60, .length = 1}, - [63] = {.index = 61, .length = 1}, - [64] = {.index = 62, .length = 1}, - [65] = {.index = 63, .length = 2}, - [66] = {.index = 65, .length = 2}, - [67] = {.index = 65, .length = 2}, - [68] = {.index = 67, .length = 1}, - [69] = {.index = 67, .length = 1}, - [70] = {.index = 57, .length = 1}, - [71] = {.index = 68, .length = 2}, - [72] = {.index = 70, .length = 3}, - [73] = {.index = 73, .length = 2}, - [74] = {.index = 75, .length = 3}, - [75] = {.index = 78, .length = 3}, - [77] = {.index = 81, .length = 2}, - [78] = {.index = 81, .length = 2}, - [79] = {.index = 83, .length = 2}, - [80] = {.index = 85, .length = 3}, - [81] = {.index = 88, .length = 2}, - [82] = {.index = 90, .length = 1}, - [83] = {.index = 91, .length = 2}, - [84] = {.index = 93, .length = 2}, - [85] = {.index = 95, .length = 3}, - [86] = {.index = 98, .length = 2}, - [87] = {.index = 100, .length = 2}, - [88] = {.index = 102, .length = 2}, - [89] = {.index = 104, .length = 2}, - [90] = {.index = 106, .length = 2}, - [91] = {.index = 104, .length = 2}, - [92] = {.index = 106, .length = 2}, - [93] = {.index = 108, .length = 1}, - [94] = {.index = 102, .length = 2}, - [95] = {.index = 108, .length = 1}, - [96] = {.index = 109, .length = 1}, - [97] = {.index = 110, .length = 3}, - [98] = {.index = 113, .length = 1}, - [99] = {.index = 114, .length = 1}, - [100] = {.index = 115, .length = 2}, - [101] = {.index = 3, .length = 1}, - [102] = {.index = 117, .length = 1}, - [103] = {.index = 118, .length = 2}, - [104] = {.index = 120, .length = 1}, - [105] = {.index = 120, .length = 1}, - [106] = {.index = 121, .length = 3}, - [107] = {.index = 124, .length = 1}, - [108] = {.index = 121, .length = 3}, - [109] = {.index = 18, .length = 1}, - [110] = {.index = 125, .length = 2}, - [111] = {.index = 127, .length = 3}, - [112] = {.index = 130, .length = 3}, - [113] = {.index = 133, .length = 4}, - [114] = {.index = 137, .length = 3}, - [115] = {.index = 140, .length = 3}, - [116] = {.index = 143, .length = 2}, - [117] = {.index = 145, .length = 2}, - [118] = {.index = 145, .length = 2}, - [120] = {.index = 147, .length = 2}, - [121] = {.index = 149, .length = 3}, - [122] = {.index = 152, .length = 3}, - [123] = {.index = 147, .length = 2}, - [124] = {.index = 149, .length = 3}, - [125] = {.index = 155, .length = 2}, - [127] = {.index = 157, .length = 3}, - [128] = {.index = 160, .length = 3}, - [129] = {.index = 163, .length = 4}, - [130] = {.index = 125, .length = 2}, - [131] = {.index = 167, .length = 3}, - [132] = {.index = 170, .length = 2}, - [133] = {.index = 172, .length = 3}, - [134] = {.index = 175, .length = 2}, - [135] = {.index = 177, .length = 2}, - [136] = {.index = 179, .length = 3}, - [137] = {.index = 182, .length = 3}, - [138] = {.index = 185, .length = 2}, - [139] = {.index = 185, .length = 2}, - [140] = {.index = 187, .length = 2}, - [141] = {.index = 189, .length = 3}, - [142] = {.index = 192, .length = 2}, - [143] = {.index = 194, .length = 2}, - [144] = {.index = 196, .length = 1}, - [145] = {.index = 197, .length = 2}, - [146] = {.index = 199, .length = 1}, - [147] = {.index = 200, .length = 2}, - [148] = {.index = 108, .length = 1}, - [149] = {.index = 202, .length = 2}, - [150] = {.index = 204, .length = 2}, - [151] = {.index = 206, .length = 1}, - [152] = {.index = 207, .length = 2}, - [153] = {.index = 209, .length = 3}, - [154] = {.index = 209, .length = 3}, - [155] = {.index = 212, .length = 2}, - [156] = {.index = 214, .length = 4}, - [157] = {.index = 218, .length = 3}, - [158] = {.index = 221, .length = 4}, - [159] = {.index = 225, .length = 2}, - [160] = {.index = 227, .length = 3}, - [161] = {.index = 225, .length = 2}, - [162] = {.index = 227, .length = 3}, - [163] = {.index = 230, .length = 3}, - [164] = {.index = 233, .length = 3}, - [165] = {.index = 236, .length = 4}, - [166] = {.index = 233, .length = 3}, - [167] = {.index = 236, .length = 4}, - [168] = {.index = 230, .length = 3}, - [169] = {.index = 240, .length = 2}, - [170] = {.index = 242, .length = 2}, - [171] = {.index = 244, .length = 2}, - [172] = {.index = 246, .length = 2}, - [173] = {.index = 248, .length = 1}, - [174] = {.index = 249, .length = 2}, - [175] = {.index = 251, .length = 3}, - [176] = {.index = 254, .length = 2}, - [177] = {.index = 256, .length = 2}, - [178] = {.index = 200, .length = 2}, - [179] = {.index = 258, .length = 4}, - [180] = {.index = 262, .length = 3}, - [181] = {.index = 265, .length = 3}, - [182] = {.index = 268, .length = 3}, - [183] = {.index = 271, .length = 3}, - [184] = {.index = 274, .length = 4}, - [185] = {.index = 278, .length = 2}, - [186] = {.index = 280, .length = 2}, - [187] = {.index = 280, .length = 2}, - [188] = {.index = 282, .length = 3}, - [189] = {.index = 285, .length = 4}, - [190] = {.index = 289, .length = 3}, - [191] = {.index = 249, .length = 2}, - [192] = {.index = 292, .length = 2}, - [193] = {.index = 294, .length = 3}, - [194] = {.index = 297, .length = 3}, - [195] = {.index = 300, .length = 2}, - [196] = {.index = 302, .length = 3}, - [197] = {.index = 200, .length = 2}, - [198] = {.index = 305, .length = 3}, - [199] = {.index = 308, .length = 2}, - [200] = {.index = 310, .length = 2}, - [201] = {.index = 312, .length = 3}, - [202] = {.index = 315, .length = 3}, - [203] = {.index = 318, .length = 2}, - [204] = {.index = 320, .length = 4}, - [205] = {.index = 324, .length = 5}, - [206] = {.index = 329, .length = 4}, - [207] = {.index = 333, .length = 3}, - [208] = {.index = 333, .length = 3}, - [209] = {.index = 336, .length = 3}, - [210] = {.index = 339, .length = 4}, - [211] = {.index = 336, .length = 3}, - [212] = {.index = 339, .length = 4}, - [213] = {.index = 343, .length = 4}, - [214] = {.index = 343, .length = 4}, - [215] = {.index = 347, .length = 3}, - [216] = {.index = 350, .length = 3}, - [217] = {.index = 353, .length = 3}, - [218] = {.index = 356, .length = 2}, - [219] = {.index = 358, .length = 2}, - [220] = {.index = 125, .length = 2}, - [221] = {.index = 360, .length = 2}, - [222] = {.index = 362, .length = 3}, - [223] = {.index = 360, .length = 2}, - [224] = {.index = 362, .length = 3}, - [225] = {.index = 365, .length = 3}, - [226] = {.index = 368, .length = 4}, - [227] = {.index = 365, .length = 3}, - [228] = {.index = 368, .length = 4}, - [229] = {.index = 372, .length = 4}, - [230] = {.index = 376, .length = 4}, - [231] = {.index = 380, .length = 3}, - [232] = {.index = 383, .length = 4}, - [233] = {.index = 387, .length = 3}, - [234] = {.index = 390, .length = 3}, - [235] = {.index = 393, .length = 3}, - [236] = {.index = 396, .length = 4}, - [237] = {.index = 400, .length = 2}, - [238] = {.index = 402, .length = 3}, - [239] = {.index = 405, .length = 4}, - [240] = {.index = 409, .length = 3}, - [241] = {.index = 412, .length = 3}, - [242] = {.index = 415, .length = 2}, - [243] = {.index = 417, .length = 3}, - [244] = {.index = 420, .length = 5}, - [245] = {.index = 425, .length = 4}, - [246] = {.index = 425, .length = 4}, - [247] = {.index = 429, .length = 3}, - [248] = {.index = 432, .length = 3}, - [249] = {.index = 435, .length = 3}, - [250] = {.index = 438, .length = 3}, - [251] = {.index = 441, .length = 2}, - [252] = {.index = 443, .length = 3}, - [253] = {.index = 443, .length = 3}, - [254] = {.index = 446, .length = 3}, - [255] = {.index = 449, .length = 4}, - [256] = {.index = 446, .length = 3}, - [257] = {.index = 449, .length = 4}, - [258] = {.index = 453, .length = 4}, - [259] = {.index = 453, .length = 4}, - [260] = {.index = 457, .length = 4}, - [261] = {.index = 461, .length = 5}, - [262] = {.index = 466, .length = 4}, - [263] = {.index = 470, .length = 2}, - [264] = {.index = 472, .length = 4}, - [265] = {.index = 476, .length = 4}, - [266] = {.index = 480, .length = 3}, - [267] = {.index = 483, .length = 4}, - [268] = {.index = 487, .length = 4}, - [269] = {.index = 491, .length = 3}, - [270] = {.index = 494, .length = 4}, - [271] = {.index = 494, .length = 4}, - [272] = {.index = 498, .length = 5}, - [273] = {.index = 503, .length = 4}, - [274] = {.index = 507, .length = 5}, - [275] = {.index = 512, .length = 4}, - [276] = {.index = 516, .length = 4}, - [277] = {.index = 520, .length = 3}, - [278] = {.index = 523, .length = 5}, + [47] = {.index = 16, .length = 2}, + [48] = {.index = 45, .length = 2}, + [49] = {.index = 47, .length = 2}, + [50] = {.index = 49, .length = 1}, + [51] = {.index = 16, .length = 2}, + [52] = {.index = 16, .length = 2}, + [53] = {.index = 50, .length = 3}, + [54] = {.index = 53, .length = 2}, + [55] = {.index = 55, .length = 2}, + [56] = {.index = 55, .length = 2}, + [57] = {.index = 57, .length = 2}, + [58] = {.index = 47, .length = 2}, + [59] = {.index = 11, .length = 3}, + [60] = {.index = 3, .length = 1}, + [61] = {.index = 59, .length = 1}, + [62] = {.index = 53, .length = 2}, + [63] = {.index = 53, .length = 2}, + [64] = {.index = 60, .length = 1}, + [65] = {.index = 60, .length = 1}, + [66] = {.index = 35, .length = 1}, + [67] = {.index = 53, .length = 2}, + [68] = {.index = 61, .length = 1}, + [69] = {.index = 62, .length = 2}, + [70] = {.index = 60, .length = 1}, + [71] = {.index = 64, .length = 1}, + [72] = {.index = 65, .length = 1}, + [73] = {.index = 66, .length = 1}, + [74] = {.index = 67, .length = 2}, + [75] = {.index = 69, .length = 2}, + [76] = {.index = 69, .length = 2}, + [77] = {.index = 71, .length = 1}, + [78] = {.index = 71, .length = 1}, + [79] = {.index = 72, .length = 2}, + [80] = {.index = 74, .length = 2}, + [81] = {.index = 76, .length = 3}, + [82] = {.index = 79, .length = 2}, + [83] = {.index = 81, .length = 3}, + [84] = {.index = 84, .length = 3}, + [85] = {.index = 87, .length = 2}, + [86] = {.index = 87, .length = 2}, + [87] = {.index = 89, .length = 2}, + [88] = {.index = 91, .length = 3}, + [89] = {.index = 94, .length = 2}, + [90] = {.index = 96, .length = 1}, + [91] = {.index = 97, .length = 2}, + [92] = {.index = 99, .length = 3}, + [93] = {.index = 102, .length = 2}, + [94] = {.index = 104, .length = 2}, + [95] = {.index = 106, .length = 2}, + [96] = {.index = 108, .length = 2}, + [97] = {.index = 110, .length = 2}, + [98] = {.index = 108, .length = 2}, + [99] = {.index = 110, .length = 2}, + [100] = {.index = 112, .length = 1}, + [101] = {.index = 106, .length = 2}, + [102] = {.index = 112, .length = 1}, + [103] = {.index = 113, .length = 1}, + [104] = {.index = 114, .length = 3}, + [105] = {.index = 117, .length = 1}, + [106] = {.index = 118, .length = 1}, + [107] = {.index = 119, .length = 2}, + [108] = {.index = 3, .length = 1}, + [109] = {.index = 121, .length = 1}, + [110] = {.index = 122, .length = 2}, + [111] = {.index = 124, .length = 1}, + [112] = {.index = 124, .length = 1}, + [114] = {.index = 125, .length = 3}, + [115] = {.index = 128, .length = 1}, + [116] = {.index = 125, .length = 3}, + [117] = {.index = 18, .length = 1}, + [118] = {.index = 129, .length = 3}, + [119] = {.index = 132, .length = 2}, + [120] = {.index = 134, .length = 2}, + [121] = {.index = 134, .length = 2}, + [122] = {.index = 136, .length = 3}, + [123] = {.index = 139, .length = 3}, + [124] = {.index = 142, .length = 4}, + [125] = {.index = 146, .length = 3}, + [126] = {.index = 149, .length = 3}, + [127] = {.index = 152, .length = 2}, + [128] = {.index = 154, .length = 2}, + [129] = {.index = 156, .length = 2}, + [130] = {.index = 158, .length = 3}, + [131] = {.index = 161, .length = 3}, + [132] = {.index = 156, .length = 2}, + [133] = {.index = 158, .length = 3}, + [134] = {.index = 164, .length = 2}, + [136] = {.index = 166, .length = 2}, + [137] = {.index = 168, .length = 3}, + [138] = {.index = 171, .length = 4}, + [139] = {.index = 132, .length = 2}, + [140] = {.index = 175, .length = 3}, + [141] = {.index = 178, .length = 2}, + [142] = {.index = 180, .length = 3}, + [143] = {.index = 183, .length = 2}, + [144] = {.index = 185, .length = 2}, + [145] = {.index = 187, .length = 3}, + [146] = {.index = 190, .length = 3}, + [147] = {.index = 193, .length = 2}, + [148] = {.index = 193, .length = 2}, + [149] = {.index = 195, .length = 2}, + [150] = {.index = 197, .length = 3}, + [151] = {.index = 200, .length = 2}, + [152] = {.index = 202, .length = 2}, + [153] = {.index = 204, .length = 1}, + [154] = {.index = 205, .length = 2}, + [155] = {.index = 207, .length = 1}, + [156] = {.index = 208, .length = 2}, + [157] = {.index = 112, .length = 1}, + [158] = {.index = 210, .length = 2}, + [159] = {.index = 212, .length = 2}, + [160] = {.index = 214, .length = 1}, + [162] = {.index = 215, .length = 2}, + [163] = {.index = 217, .length = 3}, + [164] = {.index = 217, .length = 3}, + [165] = {.index = 220, .length = 3}, + [166] = {.index = 223, .length = 2}, + [167] = {.index = 225, .length = 4}, + [168] = {.index = 229, .length = 3}, + [169] = {.index = 232, .length = 4}, + [170] = {.index = 236, .length = 2}, + [171] = {.index = 238, .length = 3}, + [172] = {.index = 236, .length = 2}, + [173] = {.index = 238, .length = 3}, + [174] = {.index = 241, .length = 3}, + [175] = {.index = 244, .length = 3}, + [176] = {.index = 247, .length = 3}, + [177] = {.index = 250, .length = 4}, + [178] = {.index = 247, .length = 3}, + [179] = {.index = 250, .length = 4}, + [180] = {.index = 244, .length = 3}, + [181] = {.index = 254, .length = 2}, + [182] = {.index = 256, .length = 2}, + [183] = {.index = 258, .length = 2}, + [184] = {.index = 260, .length = 2}, + [185] = {.index = 262, .length = 1}, + [186] = {.index = 263, .length = 2}, + [187] = {.index = 265, .length = 2}, + [188] = {.index = 267, .length = 2}, + [189] = {.index = 208, .length = 2}, + [190] = {.index = 269, .length = 4}, + [191] = {.index = 273, .length = 2}, + [192] = {.index = 275, .length = 3}, + [193] = {.index = 278, .length = 3}, + [194] = {.index = 281, .length = 3}, + [195] = {.index = 284, .length = 3}, + [196] = {.index = 287, .length = 4}, + [197] = {.index = 291, .length = 2}, + [198] = {.index = 293, .length = 2}, + [199] = {.index = 293, .length = 2}, + [200] = {.index = 295, .length = 3}, + [201] = {.index = 298, .length = 4}, + [202] = {.index = 302, .length = 3}, + [203] = {.index = 263, .length = 2}, + [204] = {.index = 305, .length = 2}, + [205] = {.index = 307, .length = 3}, + [206] = {.index = 310, .length = 3}, + [207] = {.index = 313, .length = 2}, + [208] = {.index = 315, .length = 3}, + [209] = {.index = 208, .length = 2}, + [210] = {.index = 318, .length = 3}, + [211] = {.index = 321, .length = 2}, + [212] = {.index = 323, .length = 2}, + [213] = {.index = 325, .length = 3}, + [214] = {.index = 328, .length = 3}, + [215] = {.index = 331, .length = 2}, + [216] = {.index = 333, .length = 4}, + [217] = {.index = 337, .length = 5}, + [218] = {.index = 342, .length = 4}, + [219] = {.index = 346, .length = 3}, + [220] = {.index = 346, .length = 3}, + [221] = {.index = 349, .length = 3}, + [222] = {.index = 352, .length = 4}, + [223] = {.index = 349, .length = 3}, + [224] = {.index = 352, .length = 4}, + [225] = {.index = 356, .length = 4}, + [226] = {.index = 356, .length = 4}, + [227] = {.index = 360, .length = 3}, + [228] = {.index = 363, .length = 3}, + [229] = {.index = 366, .length = 3}, + [230] = {.index = 369, .length = 3}, + [231] = {.index = 372, .length = 2}, + [232] = {.index = 374, .length = 2}, + [233] = {.index = 132, .length = 2}, + [234] = {.index = 376, .length = 3}, + [235] = {.index = 379, .length = 2}, + [236] = {.index = 381, .length = 3}, + [237] = {.index = 379, .length = 2}, + [238] = {.index = 381, .length = 3}, + [239] = {.index = 384, .length = 3}, + [240] = {.index = 387, .length = 4}, + [241] = {.index = 384, .length = 3}, + [242] = {.index = 387, .length = 4}, + [243] = {.index = 391, .length = 4}, + [244] = {.index = 395, .length = 4}, + [245] = {.index = 399, .length = 3}, + [246] = {.index = 402, .length = 4}, + [247] = {.index = 406, .length = 2}, + [248] = {.index = 408, .length = 3}, + [249] = {.index = 411, .length = 3}, + [250] = {.index = 414, .length = 3}, + [251] = {.index = 417, .length = 4}, + [252] = {.index = 421, .length = 2}, + [253] = {.index = 423, .length = 3}, + [254] = {.index = 426, .length = 4}, + [255] = {.index = 430, .length = 3}, + [256] = {.index = 433, .length = 3}, + [257] = {.index = 436, .length = 2}, + [258] = {.index = 438, .length = 3}, + [259] = {.index = 441, .length = 5}, + [260] = {.index = 446, .length = 4}, + [261] = {.index = 446, .length = 4}, + [262] = {.index = 450, .length = 3}, + [263] = {.index = 453, .length = 3}, + [264] = {.index = 456, .length = 3}, + [265] = {.index = 459, .length = 3}, + [266] = {.index = 462, .length = 2}, + [267] = {.index = 464, .length = 3}, + [268] = {.index = 464, .length = 3}, + [269] = {.index = 467, .length = 3}, + [270] = {.index = 470, .length = 4}, + [271] = {.index = 467, .length = 3}, + [272] = {.index = 470, .length = 4}, + [273] = {.index = 474, .length = 4}, + [274] = {.index = 474, .length = 4}, + [275] = {.index = 478, .length = 4}, + [276] = {.index = 482, .length = 5}, + [277] = {.index = 487, .length = 4}, + [278] = {.index = 491, .length = 2}, + [279] = {.index = 493, .length = 3}, + [280] = {.index = 496, .length = 4}, + [281] = {.index = 500, .length = 4}, + [282] = {.index = 504, .length = 3}, + [283] = {.index = 507, .length = 4}, + [284] = {.index = 511, .length = 4}, + [285] = {.index = 515, .length = 3}, + [286] = {.index = 518, .length = 4}, + [287] = {.index = 518, .length = 4}, + [288] = {.index = 522, .length = 5}, + [289] = {.index = 527, .length = 4}, + [290] = {.index = 531, .length = 5}, + [291] = {.index = 536, .length = 4}, + [292] = {.index = 540, .length = 4}, + [293] = {.index = 544, .length = 3}, + [294] = {.index = 547, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2835,705 +2913,741 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [18] = {field_value, 2}, [19] = + {field_left, 0}, + [20] = + {field_right, 1}, + [21] = {field_type, 0}, {field_type_arguments, 1}, - [21] = + [23] = {field_type, 1}, - [22] = + [24] = {field_parameters, 1}, - [23] = + [25] = {field_trait, 1}, - [24] = + [26] = {field_parameters, 1}, {field_trait, 0}, - [26] = + [28] = + {field_body, 2}, + {field_parameters, 1}, + [30] = {field_macro, 0}, - [27] = + [31] = {field_body, 2}, {field_name, 1}, - [29] = + [33] = {field_condition, 1}, {field_consequence, 2}, - [31] = + [35] = + {field_name, 0}, + [36] = {field_body, 2}, {field_type, 1}, - [33] = + [38] = {field_pattern, 1}, - [34] = + [39] = {field_body, 2}, {field_value, 1}, - [36] = - {field_body, 2}, - {field_parameters, 1}, - [38] = + [41] = {field_list, 1}, - [39] = + [42] = {field_argument, 1}, - [40] = + [43] = {field_body, 2}, {field_condition, 1}, - [42] = + [45] = {field_function, 0}, {field_type_arguments, 2}, - [44] = + [47] = {field_type, 0}, {field_type_arguments, 2}, - [46] = + [49] = {field_body, 2}, - [47] = + [50] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [50] = + [53] = {field_left, 0}, {field_right, 2}, - [52] = + [55] = {field_field, 2}, {field_value, 0}, - [54] = + [57] = {field_type, 2}, {field_value, 0}, - [56] = + [59] = + {field_value, 3}, + [60] = {field_type, 0}, - [57] = - {field_name, 0}, - [58] = + [61] = + {field_type_arguments, 2}, + [62] = {field_pattern, 0}, {field_type, 2}, - [60] = + [64] = {field_element, 1}, - [61] = + [65] = {field_type, 2}, - [62] = + [66] = {field_parameters, 2}, - [63] = + [67] = {field_alias, 2}, {field_type, 0}, - [65] = + [69] = {field_parameters, 2}, {field_trait, 1}, - [67] = + [71] = {field_arguments, 1}, - [68] = + [72] = + {field_body, 3}, + {field_parameters, 2}, + [74] = {field_body, 3}, {field_name, 1}, - [70] = + [76] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [73] = + [79] = {field_name, 1}, {field_parameters, 2}, - [75] = + [81] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [78] = + [84] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [81] = + [87] = {field_bounds, 1}, - {field_left, 0}, - [83] = + {field_name, 0}, + [89] = {field_type, 2}, {field_type_parameters, 1}, - [85] = + [91] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [88] = + [94] = {field_body, 3}, {field_type, 1}, - [90] = + [96] = {field_pattern, 2}, - [91] = - {field_body, 3}, - {field_parameters, 2}, - [93] = + [97] = {field_name, 1}, {field_type_parameters, 2}, - [95] = + [99] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [98] = + [102] = {field_bounds, 2}, {field_name, 1}, - [100] = + [104] = {field_body, 3}, {field_type, 2}, - [102] = + [106] = {field_body, 3}, {field_name, 2}, - [104] = + [108] = {field_list, 2}, {field_path, 0}, - [106] = + [110] = {field_alias, 2}, {field_path, 0}, - [108] = + [112] = {field_name, 2}, - [109] = + [113] = {field_argument, 2}, - [110] = + [114] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [113] = + [117] = {field_body, 3}, - [114] = + [118] = {field_length, 3}, - [115] = + [119] = {field_pattern, 1}, {field_type, 3}, - [117] = + [121] = {field_type, 3}, - [118] = + [122] = {field_parameters, 1}, {field_return_type, 3}, - [120] = + [124] = {field_trait, 3}, - [121] = + [125] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [124] = + [128] = {field_parameters, 3}, - [125] = + [129] = + {field_body, 4}, + {field_parameters, 1}, + {field_return_type, 3}, + [132] = {field_name, 1}, {field_type, 3}, - [127] = + [134] = + {field_bounds, 1}, + {field_left, 0}, + [136] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [130] = + [139] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [133] = + [142] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [137] = + [146] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [140] = + [149] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [143] = + [152] = {field_pattern, 1}, {field_value, 3}, - [145] = + [154] = {field_default_type, 2}, {field_name, 0}, - [147] = + [156] = {field_trait, 1}, {field_type, 3}, - [149] = + [158] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [152] = + [161] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [155] = + [164] = {field_alternative, 3}, {field_pattern, 1}, - [157] = + [166] = {field_body, 4}, - {field_parameters, 1}, - {field_return_type, 3}, - [160] = + {field_parameters, 3}, + [168] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [163] = + [171] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [167] = + [175] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [170] = + [178] = {field_type, 3}, {field_type_parameters, 2}, - [172] = + [180] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [175] = + [183] = {field_body, 4}, {field_type, 2}, - [177] = + [185] = {field_body, 4}, {field_name, 2}, - [179] = + [187] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [182] = + [190] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [185] = + [193] = {field_field, 0}, {field_value, 2}, - [187] = + [195] = {field_name, 2}, {field_parameters, 3}, - [189] = + [197] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [192] = + [200] = {field_name, 2}, {field_type_parameters, 3}, - [194] = + [202] = {field_body, 4}, {field_name, 3}, - [196] = + [204] = {field_name, 3}, - [197] = + [205] = {field_body, 4}, {field_condition, 3}, - [199] = + [207] = {field_length, 4}, - [200] = + [208] = {field_name, 0}, {field_type, 2}, - [202] = + [210] = {field_name, 0}, {field_pattern, 2}, - [204] = + [212] = {field_element, 1}, {field_length, 3}, - [206] = + [214] = {field_pattern, 0}, - [207] = + [215] = {field_parameters, 2}, {field_return_type, 4}, - [209] = + [217] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [212] = + [220] = + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4}, + [223] = {field_name, 0}, {field_value, 2}, - [214] = + [225] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [218] = + [229] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [221] = + [232] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [225] = + [236] = {field_trait, 2}, {field_type, 4}, - [227] = + [238] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [230] = + [241] = + {field_bounds, 1}, + {field_default_type, 3}, + {field_name, 0}, + [244] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [233] = + [247] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [236] = + [250] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [240] = + [254] = {field_pattern, 2}, {field_type, 4}, - [242] = + [256] = {field_pattern, 2}, {field_value, 4}, - [244] = + [258] = {field_alternative, 4}, {field_pattern, 2}, - [246] = + [260] = {field_pattern, 0}, {field_value, 2}, - [248] = + [262] = {field_condition, 2}, - [249] = + [263] = {field_name, 2}, {field_type, 4}, - [251] = - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 4}, - [254] = + [265] = {field_type, 1}, {field_type, 2, .inherited = true}, - [256] = + [267] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [258] = + [269] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [262] = + [273] = + {field_name, 1}, + {field_type, 4}, + [275] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [265] = + [278] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [268] = + [281] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [271] = + [284] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [274] = + [287] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [278] = + [291] = {field_alias, 4}, {field_name, 2}, - [280] = + [293] = {field_field, 1}, {field_value, 3}, - [282] = + [295] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [285] = + [298] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [289] = + [302] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [292] = + [305] = {field_body, 5}, {field_name, 3}, - [294] = + [307] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [297] = + [310] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [300] = + [313] = {field_name, 3}, {field_parameters, 4}, - [302] = + [315] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [305] = + [318] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [308] = + [321] = {field_name, 1}, {field_pattern, 3}, - [310] = + [323] = {field_parameters, 3}, {field_return_type, 5}, - [312] = + [325] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [315] = + [328] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [318] = + [331] = {field_name, 1}, {field_value, 3}, - [320] = + [333] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [324] = + [337] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [329] = + [342] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [333] = + [346] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [336] = + [349] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [339] = + [352] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [343] = + [356] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [347] = + [360] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [350] = + [363] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [353] = + [366] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [356] = + [369] = + {field_body, 6}, + {field_parameters, 3}, + {field_return_type, 5}, + [372] = {field_name, 3}, {field_type, 5}, - [358] = + [374] = {field_type, 2}, {field_type, 3, .inherited = true}, - [360] = + [376] = + {field_name, 1}, + {field_type, 5}, + {field_type_parameters, 2}, + [379] = {field_trait, 3}, {field_type, 5}, - [362] = + [381] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [365] = + [384] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [368] = + [387] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [372] = + [391] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [376] = + [395] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [380] = + [399] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [383] = + [402] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [387] = + [406] = + {field_name, 2}, + {field_type, 5}, + [408] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [390] = + [411] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [393] = + [414] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [396] = + [417] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [400] = + [421] = {field_alias, 5}, {field_name, 3}, - [402] = + [423] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [405] = + [426] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [409] = + [430] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [412] = + [433] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [415] = + [436] = {field_name, 2}, {field_pattern, 4}, - [417] = + [438] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [420] = + [441] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [425] = + [446] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [429] = + [450] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [432] = + [453] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [435] = + [456] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [438] = + [459] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [441] = + [462] = {field_type, 3}, {field_type, 4, .inherited = true}, - [443] = + [464] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [446] = + [467] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [449] = + [470] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [453] = + [474] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [457] = + [478] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [461] = + [482] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [466] = + [487] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [470] = + [491] = {field_name, 4}, {field_type, 6}, - [472] = + [493] = + {field_name, 2}, + {field_type, 6}, + {field_type_parameters, 3}, + [496] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [476] = + [500] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [480] = + [504] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [483] = + [507] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [487] = + [511] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [491] = + [515] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [494] = + [518] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [498] = + [522] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [503] = + [527] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [507] = + [531] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [512] = + [536] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [516] = + [540] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [520] = + [544] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [523] = + [547] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3569,287 +3683,317 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_identifier, }, [20] = { - [0] = alias_sym_type_identifier, + [1] = sym_identifier, + }, + [22] = { + [0] = sym_identifier, }, [24] = { + [0] = alias_sym_type_identifier, + }, + [28] = { [1] = alias_sym_type_identifier, }, - [26] = { + [30] = { [0] = alias_sym_type_identifier, }, - [28] = { + [33] = { [0] = sym_identifier, }, - [29] = { + [34] = { [1] = alias_sym_type_identifier, }, - [41] = { + [36] = { + [0] = alias_sym_type_identifier, + }, + [47] = { [2] = alias_sym_type_identifier, }, - [43] = { + [49] = { [0] = alias_sym_type_identifier, }, - [45] = { + [51] = { [0] = sym_generic_type, }, - [46] = { + [52] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [50] = { + [56] = { [2] = alias_sym_field_identifier, }, - [53] = { + [59] = { [2] = sym__line_doc_content, }, - [54] = { + [60] = { [1] = sym_identifier, }, - [55] = { + [62] = { [0] = sym_identifier, [2] = sym_identifier, }, - [57] = { + [63] = { + [0] = sym_identifier, + }, + [65] = { [0] = alias_sym_type_identifier, }, - [58] = { + [66] = { [0] = alias_sym_shorthand_field_identifier, }, - [59] = { + [67] = { [2] = sym_identifier, }, - [61] = { + [70] = { [0] = sym_generic_type, }, - [66] = { + [75] = { [1] = alias_sym_type_identifier, }, - [68] = { + [77] = { [0] = sym_identifier, }, - [71] = { - [1] = alias_sym_type_identifier, - }, - [72] = { + [80] = { [1] = alias_sym_type_identifier, }, - [76] = { + [81] = { [1] = alias_sym_type_identifier, }, - [77] = { + [85] = { [0] = alias_sym_type_identifier, }, - [84] = { + [91] = { [1] = alias_sym_type_identifier, }, - [85] = { + [92] = { [1] = alias_sym_type_identifier, }, - [86] = { + [93] = { [1] = alias_sym_type_identifier, }, - [88] = { + [95] = { [2] = alias_sym_type_identifier, }, - [89] = { + [96] = { [0] = sym_identifier, }, - [90] = { + [97] = { [0] = sym_identifier, }, - [95] = { + [102] = { [2] = alias_sym_type_identifier, }, - [101] = { + [108] = { [1] = alias_sym_shorthand_field_identifier, }, - [104] = { + [111] = { [3] = alias_sym_type_identifier, }, - [106] = { + [113] = { + [2] = alias_sym_type_identifier, + }, + [114] = { [0] = alias_sym_type_identifier, }, - [109] = { + [117] = { [0] = sym_identifier, }, - [111] = { + [121] = { + [0] = alias_sym_type_identifier, + }, + [122] = { [1] = alias_sym_type_identifier, }, - [117] = { + [128] = { [0] = alias_sym_type_identifier, }, - [119] = { - [2] = alias_sym_type_identifier, - }, - [120] = { + [129] = { [1] = alias_sym_type_identifier, }, - [121] = { + [130] = { [1] = alias_sym_type_identifier, }, - [126] = { + [135] = { [3] = sym_identifier, }, - [128] = { + [137] = { [1] = alias_sym_type_identifier, }, - [129] = { + [138] = { [1] = alias_sym_type_identifier, }, - [130] = { + [139] = { [1] = alias_sym_type_identifier, }, - [131] = { + [140] = { [1] = alias_sym_type_identifier, }, - [135] = { + [144] = { [2] = alias_sym_type_identifier, }, - [136] = { + [145] = { [2] = alias_sym_type_identifier, }, - [137] = { + [146] = { [2] = alias_sym_type_identifier, }, - [139] = { + [148] = { [0] = alias_sym_field_identifier, }, - [142] = { + [151] = { [2] = alias_sym_type_identifier, }, - [143] = { + [152] = { [3] = alias_sym_type_identifier, }, - [147] = { + [156] = { [0] = alias_sym_type_identifier, }, - [148] = { + [157] = { [2] = alias_sym_shorthand_field_identifier, }, - [149] = { + [158] = { [0] = alias_sym_field_identifier, }, - [153] = { + [161] = { + [1] = alias_sym_type_identifier, + }, + [163] = { [1] = alias_sym_type_identifier, }, - [159] = { + [170] = { [2] = alias_sym_type_identifier, }, - [160] = { + [171] = { [2] = alias_sym_type_identifier, }, - [163] = { + [174] = { + [0] = alias_sym_type_identifier, + }, + [175] = { [1] = alias_sym_type_identifier, }, - [164] = { + [176] = { [2] = alias_sym_type_identifier, }, - [165] = { + [177] = { [2] = alias_sym_type_identifier, }, - [178] = { + [189] = { [0] = alias_sym_field_identifier, }, - [179] = { + [190] = { + [1] = alias_sym_type_identifier, + }, + [191] = { [1] = alias_sym_type_identifier, }, - [180] = { + [192] = { [1] = alias_sym_type_identifier, }, - [182] = { + [194] = { [2] = alias_sym_type_identifier, }, - [183] = { + [195] = { [2] = alias_sym_type_identifier, }, - [184] = { + [196] = { [2] = alias_sym_type_identifier, }, - [187] = { + [199] = { [1] = alias_sym_field_identifier, }, - [191] = { + [203] = { [2] = alias_sym_type_identifier, }, - [192] = { + [204] = { [3] = alias_sym_type_identifier, }, - [193] = { + [205] = { [3] = alias_sym_type_identifier, }, - [194] = { + [206] = { [3] = alias_sym_type_identifier, }, - [198] = { + [210] = { [0] = alias_sym_type_identifier, }, - [199] = { + [211] = { [1] = alias_sym_field_identifier, }, - [207] = { + [219] = { [2] = alias_sym_type_identifier, }, - [209] = { + [221] = { [3] = alias_sym_type_identifier, }, - [210] = { + [222] = { [3] = alias_sym_type_identifier, }, - [213] = { + [225] = { [2] = alias_sym_type_identifier, }, - [220] = { + [233] = { [1] = alias_sym_field_identifier, }, - [221] = { + [234] = { + [1] = alias_sym_type_identifier, + }, + [235] = { [3] = alias_sym_type_identifier, }, - [222] = { + [236] = { [3] = alias_sym_type_identifier, }, - [225] = { + [239] = { [3] = alias_sym_type_identifier, }, - [226] = { + [240] = { [3] = alias_sym_type_identifier, }, - [229] = { + [243] = { [2] = alias_sym_type_identifier, }, - [233] = { + [247] = { [2] = alias_sym_type_identifier, }, - [234] = { + [248] = { + [2] = alias_sym_type_identifier, + }, + [249] = { [3] = alias_sym_type_identifier, }, - [235] = { + [250] = { [3] = alias_sym_type_identifier, }, - [236] = { + [251] = { [3] = alias_sym_type_identifier, }, - [242] = { + [257] = { [2] = alias_sym_field_identifier, }, - [245] = { + [260] = { [3] = alias_sym_type_identifier, }, - [252] = { + [267] = { [3] = alias_sym_type_identifier, }, - [254] = { + [269] = { [4] = alias_sym_type_identifier, }, - [255] = { + [270] = { [4] = alias_sym_type_identifier, }, - [258] = { + [273] = { [3] = alias_sym_type_identifier, }, - [264] = { + [279] = { + [2] = alias_sym_type_identifier, + }, + [280] = { [3] = alias_sym_type_identifier, }, - [270] = { + [286] = { [4] = alias_sym_type_identifier, }, }; @@ -3874,80 +4018,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 3, - [10] = 2, - [11] = 5, - [12] = 6, + [9] = 9, + [10] = 5, + [11] = 4, + [12] = 7, [13] = 8, - [14] = 3, - [15] = 2, - [16] = 5, - [17] = 6, - [18] = 3, - [19] = 2, - [20] = 5, - [21] = 6, - [22] = 3, - [23] = 2, - [24] = 5, - [25] = 6, - [26] = 3, - [27] = 2, - [28] = 5, - [29] = 6, - [30] = 3, - [31] = 2, - [32] = 5, - [33] = 6, - [34] = 34, + [14] = 9, + [15] = 5, + [16] = 4, + [17] = 9, + [18] = 9, + [19] = 5, + [20] = 4, + [21] = 8, + [22] = 9, + [23] = 5, + [24] = 4, + [25] = 8, + [26] = 9, + [27] = 5, + [28] = 4, + [29] = 8, + [30] = 9, + [31] = 5, + [32] = 4, + [33] = 8, + [34] = 8, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 38, - [40] = 36, - [41] = 41, - [42] = 42, + [39] = 39, + [40] = 40, + [41] = 38, + [42] = 39, [43] = 35, - [44] = 35, - [45] = 42, - [46] = 37, - [47] = 41, + [44] = 36, + [45] = 39, + [46] = 40, + [47] = 37, [48] = 38, - [49] = 36, - [50] = 38, - [51] = 36, + [49] = 38, + [50] = 39, + [51] = 35, [52] = 35, - [53] = 42, - [54] = 37, - [55] = 36, - [56] = 36, - [57] = 38, - [58] = 36, - [59] = 37, - [60] = 38, - [61] = 36, - [62] = 38, - [63] = 38, - [64] = 41, - [65] = 41, - [66] = 42, + [53] = 39, + [54] = 38, + [55] = 38, + [56] = 38, + [57] = 39, + [58] = 39, + [59] = 39, + [60] = 36, + [61] = 40, + [62] = 37, + [63] = 36, + [64] = 38, + [65] = 40, + [66] = 37, [67] = 67, [68] = 68, [69] = 69, - [70] = 68, - [71] = 69, + [70] = 70, + [71] = 71, [72] = 72, - [73] = 73, + [73] = 70, [74] = 74, - [75] = 75, - [76] = 75, - [77] = 72, - [78] = 73, - [79] = 74, - [80] = 80, - [81] = 81, - [82] = 82, + [75] = 74, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 72, + [80] = 76, + [81] = 77, + [82] = 78, [83] = 83, [84] = 84, [85] = 85, @@ -3956,66 +4100,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [88] = 88, [89] = 89, [90] = 90, - [91] = 91, + [91] = 84, [92] = 92, - [93] = 93, - [94] = 84, + [93] = 87, + [94] = 88, [95] = 89, - [96] = 96, - [97] = 96, - [98] = 93, + [96] = 90, + [97] = 84, + [98] = 92, [99] = 99, [100] = 100, [101] = 101, - [102] = 85, - [103] = 86, - [104] = 87, - [105] = 91, - [106] = 92, - [107] = 84, - [108] = 84, - [109] = 89, - [110] = 96, - [111] = 91, - [112] = 92, - [113] = 93, - [114] = 84, - [115] = 89, - [116] = 96, - [117] = 91, - [118] = 92, - [119] = 93, - [120] = 84, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 87, + [106] = 88, + [107] = 89, + [108] = 104, + [109] = 84, + [110] = 92, + [111] = 87, + [112] = 88, + [113] = 89, + [114] = 90, + [115] = 84, + [116] = 92, + [117] = 99, + [118] = 100, + [119] = 87, + [120] = 88, [121] = 89, - [122] = 96, - [123] = 91, - [124] = 92, - [125] = 91, - [126] = 92, - [127] = 93, + [122] = 101, + [123] = 90, + [124] = 84, + [125] = 92, + [126] = 87, + [127] = 88, [128] = 89, - [129] = 96, - [130] = 99, - [131] = 100, - [132] = 101, - [133] = 93, + [129] = 90, + [130] = 92, + [131] = 102, + [132] = 103, + [133] = 90, [134] = 134, [135] = 135, - [136] = 136, + [136] = 134, [137] = 137, [138] = 138, - [139] = 139, + [139] = 138, [140] = 140, - [141] = 141, + [141] = 137, [142] = 142, - [143] = 143, + [143] = 135, [144] = 144, - [145] = 140, + [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, - [150] = 134, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, @@ -4023,351 +4167,351 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [155] = 155, [156] = 156, [157] = 157, - [158] = 155, + [158] = 158, [159] = 159, [160] = 160, - [161] = 146, + [161] = 161, [162] = 162, - [163] = 151, - [164] = 164, + [163] = 163, + [164] = 151, [165] = 165, - [166] = 166, + [166] = 165, [167] = 167, [168] = 168, [169] = 169, - [170] = 170, + [170] = 142, [171] = 171, - [172] = 170, - [173] = 156, + [172] = 172, + [173] = 167, [174] = 174, - [175] = 167, - [176] = 138, - [177] = 141, - [178] = 142, - [179] = 179, + [175] = 175, + [176] = 176, + [177] = 157, + [178] = 178, + [179] = 146, [180] = 180, - [181] = 181, - [182] = 174, + [181] = 168, + [182] = 145, [183] = 183, - [184] = 184, + [184] = 153, [185] = 185, - [186] = 171, + [186] = 186, [187] = 187, - [188] = 188, - [189] = 169, - [190] = 179, - [191] = 188, - [192] = 192, - [193] = 193, - [194] = 192, - [195] = 195, - [196] = 196, + [188] = 178, + [189] = 152, + [190] = 146, + [191] = 178, + [192] = 152, + [193] = 162, + [194] = 146, + [195] = 178, + [196] = 152, [197] = 197, - [198] = 193, - [199] = 195, - [200] = 196, - [201] = 169, - [202] = 170, - [203] = 187, - [204] = 174, - [205] = 170, - [206] = 174, - [207] = 169, - [208] = 137, + [198] = 197, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 183, + [203] = 169, + [204] = 204, + [205] = 160, + [206] = 161, + [207] = 180, + [208] = 208, [209] = 209, [210] = 210, [211] = 211, [212] = 212, - [213] = 209, - [214] = 212, + [213] = 201, + [214] = 199, [215] = 215, [216] = 216, [217] = 217, [218] = 218, [219] = 219, - [220] = 220, - [221] = 218, + [220] = 215, + [221] = 221, [222] = 222, - [223] = 223, - [224] = 217, - [225] = 225, - [226] = 223, - [227] = 219, + [223] = 216, + [224] = 215, + [225] = 216, + [226] = 217, + [227] = 216, [228] = 217, [229] = 229, - [230] = 220, - [231] = 217, - [232] = 225, - [233] = 220, - [234] = 220, - [235] = 225, - [236] = 225, - [237] = 220, - [238] = 215, - [239] = 217, - [240] = 216, - [241] = 225, - [242] = 229, - [243] = 243, - [244] = 244, - [245] = 243, - [246] = 243, - [247] = 243, - [248] = 248, - [249] = 249, + [230] = 221, + [231] = 231, + [232] = 219, + [233] = 215, + [234] = 219, + [235] = 229, + [236] = 236, + [237] = 231, + [238] = 218, + [239] = 239, + [240] = 222, + [241] = 241, + [242] = 231, + [243] = 236, + [244] = 236, + [245] = 217, + [246] = 241, + [247] = 236, + [248] = 219, + [249] = 236, [250] = 250, - [251] = 251, - [252] = 252, + [251] = 229, + [252] = 250, [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 257, + [254] = 217, + [255] = 215, + [256] = 219, + [257] = 253, [258] = 258, [259] = 259, [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 264, - [266] = 266, + [261] = 258, + [262] = 259, + [263] = 260, + [264] = 260, + [265] = 259, + [266] = 258, [267] = 267, [268] = 268, - [269] = 249, - [270] = 250, - [271] = 251, - [272] = 252, - [273] = 253, - [274] = 254, - [275] = 255, - [276] = 256, - [277] = 258, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, [278] = 278, [279] = 279, - [280] = 266, - [281] = 267, - [282] = 268, - [283] = 258, - [284] = 249, - [285] = 250, - [286] = 258, - [287] = 251, - [288] = 252, - [289] = 258, - [290] = 258, - [291] = 253, - [292] = 254, - [293] = 257, - [294] = 255, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 268, + [287] = 269, + [288] = 288, + [289] = 270, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, [295] = 295, - [296] = 296, - [297] = 256, - [298] = 298, - [299] = 299, - [300] = 258, + [296] = 269, + [297] = 297, + [298] = 269, + [299] = 269, + [300] = 269, [301] = 301, [302] = 302, - [303] = 266, - [304] = 267, - [305] = 268, - [306] = 249, - [307] = 295, + [303] = 301, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, [308] = 308, - [309] = 309, - [310] = 257, - [311] = 311, - [312] = 268, - [313] = 313, - [314] = 250, - [315] = 251, - [316] = 316, + [309] = 267, + [310] = 276, + [311] = 277, + [312] = 278, + [313] = 279, + [314] = 280, + [315] = 281, + [316] = 282, [317] = 317, [318] = 318, - [319] = 264, + [319] = 319, [320] = 320, [321] = 321, [322] = 322, [323] = 323, - [324] = 324, - [325] = 252, - [326] = 253, - [327] = 254, - [328] = 255, - [329] = 256, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 258, - [338] = 338, - [339] = 257, - [340] = 340, - [341] = 264, - [342] = 342, - [343] = 302, - [344] = 340, - [345] = 345, - [346] = 248, - [347] = 347, - [348] = 260, - [349] = 262, - [350] = 296, - [351] = 313, - [352] = 317, - [353] = 320, - [354] = 324, - [355] = 332, - [356] = 334, - [357] = 335, - [358] = 301, - [359] = 311, - [360] = 342, - [361] = 345, - [362] = 262, - [363] = 324, - [364] = 345, - [365] = 342, - [366] = 266, - [367] = 345, - [368] = 267, - [369] = 324, - [370] = 342, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 181, - [375] = 180, - [376] = 376, - [377] = 377, - [378] = 371, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 373, - [391] = 391, - [392] = 392, + [324] = 318, + [325] = 285, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 283, + [330] = 301, + [331] = 284, + [332] = 285, + [333] = 268, + [334] = 301, + [335] = 274, + [336] = 269, + [337] = 274, + [338] = 318, + [339] = 276, + [340] = 277, + [341] = 278, + [342] = 279, + [343] = 280, + [344] = 281, + [345] = 282, + [346] = 283, + [347] = 284, + [348] = 285, + [349] = 268, + [350] = 350, + [351] = 269, + [352] = 270, + [353] = 353, + [354] = 350, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 270, + [360] = 274, + [361] = 358, + [362] = 355, + [363] = 271, + [364] = 294, + [365] = 276, + [366] = 277, + [367] = 317, + [368] = 323, + [369] = 353, + [370] = 272, + [371] = 275, + [372] = 291, + [373] = 295, + [374] = 305, + [375] = 307, + [376] = 308, + [377] = 322, + [378] = 326, + [379] = 278, + [380] = 358, + [381] = 279, + [382] = 280, + [383] = 271, + [384] = 281, + [385] = 323, + [386] = 295, + [387] = 282, + [388] = 358, + [389] = 283, + [390] = 271, + [391] = 284, + [392] = 295, [393] = 393, [394] = 394, [395] = 395, - [396] = 373, + [396] = 396, [397] = 397, - [398] = 371, + [398] = 398, [399] = 399, [400] = 400, - [401] = 400, + [401] = 401, [402] = 402, - [403] = 402, - [404] = 395, + [403] = 403, + [404] = 404, [405] = 405, - [406] = 405, - [407] = 400, - [408] = 405, - [409] = 402, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, [410] = 410, [411] = 411, - [412] = 410, - [413] = 410, + [412] = 412, + [413] = 413, [414] = 414, [415] = 415, - [416] = 414, - [417] = 414, + [416] = 416, + [417] = 400, [418] = 418, [419] = 419, [420] = 420, - [421] = 421, + [421] = 204, [422] = 422, - [423] = 421, - [424] = 422, - [425] = 419, - [426] = 421, - [427] = 420, - [428] = 420, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 400, + [427] = 212, + [428] = 399, [429] = 429, - [430] = 429, + [430] = 430, [431] = 431, [432] = 432, [433] = 433, - [434] = 434, - [435] = 435, - [436] = 433, - [437] = 434, - [438] = 434, - [439] = 433, - [440] = 435, - [441] = 435, + [434] = 433, + [435] = 431, + [436] = 432, + [437] = 430, + [438] = 432, + [439] = 431, + [440] = 440, + [441] = 440, [442] = 442, [443] = 443, - [444] = 443, - [445] = 443, - [446] = 244, - [447] = 338, - [448] = 347, - [449] = 261, - [450] = 323, - [451] = 336, - [452] = 379, - [453] = 394, - [454] = 381, - [455] = 385, + [444] = 444, + [445] = 445, + [446] = 444, + [447] = 447, + [448] = 447, + [449] = 444, + [450] = 444, + [451] = 445, + [452] = 447, + [453] = 445, + [454] = 445, + [455] = 447, [456] = 456, - [457] = 377, - [458] = 458, + [457] = 457, + [458] = 456, [459] = 456, - [460] = 388, - [461] = 456, - [462] = 380, - [463] = 389, - [464] = 464, - [465] = 384, - [466] = 392, - [467] = 399, - [468] = 383, - [469] = 376, - [470] = 386, - [471] = 387, - [472] = 456, - [473] = 382, - [474] = 393, + [460] = 456, + [461] = 461, + [462] = 461, + [463] = 290, + [464] = 461, + [465] = 461, + [466] = 466, + [467] = 466, + [468] = 398, + [469] = 466, + [470] = 396, + [471] = 394, + [472] = 395, + [473] = 466, + [474] = 397, [475] = 475, [476] = 475, - [477] = 475, - [478] = 475, + [477] = 403, + [478] = 423, [479] = 479, - [480] = 480, + [480] = 401, [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, + [482] = 411, + [483] = 408, + [484] = 409, + [485] = 404, + [486] = 413, + [487] = 414, + [488] = 418, + [489] = 407, + [490] = 415, + [491] = 416, + [492] = 424, + [493] = 425, + [494] = 410, + [495] = 412, + [496] = 406, [497] = 497, - [498] = 498, + [498] = 422, [499] = 499, [500] = 500, - [501] = 501, - [502] = 502, + [501] = 499, + [502] = 500, [503] = 503, [504] = 504, [505] = 505, @@ -4465,7 +4609,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [597] = 597, [598] = 598, [599] = 599, - [600] = 600, + [600] = 395, [601] = 601, [602] = 602, [603] = 603, @@ -4477,12 +4621,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [609] = 609, [610] = 610, [611] = 611, - [612] = 612, + [612] = 397, [613] = 613, - [614] = 614, + [614] = 398, [615] = 615, - [616] = 616, - [617] = 617, + [616] = 394, + [617] = 396, [618] = 618, [619] = 619, [620] = 620, @@ -4510,13 +4654,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [642] = 642, [643] = 643, [644] = 644, - [645] = 645, + [645] = 550, [646] = 646, [647] = 647, [648] = 648, [649] = 649, [650] = 650, - [651] = 651, + [651] = 545, [652] = 652, [653] = 653, [654] = 654, @@ -4528,16 +4672,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [660] = 660, [661] = 661, [662] = 662, - [663] = 347, + [663] = 663, [664] = 664, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 338, - [670] = 261, - [671] = 323, - [672] = 336, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, [673] = 673, [674] = 674, [675] = 675, @@ -4555,7 +4699,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [687] = 687, [688] = 688, [689] = 689, - [690] = 654, + [690] = 690, [691] = 691, [692] = 692, [693] = 693, @@ -4563,7 +4707,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 646, + [698] = 698, [699] = 699, [700] = 700, [701] = 701, @@ -4620,13 +4764,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [752] = 752, [753] = 753, [754] = 754, - [755] = 754, + [755] = 755, [756] = 756, - [757] = 756, + [757] = 757, [758] = 758, [759] = 759, [760] = 760, - [761] = 760, + [761] = 761, [762] = 762, [763] = 763, [764] = 764, @@ -4640,117 +4784,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [772] = 772, [773] = 773, [774] = 774, - [775] = 771, + [775] = 775, [776] = 776, [777] = 777, - [778] = 776, - [779] = 773, + [778] = 778, + [779] = 779, [780] = 780, [781] = 781, [782] = 782, [783] = 783, [784] = 784, - [785] = 782, + [785] = 785, [786] = 786, [787] = 787, [788] = 788, [789] = 789, - [790] = 784, - [791] = 786, - [792] = 787, - [793] = 788, - [794] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, [795] = 795, [796] = 796, [797] = 797, [798] = 798, - [799] = 799, + [799] = 798, [800] = 800, - [801] = 801, + [801] = 796, [802] = 802, [803] = 803, - [804] = 796, + [804] = 803, [805] = 805, [806] = 806, [807] = 807, [808] = 808, - [809] = 801, + [809] = 809, [810] = 810, - [811] = 811, - [812] = 812, - [813] = 802, + [811] = 809, + [812] = 806, + [813] = 805, [814] = 814, [815] = 815, - [816] = 805, - [817] = 807, - [818] = 799, - [819] = 800, - [820] = 814, - [821] = 812, - [822] = 798, - [823] = 810, - [824] = 815, - [825] = 796, - [826] = 798, - [827] = 796, - [828] = 798, + [816] = 807, + [817] = 808, + [818] = 818, + [819] = 819, + [820] = 819, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 822, + [825] = 823, + [826] = 826, + [827] = 826, + [828] = 828, [829] = 829, - [830] = 830, - [831] = 830, - [832] = 830, - [833] = 830, + [830] = 828, + [831] = 831, + [832] = 832, + [833] = 833, [834] = 834, - [835] = 835, - [836] = 836, + [835] = 831, + [836] = 832, [837] = 837, - [838] = 837, - [839] = 834, + [838] = 838, + [839] = 839, [840] = 840, - [841] = 841, + [841] = 840, [842] = 842, - [843] = 843, + [843] = 821, [844] = 844, - [845] = 841, + [845] = 829, [846] = 846, [847] = 837, - [848] = 848, - [849] = 849, + [848] = 839, + [849] = 822, [850] = 837, - [851] = 834, - [852] = 836, - [853] = 848, - [854] = 835, - [855] = 835, - [856] = 856, - [857] = 836, - [858] = 858, - [859] = 859, + [851] = 822, + [852] = 837, + [853] = 833, + [854] = 854, + [855] = 855, + [856] = 855, + [857] = 855, + [858] = 855, + [859] = 855, [860] = 860, [861] = 861, [862] = 862, [863] = 863, [864] = 864, - [865] = 859, - [866] = 860, - [867] = 861, - [868] = 868, - [869] = 869, + [865] = 861, + [866] = 866, + [867] = 867, + [868] = 861, + [869] = 860, [870] = 870, [871] = 871, - [872] = 872, - [873] = 873, + [872] = 866, + [873] = 861, [874] = 874, - [875] = 875, + [875] = 866, [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, + [877] = 864, + [878] = 860, + [879] = 862, + [880] = 862, + [881] = 862, + [882] = 862, + [883] = 861, [884] = 884, - [885] = 885, + [885] = 884, [886] = 886, [887] = 887, [888] = 888, @@ -4758,179 +4902,179 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [890] = 890, [891] = 891, [892] = 892, - [893] = 863, + [893] = 893, [894] = 894, - [895] = 864, + [895] = 895, [896] = 896, - [897] = 859, + [897] = 897, [898] = 898, [899] = 899, - [900] = 860, + [900] = 900, [901] = 901, - [902] = 890, + [902] = 902, [903] = 903, - [904] = 886, - [905] = 889, + [904] = 904, + [905] = 905, [906] = 906, - [907] = 861, - [908] = 656, + [907] = 907, + [908] = 908, [909] = 909, [910] = 910, - [911] = 863, - [912] = 859, - [913] = 898, + [911] = 911, + [912] = 912, + [913] = 913, [914] = 914, [915] = 915, [916] = 916, - [917] = 868, - [918] = 869, - [919] = 880, - [920] = 870, + [917] = 917, + [918] = 888, + [919] = 889, + [920] = 890, [921] = 921, - [922] = 871, + [922] = 893, [923] = 923, - [924] = 896, - [925] = 886, - [926] = 868, - [927] = 869, - [928] = 870, + [924] = 924, + [925] = 925, + [926] = 886, + [927] = 927, + [928] = 928, [929] = 929, - [930] = 896, + [930] = 893, [931] = 931, - [932] = 932, - [933] = 933, + [932] = 907, + [933] = 908, [934] = 934, [935] = 935, - [936] = 936, + [936] = 910, [937] = 937, [938] = 938, [939] = 939, - [940] = 871, + [940] = 913, [941] = 941, [942] = 942, - [943] = 943, + [943] = 914, [944] = 944, - [945] = 901, - [946] = 946, + [945] = 888, + [946] = 889, [947] = 890, - [948] = 929, + [948] = 948, [949] = 949, - [950] = 935, - [951] = 914, - [952] = 952, - [953] = 953, - [954] = 939, - [955] = 946, - [956] = 903, - [957] = 862, - [958] = 932, - [959] = 938, - [960] = 960, - [961] = 961, - [962] = 858, - [963] = 872, - [964] = 873, - [965] = 874, - [966] = 877, - [967] = 879, - [968] = 881, - [969] = 883, - [970] = 884, - [971] = 891, - [972] = 899, - [973] = 909, + [950] = 915, + [951] = 916, + [952] = 917, + [953] = 931, + [954] = 954, + [955] = 934, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 908, + [961] = 935, + [962] = 910, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 913, + [969] = 949, + [970] = 915, + [971] = 971, + [972] = 972, + [973] = 973, [974] = 974, - [975] = 931, - [976] = 936, - [977] = 937, - [978] = 941, - [979] = 863, - [980] = 960, - [981] = 961, - [982] = 974, - [983] = 983, - [984] = 984, - [985] = 887, - [986] = 888, - [987] = 892, - [988] = 915, - [989] = 933, - [990] = 990, - [991] = 944, - [992] = 983, - [993] = 929, - [994] = 984, - [995] = 901, - [996] = 952, - [997] = 864, - [998] = 901, - [999] = 890, - [1000] = 880, - [1001] = 953, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 656, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, + [975] = 975, + [976] = 976, + [977] = 957, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 931, + [984] = 934, + [985] = 985, + [986] = 935, + [987] = 907, + [988] = 908, + [989] = 949, + [990] = 910, + [991] = 991, + [992] = 992, + [993] = 913, + [994] = 914, + [995] = 915, + [996] = 916, + [997] = 886, + [998] = 959, + [999] = 980, + [1000] = 917, + [1001] = 1001, + [1002] = 907, + [1003] = 908, + [1004] = 941, + [1005] = 942, + [1006] = 974, + [1007] = 976, + [1008] = 979, + [1009] = 892, + [1010] = 902, + [1011] = 903, [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 336, - [1016] = 1016, - [1017] = 1017, - [1018] = 261, - [1019] = 180, - [1020] = 323, - [1021] = 1021, - [1022] = 1022, - [1023] = 181, - [1024] = 1024, - [1025] = 397, - [1026] = 372, - [1027] = 347, - [1028] = 1028, - [1029] = 1029, - [1030] = 338, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 723, - [1036] = 1036, - [1037] = 504, - [1038] = 673, - [1039] = 562, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 600, - [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 1047, - [1048] = 1048, - [1049] = 1049, - [1050] = 244, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, + [1013] = 913, + [1014] = 914, + [1015] = 949, + [1016] = 915, + [1017] = 916, + [1018] = 917, + [1019] = 958, + [1020] = 978, + [1021] = 981, + [1022] = 982, + [1023] = 1001, + [1024] = 891, + [1025] = 894, + [1026] = 899, + [1027] = 906, + [1028] = 909, + [1029] = 921, + [1030] = 924, + [1031] = 888, + [1032] = 889, + [1033] = 890, + [1034] = 963, + [1035] = 972, + [1036] = 973, + [1037] = 985, + [1038] = 991, + [1039] = 895, + [1040] = 896, + [1041] = 897, + [1042] = 898, + [1043] = 901, + [1044] = 905, + [1045] = 911, + [1046] = 912, + [1047] = 893, + [1048] = 954, + [1049] = 956, + [1050] = 964, + [1051] = 966, + [1052] = 971, + [1053] = 975, + [1054] = 923, + [1055] = 931, + [1056] = 934, + [1057] = 907, [1058] = 1058, [1059] = 1059, - [1060] = 1060, + [1060] = 608, [1061] = 1061, - [1062] = 1054, - [1063] = 429, - [1064] = 1064, - [1065] = 1002, + [1062] = 1062, + [1063] = 1063, + [1064] = 608, + [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, @@ -4938,1110 +5082,1110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1073, - [1074] = 1068, - [1075] = 1075, - [1076] = 1076, + [1073] = 402, + [1074] = 398, + [1075] = 394, + [1076] = 396, [1077] = 1077, - [1078] = 1078, - [1079] = 1054, - [1080] = 1008, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1068, - [1085] = 1085, + [1078] = 204, + [1079] = 1079, + [1080] = 419, + [1081] = 212, + [1082] = 395, + [1083] = 397, + [1084] = 1084, + [1085] = 574, [1086] = 1086, - [1087] = 1087, + [1087] = 648, [1088] = 1088, [1089] = 1089, - [1090] = 1090, - [1091] = 380, - [1092] = 553, - [1093] = 554, - [1094] = 555, - [1095] = 556, - [1096] = 557, - [1097] = 558, - [1098] = 559, - [1099] = 560, - [1100] = 561, - [1101] = 532, - [1102] = 563, - [1103] = 564, - [1104] = 565, - [1105] = 566, - [1106] = 567, - [1107] = 568, - [1108] = 569, - [1109] = 570, - [1110] = 571, - [1111] = 572, - [1112] = 573, - [1113] = 574, - [1114] = 575, - [1115] = 576, - [1116] = 577, - [1117] = 578, - [1118] = 579, - [1119] = 580, - [1120] = 581, - [1121] = 582, - [1122] = 583, - [1123] = 584, - [1124] = 585, - [1125] = 586, - [1126] = 587, - [1127] = 394, - [1128] = 533, - [1129] = 534, - [1130] = 388, - [1131] = 589, - [1132] = 590, - [1133] = 591, - [1134] = 592, - [1135] = 593, - [1136] = 594, - [1137] = 595, - [1138] = 596, - [1139] = 597, - [1140] = 598, - [1141] = 599, - [1142] = 537, - [1143] = 601, - [1144] = 602, - [1145] = 603, - [1146] = 604, - [1147] = 605, - [1148] = 606, - [1149] = 607, - [1150] = 608, - [1151] = 609, - [1152] = 610, - [1153] = 611, - [1154] = 612, - [1155] = 613, - [1156] = 614, - [1157] = 615, - [1158] = 616, - [1159] = 617, - [1160] = 618, - [1161] = 619, - [1162] = 620, - [1163] = 621, - [1164] = 622, - [1165] = 623, - [1166] = 624, - [1167] = 626, - [1168] = 627, - [1169] = 628, - [1170] = 629, - [1171] = 630, - [1172] = 753, - [1173] = 632, - [1174] = 633, - [1175] = 634, - [1176] = 635, - [1177] = 636, - [1178] = 637, - [1179] = 639, - [1180] = 640, - [1181] = 641, - [1182] = 642, - [1183] = 1183, - [1184] = 540, - [1185] = 588, - [1186] = 1186, - [1187] = 479, - [1188] = 625, + [1090] = 765, + [1091] = 1091, + [1092] = 1092, + [1093] = 1058, + [1094] = 1094, + [1095] = 1095, + [1096] = 686, + [1097] = 720, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 538, + [1114] = 503, + [1115] = 779, + [1116] = 780, + [1117] = 781, + [1118] = 782, + [1119] = 783, + [1120] = 785, + [1121] = 786, + [1122] = 504, + [1123] = 505, + [1124] = 506, + [1125] = 507, + [1126] = 508, + [1127] = 509, + [1128] = 512, + [1129] = 513, + [1130] = 514, + [1131] = 515, + [1132] = 516, + [1133] = 517, + [1134] = 518, + [1135] = 519, + [1136] = 520, + [1137] = 521, + [1138] = 522, + [1139] = 787, + [1140] = 524, + [1141] = 526, + [1142] = 527, + [1143] = 528, + [1144] = 529, + [1145] = 1145, + [1146] = 1146, + [1147] = 553, + [1148] = 1070, + [1149] = 554, + [1150] = 1150, + [1151] = 556, + [1152] = 557, + [1153] = 558, + [1154] = 559, + [1155] = 560, + [1156] = 1156, + [1157] = 561, + [1158] = 1158, + [1159] = 563, + [1160] = 564, + [1161] = 1161, + [1162] = 565, + [1163] = 566, + [1164] = 567, + [1165] = 568, + [1166] = 569, + [1167] = 570, + [1168] = 571, + [1169] = 572, + [1170] = 1170, + [1171] = 1171, + [1172] = 575, + [1173] = 576, + [1174] = 577, + [1175] = 578, + [1176] = 579, + [1177] = 580, + [1178] = 581, + [1179] = 582, + [1180] = 608, + [1181] = 1181, + [1182] = 583, + [1183] = 584, + [1184] = 585, + [1185] = 586, + [1186] = 553, + [1187] = 587, + [1188] = 588, [1189] = 1189, - [1190] = 638, - [1191] = 643, - [1192] = 1192, - [1193] = 1193, - [1194] = 644, - [1195] = 399, - [1196] = 372, - [1197] = 645, - [1198] = 138, - [1199] = 1199, - [1200] = 647, - [1201] = 648, - [1202] = 1202, - [1203] = 649, - [1204] = 650, - [1205] = 261, - [1206] = 384, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, + [1190] = 1190, + [1191] = 589, + [1192] = 590, + [1193] = 591, + [1194] = 592, + [1195] = 594, + [1196] = 595, + [1197] = 596, + [1198] = 597, + [1199] = 598, + [1200] = 599, + [1201] = 601, + [1202] = 602, + [1203] = 603, + [1204] = 604, + [1205] = 605, + [1206] = 606, + [1207] = 608, + [1208] = 609, + [1209] = 610, [1210] = 1210, [1211] = 1211, [1212] = 1212, [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1009, - [1217] = 1217, - [1218] = 392, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, + [1214] = 621, + [1215] = 608, + [1216] = 623, + [1217] = 624, + [1218] = 625, + [1219] = 626, + [1220] = 627, + [1221] = 628, + [1222] = 629, + [1223] = 630, [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 653, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 180, - [1232] = 658, - [1233] = 659, - [1234] = 660, - [1235] = 661, - [1236] = 662, - [1237] = 1237, - [1238] = 1238, - [1239] = 385, - [1240] = 664, - [1241] = 1241, - [1242] = 665, - [1243] = 1243, - [1244] = 656, - [1245] = 666, - [1246] = 667, - [1247] = 668, - [1248] = 387, - [1249] = 1249, - [1250] = 1250, + [1225] = 631, + [1226] = 632, + [1227] = 633, + [1228] = 634, + [1229] = 635, + [1230] = 636, + [1231] = 637, + [1232] = 638, + [1233] = 639, + [1234] = 641, + [1235] = 642, + [1236] = 646, + [1237] = 1212, + [1238] = 440, + [1239] = 649, + [1240] = 1240, + [1241] = 650, + [1242] = 652, + [1243] = 653, + [1244] = 654, + [1245] = 655, + [1246] = 656, + [1247] = 523, + [1248] = 657, + [1249] = 658, + [1250] = 659, [1251] = 1251, - [1252] = 674, - [1253] = 675, - [1254] = 676, - [1255] = 677, - [1256] = 678, - [1257] = 1257, - [1258] = 679, - [1259] = 680, - [1260] = 1260, - [1261] = 1261, + [1252] = 660, + [1253] = 661, + [1254] = 1059, + [1255] = 662, + [1256] = 663, + [1257] = 1068, + [1258] = 664, + [1259] = 665, + [1260] = 778, + [1261] = 668, [1262] = 1262, - [1263] = 681, + [1263] = 669, [1264] = 1264, - [1265] = 682, - [1266] = 683, - [1267] = 684, - [1268] = 685, - [1269] = 382, - [1270] = 687, - [1271] = 688, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 689, - [1277] = 691, - [1278] = 1278, - [1279] = 693, - [1280] = 694, - [1281] = 695, - [1282] = 696, - [1283] = 697, - [1284] = 699, - [1285] = 700, - [1286] = 1286, - [1287] = 393, + [1265] = 1265, + [1266] = 670, + [1267] = 1267, + [1268] = 671, + [1269] = 672, + [1270] = 673, + [1271] = 549, + [1272] = 551, + [1273] = 674, + [1274] = 675, + [1275] = 676, + [1276] = 677, + [1277] = 678, + [1278] = 687, + [1279] = 688, + [1280] = 1280, + [1281] = 1281, + [1282] = 1067, + [1283] = 1070, + [1284] = 1284, + [1285] = 1212, + [1286] = 693, + [1287] = 1066, [1288] = 1288, - [1289] = 701, - [1290] = 703, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, + [1289] = 1289, + [1290] = 694, + [1291] = 696, + [1292] = 697, + [1293] = 1065, [1294] = 1294, - [1295] = 1295, + [1295] = 698, [1296] = 1296, - [1297] = 1297, - [1298] = 1298, + [1297] = 699, + [1298] = 700, [1299] = 1299, - [1300] = 1300, - [1301] = 655, - [1302] = 338, - [1303] = 1010, - [1304] = 1304, - [1305] = 1305, + [1300] = 701, + [1301] = 1301, + [1302] = 702, + [1303] = 1303, + [1304] = 607, + [1305] = 703, [1306] = 704, - [1307] = 705, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 181, - [1312] = 706, - [1313] = 141, - [1314] = 707, - [1315] = 708, - [1316] = 709, - [1317] = 710, - [1318] = 711, - [1319] = 376, - [1320] = 1320, - [1321] = 377, - [1322] = 1322, - [1323] = 1323, + [1307] = 290, + [1308] = 613, + [1309] = 615, + [1310] = 618, + [1311] = 682, + [1312] = 683, + [1313] = 685, + [1314] = 525, + [1315] = 539, + [1316] = 540, + [1317] = 541, + [1318] = 542, + [1319] = 544, + [1320] = 547, + [1321] = 548, + [1322] = 552, + [1323] = 555, [1324] = 1324, - [1325] = 1325, - [1326] = 712, - [1327] = 1327, - [1328] = 713, - [1329] = 714, - [1330] = 715, - [1331] = 716, - [1332] = 717, - [1333] = 718, - [1334] = 719, - [1335] = 720, - [1336] = 379, - [1337] = 1337, - [1338] = 722, - [1339] = 724, - [1340] = 725, - [1341] = 726, - [1342] = 727, - [1343] = 728, - [1344] = 729, - [1345] = 730, - [1346] = 731, - [1347] = 732, - [1348] = 733, - [1349] = 734, - [1350] = 735, - [1351] = 736, - [1352] = 737, - [1353] = 1353, - [1354] = 738, - [1355] = 739, - [1356] = 740, - [1357] = 741, - [1358] = 742, - [1359] = 743, - [1360] = 744, - [1361] = 745, - [1362] = 746, - [1363] = 747, - [1364] = 748, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 749, - [1369] = 1369, - [1370] = 750, - [1371] = 751, - [1372] = 752, - [1373] = 631, - [1374] = 702, - [1375] = 323, - [1376] = 383, - [1377] = 1377, - [1378] = 480, - [1379] = 481, - [1380] = 142, - [1381] = 381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 397, - [1388] = 1388, - [1389] = 1389, - [1390] = 503, - [1391] = 1391, - [1392] = 482, - [1393] = 1393, - [1394] = 483, - [1395] = 484, - [1396] = 485, - [1397] = 486, - [1398] = 487, - [1399] = 488, - [1400] = 489, - [1401] = 490, - [1402] = 491, - [1403] = 492, - [1404] = 493, - [1405] = 494, - [1406] = 495, - [1407] = 496, - [1408] = 497, - [1409] = 498, - [1410] = 499, - [1411] = 500, - [1412] = 501, - [1413] = 386, - [1414] = 502, - [1415] = 505, - [1416] = 506, - [1417] = 507, - [1418] = 347, - [1419] = 1419, - [1420] = 508, - [1421] = 509, - [1422] = 510, - [1423] = 511, - [1424] = 512, - [1425] = 513, - [1426] = 514, - [1427] = 515, - [1428] = 516, - [1429] = 517, - [1430] = 518, - [1431] = 519, - [1432] = 520, - [1433] = 521, - [1434] = 522, - [1435] = 523, - [1436] = 524, - [1437] = 525, - [1438] = 526, - [1439] = 1439, - [1440] = 527, - [1441] = 528, - [1442] = 529, - [1443] = 530, + [1325] = 705, + [1326] = 1326, + [1327] = 706, + [1328] = 707, + [1329] = 708, + [1330] = 709, + [1331] = 710, + [1332] = 711, + [1333] = 1333, + [1334] = 712, + [1335] = 1335, + [1336] = 1336, + [1337] = 713, + [1338] = 714, + [1339] = 717, + [1340] = 719, + [1341] = 721, + [1342] = 722, + [1343] = 723, + [1344] = 619, + [1345] = 724, + [1346] = 725, + [1347] = 726, + [1348] = 620, + [1349] = 727, + [1350] = 728, + [1351] = 729, + [1352] = 622, + [1353] = 640, + [1354] = 643, + [1355] = 730, + [1356] = 731, + [1357] = 732, + [1358] = 733, + [1359] = 734, + [1360] = 735, + [1361] = 736, + [1362] = 737, + [1363] = 738, + [1364] = 739, + [1365] = 740, + [1366] = 741, + [1367] = 742, + [1368] = 743, + [1369] = 647, + [1370] = 667, + [1371] = 744, + [1372] = 745, + [1373] = 746, + [1374] = 747, + [1375] = 748, + [1376] = 1376, + [1377] = 679, + [1378] = 1378, + [1379] = 753, + [1380] = 754, + [1381] = 680, + [1382] = 755, + [1383] = 756, + [1384] = 681, + [1385] = 757, + [1386] = 758, + [1387] = 759, + [1388] = 760, + [1389] = 761, + [1390] = 762, + [1391] = 764, + [1392] = 1392, + [1393] = 766, + [1394] = 767, + [1395] = 768, + [1396] = 769, + [1397] = 770, + [1398] = 689, + [1399] = 771, + [1400] = 772, + [1401] = 773, + [1402] = 690, + [1403] = 774, + [1404] = 691, + [1405] = 692, + [1406] = 695, + [1407] = 715, + [1408] = 716, + [1409] = 718, + [1410] = 749, + [1411] = 750, + [1412] = 751, + [1413] = 752, + [1414] = 763, + [1415] = 784, + [1416] = 510, + [1417] = 511, + [1418] = 530, + [1419] = 532, + [1420] = 533, + [1421] = 534, + [1422] = 535, + [1423] = 536, + [1424] = 537, + [1425] = 775, + [1426] = 776, + [1427] = 777, + [1428] = 1212, + [1429] = 543, + [1430] = 546, + [1431] = 1431, + [1432] = 666, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 161, + [1440] = 395, + [1441] = 404, + [1442] = 1442, + [1443] = 1443, [1444] = 1444, - [1445] = 531, - [1446] = 336, - [1447] = 535, - [1448] = 536, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, [1449] = 1449, - [1450] = 538, + [1450] = 1450, [1451] = 1451, - [1452] = 539, - [1453] = 541, - [1454] = 389, - [1455] = 542, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, [1456] = 1456, - [1457] = 543, - [1458] = 544, - [1459] = 545, + [1457] = 1457, + [1458] = 1458, + [1459] = 212, [1460] = 1460, - [1461] = 546, - [1462] = 156, - [1463] = 167, - [1464] = 547, - [1465] = 548, - [1466] = 549, - [1467] = 550, - [1468] = 551, - [1469] = 552, - [1470] = 686, - [1471] = 1471, - [1472] = 656, + [1461] = 1461, + [1462] = 1462, + [1463] = 409, + [1464] = 1464, + [1465] = 411, + [1466] = 180, + [1467] = 1467, + [1468] = 413, + [1469] = 414, + [1470] = 416, + [1471] = 424, + [1472] = 160, [1473] = 1473, - [1474] = 704, - [1475] = 1475, - [1476] = 1003, + [1474] = 1474, + [1475] = 407, + [1476] = 1476, [1477] = 1477, [1478] = 1478, [1479] = 1479, [1480] = 1480, [1481] = 1481, - [1482] = 1482, + [1482] = 396, [1483] = 1483, - [1484] = 1040, + [1484] = 1484, [1485] = 1485, [1486] = 1486, - [1487] = 1487, - [1488] = 1488, + [1487] = 1070, + [1488] = 397, [1489] = 1489, [1490] = 1490, [1491] = 1491, - [1492] = 1011, + [1492] = 1492, [1493] = 1493, - [1494] = 1494, - [1495] = 1495, + [1494] = 422, + [1495] = 398, [1496] = 1496, [1497] = 1497, - [1498] = 1491, + [1498] = 1498, [1499] = 1499, - [1500] = 1500, + [1500] = 169, [1501] = 1501, [1502] = 1502, [1503] = 1503, - [1504] = 1491, + [1504] = 1504, [1505] = 1505, - [1506] = 1013, - [1507] = 1040, - [1508] = 1014, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, [1509] = 1509, [1510] = 1510, - [1511] = 1040, - [1512] = 1512, - [1513] = 1012, - [1514] = 1510, - [1515] = 1512, - [1516] = 1089, + [1511] = 1511, + [1512] = 408, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, [1517] = 1517, - [1518] = 1089, - [1519] = 1024, - [1520] = 1021, - [1521] = 1056, - [1522] = 1056, - [1523] = 1046, - [1524] = 1069, - [1525] = 1069, - [1526] = 1028, - [1527] = 1016, - [1528] = 1528, - [1529] = 1031, - [1530] = 1022, + [1518] = 1518, + [1519] = 1519, + [1520] = 406, + [1521] = 1521, + [1522] = 204, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 412, + [1527] = 419, + [1528] = 401, + [1529] = 1529, + [1530] = 418, [1531] = 1531, - [1532] = 1029, - [1533] = 1017, - [1534] = 1393, - [1535] = 1393, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, [1536] = 1536, - [1537] = 1238, - [1538] = 1046, + [1537] = 403, + [1538] = 1538, [1539] = 1539, [1540] = 1540, [1541] = 1541, - [1542] = 1045, - [1543] = 1543, - [1544] = 1045, - [1545] = 1036, - [1546] = 1393, - [1547] = 1033, - [1548] = 1238, + [1542] = 1542, + [1543] = 394, + [1544] = 425, + [1545] = 183, + [1546] = 423, + [1547] = 410, + [1548] = 402, [1549] = 1549, - [1550] = 1072, + [1550] = 415, [1551] = 1551, - [1552] = 1377, - [1553] = 1478, - [1554] = 244, - [1555] = 1549, - [1556] = 1047, - [1557] = 1058, - [1558] = 1475, - [1559] = 1059, - [1560] = 1551, - [1561] = 1042, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1070, + [1559] = 1070, + [1560] = 1560, + [1561] = 1561, [1562] = 1562, - [1563] = 1562, - [1564] = 1034, - [1565] = 1419, - [1566] = 1551, - [1567] = 1562, - [1568] = 1419, - [1569] = 1543, - [1570] = 1377, - [1571] = 1551, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1108, + [1570] = 1570, + [1571] = 1571, [1572] = 1562, - [1573] = 1496, - [1574] = 1574, - [1575] = 1489, - [1576] = 1576, - [1577] = 1499, - [1578] = 1576, - [1579] = 1482, - [1580] = 1486, - [1581] = 1048, - [1582] = 1071, - [1583] = 1075, - [1584] = 1044, - [1585] = 1505, - [1586] = 1064, - [1587] = 338, - [1588] = 1488, - [1589] = 1574, - [1590] = 1490, - [1591] = 1478, + [1573] = 1564, + [1574] = 1565, + [1575] = 1575, + [1576] = 1071, + [1577] = 1577, + [1578] = 1578, + [1579] = 1069, + [1580] = 1072, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, [1592] = 1592, - [1593] = 1500, - [1594] = 1060, - [1595] = 261, - [1596] = 1076, - [1597] = 1088, - [1598] = 1085, - [1599] = 1057, - [1600] = 1051, - [1601] = 1502, - [1602] = 1087, - [1603] = 323, - [1604] = 1055, - [1605] = 1066, - [1606] = 1501, - [1607] = 1607, - [1608] = 1078, - [1609] = 336, - [1610] = 1610, - [1611] = 1053, - [1612] = 1090, - [1613] = 1592, - [1614] = 1086, - [1615] = 1494, - [1616] = 1503, - [1617] = 1081, - [1618] = 1592, - [1619] = 1497, - [1620] = 1073, - [1621] = 1052, - [1622] = 1083, - [1623] = 1049, - [1624] = 1061, - [1625] = 1483, - [1626] = 1067, - [1627] = 1493, - [1628] = 1628, - [1629] = 1495, - [1630] = 1485, - [1631] = 347, - [1632] = 1628, - [1633] = 1070, - [1634] = 1487, - [1635] = 1475, - [1636] = 1636, - [1637] = 1192, - [1638] = 1638, - [1639] = 1215, - [1640] = 1226, - [1641] = 1241, - [1642] = 1286, - [1643] = 1323, - [1644] = 1337, - [1645] = 1493, - [1646] = 1502, - [1647] = 1386, - [1648] = 1489, - [1649] = 1499, - [1650] = 1199, - [1651] = 1208, - [1652] = 1209, - [1653] = 1217, - [1654] = 1654, - [1655] = 1308, - [1656] = 1310, - [1657] = 1322, - [1658] = 1327, - [1659] = 1353, - [1660] = 1660, - [1661] = 1295, - [1662] = 1214, - [1663] = 1383, - [1664] = 1221, - [1665] = 1251, - [1666] = 1237, - [1667] = 1309, - [1668] = 1183, - [1669] = 1186, - [1670] = 1189, - [1671] = 1671, - [1672] = 1249, - [1673] = 1250, - [1674] = 1674, - [1675] = 1278, - [1676] = 1299, - [1677] = 1300, - [1678] = 1304, - [1679] = 1320, - [1680] = 1324, - [1681] = 1325, - [1682] = 1682, - [1683] = 1384, - [1684] = 1444, - [1685] = 1460, - [1686] = 1257, - [1687] = 1262, - [1688] = 1264, - [1689] = 1193, - [1690] = 1690, - [1691] = 1274, - [1692] = 1369, - [1693] = 1219, - [1694] = 1220, - [1695] = 1695, - [1696] = 1202, + [1593] = 1593, + [1594] = 1594, + [1595] = 1108, + [1596] = 1596, + [1597] = 1108, + [1598] = 1079, + [1599] = 1158, + [1600] = 1095, + [1601] = 1088, + [1602] = 1099, + [1603] = 1158, + [1604] = 1445, + [1605] = 1501, + [1606] = 1213, + [1607] = 1445, + [1608] = 1161, + [1609] = 1091, + [1610] = 1181, + [1611] = 1092, + [1612] = 1161, + [1613] = 1181, + [1614] = 1084, + [1615] = 1089, + [1616] = 1213, + [1617] = 1098, + [1618] = 1516, + [1619] = 1619, + [1620] = 1516, + [1621] = 1109, + [1622] = 1501, + [1623] = 1103, + [1624] = 1107, + [1625] = 1625, + [1626] = 1110, + [1627] = 1498, + [1628] = 1431, + [1629] = 1210, + [1630] = 1280, + [1631] = 1376, + [1632] = 1625, + [1633] = 290, + [1634] = 1445, + [1635] = 1498, + [1636] = 1619, + [1637] = 1637, + [1638] = 1251, + [1639] = 1639, + [1640] = 1640, + [1641] = 1639, + [1642] = 1640, + [1643] = 1639, + [1644] = 1640, + [1645] = 1557, + [1646] = 1556, + [1647] = 1625, + [1648] = 1640, + [1649] = 1637, + [1650] = 1639, + [1651] = 1251, + [1652] = 1625, + [1653] = 396, + [1654] = 1171, + [1655] = 1591, + [1656] = 1150, + [1657] = 1592, + [1658] = 1392, + [1659] = 1284, + [1660] = 1211, + [1661] = 1288, + [1662] = 1281, + [1663] = 1289, + [1664] = 1378, + [1665] = 1294, + [1666] = 1585, + [1667] = 1189, + [1668] = 1296, + [1669] = 395, + [1670] = 397, + [1671] = 398, + [1672] = 394, + [1673] = 1673, + [1674] = 1190, + [1675] = 1593, + [1676] = 1586, + [1677] = 1557, + [1678] = 1587, + [1679] = 1581, + [1680] = 1582, + [1681] = 1262, + [1682] = 1560, + [1683] = 1299, + [1684] = 1684, + [1685] = 1588, + [1686] = 1563, + [1687] = 1687, + [1688] = 1301, + [1689] = 1689, + [1690] = 1303, + [1691] = 1589, + [1692] = 1265, + [1693] = 1156, + [1694] = 1590, + [1695] = 1583, + [1696] = 1584, [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1439, - [1701] = 1451, - [1702] = 1636, - [1703] = 1496, - [1704] = 1704, - [1705] = 1222, - [1706] = 1225, - [1707] = 1008, - [1708] = 1293, - [1709] = 1297, - [1710] = 1483, - [1711] = 1505, - [1712] = 1495, - [1713] = 1485, - [1714] = 1486, - [1715] = 1488, - [1716] = 1490, - [1717] = 1500, - [1718] = 1501, - [1719] = 1494, - [1720] = 1503, - [1721] = 1497, - [1722] = 1482, - [1723] = 1207, - [1724] = 1211, - [1725] = 1223, - [1726] = 1224, - [1727] = 1487, - [1728] = 1291, - [1729] = 1294, - [1730] = 1296, - [1731] = 1298, - [1732] = 1305, - [1733] = 1733, - [1734] = 1382, - [1735] = 1385, - [1736] = 1388, - [1737] = 1389, - [1738] = 1391, - [1739] = 1449, - [1740] = 1740, - [1741] = 429, - [1742] = 389, - [1743] = 382, - [1744] = 384, - [1745] = 392, - [1746] = 1496, - [1747] = 1228, - [1748] = 1748, - [1749] = 1483, - [1750] = 388, - [1751] = 1505, - [1752] = 399, - [1753] = 1495, - [1754] = 1485, - [1755] = 1486, - [1756] = 1488, - [1757] = 1490, - [1758] = 1500, - [1759] = 1501, - [1760] = 1494, - [1761] = 1503, - [1762] = 1497, - [1763] = 1482, - [1764] = 1212, - [1765] = 1213, - [1766] = 385, - [1767] = 387, - [1768] = 1487, - [1769] = 393, - [1770] = 1292, - [1771] = 1210, - [1772] = 376, - [1773] = 377, - [1774] = 379, - [1775] = 383, - [1776] = 386, - [1777] = 394, - [1778] = 156, - [1779] = 167, - [1780] = 380, - [1781] = 138, - [1782] = 1782, - [1783] = 1496, - [1784] = 141, - [1785] = 397, - [1786] = 1786, - [1787] = 1505, - [1788] = 142, - [1789] = 372, - [1790] = 1487, - [1791] = 180, - [1792] = 181, + [1698] = 1324, + [1699] = 1326, + [1700] = 1684, + [1701] = 1567, + [1702] = 1333, + [1703] = 1687, + [1704] = 1556, + [1705] = 1594, + [1706] = 1267, + [1707] = 1689, + [1708] = 1335, + [1709] = 1709, + [1710] = 1577, + [1711] = 1578, + [1712] = 1336, + [1713] = 1264, + [1714] = 1561, + [1715] = 1585, + [1716] = 1716, + [1717] = 1717, + [1718] = 1485, + [1719] = 1492, + [1720] = 1444, + [1721] = 1509, + [1722] = 1531, + [1723] = 1723, + [1724] = 1551, + [1725] = 1542, + [1726] = 1524, + [1727] = 1727, + [1728] = 1489, + [1729] = 1490, + [1730] = 1493, + [1731] = 1467, + [1732] = 1532, + [1733] = 1540, + [1734] = 1477, + [1735] = 1478, + [1736] = 1525, + [1737] = 1529, + [1738] = 1521, + [1739] = 1739, + [1740] = 1491, + [1741] = 1741, + [1742] = 1742, + [1743] = 1581, + [1744] = 1452, + [1745] = 1456, + [1746] = 1582, + [1747] = 1496, + [1748] = 1561, + [1749] = 1560, + [1750] = 1567, + [1751] = 1481, + [1752] = 1535, + [1753] = 1552, + [1754] = 1517, + [1755] = 1503, + [1756] = 1505, + [1757] = 1065, + [1758] = 1483, + [1759] = 1515, + [1760] = 1514, + [1761] = 1484, + [1762] = 1519, + [1763] = 1536, + [1764] = 1764, + [1765] = 1502, + [1766] = 1577, + [1767] = 1578, + [1768] = 1768, + [1769] = 1769, + [1770] = 1583, + [1771] = 1584, + [1772] = 1585, + [1773] = 1586, + [1774] = 1587, + [1775] = 1588, + [1776] = 1589, + [1777] = 1590, + [1778] = 1591, + [1779] = 1592, + [1780] = 1593, + [1781] = 1781, + [1782] = 1434, + [1783] = 1435, + [1784] = 1474, + [1785] = 1442, + [1786] = 1450, + [1787] = 1480, + [1788] = 1563, + [1789] = 1789, + [1790] = 1553, + [1791] = 1457, + [1792] = 1511, [1793] = 1793, - [1794] = 1748, - [1795] = 1795, - [1796] = 1740, - [1797] = 1660, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1654, - [1802] = 1674, - [1803] = 1682, - [1804] = 1695, - [1805] = 1636, - [1806] = 1800, - [1807] = 1704, - [1808] = 1782, - [1809] = 1809, - [1810] = 1748, - [1811] = 1493, - [1812] = 1502, - [1813] = 1740, - [1814] = 1489, - [1815] = 1499, - [1816] = 1660, - [1817] = 1817, - [1818] = 1818, - [1819] = 1674, - [1820] = 1636, - [1821] = 1748, - [1822] = 1740, - [1823] = 1660, - [1824] = 1674, - [1825] = 1809, - [1826] = 1748, - [1827] = 1660, - [1828] = 1674, - [1829] = 1829, - [1830] = 1636, - [1831] = 1748, - [1832] = 1660, - [1833] = 1674, - [1834] = 1636, - [1835] = 1748, - [1836] = 1660, - [1837] = 1674, - [1838] = 1636, - [1839] = 1839, - [1840] = 1793, - [1841] = 381, - [1842] = 1842, - [1843] = 1843, - [1844] = 1844, - [1845] = 1845, - [1846] = 1846, - [1847] = 1638, - [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 1850, - [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1852, - [1858] = 1858, - [1859] = 1849, - [1860] = 1855, - [1861] = 1861, - [1862] = 1862, - [1863] = 1842, - [1864] = 1864, - [1865] = 1690, - [1866] = 1856, - [1867] = 1856, - [1868] = 1858, - [1869] = 1861, - [1870] = 1864, - [1871] = 1854, - [1872] = 1862, - [1873] = 1873, + [1794] = 1454, + [1795] = 1464, + [1796] = 1523, + [1797] = 1506, + [1798] = 1594, + [1799] = 1448, + [1800] = 1451, + [1801] = 1479, + [1802] = 1458, + [1803] = 1460, + [1804] = 1461, + [1805] = 1462, + [1806] = 1473, + [1807] = 1555, + [1808] = 1497, + [1809] = 1499, + [1810] = 440, + [1811] = 409, + [1812] = 413, + [1813] = 414, + [1814] = 416, + [1815] = 424, + [1816] = 1816, + [1817] = 1567, + [1818] = 1508, + [1819] = 412, + [1820] = 1577, + [1821] = 1578, + [1822] = 418, + [1823] = 403, + [1824] = 423, + [1825] = 1825, + [1826] = 1443, + [1827] = 1583, + [1828] = 1584, + [1829] = 1586, + [1830] = 1587, + [1831] = 1588, + [1832] = 1589, + [1833] = 1590, + [1834] = 1591, + [1835] = 1592, + [1836] = 1593, + [1837] = 1436, + [1838] = 1437, + [1839] = 1563, + [1840] = 407, + [1841] = 408, + [1842] = 410, + [1843] = 1554, + [1844] = 1538, + [1845] = 401, + [1846] = 404, + [1847] = 415, + [1848] = 1594, + [1849] = 1510, + [1850] = 406, + [1851] = 422, + [1852] = 183, + [1853] = 169, + [1854] = 411, + [1855] = 160, + [1856] = 1567, + [1857] = 161, + [1858] = 1577, + [1859] = 419, + [1860] = 180, + [1861] = 402, + [1862] = 1563, + [1863] = 1594, + [1864] = 1455, + [1865] = 212, + [1866] = 204, + [1867] = 1867, + [1868] = 1789, + [1869] = 1869, + [1870] = 1476, + [1871] = 1871, + [1872] = 1486, + [1873] = 1717, [1874] = 1874, - [1875] = 1699, - [1876] = 1876, - [1877] = 1877, - [1878] = 1876, - [1879] = 1879, - [1880] = 1877, - [1881] = 1881, - [1882] = 1881, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1884, - [1887] = 1885, - [1888] = 1883, + [1875] = 1518, + [1876] = 1867, + [1877] = 1541, + [1878] = 1549, + [1879] = 1449, + [1880] = 1793, + [1881] = 1723, + [1882] = 1727, + [1883] = 1741, + [1884] = 1816, + [1885] = 1825, + [1886] = 1886, + [1887] = 1886, + [1888] = 1888, [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1892, - [1895] = 1892, - [1896] = 1893, - [1897] = 1893, - [1898] = 1893, - [1899] = 1893, - [1900] = 1900, - [1901] = 1900, - [1902] = 142, - [1903] = 1011, - [1904] = 138, - [1905] = 1013, - [1906] = 1016, - [1907] = 1012, - [1908] = 1024, - [1909] = 1031, - [1910] = 1910, - [1911] = 1014, - [1912] = 1017, - [1913] = 1024, - [1914] = 1022, - [1915] = 1016, - [1916] = 1021, - [1917] = 1029, - [1918] = 1017, - [1919] = 1031, - [1920] = 1028, - [1921] = 1033, - [1922] = 1058, - [1923] = 1059, - [1924] = 1036, - [1925] = 1034, - [1926] = 1064, - [1927] = 1047, - [1928] = 1072, - [1929] = 1042, - [1930] = 1048, - [1931] = 1071, - [1932] = 1932, - [1933] = 1075, - [1934] = 1932, - [1935] = 1935, - [1936] = 1936, - [1937] = 1936, - [1938] = 1076, - [1939] = 180, - [1940] = 1070, - [1941] = 1085, + [1890] = 1869, + [1891] = 1581, + [1892] = 1582, + [1893] = 1871, + [1894] = 1561, + [1895] = 1560, + [1896] = 1717, + [1897] = 1723, + [1898] = 1816, + [1899] = 1869, + [1900] = 1871, + [1901] = 1717, + [1902] = 1869, + [1903] = 1723, + [1904] = 1816, + [1905] = 1869, + [1906] = 1717, + [1907] = 1907, + [1908] = 1723, + [1909] = 1816, + [1910] = 1869, + [1911] = 1717, + [1912] = 1912, + [1913] = 1913, + [1914] = 1723, + [1915] = 1816, + [1916] = 1869, + [1917] = 1717, + [1918] = 1723, + [1919] = 1816, + [1920] = 1533, + [1921] = 1453, + [1922] = 1539, + [1923] = 1534, + [1924] = 1504, + [1925] = 1507, + [1926] = 1513, + [1927] = 1927, + [1928] = 1438, + [1929] = 1929, + [1930] = 1446, + [1931] = 1931, + [1932] = 1447, + [1933] = 1871, + [1934] = 1934, + [1935] = 1889, + [1936] = 425, + [1937] = 1937, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, [1942] = 1942, - [1943] = 181, - [1944] = 1051, - [1945] = 1087, - [1946] = 1061, - [1947] = 1086, - [1948] = 1067, - [1949] = 1078, - [1950] = 1066, - [1951] = 1088, - [1952] = 1090, - [1953] = 1044, - [1954] = 1053, - [1955] = 1942, - [1956] = 1081, - [1957] = 397, - [1958] = 1942, - [1959] = 372, - [1960] = 1083, - [1961] = 1961, - [1962] = 1049, - [1963] = 1060, - [1964] = 1531, - [1965] = 1211, - [1966] = 1293, - [1967] = 1385, - [1968] = 1292, - [1969] = 1222, - [1970] = 1291, - [1971] = 1225, - [1972] = 1391, - [1973] = 1207, - [1974] = 1540, - [1975] = 1212, - [1976] = 1213, - [1977] = 1539, - [1978] = 1451, - [1979] = 1296, - [1980] = 1541, - [1981] = 1936, + [1943] = 1943, + [1944] = 1944, + [1945] = 1937, + [1946] = 1946, + [1947] = 1947, + [1948] = 1943, + [1949] = 1949, + [1950] = 1950, + [1951] = 1951, + [1952] = 1739, + [1953] = 1953, + [1954] = 1954, + [1955] = 1781, + [1956] = 1947, + [1957] = 1907, + [1958] = 1944, + [1959] = 1939, + [1960] = 1960, + [1961] = 1949, + [1962] = 1954, + [1963] = 1950, + [1964] = 1939, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1940, + [1969] = 1969, + [1970] = 1942, + [1971] = 1946, + [1972] = 1941, + [1973] = 1969, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1975, + [1979] = 1974, + [1980] = 1977, + [1981] = 1976, [1982] = 1982, - [1983] = 1228, - [1984] = 1297, - [1985] = 1298, - [1986] = 1382, - [1987] = 1987, - [1988] = 1439, - [1989] = 1294, - [1990] = 1223, - [1991] = 1224, - [1992] = 1449, - [1993] = 1388, - [1994] = 1305, - [1995] = 1389, - [1996] = 1210, - [1997] = 167, - [1998] = 1998, - [1999] = 1999, + [1983] = 1983, + [1984] = 1984, + [1985] = 1985, + [1986] = 1986, + [1987] = 1986, + [1988] = 1986, + [1989] = 1985, + [1990] = 1986, + [1991] = 1986, + [1992] = 1986, + [1993] = 1985, + [1994] = 1994, + [1995] = 1994, + [1996] = 160, + [1997] = 180, + [1998] = 1099, + [1999] = 1095, [2000] = 2000, - [2001] = 141, - [2002] = 1031, - [2003] = 1016, - [2004] = 2004, - [2005] = 2005, - [2006] = 1024, - [2007] = 1910, - [2008] = 1017, - [2009] = 1031, - [2010] = 1017, - [2011] = 2011, - [2012] = 1024, - [2013] = 1016, - [2014] = 1031, - [2015] = 1017, - [2016] = 1024, - [2017] = 1016, + [2001] = 1098, + [2002] = 1088, + [2003] = 1072, + [2004] = 1095, + [2005] = 1280, + [2006] = 1376, + [2007] = 1088, + [2008] = 1098, + [2009] = 1099, + [2010] = 1431, + [2011] = 1069, + [2012] = 1071, + [2013] = 1210, + [2014] = 1110, + [2015] = 1324, + [2016] = 1103, + [2017] = 1079, [2018] = 2018, - [2019] = 2019, - [2020] = 2020, + [2019] = 1109, + [2020] = 1107, [2021] = 2021, [2022] = 2022, [2023] = 2021, - [2024] = 2022, + [2024] = 1284, [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2019, - [2029] = 2020, - [2030] = 2025, - [2031] = 2031, - [2032] = 2027, - [2033] = 2031, - [2034] = 2034, + [2026] = 1289, + [2027] = 1288, + [2028] = 1084, + [2029] = 1091, + [2030] = 1089, + [2031] = 1092, + [2032] = 1150, + [2033] = 419, + [2034] = 1575, [2035] = 2035, - [2036] = 2036, + [2036] = 2025, [2037] = 2037, - [2038] = 2038, - [2039] = 338, - [2040] = 1016, - [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 1024, - [2046] = 2046, - [2047] = 336, - [2048] = 2048, - [2049] = 2042, - [2050] = 2050, - [2051] = 2051, - [2052] = 2052, - [2053] = 323, - [2054] = 2054, - [2055] = 2052, - [2056] = 347, - [2057] = 2051, - [2058] = 1935, - [2059] = 261, - [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 1031, - [2067] = 1017, - [2068] = 2064, - [2069] = 2069, - [2070] = 2034, - [2071] = 2050, - [2072] = 2065, - [2073] = 2037, - [2074] = 2044, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, + [2038] = 212, + [2039] = 2039, + [2040] = 1265, + [2041] = 1211, + [2042] = 1296, + [2043] = 2037, + [2044] = 402, + [2045] = 1171, + [2046] = 1326, + [2047] = 1299, + [2048] = 204, + [2049] = 1378, + [2050] = 1264, + [2051] = 2037, + [2052] = 1281, + [2053] = 1262, + [2054] = 2025, + [2055] = 1505, + [2056] = 1508, + [2057] = 1434, + [2058] = 1435, + [2059] = 1457, + [2060] = 1568, + [2061] = 1437, + [2062] = 1515, + [2063] = 1519, + [2064] = 1448, + [2065] = 1451, + [2066] = 1553, + [2067] = 1570, + [2068] = 1442, + [2069] = 1456, + [2070] = 2070, + [2071] = 1571, + [2072] = 1511, + [2073] = 1452, + [2074] = 1458, + [2075] = 1460, + [2076] = 1436, + [2077] = 1461, + [2078] = 1462, + [2079] = 1473, + [2080] = 1454, + [2081] = 1555, + [2082] = 1497, + [2083] = 1499, + [2084] = 1464, + [2085] = 1538, + [2086] = 1523, + [2087] = 1506, + [2088] = 1554, [2089] = 2089, - [2090] = 2090, - [2091] = 2091, + [2090] = 1503, + [2091] = 1450, [2092] = 2092, - [2093] = 2093, - [2094] = 2094, + [2093] = 161, + [2094] = 169, [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 380, - [2101] = 2101, - [2102] = 2102, - [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 2089, - [2109] = 2109, + [2096] = 1294, + [2097] = 1301, + [2098] = 1303, + [2099] = 1333, + [2100] = 1335, + [2101] = 1336, + [2102] = 1392, + [2103] = 1098, + [2104] = 1099, + [2105] = 1095, + [2106] = 1088, + [2107] = 1088, + [2108] = 2108, + [2109] = 1095, [2110] = 2110, - [2111] = 2087, - [2112] = 2112, - [2113] = 1961, - [2114] = 2114, - [2115] = 2115, - [2116] = 2090, - [2117] = 1935, - [2118] = 2118, - [2119] = 2118, - [2120] = 1935, + [2111] = 1099, + [2112] = 1088, + [2113] = 1099, + [2114] = 1098, + [2115] = 1098, + [2116] = 2000, + [2117] = 2117, + [2118] = 1095, + [2119] = 2119, + [2120] = 2120, [2121] = 2121, [2122] = 2122, - [2123] = 2105, - [2124] = 2118, + [2123] = 2120, + [2124] = 2124, [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 1042, + [2126] = 2122, + [2127] = 2124, + [2128] = 2128, [2129] = 2129, - [2130] = 1961, - [2131] = 2131, + [2130] = 1098, + [2131] = 395, [2132] = 2132, [2133] = 2133, - [2134] = 1034, + [2134] = 2134, [2135] = 2135, - [2136] = 2135, + [2136] = 2136, [2137] = 2137, - [2138] = 1036, + [2138] = 2138, [2139] = 2139, - [2140] = 2140, - [2141] = 2132, + [2140] = 2022, + [2141] = 1095, [2142] = 2142, - [2143] = 2139, - [2144] = 2144, - [2145] = 2144, + [2143] = 2143, + [2144] = 394, + [2145] = 2145, [2146] = 2146, [2147] = 2147, - [2148] = 2148, - [2149] = 1033, - [2150] = 1935, - [2151] = 2137, - [2152] = 2135, + [2148] = 2138, + [2149] = 397, + [2150] = 2150, + [2151] = 2142, + [2152] = 2143, [2153] = 2153, [2154] = 2154, - [2155] = 2155, + [2155] = 1069, [2156] = 2156, - [2157] = 1961, + [2157] = 2157, [2158] = 2158, - [2159] = 2159, - [2160] = 2154, - [2161] = 2159, - [2162] = 2137, - [2163] = 2163, + [2159] = 1088, + [2160] = 2156, + [2161] = 2158, + [2162] = 2157, + [2163] = 1099, [2164] = 2164, - [2165] = 2147, - [2166] = 2158, - [2167] = 2164, + [2165] = 1071, + [2166] = 2166, + [2167] = 2167, [2168] = 2168, - [2169] = 2148, - [2170] = 2140, - [2171] = 2142, - [2172] = 2131, - [2173] = 2173, - [2174] = 2168, - [2175] = 2133, - [2176] = 2176, + [2169] = 2137, + [2170] = 398, + [2171] = 2171, + [2172] = 396, + [2173] = 1072, + [2174] = 2174, + [2175] = 2135, + [2176] = 2171, [2177] = 2177, [2178] = 2178, [2179] = 2179, @@ -6053,108 +6197,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 2181, + [2188] = 2188, [2189] = 2189, - [2190] = 2185, + [2190] = 2190, [2191] = 2191, - [2192] = 2184, - [2193] = 2183, + [2192] = 2192, + [2193] = 2193, [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 2196, + [2197] = 1079, [2198] = 2198, - [2199] = 2176, - [2200] = 2198, + [2199] = 2022, + [2200] = 2200, [2201] = 2201, - [2202] = 2194, + [2202] = 2202, [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, + [2206] = 2196, + [2207] = 411, + [2208] = 2196, + [2209] = 2200, [2210] = 2210, [2211] = 2211, - [2212] = 2212, + [2212] = 2203, [2213] = 2213, [2214] = 2214, - [2215] = 2180, - [2216] = 1961, - [2217] = 2204, - [2218] = 2189, + [2215] = 2202, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, [2219] = 2219, [2220] = 2220, [2221] = 2221, - [2222] = 2211, - [2223] = 2223, - [2224] = 2195, - [2225] = 2186, - [2226] = 2187, - [2227] = 2219, - [2228] = 2191, - [2229] = 2214, - [2230] = 2221, - [2231] = 2182, - [2232] = 2232, - [2233] = 1999, - [2234] = 2234, + [2222] = 2196, + [2223] = 2196, + [2224] = 2035, + [2225] = 2225, + [2226] = 2022, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2177, + [2232] = 1107, + [2233] = 2233, + [2234] = 1091, [2235] = 2235, [2236] = 2236, - [2237] = 2237, + [2237] = 1109, [2238] = 2238, - [2239] = 2239, + [2239] = 1092, [2240] = 2240, - [2241] = 2241, - [2242] = 2242, + [2241] = 2035, + [2242] = 2236, [2243] = 2243, [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2243, - [2248] = 2246, + [2247] = 2247, + [2248] = 2235, [2249] = 2249, - [2250] = 2250, - [2251] = 2251, + [2250] = 2246, + [2251] = 1103, [2252] = 2252, - [2253] = 2253, + [2253] = 2244, [2254] = 2254, - [2255] = 2239, + [2255] = 1084, [2256] = 2256, [2257] = 2257, - [2258] = 2252, + [2258] = 1089, [2259] = 2259, - [2260] = 2251, - [2261] = 2249, - [2262] = 2250, - [2263] = 2253, - [2264] = 2235, - [2265] = 2237, - [2266] = 2266, - [2267] = 2267, - [2268] = 2268, - [2269] = 2269, + [2260] = 2236, + [2261] = 2254, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 2257, + [2267] = 2233, + [2268] = 2022, + [2269] = 2245, [2270] = 2270, - [2271] = 2271, - [2272] = 2272, - [2273] = 2241, - [2274] = 2242, - [2275] = 2244, - [2276] = 2245, - [2277] = 2254, - [2278] = 2256, - [2279] = 2259, - [2280] = 2280, - [2281] = 2281, - [2282] = 2232, - [2283] = 2283, - [2284] = 2281, - [2285] = 2232, + [2271] = 2259, + [2272] = 2249, + [2273] = 2256, + [2274] = 2259, + [2275] = 2035, + [2276] = 2238, + [2277] = 2270, + [2278] = 2278, + [2279] = 2279, + [2280] = 2252, + [2281] = 2240, + [2282] = 2278, + [2283] = 1110, + [2284] = 2284, + [2285] = 2285, [2286] = 2286, - [2287] = 2272, - [2288] = 2266, - [2289] = 2280, + [2287] = 2287, + [2288] = 2288, + [2289] = 2289, [2290] = 2290, [2291] = 2291, [2292] = 2292, @@ -6162,1332 +6306,1663 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2294] = 2294, [2295] = 2295, [2296] = 2296, - [2297] = 2297, + [2297] = 2285, [2298] = 2298, - [2299] = 2004, + [2299] = 2299, [2300] = 2300, [2301] = 2301, - [2302] = 2292, + [2302] = 2302, [2303] = 2303, [2304] = 2304, - [2305] = 2305, - [2306] = 2298, + [2305] = 2286, + [2306] = 2306, [2307] = 2307, [2308] = 2308, - [2309] = 2309, + [2309] = 2293, [2310] = 2310, - [2311] = 2311, - [2312] = 2307, - [2313] = 2293, - [2314] = 2314, - [2315] = 2011, - [2316] = 2316, - [2317] = 2295, + [2311] = 2035, + [2312] = 2295, + [2313] = 2313, + [2314] = 2290, + [2315] = 2291, + [2316] = 2288, + [2317] = 2317, [2318] = 2318, [2319] = 2319, - [2320] = 2320, - [2321] = 2321, - [2322] = 2322, + [2320] = 2318, + [2321] = 2313, + [2322] = 2307, [2323] = 2323, - [2324] = 2324, - [2325] = 2325, + [2324] = 2300, + [2325] = 2323, [2326] = 2326, - [2327] = 2310, - [2328] = 2309, - [2329] = 2296, - [2330] = 2316, - [2331] = 2318, - [2332] = 2332, + [2327] = 2327, + [2328] = 2306, + [2329] = 2308, + [2330] = 2330, + [2331] = 2298, + [2332] = 2319, [2333] = 2333, - [2334] = 2334, - [2335] = 2335, - [2336] = 2292, - [2337] = 2337, + [2334] = 2330, + [2335] = 2294, + [2336] = 2333, + [2337] = 2289, [2338] = 2338, [2339] = 2339, [2340] = 2340, [2341] = 2341, [2342] = 2342, - [2343] = 2303, - [2344] = 2311, - [2345] = 2300, - [2346] = 2301, - [2347] = 2308, - [2348] = 2305, - [2349] = 2297, - [2350] = 2321, - [2351] = 2290, - [2352] = 2300, - [2353] = 2301, - [2354] = 2305, - [2355] = 2323, - [2356] = 2311, - [2357] = 2324, - [2358] = 2338, - [2359] = 2339, - [2360] = 167, - [2361] = 138, - [2362] = 141, - [2363] = 142, - [2364] = 2364, - [2365] = 2365, - [2366] = 2332, - [2367] = 2333, - [2368] = 2322, - [2369] = 2314, - [2370] = 2334, + [2343] = 2095, + [2344] = 2344, + [2345] = 2345, + [2346] = 2346, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, + [2350] = 2348, + [2351] = 2351, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, + [2357] = 2356, + [2358] = 2358, + [2359] = 2358, + [2360] = 2347, + [2361] = 2361, + [2362] = 2338, + [2363] = 2363, + [2364] = 2344, + [2365] = 2342, + [2366] = 2361, + [2367] = 2367, + [2368] = 2368, + [2369] = 2369, + [2370] = 2363, [2371] = 2371, - [2372] = 2304, + [2372] = 2372, [2373] = 2373, - [2374] = 2342, - [2375] = 2364, - [2376] = 2335, - [2377] = 2305, - [2378] = 2291, + [2374] = 2374, + [2375] = 2371, + [2376] = 2376, + [2377] = 2358, + [2378] = 2352, [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2341, - [2383] = 2294, - [2384] = 2379, - [2385] = 2319, - [2386] = 2380, - [2387] = 2005, - [2388] = 2325, + [2380] = 2353, + [2381] = 2369, + [2382] = 2382, + [2383] = 2383, + [2384] = 2372, + [2385] = 2382, + [2386] = 2386, + [2387] = 2387, + [2388] = 2347, [2389] = 2389, - [2390] = 2390, + [2390] = 2345, [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, - [2399] = 2399, + [2392] = 2383, + [2393] = 2346, + [2394] = 2379, + [2395] = 2341, + [2396] = 2354, + [2397] = 2386, + [2398] = 2347, + [2399] = 2355, [2400] = 2400, - [2401] = 2401, - [2402] = 2402, + [2401] = 2347, + [2402] = 1335, [2403] = 2403, - [2404] = 2404, - [2405] = 2405, + [2404] = 1392, + [2405] = 1303, [2406] = 2406, [2407] = 2407, - [2408] = 2408, - [2409] = 2409, + [2408] = 2110, + [2409] = 1301, [2410] = 2410, [2411] = 2411, - [2412] = 2411, + [2412] = 2412, [2413] = 2413, - [2414] = 2394, + [2414] = 2414, [2415] = 2415, - [2416] = 1272, - [2417] = 1273, - [2418] = 1275, - [2419] = 2413, - [2420] = 2420, - [2421] = 2407, - [2422] = 2405, + [2416] = 2416, + [2417] = 2417, + [2418] = 2418, + [2419] = 2419, + [2420] = 2406, + [2421] = 2421, + [2422] = 2422, [2423] = 2423, [2424] = 2424, [2425] = 2425, - [2426] = 2425, + [2426] = 2426, [2427] = 2427, [2428] = 2428, [2429] = 2429, - [2430] = 2427, - [2431] = 2389, - [2432] = 2404, - [2433] = 2433, - [2434] = 2434, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, + [2433] = 2410, + [2434] = 2423, [2435] = 2435, - [2436] = 2401, - [2437] = 2398, + [2436] = 2430, + [2437] = 2411, [2438] = 2438, [2439] = 2439, [2440] = 2440, - [2441] = 2425, + [2441] = 2406, [2442] = 2442, - [2443] = 2443, - [2444] = 2444, - [2445] = 2420, - [2446] = 2446, - [2447] = 2390, - [2448] = 1229, - [2449] = 1230, - [2450] = 2402, - [2451] = 2415, - [2452] = 1365, - [2453] = 1366, - [2454] = 1367, - [2455] = 1260, - [2456] = 1261, - [2457] = 2408, + [2443] = 2428, + [2444] = 2421, + [2445] = 2411, + [2446] = 2440, + [2447] = 2447, + [2448] = 2422, + [2449] = 2108, + [2450] = 2450, + [2451] = 2451, + [2452] = 2452, + [2453] = 2451, + [2454] = 2426, + [2455] = 2412, + [2456] = 1333, + [2457] = 2414, [2458] = 2458, - [2459] = 2399, - [2460] = 2460, + [2459] = 2452, + [2460] = 2442, [2461] = 2461, [2462] = 2462, - [2463] = 1008, - [2464] = 2464, - [2465] = 2409, - [2466] = 2434, + [2463] = 2429, + [2464] = 169, + [2465] = 160, + [2466] = 2092, [2467] = 2467, - [2468] = 2433, - [2469] = 2469, - [2470] = 2470, - [2471] = 2427, - [2472] = 2472, - [2473] = 2433, - [2474] = 2410, - [2475] = 2407, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2479, - [2480] = 2424, + [2468] = 161, + [2469] = 2406, + [2470] = 2411, + [2471] = 2471, + [2472] = 2422, + [2473] = 2473, + [2474] = 2415, + [2475] = 180, + [2476] = 2417, + [2477] = 2439, + [2478] = 2431, + [2479] = 2418, + [2480] = 2447, [2481] = 2481, - [2482] = 2427, - [2483] = 2483, - [2484] = 2467, - [2485] = 2393, + [2482] = 2482, + [2483] = 2467, + [2484] = 2438, + [2485] = 2406, [2486] = 2486, - [2487] = 2424, - [2488] = 2488, - [2489] = 2415, - [2490] = 2486, - [2491] = 2405, - [2492] = 2397, - [2493] = 2493, - [2494] = 2494, + [2487] = 2419, + [2488] = 2473, + [2489] = 2458, + [2490] = 2482, + [2491] = 2416, + [2492] = 2403, + [2493] = 2406, + [2494] = 1294, [2495] = 2495, - [2496] = 2496, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, + [2496] = 2424, + [2497] = 2426, + [2498] = 2482, + [2499] = 2462, + [2500] = 2422, + [2501] = 1336, + [2502] = 2427, [2503] = 2503, [2504] = 2495, - [2505] = 2505, - [2506] = 2506, - [2507] = 2507, + [2505] = 2432, + [2506] = 2486, + [2507] = 2413, [2508] = 2508, - [2509] = 2509, + [2509] = 1112, [2510] = 2510, [2511] = 2511, [2512] = 2512, [2513] = 2513, [2514] = 2514, - [2515] = 2514, + [2515] = 2515, [2516] = 2516, [2517] = 2517, [2518] = 2518, - [2519] = 2518, - [2520] = 2496, - [2521] = 2497, - [2522] = 2498, + [2519] = 2519, + [2520] = 2520, + [2521] = 2521, + [2522] = 2522, [2523] = 2523, [2524] = 2524, [2525] = 2525, [2526] = 2526, [2527] = 2527, [2528] = 2528, - [2529] = 2527, + [2529] = 2529, [2530] = 2530, [2531] = 2531, [2532] = 2532, [2533] = 2533, - [2534] = 2531, - [2535] = 2528, - [2536] = 2536, - [2537] = 2527, - [2538] = 2538, - [2539] = 2503, - [2540] = 2540, + [2534] = 2511, + [2535] = 2535, + [2536] = 2526, + [2537] = 2530, + [2538] = 2532, + [2539] = 2539, + [2540] = 2528, [2541] = 2541, - [2542] = 2542, - [2543] = 2536, - [2544] = 2542, - [2545] = 2545, - [2546] = 2546, - [2547] = 2547, - [2548] = 2548, + [2542] = 2532, + [2543] = 2543, + [2544] = 2544, + [2545] = 2519, + [2546] = 2511, + [2547] = 1065, + [2548] = 2523, [2549] = 2549, [2550] = 2550, [2551] = 2551, - [2552] = 139, - [2553] = 2553, + [2552] = 2552, + [2553] = 1105, [2554] = 2554, - [2555] = 2554, - [2556] = 2556, - [2557] = 2557, + [2555] = 2555, + [2556] = 2508, + [2557] = 2510, [2558] = 2558, [2559] = 2559, - [2560] = 2560, + [2560] = 2539, [2561] = 2561, - [2562] = 2513, + [2562] = 2562, [2563] = 2563, - [2564] = 2564, + [2564] = 2128, [2565] = 2565, - [2566] = 2545, - [2567] = 2567, + [2566] = 2526, + [2567] = 2525, [2568] = 2568, [2569] = 2569, - [2570] = 2523, - [2571] = 2530, - [2572] = 2505, - [2573] = 2547, - [2574] = 2560, - [2575] = 2575, - [2576] = 2506, - [2577] = 2559, - [2578] = 2509, + [2570] = 2570, + [2571] = 2512, + [2572] = 2544, + [2573] = 2573, + [2574] = 2574, + [2575] = 1431, + [2576] = 2576, + [2577] = 2577, + [2578] = 2516, [2579] = 2579, - [2580] = 2580, - [2581] = 2581, - [2582] = 2567, + [2580] = 2530, + [2581] = 2528, + [2582] = 2521, [2583] = 2583, - [2584] = 2563, - [2585] = 2585, - [2586] = 2586, - [2587] = 2587, - [2588] = 2528, + [2584] = 1210, + [2585] = 1106, + [2586] = 2517, + [2587] = 1111, + [2588] = 2544, [2589] = 2589, - [2590] = 2590, - [2591] = 2591, + [2590] = 2514, + [2591] = 2539, [2592] = 2592, - [2593] = 2548, - [2594] = 2495, - [2595] = 2496, - [2596] = 2497, - [2597] = 2498, - [2598] = 2499, - [2599] = 2503, - [2600] = 2505, - [2601] = 2506, - [2602] = 2602, - [2603] = 2509, - [2604] = 2604, - [2605] = 2605, - [2606] = 2606, - [2607] = 2518, - [2608] = 2608, - [2609] = 2583, - [2610] = 2526, + [2593] = 2520, + [2594] = 2594, + [2595] = 2558, + [2596] = 2596, + [2597] = 2526, + [2598] = 1280, + [2599] = 2599, + [2600] = 2583, + [2601] = 1376, + [2602] = 2569, + [2603] = 2549, + [2604] = 2524, + [2605] = 2121, + [2606] = 2570, + [2607] = 2607, + [2608] = 2589, + [2609] = 2565, + [2610] = 2532, [2611] = 2611, - [2612] = 2547, - [2613] = 2590, - [2614] = 2554, - [2615] = 2567, - [2616] = 2583, - [2617] = 2563, - [2618] = 2585, - [2619] = 2591, - [2620] = 2592, - [2621] = 2548, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2511, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, [2622] = 2622, - [2623] = 2496, - [2624] = 2497, - [2625] = 2499, - [2626] = 2503, - [2627] = 2505, - [2628] = 2518, - [2629] = 2547, - [2630] = 2563, - [2631] = 2585, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2627, + [2628] = 2628, + [2629] = 2629, + [2630] = 2630, + [2631] = 2631, [2632] = 2632, - [2633] = 2592, - [2634] = 2496, - [2635] = 2497, - [2636] = 2503, - [2637] = 2505, + [2633] = 2633, + [2634] = 2617, + [2635] = 2635, + [2636] = 2636, + [2637] = 2637, [2638] = 2638, - [2639] = 2524, - [2640] = 2500, - [2641] = 2563, - [2642] = 2496, - [2643] = 2503, - [2644] = 2505, + [2639] = 2639, + [2640] = 2640, + [2641] = 2639, + [2642] = 2642, + [2643] = 2619, + [2644] = 2618, [2645] = 2645, - [2646] = 2538, - [2647] = 2511, - [2648] = 2503, - [2649] = 2505, - [2650] = 2503, - [2651] = 2505, - [2652] = 2503, - [2653] = 2505, - [2654] = 2503, - [2655] = 2505, - [2656] = 2503, - [2657] = 2505, - [2658] = 2503, - [2659] = 2505, - [2660] = 2561, - [2661] = 2661, - [2662] = 2662, - [2663] = 2494, - [2664] = 2664, - [2665] = 2517, - [2666] = 2069, - [2667] = 2551, - [2668] = 2557, - [2669] = 2611, - [2670] = 2054, + [2646] = 2619, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2642, + [2651] = 2651, + [2652] = 2618, + [2653] = 2619, + [2654] = 2654, + [2655] = 2655, + [2656] = 2656, + [2657] = 2623, + [2658] = 2628, + [2659] = 2629, + [2660] = 2660, + [2661] = 2631, + [2662] = 2632, + [2663] = 2633, + [2664] = 2617, + [2665] = 2624, + [2666] = 2666, + [2667] = 2667, + [2668] = 2668, + [2669] = 2669, + [2670] = 2670, [2671] = 2671, - [2672] = 2501, - [2673] = 2673, - [2674] = 2525, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2553, - [2679] = 2679, + [2672] = 2672, + [2673] = 2642, + [2674] = 2674, + [2675] = 2631, + [2676] = 2628, + [2677] = 2616, + [2678] = 2633, + [2679] = 2617, [2680] = 2680, [2681] = 2681, - [2682] = 2035, - [2683] = 2540, - [2684] = 2567, - [2685] = 2541, - [2686] = 2645, - [2687] = 2583, - [2688] = 2563, - [2689] = 2568, - [2690] = 2585, - [2691] = 2691, - [2692] = 143, - [2693] = 2512, - [2694] = 2673, - [2695] = 2676, - [2696] = 2036, - [2697] = 2585, + [2682] = 2682, + [2683] = 2683, + [2684] = 2684, + [2685] = 2637, + [2686] = 2686, + [2687] = 2687, + [2688] = 2631, + [2689] = 2617, + [2690] = 2147, + [2691] = 2633, + [2692] = 2617, + [2693] = 2654, + [2694] = 2694, + [2695] = 2695, + [2696] = 2623, + [2697] = 2697, [2698] = 2698, - [2699] = 2586, - [2700] = 2602, - [2701] = 2608, - [2702] = 2702, - [2703] = 2586, - [2704] = 2638, - [2705] = 2526, - [2706] = 2702, - [2707] = 2494, - [2708] = 2494, - [2709] = 2611, - [2710] = 2590, - [2711] = 2711, - [2712] = 2591, - [2713] = 2494, - [2714] = 2611, - [2715] = 2591, - [2716] = 2041, - [2717] = 2592, - [2718] = 2043, - [2719] = 2558, - [2720] = 2677, - [2721] = 2675, - [2722] = 2548, - [2723] = 2046, - [2724] = 2556, - [2725] = 2502, - [2726] = 2048, - [2727] = 2592, - [2728] = 2728, - [2729] = 2728, - [2730] = 2495, - [2731] = 2731, - [2732] = 2732, + [2699] = 2625, + [2700] = 2700, + [2701] = 2669, + [2702] = 2624, + [2703] = 2625, + [2704] = 2647, + [2705] = 2633, + [2706] = 2706, + [2707] = 2707, + [2708] = 2626, + [2709] = 2709, + [2710] = 2710, + [2711] = 2651, + [2712] = 2712, + [2713] = 2713, + [2714] = 2628, + [2715] = 2636, + [2716] = 2627, + [2717] = 2670, + [2718] = 2640, + [2719] = 2719, + [2720] = 2628, + [2721] = 2629, + [2722] = 2722, + [2723] = 2621, + [2724] = 2628, + [2725] = 2725, + [2726] = 2726, + [2727] = 2727, + [2728] = 2642, + [2729] = 2631, + [2730] = 2632, + [2731] = 2694, + [2732] = 2680, [2733] = 2733, [2734] = 2734, - [2735] = 2735, - [2736] = 2736, - [2737] = 2737, - [2738] = 2738, - [2739] = 2739, - [2740] = 2740, - [2741] = 2741, + [2735] = 2726, + [2736] = 2672, + [2737] = 2719, + [2738] = 175, + [2739] = 2726, + [2740] = 2667, + [2741] = 2668, [2742] = 2742, - [2743] = 2743, + [2743] = 2698, [2744] = 2744, [2745] = 2745, - [2746] = 2746, + [2746] = 176, [2747] = 2747, [2748] = 2748, [2749] = 2749, - [2750] = 2750, + [2750] = 2632, [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, + [2752] = 2154, + [2753] = 2633, + [2754] = 2645, [2755] = 2755, - [2756] = 2102, + [2756] = 2756, [2757] = 2757, - [2758] = 2758, + [2758] = 2686, [2759] = 2759, [2760] = 2760, - [2761] = 2103, - [2762] = 2762, - [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2085, + [2761] = 2713, + [2762] = 2629, + [2763] = 2630, + [2764] = 2700, + [2765] = 2669, + [2766] = 2666, [2767] = 2767, - [2768] = 2768, + [2768] = 2639, [2769] = 2769, - [2770] = 2770, - [2771] = 2771, - [2772] = 2772, + [2770] = 2617, + [2771] = 2627, + [2772] = 2642, [2773] = 2773, [2774] = 2774, [2775] = 2775, - [2776] = 2776, - [2777] = 2774, - [2778] = 2778, - [2779] = 2779, - [2780] = 2734, - [2781] = 2735, - [2782] = 2782, - [2783] = 2783, - [2784] = 2753, - [2785] = 2096, - [2786] = 2773, + [2776] = 2707, + [2777] = 2632, + [2778] = 2637, + [2779] = 2680, + [2780] = 2749, + [2781] = 2618, + [2782] = 2767, + [2783] = 2139, + [2784] = 2618, + [2785] = 2145, + [2786] = 2623, [2787] = 2787, [2788] = 2788, - [2789] = 2789, - [2790] = 2790, - [2791] = 2791, - [2792] = 2792, - [2793] = 2793, - [2794] = 2104, - [2795] = 2742, + [2789] = 2683, + [2790] = 2167, + [2791] = 2648, + [2792] = 2695, + [2793] = 2670, + [2794] = 2712, + [2795] = 2795, [2796] = 2796, - [2797] = 2107, - [2798] = 2751, + [2797] = 2637, + [2798] = 2684, [2799] = 2799, - [2800] = 2125, - [2801] = 2801, - [2802] = 2094, - [2803] = 2121, - [2804] = 2804, - [2805] = 2805, - [2806] = 2806, - [2807] = 2807, - [2808] = 2808, - [2809] = 2809, - [2810] = 2810, - [2811] = 2767, - [2812] = 2812, + [2800] = 2800, + [2801] = 2683, + [2802] = 2802, + [2803] = 2683, + [2804] = 2709, + [2805] = 2619, + [2806] = 2647, + [2807] = 2638, + [2808] = 2136, + [2809] = 2654, + [2810] = 2636, + [2811] = 2134, + [2812] = 2168, [2813] = 2813, - [2814] = 2791, - [2815] = 2747, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [2822] = 2809, - [2823] = 2823, - [2824] = 2757, + [2814] = 2814, + [2815] = 2815, + [2816] = 2150, + [2817] = 2647, + [2818] = 2621, + [2819] = 2645, + [2820] = 2636, + [2821] = 2795, + [2822] = 2630, + [2823] = 2815, + [2824] = 2655, [2825] = 2825, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, - [2833] = 2833, + [2826] = 2727, + [2827] = 2129, + [2828] = 2671, + [2829] = 2647, + [2830] = 2166, + [2831] = 2760, + [2832] = 2622, + [2833] = 2620, [2834] = 2834, - [2835] = 2835, - [2836] = 2753, - [2837] = 2837, - [2838] = 2838, + [2835] = 2645, + [2836] = 2153, + [2837] = 2706, + [2838] = 2814, [2839] = 2839, - [2840] = 2840, - [2841] = 380, - [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2126, - [2846] = 2817, - [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2757, - [2851] = 2770, - [2852] = 2852, - [2853] = 2805, - [2854] = 2806, - [2855] = 2828, - [2856] = 2856, - [2857] = 2839, - [2858] = 2858, - [2859] = 2859, + [2840] = 2825, + [2841] = 2841, + [2842] = 2683, + [2843] = 2774, + [2844] = 2710, + [2845] = 2845, + [2846] = 2775, + [2847] = 2623, + [2848] = 2695, + [2849] = 2697, + [2850] = 2799, + [2851] = 2800, + [2852] = 2624, + [2853] = 2787, + [2854] = 2722, + [2855] = 2625, + [2856] = 2799, + [2857] = 2845, + [2858] = 2788, + [2859] = 2744, [2860] = 2860, - [2861] = 156, - [2862] = 2793, - [2863] = 2863, - [2864] = 2752, - [2865] = 2865, - [2866] = 2764, - [2867] = 2755, - [2868] = 2868, - [2869] = 2869, - [2870] = 2870, - [2871] = 2077, - [2872] = 2809, - [2873] = 2873, - [2874] = 2874, - [2875] = 2826, - [2876] = 2876, - [2877] = 2079, - [2878] = 2122, - [2879] = 2812, + [2861] = 2682, + [2862] = 2744, + [2863] = 2682, + [2864] = 2800, + [2865] = 2700, + [2866] = 2633, + [2867] = 2629, + [2868] = 2686, + [2869] = 2627, + [2870] = 2841, + [2871] = 2871, + [2872] = 2686, + [2873] = 2630, + [2874] = 2639, + [2875] = 2875, + [2876] = 2642, + [2877] = 2747, + [2878] = 2878, + [2879] = 2879, [2880] = 2880, - [2881] = 2753, - [2882] = 2098, - [2883] = 2812, - [2884] = 2771, - [2885] = 2783, - [2886] = 2886, + [2881] = 2881, + [2882] = 2882, + [2883] = 2221, + [2884] = 2884, + [2885] = 2885, + [2886] = 2878, [2887] = 2887, [2888] = 2888, [2889] = 2889, - [2890] = 2869, - [2891] = 2873, - [2892] = 2876, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, [2893] = 2893, - [2894] = 2106, - [2895] = 2091, + [2894] = 2894, + [2895] = 2895, [2896] = 2896, - [2897] = 2115, - [2898] = 2849, - [2899] = 2088, + [2897] = 2897, + [2898] = 2898, + [2899] = 2899, [2900] = 2900, [2901] = 2901, - [2902] = 2808, - [2903] = 2741, - [2904] = 2835, - [2905] = 2732, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, [2906] = 2906, - [2907] = 2772, + [2907] = 2891, [2908] = 2908, [2909] = 2909, [2910] = 2910, - [2911] = 2733, - [2912] = 2093, + [2911] = 2911, + [2912] = 2912, [2913] = 2913, [2914] = 2914, [2915] = 2915, - [2916] = 2901, + [2916] = 2916, [2917] = 2917, - [2918] = 2736, + [2918] = 2918, [2919] = 2919, [2920] = 2920, - [2921] = 2825, + [2921] = 2921, [2922] = 2922, - [2923] = 2097, + [2923] = 2923, [2924] = 2924, - [2925] = 2737, - [2926] = 2112, - [2927] = 2927, + [2925] = 2925, + [2926] = 2926, + [2927] = 2187, [2928] = 2928, [2929] = 2929, - [2930] = 2930, + [2930] = 2188, [2931] = 2931, [2932] = 2932, - [2933] = 2933, - [2934] = 2739, - [2935] = 2834, - [2936] = 2821, - [2937] = 2738, - [2938] = 2938, - [2939] = 2939, + [2933] = 2190, + [2934] = 2934, + [2935] = 2192, + [2936] = 2936, + [2937] = 2937, + [2938] = 2193, + [2939] = 2195, [2940] = 2940, - [2941] = 2941, - [2942] = 2942, + [2941] = 2879, + [2942] = 2921, [2943] = 2943, - [2944] = 2790, - [2945] = 2945, - [2946] = 2742, - [2947] = 2758, - [2948] = 2948, - [2949] = 2101, - [2950] = 2859, - [2951] = 2747, - [2952] = 2909, - [2953] = 2078, + [2944] = 2944, + [2945] = 2887, + [2946] = 2946, + [2947] = 2947, + [2948] = 2911, + [2949] = 2943, + [2950] = 2950, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, [2954] = 2954, [2955] = 2955, - [2956] = 2808, + [2956] = 2956, [2957] = 2957, - [2958] = 2083, - [2959] = 2778, - [2960] = 2788, - [2961] = 2817, - [2962] = 2084, - [2963] = 2832, - [2964] = 2092, + [2958] = 2958, + [2959] = 2888, + [2960] = 2908, + [2961] = 2961, + [2962] = 2918, + [2963] = 2947, + [2964] = 2964, [2965] = 2965, - [2966] = 2966, - [2967] = 2886, - [2968] = 2757, - [2969] = 2910, - [2970] = 2908, - [2971] = 2080, - [2972] = 2757, - [2973] = 2095, - [2974] = 2099, + [2966] = 2912, + [2967] = 2913, + [2968] = 2968, + [2969] = 2914, + [2970] = 2970, + [2971] = 2971, + [2972] = 2198, + [2973] = 2205, + [2974] = 2915, [2975] = 2975, - [2976] = 2833, + [2976] = 2976, [2977] = 2977, - [2978] = 2081, - [2979] = 2979, - [2980] = 2980, - [2981] = 2751, - [2982] = 2745, - [2983] = 2127, - [2984] = 2805, - [2985] = 2985, - [2986] = 2829, - [2987] = 2987, - [2988] = 2988, - [2989] = 2810, - [2990] = 2082, - [2991] = 2806, - [2992] = 2914, - [2993] = 2943, - [2994] = 2917, - [2995] = 2076, - [2996] = 2996, - [2997] = 2734, - [2998] = 2086, - [2999] = 2743, - [3000] = 3000, + [2978] = 2916, + [2979] = 2944, + [2980] = 2968, + [2981] = 2981, + [2982] = 2982, + [2983] = 2983, + [2984] = 2984, + [2985] = 2917, + [2986] = 2946, + [2987] = 2216, + [2988] = 2981, + [2989] = 2989, + [2990] = 2990, + [2991] = 2201, + [2992] = 2992, + [2993] = 2993, + [2994] = 2884, + [2995] = 2995, + [2996] = 2189, + [2997] = 2191, + [2998] = 2998, + [2999] = 2999, + [3000] = 2194, [3001] = 3001, - [3002] = 2933, - [3003] = 2787, - [3004] = 2830, - [3005] = 2744, + [3002] = 3002, + [3003] = 2890, + [3004] = 2964, + [3005] = 2919, [3006] = 3006, - [3007] = 2818, - [3008] = 3006, - [3009] = 2813, - [3010] = 2980, - [3011] = 2775, - [3012] = 2762, - [3013] = 2942, - [3014] = 3014, - [3015] = 2789, - [3016] = 3016, - [3017] = 2792, - [3018] = 2932, - [3019] = 2979, + [3007] = 2204, + [3008] = 3008, + [3009] = 2920, + [3010] = 2210, + [3011] = 3011, + [3012] = 3012, + [3013] = 2211, + [3014] = 2213, + [3015] = 2217, + [3016] = 2218, + [3017] = 2219, + [3018] = 3018, + [3019] = 2220, [3020] = 3020, - [3021] = 2865, - [3022] = 2870, - [3023] = 2838, - [3024] = 2840, + [3021] = 3021, + [3022] = 3022, + [3023] = 3023, + [3024] = 2897, [3025] = 3025, [3026] = 3026, [3027] = 3027, - [3028] = 2782, - [3029] = 3025, - [3030] = 2856, - [3031] = 2801, - [3032] = 2110, + [3028] = 3028, + [3029] = 2922, + [3030] = 2882, + [3031] = 2923, + [3032] = 2884, [3033] = 3033, - [3034] = 3034, - [3035] = 3035, + [3034] = 2885, + [3035] = 2878, [3036] = 3036, [3037] = 3037, [3038] = 3038, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, + [3039] = 183, + [3040] = 2912, + [3041] = 2913, [3042] = 3042, - [3043] = 3043, - [3044] = 3044, - [3045] = 3034, + [3043] = 2919, + [3044] = 2898, + [3045] = 2920, [3046] = 3046, [3047] = 3047, - [3048] = 1210, - [3049] = 3049, - [3050] = 3037, - [3051] = 3051, - [3052] = 3044, + [3048] = 2923, + [3049] = 2992, + [3050] = 2965, + [3051] = 2951, + [3052] = 2955, [3053] = 3053, - [3054] = 3054, + [3054] = 2225, [3055] = 3055, [3056] = 3056, - [3057] = 3057, - [3058] = 3058, - [3059] = 1212, - [3060] = 3060, - [3061] = 1213, - [3062] = 3062, + [3057] = 2924, + [3058] = 2227, + [3059] = 2925, + [3060] = 2885, + [3061] = 2899, + [3062] = 2951, [3063] = 3063, - [3064] = 3064, + [3064] = 3011, [3065] = 3065, - [3066] = 3040, + [3066] = 3018, [3067] = 3067, - [3068] = 3068, - [3069] = 1228, + [3068] = 2229, + [3069] = 3022, [3070] = 3070, [3071] = 3071, - [3072] = 3067, + [3072] = 2230, [3073] = 3073, [3074] = 3074, - [3075] = 3075, - [3076] = 3076, - [3077] = 3077, + [3075] = 2912, + [3076] = 2913, + [3077] = 2993, [3078] = 3078, - [3079] = 3042, + [3079] = 2951, [3080] = 3080, - [3081] = 3081, + [3081] = 411, [3082] = 3082, - [3083] = 3083, - [3084] = 3084, - [3085] = 3081, - [3086] = 3051, + [3083] = 2928, + [3084] = 3011, + [3085] = 2929, + [3086] = 2900, [3087] = 3087, [3088] = 3088, - [3089] = 3089, - [3090] = 3046, + [3089] = 2931, + [3090] = 2179, [3091] = 3091, - [3092] = 3042, - [3093] = 3093, - [3094] = 3044, - [3095] = 3095, - [3096] = 3040, + [3092] = 3092, + [3093] = 3022, + [3094] = 3094, + [3095] = 2983, + [3096] = 2182, [3097] = 3097, - [3098] = 3044, + [3098] = 3098, [3099] = 3099, [3100] = 3100, - [3101] = 3071, - [3102] = 3051, + [3101] = 3101, + [3102] = 3102, [3103] = 3103, - [3104] = 3091, - [3105] = 3057, - [3106] = 3093, + [3104] = 3038, + [3105] = 3038, + [3106] = 3106, [3107] = 3107, - [3108] = 3108, - [3109] = 3063, - [3110] = 3040, - [3111] = 3067, - [3112] = 3068, - [3113] = 3113, + [3108] = 2902, + [3109] = 2934, + [3110] = 3055, + [3111] = 3111, + [3112] = 3112, + [3113] = 2955, [3114] = 3114, [3115] = 3115, [3116] = 3116, - [3117] = 3117, + [3117] = 2880, [3118] = 3118, - [3119] = 3119, + [3119] = 3106, [3120] = 3120, - [3121] = 3121, - [3122] = 3044, + [3121] = 2936, + [3122] = 2937, [3123] = 3123, - [3124] = 3037, - [3125] = 3051, - [3126] = 3040, - [3127] = 3057, - [3128] = 3128, + [3124] = 3107, + [3125] = 3125, + [3126] = 3011, + [3127] = 2178, + [3128] = 2180, [3129] = 3129, - [3130] = 3040, - [3131] = 3131, - [3132] = 3067, - [3133] = 3068, - [3134] = 3051, - [3135] = 3039, - [3136] = 3060, - [3137] = 3097, + [3130] = 2181, + [3131] = 2183, + [3132] = 2184, + [3133] = 2185, + [3134] = 3134, + [3135] = 3135, + [3136] = 2904, + [3137] = 3137, [3138] = 3138, - [3139] = 3118, + [3139] = 3139, [3140] = 3140, [3141] = 3141, - [3142] = 3051, - [3143] = 3033, - [3144] = 3115, - [3145] = 3040, - [3146] = 3067, - [3147] = 3068, - [3148] = 3148, - [3149] = 3054, - [3150] = 3047, - [3151] = 3151, + [3142] = 3142, + [3143] = 3143, + [3144] = 3144, + [3145] = 2901, + [3146] = 3146, + [3147] = 3147, + [3148] = 2893, + [3149] = 2903, + [3150] = 3018, + [3151] = 3125, [3152] = 3152, [3153] = 3153, - [3154] = 3154, + [3154] = 3022, [3155] = 3155, - [3156] = 3156, - [3157] = 3051, - [3158] = 3040, - [3159] = 3159, - [3160] = 3067, - [3161] = 3068, - [3162] = 3162, - [3163] = 3163, - [3164] = 3051, - [3165] = 3040, - [3166] = 1292, - [3167] = 3067, - [3168] = 3068, - [3169] = 3169, - [3170] = 3051, - [3171] = 3057, - [3172] = 3067, - [3173] = 3068, - [3174] = 3068, - [3175] = 3051, - [3176] = 3077, - [3177] = 3067, - [3178] = 3068, - [3179] = 2823, - [3180] = 3051, - [3181] = 2887, - [3182] = 3067, - [3183] = 3068, - [3184] = 3184, - [3185] = 3077, - [3186] = 3067, - [3187] = 3068, - [3188] = 3188, + [3156] = 3011, + [3157] = 2894, + [3158] = 2975, + [3159] = 2940, + [3160] = 2976, + [3161] = 2971, + [3162] = 3001, + [3163] = 3143, + [3164] = 3152, + [3165] = 3165, + [3166] = 2882, + [3167] = 2889, + [3168] = 2953, + [3169] = 3080, + [3170] = 2905, + [3171] = 3112, + [3172] = 3165, + [3173] = 3173, + [3174] = 3094, + [3175] = 3175, + [3176] = 3176, + [3177] = 3177, + [3178] = 3155, + [3179] = 2957, + [3180] = 2984, + [3181] = 2958, + [3182] = 3176, + [3183] = 2214, + [3184] = 3147, + [3185] = 3023, + [3186] = 3111, + [3187] = 2895, + [3188] = 2922, [3189] = 3189, - [3190] = 3119, - [3191] = 3062, - [3192] = 3053, - [3193] = 3057, + [3190] = 3190, + [3191] = 3191, + [3192] = 3192, + [3193] = 3193, [3194] = 3194, [3195] = 3195, [3196] = 3196, [3197] = 3197, - [3198] = 3113, + [3198] = 3198, [3199] = 3199, - [3200] = 3033, + [3200] = 3200, [3201] = 3201, - [3202] = 3153, + [3202] = 1554, [3203] = 3203, - [3204] = 3062, - [3205] = 3063, - [3206] = 3064, - [3207] = 3054, + [3204] = 3204, + [3205] = 3205, + [3206] = 3206, + [3207] = 3207, [3208] = 3208, - [3209] = 3107, - [3210] = 3116, - [3211] = 3056, + [3209] = 3209, + [3210] = 3210, + [3211] = 3211, [3212] = 3212, - [3213] = 3152, - [3214] = 3163, + [3213] = 3212, + [3214] = 3214, [3215] = 3215, - [3216] = 3100, + [3216] = 3216, [3217] = 3217, - [3218] = 3117, - [3219] = 3099, + [3218] = 3218, + [3219] = 3219, [3220] = 3220, [3221] = 3221, - [3222] = 3074, - [3223] = 3141, - [3224] = 3224, - [3225] = 3162, - [3226] = 3169, - [3227] = 3227, - [3228] = 3228, - [3229] = 3159, - [3230] = 3035, + [3222] = 3222, + [3223] = 3223, + [3224] = 3203, + [3225] = 3225, + [3226] = 3226, + [3227] = 3192, + [3228] = 3221, + [3229] = 3229, + [3230] = 3230, [3231] = 3231, [3232] = 3232, [3233] = 3233, - [3234] = 3038, - [3235] = 3063, - [3236] = 3064, - [3237] = 3228, - [3238] = 3238, - [3239] = 3040, - [3240] = 3070, - [3241] = 3224, + [3234] = 3234, + [3235] = 3235, + [3236] = 3204, + [3237] = 3237, + [3238] = 3201, + [3239] = 3239, + [3240] = 3223, + [3241] = 3241, [3242] = 3242, [3243] = 3243, - [3244] = 3244, - [3245] = 3242, + [3244] = 3241, + [3245] = 3230, [3246] = 3246, - [3247] = 3067, - [3248] = 3151, - [3249] = 3068, - [3250] = 3250, - [3251] = 3231, - [3252] = 3252, - [3253] = 3083, - [3254] = 3033, - [3255] = 3129, - [3256] = 3256, - [3257] = 3123, - [3258] = 3070, - [3259] = 3071, - [3260] = 3082, - [3261] = 3039, - [3262] = 3113, - [3263] = 3131, - [3264] = 3153, + [3247] = 3206, + [3248] = 3248, + [3249] = 3249, + [3250] = 3193, + [3251] = 3201, + [3252] = 3199, + [3253] = 3253, + [3254] = 3201, + [3255] = 3203, + [3256] = 3204, + [3257] = 3257, + [3258] = 3207, + [3259] = 3259, + [3260] = 3260, + [3261] = 3211, + [3262] = 3262, + [3263] = 3209, + [3264] = 3264, [3265] = 3265, - [3266] = 3056, + [3266] = 3266, [3267] = 3267, [3268] = 3268, - [3269] = 3154, - [3270] = 3040, - [3271] = 3221, - [3272] = 3212, - [3273] = 3113, - [3274] = 3080, - [3275] = 3087, - [3276] = 3220, - [3277] = 3277, - [3278] = 3113, + [3269] = 3201, + [3270] = 3220, + [3271] = 3223, + [3272] = 3272, + [3273] = 3273, + [3274] = 3211, + [3275] = 3241, + [3276] = 3276, + [3277] = 3193, + [3278] = 3201, [3279] = 3243, - [3280] = 3121, - [3281] = 3199, - [3282] = 3215, - [3283] = 3267, - [3284] = 3244, - [3285] = 3238, - [3286] = 3233, - [3287] = 3227, - [3288] = 3155, - [3289] = 3040, - [3290] = 3128, - [3291] = 3036, - [3292] = 3095, - [3293] = 3208, - [3294] = 3043, + [3280] = 3203, + [3281] = 3204, + [3282] = 3189, + [3283] = 3211, + [3284] = 3284, + [3285] = 3226, + [3286] = 3191, + [3287] = 3241, + [3288] = 3205, + [3289] = 3289, + [3290] = 3201, + [3291] = 3203, + [3292] = 3204, + [3293] = 3195, + [3294] = 3294, [3295] = 3295, - [3296] = 3188, - [3297] = 3297, - [3298] = 3121, - [3299] = 3267, - [3300] = 3188, - [3301] = 3267, - [3302] = 3188, - [3303] = 3081, - [3304] = 3058, - [3305] = 3114, - [3306] = 3297, - [3307] = 3307, - [3308] = 3246, - [3309] = 3103, - [3310] = 3082, - [3311] = 3051, - [3312] = 3312, - [3313] = 162, - [3314] = 3314, - [3315] = 3315, - [3316] = 3316, - [3317] = 3317, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 3321, - [3322] = 3322, - [3323] = 3323, - [3324] = 3324, - [3325] = 164, - [3326] = 3321, - [3327] = 3320, - [3328] = 3328, + [3296] = 3296, + [3297] = 3294, + [3298] = 3298, + [3299] = 3299, + [3300] = 3241, + [3301] = 3259, + [3302] = 3201, + [3303] = 3203, + [3304] = 3204, + [3305] = 3284, + [3306] = 3197, + [3307] = 3223, + [3308] = 3241, + [3309] = 3201, + [3310] = 3203, + [3311] = 3204, + [3312] = 3241, + [3313] = 3203, + [3314] = 3204, + [3315] = 3241, + [3316] = 3203, + [3317] = 3204, + [3318] = 3241, + [3319] = 3203, + [3320] = 3204, + [3321] = 3241, + [3322] = 3203, + [3323] = 3204, + [3324] = 3199, + [3325] = 3325, + [3326] = 3326, + [3327] = 3222, + [3328] = 3208, [3329] = 3329, [3330] = 3330, [3331] = 3331, - [3332] = 3332, - [3333] = 3333, + [3332] = 3200, + [3333] = 3231, [3334] = 3334, - [3335] = 3335, - [3336] = 3336, - [3337] = 3337, - [3338] = 3338, + [3335] = 3265, + [3336] = 1262, + [3337] = 1264, + [3338] = 3234, [3339] = 3339, - [3340] = 3340, - [3341] = 3341, - [3342] = 3314, + [3340] = 3232, + [3341] = 3235, + [3342] = 3243, [3343] = 3343, - [3344] = 3344, + [3344] = 3233, [3345] = 3345, - [3346] = 3346, + [3346] = 3330, [3347] = 3347, - [3348] = 3328, + [3348] = 3241, [3349] = 3349, - [3350] = 3350, + [3350] = 3265, [3351] = 3351, - [3352] = 3352, + [3352] = 3331, [3353] = 3353, - [3354] = 3354, + [3354] = 3276, [3355] = 3355, [3356] = 3356, [3357] = 3357, - [3358] = 3358, - [3359] = 3359, + [3358] = 1436, + [3359] = 1437, [3360] = 3360, - [3361] = 3361, - [3362] = 3362, + [3361] = 3091, + [3362] = 3103, [3363] = 3363, - [3364] = 3363, - [3365] = 3362, + [3364] = 3364, + [3365] = 3357, [3366] = 3366, [3367] = 3367, [3368] = 3368, [3369] = 3369, - [3370] = 3330, - [3371] = 3371, + [3370] = 3193, + [3371] = 3334, [3372] = 3372, [3373] = 3373, - [3374] = 3350, + [3374] = 3214, [3375] = 3375, [3376] = 3376, - [3377] = 3377, - [3378] = 3378, - [3379] = 3379, + [3377] = 3198, + [3378] = 3199, + [3379] = 3200, [3380] = 3380, - [3381] = 3381, + [3381] = 3356, [3382] = 3382, [3383] = 3383, [3384] = 3384, - [3385] = 3369, + [3385] = 3242, [3386] = 3386, - [3387] = 3354, - [3388] = 3388, - [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3321, + [3387] = 3387, + [3388] = 3295, + [3389] = 3363, + [3390] = 3382, + [3391] = 3387, + [3392] = 3392, [3393] = 3393, [3394] = 3394, [3395] = 3395, [3396] = 3396, - [3397] = 3361, - [3398] = 3398, + [3397] = 3201, + [3398] = 3220, [3399] = 3399, - [3400] = 3400, - [3401] = 3336, + [3400] = 3355, + [3401] = 3360, [3402] = 3402, - [3403] = 3403, - [3404] = 3329, - [3405] = 3363, - [3406] = 3339, - [3407] = 3407, - [3408] = 3336, - [3409] = 3409, + [3403] = 3203, + [3404] = 3204, + [3405] = 1538, + [3406] = 3353, + [3407] = 3357, + [3408] = 3408, + [3409] = 3386, [3410] = 3410, - [3411] = 3321, - [3412] = 3412, + [3411] = 3205, + [3412] = 3198, [3413] = 3413, - [3414] = 3414, - [3415] = 3415, - [3416] = 3334, + [3414] = 3208, + [3415] = 3201, + [3416] = 3231, [3417] = 3417, - [3418] = 3418, - [3419] = 3419, - [3420] = 3420, - [3421] = 3343, - [3422] = 3422, + [3418] = 1262, + [3419] = 1264, + [3420] = 3339, + [3421] = 3421, + [3422] = 3276, [3423] = 3423, - [3424] = 3394, + [3424] = 3193, [3425] = 3425, - [3426] = 3358, - [3427] = 3338, + [3426] = 3347, + [3427] = 3364, [3428] = 3428, - [3429] = 3380, - [3430] = 3340, - [3431] = 3431, - [3432] = 3414, - [3433] = 3433, - [3434] = 3434, - [3435] = 3435, - [3436] = 3436, - [3437] = 3437, - [3438] = 3372, - [3439] = 3439, - [3440] = 3312, - [3441] = 3441, - [3442] = 3361, - [3443] = 3433, - [3444] = 3395, - [3445] = 3355, - [3446] = 3446, - [3447] = 3379, - [3448] = 3351, - [3449] = 3420, - [3450] = 3398, - [3451] = 3380, - [3452] = 3452, - [3453] = 3453, - [3454] = 3312, - [3455] = 3322, - [3456] = 3456, - [3457] = 3457, - [3458] = 3458, - [3459] = 3349, - [3460] = 3436, - [3461] = 3376, - [3462] = 3382, - [3463] = 3463, - [3464] = 3322, - [3465] = 3324, - [3466] = 3466, - [3467] = 3357, - [3468] = 3321, - [3469] = 3332, - [3470] = 3360, - [3471] = 3471, - [3472] = 3472, - [3473] = 3338, - [3474] = 3474, - [3475] = 3340, - [3476] = 3393, - [3477] = 3363, - [3478] = 3350, - [3479] = 3441, - [3480] = 3480, - [3481] = 3312, - [3482] = 3482, - [3483] = 3369, - [3484] = 3330, - [3485] = 3485, - [3486] = 3372, - [3487] = 3487, - [3488] = 3463, - [3489] = 3489, - [3490] = 3490, - [3491] = 3377, - [3492] = 3492, - [3493] = 3360, - [3494] = 3376, - [3495] = 3324, - [3496] = 3379, + [3429] = 3429, + [3430] = 3430, + [3431] = 3231, + [3432] = 3259, + [3433] = 3339, + [3434] = 3428, + [3435] = 3190, + [3436] = 3366, + [3437] = 3218, + [3438] = 3438, + [3439] = 3231, + [3440] = 3339, + [3441] = 3211, + [3442] = 3246, + [3443] = 3262, + [3444] = 3444, + [3445] = 3421, + [3446] = 3265, + [3447] = 3223, + [3448] = 3448, + [3449] = 3260, + [3450] = 3253, + [3451] = 3451, + [3452] = 3201, + [3453] = 3372, + [3454] = 3276, + [3455] = 3205, + [3456] = 3219, + [3457] = 3444, + [3458] = 3239, + [3459] = 3212, + [3460] = 3229, + [3461] = 3339, + [3462] = 3462, + [3463] = 3257, + [3464] = 3429, + [3465] = 3451, + [3466] = 3289, + [3467] = 1508, + [3468] = 3468, + [3469] = 3235, + [3470] = 3243, + [3471] = 3423, + [3472] = 3221, + [3473] = 3241, + [3474] = 3410, + [3475] = 3262, + [3476] = 3260, + [3477] = 3423, + [3478] = 3260, + [3479] = 3423, + [3480] = 3367, + [3481] = 3353, + [3482] = 3265, + [3483] = 3438, + [3484] = 3413, + [3485] = 3329, + [3486] = 3267, + [3487] = 3208, + [3488] = 3353, + [3489] = 3393, + [3490] = 3430, + [3491] = 3343, + [3492] = 3268, + [3493] = 3221, + [3494] = 3368, + [3495] = 3448, + [3496] = 3462, [3497] = 3497, - [3498] = 3324, - [3499] = 3371, - [3500] = 3413, - [3501] = 3332, + [3498] = 3498, + [3499] = 3499, + [3500] = 3500, + [3501] = 3501, [3502] = 3502, - [3503] = 3466, - [3504] = 3340, - [3505] = 3359, - [3506] = 3471, - [3507] = 3369, - [3508] = 3372, - [3509] = 3390, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3509, [3510] = 3510, - [3511] = 3368, + [3511] = 3511, [3512] = 3512, - [3513] = 3376, - [3514] = 3332, + [3513] = 3513, + [3514] = 3509, [3515] = 3515, - [3516] = 3340, - [3517] = 3425, - [3518] = 3372, - [3519] = 3376, - [3520] = 3332, - [3521] = 3340, - [3522] = 3372, - [3523] = 3332, - [3524] = 3340, - [3525] = 3372, - [3526] = 3332, - [3527] = 3332, - [3528] = 3332, - [3529] = 3332, - [3530] = 3332, - [3531] = 3453, - [3532] = 3532, - [3533] = 3368, - [3534] = 3360, + [3516] = 3516, + [3517] = 3517, + [3518] = 3518, + [3519] = 3519, + [3520] = 3520, + [3521] = 3521, + [3522] = 3522, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 3526, + [3527] = 3527, + [3528] = 3498, + [3529] = 3529, + [3530] = 3530, + [3531] = 3522, + [3532] = 3516, + [3533] = 3523, + [3534] = 3534, [3535] = 3535, - [3536] = 3431, - [3537] = 3315, - [3538] = 3457, - [3539] = 3510, + [3536] = 3536, + [3537] = 3537, + [3538] = 3502, + [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3381, - [3543] = 3417, - [3544] = 3535, - [3545] = 3412, - [3546] = 3358, - [3547] = 3352, - [3548] = 3456, - [3549] = 3353, - [3550] = 3380, - [3551] = 3436, + [3542] = 3542, + [3543] = 3543, + [3544] = 3544, + [3545] = 3545, + [3546] = 3546, + [3547] = 3547, + [3548] = 3548, + [3549] = 3549, + [3550] = 3550, + [3551] = 3501, [3552] = 3552, - [3553] = 3380, - [3554] = 3540, - [3555] = 3555, - [3556] = 3383, - [3557] = 3389, - [3558] = 3316, - [3559] = 3331, + [3553] = 3553, + [3554] = 3507, + [3555] = 3510, + [3556] = 3518, + [3557] = 3547, + [3558] = 3519, + [3559] = 3559, [3560] = 3560, - [3561] = 3380, + [3561] = 3561, [3562] = 3562, - [3563] = 3541, - [3564] = 3453, - [3565] = 3435, - [3566] = 3566, - [3567] = 3384, - [3568] = 3358, - [3569] = 3317, - [3570] = 3373, - [3571] = 3388, - [3572] = 3472, - [3573] = 3422, + [3563] = 3525, + [3564] = 3512, + [3565] = 3565, + [3566] = 3552, + [3567] = 3567, + [3568] = 3568, + [3569] = 3569, + [3570] = 3570, + [3571] = 3571, + [3572] = 3572, + [3573] = 3573, [3574] = 3574, - [3575] = 3492, - [3576] = 3375, + [3575] = 3575, + [3576] = 3511, [3577] = 3577, - [3578] = 3378, - [3579] = 3535, - [3580] = 3431, - [3581] = 3457, - [3582] = 3510, - [3583] = 3437, - [3584] = 3391, - [3585] = 3535, - [3586] = 3510, - [3587] = 3587, - [3588] = 3577, - [3589] = 3510, - [3590] = 3510, - [3591] = 3510, - [3592] = 3555, - [3593] = 3452, + [3578] = 3572, + [3579] = 3579, + [3580] = 3571, + [3581] = 3581, + [3582] = 3582, + [3583] = 3583, + [3584] = 3584, + [3585] = 3500, + [3586] = 3586, + [3587] = 3568, + [3588] = 3570, + [3589] = 3589, + [3590] = 3590, + [3591] = 3591, + [3592] = 3539, + [3593] = 3593, [3594] = 3594, [3595] = 3595, - [3596] = 3458, - [3597] = 3487, - [3598] = 3400, - [3599] = 3409, - [3600] = 3407, - [3601] = 3376, - [3602] = 3367, + [3596] = 3596, + [3597] = 3594, + [3598] = 3598, + [3599] = 3599, + [3600] = 3600, + [3601] = 3527, + [3602] = 3547, [3603] = 3603, - [3604] = 3497, + [3604] = 3511, [3605] = 3605, - [3606] = 3428, - [3607] = 3566, - [3608] = 3552, - [3609] = 3332, - [3610] = 3347, - [3611] = 3453, - [3612] = 3482, + [3606] = 3510, + [3607] = 3607, + [3608] = 3596, + [3609] = 3609, + [3610] = 3513, + [3611] = 3517, + [3612] = 3498, [3613] = 3613, [3614] = 3614, [3615] = 3615, [3616] = 3616, - [3617] = 3617, + [3617] = 3589, [3618] = 3618, [3619] = 3619, + [3620] = 3512, + [3621] = 3621, + [3622] = 3622, + [3623] = 3530, + [3624] = 3614, + [3625] = 3625, + [3626] = 3536, + [3627] = 3590, + [3628] = 3628, + [3629] = 3629, + [3630] = 3579, + [3631] = 3504, + [3632] = 3632, + [3633] = 3633, + [3634] = 3575, + [3635] = 3507, + [3636] = 3636, + [3637] = 3637, + [3638] = 3638, + [3639] = 3632, + [3640] = 3640, + [3641] = 3583, + [3642] = 3642, + [3643] = 3643, + [3644] = 3500, + [3645] = 3547, + [3646] = 3646, + [3647] = 3647, + [3648] = 3648, + [3649] = 3573, + [3650] = 3512, + [3651] = 3513, + [3652] = 3509, + [3653] = 3646, + [3654] = 3517, + [3655] = 3498, + [3656] = 3656, + [3657] = 3657, + [3658] = 3582, + [3659] = 3573, + [3660] = 3536, + [3661] = 3661, + [3662] = 3662, + [3663] = 3625, + [3664] = 3540, + [3665] = 3544, + [3666] = 3629, + [3667] = 3629, + [3668] = 3668, + [3669] = 3549, + [3670] = 3633, + [3671] = 3671, + [3672] = 3668, + [3673] = 3643, + [3674] = 3633, + [3675] = 3675, + [3676] = 3500, + [3677] = 3677, + [3678] = 3513, + [3679] = 3517, + [3680] = 3668, + [3681] = 3681, + [3682] = 3682, + [3683] = 3546, + [3684] = 3625, + [3685] = 3633, + [3686] = 3643, + [3687] = 3687, + [3688] = 3547, + [3689] = 3517, + [3690] = 3625, + [3691] = 3633, + [3692] = 3643, + [3693] = 3625, + [3694] = 3517, + [3695] = 3633, + [3696] = 3643, + [3697] = 3517, + [3698] = 3633, + [3699] = 3633, + [3700] = 3633, + [3701] = 3633, + [3702] = 3633, + [3703] = 174, + [3704] = 3704, + [3705] = 3600, + [3706] = 3562, + [3707] = 3574, + [3708] = 3708, + [3709] = 3535, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, + [3713] = 3603, + [3714] = 3621, + [3715] = 3715, + [3716] = 3542, + [3717] = 3586, + [3718] = 3715, + [3719] = 3497, + [3720] = 3657, + [3721] = 3721, + [3722] = 3722, + [3723] = 3499, + [3724] = 3724, + [3725] = 3710, + [3726] = 3598, + [3727] = 3511, + [3728] = 3728, + [3729] = 3628, + [3730] = 3730, + [3731] = 3511, + [3732] = 3629, + [3733] = 3733, + [3734] = 3733, + [3735] = 3569, + [3736] = 3643, + [3737] = 3625, + [3738] = 3738, + [3739] = 3739, + [3740] = 3739, + [3741] = 3741, + [3742] = 3547, + [3743] = 3613, + [3744] = 3521, + [3745] = 3545, + [3746] = 3746, + [3747] = 3541, + [3748] = 3638, + [3749] = 3618, + [3750] = 3750, + [3751] = 3738, + [3752] = 3633, + [3753] = 3599, + [3754] = 3682, + [3755] = 3755, + [3756] = 3508, + [3757] = 3724, + [3758] = 3640, + [3759] = 3550, + [3760] = 3648, + [3761] = 3761, + [3762] = 3762, + [3763] = 3763, + [3764] = 3656, + [3765] = 3577, + [3766] = 3632, + [3767] = 3562, + [3768] = 3574, + [3769] = 3603, + [3770] = 3621, + [3771] = 3579, + [3772] = 3583, + [3773] = 3562, + [3774] = 3621, + [3775] = 3522, + [3776] = 3668, + [3777] = 3621, + [3778] = 3621, + [3779] = 3621, + [3780] = 3643, + [3781] = 3559, + [3782] = 3520, + [3783] = 3546, + [3784] = 171, + [3785] = 3785, + [3786] = 3712, + [3787] = 3511, + [3788] = 3637, + [3789] = 3789, + [3790] = 3507, + [3791] = 3537, + [3792] = 3675, + [3793] = 3755, + [3794] = 3794, + [3795] = 3721, + [3796] = 3561, + [3797] = 3797, + [3798] = 3593, + [3799] = 3799, + [3800] = 3646, + [3801] = 3565, + [3802] = 3628, + [3803] = 3560, + [3804] = 3797, + [3805] = 3805, + [3806] = 3806, + [3807] = 3728, + [3808] = 3505, + [3809] = 3622, + [3810] = 3619, + [3811] = 3805, + [3812] = 3583, + [3813] = 3522, + [3814] = 3509, + [3815] = 3799, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3822, }; -static TSCharacterRange sym_identifier_character_set_1[] = { +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym__expression, + sym__literal, + sym__literal_pattern, + sym__pattern, + sym__type, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym__expression] = {.index = 0, .length = 40}, + [sym__literal] = {.index = 40, .length = 6}, + [sym__literal_pattern] = {.index = 46, .length = 7}, + [sym__pattern] = {.index = 53, .length = 18}, + [sym__type] = {.index = 71, .length = 33}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym__literal, + sym_array_expression, + sym_assignment_expression, + sym_async_block, + sym_await_expression, + sym_binary_expression, + sym_block, + sym_break_expression, + sym_call_expression, + sym_closure_expression, + sym_compound_assignment_expr, + sym_const_block, + sym_continue_expression, + sym_field_expression, + sym_for_expression, + sym_gen_block, + sym_generic_function, + sym_identifier, + sym_if_expression, + sym_index_expression, + sym_loop_expression, + sym_macro_invocation, + sym_match_expression, + sym_metavariable, + sym_parenthesized_expression, + sym_range_expression, + sym_reference_expression, + sym_return_expression, + sym_scoped_identifier, + sym_self, + sym_struct_expression, + sym_try_block, + sym_try_expression, + sym_tuple_expression, + sym_type_cast_expression, + sym_unary_expression, + sym_unit_expression, + sym_unsafe_block, + sym_while_expression, + sym_yield_expression, + [40] = + sym_boolean_literal, + sym_char_literal, + sym_float_literal, + sym_integer_literal, + sym_raw_string_literal, + sym_string_literal, + [46] = + sym_boolean_literal, + sym_char_literal, + sym_float_literal, + sym_integer_literal, + sym_negative_literal, + sym_raw_string_literal, + sym_string_literal, + [53] = + anon_sym__, + sym__literal_pattern, + sym_captured_pattern, + sym_const_block, + sym_generic_pattern, + sym_identifier, + sym_macro_invocation, + sym_mut_pattern, + sym_or_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_reference_pattern, + sym_remaining_field_pattern, + sym_scoped_identifier, + sym_slice_pattern, + sym_struct_pattern, + sym_tuple_pattern, + sym_tuple_struct_pattern, + [71] = + alias_sym_type_identifier, + anon_sym_bool, + anon_sym_char, + anon_sym_f32, + anon_sym_f64, + anon_sym_i128, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i8, + anon_sym_isize, + anon_sym_str, + anon_sym_u128, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u8, + anon_sym_usize, + sym_abstract_type, + sym_array_type, + sym_bounded_type, + sym_dynamic_type, + sym_function_type, + sym_generic_type, + sym_macro_invocation, + sym_metavariable, + sym_never_type, + sym_pointer_type, + sym_reference_type, + sym_removed_trait_bound, + sym_scoped_type_identifier, + sym_tuple_type, + sym_unit_type, +}; + +static const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -7516,7 +7991,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -7526,7 +8001,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -7540,48 +8015,50 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, - {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, - {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, - {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, - {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, - {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, - {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static TSCharacterRange sym_identifier_character_set_3[] = { +static const TSCharacterRange sym_identifier_character_set_3[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, - {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -7609,7 +8086,7 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, - {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, @@ -7620,7 +8097,7 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, - {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, @@ -7633,39 +8110,42 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, - {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, - {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, - {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, - {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, - {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, - {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, - {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, - {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, - {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, + {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, + {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, + {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, - {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, - {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, - {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, @@ -7679,884 +8159,924 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(72); + if (eof) ADVANCE(74); ADVANCE_MAP( - '!', 171, - '"', 157, - '#', 143, - '$', 85, - '%', 99, - '&', 104, - '\'', 145, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 172, - '0', 151, - ':', 83, - ';', 73, - '<', 146, - '=', 123, - '>', 127, - '?', 93, - '@', 132, - '[', 77, - '\\', 46, - ']', 78, - '^', 100, - 'b', 178, - 'c', 179, - 'm', 182, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, + '!', 173, + '"', 159, + '#', 145, + '$', 87, + '%', 101, + '&', 106, + '\'', 147, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 98, + '.', 135, + '/', 174, + '0', 153, + ':', 85, + ';', 75, + '<', 148, + '=', 125, + '>', 129, + '?', 95, + '@', 134, + '[', 79, + '\\', 50, + ']', 80, + '^', 102, + 'b', 180, + 'c', 181, + 'm', 184, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + lookahead == ' ') SKIP(70); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1); - if (lookahead == '[') ADVANCE(193); + if (lookahead == '\n') ADVANCE(194); + if (lookahead == '[') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(192); - if (lookahead != 0) ADVANCE(193); + lookahead == ' ') ADVANCE(1); + if (lookahead != 0) ADVANCE(3); END_STATE(); case 2: - ADVANCE_MAP( - '!', 102, - '"', 156, - '#', 142, - '$', 85, - '%', 99, - '&', 104, - '\'', 145, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, - '0', 151, - ':', 83, - ';', 73, - '<', 129, - '=', 123, - '>', 127, - '?', 93, - '@', 132, - '[', 77, - ']', 78, - '^', 100, - 'b', 178, - 'c', 179, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, - ); + if (lookahead == '\n') ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + lookahead == ' ') ADVANCE(1); + if (lookahead != 0 && + lookahead != '[') ADVANCE(3); END_STATE(); case 3: - ADVANCE_MAP( - '!', 102, - '"', 156, - '#', 142, - '$', 65, - '%', 99, - '&', 104, - '\'', 145, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, - '0', 151, - ':', 83, - ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, - '[', 77, - ']', 78, - '^', 100, - 'b', 178, - 'c', 179, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (lookahead == '\n') ADVANCE(194); + if (lookahead != 0) ADVANCE(3); END_STATE(); case 4: ADVANCE_MAP( - '!', 102, - '"', 156, - '#', 142, - '$', 84, - '%', 99, - '&', 104, - '\'', 145, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, - '0', 151, - ':', 83, - ';', 73, - '<', 129, - '=', 123, - '>', 127, - '?', 93, - '@', 132, - '[', 77, - ']', 78, - '^', 100, - 'b', 178, - 'c', 179, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, + '!', 104, + '"', 158, + '#', 144, + '$', 87, + '%', 101, + '&', 106, + '\'', 147, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 98, + '.', 135, + '/', 100, + '0', 153, + ':', 85, + ';', 75, + '<', 131, + '=', 125, + '>', 129, + '?', 95, + '@', 134, + '[', 79, + ']', 80, + '^', 102, + 'b', 180, + 'c', 181, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 5: ADVANCE_MAP( - '!', 102, - '"', 156, - '$', 65, - '%', 99, - '&', 104, - '\'', 145, - '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, - '0', 151, - ':', 83, - '<', 129, - '=', 123, - '>', 127, - '?', 93, - '[', 77, - '^', 100, - 'b', 178, - 'c', 179, - 'r', 180, - '{', 79, - '|', 106, + '!', 104, + '"', 158, + '#', 144, + '$', 68, + '%', 101, + '&', 106, + '\'', 147, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 97, + '.', 135, + '/', 100, + '0', 153, + ':', 85, + ';', 75, + '<', 131, + '=', 124, + '>', 129, + '?', 95, + '[', 79, + ']', 80, + '^', 102, + 'b', 180, + 'c', 181, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 6: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, - '\'', 144, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, - ':', 83, - ';', 73, - '<', 146, - '=', 122, - '>', 127, - '?', 93, - '[', 77, - ']', 78, - '^', 100, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, + '!', 104, + '"', 158, + '#', 144, + '$', 86, + '%', 101, + '&', 106, + '\'', 147, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 98, + '.', 135, + '/', 100, + '0', 153, + ':', 85, + ';', 75, + '<', 131, + '=', 125, + '>', 129, + '?', 95, + '@', 134, + '[', 79, + ']', 80, + '^', 102, + 'b', 180, + 'c', 181, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 7: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, - '\'', 144, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, - ':', 40, - ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, - '[', 77, - ']', 78, - '^', 100, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, + '!', 104, + '"', 158, + '$', 68, + '%', 101, + '&', 106, + '\'', 147, + '(', 77, + '*', 94, + '+', 92, + '-', 97, + '.', 135, + '/', 100, + '0', 153, + ':', 85, + '<', 131, + '=', 125, + '>', 129, + '?', 95, + '[', 79, + '^', 102, + 'b', 180, + 'c', 181, + 'r', 182, + '{', 81, + '|', 108, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 8: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, - '\'', 144, - '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, - ':', 40, - '<', 129, - '=', 123, - '>', 127, - '?', 93, - '[', 77, - '^', 100, - 'r', 180, - '{', 79, - '|', 106, + '!', 104, + '%', 101, + '&', 106, + '\'', 146, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 97, + '.', 135, + '/', 100, + ':', 85, + ';', 75, + '<', 148, + '=', 124, + '>', 129, + '?', 95, + '[', 79, + ']', 80, + '^', 102, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 9: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, - '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, - ':', 40, - '<', 146, - '=', 123, - '>', 127, - '?', 93, - '[', 77, - '^', 100, - 'r', 180, - '|', 106, + '!', 104, + '%', 101, + '&', 106, + '\'', 146, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 97, + '.', 135, + '/', 100, + ':', 44, + ';', 75, + '<', 131, + '=', 124, + '>', 129, + '?', 95, + '[', 79, + ']', 80, + '^', 102, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 10: ADVANCE_MAP( - '!', 101, - '"', 157, - '#', 142, - '$', 65, - '&', 24, - '\'', 144, - '(', 75, - ')', 76, - '*', 33, - '+', 89, - ',', 139, - '.', 30, - '/', 28, - ':', 83, - ';', 73, - '<', 128, - '=', 43, - '>', 126, - '\\', 46, - ']', 78, - 'm', 182, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '!', 104, + '%', 101, + '&', 106, + '\'', 146, + '(', 77, + '*', 94, + '+', 92, + '-', 97, + '.', 135, + '/', 100, + ':', 44, + '<', 131, + '=', 125, + '>', 129, + '?', 95, + '[', 79, + '^', 102, + 'r', 182, + '{', 81, + '|', 108, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + lookahead == ' ') SKIP(10); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 11: ADVANCE_MAP( - '!', 101, - '"', 156, - '#', 142, - '$', 65, - '&', 103, - '\'', 145, - '(', 75, - ')', 76, - '*', 91, - ',', 139, - '-', 94, - '.', 31, - '/', 28, - '0', 151, - ':', 83, - ';', 73, - '<', 128, - '=', 121, - '>', 126, - '?', 93, - '[', 77, - ']', 78, - 'b', 178, - 'c', 179, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '!', 104, + '%', 101, + '&', 106, + '(', 77, + '*', 94, + '+', 92, + '-', 97, + '.', 135, + '/', 100, + ':', 44, + '<', 148, + '=', 125, + '>', 129, + '?', 95, + '[', 79, + '^', 102, + 'r', 182, + '|', 108, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 12: ADVANCE_MAP( - '!', 101, - '"', 156, - '#', 142, - '$', 65, - '&', 103, - '\'', 145, - '(', 75, - ')', 76, - '*', 91, - ',', 139, - '-', 94, - '.', 32, - '/', 28, - '0', 151, - ':', 40, - '<', 128, - '=', 43, - '?', 93, - '[', 77, - 'b', 178, - 'c', 179, - 'r', 180, - '|', 105, + '!', 103, + '"', 158, + '#', 144, + '$', 68, + '&', 105, + '\'', 147, + '(', 77, + ')', 78, + '*', 93, + '+', 91, + ',', 141, + '-', 96, + '.', 34, + '/', 32, + '0', 153, + ':', 85, + ';', 75, + '<', 130, + '=', 47, + '?', 95, + '[', 79, + ']', 80, + 'b', 180, + 'c', 181, + 'r', 182, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 13: ADVANCE_MAP( - '!', 101, - '"', 156, - '$', 65, - '&', 103, - '\'', 145, - '(', 75, - '*', 91, - '+', 89, - ',', 139, - '-', 97, - '.', 31, - '/', 28, - '0', 151, - ':', 40, - ';', 73, - '<', 128, - '[', 77, - ']', 78, - 'b', 178, - 'c', 179, - 'r', 180, - '{', 79, - '|', 105, + '!', 103, + '"', 158, + '#', 144, + '$', 68, + '&', 105, + '\'', 147, + '(', 77, + ')', 78, + '*', 93, + ',', 141, + '-', 96, + '.', 35, + '/', 32, + '0', 153, + ':', 85, + ';', 75, + '<', 130, + '=', 123, + '>', 128, + '?', 95, + '[', 79, + ']', 80, + 'b', 180, + 'c', 181, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 14: ADVANCE_MAP( - '!', 101, - '#', 142, - '$', 65, - '&', 103, - '\'', 144, - '(', 75, - ')', 76, - '*', 91, - '+', 89, - ',', 139, - '-', 42, - '.', 30, - '/', 28, - '0', 151, - ':', 83, - ';', 73, - '<', 128, - '=', 121, - '>', 126, - '?', 93, - '[', 77, - ']', 78, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '!', 103, + '"', 158, + '#', 144, + '$', 68, + '&', 105, + '\'', 147, + '(', 77, + ')', 78, + '*', 93, + ',', 141, + '-', 96, + '.', 36, + '/', 32, + '0', 153, + ':', 44, + '<', 130, + '?', 95, + '[', 79, + ']', 80, + 'b', 180, + 'c', 181, + 'r', 182, + '|', 107, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 15: ADVANCE_MAP( - '!', 101, - '#', 142, - '$', 65, - '&', 24, - '\'', 144, - '(', 75, - ')', 76, - '*', 33, - '+', 89, - ',', 139, - '.', 30, - '/', 28, - ':', 83, - ';', 73, - '<', 128, - '=', 43, - '>', 126, - ']', 78, - 'm', 182, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '!', 103, + '"', 158, + '$', 68, + '&', 105, + '\'', 147, + '(', 77, + '*', 93, + '+', 91, + ',', 141, + '-', 99, + '.', 35, + '/', 32, + '0', 153, + ':', 44, + ';', 75, + '<', 130, + '[', 79, + ']', 80, + 'b', 180, + 'c', 181, + 'r', 182, + '{', 81, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 16: ADVANCE_MAP( - '!', 101, - '\'', 144, - '(', 75, - ')', 76, - '+', 89, - ',', 139, - '.', 30, - '/', 28, - ':', 83, - ';', 73, - '<', 146, - '=', 121, - '>', 126, - '@', 132, - ']', 78, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '!', 103, + '"', 158, + '$', 68, + '&', 105, + '\'', 147, + '(', 77, + '*', 93, + '-', 99, + '.', 36, + '/', 32, + '0', 153, + ':', 44, + '<', 130, + '[', 79, + 'b', 180, + 'c', 181, + 'r', 182, + '{', 81, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 17: ADVANCE_MAP( - '!', 101, - '(', 75, - '.', 30, - '/', 28, - ':', 40, - '<', 146, - '=', 43, - '@', 132, - 'r', 180, - '{', 79, - '|', 105, + '!', 103, + '#', 144, + '$', 68, + '&', 105, + '\'', 146, + '(', 77, + ')', 78, + '*', 93, + '+', 91, + ',', 141, + '-', 46, + '.', 34, + '/', 32, + '0', 153, + ':', 85, + ';', 75, + '<', 130, + '=', 123, + '>', 128, + '?', 95, + '[', 79, + ']', 80, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 18: ADVANCE_MAP( - '!', 41, - '%', 99, - '&', 104, - '\'', 144, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, - ':', 82, - ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, - '[', 77, - ']', 78, - '^', 100, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, + '!', 103, + '\'', 146, + '(', 77, + ')', 78, + '+', 91, + ',', 141, + '.', 34, + '/', 32, + ':', 85, + ';', 75, + '<', 148, + '=', 123, + '>', 128, + '@', 134, + ']', 80, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 19: ADVANCE_MAP( - '!', 41, - '%', 99, - '&', 104, - '\'', 144, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, - ':', 82, - ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, - '[', 77, - ']', 78, - '^', 100, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, + '!', 103, + '(', 77, + '.', 34, + '/', 32, + ':', 44, + '<', 148, + '=', 47, + '@', 134, + 'r', 182, + '{', 81, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 20: ADVANCE_MAP( - '!', 41, - '%', 99, - '&', 104, - '(', 75, - '*', 92, - '+', 90, - '-', 96, - '.', 133, - '/', 98, - '<', 129, - '=', 123, - '>', 127, - '?', 93, - '[', 77, - '^', 100, - 'r', 180, - '|', 106, + '!', 45, + '%', 101, + '&', 106, + '\'', 146, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 98, + '.', 135, + '/', 100, + ':', 84, + ';', 75, + '<', 131, + '=', 124, + '>', 129, + '?', 95, + '[', 79, + ']', 80, + '^', 102, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(156); - if (lookahead == '/') ADVANCE(28); - if (lookahead == ';') ADVANCE(73); - if (lookahead == 'r') ADVANCE(180); - if (lookahead == '{') ADVANCE(79); - if (lookahead == 'b' || - lookahead == 'c') ADVANCE(179); + ADVANCE_MAP( + '!', 45, + '%', 101, + '&', 106, + '\'', 146, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 97, + '.', 135, + '/', 100, + ':', 84, + ';', 75, + '<', 131, + '=', 124, + '>', 129, + '?', 95, + '[', 79, + ']', 80, + '^', 102, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 22: ADVANCE_MAP( - '#', 142, - '$', 65, - ',', 139, - '/', 28, - ':', 40, - ';', 73, - '<', 128, - '=', 121, - 'm', 182, - 'r', 180, - '}', 80, + '!', 45, + '%', 101, + '&', 106, + '(', 77, + '*', 94, + '+', 92, + '-', 98, + '.', 135, + '/', 100, + '<', 131, + '=', 125, + '>', 129, + '?', 95, + '[', 79, + '^', 102, + 'r', 182, + '|', 108, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 23: ADVANCE_MAP( - '#', 142, - ',', 139, - '.', 31, - '/', 28, - '0', 151, - ':', 82, - ';', 73, - '<', 128, - '=', 121, - 'r', 180, - '{', 79, - '}', 80, + '"', 159, + '#', 144, + '$', 68, + '&', 28, + '\'', 146, + '*', 37, + '+', 91, + '/', 32, + ':', 44, + ';', 75, + '<', 130, + '=', 47, + '>', 128, + '\\', 50, + 'm', 184, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + lookahead == ' ') SKIP(25); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 24: - if (lookahead == '&') ADVANCE(107); + if (lookahead == '"') ADVANCE(158); + if (lookahead == '/') ADVANCE(32); + if (lookahead == ';') ADVANCE(75); + if (lookahead == 'r') ADVANCE(182); + if (lookahead == '{') ADVANCE(81); + if (lookahead == 'b' || + lookahead == 'c') ADVANCE(181); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(24); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 25: - if (lookahead == '\'') ADVANCE(158); + ADVANCE_MAP( + '#', 144, + '$', 68, + '&', 28, + '\'', 146, + '*', 37, + '+', 91, + '/', 32, + ':', 44, + ';', 75, + '<', 130, + '=', 47, + '>', 128, + 'm', 184, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(25); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 26: - if (lookahead == '\'') ADVANCE(158); - if (lookahead == '\\') ADVANCE(47); - if (lookahead != 0) ADVANCE(25); + ADVANCE_MAP( + '#', 144, + '$', 68, + ',', 141, + '/', 32, + ':', 44, + ';', 75, + '<', 130, + '=', 123, + 'm', 184, + 'r', 182, + '}', 82, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(26); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 27: ADVANCE_MAP( - '\'', 144, - '(', 75, - ')', 76, - '*', 91, - '+', 89, - ',', 139, - '-', 42, - '.', 30, - '/', 28, - ':', 82, - ';', 73, - '<', 146, - '=', 121, - '>', 126, - ']', 78, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '#', 144, + ',', 141, + '.', 35, + '/', 32, + '0', 153, + ':', 84, + ';', 75, + '<', 130, + '=', 123, + 'r', 182, + '{', 81, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 28: - if (lookahead == '*') ADVANCE(174); - if (lookahead == '/') ADVANCE(160); + if (lookahead == '&') ADVANCE(109); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(91); - if (lookahead == '+') ADVANCE(89); - if (lookahead == '/') ADVANCE(86); - if (lookahead == '?') ADVANCE(93); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(87); - if (lookahead != 0) ADVANCE(88); + if (lookahead == '\'') ADVANCE(160); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(136); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '\\') ADVANCE(51); + if (lookahead != 0) ADVANCE(29); END_STATE(); case 31: - if (lookahead == '.') ADVANCE(134); + ADVANCE_MAP( + '\'', 146, + '(', 77, + ')', 78, + '*', 93, + '+', 91, + ',', 141, + '-', 46, + '.', 34, + '/', 32, + ':', 84, + ';', 75, + '<', 148, + '=', 123, + '>', 128, + ']', 80, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(31); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 32: - if (lookahead == '.') ADVANCE(135); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '/') ADVANCE(162); END_STATE(); case 33: - if (lookahead == '/') ADVANCE(176); + if (lookahead == '*') ADVANCE(93); + if (lookahead == '+') ADVANCE(91); + if (lookahead == '/') ADVANCE(88); + if (lookahead == '?') ADVANCE(95); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(89); + if (lookahead != 0) ADVANCE(90); END_STATE(); case 34: - if (lookahead == '1') ADVANCE(36); - if (lookahead == '3') ADVANCE(35); - if (lookahead == '6') ADVANCE(38); - if (lookahead == '8') ADVANCE(147); - if (lookahead == 's') ADVANCE(45); + if (lookahead == '.') ADVANCE(137); END_STATE(); case 35: - if (lookahead == '2') ADVANCE(147); + if (lookahead == '.') ADVANCE(136); END_STATE(); case 36: - if (lookahead == '2') ADVANCE(39); - if (lookahead == '6') ADVANCE(147); + if (lookahead == '.') ADVANCE(138); END_STATE(); case 37: - if (lookahead == '3') ADVANCE(35); - if (lookahead == '6') ADVANCE(38); + if (lookahead == '/') ADVANCE(178); END_STATE(); case 38: - if (lookahead == '4') ADVANCE(147); + if (lookahead == '1') ADVANCE(40); + if (lookahead == '3') ADVANCE(39); + if (lookahead == '6') ADVANCE(42); + if (lookahead == '8') ADVANCE(149); + if (lookahead == 's') ADVANCE(49); END_STATE(); case 39: - if (lookahead == '8') ADVANCE(147); + if (lookahead == '2') ADVANCE(149); END_STATE(); case 40: - if (lookahead == ':') ADVANCE(140); + if (lookahead == '2') ADVANCE(43); + if (lookahead == '6') ADVANCE(149); END_STATE(); case 41: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '3') ADVANCE(39); + if (lookahead == '6') ADVANCE(42); END_STATE(); case 42: - if (lookahead == '>') ADVANCE(141); + if (lookahead == '4') ADVANCE(149); END_STATE(); case 43: - if (lookahead == '>') ADVANCE(81); + if (lookahead == '8') ADVANCE(149); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == ':') ADVANCE(142); END_STATE(); case 45: - if (lookahead == 'i') ADVANCE(48); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 46: - if (lookahead == 'u') ADVANCE(49); - if (lookahead == 'x') ADVANCE(61); - if (lookahead != 0) ADVANCE(159); + if (lookahead == '>') ADVANCE(143); END_STATE(); case 47: - if (lookahead == 'u') ADVANCE(50); - if (lookahead == 'x') ADVANCE(62); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '>') ADVANCE(83); END_STATE(); case 48: - if (lookahead == 'z') ADVANCE(44); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 49: - if (lookahead == '{') ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + if (lookahead == 'i') ADVANCE(52); END_STATE(); case 50: - if (lookahead == '{') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + if (lookahead == 'u') ADVANCE(53); + if (lookahead == 'x') ADVANCE(64); + if (lookahead != 0) ADVANCE(161); END_STATE(); case 51: - if (lookahead == '}') ADVANCE(25); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + if (lookahead == 'u') ADVANCE(54); + if (lookahead == 'x') ADVANCE(65); + if (lookahead != 0) ADVANCE(29); END_STATE(); case 52: - if (lookahead == '}') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); + if (lookahead == 'z') ADVANCE(48); END_STATE(); case 53: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(152); + if (lookahead == '{') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 54: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1); - if (lookahead != 0 && - lookahead != '[') ADVANCE(67); + if (lookahead == '{') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(153); + if (lookahead == '}') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 56: + if (lookahead == '}') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(25); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(154); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(155); END_STATE(); case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(29); END_STATE(); case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); END_STATE(); case 61: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); END_STATE(); case 62: if (('0' <= lookahead && lookahead <= '9') || @@ -8566,737 +9086,738 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 63: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 64: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(155); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); END_STATE(); case 65: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); END_STATE(); case 66: - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); END_STATE(); case 67: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); END_STATE(); case 68: - if (eof) ADVANCE(72); - ADVANCE_MAP( - '!', 102, - '"', 156, - '#', 143, - '$', 85, - '%', 99, - '&', 104, - '\'', 145, - '(', 75, - ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, - '0', 151, - ':', 83, - ';', 73, - '<', 146, - '=', 123, - '>', 127, - '?', 93, - '@', 132, - '[', 77, - ']', 78, - '^', 100, - 'b', 178, - 'c', 179, - 'm', 182, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 69: - if (eof) ADVANCE(72); - ADVANCE_MAP( - '!', 102, - '"', 156, - '#', 142, - '$', 65, - '%', 99, - '&', 104, - '\'', 145, - '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, - '0', 151, - ':', 40, - ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, - '[', 77, - '^', 100, - 'b', 178, - 'c', 179, - 'm', 182, - 'r', 180, - '{', 79, - '|', 106, - '}', 80, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(69); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 70: - if (eof) ADVANCE(72); + if (eof) ADVANCE(74); ADVANCE_MAP( - '!', 101, - '"', 156, - '#', 143, - '$', 65, - '&', 103, - '\'', 145, - '(', 75, - ')', 76, - '*', 91, - '+', 89, - ',', 139, - '-', 94, - '.', 31, - '/', 28, - '0', 151, - ':', 83, - ';', 73, - '<', 128, - '=', 121, - '>', 126, - '?', 93, - '[', 77, - ']', 78, - 'b', 178, - 'c', 179, - 'm', 182, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '!', 104, + '"', 158, + '#', 145, + '$', 87, + '%', 101, + '&', 106, + '\'', 147, + '(', 77, + ')', 78, + '*', 94, + '+', 92, + ',', 141, + '-', 98, + '.', 135, + '/', 100, + '0', 153, + ':', 85, + ';', 75, + '<', 148, + '=', 125, + '>', 129, + '?', 95, + '@', 134, + '[', 79, + ']', 80, + '^', 102, + 'b', 180, + 'c', 181, + 'm', 184, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 71: - if (eof) ADVANCE(72); + if (eof) ADVANCE(74); ADVANCE_MAP( - '!', 101, - '"', 156, - '#', 142, - '$', 65, - '&', 103, - '\'', 145, - '(', 75, - '*', 91, - '-', 94, - '.', 31, - '/', 28, - '0', 151, - ':', 40, - ';', 73, - '<', 128, - '=', 43, - '[', 77, - 'b', 178, - 'c', 179, - 'm', 182, - 'r', 180, - '{', 79, - '|', 105, - '}', 80, + '!', 104, + '"', 158, + '#', 144, + '$', 68, + '%', 101, + '&', 106, + '\'', 147, + '(', 77, + '*', 94, + '+', 92, + '-', 97, + '.', 135, + '/', 100, + '0', 153, + ':', 44, + ';', 75, + '<', 131, + '=', 124, + '>', 129, + '?', 95, + '[', 79, + '^', 102, + 'b', 180, + 'c', 181, + 'm', 184, + 'r', 182, + '{', 81, + '|', 108, + '}', 82, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 72: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(74); + ADVANCE_MAP( + '!', 103, + '"', 158, + '#', 145, + '$', 68, + '&', 105, + '\'', 147, + '(', 77, + ')', 78, + '*', 93, + '+', 91, + ',', 141, + '-', 96, + '.', 35, + '/', 32, + '0', 153, + ':', 85, + ';', 75, + '<', 130, + '=', 123, + '>', 128, + '?', 95, + '[', 79, + ']', 80, + 'b', 180, + 'c', 181, + 'm', 184, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(72); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_SEMI); + if (eof) ADVANCE(74); + ADVANCE_MAP( + '!', 103, + '"', 158, + '#', 144, + '$', 68, + '&', 105, + '\'', 147, + '(', 77, + '*', 93, + '-', 96, + '.', 35, + '/', 32, + '0', 153, + ':', 44, + ';', 75, + '<', 130, + '=', 47, + '[', 79, + 'b', 180, + 'c', 181, + 'm', 184, + 'r', 182, + '{', 81, + '|', 107, + '}', 82, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_macro_rules_BANG); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_macro_rules_BANG); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 85: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(142); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 87: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); - case 86: + case 88: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '/') ADVANCE(161); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '/') ADVANCE(163); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); + lookahead != '?') ADVANCE(90); END_STATE(); - case 87: + case 89: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(86); + if (lookahead == '/') ADVANCE(88); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(87); + lookahead == ' ') ADVANCE(89); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); + lookahead != '?') ADVANCE(90); END_STATE(); - case 88: + case 90: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(111); + lookahead != '?') ADVANCE(90); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '=') ADVANCE(113); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 96: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(112); - if (lookahead == '>') ADVANCE(141); END_STATE(); case 97: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(141); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '/') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '=') ADVANCE(114); + if (lookahead == '>') ADVANCE(143); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(143); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(176); + if (lookahead == '/') ADVANCE(162); if (lookahead == '=') ADVANCE(116); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(125); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(107); - if (lookahead == '=') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '|') ADVANCE(108); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(109); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(120); + if (lookahead == '|') ADVANCE(110); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(124); - if (lookahead == '>') ADVANCE(81); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(83); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(130); - if (lookahead == '>') ADVANCE(110); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '>') ADVANCE(112); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(111); + if (lookahead == '=') ADVANCE(133); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(137); END_STATE(); case 136: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(137); - if (lookahead == '=') ADVANCE(138); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(139); + if (lookahead == '=') ADVANCE(140); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '=') ADVANCE(140); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(54); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(158); - if (lookahead == '\\') ADVANCE(47); - if (lookahead != 0) ADVANCE(25); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(2); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 147: - ACCEPT_TOKEN(sym_integer_literal); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '\\') ADVANCE(51); + if (lookahead != 0) ADVANCE(29); END_STATE(); case 148: + ACCEPT_TOKEN(anon_sym_LT2); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_integer_literal); + END_STATE(); + case 150: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(155); - if (lookahead == 'f') ADVANCE(149); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'u') ADVANCE(34); + if (lookahead == '2') ADVANCE(157); + if (lookahead == 'f') ADVANCE(151); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'u') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(155); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(157); END_STATE(); - case 149: + case 151: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(148); - if (lookahead == '6') ADVANCE(150); - if (lookahead == 'f') ADVANCE(149); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'u') ADVANCE(34); + if (lookahead == '3') ADVANCE(150); + if (lookahead == '6') ADVANCE(152); + if (lookahead == 'f') ADVANCE(151); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'u') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(155); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(157); END_STATE(); - case 150: + case 152: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(155); - if (lookahead == 'f') ADVANCE(149); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'u') ADVANCE(34); + if (lookahead == '4') ADVANCE(157); + if (lookahead == 'f') ADVANCE(151); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'u') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(155); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(157); END_STATE(); - case 151: + case 153: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(53); - if (lookahead == 'f') ADVANCE(37); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'o') ADVANCE(55); - if (lookahead == 'u') ADVANCE(34); - if (lookahead == 'x') ADVANCE(64); + if (lookahead == 'b') ADVANCE(57); + if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'o') ADVANCE(58); + if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'x') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(154); + lookahead == '_') ADVANCE(156); END_STATE(); - case 152: + case 154: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(37); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'u') ADVANCE(38); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(152); + lookahead == '_') ADVANCE(154); END_STATE(); - case 153: + case 155: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(37); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'u') ADVANCE(38); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(153); + lookahead == '_') ADVANCE(155); END_STATE(); - case 154: + case 156: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(37); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'u') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(154); + lookahead == '_') ADVANCE(156); END_STATE(); - case 155: + case 157: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(149); - if (lookahead == 'i') ADVANCE(34); - if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'f') ADVANCE(151); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'u') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(155); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(157); END_STATE(); - case 156: + case 158: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 157: + case 159: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 158: + case 160: ACCEPT_TOKEN(sym_char_literal); END_STATE(); - case 159: + case 161: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 160: + case 162: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 161: + case 163: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); + lookahead != '?') ADVANCE(90); END_STATE(); - case 162: + case 164: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(166); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 163: + case 165: ACCEPT_TOKEN(aux_sym_line_comment_token1); END_STATE(); - case 164: + case 166: ACCEPT_TOKEN(aux_sym_line_comment_token2); - if (lookahead == '*') ADVANCE(175); - if (lookahead == '/') ADVANCE(162); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '/') ADVANCE(164); if (lookahead != 0 && - lookahead != '\n') ADVANCE(166); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 165: + case 167: ACCEPT_TOKEN(aux_sym_line_comment_token2); - if (lookahead == '/') ADVANCE(164); + if (lookahead == '/') ADVANCE(166); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(165); + lookahead == ' ') ADVANCE(167); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(166); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(168); END_STATE(); - case 166: + case 168: ACCEPT_TOKEN(aux_sym_line_comment_token2); if (lookahead != 0 && - lookahead != '\n') ADVANCE(166); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 167: + case 169: ACCEPT_TOKEN(aux_sym_line_comment_token3); - if (lookahead == '!') ADVANCE(171); - if (lookahead == '/') ADVANCE(173); + if (lookahead == '!') ADVANCE(173); + if (lookahead == '/') ADVANCE(175); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(169); + lookahead == ' ') ADVANCE(171); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(170); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(172); END_STATE(); - case 168: + case 170: ACCEPT_TOKEN(aux_sym_line_comment_token3); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '/') ADVANCE(170); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '/') ADVANCE(172); if (lookahead != 0 && - lookahead != '\n') ADVANCE(170); + lookahead != '\n') ADVANCE(172); END_STATE(); - case 169: + case 171: ACCEPT_TOKEN(aux_sym_line_comment_token3); - if (lookahead == '/') ADVANCE(168); + if (lookahead == '/') ADVANCE(170); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(169); + lookahead == ' ') ADVANCE(171); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(170); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(172); END_STATE(); - case 170: + case 172: ACCEPT_TOKEN(aux_sym_line_comment_token3); if (lookahead != 0 && - lookahead != '\n') ADVANCE(170); + lookahead != '\n') ADVANCE(172); END_STATE(); - case 171: + case 173: ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); - case 172: + case 174: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 173: + case 175: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(163); + if (lookahead == '/') ADVANCE(165); END_STATE(); - case 174: + case 176: ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); - case 175: + case 177: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(166); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_STAR_SLASH); - END_STATE(); - case 177: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(74); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + lookahead != '\n') ADVANCE(168); END_STATE(); case 178: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(156); - if (lookahead == '\'') ADVANCE(26); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + ACCEPT_TOKEN(anon_sym_STAR_SLASH); END_STATE(); case 179: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(156); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == '!') ADVANCE(76); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(66); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == '"') ADVANCE(158); + if (lookahead == '\'') ADVANCE(30); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 181: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(188); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == '"') ADVANCE(158); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(183); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == '#') ADVANCE(69); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 183: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(187); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == '_') ADVANCE(190); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(189); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 'a') ADVANCE(185); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 185: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(184); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 'c') ADVANCE(189); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 186: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(181); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 'e') ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 187: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(186); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 'l') ADVANCE(186); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 188: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(190); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 'o') ADVANCE(183); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 189: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(177); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 'r') ADVANCE(188); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 190: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(185); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 'r') ADVANCE(192); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 191: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (lookahead == 's') ADVANCE(179); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 192: - ACCEPT_TOKEN(sym_shebang); - if (lookahead == '\n') ADVANCE(1); - if (lookahead == '[') ADVANCE(193); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(192); - if (lookahead != 0) ADVANCE(193); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(187); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 193: - ACCEPT_TOKEN(sym_shebang); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); + ACCEPT_TOKEN(sym_identifier); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); END_STATE(); case 194: + ACCEPT_TOKEN(sym_shebang); + END_STATE(); + case 195: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); default: return false; @@ -9316,17 +9837,18 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'd', 5, 'e', 6, 'f', 7, - 'i', 8, - 'l', 9, - 'm', 10, - 'p', 11, - 'r', 12, - 's', 13, - 't', 14, - 'u', 15, - 'v', 16, - 'w', 17, - 'y', 18, + 'g', 8, + 'i', 9, + 'l', 10, + 'm', 11, + 'p', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'v', 17, + 'w', 18, + 'y', 19, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); @@ -9335,4333 +9857,4587 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym__); END_STATE(); case 2: - if (lookahead == 's') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'o') ADVANCE(22); - if (lookahead == 'r') ADVANCE(23); + if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'o') ADVANCE(23); + if (lookahead == 'r') ADVANCE(24); END_STATE(); case 4: - if (lookahead == 'h') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); - if (lookahead == 'r') ADVANCE(26); + if (lookahead == 'h') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'r') ADVANCE(27); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(27); - if (lookahead == 'y') ADVANCE(28); + if (lookahead == 'e') ADVANCE(28); + if (lookahead == 'y') ADVANCE(29); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); - if (lookahead == 'x') ADVANCE(31); + if (lookahead == 'l') ADVANCE(30); + if (lookahead == 'n') ADVANCE(31); + if (lookahead == 'x') ADVANCE(32); END_STATE(); case 7: - if (lookahead == '3') ADVANCE(32); - if (lookahead == '6') ADVANCE(33); - if (lookahead == 'a') ADVANCE(34); - if (lookahead == 'n') ADVANCE(35); - if (lookahead == 'o') ADVANCE(36); + if (lookahead == '3') ADVANCE(33); + if (lookahead == '6') ADVANCE(34); + if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'n') ADVANCE(36); + if (lookahead == 'o') ADVANCE(37); END_STATE(); case 8: - ADVANCE_MAP( - '1', 37, - '3', 38, - '6', 39, - '8', 40, - 'd', 41, - 'f', 42, - 'm', 43, - 'n', 44, - 's', 45, - 't', 46, - ); + if (lookahead == 'e') ADVANCE(38); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(47); - if (lookahead == 'i') ADVANCE(48); - if (lookahead == 'o') ADVANCE(49); + ADVANCE_MAP( + '1', 39, + '3', 40, + '6', 41, + '8', 42, + 'd', 43, + 'f', 44, + 'm', 45, + 'n', 46, + 's', 47, + 't', 48, + ); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(50); - if (lookahead == 'e') ADVANCE(51); - if (lookahead == 'o') ADVANCE(52); - if (lookahead == 'u') ADVANCE(53); + if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'o') ADVANCE(54); if (lookahead == 'u') ADVANCE(55); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'a') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(57); - if (lookahead == 't') ADVANCE(58); - if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'a') ADVANCE(58); + if (lookahead == 'e') ADVANCE(59); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'e') ADVANCE(60); if (lookahead == 't') ADVANCE(61); - if (lookahead == 'y') ADVANCE(62); + if (lookahead == 'u') ADVANCE(62); END_STATE(); case 15: - if (lookahead == '1') ADVANCE(63); - if (lookahead == '3') ADVANCE(64); - if (lookahead == '6') ADVANCE(65); - if (lookahead == '8') ADVANCE(66); - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 's') ADVANCE(68); + if (lookahead == 'r') ADVANCE(63); + if (lookahead == 't') ADVANCE(64); + if (lookahead == 'y') ADVANCE(65); END_STATE(); case 16: - if (lookahead == 'i') ADVANCE(69); + if (lookahead == '1') ADVANCE(66); + if (lookahead == '3') ADVANCE(67); + if (lookahead == '6') ADVANCE(68); + if (lookahead == '8') ADVANCE(69); + if (lookahead == 'n') ADVANCE(70); + if (lookahead == 's') ADVANCE(71); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(70); + if (lookahead == 'i') ADVANCE(72); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'h') ADVANCE(73); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(72); + if (lookahead == 'i') ADVANCE(74); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(73); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(75); END_STATE(); case 21: - if (lookahead == 'o') ADVANCE(74); + if (lookahead == 'a') ADVANCE(76); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(75); + if (lookahead == 'o') ADVANCE(77); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 'o') ADVANCE(78); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'e') ADVANCE(79); END_STATE(); case 25: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'a') ADVANCE(80); END_STATE(); case 26: - if (lookahead == 'a') ADVANCE(79); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(80); + if (lookahead == 'a') ADVANCE(82); END_STATE(); case 28: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'f') ADVANCE(83); END_STATE(); case 29: - if (lookahead == 's') ADVANCE(82); + if (lookahead == 'n') ADVANCE(84); END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(83); + if (lookahead == 's') ADVANCE(85); END_STATE(); case 31: - if (lookahead == 'p') ADVANCE(84); - if (lookahead == 't') ADVANCE(85); + if (lookahead == 'u') ADVANCE(86); END_STATE(); case 32: - if (lookahead == '2') ADVANCE(86); + if (lookahead == 'p') ADVANCE(87); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 33: - if (lookahead == '4') ADVANCE(87); + if (lookahead == '2') ADVANCE(89); END_STATE(); case 34: - if (lookahead == 'l') ADVANCE(88); + if (lookahead == '4') ADVANCE(90); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == 'l') ADVANCE(91); END_STATE(); case 36: - if (lookahead == 'r') ADVANCE(89); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 37: - if (lookahead == '2') ADVANCE(90); - if (lookahead == '6') ADVANCE(91); + if (lookahead == 'r') ADVANCE(92); END_STATE(); case 38: - if (lookahead == '2') ADVANCE(92); + if (lookahead == 'n') ADVANCE(93); END_STATE(); case 39: - if (lookahead == '4') ADVANCE(93); + if (lookahead == '2') ADVANCE(94); + if (lookahead == '6') ADVANCE(95); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == '2') ADVANCE(96); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == '4') ADVANCE(97); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 43: - if (lookahead == 'p') ADVANCE(95); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 45: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'p') ADVANCE(99); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'i') ADVANCE(100); END_STATE(); case 48: - if (lookahead == 'f') ADVANCE(99); - if (lookahead == 't') ADVANCE(100); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 49: - if (lookahead == 'o') ADVANCE(101); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'f') ADVANCE(103); + if (lookahead == 't') ADVANCE(104); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'o') ADVANCE(105); END_STATE(); case 52: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'v') ADVANCE(105); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 'd') ADVANCE(108); + if (lookahead == 'v') ADVANCE(109); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(108); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 56: - if (lookahead == 'f') ADVANCE(109); - if (lookahead == 't') ADVANCE(110); + if (lookahead == 't') ADVANCE(111); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 'b') ADVANCE(112); END_STATE(); case 58: - if (lookahead == 'a') ADVANCE(112); - if (lookahead == 'm') ADVANCE(113); - if (lookahead == 'r') ADVANCE(114); + if (lookahead == 'w') ADVANCE(113); END_STATE(); case 59: - if (lookahead == 'p') ADVANCE(115); + if (lookahead == 'f') ADVANCE(114); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 60: - if (lookahead == 'a') ADVANCE(116); - if (lookahead == 'u') ADVANCE(117); - if (lookahead == 'y') ADVANCE(118); + if (lookahead == 'l') ADVANCE(116); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'a') ADVANCE(117); + if (lookahead == 'm') ADVANCE(118); + if (lookahead == 'r') ADVANCE(119); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(119); + if (lookahead == 'p') ADVANCE(120); END_STATE(); case 63: - if (lookahead == '2') ADVANCE(120); - if (lookahead == '6') ADVANCE(121); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'u') ADVANCE(122); + if (lookahead == 'y') ADVANCE(123); END_STATE(); case 64: - if (lookahead == '2') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 65: - if (lookahead == '4') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(124); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == '2') ADVANCE(125); + if (lookahead == '6') ADVANCE(126); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(124); - if (lookahead == 's') ADVANCE(125); + if (lookahead == '2') ADVANCE(127); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); + if (lookahead == '4') ADVANCE(128); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(128); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(129); - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'i') ADVANCE(129); + if (lookahead == 's') ADVANCE(130); END_STATE(); case 71: if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(132); + if (lookahead == 's') ADVANCE(133); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(133); + if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'i') ADVANCE(135); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(134); + if (lookahead == 'e') ADVANCE(136); END_STATE(); case 75: - if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(137); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(136); + if (lookahead == 'i') ADVANCE(138); END_STATE(); case 77: - if (lookahead == 'r') ADVANCE(137); + if (lookahead == 'c') ADVANCE(139); END_STATE(); case 78: - if (lookahead == 's') ADVANCE(138); - if (lookahead == 't') ADVANCE(139); + if (lookahead == 'l') ADVANCE(140); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'a') ADVANCE(141); END_STATE(); case 80: - if (lookahead == 'a') ADVANCE(141); + if (lookahead == 'r') ADVANCE(142); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 's') ADVANCE(143); + if (lookahead == 't') ADVANCE(144); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 't') ADVANCE(145); END_STATE(); case 83: - if (lookahead == 'm') ADVANCE(143); + if (lookahead == 'a') ADVANCE(146); END_STATE(); case 84: - if (lookahead == 'r') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'e') ADVANCE(147); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'm') ADVANCE(148); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'r') ADVANCE(149); END_STATE(); case 88: - if (lookahead == 's') ADVANCE(146); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 90: - if (lookahead == '8') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == 's') ADVANCE(151); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_gen); END_STATE(); case 94: - if (lookahead == 'n') ADVANCE(148); + if (lookahead == '8') ADVANCE(152); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 96: - if (lookahead == 'z') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'n') ADVANCE(153); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'l') ADVANCE(154); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'z') ADVANCE(155); END_STATE(); case 101: - if (lookahead == 'p') ADVANCE(154); + if (lookahead == 'm') ADVANCE(156); END_STATE(); case 102: - if (lookahead == 'c') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(156); + if (lookahead == 'e') ADVANCE(157); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(157); + if (lookahead == 'p') ADVANCE(159); END_STATE(); case 106: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'c') ADVANCE(160); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(158); + if (lookahead == 'a') ADVANCE(161); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_ref); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 110: - if (lookahead == 'u') ADVANCE(159); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == '_') ADVANCE(163); + if (lookahead == 'h') ADVANCE(164); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_raw); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 'u') ADVANCE(165); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(165); + if (lookahead == 'f') ADVANCE(166); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 't') ADVANCE(167); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(169); END_STATE(); case 120: - if (lookahead == '8') ADVANCE(168); + if (lookahead == 'e') ADVANCE(170); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'i') ADVANCE(171); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 124: - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'e') ADVANCE(173); END_STATE(); case 125: - if (lookahead == 'a') ADVANCE(170); + if (lookahead == '8') ADVANCE(174); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 127: - if (lookahead == 'z') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_vis); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 129: - if (lookahead == 'r') ADVANCE(172); + if (lookahead == 'o') ADVANCE(175); END_STATE(); case 130: - if (lookahead == 'l') ADVANCE(173); + if (lookahead == 'a') ADVANCE(176); END_STATE(); case 131: - if (lookahead == 'l') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 132: - if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'z') ADVANCE(177); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 134: - if (lookahead == 'k') ADVANCE(177); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'l') ADVANCE(179); END_STATE(); case 136: - if (lookahead == 'k') ADVANCE(178); + if (lookahead == 'l') ADVANCE(180); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'c') ADVANCE(181); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 't') ADVANCE(182); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(180); + if (lookahead == 'k') ADVANCE(183); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 141: - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'k') ADVANCE(184); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_expr); + if (lookahead == 'i') ADVANCE(186); END_STATE(); case 145: - if (lookahead == 'r') ADVANCE(183); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'u') ADVANCE(188); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_i128); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_impl); + ACCEPT_TOKEN(anon_sym_expr); + if (lookahead == '_') ADVANCE(189); END_STATE(); case 150: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'r') ADVANCE(190); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 153: - if (lookahead == 'r') ADVANCE(188); + if (lookahead == 't') ADVANCE(192); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 155: - if (lookahead == 'h') ADVANCE(189); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_meta); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_move); + if (lookahead == 't') ADVANCE(194); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_path); + if (lookahead == 'r') ADVANCE(195); END_STATE(); case 159: - if (lookahead == 'r') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 160: - ACCEPT_TOKEN(sym_self); + if (lookahead == 'h') ADVANCE(196); END_STATE(); case 161: - if (lookahead == 'i') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_stmt); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 163: - if (lookahead == 'c') ADVANCE(192); + if (lookahead == 'p') ADVANCE(197); END_STATE(); case 164: - if (lookahead == 'r') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(194); + if (lookahead == 'r') ADVANCE(198); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(sym_self); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'i') ADVANCE(199); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_u128); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 169: - if (lookahead == 'n') ADVANCE(195); + if (lookahead == 'c') ADVANCE(200); END_STATE(); case 170: - if (lookahead == 'f') ADVANCE(196); + if (lookahead == 'r') ADVANCE(201); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 't') ADVANCE(202); END_STATE(); case 172: - if (lookahead == 'e') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 173: - if (lookahead == 'e') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 174: - if (lookahead == 'd') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'f') ADVANCE(204); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'e') ADVANCE(205); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'd') ADVANCE(208); END_STATE(); case 181: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 182: - if (lookahead == 'l') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_ident); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 'n') ADVANCE(209); END_STATE(); case 187: - if (lookahead == 'i') ADVANCE(204); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 188: - if (lookahead == 'a') ADVANCE(205); + if (lookahead == 'l') ADVANCE(210); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == '2') ADVANCE(211); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(206); + if (lookahead == 'n') ADVANCE(212); END_STATE(); case 191: - if (lookahead == 'c') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 193: - ACCEPT_TOKEN(sym_super); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'i') ADVANCE(213); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'a') ADVANCE(214); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(209); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == 'a') ADVANCE(215); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_where); + if (lookahead == 'n') ADVANCE(216); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'c') ADVANCE(217); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 't') ADVANCE(218); END_STATE(); case 201: - if (lookahead == 'u') ADVANCE(210); + ACCEPT_TOKEN(sym_super); END_STATE(); case 202: - if (lookahead == 't') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 204: - if (lookahead == 'm') ADVANCE(212); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 205: - if (lookahead == 'l') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_unsafe); + if (lookahead == 'u') ADVANCE(220); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(214); + if (lookahead == 't') ADVANCE(221); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == '0') ADVANCE(222); END_STATE(); case 212: - if (lookahead == 'e') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_literal); + if (lookahead == 'm') ADVANCE(223); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'l') ADVANCE(224); END_STATE(); case 215: + if (lookahead == 'r') ADVANCE(225); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_unsafe); + END_STATE(); + case 220: + if (lookahead == 'e') ADVANCE(226); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 222: + if (lookahead == '2') ADVANCE(227); + END_STATE(); + case 223: + if (lookahead == 'e') ADVANCE(228); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 225: + if (lookahead == 'a') ADVANCE(229); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 227: + if (lookahead == '1') ADVANCE(230); + END_STATE(); + case 228: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); + case 229: + if (lookahead == 'm') ADVANCE(231); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_expr_2021); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_pat_param); + END_STATE(); default: return false; } } -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 = 70, .external_lex_state = 2}, - [2] = {.lex_state = 71, .external_lex_state = 2}, - [3] = {.lex_state = 71, .external_lex_state = 2}, - [4] = {.lex_state = 71, .external_lex_state = 2}, - [5] = {.lex_state = 71, .external_lex_state = 2}, - [6] = {.lex_state = 71, .external_lex_state = 2}, - [7] = {.lex_state = 71, .external_lex_state = 2}, - [8] = {.lex_state = 71, .external_lex_state = 2}, - [9] = {.lex_state = 71, .external_lex_state = 2}, - [10] = {.lex_state = 71, .external_lex_state = 2}, - [11] = {.lex_state = 71, .external_lex_state = 2}, - [12] = {.lex_state = 71, .external_lex_state = 2}, - [13] = {.lex_state = 71, .external_lex_state = 2}, - [14] = {.lex_state = 71, .external_lex_state = 2}, - [15] = {.lex_state = 71, .external_lex_state = 2}, - [16] = {.lex_state = 71, .external_lex_state = 2}, - [17] = {.lex_state = 71, .external_lex_state = 2}, - [18] = {.lex_state = 71, .external_lex_state = 2}, - [19] = {.lex_state = 71, .external_lex_state = 2}, - [20] = {.lex_state = 71, .external_lex_state = 2}, - [21] = {.lex_state = 71, .external_lex_state = 2}, - [22] = {.lex_state = 71, .external_lex_state = 2}, - [23] = {.lex_state = 71, .external_lex_state = 2}, - [24] = {.lex_state = 71, .external_lex_state = 2}, - [25] = {.lex_state = 71, .external_lex_state = 2}, - [26] = {.lex_state = 71, .external_lex_state = 2}, - [27] = {.lex_state = 71, .external_lex_state = 2}, - [28] = {.lex_state = 71, .external_lex_state = 2}, - [29] = {.lex_state = 71, .external_lex_state = 2}, - [30] = {.lex_state = 71, .external_lex_state = 2}, - [31] = {.lex_state = 71, .external_lex_state = 2}, - [32] = {.lex_state = 71, .external_lex_state = 2}, - [33] = {.lex_state = 71, .external_lex_state = 2}, - [34] = {.lex_state = 71, .external_lex_state = 2}, - [35] = {.lex_state = 3, .external_lex_state = 2}, - [36] = {.lex_state = 3, .external_lex_state = 2}, - [37] = {.lex_state = 3, .external_lex_state = 2}, - [38] = {.lex_state = 3, .external_lex_state = 2}, - [39] = {.lex_state = 3, .external_lex_state = 2}, - [40] = {.lex_state = 3, .external_lex_state = 2}, - [41] = {.lex_state = 3, .external_lex_state = 2}, - [42] = {.lex_state = 3, .external_lex_state = 2}, - [43] = {.lex_state = 5, .external_lex_state = 2}, - [44] = {.lex_state = 3, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, - [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 5, .external_lex_state = 2}, - [50] = {.lex_state = 5, .external_lex_state = 2}, + [1] = {.lex_state = 72, .external_lex_state = 2}, + [2] = {.lex_state = 73, .external_lex_state = 2}, + [3] = {.lex_state = 73, .external_lex_state = 2}, + [4] = {.lex_state = 73, .external_lex_state = 2}, + [5] = {.lex_state = 73, .external_lex_state = 2}, + [6] = {.lex_state = 73, .external_lex_state = 2}, + [7] = {.lex_state = 73, .external_lex_state = 2}, + [8] = {.lex_state = 73, .external_lex_state = 2}, + [9] = {.lex_state = 73, .external_lex_state = 2}, + [10] = {.lex_state = 73, .external_lex_state = 2}, + [11] = {.lex_state = 73, .external_lex_state = 2}, + [12] = {.lex_state = 73, .external_lex_state = 2}, + [13] = {.lex_state = 73, .external_lex_state = 2}, + [14] = {.lex_state = 73, .external_lex_state = 2}, + [15] = {.lex_state = 73, .external_lex_state = 2}, + [16] = {.lex_state = 73, .external_lex_state = 2}, + [17] = {.lex_state = 73, .external_lex_state = 2}, + [18] = {.lex_state = 73, .external_lex_state = 2}, + [19] = {.lex_state = 73, .external_lex_state = 2}, + [20] = {.lex_state = 73, .external_lex_state = 2}, + [21] = {.lex_state = 73, .external_lex_state = 2}, + [22] = {.lex_state = 73, .external_lex_state = 2}, + [23] = {.lex_state = 73, .external_lex_state = 2}, + [24] = {.lex_state = 73, .external_lex_state = 2}, + [25] = {.lex_state = 73, .external_lex_state = 2}, + [26] = {.lex_state = 73, .external_lex_state = 2}, + [27] = {.lex_state = 73, .external_lex_state = 2}, + [28] = {.lex_state = 73, .external_lex_state = 2}, + [29] = {.lex_state = 73, .external_lex_state = 2}, + [30] = {.lex_state = 73, .external_lex_state = 2}, + [31] = {.lex_state = 73, .external_lex_state = 2}, + [32] = {.lex_state = 73, .external_lex_state = 2}, + [33] = {.lex_state = 73, .external_lex_state = 2}, + [34] = {.lex_state = 73, .external_lex_state = 2}, + [35] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 5, .external_lex_state = 2}, + [37] = {.lex_state = 5, .external_lex_state = 2}, + [38] = {.lex_state = 5, .external_lex_state = 2}, + [39] = {.lex_state = 5, .external_lex_state = 2}, + [40] = {.lex_state = 5, .external_lex_state = 2}, + [41] = {.lex_state = 5, .external_lex_state = 2}, + [42] = {.lex_state = 5, .external_lex_state = 2}, + [43] = {.lex_state = 7, .external_lex_state = 2}, + [44] = {.lex_state = 7, .external_lex_state = 2}, + [45] = {.lex_state = 7, .external_lex_state = 2}, + [46] = {.lex_state = 7, .external_lex_state = 2}, + [47] = {.lex_state = 7, .external_lex_state = 2}, + [48] = {.lex_state = 7, .external_lex_state = 2}, + [49] = {.lex_state = 7, .external_lex_state = 2}, + [50] = {.lex_state = 7, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 3, .external_lex_state = 2}, - [53] = {.lex_state = 3, .external_lex_state = 2}, - [54] = {.lex_state = 3, .external_lex_state = 2}, - [55] = {.lex_state = 3, .external_lex_state = 2}, - [56] = {.lex_state = 3, .external_lex_state = 2}, - [57] = {.lex_state = 3, .external_lex_state = 2}, - [58] = {.lex_state = 3, .external_lex_state = 2}, - [59] = {.lex_state = 3, .external_lex_state = 2}, - [60] = {.lex_state = 3, .external_lex_state = 2}, - [61] = {.lex_state = 3, .external_lex_state = 2}, - [62] = {.lex_state = 3, .external_lex_state = 2}, - [63] = {.lex_state = 3, .external_lex_state = 2}, - [64] = {.lex_state = 3, .external_lex_state = 2}, - [65] = {.lex_state = 3, .external_lex_state = 2}, - [66] = {.lex_state = 3, .external_lex_state = 2}, - [67] = {.lex_state = 2, .external_lex_state = 2}, - [68] = {.lex_state = 2, .external_lex_state = 2}, - [69] = {.lex_state = 2, .external_lex_state = 2}, - [70] = {.lex_state = 2, .external_lex_state = 2}, - [71] = {.lex_state = 2, .external_lex_state = 2}, - [72] = {.lex_state = 2, .external_lex_state = 2}, - [73] = {.lex_state = 2, .external_lex_state = 2}, - [74] = {.lex_state = 2, .external_lex_state = 2}, - [75] = {.lex_state = 2, .external_lex_state = 2}, - [76] = {.lex_state = 2, .external_lex_state = 2}, - [77] = {.lex_state = 2, .external_lex_state = 2}, - [78] = {.lex_state = 2, .external_lex_state = 2}, - [79] = {.lex_state = 2, .external_lex_state = 2}, - [80] = {.lex_state = 2, .external_lex_state = 2}, - [81] = {.lex_state = 2, .external_lex_state = 2}, - [82] = {.lex_state = 2, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, - [84] = {.lex_state = 4, .external_lex_state = 2}, - [85] = {.lex_state = 2, .external_lex_state = 2}, - [86] = {.lex_state = 2, .external_lex_state = 2}, - [87] = {.lex_state = 2, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, - [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 2, .external_lex_state = 2}, - [91] = {.lex_state = 4, .external_lex_state = 2}, - [92] = {.lex_state = 4, .external_lex_state = 2}, - [93] = {.lex_state = 4, .external_lex_state = 2}, - [94] = {.lex_state = 4, .external_lex_state = 2}, - [95] = {.lex_state = 4, .external_lex_state = 2}, - [96] = {.lex_state = 4, .external_lex_state = 2}, - [97] = {.lex_state = 4, .external_lex_state = 2}, - [98] = {.lex_state = 4, .external_lex_state = 2}, - [99] = {.lex_state = 2, .external_lex_state = 2}, - [100] = {.lex_state = 2, .external_lex_state = 2}, - [101] = {.lex_state = 2, .external_lex_state = 2}, - [102] = {.lex_state = 2, .external_lex_state = 2}, - [103] = {.lex_state = 2, .external_lex_state = 2}, - [104] = {.lex_state = 2, .external_lex_state = 2}, - [105] = {.lex_state = 4, .external_lex_state = 2}, - [106] = {.lex_state = 4, .external_lex_state = 2}, - [107] = {.lex_state = 4, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, + [53] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 5, .external_lex_state = 2}, + [55] = {.lex_state = 5, .external_lex_state = 2}, + [56] = {.lex_state = 5, .external_lex_state = 2}, + [57] = {.lex_state = 5, .external_lex_state = 2}, + [58] = {.lex_state = 5, .external_lex_state = 2}, + [59] = {.lex_state = 5, .external_lex_state = 2}, + [60] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 5, .external_lex_state = 2}, + [62] = {.lex_state = 5, .external_lex_state = 2}, + [63] = {.lex_state = 5, .external_lex_state = 2}, + [64] = {.lex_state = 5, .external_lex_state = 2}, + [65] = {.lex_state = 5, .external_lex_state = 2}, + [66] = {.lex_state = 5, .external_lex_state = 2}, + [67] = {.lex_state = 4, .external_lex_state = 2}, + [68] = {.lex_state = 4, .external_lex_state = 2}, + [69] = {.lex_state = 4, .external_lex_state = 2}, + [70] = {.lex_state = 4, .external_lex_state = 2}, + [71] = {.lex_state = 4, .external_lex_state = 2}, + [72] = {.lex_state = 4, .external_lex_state = 2}, + [73] = {.lex_state = 4, .external_lex_state = 2}, + [74] = {.lex_state = 4, .external_lex_state = 2}, + [75] = {.lex_state = 4, .external_lex_state = 2}, + [76] = {.lex_state = 4, .external_lex_state = 2}, + [77] = {.lex_state = 4, .external_lex_state = 2}, + [78] = {.lex_state = 4, .external_lex_state = 2}, + [79] = {.lex_state = 4, .external_lex_state = 2}, + [80] = {.lex_state = 4, .external_lex_state = 2}, + [81] = {.lex_state = 4, .external_lex_state = 2}, + [82] = {.lex_state = 4, .external_lex_state = 2}, + [83] = {.lex_state = 6, .external_lex_state = 2}, + [84] = {.lex_state = 6, .external_lex_state = 2}, + [85] = {.lex_state = 4, .external_lex_state = 2}, + [86] = {.lex_state = 4, .external_lex_state = 2}, + [87] = {.lex_state = 6, .external_lex_state = 2}, + [88] = {.lex_state = 6, .external_lex_state = 2}, + [89] = {.lex_state = 6, .external_lex_state = 2}, + [90] = {.lex_state = 6, .external_lex_state = 2}, + [91] = {.lex_state = 6, .external_lex_state = 2}, + [92] = {.lex_state = 6, .external_lex_state = 2}, + [93] = {.lex_state = 6, .external_lex_state = 2}, + [94] = {.lex_state = 6, .external_lex_state = 2}, + [95] = {.lex_state = 6, .external_lex_state = 2}, + [96] = {.lex_state = 6, .external_lex_state = 2}, + [97] = {.lex_state = 6, .external_lex_state = 2}, + [98] = {.lex_state = 6, .external_lex_state = 2}, + [99] = {.lex_state = 4, .external_lex_state = 2}, + [100] = {.lex_state = 4, .external_lex_state = 2}, + [101] = {.lex_state = 4, .external_lex_state = 2}, + [102] = {.lex_state = 4, .external_lex_state = 2}, + [103] = {.lex_state = 4, .external_lex_state = 2}, + [104] = {.lex_state = 4, .external_lex_state = 2}, + [105] = {.lex_state = 6, .external_lex_state = 2}, + [106] = {.lex_state = 6, .external_lex_state = 2}, + [107] = {.lex_state = 6, .external_lex_state = 2}, [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, - [111] = {.lex_state = 4, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 4, .external_lex_state = 2}, - [114] = {.lex_state = 4, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, - [116] = {.lex_state = 4, .external_lex_state = 2}, + [109] = {.lex_state = 6, .external_lex_state = 2}, + [110] = {.lex_state = 6, .external_lex_state = 2}, + [111] = {.lex_state = 6, .external_lex_state = 2}, + [112] = {.lex_state = 6, .external_lex_state = 2}, + [113] = {.lex_state = 6, .external_lex_state = 2}, + [114] = {.lex_state = 6, .external_lex_state = 2}, + [115] = {.lex_state = 6, .external_lex_state = 2}, + [116] = {.lex_state = 6, .external_lex_state = 2}, [117] = {.lex_state = 4, .external_lex_state = 2}, [118] = {.lex_state = 4, .external_lex_state = 2}, - [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 4, .external_lex_state = 2}, + [119] = {.lex_state = 6, .external_lex_state = 2}, + [120] = {.lex_state = 6, .external_lex_state = 2}, + [121] = {.lex_state = 6, .external_lex_state = 2}, [122] = {.lex_state = 4, .external_lex_state = 2}, - [123] = {.lex_state = 4, .external_lex_state = 2}, - [124] = {.lex_state = 4, .external_lex_state = 2}, - [125] = {.lex_state = 4, .external_lex_state = 2}, - [126] = {.lex_state = 4, .external_lex_state = 2}, - [127] = {.lex_state = 4, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 2, .external_lex_state = 2}, - [131] = {.lex_state = 2, .external_lex_state = 2}, - [132] = {.lex_state = 2, .external_lex_state = 2}, - [133] = {.lex_state = 4, .external_lex_state = 2}, - [134] = {.lex_state = 2, .external_lex_state = 2}, - [135] = {.lex_state = 2, .external_lex_state = 2}, - [136] = {.lex_state = 2, .external_lex_state = 2}, - [137] = {.lex_state = 2, .external_lex_state = 2}, - [138] = {.lex_state = 2, .external_lex_state = 2}, - [139] = {.lex_state = 2, .external_lex_state = 2}, - [140] = {.lex_state = 11, .external_lex_state = 2}, - [141] = {.lex_state = 2, .external_lex_state = 2}, - [142] = {.lex_state = 2, .external_lex_state = 2}, - [143] = {.lex_state = 2, .external_lex_state = 2}, - [144] = {.lex_state = 2, .external_lex_state = 2}, - [145] = {.lex_state = 11, .external_lex_state = 2}, - [146] = {.lex_state = 11, .external_lex_state = 2}, - [147] = {.lex_state = 2, .external_lex_state = 2}, - [148] = {.lex_state = 2, .external_lex_state = 2}, - [149] = {.lex_state = 2, .external_lex_state = 2}, + [123] = {.lex_state = 6, .external_lex_state = 2}, + [124] = {.lex_state = 6, .external_lex_state = 2}, + [125] = {.lex_state = 6, .external_lex_state = 2}, + [126] = {.lex_state = 6, .external_lex_state = 2}, + [127] = {.lex_state = 6, .external_lex_state = 2}, + [128] = {.lex_state = 6, .external_lex_state = 2}, + [129] = {.lex_state = 6, .external_lex_state = 2}, + [130] = {.lex_state = 6, .external_lex_state = 2}, + [131] = {.lex_state = 4, .external_lex_state = 2}, + [132] = {.lex_state = 4, .external_lex_state = 2}, + [133] = {.lex_state = 6, .external_lex_state = 2}, + [134] = {.lex_state = 13, .external_lex_state = 2}, + [135] = {.lex_state = 13, .external_lex_state = 2}, + [136] = {.lex_state = 13, .external_lex_state = 2}, + [137] = {.lex_state = 13, .external_lex_state = 2}, + [138] = {.lex_state = 13, .external_lex_state = 2}, + [139] = {.lex_state = 13, .external_lex_state = 2}, + [140] = {.lex_state = 4, .external_lex_state = 2}, + [141] = {.lex_state = 13, .external_lex_state = 2}, + [142] = {.lex_state = 4, .external_lex_state = 2}, + [143] = {.lex_state = 13, .external_lex_state = 2}, + [144] = {.lex_state = 4, .external_lex_state = 2}, + [145] = {.lex_state = 13, .external_lex_state = 2}, + [146] = {.lex_state = 13, .external_lex_state = 2}, + [147] = {.lex_state = 6, .external_lex_state = 2}, + [148] = {.lex_state = 4, .external_lex_state = 2}, + [149] = {.lex_state = 4, .external_lex_state = 2}, [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 11, .external_lex_state = 2}, - [152] = {.lex_state = 2, .external_lex_state = 2}, - [153] = {.lex_state = 2, .external_lex_state = 2}, - [154] = {.lex_state = 2, .external_lex_state = 2}, - [155] = {.lex_state = 11, .external_lex_state = 2}, - [156] = {.lex_state = 2, .external_lex_state = 2}, - [157] = {.lex_state = 2, .external_lex_state = 2}, - [158] = {.lex_state = 11, .external_lex_state = 2}, - [159] = {.lex_state = 2, .external_lex_state = 2}, + [151] = {.lex_state = 13, .external_lex_state = 2}, + [152] = {.lex_state = 13, .external_lex_state = 2}, + [153] = {.lex_state = 13, .external_lex_state = 2}, + [154] = {.lex_state = 4, .external_lex_state = 2}, + [155] = {.lex_state = 4, .external_lex_state = 2}, + [156] = {.lex_state = 4, .external_lex_state = 2}, + [157] = {.lex_state = 13, .external_lex_state = 2}, + [158] = {.lex_state = 4, .external_lex_state = 2}, + [159] = {.lex_state = 4, .external_lex_state = 2}, [160] = {.lex_state = 4, .external_lex_state = 2}, - [161] = {.lex_state = 11, .external_lex_state = 2}, - [162] = {.lex_state = 2, .external_lex_state = 2}, - [163] = {.lex_state = 11, .external_lex_state = 2}, - [164] = {.lex_state = 2, .external_lex_state = 2}, - [165] = {.lex_state = 2, .external_lex_state = 2}, - [166] = {.lex_state = 2, .external_lex_state = 2}, - [167] = {.lex_state = 2, .external_lex_state = 2}, - [168] = {.lex_state = 2, .external_lex_state = 2}, - [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 4, .external_lex_state = 2}, - [174] = {.lex_state = 11, .external_lex_state = 2}, + [161] = {.lex_state = 4, .external_lex_state = 2}, + [162] = {.lex_state = 13, .external_lex_state = 2}, + [163] = {.lex_state = 4, .external_lex_state = 2}, + [164] = {.lex_state = 13, .external_lex_state = 2}, + [165] = {.lex_state = 13, .external_lex_state = 2}, + [166] = {.lex_state = 13, .external_lex_state = 2}, + [167] = {.lex_state = 13, .external_lex_state = 2}, + [168] = {.lex_state = 13, .external_lex_state = 2}, + [169] = {.lex_state = 4, .external_lex_state = 2}, + [170] = {.lex_state = 6, .external_lex_state = 2}, + [171] = {.lex_state = 4, .external_lex_state = 2}, + [172] = {.lex_state = 13, .external_lex_state = 2}, + [173] = {.lex_state = 13, .external_lex_state = 2}, + [174] = {.lex_state = 4, .external_lex_state = 2}, [175] = {.lex_state = 4, .external_lex_state = 2}, [176] = {.lex_state = 4, .external_lex_state = 2}, - [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 11, .external_lex_state = 2}, + [177] = {.lex_state = 13, .external_lex_state = 2}, + [178] = {.lex_state = 13, .external_lex_state = 2}, + [179] = {.lex_state = 13, .external_lex_state = 2}, [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, - [182] = {.lex_state = 11, .external_lex_state = 2}, + [181] = {.lex_state = 13, .external_lex_state = 2}, + [182] = {.lex_state = 13, .external_lex_state = 2}, [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 4, .external_lex_state = 2}, + [184] = {.lex_state = 13, .external_lex_state = 2}, [185] = {.lex_state = 4, .external_lex_state = 2}, - [186] = {.lex_state = 11, .external_lex_state = 2}, - [187] = {.lex_state = 11, .external_lex_state = 2}, - [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 11, .external_lex_state = 2}, - [190] = {.lex_state = 11, .external_lex_state = 2}, - [191] = {.lex_state = 11, .external_lex_state = 2}, - [192] = {.lex_state = 11, .external_lex_state = 2}, - [193] = {.lex_state = 11, .external_lex_state = 2}, - [194] = {.lex_state = 11, .external_lex_state = 2}, - [195] = {.lex_state = 11, .external_lex_state = 2}, - [196] = {.lex_state = 11, .external_lex_state = 2}, - [197] = {.lex_state = 11, .external_lex_state = 2}, - [198] = {.lex_state = 11, .external_lex_state = 2}, - [199] = {.lex_state = 11, .external_lex_state = 2}, - [200] = {.lex_state = 11, .external_lex_state = 2}, - [201] = {.lex_state = 11, .external_lex_state = 2}, - [202] = {.lex_state = 11, .external_lex_state = 2}, - [203] = {.lex_state = 11, .external_lex_state = 2}, - [204] = {.lex_state = 11, .external_lex_state = 2}, - [205] = {.lex_state = 11, .external_lex_state = 2}, - [206] = {.lex_state = 11, .external_lex_state = 2}, - [207] = {.lex_state = 11, .external_lex_state = 2}, - [208] = {.lex_state = 4, .external_lex_state = 2}, - [209] = {.lex_state = 11, .external_lex_state = 2}, - [210] = {.lex_state = 11, .external_lex_state = 2}, - [211] = {.lex_state = 11, .external_lex_state = 2}, - [212] = {.lex_state = 11, .external_lex_state = 2}, - [213] = {.lex_state = 11, .external_lex_state = 2}, - [214] = {.lex_state = 11, .external_lex_state = 2}, - [215] = {.lex_state = 11, .external_lex_state = 2}, - [216] = {.lex_state = 11, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 11, .external_lex_state = 2}, - [219] = {.lex_state = 11, .external_lex_state = 2}, - [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 11, .external_lex_state = 2}, - [222] = {.lex_state = 11, .external_lex_state = 2}, - [223] = {.lex_state = 11, .external_lex_state = 2}, - [224] = {.lex_state = 13, .external_lex_state = 2}, + [186] = {.lex_state = 4, .external_lex_state = 2}, + [187] = {.lex_state = 4, .external_lex_state = 2}, + [188] = {.lex_state = 13, .external_lex_state = 2}, + [189] = {.lex_state = 13, .external_lex_state = 2}, + [190] = {.lex_state = 13, .external_lex_state = 2}, + [191] = {.lex_state = 13, .external_lex_state = 2}, + [192] = {.lex_state = 13, .external_lex_state = 2}, + [193] = {.lex_state = 13, .external_lex_state = 2}, + [194] = {.lex_state = 13, .external_lex_state = 2}, + [195] = {.lex_state = 13, .external_lex_state = 2}, + [196] = {.lex_state = 13, .external_lex_state = 2}, + [197] = {.lex_state = 4, .external_lex_state = 2}, + [198] = {.lex_state = 6, .external_lex_state = 2}, + [199] = {.lex_state = 13, .external_lex_state = 2}, + [200] = {.lex_state = 6, .external_lex_state = 2}, + [201] = {.lex_state = 13, .external_lex_state = 2}, + [202] = {.lex_state = 6, .external_lex_state = 2}, + [203] = {.lex_state = 6, .external_lex_state = 2}, + [204] = {.lex_state = 6, .external_lex_state = 2}, + [205] = {.lex_state = 6, .external_lex_state = 2}, + [206] = {.lex_state = 6, .external_lex_state = 2}, + [207] = {.lex_state = 6, .external_lex_state = 2}, + [208] = {.lex_state = 6, .external_lex_state = 2}, + [209] = {.lex_state = 13, .external_lex_state = 2}, + [210] = {.lex_state = 6, .external_lex_state = 2}, + [211] = {.lex_state = 13, .external_lex_state = 2}, + [212] = {.lex_state = 6, .external_lex_state = 2}, + [213] = {.lex_state = 13, .external_lex_state = 2}, + [214] = {.lex_state = 13, .external_lex_state = 2}, + [215] = {.lex_state = 15, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, + [217] = {.lex_state = 15, .external_lex_state = 2}, + [218] = {.lex_state = 13, .external_lex_state = 2}, + [219] = {.lex_state = 15, .external_lex_state = 2}, + [220] = {.lex_state = 15, .external_lex_state = 2}, + [221] = {.lex_state = 13, .external_lex_state = 2}, + [222] = {.lex_state = 13, .external_lex_state = 2}, + [223] = {.lex_state = 13, .external_lex_state = 2}, + [224] = {.lex_state = 15, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 11, .external_lex_state = 2}, - [227] = {.lex_state = 11, .external_lex_state = 2}, - [228] = {.lex_state = 13, .external_lex_state = 2}, - [229] = {.lex_state = 11, .external_lex_state = 2}, + [226] = {.lex_state = 15, .external_lex_state = 2}, + [227] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 15, .external_lex_state = 2}, + [229] = {.lex_state = 12, .external_lex_state = 2}, [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, - [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 13, .external_lex_state = 2}, - [235] = {.lex_state = 13, .external_lex_state = 2}, - [236] = {.lex_state = 13, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, - [238] = {.lex_state = 11, .external_lex_state = 2}, + [231] = {.lex_state = 12, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 15, .external_lex_state = 2}, + [234] = {.lex_state = 15, .external_lex_state = 2}, + [235] = {.lex_state = 12, .external_lex_state = 2}, + [236] = {.lex_state = 15, .external_lex_state = 2}, + [237] = {.lex_state = 12, .external_lex_state = 2}, + [238] = {.lex_state = 13, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, - [240] = {.lex_state = 11, .external_lex_state = 2}, + [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 11, .external_lex_state = 2}, - [243] = {.lex_state = 11, .external_lex_state = 2}, - [244] = {.lex_state = 69, .external_lex_state = 2}, - [245] = {.lex_state = 11, .external_lex_state = 2}, - [246] = {.lex_state = 11, .external_lex_state = 2}, - [247] = {.lex_state = 11, .external_lex_state = 2}, - [248] = {.lex_state = 11, .external_lex_state = 2}, - [249] = {.lex_state = 11, .external_lex_state = 2}, - [250] = {.lex_state = 11, .external_lex_state = 2}, - [251] = {.lex_state = 11, .external_lex_state = 2}, - [252] = {.lex_state = 11, .external_lex_state = 2}, - [253] = {.lex_state = 11, .external_lex_state = 2}, - [254] = {.lex_state = 11, .external_lex_state = 2}, - [255] = {.lex_state = 11, .external_lex_state = 2}, - [256] = {.lex_state = 11, .external_lex_state = 2}, - [257] = {.lex_state = 11, .external_lex_state = 2}, - [258] = {.lex_state = 11, .external_lex_state = 2}, - [259] = {.lex_state = 11, .external_lex_state = 2}, - [260] = {.lex_state = 11, .external_lex_state = 2}, - [261] = {.lex_state = 69, .external_lex_state = 2}, - [262] = {.lex_state = 11, .external_lex_state = 2}, - [263] = {.lex_state = 11, .external_lex_state = 2}, - [264] = {.lex_state = 11, .external_lex_state = 2}, - [265] = {.lex_state = 11, .external_lex_state = 2}, - [266] = {.lex_state = 11, .external_lex_state = 2}, - [267] = {.lex_state = 11, .external_lex_state = 2}, - [268] = {.lex_state = 11, .external_lex_state = 2}, - [269] = {.lex_state = 11, .external_lex_state = 2}, - [270] = {.lex_state = 11, .external_lex_state = 2}, - [271] = {.lex_state = 11, .external_lex_state = 2}, - [272] = {.lex_state = 11, .external_lex_state = 2}, - [273] = {.lex_state = 11, .external_lex_state = 2}, - [274] = {.lex_state = 11, .external_lex_state = 2}, - [275] = {.lex_state = 11, .external_lex_state = 2}, - [276] = {.lex_state = 11, .external_lex_state = 2}, - [277] = {.lex_state = 11, .external_lex_state = 2}, - [278] = {.lex_state = 11, .external_lex_state = 2}, - [279] = {.lex_state = 11, .external_lex_state = 2}, - [280] = {.lex_state = 11, .external_lex_state = 2}, - [281] = {.lex_state = 11, .external_lex_state = 2}, - [282] = {.lex_state = 11, .external_lex_state = 2}, - [283] = {.lex_state = 11, .external_lex_state = 2}, - [284] = {.lex_state = 11, .external_lex_state = 2}, - [285] = {.lex_state = 11, .external_lex_state = 2}, - [286] = {.lex_state = 11, .external_lex_state = 2}, - [287] = {.lex_state = 11, .external_lex_state = 2}, - [288] = {.lex_state = 11, .external_lex_state = 2}, - [289] = {.lex_state = 11, .external_lex_state = 2}, - [290] = {.lex_state = 11, .external_lex_state = 2}, - [291] = {.lex_state = 11, .external_lex_state = 2}, - [292] = {.lex_state = 11, .external_lex_state = 2}, - [293] = {.lex_state = 11, .external_lex_state = 2}, - [294] = {.lex_state = 11, .external_lex_state = 2}, - [295] = {.lex_state = 11, .external_lex_state = 2}, - [296] = {.lex_state = 11, .external_lex_state = 2}, - [297] = {.lex_state = 11, .external_lex_state = 2}, - [298] = {.lex_state = 11, .external_lex_state = 2}, - [299] = {.lex_state = 11, .external_lex_state = 2}, - [300] = {.lex_state = 11, .external_lex_state = 2}, - [301] = {.lex_state = 11, .external_lex_state = 2}, - [302] = {.lex_state = 11, .external_lex_state = 2}, - [303] = {.lex_state = 11, .external_lex_state = 2}, - [304] = {.lex_state = 11, .external_lex_state = 2}, - [305] = {.lex_state = 11, .external_lex_state = 2}, - [306] = {.lex_state = 11, .external_lex_state = 2}, - [307] = {.lex_state = 11, .external_lex_state = 2}, - [308] = {.lex_state = 11, .external_lex_state = 2}, - [309] = {.lex_state = 11, .external_lex_state = 2}, - [310] = {.lex_state = 11, .external_lex_state = 2}, - [311] = {.lex_state = 11, .external_lex_state = 2}, - [312] = {.lex_state = 11, .external_lex_state = 2}, - [313] = {.lex_state = 11, .external_lex_state = 2}, - [314] = {.lex_state = 11, .external_lex_state = 2}, - [315] = {.lex_state = 11, .external_lex_state = 2}, - [316] = {.lex_state = 11, .external_lex_state = 2}, - [317] = {.lex_state = 11, .external_lex_state = 2}, - [318] = {.lex_state = 11, .external_lex_state = 2}, - [319] = {.lex_state = 11, .external_lex_state = 2}, - [320] = {.lex_state = 11, .external_lex_state = 2}, - [321] = {.lex_state = 11, .external_lex_state = 2}, - [322] = {.lex_state = 11, .external_lex_state = 2}, - [323] = {.lex_state = 69, .external_lex_state = 2}, - [324] = {.lex_state = 11, .external_lex_state = 2}, - [325] = {.lex_state = 11, .external_lex_state = 2}, - [326] = {.lex_state = 11, .external_lex_state = 2}, - [327] = {.lex_state = 11, .external_lex_state = 2}, - [328] = {.lex_state = 11, .external_lex_state = 2}, - [329] = {.lex_state = 11, .external_lex_state = 2}, - [330] = {.lex_state = 11, .external_lex_state = 2}, - [331] = {.lex_state = 11, .external_lex_state = 2}, - [332] = {.lex_state = 11, .external_lex_state = 2}, - [333] = {.lex_state = 11, .external_lex_state = 2}, - [334] = {.lex_state = 11, .external_lex_state = 2}, - [335] = {.lex_state = 11, .external_lex_state = 2}, - [336] = {.lex_state = 69, .external_lex_state = 2}, - [337] = {.lex_state = 11, .external_lex_state = 2}, - [338] = {.lex_state = 69, .external_lex_state = 2}, - [339] = {.lex_state = 11, .external_lex_state = 2}, - [340] = {.lex_state = 11, .external_lex_state = 2}, - [341] = {.lex_state = 11, .external_lex_state = 2}, - [342] = {.lex_state = 11, .external_lex_state = 2}, - [343] = {.lex_state = 11, .external_lex_state = 2}, - [344] = {.lex_state = 11, .external_lex_state = 2}, - [345] = {.lex_state = 11, .external_lex_state = 2}, - [346] = {.lex_state = 11, .external_lex_state = 2}, - [347] = {.lex_state = 69, .external_lex_state = 2}, - [348] = {.lex_state = 11, .external_lex_state = 2}, - [349] = {.lex_state = 11, .external_lex_state = 2}, - [350] = {.lex_state = 11, .external_lex_state = 2}, - [351] = {.lex_state = 11, .external_lex_state = 2}, - [352] = {.lex_state = 11, .external_lex_state = 2}, - [353] = {.lex_state = 11, .external_lex_state = 2}, - [354] = {.lex_state = 11, .external_lex_state = 2}, - [355] = {.lex_state = 11, .external_lex_state = 2}, - [356] = {.lex_state = 11, .external_lex_state = 2}, - [357] = {.lex_state = 11, .external_lex_state = 2}, - [358] = {.lex_state = 11, .external_lex_state = 2}, - [359] = {.lex_state = 11, .external_lex_state = 2}, - [360] = {.lex_state = 11, .external_lex_state = 2}, - [361] = {.lex_state = 11, .external_lex_state = 2}, - [362] = {.lex_state = 11, .external_lex_state = 2}, - [363] = {.lex_state = 11, .external_lex_state = 2}, - [364] = {.lex_state = 11, .external_lex_state = 2}, - [365] = {.lex_state = 11, .external_lex_state = 2}, - [366] = {.lex_state = 11, .external_lex_state = 2}, - [367] = {.lex_state = 11, .external_lex_state = 2}, - [368] = {.lex_state = 11, .external_lex_state = 2}, - [369] = {.lex_state = 11, .external_lex_state = 2}, - [370] = {.lex_state = 11, .external_lex_state = 2}, - [371] = {.lex_state = 12, .external_lex_state = 2}, - [372] = {.lex_state = 69, .external_lex_state = 2}, - [373] = {.lex_state = 12, .external_lex_state = 2}, - [374] = {.lex_state = 69, .external_lex_state = 2}, - [375] = {.lex_state = 69, .external_lex_state = 2}, - [376] = {.lex_state = 69, .external_lex_state = 2}, - [377] = {.lex_state = 69, .external_lex_state = 2}, - [378] = {.lex_state = 12, .external_lex_state = 2}, - [379] = {.lex_state = 69, .external_lex_state = 2}, - [380] = {.lex_state = 69, .external_lex_state = 2}, - [381] = {.lex_state = 69, .external_lex_state = 2}, - [382] = {.lex_state = 69, .external_lex_state = 2}, - [383] = {.lex_state = 69, .external_lex_state = 2}, - [384] = {.lex_state = 69, .external_lex_state = 2}, - [385] = {.lex_state = 69, .external_lex_state = 2}, - [386] = {.lex_state = 69, .external_lex_state = 2}, - [387] = {.lex_state = 69, .external_lex_state = 2}, - [388] = {.lex_state = 69, .external_lex_state = 2}, - [389] = {.lex_state = 69, .external_lex_state = 2}, - [390] = {.lex_state = 12, .external_lex_state = 2}, - [391] = {.lex_state = 69, .external_lex_state = 2}, - [392] = {.lex_state = 69, .external_lex_state = 2}, - [393] = {.lex_state = 69, .external_lex_state = 2}, - [394] = {.lex_state = 69, .external_lex_state = 2}, - [395] = {.lex_state = 69, .external_lex_state = 2}, - [396] = {.lex_state = 12, .external_lex_state = 2}, - [397] = {.lex_state = 69, .external_lex_state = 2}, - [398] = {.lex_state = 12, .external_lex_state = 2}, - [399] = {.lex_state = 69, .external_lex_state = 2}, + [242] = {.lex_state = 12, .external_lex_state = 2}, + [243] = {.lex_state = 15, .external_lex_state = 2}, + [244] = {.lex_state = 15, .external_lex_state = 2}, + [245] = {.lex_state = 15, .external_lex_state = 2}, + [246] = {.lex_state = 13, .external_lex_state = 2}, + [247] = {.lex_state = 15, .external_lex_state = 2}, + [248] = {.lex_state = 15, .external_lex_state = 2}, + [249] = {.lex_state = 15, .external_lex_state = 2}, + [250] = {.lex_state = 13, .external_lex_state = 2}, + [251] = {.lex_state = 12, .external_lex_state = 2}, + [252] = {.lex_state = 13, .external_lex_state = 2}, + [253] = {.lex_state = 13, .external_lex_state = 2}, + [254] = {.lex_state = 15, .external_lex_state = 2}, + [255] = {.lex_state = 15, .external_lex_state = 2}, + [256] = {.lex_state = 15, .external_lex_state = 2}, + [257] = {.lex_state = 13, .external_lex_state = 2}, + [258] = {.lex_state = 12, .external_lex_state = 2}, + [259] = {.lex_state = 12, .external_lex_state = 2}, + [260] = {.lex_state = 12, .external_lex_state = 2}, + [261] = {.lex_state = 12, .external_lex_state = 2}, + [262] = {.lex_state = 12, .external_lex_state = 2}, + [263] = {.lex_state = 12, .external_lex_state = 2}, + [264] = {.lex_state = 12, .external_lex_state = 2}, + [265] = {.lex_state = 12, .external_lex_state = 2}, + [266] = {.lex_state = 12, .external_lex_state = 2}, + [267] = {.lex_state = 13, .external_lex_state = 2}, + [268] = {.lex_state = 13, .external_lex_state = 2}, + [269] = {.lex_state = 13, .external_lex_state = 2}, + [270] = {.lex_state = 13, .external_lex_state = 2}, + [271] = {.lex_state = 13, .external_lex_state = 2}, + [272] = {.lex_state = 13, .external_lex_state = 2}, + [273] = {.lex_state = 13, .external_lex_state = 2}, + [274] = {.lex_state = 13, .external_lex_state = 2}, + [275] = {.lex_state = 13, .external_lex_state = 2}, + [276] = {.lex_state = 13, .external_lex_state = 2}, + [277] = {.lex_state = 13, .external_lex_state = 2}, + [278] = {.lex_state = 13, .external_lex_state = 2}, + [279] = {.lex_state = 13, .external_lex_state = 2}, + [280] = {.lex_state = 13, .external_lex_state = 2}, + [281] = {.lex_state = 13, .external_lex_state = 2}, + [282] = {.lex_state = 13, .external_lex_state = 2}, + [283] = {.lex_state = 13, .external_lex_state = 2}, + [284] = {.lex_state = 13, .external_lex_state = 2}, + [285] = {.lex_state = 13, .external_lex_state = 2}, + [286] = {.lex_state = 13, .external_lex_state = 2}, + [287] = {.lex_state = 13, .external_lex_state = 2}, + [288] = {.lex_state = 13, .external_lex_state = 2}, + [289] = {.lex_state = 13, .external_lex_state = 2}, + [290] = {.lex_state = 71, .external_lex_state = 2}, + [291] = {.lex_state = 13, .external_lex_state = 2}, + [292] = {.lex_state = 13, .external_lex_state = 2}, + [293] = {.lex_state = 13, .external_lex_state = 2}, + [294] = {.lex_state = 13, .external_lex_state = 2}, + [295] = {.lex_state = 13, .external_lex_state = 2}, + [296] = {.lex_state = 13, .external_lex_state = 2}, + [297] = {.lex_state = 13, .external_lex_state = 2}, + [298] = {.lex_state = 13, .external_lex_state = 2}, + [299] = {.lex_state = 13, .external_lex_state = 2}, + [300] = {.lex_state = 13, .external_lex_state = 2}, + [301] = {.lex_state = 13, .external_lex_state = 2}, + [302] = {.lex_state = 13, .external_lex_state = 2}, + [303] = {.lex_state = 13, .external_lex_state = 2}, + [304] = {.lex_state = 13, .external_lex_state = 2}, + [305] = {.lex_state = 13, .external_lex_state = 2}, + [306] = {.lex_state = 13, .external_lex_state = 2}, + [307] = {.lex_state = 13, .external_lex_state = 2}, + [308] = {.lex_state = 13, .external_lex_state = 2}, + [309] = {.lex_state = 13, .external_lex_state = 2}, + [310] = {.lex_state = 13, .external_lex_state = 2}, + [311] = {.lex_state = 13, .external_lex_state = 2}, + [312] = {.lex_state = 13, .external_lex_state = 2}, + [313] = {.lex_state = 13, .external_lex_state = 2}, + [314] = {.lex_state = 13, .external_lex_state = 2}, + [315] = {.lex_state = 13, .external_lex_state = 2}, + [316] = {.lex_state = 13, .external_lex_state = 2}, + [317] = {.lex_state = 13, .external_lex_state = 2}, + [318] = {.lex_state = 14, .external_lex_state = 2}, + [319] = {.lex_state = 12, .external_lex_state = 2}, + [320] = {.lex_state = 13, .external_lex_state = 2}, + [321] = {.lex_state = 13, .external_lex_state = 2}, + [322] = {.lex_state = 13, .external_lex_state = 2}, + [323] = {.lex_state = 13, .external_lex_state = 2}, + [324] = {.lex_state = 14, .external_lex_state = 2}, + [325] = {.lex_state = 13, .external_lex_state = 2}, + [326] = {.lex_state = 13, .external_lex_state = 2}, + [327] = {.lex_state = 13, .external_lex_state = 2}, + [328] = {.lex_state = 13, .external_lex_state = 2}, + [329] = {.lex_state = 13, .external_lex_state = 2}, + [330] = {.lex_state = 13, .external_lex_state = 2}, + [331] = {.lex_state = 13, .external_lex_state = 2}, + [332] = {.lex_state = 13, .external_lex_state = 2}, + [333] = {.lex_state = 13, .external_lex_state = 2}, + [334] = {.lex_state = 13, .external_lex_state = 2}, + [335] = {.lex_state = 13, .external_lex_state = 2}, + [336] = {.lex_state = 13, .external_lex_state = 2}, + [337] = {.lex_state = 13, .external_lex_state = 2}, + [338] = {.lex_state = 14, .external_lex_state = 2}, + [339] = {.lex_state = 13, .external_lex_state = 2}, + [340] = {.lex_state = 13, .external_lex_state = 2}, + [341] = {.lex_state = 13, .external_lex_state = 2}, + [342] = {.lex_state = 13, .external_lex_state = 2}, + [343] = {.lex_state = 13, .external_lex_state = 2}, + [344] = {.lex_state = 13, .external_lex_state = 2}, + [345] = {.lex_state = 13, .external_lex_state = 2}, + [346] = {.lex_state = 13, .external_lex_state = 2}, + [347] = {.lex_state = 13, .external_lex_state = 2}, + [348] = {.lex_state = 13, .external_lex_state = 2}, + [349] = {.lex_state = 13, .external_lex_state = 2}, + [350] = {.lex_state = 13, .external_lex_state = 2}, + [351] = {.lex_state = 13, .external_lex_state = 2}, + [352] = {.lex_state = 13, .external_lex_state = 2}, + [353] = {.lex_state = 13, .external_lex_state = 2}, + [354] = {.lex_state = 13, .external_lex_state = 2}, + [355] = {.lex_state = 13, .external_lex_state = 2}, + [356] = {.lex_state = 13, .external_lex_state = 2}, + [357] = {.lex_state = 13, .external_lex_state = 2}, + [358] = {.lex_state = 13, .external_lex_state = 2}, + [359] = {.lex_state = 13, .external_lex_state = 2}, + [360] = {.lex_state = 13, .external_lex_state = 2}, + [361] = {.lex_state = 13, .external_lex_state = 2}, + [362] = {.lex_state = 13, .external_lex_state = 2}, + [363] = {.lex_state = 13, .external_lex_state = 2}, + [364] = {.lex_state = 13, .external_lex_state = 2}, + [365] = {.lex_state = 13, .external_lex_state = 2}, + [366] = {.lex_state = 13, .external_lex_state = 2}, + [367] = {.lex_state = 13, .external_lex_state = 2}, + [368] = {.lex_state = 13, .external_lex_state = 2}, + [369] = {.lex_state = 13, .external_lex_state = 2}, + [370] = {.lex_state = 13, .external_lex_state = 2}, + [371] = {.lex_state = 13, .external_lex_state = 2}, + [372] = {.lex_state = 13, .external_lex_state = 2}, + [373] = {.lex_state = 13, .external_lex_state = 2}, + [374] = {.lex_state = 13, .external_lex_state = 2}, + [375] = {.lex_state = 13, .external_lex_state = 2}, + [376] = {.lex_state = 13, .external_lex_state = 2}, + [377] = {.lex_state = 13, .external_lex_state = 2}, + [378] = {.lex_state = 13, .external_lex_state = 2}, + [379] = {.lex_state = 13, .external_lex_state = 2}, + [380] = {.lex_state = 13, .external_lex_state = 2}, + [381] = {.lex_state = 13, .external_lex_state = 2}, + [382] = {.lex_state = 13, .external_lex_state = 2}, + [383] = {.lex_state = 13, .external_lex_state = 2}, + [384] = {.lex_state = 13, .external_lex_state = 2}, + [385] = {.lex_state = 13, .external_lex_state = 2}, + [386] = {.lex_state = 13, .external_lex_state = 2}, + [387] = {.lex_state = 13, .external_lex_state = 2}, + [388] = {.lex_state = 13, .external_lex_state = 2}, + [389] = {.lex_state = 13, .external_lex_state = 2}, + [390] = {.lex_state = 13, .external_lex_state = 2}, + [391] = {.lex_state = 13, .external_lex_state = 2}, + [392] = {.lex_state = 13, .external_lex_state = 2}, + [393] = {.lex_state = 13, .external_lex_state = 2}, + [394] = {.lex_state = 71, .external_lex_state = 2}, + [395] = {.lex_state = 71, .external_lex_state = 2}, + [396] = {.lex_state = 71, .external_lex_state = 2}, + [397] = {.lex_state = 71, .external_lex_state = 2}, + [398] = {.lex_state = 71, .external_lex_state = 2}, + [399] = {.lex_state = 71, .external_lex_state = 2}, [400] = {.lex_state = 12, .external_lex_state = 2}, - [401] = {.lex_state = 12, .external_lex_state = 2}, - [402] = {.lex_state = 12, .external_lex_state = 2}, - [403] = {.lex_state = 12, .external_lex_state = 2}, - [404] = {.lex_state = 69, .external_lex_state = 2}, + [401] = {.lex_state = 71, .external_lex_state = 2}, + [402] = {.lex_state = 71, .external_lex_state = 2}, + [403] = {.lex_state = 71, .external_lex_state = 2}, + [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 2}, - [406] = {.lex_state = 12, .external_lex_state = 2}, - [407] = {.lex_state = 12, .external_lex_state = 2}, - [408] = {.lex_state = 12, .external_lex_state = 2}, - [409] = {.lex_state = 12, .external_lex_state = 2}, - [410] = {.lex_state = 11, .external_lex_state = 2}, - [411] = {.lex_state = 12, .external_lex_state = 2}, - [412] = {.lex_state = 11, .external_lex_state = 2}, - [413] = {.lex_state = 11, .external_lex_state = 2}, - [414] = {.lex_state = 12, .external_lex_state = 2}, - [415] = {.lex_state = 12, .external_lex_state = 2}, - [416] = {.lex_state = 12, .external_lex_state = 2}, + [406] = {.lex_state = 71, .external_lex_state = 2}, + [407] = {.lex_state = 71, .external_lex_state = 2}, + [408] = {.lex_state = 71, .external_lex_state = 2}, + [409] = {.lex_state = 71, .external_lex_state = 2}, + [410] = {.lex_state = 71, .external_lex_state = 2}, + [411] = {.lex_state = 71, .external_lex_state = 2}, + [412] = {.lex_state = 71, .external_lex_state = 2}, + [413] = {.lex_state = 71, .external_lex_state = 2}, + [414] = {.lex_state = 71, .external_lex_state = 2}, + [415] = {.lex_state = 71, .external_lex_state = 2}, + [416] = {.lex_state = 71, .external_lex_state = 2}, [417] = {.lex_state = 12, .external_lex_state = 2}, - [418] = {.lex_state = 11, .external_lex_state = 2}, - [419] = {.lex_state = 11, .external_lex_state = 2}, - [420] = {.lex_state = 11, .external_lex_state = 2}, - [421] = {.lex_state = 11, .external_lex_state = 2}, - [422] = {.lex_state = 11, .external_lex_state = 2}, - [423] = {.lex_state = 11, .external_lex_state = 2}, - [424] = {.lex_state = 11, .external_lex_state = 2}, - [425] = {.lex_state = 11, .external_lex_state = 2}, - [426] = {.lex_state = 11, .external_lex_state = 2}, - [427] = {.lex_state = 11, .external_lex_state = 2}, - [428] = {.lex_state = 11, .external_lex_state = 2}, - [429] = {.lex_state = 3, .external_lex_state = 2}, - [430] = {.lex_state = 5, .external_lex_state = 2}, - [431] = {.lex_state = 13, .external_lex_state = 2}, - [432] = {.lex_state = 13, .external_lex_state = 2}, - [433] = {.lex_state = 11, .external_lex_state = 2}, - [434] = {.lex_state = 11, .external_lex_state = 2}, - [435] = {.lex_state = 11, .external_lex_state = 2}, - [436] = {.lex_state = 11, .external_lex_state = 2}, - [437] = {.lex_state = 11, .external_lex_state = 2}, - [438] = {.lex_state = 11, .external_lex_state = 2}, - [439] = {.lex_state = 11, .external_lex_state = 2}, - [440] = {.lex_state = 11, .external_lex_state = 2}, - [441] = {.lex_state = 11, .external_lex_state = 2}, - [442] = {.lex_state = 11, .external_lex_state = 2}, - [443] = {.lex_state = 11, .external_lex_state = 2}, - [444] = {.lex_state = 11, .external_lex_state = 2}, - [445] = {.lex_state = 11, .external_lex_state = 2}, - [446] = {.lex_state = 3, .external_lex_state = 2}, - [447] = {.lex_state = 3, .external_lex_state = 2}, - [448] = {.lex_state = 3, .external_lex_state = 2}, - [449] = {.lex_state = 3, .external_lex_state = 2}, - [450] = {.lex_state = 3, .external_lex_state = 2}, - [451] = {.lex_state = 3, .external_lex_state = 2}, - [452] = {.lex_state = 3, .external_lex_state = 2}, - [453] = {.lex_state = 3, .external_lex_state = 2}, - [454] = {.lex_state = 3, .external_lex_state = 2}, - [455] = {.lex_state = 3, .external_lex_state = 2}, - [456] = {.lex_state = 11, .external_lex_state = 2}, - [457] = {.lex_state = 3, .external_lex_state = 2}, - [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 11, .external_lex_state = 2}, - [460] = {.lex_state = 3, .external_lex_state = 2}, - [461] = {.lex_state = 11, .external_lex_state = 2}, - [462] = {.lex_state = 3, .external_lex_state = 2}, - [463] = {.lex_state = 3, .external_lex_state = 2}, - [464] = {.lex_state = 3, .external_lex_state = 2}, - [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 3, .external_lex_state = 2}, - [467] = {.lex_state = 3, .external_lex_state = 2}, - [468] = {.lex_state = 3, .external_lex_state = 2}, - [469] = {.lex_state = 3, .external_lex_state = 2}, - [470] = {.lex_state = 3, .external_lex_state = 2}, - [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 11, .external_lex_state = 2}, - [473] = {.lex_state = 3, .external_lex_state = 2}, - [474] = {.lex_state = 3, .external_lex_state = 2}, - [475] = {.lex_state = 11, .external_lex_state = 2}, - [476] = {.lex_state = 11, .external_lex_state = 2}, - [477] = {.lex_state = 11, .external_lex_state = 2}, - [478] = {.lex_state = 11, .external_lex_state = 2}, - [479] = {.lex_state = 71, .external_lex_state = 2}, - [480] = {.lex_state = 71, .external_lex_state = 2}, - [481] = {.lex_state = 71, .external_lex_state = 2}, - [482] = {.lex_state = 71, .external_lex_state = 2}, - [483] = {.lex_state = 71, .external_lex_state = 2}, - [484] = {.lex_state = 71, .external_lex_state = 2}, - [485] = {.lex_state = 71, .external_lex_state = 2}, - [486] = {.lex_state = 71, .external_lex_state = 2}, - [487] = {.lex_state = 71, .external_lex_state = 2}, - [488] = {.lex_state = 71, .external_lex_state = 2}, - [489] = {.lex_state = 71, .external_lex_state = 2}, - [490] = {.lex_state = 71, .external_lex_state = 2}, - [491] = {.lex_state = 71, .external_lex_state = 2}, - [492] = {.lex_state = 71, .external_lex_state = 2}, - [493] = {.lex_state = 71, .external_lex_state = 2}, - [494] = {.lex_state = 71, .external_lex_state = 2}, - [495] = {.lex_state = 71, .external_lex_state = 2}, - [496] = {.lex_state = 71, .external_lex_state = 2}, - [497] = {.lex_state = 71, .external_lex_state = 2}, - [498] = {.lex_state = 71, .external_lex_state = 2}, - [499] = {.lex_state = 71, .external_lex_state = 2}, - [500] = {.lex_state = 71, .external_lex_state = 2}, - [501] = {.lex_state = 71, .external_lex_state = 2}, - [502] = {.lex_state = 71, .external_lex_state = 2}, - [503] = {.lex_state = 71, .external_lex_state = 2}, - [504] = {.lex_state = 71, .external_lex_state = 2}, - [505] = {.lex_state = 71, .external_lex_state = 2}, - [506] = {.lex_state = 71, .external_lex_state = 2}, - [507] = {.lex_state = 71, .external_lex_state = 2}, - [508] = {.lex_state = 71, .external_lex_state = 2}, - [509] = {.lex_state = 71, .external_lex_state = 2}, - [510] = {.lex_state = 71, .external_lex_state = 2}, - [511] = {.lex_state = 71, .external_lex_state = 2}, - [512] = {.lex_state = 71, .external_lex_state = 2}, - [513] = {.lex_state = 71, .external_lex_state = 2}, - [514] = {.lex_state = 71, .external_lex_state = 2}, - [515] = {.lex_state = 71, .external_lex_state = 2}, - [516] = {.lex_state = 71, .external_lex_state = 2}, - [517] = {.lex_state = 71, .external_lex_state = 2}, - [518] = {.lex_state = 71, .external_lex_state = 2}, - [519] = {.lex_state = 71, .external_lex_state = 2}, - [520] = {.lex_state = 71, .external_lex_state = 2}, - [521] = {.lex_state = 71, .external_lex_state = 2}, - [522] = {.lex_state = 71, .external_lex_state = 2}, - [523] = {.lex_state = 71, .external_lex_state = 2}, - [524] = {.lex_state = 71, .external_lex_state = 2}, - [525] = {.lex_state = 71, .external_lex_state = 2}, - [526] = {.lex_state = 71, .external_lex_state = 2}, - [527] = {.lex_state = 71, .external_lex_state = 2}, - [528] = {.lex_state = 71, .external_lex_state = 2}, - [529] = {.lex_state = 71, .external_lex_state = 2}, - [530] = {.lex_state = 71, .external_lex_state = 2}, - [531] = {.lex_state = 71, .external_lex_state = 2}, - [532] = {.lex_state = 71, .external_lex_state = 2}, - [533] = {.lex_state = 71, .external_lex_state = 2}, - [534] = {.lex_state = 71, .external_lex_state = 2}, - [535] = {.lex_state = 71, .external_lex_state = 2}, - [536] = {.lex_state = 71, .external_lex_state = 2}, - [537] = {.lex_state = 71, .external_lex_state = 2}, - [538] = {.lex_state = 71, .external_lex_state = 2}, - [539] = {.lex_state = 71, .external_lex_state = 2}, - [540] = {.lex_state = 71, .external_lex_state = 2}, - [541] = {.lex_state = 71, .external_lex_state = 2}, - [542] = {.lex_state = 71, .external_lex_state = 2}, - [543] = {.lex_state = 71, .external_lex_state = 2}, - [544] = {.lex_state = 71, .external_lex_state = 2}, - [545] = {.lex_state = 71, .external_lex_state = 2}, - [546] = {.lex_state = 71, .external_lex_state = 2}, - [547] = {.lex_state = 71, .external_lex_state = 2}, - [548] = {.lex_state = 71, .external_lex_state = 2}, - [549] = {.lex_state = 71, .external_lex_state = 2}, - [550] = {.lex_state = 71, .external_lex_state = 2}, - [551] = {.lex_state = 71, .external_lex_state = 2}, - [552] = {.lex_state = 71, .external_lex_state = 2}, - [553] = {.lex_state = 71, .external_lex_state = 2}, - [554] = {.lex_state = 71, .external_lex_state = 2}, - [555] = {.lex_state = 71, .external_lex_state = 2}, - [556] = {.lex_state = 71, .external_lex_state = 2}, - [557] = {.lex_state = 71, .external_lex_state = 2}, - [558] = {.lex_state = 71, .external_lex_state = 2}, - [559] = {.lex_state = 71, .external_lex_state = 2}, - [560] = {.lex_state = 71, .external_lex_state = 2}, - [561] = {.lex_state = 71, .external_lex_state = 2}, - [562] = {.lex_state = 71, .external_lex_state = 2}, - [563] = {.lex_state = 71, .external_lex_state = 2}, - [564] = {.lex_state = 71, .external_lex_state = 2}, - [565] = {.lex_state = 71, .external_lex_state = 2}, - [566] = {.lex_state = 71, .external_lex_state = 2}, - [567] = {.lex_state = 71, .external_lex_state = 2}, - [568] = {.lex_state = 71, .external_lex_state = 2}, - [569] = {.lex_state = 71, .external_lex_state = 2}, - [570] = {.lex_state = 71, .external_lex_state = 2}, - [571] = {.lex_state = 71, .external_lex_state = 2}, - [572] = {.lex_state = 71, .external_lex_state = 2}, - [573] = {.lex_state = 71, .external_lex_state = 2}, - [574] = {.lex_state = 71, .external_lex_state = 2}, - [575] = {.lex_state = 71, .external_lex_state = 2}, - [576] = {.lex_state = 71, .external_lex_state = 2}, - [577] = {.lex_state = 71, .external_lex_state = 2}, - [578] = {.lex_state = 71, .external_lex_state = 2}, - [579] = {.lex_state = 71, .external_lex_state = 2}, - [580] = {.lex_state = 71, .external_lex_state = 2}, - [581] = {.lex_state = 71, .external_lex_state = 2}, - [582] = {.lex_state = 71, .external_lex_state = 2}, - [583] = {.lex_state = 71, .external_lex_state = 2}, - [584] = {.lex_state = 71, .external_lex_state = 2}, - [585] = {.lex_state = 71, .external_lex_state = 2}, - [586] = {.lex_state = 71, .external_lex_state = 2}, - [587] = {.lex_state = 71, .external_lex_state = 2}, - [588] = {.lex_state = 71, .external_lex_state = 2}, - [589] = {.lex_state = 71, .external_lex_state = 2}, - [590] = {.lex_state = 71, .external_lex_state = 2}, - [591] = {.lex_state = 71, .external_lex_state = 2}, - [592] = {.lex_state = 71, .external_lex_state = 2}, - [593] = {.lex_state = 71, .external_lex_state = 2}, - [594] = {.lex_state = 71, .external_lex_state = 2}, - [595] = {.lex_state = 71, .external_lex_state = 2}, - [596] = {.lex_state = 71, .external_lex_state = 2}, - [597] = {.lex_state = 71, .external_lex_state = 2}, - [598] = {.lex_state = 71, .external_lex_state = 2}, - [599] = {.lex_state = 71, .external_lex_state = 2}, - [600] = {.lex_state = 71, .external_lex_state = 2}, - [601] = {.lex_state = 71, .external_lex_state = 2}, - [602] = {.lex_state = 71, .external_lex_state = 2}, - [603] = {.lex_state = 71, .external_lex_state = 2}, - [604] = {.lex_state = 71, .external_lex_state = 2}, - [605] = {.lex_state = 71, .external_lex_state = 2}, - [606] = {.lex_state = 71, .external_lex_state = 2}, - [607] = {.lex_state = 71, .external_lex_state = 2}, - [608] = {.lex_state = 71, .external_lex_state = 2}, - [609] = {.lex_state = 71, .external_lex_state = 2}, - [610] = {.lex_state = 71, .external_lex_state = 2}, - [611] = {.lex_state = 71, .external_lex_state = 2}, - [612] = {.lex_state = 71, .external_lex_state = 2}, - [613] = {.lex_state = 71, .external_lex_state = 2}, - [614] = {.lex_state = 71, .external_lex_state = 2}, - [615] = {.lex_state = 71, .external_lex_state = 2}, - [616] = {.lex_state = 71, .external_lex_state = 2}, - [617] = {.lex_state = 71, .external_lex_state = 2}, - [618] = {.lex_state = 71, .external_lex_state = 2}, - [619] = {.lex_state = 71, .external_lex_state = 2}, - [620] = {.lex_state = 71, .external_lex_state = 2}, - [621] = {.lex_state = 71, .external_lex_state = 2}, - [622] = {.lex_state = 71, .external_lex_state = 2}, - [623] = {.lex_state = 71, .external_lex_state = 2}, - [624] = {.lex_state = 71, .external_lex_state = 2}, - [625] = {.lex_state = 71, .external_lex_state = 2}, - [626] = {.lex_state = 71, .external_lex_state = 2}, - [627] = {.lex_state = 71, .external_lex_state = 2}, - [628] = {.lex_state = 71, .external_lex_state = 2}, - [629] = {.lex_state = 71, .external_lex_state = 2}, - [630] = {.lex_state = 71, .external_lex_state = 2}, - [631] = {.lex_state = 71, .external_lex_state = 2}, - [632] = {.lex_state = 71, .external_lex_state = 2}, - [633] = {.lex_state = 71, .external_lex_state = 2}, - [634] = {.lex_state = 71, .external_lex_state = 2}, - [635] = {.lex_state = 71, .external_lex_state = 2}, - [636] = {.lex_state = 71, .external_lex_state = 2}, - [637] = {.lex_state = 71, .external_lex_state = 2}, - [638] = {.lex_state = 71, .external_lex_state = 2}, - [639] = {.lex_state = 71, .external_lex_state = 2}, - [640] = {.lex_state = 71, .external_lex_state = 2}, - [641] = {.lex_state = 71, .external_lex_state = 2}, - [642] = {.lex_state = 71, .external_lex_state = 2}, - [643] = {.lex_state = 71, .external_lex_state = 2}, - [644] = {.lex_state = 71, .external_lex_state = 2}, - [645] = {.lex_state = 71, .external_lex_state = 2}, - [646] = {.lex_state = 10}, - [647] = {.lex_state = 71, .external_lex_state = 2}, - [648] = {.lex_state = 71, .external_lex_state = 2}, - [649] = {.lex_state = 71, .external_lex_state = 2}, - [650] = {.lex_state = 71, .external_lex_state = 2}, - [651] = {.lex_state = 71, .external_lex_state = 2}, - [652] = {.lex_state = 71, .external_lex_state = 2}, - [653] = {.lex_state = 71, .external_lex_state = 2}, - [654] = {.lex_state = 10}, - [655] = {.lex_state = 71, .external_lex_state = 2}, - [656] = {.lex_state = 71, .external_lex_state = 2}, - [657] = {.lex_state = 71, .external_lex_state = 2}, - [658] = {.lex_state = 71, .external_lex_state = 2}, - [659] = {.lex_state = 71, .external_lex_state = 2}, - [660] = {.lex_state = 71, .external_lex_state = 2}, - [661] = {.lex_state = 71, .external_lex_state = 2}, - [662] = {.lex_state = 71, .external_lex_state = 2}, - [663] = {.lex_state = 71, .external_lex_state = 2}, - [664] = {.lex_state = 71, .external_lex_state = 2}, - [665] = {.lex_state = 71, .external_lex_state = 2}, - [666] = {.lex_state = 71, .external_lex_state = 2}, - [667] = {.lex_state = 71, .external_lex_state = 2}, - [668] = {.lex_state = 71, .external_lex_state = 2}, - [669] = {.lex_state = 71, .external_lex_state = 2}, - [670] = {.lex_state = 71, .external_lex_state = 2}, - [671] = {.lex_state = 71, .external_lex_state = 2}, - [672] = {.lex_state = 71, .external_lex_state = 2}, - [673] = {.lex_state = 71, .external_lex_state = 2}, - [674] = {.lex_state = 71, .external_lex_state = 2}, - [675] = {.lex_state = 71, .external_lex_state = 2}, - [676] = {.lex_state = 71, .external_lex_state = 2}, - [677] = {.lex_state = 71, .external_lex_state = 2}, - [678] = {.lex_state = 71, .external_lex_state = 2}, - [679] = {.lex_state = 71, .external_lex_state = 2}, - [680] = {.lex_state = 71, .external_lex_state = 2}, - [681] = {.lex_state = 71, .external_lex_state = 2}, - [682] = {.lex_state = 71, .external_lex_state = 2}, - [683] = {.lex_state = 71, .external_lex_state = 2}, - [684] = {.lex_state = 71, .external_lex_state = 2}, - [685] = {.lex_state = 71, .external_lex_state = 2}, - [686] = {.lex_state = 71, .external_lex_state = 2}, - [687] = {.lex_state = 71, .external_lex_state = 2}, - [688] = {.lex_state = 71, .external_lex_state = 2}, - [689] = {.lex_state = 71, .external_lex_state = 2}, - [690] = {.lex_state = 10}, - [691] = {.lex_state = 71, .external_lex_state = 2}, - [692] = {.lex_state = 10}, - [693] = {.lex_state = 71, .external_lex_state = 2}, - [694] = {.lex_state = 71, .external_lex_state = 2}, - [695] = {.lex_state = 71, .external_lex_state = 2}, - [696] = {.lex_state = 71, .external_lex_state = 2}, - [697] = {.lex_state = 71, .external_lex_state = 2}, - [698] = {.lex_state = 10}, - [699] = {.lex_state = 71, .external_lex_state = 2}, - [700] = {.lex_state = 71, .external_lex_state = 2}, - [701] = {.lex_state = 71, .external_lex_state = 2}, - [702] = {.lex_state = 71, .external_lex_state = 2}, - [703] = {.lex_state = 71, .external_lex_state = 2}, - [704] = {.lex_state = 71, .external_lex_state = 2}, - [705] = {.lex_state = 71, .external_lex_state = 2}, - [706] = {.lex_state = 71, .external_lex_state = 2}, - [707] = {.lex_state = 71, .external_lex_state = 2}, - [708] = {.lex_state = 71, .external_lex_state = 2}, - [709] = {.lex_state = 71, .external_lex_state = 2}, - [710] = {.lex_state = 71, .external_lex_state = 2}, - [711] = {.lex_state = 71, .external_lex_state = 2}, - [712] = {.lex_state = 71, .external_lex_state = 2}, - [713] = {.lex_state = 71, .external_lex_state = 2}, - [714] = {.lex_state = 71, .external_lex_state = 2}, - [715] = {.lex_state = 71, .external_lex_state = 2}, - [716] = {.lex_state = 71, .external_lex_state = 2}, - [717] = {.lex_state = 71, .external_lex_state = 2}, - [718] = {.lex_state = 71, .external_lex_state = 2}, - [719] = {.lex_state = 71, .external_lex_state = 2}, - [720] = {.lex_state = 71, .external_lex_state = 2}, - [721] = {.lex_state = 11, .external_lex_state = 2}, - [722] = {.lex_state = 71, .external_lex_state = 2}, - [723] = {.lex_state = 71, .external_lex_state = 2}, - [724] = {.lex_state = 71, .external_lex_state = 2}, - [725] = {.lex_state = 71, .external_lex_state = 2}, - [726] = {.lex_state = 71, .external_lex_state = 2}, - [727] = {.lex_state = 71, .external_lex_state = 2}, - [728] = {.lex_state = 71, .external_lex_state = 2}, - [729] = {.lex_state = 71, .external_lex_state = 2}, - [730] = {.lex_state = 71, .external_lex_state = 2}, - [731] = {.lex_state = 71, .external_lex_state = 2}, - [732] = {.lex_state = 71, .external_lex_state = 2}, - [733] = {.lex_state = 71, .external_lex_state = 2}, - [734] = {.lex_state = 71, .external_lex_state = 2}, - [735] = {.lex_state = 71, .external_lex_state = 2}, - [736] = {.lex_state = 71, .external_lex_state = 2}, - [737] = {.lex_state = 71, .external_lex_state = 2}, - [738] = {.lex_state = 71, .external_lex_state = 2}, - [739] = {.lex_state = 71, .external_lex_state = 2}, - [740] = {.lex_state = 71, .external_lex_state = 2}, - [741] = {.lex_state = 71, .external_lex_state = 2}, - [742] = {.lex_state = 71, .external_lex_state = 2}, - [743] = {.lex_state = 71, .external_lex_state = 2}, - [744] = {.lex_state = 71, .external_lex_state = 2}, - [745] = {.lex_state = 71, .external_lex_state = 2}, - [746] = {.lex_state = 71, .external_lex_state = 2}, - [747] = {.lex_state = 71, .external_lex_state = 2}, - [748] = {.lex_state = 71, .external_lex_state = 2}, - [749] = {.lex_state = 71, .external_lex_state = 2}, - [750] = {.lex_state = 71, .external_lex_state = 2}, - [751] = {.lex_state = 71, .external_lex_state = 2}, - [752] = {.lex_state = 71, .external_lex_state = 2}, - [753] = {.lex_state = 71, .external_lex_state = 2}, - [754] = {.lex_state = 11, .external_lex_state = 2}, - [755] = {.lex_state = 11, .external_lex_state = 2}, - [756] = {.lex_state = 11, .external_lex_state = 2}, - [757] = {.lex_state = 11, .external_lex_state = 2}, - [758] = {.lex_state = 11, .external_lex_state = 2}, - [759] = {.lex_state = 11, .external_lex_state = 2}, - [760] = {.lex_state = 11, .external_lex_state = 2}, - [761] = {.lex_state = 11, .external_lex_state = 2}, - [762] = {.lex_state = 11, .external_lex_state = 2}, - [763] = {.lex_state = 14}, - [764] = {.lex_state = 14}, - [765] = {.lex_state = 14}, - [766] = {.lex_state = 14}, - [767] = {.lex_state = 14}, - [768] = {.lex_state = 14}, - [769] = {.lex_state = 14}, - [770] = {.lex_state = 14}, - [771] = {.lex_state = 11, .external_lex_state = 2}, - [772] = {.lex_state = 14}, - [773] = {.lex_state = 11, .external_lex_state = 2}, - [774] = {.lex_state = 14}, - [775] = {.lex_state = 11, .external_lex_state = 2}, - [776] = {.lex_state = 11, .external_lex_state = 2}, - [777] = {.lex_state = 14}, - [778] = {.lex_state = 11, .external_lex_state = 2}, - [779] = {.lex_state = 11, .external_lex_state = 2}, - [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 12, .external_lex_state = 2}, - [782] = {.lex_state = 11, .external_lex_state = 2}, - [783] = {.lex_state = 11, .external_lex_state = 2}, - [784] = {.lex_state = 11, .external_lex_state = 2}, - [785] = {.lex_state = 11, .external_lex_state = 2}, - [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 11, .external_lex_state = 2}, - [788] = {.lex_state = 11, .external_lex_state = 2}, - [789] = {.lex_state = 11, .external_lex_state = 2}, - [790] = {.lex_state = 11, .external_lex_state = 2}, - [791] = {.lex_state = 11, .external_lex_state = 2}, - [792] = {.lex_state = 11, .external_lex_state = 2}, - [793] = {.lex_state = 11, .external_lex_state = 2}, - [794] = {.lex_state = 11, .external_lex_state = 2}, - [795] = {.lex_state = 11, .external_lex_state = 2}, - [796] = {.lex_state = 11, .external_lex_state = 2}, - [797] = {.lex_state = 11, .external_lex_state = 2}, - [798] = {.lex_state = 11, .external_lex_state = 2}, - [799] = {.lex_state = 11, .external_lex_state = 2}, - [800] = {.lex_state = 11, .external_lex_state = 2}, - [801] = {.lex_state = 11, .external_lex_state = 2}, - [802] = {.lex_state = 11, .external_lex_state = 2}, - [803] = {.lex_state = 11, .external_lex_state = 2}, - [804] = {.lex_state = 11, .external_lex_state = 2}, - [805] = {.lex_state = 11, .external_lex_state = 2}, - [806] = {.lex_state = 11, .external_lex_state = 2}, - [807] = {.lex_state = 11, .external_lex_state = 2}, - [808] = {.lex_state = 11, .external_lex_state = 2}, - [809] = {.lex_state = 11, .external_lex_state = 2}, - [810] = {.lex_state = 11, .external_lex_state = 2}, - [811] = {.lex_state = 11, .external_lex_state = 2}, - [812] = {.lex_state = 11, .external_lex_state = 2}, - [813] = {.lex_state = 11, .external_lex_state = 2}, - [814] = {.lex_state = 11, .external_lex_state = 2}, - [815] = {.lex_state = 11, .external_lex_state = 2}, - [816] = {.lex_state = 11, .external_lex_state = 2}, - [817] = {.lex_state = 11, .external_lex_state = 2}, - [818] = {.lex_state = 11, .external_lex_state = 2}, - [819] = {.lex_state = 11, .external_lex_state = 2}, - [820] = {.lex_state = 11, .external_lex_state = 2}, - [821] = {.lex_state = 11, .external_lex_state = 2}, - [822] = {.lex_state = 11, .external_lex_state = 2}, - [823] = {.lex_state = 11, .external_lex_state = 2}, - [824] = {.lex_state = 11, .external_lex_state = 2}, - [825] = {.lex_state = 11, .external_lex_state = 2}, - [826] = {.lex_state = 11, .external_lex_state = 2}, - [827] = {.lex_state = 11, .external_lex_state = 2}, - [828] = {.lex_state = 11, .external_lex_state = 2}, - [829] = {.lex_state = 14}, - [830] = {.lex_state = 14}, - [831] = {.lex_state = 14}, - [832] = {.lex_state = 14}, - [833] = {.lex_state = 14}, - [834] = {.lex_state = 14}, - [835] = {.lex_state = 14}, - [836] = {.lex_state = 14}, - [837] = {.lex_state = 14}, - [838] = {.lex_state = 14}, - [839] = {.lex_state = 14}, - [840] = {.lex_state = 14}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, - [843] = {.lex_state = 14}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 14}, - [847] = {.lex_state = 14}, - [848] = {.lex_state = 14}, - [849] = {.lex_state = 14}, - [850] = {.lex_state = 14}, - [851] = {.lex_state = 14}, - [852] = {.lex_state = 14}, - [853] = {.lex_state = 14}, - [854] = {.lex_state = 14}, - [855] = {.lex_state = 14}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 14}, - [858] = {.lex_state = 14}, - [859] = {.lex_state = 14}, - [860] = {.lex_state = 14}, - [861] = {.lex_state = 14}, - [862] = {.lex_state = 14}, - [863] = {.lex_state = 14}, - [864] = {.lex_state = 14}, - [865] = {.lex_state = 14}, - [866] = {.lex_state = 14}, - [867] = {.lex_state = 14}, - [868] = {.lex_state = 14}, - [869] = {.lex_state = 14}, - [870] = {.lex_state = 14}, - [871] = {.lex_state = 14}, - [872] = {.lex_state = 14}, - [873] = {.lex_state = 14}, - [874] = {.lex_state = 14}, - [875] = {.lex_state = 14}, - [876] = {.lex_state = 14}, - [877] = {.lex_state = 14}, - [878] = {.lex_state = 14}, - [879] = {.lex_state = 14}, - [880] = {.lex_state = 14}, - [881] = {.lex_state = 14}, - [882] = {.lex_state = 14}, - [883] = {.lex_state = 14}, - [884] = {.lex_state = 14}, - [885] = {.lex_state = 14}, - [886] = {.lex_state = 14}, - [887] = {.lex_state = 14}, - [888] = {.lex_state = 14}, - [889] = {.lex_state = 14}, - [890] = {.lex_state = 14}, - [891] = {.lex_state = 14}, - [892] = {.lex_state = 14}, - [893] = {.lex_state = 14}, - [894] = {.lex_state = 14}, - [895] = {.lex_state = 14}, - [896] = {.lex_state = 14}, - [897] = {.lex_state = 14}, - [898] = {.lex_state = 14}, - [899] = {.lex_state = 14}, - [900] = {.lex_state = 14}, - [901] = {.lex_state = 14}, - [902] = {.lex_state = 14}, - [903] = {.lex_state = 14}, - [904] = {.lex_state = 14}, - [905] = {.lex_state = 14}, - [906] = {.lex_state = 14}, - [907] = {.lex_state = 14}, - [908] = {.lex_state = 11, .external_lex_state = 2}, - [909] = {.lex_state = 14}, - [910] = {.lex_state = 14}, - [911] = {.lex_state = 14}, - [912] = {.lex_state = 14}, - [913] = {.lex_state = 14}, - [914] = {.lex_state = 14}, - [915] = {.lex_state = 14}, - [916] = {.lex_state = 14}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 14}, - [919] = {.lex_state = 14}, - [920] = {.lex_state = 14}, - [921] = {.lex_state = 14}, - [922] = {.lex_state = 14}, - [923] = {.lex_state = 14}, - [924] = {.lex_state = 14}, - [925] = {.lex_state = 14}, - [926] = {.lex_state = 14}, - [927] = {.lex_state = 14}, - [928] = {.lex_state = 14}, - [929] = {.lex_state = 14}, - [930] = {.lex_state = 14}, - [931] = {.lex_state = 14}, - [932] = {.lex_state = 14}, - [933] = {.lex_state = 14}, - [934] = {.lex_state = 14}, - [935] = {.lex_state = 14}, - [936] = {.lex_state = 14}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 14}, - [939] = {.lex_state = 14}, - [940] = {.lex_state = 14}, - [941] = {.lex_state = 14}, - [942] = {.lex_state = 14}, - [943] = {.lex_state = 14}, - [944] = {.lex_state = 14}, - [945] = {.lex_state = 14}, - [946] = {.lex_state = 14}, - [947] = {.lex_state = 14}, - [948] = {.lex_state = 14}, - [949] = {.lex_state = 14}, - [950] = {.lex_state = 14}, - [951] = {.lex_state = 14}, - [952] = {.lex_state = 14}, - [953] = {.lex_state = 14}, - [954] = {.lex_state = 14}, - [955] = {.lex_state = 14}, - [956] = {.lex_state = 14}, - [957] = {.lex_state = 14}, - [958] = {.lex_state = 14}, - [959] = {.lex_state = 14}, - [960] = {.lex_state = 14}, - [961] = {.lex_state = 14}, - [962] = {.lex_state = 14}, - [963] = {.lex_state = 14}, - [964] = {.lex_state = 14}, - [965] = {.lex_state = 14}, - [966] = {.lex_state = 14}, - [967] = {.lex_state = 14}, - [968] = {.lex_state = 14}, - [969] = {.lex_state = 14}, - [970] = {.lex_state = 14}, - [971] = {.lex_state = 14}, - [972] = {.lex_state = 14}, - [973] = {.lex_state = 14}, - [974] = {.lex_state = 14}, - [975] = {.lex_state = 14}, - [976] = {.lex_state = 14}, - [977] = {.lex_state = 14}, - [978] = {.lex_state = 14}, - [979] = {.lex_state = 14}, - [980] = {.lex_state = 14}, - [981] = {.lex_state = 14}, - [982] = {.lex_state = 14}, - [983] = {.lex_state = 14}, - [984] = {.lex_state = 14}, - [985] = {.lex_state = 14}, - [986] = {.lex_state = 14}, - [987] = {.lex_state = 14}, - [988] = {.lex_state = 14}, - [989] = {.lex_state = 14}, - [990] = {.lex_state = 14}, - [991] = {.lex_state = 14}, - [992] = {.lex_state = 14}, - [993] = {.lex_state = 14}, - [994] = {.lex_state = 14}, - [995] = {.lex_state = 14}, - [996] = {.lex_state = 14}, - [997] = {.lex_state = 14}, - [998] = {.lex_state = 14}, - [999] = {.lex_state = 14}, - [1000] = {.lex_state = 14}, - [1001] = {.lex_state = 14}, - [1002] = {.lex_state = 11, .external_lex_state = 2}, - [1003] = {.lex_state = 11, .external_lex_state = 2}, - [1004] = {.lex_state = 13, .external_lex_state = 2}, - [1005] = {.lex_state = 13, .external_lex_state = 2}, - [1006] = {.lex_state = 11, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, - [1008] = {.lex_state = 14}, - [1009] = {.lex_state = 11, .external_lex_state = 2}, - [1010] = {.lex_state = 11, .external_lex_state = 2}, - [1011] = {.lex_state = 6}, - [1012] = {.lex_state = 6}, - [1013] = {.lex_state = 6}, - [1014] = {.lex_state = 6}, - [1015] = {.lex_state = 10}, - [1016] = {.lex_state = 6}, - [1017] = {.lex_state = 6}, - [1018] = {.lex_state = 10}, - [1019] = {.lex_state = 10}, - [1020] = {.lex_state = 10}, - [1021] = {.lex_state = 6}, - [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 10}, - [1024] = {.lex_state = 6}, - [1025] = {.lex_state = 10}, - [1026] = {.lex_state = 10}, - [1027] = {.lex_state = 10}, - [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 6}, - [1030] = {.lex_state = 10}, - [1031] = {.lex_state = 6}, - [1032] = {.lex_state = 7}, - [1033] = {.lex_state = 7}, - [1034] = {.lex_state = 7}, - [1035] = {.lex_state = 22}, - [1036] = {.lex_state = 7}, - [1037] = {.lex_state = 22}, - [1038] = {.lex_state = 22}, - [1039] = {.lex_state = 22}, - [1040] = {.lex_state = 7}, - [1041] = {.lex_state = 11, .external_lex_state = 2}, - [1042] = {.lex_state = 7}, - [1043] = {.lex_state = 22}, - [1044] = {.lex_state = 18}, - [1045] = {.lex_state = 7}, - [1046] = {.lex_state = 7}, - [1047] = {.lex_state = 7}, - [1048] = {.lex_state = 7}, - [1049] = {.lex_state = 18}, - [1050] = {.lex_state = 7}, - [1051] = {.lex_state = 7}, - [1052] = {.lex_state = 7}, - [1053] = {.lex_state = 18}, - [1054] = {.lex_state = 14}, - [1055] = {.lex_state = 7}, - [1056] = {.lex_state = 7}, - [1057] = {.lex_state = 7}, - [1058] = {.lex_state = 7}, - [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 18}, - [1061] = {.lex_state = 18}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 19}, - [1064] = {.lex_state = 6}, - [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 18}, - [1067] = {.lex_state = 18}, - [1068] = {.lex_state = 14}, - [1069] = {.lex_state = 7}, - [1070] = {.lex_state = 7}, - [1071] = {.lex_state = 7}, - [1072] = {.lex_state = 7}, - [1073] = {.lex_state = 7}, - [1074] = {.lex_state = 14}, - [1075] = {.lex_state = 7}, - [1076] = {.lex_state = 7}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 7}, - [1079] = {.lex_state = 14}, - [1080] = {.lex_state = 19}, - [1081] = {.lex_state = 18}, - [1082] = {.lex_state = 14}, - [1083] = {.lex_state = 18}, - [1084] = {.lex_state = 14}, - [1085] = {.lex_state = 18}, - [1086] = {.lex_state = 18}, - [1087] = {.lex_state = 18}, - [1088] = {.lex_state = 7}, - [1089] = {.lex_state = 7}, - [1090] = {.lex_state = 7}, - [1091] = {.lex_state = 7}, - [1092] = {.lex_state = 10}, - [1093] = {.lex_state = 10}, - [1094] = {.lex_state = 10}, - [1095] = {.lex_state = 10}, - [1096] = {.lex_state = 10}, - [1097] = {.lex_state = 10}, - [1098] = {.lex_state = 10}, - [1099] = {.lex_state = 10}, - [1100] = {.lex_state = 10}, - [1101] = {.lex_state = 10}, - [1102] = {.lex_state = 10}, - [1103] = {.lex_state = 10}, - [1104] = {.lex_state = 10}, - [1105] = {.lex_state = 10}, - [1106] = {.lex_state = 10}, - [1107] = {.lex_state = 10}, - [1108] = {.lex_state = 10}, - [1109] = {.lex_state = 10}, - [1110] = {.lex_state = 10}, - [1111] = {.lex_state = 10}, - [1112] = {.lex_state = 10}, - [1113] = {.lex_state = 10}, - [1114] = {.lex_state = 10}, - [1115] = {.lex_state = 10}, - [1116] = {.lex_state = 10}, - [1117] = {.lex_state = 10}, - [1118] = {.lex_state = 10}, - [1119] = {.lex_state = 10}, - [1120] = {.lex_state = 10}, - [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 10}, - [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 10}, - [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 7}, - [1128] = {.lex_state = 10}, - [1129] = {.lex_state = 10}, - [1130] = {.lex_state = 7}, - [1131] = {.lex_state = 10}, - [1132] = {.lex_state = 10}, - [1133] = {.lex_state = 10}, - [1134] = {.lex_state = 10}, - [1135] = {.lex_state = 10}, - [1136] = {.lex_state = 10}, - [1137] = {.lex_state = 10}, - [1138] = {.lex_state = 10}, - [1139] = {.lex_state = 10}, - [1140] = {.lex_state = 10}, - [1141] = {.lex_state = 10}, - [1142] = {.lex_state = 10}, - [1143] = {.lex_state = 10}, - [1144] = {.lex_state = 10}, - [1145] = {.lex_state = 10}, - [1146] = {.lex_state = 10}, - [1147] = {.lex_state = 10}, - [1148] = {.lex_state = 10}, - [1149] = {.lex_state = 10}, - [1150] = {.lex_state = 10}, - [1151] = {.lex_state = 10}, - [1152] = {.lex_state = 10}, - [1153] = {.lex_state = 10}, - [1154] = {.lex_state = 10}, - [1155] = {.lex_state = 10}, - [1156] = {.lex_state = 10}, - [1157] = {.lex_state = 10}, - [1158] = {.lex_state = 10}, - [1159] = {.lex_state = 10}, - [1160] = {.lex_state = 10}, - [1161] = {.lex_state = 10}, - [1162] = {.lex_state = 10}, - [1163] = {.lex_state = 10}, - [1164] = {.lex_state = 10}, - [1165] = {.lex_state = 10}, - [1166] = {.lex_state = 10}, - [1167] = {.lex_state = 10}, - [1168] = {.lex_state = 10}, - [1169] = {.lex_state = 10}, - [1170] = {.lex_state = 10}, - [1171] = {.lex_state = 10}, - [1172] = {.lex_state = 10}, - [1173] = {.lex_state = 10}, - [1174] = {.lex_state = 10}, - [1175] = {.lex_state = 10}, - [1176] = {.lex_state = 10}, - [1177] = {.lex_state = 10}, - [1178] = {.lex_state = 10}, - [1179] = {.lex_state = 10}, - [1180] = {.lex_state = 10}, - [1181] = {.lex_state = 10}, - [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 7}, - [1184] = {.lex_state = 10}, - [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 7}, - [1187] = {.lex_state = 10}, - [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 7}, - [1190] = {.lex_state = 10}, - [1191] = {.lex_state = 10}, - [1192] = {.lex_state = 7}, - [1193] = {.lex_state = 7}, - [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 7}, - [1196] = {.lex_state = 7}, - [1197] = {.lex_state = 10}, - [1198] = {.lex_state = 7}, - [1199] = {.lex_state = 7}, - [1200] = {.lex_state = 10}, - [1201] = {.lex_state = 10}, - [1202] = {.lex_state = 7}, - [1203] = {.lex_state = 10}, - [1204] = {.lex_state = 10}, - [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 7}, - [1207] = {.lex_state = 7}, - [1208] = {.lex_state = 7}, - [1209] = {.lex_state = 7}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 7}, - [1212] = {.lex_state = 7}, - [1213] = {.lex_state = 7}, - [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 12, .external_lex_state = 2}, - [1217] = {.lex_state = 7}, - [1218] = {.lex_state = 7}, - [1219] = {.lex_state = 7}, - [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 7}, - [1222] = {.lex_state = 7}, - [1223] = {.lex_state = 7}, - [1224] = {.lex_state = 7}, - [1225] = {.lex_state = 7}, - [1226] = {.lex_state = 7}, - [1227] = {.lex_state = 10}, - [1228] = {.lex_state = 7}, - [1229] = {.lex_state = 14}, - [1230] = {.lex_state = 14}, - [1231] = {.lex_state = 7}, - [1232] = {.lex_state = 10}, - [1233] = {.lex_state = 10}, - [1234] = {.lex_state = 10}, - [1235] = {.lex_state = 10}, - [1236] = {.lex_state = 10}, - [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 7}, - [1239] = {.lex_state = 7}, - [1240] = {.lex_state = 10}, - [1241] = {.lex_state = 7}, - [1242] = {.lex_state = 10}, - [1243] = {.lex_state = 11, .external_lex_state = 2}, - [1244] = {.lex_state = 10}, - [1245] = {.lex_state = 10}, - [1246] = {.lex_state = 10}, - [1247] = {.lex_state = 10}, - [1248] = {.lex_state = 7}, - [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 7}, - [1252] = {.lex_state = 10}, - [1253] = {.lex_state = 10}, - [1254] = {.lex_state = 10}, - [1255] = {.lex_state = 10}, - [1256] = {.lex_state = 10}, - [1257] = {.lex_state = 7}, - [1258] = {.lex_state = 10}, - [1259] = {.lex_state = 10}, - [1260] = {.lex_state = 14}, - [1261] = {.lex_state = 14}, - [1262] = {.lex_state = 7}, - [1263] = {.lex_state = 10}, - [1264] = {.lex_state = 7}, - [1265] = {.lex_state = 10}, - [1266] = {.lex_state = 10}, - [1267] = {.lex_state = 10}, - [1268] = {.lex_state = 10}, - [1269] = {.lex_state = 7}, - [1270] = {.lex_state = 10}, - [1271] = {.lex_state = 10}, - [1272] = {.lex_state = 14}, - [1273] = {.lex_state = 14}, - [1274] = {.lex_state = 7}, - [1275] = {.lex_state = 14}, - [1276] = {.lex_state = 10}, - [1277] = {.lex_state = 10}, - [1278] = {.lex_state = 7}, - [1279] = {.lex_state = 10}, - [1280] = {.lex_state = 10}, - [1281] = {.lex_state = 10}, - [1282] = {.lex_state = 10}, - [1283] = {.lex_state = 10}, - [1284] = {.lex_state = 10}, - [1285] = {.lex_state = 10}, - [1286] = {.lex_state = 7}, - [1287] = {.lex_state = 7}, - [1288] = {.lex_state = 11, .external_lex_state = 2}, - [1289] = {.lex_state = 10}, - [1290] = {.lex_state = 10}, - [1291] = {.lex_state = 7}, - [1292] = {.lex_state = 7}, - [1293] = {.lex_state = 7}, - [1294] = {.lex_state = 7}, - [1295] = {.lex_state = 7}, - [1296] = {.lex_state = 7}, - [1297] = {.lex_state = 7}, - [1298] = {.lex_state = 7}, - [1299] = {.lex_state = 7}, - [1300] = {.lex_state = 7}, - [1301] = {.lex_state = 10}, - [1302] = {.lex_state = 7}, - [1303] = {.lex_state = 12, .external_lex_state = 2}, - [1304] = {.lex_state = 7}, - [1305] = {.lex_state = 7}, - [1306] = {.lex_state = 10}, - [1307] = {.lex_state = 10}, - [1308] = {.lex_state = 7}, - [1309] = {.lex_state = 7}, - [1310] = {.lex_state = 7}, - [1311] = {.lex_state = 7}, - [1312] = {.lex_state = 10}, - [1313] = {.lex_state = 7}, - [1314] = {.lex_state = 10}, - [1315] = {.lex_state = 10}, - [1316] = {.lex_state = 10}, - [1317] = {.lex_state = 10}, - [1318] = {.lex_state = 10}, - [1319] = {.lex_state = 7}, - [1320] = {.lex_state = 7}, - [1321] = {.lex_state = 7}, - [1322] = {.lex_state = 7}, - [1323] = {.lex_state = 7}, - [1324] = {.lex_state = 7}, - [1325] = {.lex_state = 7}, - [1326] = {.lex_state = 10}, - [1327] = {.lex_state = 7}, - [1328] = {.lex_state = 10}, - [1329] = {.lex_state = 10}, - [1330] = {.lex_state = 10}, - [1331] = {.lex_state = 10}, - [1332] = {.lex_state = 10}, - [1333] = {.lex_state = 10}, - [1334] = {.lex_state = 10}, - [1335] = {.lex_state = 10}, - [1336] = {.lex_state = 7}, - [1337] = {.lex_state = 7}, - [1338] = {.lex_state = 10}, - [1339] = {.lex_state = 10}, - [1340] = {.lex_state = 10}, - [1341] = {.lex_state = 10}, - [1342] = {.lex_state = 10}, - [1343] = {.lex_state = 10}, - [1344] = {.lex_state = 10}, - [1345] = {.lex_state = 10}, - [1346] = {.lex_state = 10}, - [1347] = {.lex_state = 10}, - [1348] = {.lex_state = 10}, - [1349] = {.lex_state = 10}, - [1350] = {.lex_state = 10}, - [1351] = {.lex_state = 10}, - [1352] = {.lex_state = 10}, - [1353] = {.lex_state = 7}, - [1354] = {.lex_state = 10}, - [1355] = {.lex_state = 10}, - [1356] = {.lex_state = 10}, - [1357] = {.lex_state = 10}, - [1358] = {.lex_state = 10}, - [1359] = {.lex_state = 10}, - [1360] = {.lex_state = 10}, - [1361] = {.lex_state = 10}, - [1362] = {.lex_state = 10}, - [1363] = {.lex_state = 10}, - [1364] = {.lex_state = 10}, - [1365] = {.lex_state = 14}, - [1366] = {.lex_state = 14}, - [1367] = {.lex_state = 14}, - [1368] = {.lex_state = 10}, - [1369] = {.lex_state = 7}, - [1370] = {.lex_state = 10}, - [1371] = {.lex_state = 10}, - [1372] = {.lex_state = 10}, - [1373] = {.lex_state = 10}, - [1374] = {.lex_state = 10}, - [1375] = {.lex_state = 7}, - [1376] = {.lex_state = 7}, - [1377] = {.lex_state = 7}, - [1378] = {.lex_state = 10}, - [1379] = {.lex_state = 10}, - [1380] = {.lex_state = 7}, - [1381] = {.lex_state = 7}, - [1382] = {.lex_state = 7}, - [1383] = {.lex_state = 7}, - [1384] = {.lex_state = 7}, - [1385] = {.lex_state = 7}, - [1386] = {.lex_state = 7}, - [1387] = {.lex_state = 7}, - [1388] = {.lex_state = 7}, - [1389] = {.lex_state = 7}, - [1390] = {.lex_state = 10}, - [1391] = {.lex_state = 7}, - [1392] = {.lex_state = 10}, - [1393] = {.lex_state = 7}, - [1394] = {.lex_state = 10}, - [1395] = {.lex_state = 10}, - [1396] = {.lex_state = 10}, - [1397] = {.lex_state = 10}, - [1398] = {.lex_state = 10}, - [1399] = {.lex_state = 10}, - [1400] = {.lex_state = 10}, - [1401] = {.lex_state = 10}, - [1402] = {.lex_state = 10}, - [1403] = {.lex_state = 10}, - [1404] = {.lex_state = 10}, - [1405] = {.lex_state = 10}, - [1406] = {.lex_state = 10}, - [1407] = {.lex_state = 10}, - [1408] = {.lex_state = 10}, - [1409] = {.lex_state = 10}, - [1410] = {.lex_state = 10}, - [1411] = {.lex_state = 10}, - [1412] = {.lex_state = 10}, - [1413] = {.lex_state = 7}, - [1414] = {.lex_state = 10}, - [1415] = {.lex_state = 10}, - [1416] = {.lex_state = 10}, - [1417] = {.lex_state = 10}, - [1418] = {.lex_state = 7}, - [1419] = {.lex_state = 7}, - [1420] = {.lex_state = 10}, - [1421] = {.lex_state = 10}, - [1422] = {.lex_state = 10}, - [1423] = {.lex_state = 10}, - [1424] = {.lex_state = 10}, - [1425] = {.lex_state = 10}, - [1426] = {.lex_state = 10}, - [1427] = {.lex_state = 10}, - [1428] = {.lex_state = 10}, - [1429] = {.lex_state = 10}, - [1430] = {.lex_state = 10}, - [1431] = {.lex_state = 10}, - [1432] = {.lex_state = 10}, - [1433] = {.lex_state = 10}, - [1434] = {.lex_state = 10}, - [1435] = {.lex_state = 10}, - [1436] = {.lex_state = 10}, - [1437] = {.lex_state = 10}, - [1438] = {.lex_state = 10}, - [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 10}, - [1441] = {.lex_state = 10}, - [1442] = {.lex_state = 10}, - [1443] = {.lex_state = 10}, - [1444] = {.lex_state = 7}, - [1445] = {.lex_state = 10}, - [1446] = {.lex_state = 7}, - [1447] = {.lex_state = 10}, - [1448] = {.lex_state = 10}, - [1449] = {.lex_state = 7}, - [1450] = {.lex_state = 10}, - [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 10}, - [1453] = {.lex_state = 10}, - [1454] = {.lex_state = 7}, - [1455] = {.lex_state = 10}, - [1456] = {.lex_state = 10}, - [1457] = {.lex_state = 10}, - [1458] = {.lex_state = 10}, - [1459] = {.lex_state = 10}, - [1460] = {.lex_state = 7}, - [1461] = {.lex_state = 10}, - [1462] = {.lex_state = 7}, - [1463] = {.lex_state = 7}, - [1464] = {.lex_state = 10}, - [1465] = {.lex_state = 10}, - [1466] = {.lex_state = 10}, - [1467] = {.lex_state = 10}, - [1468] = {.lex_state = 10}, - [1469] = {.lex_state = 10}, - [1470] = {.lex_state = 10}, - [1471] = {.lex_state = 11, .external_lex_state = 2}, - [1472] = {.lex_state = 14}, - [1473] = {.lex_state = 11, .external_lex_state = 2}, - [1474] = {.lex_state = 11, .external_lex_state = 2}, - [1475] = {.lex_state = 7}, - [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 11, .external_lex_state = 2}, - [1478] = {.lex_state = 7}, - [1479] = {.lex_state = 11, .external_lex_state = 2}, - [1480] = {.lex_state = 14}, - [1481] = {.lex_state = 14}, - [1482] = {.lex_state = 7}, - [1483] = {.lex_state = 7}, - [1484] = {.lex_state = 7}, - [1485] = {.lex_state = 7}, - [1486] = {.lex_state = 7}, - [1487] = {.lex_state = 7}, - [1488] = {.lex_state = 7}, - [1489] = {.lex_state = 7}, - [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 14}, + [418] = {.lex_state = 71, .external_lex_state = 2}, + [419] = {.lex_state = 71, .external_lex_state = 2}, + [420] = {.lex_state = 71, .external_lex_state = 2}, + [421] = {.lex_state = 71, .external_lex_state = 2}, + [422] = {.lex_state = 71, .external_lex_state = 2}, + [423] = {.lex_state = 71, .external_lex_state = 2}, + [424] = {.lex_state = 71, .external_lex_state = 2}, + [425] = {.lex_state = 71, .external_lex_state = 2}, + [426] = {.lex_state = 12, .external_lex_state = 2}, + [427] = {.lex_state = 71, .external_lex_state = 2}, + [428] = {.lex_state = 71, .external_lex_state = 2}, + [429] = {.lex_state = 14, .external_lex_state = 2}, + [430] = {.lex_state = 14, .external_lex_state = 2}, + [431] = {.lex_state = 14, .external_lex_state = 2}, + [432] = {.lex_state = 14, .external_lex_state = 2}, + [433] = {.lex_state = 14, .external_lex_state = 2}, + [434] = {.lex_state = 14, .external_lex_state = 2}, + [435] = {.lex_state = 14, .external_lex_state = 2}, + [436] = {.lex_state = 14, .external_lex_state = 2}, + [437] = {.lex_state = 14, .external_lex_state = 2}, + [438] = {.lex_state = 14, .external_lex_state = 2}, + [439] = {.lex_state = 14, .external_lex_state = 2}, + [440] = {.lex_state = 5, .external_lex_state = 2}, + [441] = {.lex_state = 7, .external_lex_state = 2}, + [442] = {.lex_state = 16, .external_lex_state = 2}, + [443] = {.lex_state = 16, .external_lex_state = 2}, + [444] = {.lex_state = 13, .external_lex_state = 2}, + [445] = {.lex_state = 13, .external_lex_state = 2}, + [446] = {.lex_state = 13, .external_lex_state = 2}, + [447] = {.lex_state = 13, .external_lex_state = 2}, + [448] = {.lex_state = 13, .external_lex_state = 2}, + [449] = {.lex_state = 13, .external_lex_state = 2}, + [450] = {.lex_state = 13, .external_lex_state = 2}, + [451] = {.lex_state = 13, .external_lex_state = 2}, + [452] = {.lex_state = 13, .external_lex_state = 2}, + [453] = {.lex_state = 13, .external_lex_state = 2}, + [454] = {.lex_state = 13, .external_lex_state = 2}, + [455] = {.lex_state = 13, .external_lex_state = 2}, + [456] = {.lex_state = 13, .external_lex_state = 2}, + [457] = {.lex_state = 13, .external_lex_state = 2}, + [458] = {.lex_state = 13, .external_lex_state = 2}, + [459] = {.lex_state = 13, .external_lex_state = 2}, + [460] = {.lex_state = 13, .external_lex_state = 2}, + [461] = {.lex_state = 14, .external_lex_state = 2}, + [462] = {.lex_state = 14, .external_lex_state = 2}, + [463] = {.lex_state = 5, .external_lex_state = 2}, + [464] = {.lex_state = 14, .external_lex_state = 2}, + [465] = {.lex_state = 14, .external_lex_state = 2}, + [466] = {.lex_state = 14, .external_lex_state = 2}, + [467] = {.lex_state = 14, .external_lex_state = 2}, + [468] = {.lex_state = 5, .external_lex_state = 2}, + [469] = {.lex_state = 14, .external_lex_state = 2}, + [470] = {.lex_state = 5, .external_lex_state = 2}, + [471] = {.lex_state = 5, .external_lex_state = 2}, + [472] = {.lex_state = 5, .external_lex_state = 2}, + [473] = {.lex_state = 14, .external_lex_state = 2}, + [474] = {.lex_state = 5, .external_lex_state = 2}, + [475] = {.lex_state = 14, .external_lex_state = 2}, + [476] = {.lex_state = 14, .external_lex_state = 2}, + [477] = {.lex_state = 5, .external_lex_state = 2}, + [478] = {.lex_state = 5, .external_lex_state = 2}, + [479] = {.lex_state = 5, .external_lex_state = 2}, + [480] = {.lex_state = 5, .external_lex_state = 2}, + [481] = {.lex_state = 5, .external_lex_state = 2}, + [482] = {.lex_state = 5, .external_lex_state = 2}, + [483] = {.lex_state = 5, .external_lex_state = 2}, + [484] = {.lex_state = 5, .external_lex_state = 2}, + [485] = {.lex_state = 5, .external_lex_state = 2}, + [486] = {.lex_state = 5, .external_lex_state = 2}, + [487] = {.lex_state = 5, .external_lex_state = 2}, + [488] = {.lex_state = 5, .external_lex_state = 2}, + [489] = {.lex_state = 5, .external_lex_state = 2}, + [490] = {.lex_state = 5, .external_lex_state = 2}, + [491] = {.lex_state = 5, .external_lex_state = 2}, + [492] = {.lex_state = 5, .external_lex_state = 2}, + [493] = {.lex_state = 5, .external_lex_state = 2}, + [494] = {.lex_state = 5, .external_lex_state = 2}, + [495] = {.lex_state = 5, .external_lex_state = 2}, + [496] = {.lex_state = 5, .external_lex_state = 2}, + [497] = {.lex_state = 14, .external_lex_state = 2}, + [498] = {.lex_state = 5, .external_lex_state = 2}, + [499] = {.lex_state = 14, .external_lex_state = 2}, + [500] = {.lex_state = 14, .external_lex_state = 2}, + [501] = {.lex_state = 14, .external_lex_state = 2}, + [502] = {.lex_state = 14, .external_lex_state = 2}, + [503] = {.lex_state = 73, .external_lex_state = 2}, + [504] = {.lex_state = 73, .external_lex_state = 2}, + [505] = {.lex_state = 73, .external_lex_state = 2}, + [506] = {.lex_state = 73, .external_lex_state = 2}, + [507] = {.lex_state = 73, .external_lex_state = 2}, + [508] = {.lex_state = 73, .external_lex_state = 2}, + [509] = {.lex_state = 73, .external_lex_state = 2}, + [510] = {.lex_state = 73, .external_lex_state = 2}, + [511] = {.lex_state = 73, .external_lex_state = 2}, + [512] = {.lex_state = 73, .external_lex_state = 2}, + [513] = {.lex_state = 73, .external_lex_state = 2}, + [514] = {.lex_state = 73, .external_lex_state = 2}, + [515] = {.lex_state = 73, .external_lex_state = 2}, + [516] = {.lex_state = 73, .external_lex_state = 2}, + [517] = {.lex_state = 73, .external_lex_state = 2}, + [518] = {.lex_state = 73, .external_lex_state = 2}, + [519] = {.lex_state = 73, .external_lex_state = 2}, + [520] = {.lex_state = 73, .external_lex_state = 2}, + [521] = {.lex_state = 73, .external_lex_state = 2}, + [522] = {.lex_state = 73, .external_lex_state = 2}, + [523] = {.lex_state = 73, .external_lex_state = 2}, + [524] = {.lex_state = 73, .external_lex_state = 2}, + [525] = {.lex_state = 73, .external_lex_state = 2}, + [526] = {.lex_state = 73, .external_lex_state = 2}, + [527] = {.lex_state = 73, .external_lex_state = 2}, + [528] = {.lex_state = 73, .external_lex_state = 2}, + [529] = {.lex_state = 73, .external_lex_state = 2}, + [530] = {.lex_state = 73, .external_lex_state = 2}, + [531] = {.lex_state = 23}, + [532] = {.lex_state = 73, .external_lex_state = 2}, + [533] = {.lex_state = 73, .external_lex_state = 2}, + [534] = {.lex_state = 73, .external_lex_state = 2}, + [535] = {.lex_state = 73, .external_lex_state = 2}, + [536] = {.lex_state = 73, .external_lex_state = 2}, + [537] = {.lex_state = 73, .external_lex_state = 2}, + [538] = {.lex_state = 73, .external_lex_state = 2}, + [539] = {.lex_state = 73, .external_lex_state = 2}, + [540] = {.lex_state = 73, .external_lex_state = 2}, + [541] = {.lex_state = 73, .external_lex_state = 2}, + [542] = {.lex_state = 73, .external_lex_state = 2}, + [543] = {.lex_state = 73, .external_lex_state = 2}, + [544] = {.lex_state = 73, .external_lex_state = 2}, + [545] = {.lex_state = 23}, + [546] = {.lex_state = 73, .external_lex_state = 2}, + [547] = {.lex_state = 73, .external_lex_state = 2}, + [548] = {.lex_state = 73, .external_lex_state = 2}, + [549] = {.lex_state = 73, .external_lex_state = 2}, + [550] = {.lex_state = 23}, + [551] = {.lex_state = 73, .external_lex_state = 2}, + [552] = {.lex_state = 73, .external_lex_state = 2}, + [553] = {.lex_state = 73, .external_lex_state = 2}, + [554] = {.lex_state = 73, .external_lex_state = 2}, + [555] = {.lex_state = 73, .external_lex_state = 2}, + [556] = {.lex_state = 73, .external_lex_state = 2}, + [557] = {.lex_state = 73, .external_lex_state = 2}, + [558] = {.lex_state = 73, .external_lex_state = 2}, + [559] = {.lex_state = 73, .external_lex_state = 2}, + [560] = {.lex_state = 73, .external_lex_state = 2}, + [561] = {.lex_state = 73, .external_lex_state = 2}, + [562] = {.lex_state = 73, .external_lex_state = 2}, + [563] = {.lex_state = 73, .external_lex_state = 2}, + [564] = {.lex_state = 73, .external_lex_state = 2}, + [565] = {.lex_state = 73, .external_lex_state = 2}, + [566] = {.lex_state = 73, .external_lex_state = 2}, + [567] = {.lex_state = 73, .external_lex_state = 2}, + [568] = {.lex_state = 73, .external_lex_state = 2}, + [569] = {.lex_state = 73, .external_lex_state = 2}, + [570] = {.lex_state = 73, .external_lex_state = 2}, + [571] = {.lex_state = 73, .external_lex_state = 2}, + [572] = {.lex_state = 73, .external_lex_state = 2}, + [573] = {.lex_state = 73, .external_lex_state = 2}, + [574] = {.lex_state = 73, .external_lex_state = 2}, + [575] = {.lex_state = 73, .external_lex_state = 2}, + [576] = {.lex_state = 73, .external_lex_state = 2}, + [577] = {.lex_state = 73, .external_lex_state = 2}, + [578] = {.lex_state = 73, .external_lex_state = 2}, + [579] = {.lex_state = 73, .external_lex_state = 2}, + [580] = {.lex_state = 73, .external_lex_state = 2}, + [581] = {.lex_state = 73, .external_lex_state = 2}, + [582] = {.lex_state = 73, .external_lex_state = 2}, + [583] = {.lex_state = 73, .external_lex_state = 2}, + [584] = {.lex_state = 73, .external_lex_state = 2}, + [585] = {.lex_state = 73, .external_lex_state = 2}, + [586] = {.lex_state = 73, .external_lex_state = 2}, + [587] = {.lex_state = 73, .external_lex_state = 2}, + [588] = {.lex_state = 73, .external_lex_state = 2}, + [589] = {.lex_state = 73, .external_lex_state = 2}, + [590] = {.lex_state = 73, .external_lex_state = 2}, + [591] = {.lex_state = 73, .external_lex_state = 2}, + [592] = {.lex_state = 73, .external_lex_state = 2}, + [593] = {.lex_state = 73, .external_lex_state = 2}, + [594] = {.lex_state = 73, .external_lex_state = 2}, + [595] = {.lex_state = 73, .external_lex_state = 2}, + [596] = {.lex_state = 73, .external_lex_state = 2}, + [597] = {.lex_state = 73, .external_lex_state = 2}, + [598] = {.lex_state = 73, .external_lex_state = 2}, + [599] = {.lex_state = 73, .external_lex_state = 2}, + [600] = {.lex_state = 73, .external_lex_state = 2}, + [601] = {.lex_state = 73, .external_lex_state = 2}, + [602] = {.lex_state = 73, .external_lex_state = 2}, + [603] = {.lex_state = 73, .external_lex_state = 2}, + [604] = {.lex_state = 73, .external_lex_state = 2}, + [605] = {.lex_state = 73, .external_lex_state = 2}, + [606] = {.lex_state = 73, .external_lex_state = 2}, + [607] = {.lex_state = 73, .external_lex_state = 2}, + [608] = {.lex_state = 73, .external_lex_state = 2}, + [609] = {.lex_state = 73, .external_lex_state = 2}, + [610] = {.lex_state = 73, .external_lex_state = 2}, + [611] = {.lex_state = 14, .external_lex_state = 2}, + [612] = {.lex_state = 73, .external_lex_state = 2}, + [613] = {.lex_state = 73, .external_lex_state = 2}, + [614] = {.lex_state = 73, .external_lex_state = 2}, + [615] = {.lex_state = 73, .external_lex_state = 2}, + [616] = {.lex_state = 73, .external_lex_state = 2}, + [617] = {.lex_state = 73, .external_lex_state = 2}, + [618] = {.lex_state = 73, .external_lex_state = 2}, + [619] = {.lex_state = 73, .external_lex_state = 2}, + [620] = {.lex_state = 73, .external_lex_state = 2}, + [621] = {.lex_state = 73, .external_lex_state = 2}, + [622] = {.lex_state = 73, .external_lex_state = 2}, + [623] = {.lex_state = 73, .external_lex_state = 2}, + [624] = {.lex_state = 73, .external_lex_state = 2}, + [625] = {.lex_state = 73, .external_lex_state = 2}, + [626] = {.lex_state = 73, .external_lex_state = 2}, + [627] = {.lex_state = 73, .external_lex_state = 2}, + [628] = {.lex_state = 73, .external_lex_state = 2}, + [629] = {.lex_state = 73, .external_lex_state = 2}, + [630] = {.lex_state = 73, .external_lex_state = 2}, + [631] = {.lex_state = 73, .external_lex_state = 2}, + [632] = {.lex_state = 73, .external_lex_state = 2}, + [633] = {.lex_state = 73, .external_lex_state = 2}, + [634] = {.lex_state = 73, .external_lex_state = 2}, + [635] = {.lex_state = 73, .external_lex_state = 2}, + [636] = {.lex_state = 73, .external_lex_state = 2}, + [637] = {.lex_state = 73, .external_lex_state = 2}, + [638] = {.lex_state = 73, .external_lex_state = 2}, + [639] = {.lex_state = 73, .external_lex_state = 2}, + [640] = {.lex_state = 73, .external_lex_state = 2}, + [641] = {.lex_state = 73, .external_lex_state = 2}, + [642] = {.lex_state = 73, .external_lex_state = 2}, + [643] = {.lex_state = 73, .external_lex_state = 2}, + [644] = {.lex_state = 14, .external_lex_state = 2}, + [645] = {.lex_state = 23}, + [646] = {.lex_state = 73, .external_lex_state = 2}, + [647] = {.lex_state = 73, .external_lex_state = 2}, + [648] = {.lex_state = 73, .external_lex_state = 2}, + [649] = {.lex_state = 73, .external_lex_state = 2}, + [650] = {.lex_state = 73, .external_lex_state = 2}, + [651] = {.lex_state = 23}, + [652] = {.lex_state = 73, .external_lex_state = 2}, + [653] = {.lex_state = 73, .external_lex_state = 2}, + [654] = {.lex_state = 73, .external_lex_state = 2}, + [655] = {.lex_state = 73, .external_lex_state = 2}, + [656] = {.lex_state = 73, .external_lex_state = 2}, + [657] = {.lex_state = 73, .external_lex_state = 2}, + [658] = {.lex_state = 73, .external_lex_state = 2}, + [659] = {.lex_state = 73, .external_lex_state = 2}, + [660] = {.lex_state = 73, .external_lex_state = 2}, + [661] = {.lex_state = 73, .external_lex_state = 2}, + [662] = {.lex_state = 73, .external_lex_state = 2}, + [663] = {.lex_state = 73, .external_lex_state = 2}, + [664] = {.lex_state = 73, .external_lex_state = 2}, + [665] = {.lex_state = 73, .external_lex_state = 2}, + [666] = {.lex_state = 73, .external_lex_state = 2}, + [667] = {.lex_state = 73, .external_lex_state = 2}, + [668] = {.lex_state = 73, .external_lex_state = 2}, + [669] = {.lex_state = 73, .external_lex_state = 2}, + [670] = {.lex_state = 73, .external_lex_state = 2}, + [671] = {.lex_state = 73, .external_lex_state = 2}, + [672] = {.lex_state = 73, .external_lex_state = 2}, + [673] = {.lex_state = 73, .external_lex_state = 2}, + [674] = {.lex_state = 73, .external_lex_state = 2}, + [675] = {.lex_state = 73, .external_lex_state = 2}, + [676] = {.lex_state = 73, .external_lex_state = 2}, + [677] = {.lex_state = 73, .external_lex_state = 2}, + [678] = {.lex_state = 73, .external_lex_state = 2}, + [679] = {.lex_state = 73, .external_lex_state = 2}, + [680] = {.lex_state = 73, .external_lex_state = 2}, + [681] = {.lex_state = 73, .external_lex_state = 2}, + [682] = {.lex_state = 73, .external_lex_state = 2}, + [683] = {.lex_state = 73, .external_lex_state = 2}, + [684] = {.lex_state = 14, .external_lex_state = 2}, + [685] = {.lex_state = 73, .external_lex_state = 2}, + [686] = {.lex_state = 73, .external_lex_state = 2}, + [687] = {.lex_state = 73, .external_lex_state = 2}, + [688] = {.lex_state = 73, .external_lex_state = 2}, + [689] = {.lex_state = 73, .external_lex_state = 2}, + [690] = {.lex_state = 73, .external_lex_state = 2}, + [691] = {.lex_state = 73, .external_lex_state = 2}, + [692] = {.lex_state = 73, .external_lex_state = 2}, + [693] = {.lex_state = 73, .external_lex_state = 2}, + [694] = {.lex_state = 73, .external_lex_state = 2}, + [695] = {.lex_state = 73, .external_lex_state = 2}, + [696] = {.lex_state = 73, .external_lex_state = 2}, + [697] = {.lex_state = 73, .external_lex_state = 2}, + [698] = {.lex_state = 73, .external_lex_state = 2}, + [699] = {.lex_state = 73, .external_lex_state = 2}, + [700] = {.lex_state = 73, .external_lex_state = 2}, + [701] = {.lex_state = 73, .external_lex_state = 2}, + [702] = {.lex_state = 73, .external_lex_state = 2}, + [703] = {.lex_state = 73, .external_lex_state = 2}, + [704] = {.lex_state = 73, .external_lex_state = 2}, + [705] = {.lex_state = 73, .external_lex_state = 2}, + [706] = {.lex_state = 73, .external_lex_state = 2}, + [707] = {.lex_state = 73, .external_lex_state = 2}, + [708] = {.lex_state = 73, .external_lex_state = 2}, + [709] = {.lex_state = 73, .external_lex_state = 2}, + [710] = {.lex_state = 73, .external_lex_state = 2}, + [711] = {.lex_state = 73, .external_lex_state = 2}, + [712] = {.lex_state = 73, .external_lex_state = 2}, + [713] = {.lex_state = 73, .external_lex_state = 2}, + [714] = {.lex_state = 73, .external_lex_state = 2}, + [715] = {.lex_state = 73, .external_lex_state = 2}, + [716] = {.lex_state = 73, .external_lex_state = 2}, + [717] = {.lex_state = 73, .external_lex_state = 2}, + [718] = {.lex_state = 73, .external_lex_state = 2}, + [719] = {.lex_state = 73, .external_lex_state = 2}, + [720] = {.lex_state = 73, .external_lex_state = 2}, + [721] = {.lex_state = 73, .external_lex_state = 2}, + [722] = {.lex_state = 73, .external_lex_state = 2}, + [723] = {.lex_state = 73, .external_lex_state = 2}, + [724] = {.lex_state = 73, .external_lex_state = 2}, + [725] = {.lex_state = 73, .external_lex_state = 2}, + [726] = {.lex_state = 73, .external_lex_state = 2}, + [727] = {.lex_state = 73, .external_lex_state = 2}, + [728] = {.lex_state = 73, .external_lex_state = 2}, + [729] = {.lex_state = 73, .external_lex_state = 2}, + [730] = {.lex_state = 73, .external_lex_state = 2}, + [731] = {.lex_state = 73, .external_lex_state = 2}, + [732] = {.lex_state = 73, .external_lex_state = 2}, + [733] = {.lex_state = 73, .external_lex_state = 2}, + [734] = {.lex_state = 73, .external_lex_state = 2}, + [735] = {.lex_state = 73, .external_lex_state = 2}, + [736] = {.lex_state = 73, .external_lex_state = 2}, + [737] = {.lex_state = 73, .external_lex_state = 2}, + [738] = {.lex_state = 73, .external_lex_state = 2}, + [739] = {.lex_state = 73, .external_lex_state = 2}, + [740] = {.lex_state = 73, .external_lex_state = 2}, + [741] = {.lex_state = 73, .external_lex_state = 2}, + [742] = {.lex_state = 73, .external_lex_state = 2}, + [743] = {.lex_state = 73, .external_lex_state = 2}, + [744] = {.lex_state = 73, .external_lex_state = 2}, + [745] = {.lex_state = 73, .external_lex_state = 2}, + [746] = {.lex_state = 73, .external_lex_state = 2}, + [747] = {.lex_state = 73, .external_lex_state = 2}, + [748] = {.lex_state = 73, .external_lex_state = 2}, + [749] = {.lex_state = 73, .external_lex_state = 2}, + [750] = {.lex_state = 73, .external_lex_state = 2}, + [751] = {.lex_state = 73, .external_lex_state = 2}, + [752] = {.lex_state = 73, .external_lex_state = 2}, + [753] = {.lex_state = 73, .external_lex_state = 2}, + [754] = {.lex_state = 73, .external_lex_state = 2}, + [755] = {.lex_state = 73, .external_lex_state = 2}, + [756] = {.lex_state = 73, .external_lex_state = 2}, + [757] = {.lex_state = 73, .external_lex_state = 2}, + [758] = {.lex_state = 73, .external_lex_state = 2}, + [759] = {.lex_state = 73, .external_lex_state = 2}, + [760] = {.lex_state = 73, .external_lex_state = 2}, + [761] = {.lex_state = 73, .external_lex_state = 2}, + [762] = {.lex_state = 73, .external_lex_state = 2}, + [763] = {.lex_state = 73, .external_lex_state = 2}, + [764] = {.lex_state = 73, .external_lex_state = 2}, + [765] = {.lex_state = 73, .external_lex_state = 2}, + [766] = {.lex_state = 73, .external_lex_state = 2}, + [767] = {.lex_state = 73, .external_lex_state = 2}, + [768] = {.lex_state = 73, .external_lex_state = 2}, + [769] = {.lex_state = 73, .external_lex_state = 2}, + [770] = {.lex_state = 73, .external_lex_state = 2}, + [771] = {.lex_state = 73, .external_lex_state = 2}, + [772] = {.lex_state = 73, .external_lex_state = 2}, + [773] = {.lex_state = 73, .external_lex_state = 2}, + [774] = {.lex_state = 73, .external_lex_state = 2}, + [775] = {.lex_state = 73, .external_lex_state = 2}, + [776] = {.lex_state = 73, .external_lex_state = 2}, + [777] = {.lex_state = 73, .external_lex_state = 2}, + [778] = {.lex_state = 73, .external_lex_state = 2}, + [779] = {.lex_state = 73, .external_lex_state = 2}, + [780] = {.lex_state = 73, .external_lex_state = 2}, + [781] = {.lex_state = 73, .external_lex_state = 2}, + [782] = {.lex_state = 73, .external_lex_state = 2}, + [783] = {.lex_state = 73, .external_lex_state = 2}, + [784] = {.lex_state = 73, .external_lex_state = 2}, + [785] = {.lex_state = 73, .external_lex_state = 2}, + [786] = {.lex_state = 73, .external_lex_state = 2}, + [787] = {.lex_state = 73, .external_lex_state = 2}, + [788] = {.lex_state = 17}, + [789] = {.lex_state = 17}, + [790] = {.lex_state = 17}, + [791] = {.lex_state = 17}, + [792] = {.lex_state = 17}, + [793] = {.lex_state = 17}, + [794] = {.lex_state = 17}, + [795] = {.lex_state = 17}, + [796] = {.lex_state = 14, .external_lex_state = 2}, + [797] = {.lex_state = 17}, + [798] = {.lex_state = 14, .external_lex_state = 2}, + [799] = {.lex_state = 14, .external_lex_state = 2}, + [800] = {.lex_state = 17}, + [801] = {.lex_state = 14, .external_lex_state = 2}, + [802] = {.lex_state = 17}, + [803] = {.lex_state = 14, .external_lex_state = 2}, + [804] = {.lex_state = 14, .external_lex_state = 2}, + [805] = {.lex_state = 14, .external_lex_state = 2}, + [806] = {.lex_state = 14, .external_lex_state = 2}, + [807] = {.lex_state = 14, .external_lex_state = 2}, + [808] = {.lex_state = 14, .external_lex_state = 2}, + [809] = {.lex_state = 14, .external_lex_state = 2}, + [810] = {.lex_state = 14, .external_lex_state = 2}, + [811] = {.lex_state = 14, .external_lex_state = 2}, + [812] = {.lex_state = 14, .external_lex_state = 2}, + [813] = {.lex_state = 14, .external_lex_state = 2}, + [814] = {.lex_state = 12, .external_lex_state = 2}, + [815] = {.lex_state = 14, .external_lex_state = 2}, + [816] = {.lex_state = 14, .external_lex_state = 2}, + [817] = {.lex_state = 14, .external_lex_state = 2}, + [818] = {.lex_state = 14, .external_lex_state = 2}, + [819] = {.lex_state = 14, .external_lex_state = 2}, + [820] = {.lex_state = 14, .external_lex_state = 2}, + [821] = {.lex_state = 14, .external_lex_state = 2}, + [822] = {.lex_state = 14, .external_lex_state = 2}, + [823] = {.lex_state = 14, .external_lex_state = 2}, + [824] = {.lex_state = 14, .external_lex_state = 2}, + [825] = {.lex_state = 14, .external_lex_state = 2}, + [826] = {.lex_state = 14, .external_lex_state = 2}, + [827] = {.lex_state = 14, .external_lex_state = 2}, + [828] = {.lex_state = 14, .external_lex_state = 2}, + [829] = {.lex_state = 14, .external_lex_state = 2}, + [830] = {.lex_state = 14, .external_lex_state = 2}, + [831] = {.lex_state = 14, .external_lex_state = 2}, + [832] = {.lex_state = 14, .external_lex_state = 2}, + [833] = {.lex_state = 14, .external_lex_state = 2}, + [834] = {.lex_state = 14, .external_lex_state = 2}, + [835] = {.lex_state = 14, .external_lex_state = 2}, + [836] = {.lex_state = 14, .external_lex_state = 2}, + [837] = {.lex_state = 14, .external_lex_state = 2}, + [838] = {.lex_state = 14, .external_lex_state = 2}, + [839] = {.lex_state = 14, .external_lex_state = 2}, + [840] = {.lex_state = 14, .external_lex_state = 2}, + [841] = {.lex_state = 14, .external_lex_state = 2}, + [842] = {.lex_state = 14, .external_lex_state = 2}, + [843] = {.lex_state = 14, .external_lex_state = 2}, + [844] = {.lex_state = 14, .external_lex_state = 2}, + [845] = {.lex_state = 14, .external_lex_state = 2}, + [846] = {.lex_state = 14, .external_lex_state = 2}, + [847] = {.lex_state = 14, .external_lex_state = 2}, + [848] = {.lex_state = 14, .external_lex_state = 2}, + [849] = {.lex_state = 14, .external_lex_state = 2}, + [850] = {.lex_state = 14, .external_lex_state = 2}, + [851] = {.lex_state = 14, .external_lex_state = 2}, + [852] = {.lex_state = 14, .external_lex_state = 2}, + [853] = {.lex_state = 14, .external_lex_state = 2}, + [854] = {.lex_state = 17}, + [855] = {.lex_state = 17}, + [856] = {.lex_state = 17}, + [857] = {.lex_state = 17}, + [858] = {.lex_state = 17}, + [859] = {.lex_state = 17}, + [860] = {.lex_state = 17}, + [861] = {.lex_state = 17}, + [862] = {.lex_state = 17}, + [863] = {.lex_state = 17}, + [864] = {.lex_state = 17}, + [865] = {.lex_state = 17}, + [866] = {.lex_state = 17}, + [867] = {.lex_state = 17}, + [868] = {.lex_state = 17}, + [869] = {.lex_state = 17}, + [870] = {.lex_state = 17}, + [871] = {.lex_state = 17}, + [872] = {.lex_state = 17}, + [873] = {.lex_state = 17}, + [874] = {.lex_state = 17}, + [875] = {.lex_state = 17}, + [876] = {.lex_state = 17}, + [877] = {.lex_state = 17}, + [878] = {.lex_state = 17}, + [879] = {.lex_state = 17}, + [880] = {.lex_state = 17}, + [881] = {.lex_state = 17}, + [882] = {.lex_state = 17}, + [883] = {.lex_state = 17}, + [884] = {.lex_state = 17}, + [885] = {.lex_state = 17}, + [886] = {.lex_state = 17}, + [887] = {.lex_state = 17}, + [888] = {.lex_state = 17}, + [889] = {.lex_state = 17}, + [890] = {.lex_state = 17}, + [891] = {.lex_state = 17}, + [892] = {.lex_state = 17}, + [893] = {.lex_state = 17}, + [894] = {.lex_state = 17}, + [895] = {.lex_state = 17}, + [896] = {.lex_state = 17}, + [897] = {.lex_state = 17}, + [898] = {.lex_state = 17}, + [899] = {.lex_state = 17}, + [900] = {.lex_state = 17}, + [901] = {.lex_state = 17}, + [902] = {.lex_state = 17}, + [903] = {.lex_state = 17}, + [904] = {.lex_state = 17}, + [905] = {.lex_state = 17}, + [906] = {.lex_state = 17}, + [907] = {.lex_state = 17}, + [908] = {.lex_state = 17}, + [909] = {.lex_state = 17}, + [910] = {.lex_state = 17}, + [911] = {.lex_state = 17}, + [912] = {.lex_state = 17}, + [913] = {.lex_state = 17}, + [914] = {.lex_state = 17}, + [915] = {.lex_state = 17}, + [916] = {.lex_state = 17}, + [917] = {.lex_state = 17}, + [918] = {.lex_state = 17}, + [919] = {.lex_state = 17}, + [920] = {.lex_state = 17}, + [921] = {.lex_state = 17}, + [922] = {.lex_state = 17}, + [923] = {.lex_state = 17}, + [924] = {.lex_state = 17}, + [925] = {.lex_state = 17}, + [926] = {.lex_state = 17}, + [927] = {.lex_state = 17}, + [928] = {.lex_state = 17}, + [929] = {.lex_state = 17}, + [930] = {.lex_state = 17}, + [931] = {.lex_state = 17}, + [932] = {.lex_state = 17}, + [933] = {.lex_state = 17}, + [934] = {.lex_state = 17}, + [935] = {.lex_state = 17}, + [936] = {.lex_state = 17}, + [937] = {.lex_state = 17}, + [938] = {.lex_state = 17}, + [939] = {.lex_state = 17}, + [940] = {.lex_state = 17}, + [941] = {.lex_state = 17}, + [942] = {.lex_state = 17}, + [943] = {.lex_state = 17}, + [944] = {.lex_state = 17}, + [945] = {.lex_state = 17}, + [946] = {.lex_state = 17}, + [947] = {.lex_state = 17}, + [948] = {.lex_state = 17}, + [949] = {.lex_state = 17}, + [950] = {.lex_state = 17}, + [951] = {.lex_state = 17}, + [952] = {.lex_state = 17}, + [953] = {.lex_state = 17}, + [954] = {.lex_state = 17}, + [955] = {.lex_state = 17}, + [956] = {.lex_state = 17}, + [957] = {.lex_state = 17}, + [958] = {.lex_state = 17}, + [959] = {.lex_state = 17}, + [960] = {.lex_state = 17}, + [961] = {.lex_state = 17}, + [962] = {.lex_state = 17}, + [963] = {.lex_state = 17}, + [964] = {.lex_state = 17}, + [965] = {.lex_state = 17}, + [966] = {.lex_state = 17}, + [967] = {.lex_state = 17}, + [968] = {.lex_state = 17}, + [969] = {.lex_state = 17}, + [970] = {.lex_state = 17}, + [971] = {.lex_state = 17}, + [972] = {.lex_state = 17}, + [973] = {.lex_state = 17}, + [974] = {.lex_state = 17}, + [975] = {.lex_state = 17}, + [976] = {.lex_state = 17}, + [977] = {.lex_state = 17}, + [978] = {.lex_state = 17}, + [979] = {.lex_state = 17}, + [980] = {.lex_state = 17}, + [981] = {.lex_state = 17}, + [982] = {.lex_state = 17}, + [983] = {.lex_state = 17}, + [984] = {.lex_state = 17}, + [985] = {.lex_state = 17}, + [986] = {.lex_state = 17}, + [987] = {.lex_state = 17}, + [988] = {.lex_state = 17}, + [989] = {.lex_state = 17}, + [990] = {.lex_state = 17}, + [991] = {.lex_state = 17}, + [992] = {.lex_state = 17}, + [993] = {.lex_state = 17}, + [994] = {.lex_state = 17}, + [995] = {.lex_state = 17}, + [996] = {.lex_state = 17}, + [997] = {.lex_state = 17}, + [998] = {.lex_state = 17}, + [999] = {.lex_state = 17}, + [1000] = {.lex_state = 17}, + [1001] = {.lex_state = 17}, + [1002] = {.lex_state = 17}, + [1003] = {.lex_state = 17}, + [1004] = {.lex_state = 17}, + [1005] = {.lex_state = 17}, + [1006] = {.lex_state = 17}, + [1007] = {.lex_state = 17}, + [1008] = {.lex_state = 17}, + [1009] = {.lex_state = 17}, + [1010] = {.lex_state = 17}, + [1011] = {.lex_state = 17}, + [1012] = {.lex_state = 17}, + [1013] = {.lex_state = 17}, + [1014] = {.lex_state = 17}, + [1015] = {.lex_state = 17}, + [1016] = {.lex_state = 17}, + [1017] = {.lex_state = 17}, + [1018] = {.lex_state = 17}, + [1019] = {.lex_state = 17}, + [1020] = {.lex_state = 17}, + [1021] = {.lex_state = 17}, + [1022] = {.lex_state = 17}, + [1023] = {.lex_state = 17}, + [1024] = {.lex_state = 17}, + [1025] = {.lex_state = 17}, + [1026] = {.lex_state = 17}, + [1027] = {.lex_state = 17}, + [1028] = {.lex_state = 17}, + [1029] = {.lex_state = 17}, + [1030] = {.lex_state = 17}, + [1031] = {.lex_state = 17}, + [1032] = {.lex_state = 17}, + [1033] = {.lex_state = 17}, + [1034] = {.lex_state = 17}, + [1035] = {.lex_state = 17}, + [1036] = {.lex_state = 17}, + [1037] = {.lex_state = 17}, + [1038] = {.lex_state = 17}, + [1039] = {.lex_state = 17}, + [1040] = {.lex_state = 17}, + [1041] = {.lex_state = 17}, + [1042] = {.lex_state = 17}, + [1043] = {.lex_state = 17}, + [1044] = {.lex_state = 17}, + [1045] = {.lex_state = 17}, + [1046] = {.lex_state = 17}, + [1047] = {.lex_state = 17}, + [1048] = {.lex_state = 17}, + [1049] = {.lex_state = 17}, + [1050] = {.lex_state = 17}, + [1051] = {.lex_state = 17}, + [1052] = {.lex_state = 17}, + [1053] = {.lex_state = 17}, + [1054] = {.lex_state = 17}, + [1055] = {.lex_state = 17}, + [1056] = {.lex_state = 17}, + [1057] = {.lex_state = 17}, + [1058] = {.lex_state = 13, .external_lex_state = 2}, + [1059] = {.lex_state = 13, .external_lex_state = 2}, + [1060] = {.lex_state = 13, .external_lex_state = 2}, + [1061] = {.lex_state = 15, .external_lex_state = 2}, + [1062] = {.lex_state = 15, .external_lex_state = 2}, + [1063] = {.lex_state = 13, .external_lex_state = 2}, + [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1065] = {.lex_state = 17}, + [1066] = {.lex_state = 13, .external_lex_state = 2}, + [1067] = {.lex_state = 13, .external_lex_state = 2}, + [1068] = {.lex_state = 13, .external_lex_state = 2}, + [1069] = {.lex_state = 8}, + [1070] = {.lex_state = 9}, + [1071] = {.lex_state = 8}, + [1072] = {.lex_state = 8}, + [1073] = {.lex_state = 23}, + [1074] = {.lex_state = 23}, + [1075] = {.lex_state = 23}, + [1076] = {.lex_state = 23}, + [1077] = {.lex_state = 14, .external_lex_state = 2}, + [1078] = {.lex_state = 23}, + [1079] = {.lex_state = 8}, + [1080] = {.lex_state = 23}, + [1081] = {.lex_state = 23}, + [1082] = {.lex_state = 23}, + [1083] = {.lex_state = 23}, + [1084] = {.lex_state = 8}, + [1085] = {.lex_state = 26}, + [1086] = {.lex_state = 17}, + [1087] = {.lex_state = 26}, + [1088] = {.lex_state = 8}, + [1089] = {.lex_state = 8}, + [1090] = {.lex_state = 26}, + [1091] = {.lex_state = 8}, + [1092] = {.lex_state = 8}, + [1093] = {.lex_state = 17}, + [1094] = {.lex_state = 17}, + [1095] = {.lex_state = 8}, + [1096] = {.lex_state = 26}, + [1097] = {.lex_state = 26}, + [1098] = {.lex_state = 8}, + [1099] = {.lex_state = 8}, + [1100] = {.lex_state = 17}, + [1101] = {.lex_state = 14, .external_lex_state = 2}, + [1102] = {.lex_state = 14, .external_lex_state = 2}, + [1103] = {.lex_state = 9}, + [1104] = {.lex_state = 9}, + [1105] = {.lex_state = 17}, + [1106] = {.lex_state = 17}, + [1107] = {.lex_state = 9}, + [1108] = {.lex_state = 9}, + [1109] = {.lex_state = 9}, + [1110] = {.lex_state = 9}, + [1111] = {.lex_state = 17}, + [1112] = {.lex_state = 17}, + [1113] = {.lex_state = 23}, + [1114] = {.lex_state = 23}, + [1115] = {.lex_state = 23}, + [1116] = {.lex_state = 23}, + [1117] = {.lex_state = 23}, + [1118] = {.lex_state = 23}, + [1119] = {.lex_state = 23}, + [1120] = {.lex_state = 23}, + [1121] = {.lex_state = 23}, + [1122] = {.lex_state = 23}, + [1123] = {.lex_state = 23}, + [1124] = {.lex_state = 23}, + [1125] = {.lex_state = 23}, + [1126] = {.lex_state = 23}, + [1127] = {.lex_state = 23}, + [1128] = {.lex_state = 23}, + [1129] = {.lex_state = 23}, + [1130] = {.lex_state = 23}, + [1131] = {.lex_state = 23}, + [1132] = {.lex_state = 23}, + [1133] = {.lex_state = 23}, + [1134] = {.lex_state = 23}, + [1135] = {.lex_state = 23}, + [1136] = {.lex_state = 23}, + [1137] = {.lex_state = 23}, + [1138] = {.lex_state = 23}, + [1139] = {.lex_state = 23}, + [1140] = {.lex_state = 23}, + [1141] = {.lex_state = 23}, + [1142] = {.lex_state = 23}, + [1143] = {.lex_state = 23}, + [1144] = {.lex_state = 23}, + [1145] = {.lex_state = 14, .external_lex_state = 2}, + [1146] = {.lex_state = 14, .external_lex_state = 2}, + [1147] = {.lex_state = 23}, + [1148] = {.lex_state = 9}, + [1149] = {.lex_state = 23}, + [1150] = {.lex_state = 9}, + [1151] = {.lex_state = 23}, + [1152] = {.lex_state = 23}, + [1153] = {.lex_state = 23}, + [1154] = {.lex_state = 23}, + [1155] = {.lex_state = 23}, + [1156] = {.lex_state = 9}, + [1157] = {.lex_state = 23}, + [1158] = {.lex_state = 9}, + [1159] = {.lex_state = 23}, + [1160] = {.lex_state = 23}, + [1161] = {.lex_state = 9}, + [1162] = {.lex_state = 23}, + [1163] = {.lex_state = 23}, + [1164] = {.lex_state = 23}, + [1165] = {.lex_state = 23}, + [1166] = {.lex_state = 23}, + [1167] = {.lex_state = 23}, + [1168] = {.lex_state = 23}, + [1169] = {.lex_state = 23}, + [1170] = {.lex_state = 23}, + [1171] = {.lex_state = 20}, + [1172] = {.lex_state = 23}, + [1173] = {.lex_state = 23}, + [1174] = {.lex_state = 23}, + [1175] = {.lex_state = 23}, + [1176] = {.lex_state = 23}, + [1177] = {.lex_state = 23}, + [1178] = {.lex_state = 23}, + [1179] = {.lex_state = 23}, + [1180] = {.lex_state = 17}, + [1181] = {.lex_state = 9}, + [1182] = {.lex_state = 23}, + [1183] = {.lex_state = 23}, + [1184] = {.lex_state = 23}, + [1185] = {.lex_state = 23}, + [1186] = {.lex_state = 14, .external_lex_state = 2}, + [1187] = {.lex_state = 23}, + [1188] = {.lex_state = 23}, + [1189] = {.lex_state = 9}, + [1190] = {.lex_state = 9}, + [1191] = {.lex_state = 23}, + [1192] = {.lex_state = 23}, + [1193] = {.lex_state = 23}, + [1194] = {.lex_state = 23}, + [1195] = {.lex_state = 23}, + [1196] = {.lex_state = 23}, + [1197] = {.lex_state = 23}, + [1198] = {.lex_state = 23}, + [1199] = {.lex_state = 23}, + [1200] = {.lex_state = 23}, + [1201] = {.lex_state = 23}, + [1202] = {.lex_state = 23}, + [1203] = {.lex_state = 23}, + [1204] = {.lex_state = 23}, + [1205] = {.lex_state = 23}, + [1206] = {.lex_state = 23}, + [1207] = {.lex_state = 23}, + [1208] = {.lex_state = 23}, + [1209] = {.lex_state = 23}, + [1210] = {.lex_state = 9}, + [1211] = {.lex_state = 20}, + [1212] = {.lex_state = 17}, + [1213] = {.lex_state = 9}, + [1214] = {.lex_state = 23}, + [1215] = {.lex_state = 14, .external_lex_state = 2}, + [1216] = {.lex_state = 23}, + [1217] = {.lex_state = 23}, + [1218] = {.lex_state = 23}, + [1219] = {.lex_state = 23}, + [1220] = {.lex_state = 23}, + [1221] = {.lex_state = 23}, + [1222] = {.lex_state = 23}, + [1223] = {.lex_state = 23}, + [1224] = {.lex_state = 14, .external_lex_state = 2}, + [1225] = {.lex_state = 23}, + [1226] = {.lex_state = 23}, + [1227] = {.lex_state = 23}, + [1228] = {.lex_state = 23}, + [1229] = {.lex_state = 23}, + [1230] = {.lex_state = 23}, + [1231] = {.lex_state = 23}, + [1232] = {.lex_state = 23}, + [1233] = {.lex_state = 23}, + [1234] = {.lex_state = 23}, + [1235] = {.lex_state = 23}, + [1236] = {.lex_state = 23}, + [1237] = {.lex_state = 17}, + [1238] = {.lex_state = 21}, + [1239] = {.lex_state = 23}, + [1240] = {.lex_state = 14, .external_lex_state = 2}, + [1241] = {.lex_state = 23}, + [1242] = {.lex_state = 23}, + [1243] = {.lex_state = 23}, + [1244] = {.lex_state = 23}, + [1245] = {.lex_state = 23}, + [1246] = {.lex_state = 23}, + [1247] = {.lex_state = 23}, + [1248] = {.lex_state = 23}, + [1249] = {.lex_state = 23}, + [1250] = {.lex_state = 23}, + [1251] = {.lex_state = 9}, + [1252] = {.lex_state = 23}, + [1253] = {.lex_state = 23}, + [1254] = {.lex_state = 17}, + [1255] = {.lex_state = 23}, + [1256] = {.lex_state = 23}, + [1257] = {.lex_state = 12, .external_lex_state = 2}, + [1258] = {.lex_state = 23}, + [1259] = {.lex_state = 23}, + [1260] = {.lex_state = 23}, + [1261] = {.lex_state = 23}, + [1262] = {.lex_state = 9}, + [1263] = {.lex_state = 23}, + [1264] = {.lex_state = 9}, + [1265] = {.lex_state = 9}, + [1266] = {.lex_state = 23}, + [1267] = {.lex_state = 9}, + [1268] = {.lex_state = 23}, + [1269] = {.lex_state = 23}, + [1270] = {.lex_state = 23}, + [1271] = {.lex_state = 23}, + [1272] = {.lex_state = 23}, + [1273] = {.lex_state = 23}, + [1274] = {.lex_state = 23}, + [1275] = {.lex_state = 23}, + [1276] = {.lex_state = 23}, + [1277] = {.lex_state = 23}, + [1278] = {.lex_state = 23}, + [1279] = {.lex_state = 23}, + [1280] = {.lex_state = 9}, + [1281] = {.lex_state = 20}, + [1282] = {.lex_state = 12, .external_lex_state = 2}, + [1283] = {.lex_state = 9}, + [1284] = {.lex_state = 9}, + [1285] = {.lex_state = 17}, + [1286] = {.lex_state = 23}, + [1287] = {.lex_state = 12, .external_lex_state = 2}, + [1288] = {.lex_state = 9}, + [1289] = {.lex_state = 9}, + [1290] = {.lex_state = 23}, + [1291] = {.lex_state = 23}, + [1292] = {.lex_state = 23}, + [1293] = {.lex_state = 21}, + [1294] = {.lex_state = 20}, + [1295] = {.lex_state = 23}, + [1296] = {.lex_state = 9}, + [1297] = {.lex_state = 23}, + [1298] = {.lex_state = 23}, + [1299] = {.lex_state = 9}, + [1300] = {.lex_state = 23}, + [1301] = {.lex_state = 20}, + [1302] = {.lex_state = 23}, + [1303] = {.lex_state = 20}, + [1304] = {.lex_state = 23}, + [1305] = {.lex_state = 23}, + [1306] = {.lex_state = 23}, + [1307] = {.lex_state = 9}, + [1308] = {.lex_state = 23}, + [1309] = {.lex_state = 23}, + [1310] = {.lex_state = 23}, + [1311] = {.lex_state = 23}, + [1312] = {.lex_state = 23}, + [1313] = {.lex_state = 23}, + [1314] = {.lex_state = 23}, + [1315] = {.lex_state = 23}, + [1316] = {.lex_state = 23}, + [1317] = {.lex_state = 23}, + [1318] = {.lex_state = 23}, + [1319] = {.lex_state = 23}, + [1320] = {.lex_state = 23}, + [1321] = {.lex_state = 23}, + [1322] = {.lex_state = 23}, + [1323] = {.lex_state = 23}, + [1324] = {.lex_state = 8}, + [1325] = {.lex_state = 23}, + [1326] = {.lex_state = 20}, + [1327] = {.lex_state = 23}, + [1328] = {.lex_state = 23}, + [1329] = {.lex_state = 23}, + [1330] = {.lex_state = 23}, + [1331] = {.lex_state = 23}, + [1332] = {.lex_state = 23}, + [1333] = {.lex_state = 20}, + [1334] = {.lex_state = 23}, + [1335] = {.lex_state = 20}, + [1336] = {.lex_state = 20}, + [1337] = {.lex_state = 23}, + [1338] = {.lex_state = 23}, + [1339] = {.lex_state = 23}, + [1340] = {.lex_state = 23}, + [1341] = {.lex_state = 23}, + [1342] = {.lex_state = 23}, + [1343] = {.lex_state = 23}, + [1344] = {.lex_state = 23}, + [1345] = {.lex_state = 23}, + [1346] = {.lex_state = 23}, + [1347] = {.lex_state = 23}, + [1348] = {.lex_state = 23}, + [1349] = {.lex_state = 23}, + [1350] = {.lex_state = 23}, + [1351] = {.lex_state = 23}, + [1352] = {.lex_state = 23}, + [1353] = {.lex_state = 23}, + [1354] = {.lex_state = 23}, + [1355] = {.lex_state = 23}, + [1356] = {.lex_state = 23}, + [1357] = {.lex_state = 23}, + [1358] = {.lex_state = 23}, + [1359] = {.lex_state = 23}, + [1360] = {.lex_state = 23}, + [1361] = {.lex_state = 23}, + [1362] = {.lex_state = 23}, + [1363] = {.lex_state = 23}, + [1364] = {.lex_state = 23}, + [1365] = {.lex_state = 23}, + [1366] = {.lex_state = 23}, + [1367] = {.lex_state = 23}, + [1368] = {.lex_state = 23}, + [1369] = {.lex_state = 23}, + [1370] = {.lex_state = 23}, + [1371] = {.lex_state = 23}, + [1372] = {.lex_state = 23}, + [1373] = {.lex_state = 23}, + [1374] = {.lex_state = 23}, + [1375] = {.lex_state = 23}, + [1376] = {.lex_state = 9}, + [1377] = {.lex_state = 23}, + [1378] = {.lex_state = 20}, + [1379] = {.lex_state = 23}, + [1380] = {.lex_state = 23}, + [1381] = {.lex_state = 23}, + [1382] = {.lex_state = 23}, + [1383] = {.lex_state = 23}, + [1384] = {.lex_state = 23}, + [1385] = {.lex_state = 23}, + [1386] = {.lex_state = 23}, + [1387] = {.lex_state = 23}, + [1388] = {.lex_state = 23}, + [1389] = {.lex_state = 23}, + [1390] = {.lex_state = 23}, + [1391] = {.lex_state = 23}, + [1392] = {.lex_state = 20}, + [1393] = {.lex_state = 23}, + [1394] = {.lex_state = 23}, + [1395] = {.lex_state = 23}, + [1396] = {.lex_state = 23}, + [1397] = {.lex_state = 23}, + [1398] = {.lex_state = 23}, + [1399] = {.lex_state = 23}, + [1400] = {.lex_state = 23}, + [1401] = {.lex_state = 23}, + [1402] = {.lex_state = 23}, + [1403] = {.lex_state = 23}, + [1404] = {.lex_state = 23}, + [1405] = {.lex_state = 23}, + [1406] = {.lex_state = 23}, + [1407] = {.lex_state = 23}, + [1408] = {.lex_state = 23}, + [1409] = {.lex_state = 23}, + [1410] = {.lex_state = 23}, + [1411] = {.lex_state = 23}, + [1412] = {.lex_state = 23}, + [1413] = {.lex_state = 23}, + [1414] = {.lex_state = 23}, + [1415] = {.lex_state = 23}, + [1416] = {.lex_state = 23}, + [1417] = {.lex_state = 23}, + [1418] = {.lex_state = 23}, + [1419] = {.lex_state = 23}, + [1420] = {.lex_state = 23}, + [1421] = {.lex_state = 23}, + [1422] = {.lex_state = 23}, + [1423] = {.lex_state = 23}, + [1424] = {.lex_state = 23}, + [1425] = {.lex_state = 23}, + [1426] = {.lex_state = 23}, + [1427] = {.lex_state = 23}, + [1428] = {.lex_state = 17}, + [1429] = {.lex_state = 23}, + [1430] = {.lex_state = 23}, + [1431] = {.lex_state = 9}, + [1432] = {.lex_state = 23}, + [1433] = {.lex_state = 17}, + [1434] = {.lex_state = 9}, + [1435] = {.lex_state = 9}, + [1436] = {.lex_state = 9}, + [1437] = {.lex_state = 9}, + [1438] = {.lex_state = 9}, + [1439] = {.lex_state = 9}, + [1440] = {.lex_state = 9}, + [1441] = {.lex_state = 9}, + [1442] = {.lex_state = 9}, + [1443] = {.lex_state = 9}, + [1444] = {.lex_state = 9}, + [1445] = {.lex_state = 9}, + [1446] = {.lex_state = 9}, + [1447] = {.lex_state = 9}, + [1448] = {.lex_state = 9}, + [1449] = {.lex_state = 9}, + [1450] = {.lex_state = 9}, + [1451] = {.lex_state = 9}, + [1452] = {.lex_state = 9}, + [1453] = {.lex_state = 9}, + [1454] = {.lex_state = 9}, + [1455] = {.lex_state = 9}, + [1456] = {.lex_state = 9}, + [1457] = {.lex_state = 9}, + [1458] = {.lex_state = 9}, + [1459] = {.lex_state = 9}, + [1460] = {.lex_state = 9}, + [1461] = {.lex_state = 9}, + [1462] = {.lex_state = 9}, + [1463] = {.lex_state = 9}, + [1464] = {.lex_state = 9}, + [1465] = {.lex_state = 9}, + [1466] = {.lex_state = 9}, + [1467] = {.lex_state = 9}, + [1468] = {.lex_state = 9}, + [1469] = {.lex_state = 9}, + [1470] = {.lex_state = 9}, + [1471] = {.lex_state = 9}, + [1472] = {.lex_state = 9}, + [1473] = {.lex_state = 9}, + [1474] = {.lex_state = 9}, + [1475] = {.lex_state = 9}, + [1476] = {.lex_state = 9}, + [1477] = {.lex_state = 9}, + [1478] = {.lex_state = 9}, + [1479] = {.lex_state = 9}, + [1480] = {.lex_state = 9}, + [1481] = {.lex_state = 9}, + [1482] = {.lex_state = 9}, + [1483] = {.lex_state = 9}, + [1484] = {.lex_state = 9}, + [1485] = {.lex_state = 9}, + [1486] = {.lex_state = 9}, + [1487] = {.lex_state = 10}, + [1488] = {.lex_state = 9}, + [1489] = {.lex_state = 9}, + [1490] = {.lex_state = 9}, + [1491] = {.lex_state = 9}, [1492] = {.lex_state = 9}, - [1493] = {.lex_state = 7}, - [1494] = {.lex_state = 7}, - [1495] = {.lex_state = 7}, - [1496] = {.lex_state = 7}, - [1497] = {.lex_state = 7}, - [1498] = {.lex_state = 14}, - [1499] = {.lex_state = 7}, - [1500] = {.lex_state = 7}, - [1501] = {.lex_state = 7}, - [1502] = {.lex_state = 7}, - [1503] = {.lex_state = 7}, - [1504] = {.lex_state = 14}, - [1505] = {.lex_state = 7}, + [1493] = {.lex_state = 9}, + [1494] = {.lex_state = 9}, + [1495] = {.lex_state = 9}, + [1496] = {.lex_state = 9}, + [1497] = {.lex_state = 9}, + [1498] = {.lex_state = 9}, + [1499] = {.lex_state = 9}, + [1500] = {.lex_state = 9}, + [1501] = {.lex_state = 9}, + [1502] = {.lex_state = 9}, + [1503] = {.lex_state = 9}, + [1504] = {.lex_state = 9}, + [1505] = {.lex_state = 9}, [1506] = {.lex_state = 9}, - [1507] = {.lex_state = 8}, + [1507] = {.lex_state = 9}, [1508] = {.lex_state = 9}, - [1509] = {.lex_state = 7}, - [1510] = {.lex_state = 11, .external_lex_state = 2}, - [1511] = {.lex_state = 7}, - [1512] = {.lex_state = 11, .external_lex_state = 2}, + [1509] = {.lex_state = 9}, + [1510] = {.lex_state = 9}, + [1511] = {.lex_state = 9}, + [1512] = {.lex_state = 9}, [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 11, .external_lex_state = 2}, - [1515] = {.lex_state = 11, .external_lex_state = 2}, - [1516] = {.lex_state = 7}, - [1517] = {.lex_state = 14}, - [1518] = {.lex_state = 8}, + [1514] = {.lex_state = 9}, + [1515] = {.lex_state = 9}, + [1516] = {.lex_state = 9}, + [1517] = {.lex_state = 9}, + [1518] = {.lex_state = 9}, [1519] = {.lex_state = 9}, [1520] = {.lex_state = 9}, - [1521] = {.lex_state = 7}, - [1522] = {.lex_state = 8}, - [1523] = {.lex_state = 7}, - [1524] = {.lex_state = 8}, - [1525] = {.lex_state = 7}, + [1521] = {.lex_state = 9}, + [1522] = {.lex_state = 9}, + [1523] = {.lex_state = 9}, + [1524] = {.lex_state = 9}, + [1525] = {.lex_state = 9}, [1526] = {.lex_state = 9}, [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 14}, + [1528] = {.lex_state = 9}, [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 14}, + [1531] = {.lex_state = 9}, [1532] = {.lex_state = 9}, [1533] = {.lex_state = 9}, - [1534] = {.lex_state = 7}, - [1535] = {.lex_state = 7}, - [1536] = {.lex_state = 14}, - [1537] = {.lex_state = 7}, - [1538] = {.lex_state = 8}, - [1539] = {.lex_state = 14}, - [1540] = {.lex_state = 14}, - [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 7}, - [1543] = {.lex_state = 7}, - [1544] = {.lex_state = 8}, - [1545] = {.lex_state = 8}, - [1546] = {.lex_state = 8}, - [1547] = {.lex_state = 8}, - [1548] = {.lex_state = 8}, - [1549] = {.lex_state = 7}, - [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 7}, - [1552] = {.lex_state = 8}, - [1553] = {.lex_state = 7}, - [1554] = {.lex_state = 8}, - [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 8}, - [1557] = {.lex_state = 8}, - [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 8}, - [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 8}, - [1562] = {.lex_state = 7}, - [1563] = {.lex_state = 7}, - [1564] = {.lex_state = 8}, - [1565] = {.lex_state = 7}, - [1566] = {.lex_state = 7}, - [1567] = {.lex_state = 7}, - [1568] = {.lex_state = 8}, - [1569] = {.lex_state = 7}, - [1570] = {.lex_state = 7}, - [1571] = {.lex_state = 7}, - [1572] = {.lex_state = 7}, - [1573] = {.lex_state = 7}, - [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 7}, - [1576] = {.lex_state = 7}, - [1577] = {.lex_state = 7}, - [1578] = {.lex_state = 7}, - [1579] = {.lex_state = 7}, - [1580] = {.lex_state = 7}, - [1581] = {.lex_state = 8}, - [1582] = {.lex_state = 8}, - [1583] = {.lex_state = 8}, - [1584] = {.lex_state = 20}, - [1585] = {.lex_state = 7}, + [1534] = {.lex_state = 9}, + [1535] = {.lex_state = 9}, + [1536] = {.lex_state = 9}, + [1537] = {.lex_state = 9}, + [1538] = {.lex_state = 9}, + [1539] = {.lex_state = 9}, + [1540] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, + [1542] = {.lex_state = 9}, + [1543] = {.lex_state = 9}, + [1544] = {.lex_state = 9}, + [1545] = {.lex_state = 9}, + [1546] = {.lex_state = 9}, + [1547] = {.lex_state = 9}, + [1548] = {.lex_state = 9}, + [1549] = {.lex_state = 9}, + [1550] = {.lex_state = 9}, + [1551] = {.lex_state = 9}, + [1552] = {.lex_state = 9}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 9}, + [1555] = {.lex_state = 9}, + [1556] = {.lex_state = 9}, + [1557] = {.lex_state = 9}, + [1558] = {.lex_state = 9}, + [1559] = {.lex_state = 9}, + [1560] = {.lex_state = 9}, + [1561] = {.lex_state = 9}, + [1562] = {.lex_state = 13, .external_lex_state = 2}, + [1563] = {.lex_state = 9}, + [1564] = {.lex_state = 13, .external_lex_state = 2}, + [1565] = {.lex_state = 13, .external_lex_state = 2}, + [1566] = {.lex_state = 17}, + [1567] = {.lex_state = 9}, + [1568] = {.lex_state = 17}, + [1569] = {.lex_state = 9}, + [1570] = {.lex_state = 17}, + [1571] = {.lex_state = 17}, + [1572] = {.lex_state = 13, .external_lex_state = 2}, + [1573] = {.lex_state = 13, .external_lex_state = 2}, + [1574] = {.lex_state = 13, .external_lex_state = 2}, + [1575] = {.lex_state = 17}, + [1576] = {.lex_state = 11}, + [1577] = {.lex_state = 9}, + [1578] = {.lex_state = 9}, + [1579] = {.lex_state = 11}, + [1580] = {.lex_state = 11}, + [1581] = {.lex_state = 9}, + [1582] = {.lex_state = 9}, + [1583] = {.lex_state = 9}, + [1584] = {.lex_state = 9}, + [1585] = {.lex_state = 9}, [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 8}, - [1588] = {.lex_state = 7}, - [1589] = {.lex_state = 7}, - [1590] = {.lex_state = 7}, - [1591] = {.lex_state = 8}, - [1592] = {.lex_state = 14}, - [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 20}, - [1595] = {.lex_state = 8}, - [1596] = {.lex_state = 8}, - [1597] = {.lex_state = 8}, - [1598] = {.lex_state = 20}, - [1599] = {.lex_state = 8}, - [1600] = {.lex_state = 8}, - [1601] = {.lex_state = 7}, - [1602] = {.lex_state = 20}, - [1603] = {.lex_state = 8}, - [1604] = {.lex_state = 8}, - [1605] = {.lex_state = 20}, - [1606] = {.lex_state = 7}, - [1607] = {.lex_state = 7}, - [1608] = {.lex_state = 8}, - [1609] = {.lex_state = 8}, - [1610] = {.lex_state = 7}, - [1611] = {.lex_state = 20}, - [1612] = {.lex_state = 8}, - [1613] = {.lex_state = 14}, - [1614] = {.lex_state = 20}, - [1615] = {.lex_state = 7}, - [1616] = {.lex_state = 7}, - [1617] = {.lex_state = 20}, - [1618] = {.lex_state = 14}, - [1619] = {.lex_state = 7}, - [1620] = {.lex_state = 8}, - [1621] = {.lex_state = 8}, - [1622] = {.lex_state = 20}, - [1623] = {.lex_state = 20}, - [1624] = {.lex_state = 20}, - [1625] = {.lex_state = 7}, - [1626] = {.lex_state = 20}, - [1627] = {.lex_state = 7}, - [1628] = {.lex_state = 7}, - [1629] = {.lex_state = 7}, - [1630] = {.lex_state = 7}, - [1631] = {.lex_state = 8}, - [1632] = {.lex_state = 7}, - [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 7}, - [1635] = {.lex_state = 8}, - [1636] = {.lex_state = 7}, - [1637] = {.lex_state = 8}, - [1638] = {.lex_state = 7}, - [1639] = {.lex_state = 8}, - [1640] = {.lex_state = 8}, - [1641] = {.lex_state = 8}, - [1642] = {.lex_state = 8}, - [1643] = {.lex_state = 8}, - [1644] = {.lex_state = 8}, - [1645] = {.lex_state = 8}, - [1646] = {.lex_state = 8}, - [1647] = {.lex_state = 8}, - [1648] = {.lex_state = 8}, - [1649] = {.lex_state = 8}, - [1650] = {.lex_state = 8}, - [1651] = {.lex_state = 8}, - [1652] = {.lex_state = 8}, - [1653] = {.lex_state = 8}, - [1654] = {.lex_state = 7}, - [1655] = {.lex_state = 8}, - [1656] = {.lex_state = 8}, - [1657] = {.lex_state = 8}, - [1658] = {.lex_state = 8}, - [1659] = {.lex_state = 8}, - [1660] = {.lex_state = 7}, - [1661] = {.lex_state = 8}, - [1662] = {.lex_state = 8}, - [1663] = {.lex_state = 8}, - [1664] = {.lex_state = 8}, - [1665] = {.lex_state = 8}, - [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 8}, - [1669] = {.lex_state = 8}, - [1670] = {.lex_state = 8}, - [1671] = {.lex_state = 7}, - [1672] = {.lex_state = 8}, - [1673] = {.lex_state = 8}, - [1674] = {.lex_state = 7}, - [1675] = {.lex_state = 8}, - [1676] = {.lex_state = 8}, - [1677] = {.lex_state = 8}, - [1678] = {.lex_state = 8}, - [1679] = {.lex_state = 8}, - [1680] = {.lex_state = 8}, - [1681] = {.lex_state = 8}, - [1682] = {.lex_state = 7}, - [1683] = {.lex_state = 8}, - [1684] = {.lex_state = 8}, - [1685] = {.lex_state = 8}, - [1686] = {.lex_state = 8}, - [1687] = {.lex_state = 8}, - [1688] = {.lex_state = 8}, - [1689] = {.lex_state = 8}, - [1690] = {.lex_state = 7}, - [1691] = {.lex_state = 8}, - [1692] = {.lex_state = 8}, - [1693] = {.lex_state = 8}, - [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 7}, - [1696] = {.lex_state = 8}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 7}, - [1699] = {.lex_state = 7}, - [1700] = {.lex_state = 8}, - [1701] = {.lex_state = 8}, - [1702] = {.lex_state = 7}, - [1703] = {.lex_state = 7}, - [1704] = {.lex_state = 7}, - [1705] = {.lex_state = 8}, - [1706] = {.lex_state = 8}, - [1707] = {.lex_state = 8}, - [1708] = {.lex_state = 8}, - [1709] = {.lex_state = 8}, - [1710] = {.lex_state = 7}, - [1711] = {.lex_state = 7}, - [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 7}, - [1714] = {.lex_state = 7}, - [1715] = {.lex_state = 7}, - [1716] = {.lex_state = 7}, - [1717] = {.lex_state = 7}, - [1718] = {.lex_state = 7}, - [1719] = {.lex_state = 7}, - [1720] = {.lex_state = 7}, - [1721] = {.lex_state = 7}, - [1722] = {.lex_state = 7}, - [1723] = {.lex_state = 8}, - [1724] = {.lex_state = 8}, - [1725] = {.lex_state = 8}, - [1726] = {.lex_state = 8}, - [1727] = {.lex_state = 7}, - [1728] = {.lex_state = 8}, - [1729] = {.lex_state = 8}, - [1730] = {.lex_state = 8}, - [1731] = {.lex_state = 8}, - [1732] = {.lex_state = 8}, - [1733] = {.lex_state = 7}, - [1734] = {.lex_state = 8}, - [1735] = {.lex_state = 8}, - [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 8}, - [1738] = {.lex_state = 8}, - [1739] = {.lex_state = 8}, - [1740] = {.lex_state = 7}, - [1741] = {.lex_state = 8}, - [1742] = {.lex_state = 8}, - [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 8}, - [1745] = {.lex_state = 8}, - [1746] = {.lex_state = 7}, - [1747] = {.lex_state = 8}, - [1748] = {.lex_state = 7}, - [1749] = {.lex_state = 8}, - [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 7}, - [1752] = {.lex_state = 8}, - [1753] = {.lex_state = 8}, - [1754] = {.lex_state = 8}, - [1755] = {.lex_state = 8}, - [1756] = {.lex_state = 8}, - [1757] = {.lex_state = 8}, - [1758] = {.lex_state = 8}, - [1759] = {.lex_state = 8}, - [1760] = {.lex_state = 8}, - [1761] = {.lex_state = 8}, - [1762] = {.lex_state = 8}, - [1763] = {.lex_state = 8}, - [1764] = {.lex_state = 8}, - [1765] = {.lex_state = 8}, - [1766] = {.lex_state = 8}, - [1767] = {.lex_state = 8}, - [1768] = {.lex_state = 7}, - [1769] = {.lex_state = 8}, - [1770] = {.lex_state = 8}, - [1771] = {.lex_state = 8}, - [1772] = {.lex_state = 8}, - [1773] = {.lex_state = 8}, - [1774] = {.lex_state = 8}, - [1775] = {.lex_state = 8}, - [1776] = {.lex_state = 8}, - [1777] = {.lex_state = 8}, - [1778] = {.lex_state = 8}, - [1779] = {.lex_state = 8}, - [1780] = {.lex_state = 8}, - [1781] = {.lex_state = 8}, - [1782] = {.lex_state = 7}, - [1783] = {.lex_state = 8}, - [1784] = {.lex_state = 8}, - [1785] = {.lex_state = 8}, - [1786] = {.lex_state = 7}, - [1787] = {.lex_state = 8}, - [1788] = {.lex_state = 8}, - [1789] = {.lex_state = 8}, - [1790] = {.lex_state = 8}, - [1791] = {.lex_state = 8}, - [1792] = {.lex_state = 8}, - [1793] = {.lex_state = 7}, - [1794] = {.lex_state = 7}, - [1795] = {.lex_state = 14}, - [1796] = {.lex_state = 7}, - [1797] = {.lex_state = 7}, - [1798] = {.lex_state = 7}, - [1799] = {.lex_state = 7}, - [1800] = {.lex_state = 7}, - [1801] = {.lex_state = 7}, - [1802] = {.lex_state = 7}, - [1803] = {.lex_state = 7}, - [1804] = {.lex_state = 7}, - [1805] = {.lex_state = 7}, - [1806] = {.lex_state = 7}, - [1807] = {.lex_state = 7}, - [1808] = {.lex_state = 7}, - [1809] = {.lex_state = 7}, - [1810] = {.lex_state = 7}, - [1811] = {.lex_state = 7}, - [1812] = {.lex_state = 7}, - [1813] = {.lex_state = 7}, - [1814] = {.lex_state = 7}, - [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 7}, - [1817] = {.lex_state = 7}, - [1818] = {.lex_state = 7}, - [1819] = {.lex_state = 7}, - [1820] = {.lex_state = 7}, - [1821] = {.lex_state = 7}, - [1822] = {.lex_state = 7}, - [1823] = {.lex_state = 7}, - [1824] = {.lex_state = 7}, - [1825] = {.lex_state = 7}, - [1826] = {.lex_state = 7}, - [1827] = {.lex_state = 7}, - [1828] = {.lex_state = 7}, - [1829] = {.lex_state = 7}, - [1830] = {.lex_state = 7}, - [1831] = {.lex_state = 7}, - [1832] = {.lex_state = 7}, - [1833] = {.lex_state = 7}, - [1834] = {.lex_state = 7}, - [1835] = {.lex_state = 7}, - [1836] = {.lex_state = 7}, - [1837] = {.lex_state = 7}, - [1838] = {.lex_state = 7}, - [1839] = {.lex_state = 7}, - [1840] = {.lex_state = 7}, - [1841] = {.lex_state = 8}, - [1842] = {.lex_state = 7}, - [1843] = {.lex_state = 7}, - [1844] = {.lex_state = 7}, - [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 14}, - [1847] = {.lex_state = 8}, - [1848] = {.lex_state = 7}, - [1849] = {.lex_state = 7}, - [1850] = {.lex_state = 7}, - [1851] = {.lex_state = 7}, - [1852] = {.lex_state = 7}, - [1853] = {.lex_state = 7}, - [1854] = {.lex_state = 7}, - [1855] = {.lex_state = 7}, - [1856] = {.lex_state = 7}, - [1857] = {.lex_state = 7}, - [1858] = {.lex_state = 7}, - [1859] = {.lex_state = 7}, - [1860] = {.lex_state = 7}, - [1861] = {.lex_state = 7}, - [1862] = {.lex_state = 7}, - [1863] = {.lex_state = 7}, - [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 8}, - [1866] = {.lex_state = 7}, - [1867] = {.lex_state = 7}, - [1868] = {.lex_state = 7}, - [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 7}, - [1871] = {.lex_state = 7}, - [1872] = {.lex_state = 7}, - [1873] = {.lex_state = 7}, - [1874] = {.lex_state = 14}, - [1875] = {.lex_state = 8}, - [1876] = {.lex_state = 14}, - [1877] = {.lex_state = 14}, - [1878] = {.lex_state = 14}, - [1879] = {.lex_state = 14}, - [1880] = {.lex_state = 14}, - [1881] = {.lex_state = 14}, - [1882] = {.lex_state = 14}, - [1883] = {.lex_state = 14}, - [1884] = {.lex_state = 14}, - [1885] = {.lex_state = 14}, - [1886] = {.lex_state = 14}, - [1887] = {.lex_state = 14}, - [1888] = {.lex_state = 14}, - [1889] = {.lex_state = 14}, - [1890] = {.lex_state = 14}, - [1891] = {.lex_state = 14}, - [1892] = {.lex_state = 14}, - [1893] = {.lex_state = 14}, - [1894] = {.lex_state = 14}, - [1895] = {.lex_state = 14}, - [1896] = {.lex_state = 14}, - [1897] = {.lex_state = 14}, - [1898] = {.lex_state = 14}, - [1899] = {.lex_state = 14}, - [1900] = {.lex_state = 14}, - [1901] = {.lex_state = 14}, - [1902] = {.lex_state = 27}, - [1903] = {.lex_state = 16}, - [1904] = {.lex_state = 27}, - [1905] = {.lex_state = 16}, - [1906] = {.lex_state = 16}, - [1907] = {.lex_state = 16}, - [1908] = {.lex_state = 16}, - [1909] = {.lex_state = 16}, - [1910] = {.lex_state = 16}, - [1911] = {.lex_state = 16}, - [1912] = {.lex_state = 16}, - [1913] = {.lex_state = 16}, - [1914] = {.lex_state = 27}, - [1915] = {.lex_state = 16}, - [1916] = {.lex_state = 27}, - [1917] = {.lex_state = 27}, - [1918] = {.lex_state = 16}, - [1919] = {.lex_state = 16}, - [1920] = {.lex_state = 27}, - [1921] = {.lex_state = 14}, - [1922] = {.lex_state = 14}, - [1923] = {.lex_state = 14}, - [1924] = {.lex_state = 14}, - [1925] = {.lex_state = 14}, - [1926] = {.lex_state = 27}, - [1927] = {.lex_state = 14}, - [1928] = {.lex_state = 14}, - [1929] = {.lex_state = 14}, - [1930] = {.lex_state = 14}, - [1931] = {.lex_state = 14}, - [1932] = {.lex_state = 14}, - [1933] = {.lex_state = 14}, - [1934] = {.lex_state = 14}, - [1935] = {.lex_state = 16}, - [1936] = {.lex_state = 16}, - [1937] = {.lex_state = 16}, - [1938] = {.lex_state = 14}, - [1939] = {.lex_state = 27}, - [1940] = {.lex_state = 14}, - [1941] = {.lex_state = 27}, - [1942] = {.lex_state = 16}, - [1943] = {.lex_state = 27}, - [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 27}, - [1946] = {.lex_state = 27}, - [1947] = {.lex_state = 27}, - [1948] = {.lex_state = 27}, - [1949] = {.lex_state = 14}, - [1950] = {.lex_state = 27}, - [1951] = {.lex_state = 14}, - [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 27}, - [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 16}, - [1956] = {.lex_state = 27}, - [1957] = {.lex_state = 27}, - [1958] = {.lex_state = 16}, - [1959] = {.lex_state = 27}, - [1960] = {.lex_state = 27}, - [1961] = {.lex_state = 14}, - [1962] = {.lex_state = 27}, - [1963] = {.lex_state = 27}, - [1964] = {.lex_state = 14}, - [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 27}, - [1967] = {.lex_state = 27}, - [1968] = {.lex_state = 27}, - [1969] = {.lex_state = 27}, - [1970] = {.lex_state = 27}, - [1971] = {.lex_state = 27}, - [1972] = {.lex_state = 27}, - [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 14}, - [1975] = {.lex_state = 27}, - [1976] = {.lex_state = 27}, - [1977] = {.lex_state = 14}, - [1978] = {.lex_state = 27}, - [1979] = {.lex_state = 27}, - [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 16}, - [1982] = {.lex_state = 14}, - [1983] = {.lex_state = 27}, - [1984] = {.lex_state = 27}, - [1985] = {.lex_state = 27}, - [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 14}, - [1988] = {.lex_state = 27}, - [1989] = {.lex_state = 27}, - [1990] = {.lex_state = 27}, - [1991] = {.lex_state = 27}, - [1992] = {.lex_state = 27}, - [1993] = {.lex_state = 27}, - [1994] = {.lex_state = 27}, - [1995] = {.lex_state = 27}, - [1996] = {.lex_state = 27}, - [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 14}, - [1999] = {.lex_state = 14}, - [2000] = {.lex_state = 16}, - [2001] = {.lex_state = 27}, - [2002] = {.lex_state = 16}, - [2003] = {.lex_state = 16}, - [2004] = {.lex_state = 27}, - [2005] = {.lex_state = 27}, - [2006] = {.lex_state = 16}, - [2007] = {.lex_state = 17}, - [2008] = {.lex_state = 16}, - [2009] = {.lex_state = 16}, - [2010] = {.lex_state = 16}, - [2011] = {.lex_state = 27}, - [2012] = {.lex_state = 16}, - [2013] = {.lex_state = 16}, - [2014] = {.lex_state = 16}, - [2015] = {.lex_state = 16}, - [2016] = {.lex_state = 16}, - [2017] = {.lex_state = 16}, - [2018] = {.lex_state = 14}, - [2019] = {.lex_state = 14}, - [2020] = {.lex_state = 14}, - [2021] = {.lex_state = 14}, - [2022] = {.lex_state = 14}, - [2023] = {.lex_state = 14}, - [2024] = {.lex_state = 14}, - [2025] = {.lex_state = 14}, - [2026] = {.lex_state = 14}, - [2027] = {.lex_state = 14}, - [2028] = {.lex_state = 14}, - [2029] = {.lex_state = 14}, - [2030] = {.lex_state = 14}, - [2031] = {.lex_state = 14}, - [2032] = {.lex_state = 14}, - [2033] = {.lex_state = 14}, - [2034] = {.lex_state = 16}, - [2035] = {.lex_state = 14}, - [2036] = {.lex_state = 14}, - [2037] = {.lex_state = 16}, - [2038] = {.lex_state = 16}, - [2039] = {.lex_state = 27}, + [1587] = {.lex_state = 9}, + [1588] = {.lex_state = 9}, + [1589] = {.lex_state = 9}, + [1590] = {.lex_state = 9}, + [1591] = {.lex_state = 9}, + [1592] = {.lex_state = 9}, + [1593] = {.lex_state = 9}, + [1594] = {.lex_state = 9}, + [1595] = {.lex_state = 9}, + [1596] = {.lex_state = 9}, + [1597] = {.lex_state = 10}, + [1598] = {.lex_state = 11}, + [1599] = {.lex_state = 10}, + [1600] = {.lex_state = 11}, + [1601] = {.lex_state = 11}, + [1602] = {.lex_state = 11}, + [1603] = {.lex_state = 9}, + [1604] = {.lex_state = 9}, + [1605] = {.lex_state = 9}, + [1606] = {.lex_state = 9}, + [1607] = {.lex_state = 9}, + [1608] = {.lex_state = 9}, + [1609] = {.lex_state = 11}, + [1610] = {.lex_state = 9}, + [1611] = {.lex_state = 11}, + [1612] = {.lex_state = 10}, + [1613] = {.lex_state = 10}, + [1614] = {.lex_state = 11}, + [1615] = {.lex_state = 11}, + [1616] = {.lex_state = 10}, + [1617] = {.lex_state = 11}, + [1618] = {.lex_state = 10}, + [1619] = {.lex_state = 9}, + [1620] = {.lex_state = 9}, + [1621] = {.lex_state = 10}, + [1622] = {.lex_state = 10}, + [1623] = {.lex_state = 10}, + [1624] = {.lex_state = 10}, + [1625] = {.lex_state = 17}, + [1626] = {.lex_state = 10}, + [1627] = {.lex_state = 10}, + [1628] = {.lex_state = 10}, + [1629] = {.lex_state = 10}, + [1630] = {.lex_state = 10}, + [1631] = {.lex_state = 10}, + [1632] = {.lex_state = 17}, + [1633] = {.lex_state = 10}, + [1634] = {.lex_state = 10}, + [1635] = {.lex_state = 9}, + [1636] = {.lex_state = 9}, + [1637] = {.lex_state = 9}, + [1638] = {.lex_state = 9}, + [1639] = {.lex_state = 9}, + [1640] = {.lex_state = 9}, + [1641] = {.lex_state = 9}, + [1642] = {.lex_state = 9}, + [1643] = {.lex_state = 9}, + [1644] = {.lex_state = 9}, + [1645] = {.lex_state = 9}, + [1646] = {.lex_state = 9}, + [1647] = {.lex_state = 17}, + [1648] = {.lex_state = 9}, + [1649] = {.lex_state = 9}, + [1650] = {.lex_state = 9}, + [1651] = {.lex_state = 10}, + [1652] = {.lex_state = 17}, + [1653] = {.lex_state = 10}, + [1654] = {.lex_state = 22}, + [1655] = {.lex_state = 9}, + [1656] = {.lex_state = 10}, + [1657] = {.lex_state = 9}, + [1658] = {.lex_state = 22}, + [1659] = {.lex_state = 10}, + [1660] = {.lex_state = 22}, + [1661] = {.lex_state = 10}, + [1662] = {.lex_state = 22}, + [1663] = {.lex_state = 10}, + [1664] = {.lex_state = 22}, + [1665] = {.lex_state = 22}, + [1666] = {.lex_state = 9}, + [1667] = {.lex_state = 10}, + [1668] = {.lex_state = 10}, + [1669] = {.lex_state = 10}, + [1670] = {.lex_state = 10}, + [1671] = {.lex_state = 10}, + [1672] = {.lex_state = 10}, + [1673] = {.lex_state = 9}, + [1674] = {.lex_state = 10}, + [1675] = {.lex_state = 9}, + [1676] = {.lex_state = 9}, + [1677] = {.lex_state = 10}, + [1678] = {.lex_state = 9}, + [1679] = {.lex_state = 9}, + [1680] = {.lex_state = 9}, + [1681] = {.lex_state = 10}, + [1682] = {.lex_state = 9}, + [1683] = {.lex_state = 10}, + [1684] = {.lex_state = 9}, + [1685] = {.lex_state = 9}, + [1686] = {.lex_state = 9}, + [1687] = {.lex_state = 9}, + [1688] = {.lex_state = 22}, + [1689] = {.lex_state = 9}, + [1690] = {.lex_state = 22}, + [1691] = {.lex_state = 9}, + [1692] = {.lex_state = 10}, + [1693] = {.lex_state = 10}, + [1694] = {.lex_state = 9}, + [1695] = {.lex_state = 9}, + [1696] = {.lex_state = 9}, + [1697] = {.lex_state = 17}, + [1698] = {.lex_state = 11}, + [1699] = {.lex_state = 22}, + [1700] = {.lex_state = 9}, + [1701] = {.lex_state = 9}, + [1702] = {.lex_state = 22}, + [1703] = {.lex_state = 9}, + [1704] = {.lex_state = 10}, + [1705] = {.lex_state = 9}, + [1706] = {.lex_state = 10}, + [1707] = {.lex_state = 9}, + [1708] = {.lex_state = 22}, + [1709] = {.lex_state = 9}, + [1710] = {.lex_state = 9}, + [1711] = {.lex_state = 9}, + [1712] = {.lex_state = 22}, + [1713] = {.lex_state = 10}, + [1714] = {.lex_state = 9}, + [1715] = {.lex_state = 10}, + [1716] = {.lex_state = 9}, + [1717] = {.lex_state = 9}, + [1718] = {.lex_state = 10}, + [1719] = {.lex_state = 10}, + [1720] = {.lex_state = 10}, + [1721] = {.lex_state = 10}, + [1722] = {.lex_state = 10}, + [1723] = {.lex_state = 9}, + [1724] = {.lex_state = 10}, + [1725] = {.lex_state = 10}, + [1726] = {.lex_state = 10}, + [1727] = {.lex_state = 9}, + [1728] = {.lex_state = 10}, + [1729] = {.lex_state = 10}, + [1730] = {.lex_state = 10}, + [1731] = {.lex_state = 10}, + [1732] = {.lex_state = 10}, + [1733] = {.lex_state = 10}, + [1734] = {.lex_state = 10}, + [1735] = {.lex_state = 10}, + [1736] = {.lex_state = 10}, + [1737] = {.lex_state = 10}, + [1738] = {.lex_state = 10}, + [1739] = {.lex_state = 9}, + [1740] = {.lex_state = 10}, + [1741] = {.lex_state = 9}, + [1742] = {.lex_state = 9}, + [1743] = {.lex_state = 10}, + [1744] = {.lex_state = 10}, + [1745] = {.lex_state = 10}, + [1746] = {.lex_state = 10}, + [1747] = {.lex_state = 10}, + [1748] = {.lex_state = 10}, + [1749] = {.lex_state = 10}, + [1750] = {.lex_state = 9}, + [1751] = {.lex_state = 10}, + [1752] = {.lex_state = 10}, + [1753] = {.lex_state = 10}, + [1754] = {.lex_state = 10}, + [1755] = {.lex_state = 10}, + [1756] = {.lex_state = 10}, + [1757] = {.lex_state = 10}, + [1758] = {.lex_state = 10}, + [1759] = {.lex_state = 10}, + [1760] = {.lex_state = 10}, + [1761] = {.lex_state = 10}, + [1762] = {.lex_state = 10}, + [1763] = {.lex_state = 10}, + [1764] = {.lex_state = 17}, + [1765] = {.lex_state = 10}, + [1766] = {.lex_state = 9}, + [1767] = {.lex_state = 9}, + [1768] = {.lex_state = 9}, + [1769] = {.lex_state = 9}, + [1770] = {.lex_state = 9}, + [1771] = {.lex_state = 9}, + [1772] = {.lex_state = 9}, + [1773] = {.lex_state = 9}, + [1774] = {.lex_state = 9}, + [1775] = {.lex_state = 9}, + [1776] = {.lex_state = 9}, + [1777] = {.lex_state = 9}, + [1778] = {.lex_state = 9}, + [1779] = {.lex_state = 9}, + [1780] = {.lex_state = 9}, + [1781] = {.lex_state = 9}, + [1782] = {.lex_state = 10}, + [1783] = {.lex_state = 10}, + [1784] = {.lex_state = 10}, + [1785] = {.lex_state = 10}, + [1786] = {.lex_state = 10}, + [1787] = {.lex_state = 10}, + [1788] = {.lex_state = 9}, + [1789] = {.lex_state = 9}, + [1790] = {.lex_state = 10}, + [1791] = {.lex_state = 10}, + [1792] = {.lex_state = 10}, + [1793] = {.lex_state = 9}, + [1794] = {.lex_state = 10}, + [1795] = {.lex_state = 10}, + [1796] = {.lex_state = 10}, + [1797] = {.lex_state = 10}, + [1798] = {.lex_state = 9}, + [1799] = {.lex_state = 10}, + [1800] = {.lex_state = 10}, + [1801] = {.lex_state = 10}, + [1802] = {.lex_state = 10}, + [1803] = {.lex_state = 10}, + [1804] = {.lex_state = 10}, + [1805] = {.lex_state = 10}, + [1806] = {.lex_state = 10}, + [1807] = {.lex_state = 10}, + [1808] = {.lex_state = 10}, + [1809] = {.lex_state = 10}, + [1810] = {.lex_state = 10}, + [1811] = {.lex_state = 10}, + [1812] = {.lex_state = 10}, + [1813] = {.lex_state = 10}, + [1814] = {.lex_state = 10}, + [1815] = {.lex_state = 10}, + [1816] = {.lex_state = 9}, + [1817] = {.lex_state = 9}, + [1818] = {.lex_state = 10}, + [1819] = {.lex_state = 10}, + [1820] = {.lex_state = 9}, + [1821] = {.lex_state = 10}, + [1822] = {.lex_state = 10}, + [1823] = {.lex_state = 10}, + [1824] = {.lex_state = 10}, + [1825] = {.lex_state = 9}, + [1826] = {.lex_state = 10}, + [1827] = {.lex_state = 10}, + [1828] = {.lex_state = 10}, + [1829] = {.lex_state = 10}, + [1830] = {.lex_state = 10}, + [1831] = {.lex_state = 10}, + [1832] = {.lex_state = 10}, + [1833] = {.lex_state = 10}, + [1834] = {.lex_state = 10}, + [1835] = {.lex_state = 10}, + [1836] = {.lex_state = 10}, + [1837] = {.lex_state = 10}, + [1838] = {.lex_state = 10}, + [1839] = {.lex_state = 9}, + [1840] = {.lex_state = 10}, + [1841] = {.lex_state = 10}, + [1842] = {.lex_state = 10}, + [1843] = {.lex_state = 10}, + [1844] = {.lex_state = 10}, + [1845] = {.lex_state = 10}, + [1846] = {.lex_state = 10}, + [1847] = {.lex_state = 10}, + [1848] = {.lex_state = 9}, + [1849] = {.lex_state = 10}, + [1850] = {.lex_state = 10}, + [1851] = {.lex_state = 10}, + [1852] = {.lex_state = 10}, + [1853] = {.lex_state = 10}, + [1854] = {.lex_state = 10}, + [1855] = {.lex_state = 10}, + [1856] = {.lex_state = 10}, + [1857] = {.lex_state = 10}, + [1858] = {.lex_state = 10}, + [1859] = {.lex_state = 10}, + [1860] = {.lex_state = 10}, + [1861] = {.lex_state = 10}, + [1862] = {.lex_state = 10}, + [1863] = {.lex_state = 10}, + [1864] = {.lex_state = 10}, + [1865] = {.lex_state = 10}, + [1866] = {.lex_state = 10}, + [1867] = {.lex_state = 9}, + [1868] = {.lex_state = 9}, + [1869] = {.lex_state = 9}, + [1870] = {.lex_state = 10}, + [1871] = {.lex_state = 9}, + [1872] = {.lex_state = 10}, + [1873] = {.lex_state = 9}, + [1874] = {.lex_state = 9}, + [1875] = {.lex_state = 10}, + [1876] = {.lex_state = 9}, + [1877] = {.lex_state = 10}, + [1878] = {.lex_state = 10}, + [1879] = {.lex_state = 10}, + [1880] = {.lex_state = 9}, + [1881] = {.lex_state = 9}, + [1882] = {.lex_state = 9}, + [1883] = {.lex_state = 9}, + [1884] = {.lex_state = 9}, + [1885] = {.lex_state = 9}, + [1886] = {.lex_state = 9}, + [1887] = {.lex_state = 9}, + [1888] = {.lex_state = 9}, + [1889] = {.lex_state = 9}, + [1890] = {.lex_state = 9}, + [1891] = {.lex_state = 9}, + [1892] = {.lex_state = 9}, + [1893] = {.lex_state = 9}, + [1894] = {.lex_state = 9}, + [1895] = {.lex_state = 9}, + [1896] = {.lex_state = 9}, + [1897] = {.lex_state = 9}, + [1898] = {.lex_state = 9}, + [1899] = {.lex_state = 9}, + [1900] = {.lex_state = 9}, + [1901] = {.lex_state = 9}, + [1902] = {.lex_state = 9}, + [1903] = {.lex_state = 9}, + [1904] = {.lex_state = 9}, + [1905] = {.lex_state = 9}, + [1906] = {.lex_state = 9}, + [1907] = {.lex_state = 9}, + [1908] = {.lex_state = 9}, + [1909] = {.lex_state = 9}, + [1910] = {.lex_state = 9}, + [1911] = {.lex_state = 9}, + [1912] = {.lex_state = 9}, + [1913] = {.lex_state = 9}, + [1914] = {.lex_state = 9}, + [1915] = {.lex_state = 9}, + [1916] = {.lex_state = 9}, + [1917] = {.lex_state = 9}, + [1918] = {.lex_state = 9}, + [1919] = {.lex_state = 9}, + [1920] = {.lex_state = 10}, + [1921] = {.lex_state = 10}, + [1922] = {.lex_state = 10}, + [1923] = {.lex_state = 10}, + [1924] = {.lex_state = 10}, + [1925] = {.lex_state = 10}, + [1926] = {.lex_state = 10}, + [1927] = {.lex_state = 17}, + [1928] = {.lex_state = 10}, + [1929] = {.lex_state = 9}, + [1930] = {.lex_state = 10}, + [1931] = {.lex_state = 9}, + [1932] = {.lex_state = 10}, + [1933] = {.lex_state = 9}, + [1934] = {.lex_state = 9}, + [1935] = {.lex_state = 9}, + [1936] = {.lex_state = 10}, + [1937] = {.lex_state = 17}, + [1938] = {.lex_state = 9}, + [1939] = {.lex_state = 9}, + [1940] = {.lex_state = 9}, + [1941] = {.lex_state = 9}, + [1942] = {.lex_state = 9}, + [1943] = {.lex_state = 9}, + [1944] = {.lex_state = 9}, + [1945] = {.lex_state = 17}, + [1946] = {.lex_state = 9}, + [1947] = {.lex_state = 9}, + [1948] = {.lex_state = 9}, + [1949] = {.lex_state = 17}, + [1950] = {.lex_state = 9}, + [1951] = {.lex_state = 9}, + [1952] = {.lex_state = 10}, + [1953] = {.lex_state = 17}, + [1954] = {.lex_state = 9}, + [1955] = {.lex_state = 10}, + [1956] = {.lex_state = 9}, + [1957] = {.lex_state = 10}, + [1958] = {.lex_state = 9}, + [1959] = {.lex_state = 9}, + [1960] = {.lex_state = 9}, + [1961] = {.lex_state = 17}, + [1962] = {.lex_state = 9}, + [1963] = {.lex_state = 9}, + [1964] = {.lex_state = 9}, + [1965] = {.lex_state = 9}, + [1966] = {.lex_state = 9}, + [1967] = {.lex_state = 9}, + [1968] = {.lex_state = 9}, + [1969] = {.lex_state = 9}, + [1970] = {.lex_state = 9}, + [1971] = {.lex_state = 9}, + [1972] = {.lex_state = 9}, + [1973] = {.lex_state = 9}, + [1974] = {.lex_state = 17}, + [1975] = {.lex_state = 17}, + [1976] = {.lex_state = 17}, + [1977] = {.lex_state = 17}, + [1978] = {.lex_state = 17}, + [1979] = {.lex_state = 17}, + [1980] = {.lex_state = 17}, + [1981] = {.lex_state = 17}, + [1982] = {.lex_state = 17}, + [1983] = {.lex_state = 17}, + [1984] = {.lex_state = 17}, + [1985] = {.lex_state = 17}, + [1986] = {.lex_state = 17}, + [1987] = {.lex_state = 17}, + [1988] = {.lex_state = 17}, + [1989] = {.lex_state = 17}, + [1990] = {.lex_state = 17}, + [1991] = {.lex_state = 17}, + [1992] = {.lex_state = 17}, + [1993] = {.lex_state = 17}, + [1994] = {.lex_state = 17}, + [1995] = {.lex_state = 17}, + [1996] = {.lex_state = 31}, + [1997] = {.lex_state = 31}, + [1998] = {.lex_state = 18}, + [1999] = {.lex_state = 18}, + [2000] = {.lex_state = 18}, + [2001] = {.lex_state = 18}, + [2002] = {.lex_state = 18}, + [2003] = {.lex_state = 18}, + [2004] = {.lex_state = 18}, + [2005] = {.lex_state = 17}, + [2006] = {.lex_state = 17}, + [2007] = {.lex_state = 18}, + [2008] = {.lex_state = 18}, + [2009] = {.lex_state = 18}, + [2010] = {.lex_state = 17}, + [2011] = {.lex_state = 18}, + [2012] = {.lex_state = 18}, + [2013] = {.lex_state = 17}, + [2014] = {.lex_state = 17}, + [2015] = {.lex_state = 31}, + [2016] = {.lex_state = 17}, + [2017] = {.lex_state = 18}, + [2018] = {.lex_state = 13, .external_lex_state = 2}, + [2019] = {.lex_state = 17}, + [2020] = {.lex_state = 17}, + [2021] = {.lex_state = 17}, + [2022] = {.lex_state = 18}, + [2023] = {.lex_state = 17}, + [2024] = {.lex_state = 17}, + [2025] = {.lex_state = 18}, + [2026] = {.lex_state = 17}, + [2027] = {.lex_state = 17}, + [2028] = {.lex_state = 31}, + [2029] = {.lex_state = 31}, + [2030] = {.lex_state = 31}, + [2031] = {.lex_state = 31}, + [2032] = {.lex_state = 17}, + [2033] = {.lex_state = 31}, + [2034] = {.lex_state = 17}, + [2035] = {.lex_state = 17}, + [2036] = {.lex_state = 18}, + [2037] = {.lex_state = 18}, + [2038] = {.lex_state = 31}, + [2039] = {.lex_state = 17}, [2040] = {.lex_state = 17}, - [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 23}, - [2043] = {.lex_state = 14}, - [2044] = {.lex_state = 16}, - [2045] = {.lex_state = 17}, - [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 27}, - [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 23}, - [2050] = {.lex_state = 21}, - [2051] = {.lex_state = 14}, - [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 27}, - [2054] = {.lex_state = 14}, - [2055] = {.lex_state = 14}, - [2056] = {.lex_state = 27}, - [2057] = {.lex_state = 14}, - [2058] = {.lex_state = 16}, - [2059] = {.lex_state = 27}, - [2060] = {.lex_state = 14}, - [2061] = {.lex_state = 14}, - [2062] = {.lex_state = 14}, - [2063] = {.lex_state = 14}, - [2064] = {.lex_state = 21}, - [2065] = {.lex_state = 16}, - [2066] = {.lex_state = 17}, + [2041] = {.lex_state = 31}, + [2042] = {.lex_state = 17}, + [2043] = {.lex_state = 18}, + [2044] = {.lex_state = 31}, + [2045] = {.lex_state = 31}, + [2046] = {.lex_state = 31}, + [2047] = {.lex_state = 17}, + [2048] = {.lex_state = 31}, + [2049] = {.lex_state = 31}, + [2050] = {.lex_state = 17}, + [2051] = {.lex_state = 18}, + [2052] = {.lex_state = 31}, + [2053] = {.lex_state = 17}, + [2054] = {.lex_state = 18}, + [2055] = {.lex_state = 31}, + [2056] = {.lex_state = 31}, + [2057] = {.lex_state = 31}, + [2058] = {.lex_state = 31}, + [2059] = {.lex_state = 31}, + [2060] = {.lex_state = 17}, + [2061] = {.lex_state = 31}, + [2062] = {.lex_state = 31}, + [2063] = {.lex_state = 31}, + [2064] = {.lex_state = 31}, + [2065] = {.lex_state = 31}, + [2066] = {.lex_state = 31}, [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 21}, - [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 16}, - [2071] = {.lex_state = 21}, - [2072] = {.lex_state = 16}, - [2073] = {.lex_state = 16}, - [2074] = {.lex_state = 16}, - [2075] = {.lex_state = 14}, - [2076] = {.lex_state = 27}, - [2077] = {.lex_state = 27}, - [2078] = {.lex_state = 27}, - [2079] = {.lex_state = 27}, - [2080] = {.lex_state = 27}, - [2081] = {.lex_state = 27}, - [2082] = {.lex_state = 27}, - [2083] = {.lex_state = 27}, - [2084] = {.lex_state = 27}, - [2085] = {.lex_state = 27}, - [2086] = {.lex_state = 27}, - [2087] = {.lex_state = 23}, - [2088] = {.lex_state = 27}, - [2089] = {.lex_state = 14}, - [2090] = {.lex_state = 14}, - [2091] = {.lex_state = 27}, - [2092] = {.lex_state = 27}, - [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 27}, - [2095] = {.lex_state = 27}, - [2096] = {.lex_state = 27}, - [2097] = {.lex_state = 27}, - [2098] = {.lex_state = 27}, - [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 27}, - [2102] = {.lex_state = 27}, - [2103] = {.lex_state = 27}, - [2104] = {.lex_state = 27}, - [2105] = {.lex_state = 23}, - [2106] = {.lex_state = 27}, - [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 14}, - [2109] = {.lex_state = 14}, - [2110] = {.lex_state = 27}, - [2111] = {.lex_state = 23}, - [2112] = {.lex_state = 27}, - [2113] = {.lex_state = 10}, - [2114] = {.lex_state = 27}, - [2115] = {.lex_state = 27}, - [2116] = {.lex_state = 14}, + [2068] = {.lex_state = 31}, + [2069] = {.lex_state = 31}, + [2070] = {.lex_state = 17}, + [2071] = {.lex_state = 17}, + [2072] = {.lex_state = 31}, + [2073] = {.lex_state = 31}, + [2074] = {.lex_state = 31}, + [2075] = {.lex_state = 31}, + [2076] = {.lex_state = 31}, + [2077] = {.lex_state = 31}, + [2078] = {.lex_state = 31}, + [2079] = {.lex_state = 31}, + [2080] = {.lex_state = 31}, + [2081] = {.lex_state = 31}, + [2082] = {.lex_state = 31}, + [2083] = {.lex_state = 31}, + [2084] = {.lex_state = 31}, + [2085] = {.lex_state = 31}, + [2086] = {.lex_state = 31}, + [2087] = {.lex_state = 31}, + [2088] = {.lex_state = 31}, + [2089] = {.lex_state = 17}, + [2090] = {.lex_state = 31}, + [2091] = {.lex_state = 31}, + [2092] = {.lex_state = 31}, + [2093] = {.lex_state = 31}, + [2094] = {.lex_state = 31}, + [2095] = {.lex_state = 17}, + [2096] = {.lex_state = 17}, + [2097] = {.lex_state = 17}, + [2098] = {.lex_state = 17}, + [2099] = {.lex_state = 17}, + [2100] = {.lex_state = 17}, + [2101] = {.lex_state = 17}, + [2102] = {.lex_state = 17}, + [2103] = {.lex_state = 18}, + [2104] = {.lex_state = 18}, + [2105] = {.lex_state = 18}, + [2106] = {.lex_state = 18}, + [2107] = {.lex_state = 18}, + [2108] = {.lex_state = 31}, + [2109] = {.lex_state = 18}, + [2110] = {.lex_state = 31}, + [2111] = {.lex_state = 18}, + [2112] = {.lex_state = 18}, + [2113] = {.lex_state = 18}, + [2114] = {.lex_state = 18}, + [2115] = {.lex_state = 18}, + [2116] = {.lex_state = 19}, [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 16}, - [2119] = {.lex_state = 16}, - [2120] = {.lex_state = 16}, - [2121] = {.lex_state = 27}, - [2122] = {.lex_state = 27}, - [2123] = {.lex_state = 23}, - [2124] = {.lex_state = 16}, - [2125] = {.lex_state = 27}, - [2126] = {.lex_state = 27}, - [2127] = {.lex_state = 27}, + [2118] = {.lex_state = 18}, + [2119] = {.lex_state = 18}, + [2120] = {.lex_state = 17}, + [2121] = {.lex_state = 17}, + [2122] = {.lex_state = 17}, + [2123] = {.lex_state = 17}, + [2124] = {.lex_state = 17}, + [2125] = {.lex_state = 17}, + [2126] = {.lex_state = 17}, + [2127] = {.lex_state = 17}, [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 23}, - [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 27}, - [2132] = {.lex_state = 14}, - [2133] = {.lex_state = 14}, + [2129] = {.lex_state = 17}, + [2130] = {.lex_state = 19}, + [2131] = {.lex_state = 31}, + [2132] = {.lex_state = 17}, + [2133] = {.lex_state = 18}, [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 10}, - [2136] = {.lex_state = 10}, - [2137] = {.lex_state = 6}, - [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 14}, - [2140] = {.lex_state = 27}, - [2141] = {.lex_state = 14}, - [2142] = {.lex_state = 14}, - [2143] = {.lex_state = 14}, - [2144] = {.lex_state = 14}, - [2145] = {.lex_state = 14}, - [2146] = {.lex_state = 14}, - [2147] = {.lex_state = 27}, - [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 17}, - [2150] = {.lex_state = 16}, - [2151] = {.lex_state = 6}, - [2152] = {.lex_state = 10}, - [2153] = {.lex_state = 14}, - [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 70}, - [2156] = {.lex_state = 14}, - [2157] = {.lex_state = 10}, - [2158] = {.lex_state = 14}, - [2159] = {.lex_state = 14}, - [2160] = {.lex_state = 14}, - [2161] = {.lex_state = 14}, - [2162] = {.lex_state = 6}, - [2163] = {.lex_state = 14}, - [2164] = {.lex_state = 14}, - [2165] = {.lex_state = 27}, - [2166] = {.lex_state = 14}, - [2167] = {.lex_state = 14}, - [2168] = {.lex_state = 27}, - [2169] = {.lex_state = 14}, - [2170] = {.lex_state = 27}, - [2171] = {.lex_state = 14}, - [2172] = {.lex_state = 27}, - [2173] = {.lex_state = 14}, - [2174] = {.lex_state = 27}, - [2175] = {.lex_state = 14}, - [2176] = {.lex_state = 23}, - [2177] = {.lex_state = 14}, - [2178] = {.lex_state = 14}, - [2179] = {.lex_state = 14}, - [2180] = {.lex_state = 14}, - [2181] = {.lex_state = 14}, - [2182] = {.lex_state = 23}, - [2183] = {.lex_state = 14}, - [2184] = {.lex_state = 14}, - [2185] = {.lex_state = 14}, - [2186] = {.lex_state = 14}, - [2187] = {.lex_state = 14}, - [2188] = {.lex_state = 14}, - [2189] = {.lex_state = 14}, - [2190] = {.lex_state = 14}, - [2191] = {.lex_state = 14}, - [2192] = {.lex_state = 14}, - [2193] = {.lex_state = 14}, - [2194] = {.lex_state = 14}, - [2195] = {.lex_state = 14}, - [2196] = {.lex_state = 14}, - [2197] = {.lex_state = 14}, - [2198] = {.lex_state = 23}, - [2199] = {.lex_state = 23}, - [2200] = {.lex_state = 23}, - [2201] = {.lex_state = 14}, - [2202] = {.lex_state = 14}, - [2203] = {.lex_state = 14}, - [2204] = {.lex_state = 14}, - [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 14}, - [2207] = {.lex_state = 14}, - [2208] = {.lex_state = 14}, - [2209] = {.lex_state = 14}, - [2210] = {.lex_state = 14}, - [2211] = {.lex_state = 23}, - [2212] = {.lex_state = 14}, - [2213] = {.lex_state = 21}, - [2214] = {.lex_state = 23}, - [2215] = {.lex_state = 14}, - [2216] = {.lex_state = 10}, - [2217] = {.lex_state = 14}, - [2218] = {.lex_state = 14}, - [2219] = {.lex_state = 14}, - [2220] = {.lex_state = 14}, - [2221] = {.lex_state = 23}, - [2222] = {.lex_state = 23}, - [2223] = {.lex_state = 14}, - [2224] = {.lex_state = 14}, - [2225] = {.lex_state = 14}, - [2226] = {.lex_state = 14}, - [2227] = {.lex_state = 14}, - [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 23}, - [2230] = {.lex_state = 23}, - [2231] = {.lex_state = 23}, - [2232] = {.lex_state = 10}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 27}, - [2235] = {.lex_state = 23}, - [2236] = {.lex_state = 27}, - [2237] = {.lex_state = 23}, - [2238] = {.lex_state = 70}, - [2239] = {.lex_state = 14}, - [2240] = {.lex_state = 14}, - [2241] = {.lex_state = 70}, - [2242] = {.lex_state = 70}, - [2243] = {.lex_state = 70}, - [2244] = {.lex_state = 70}, - [2245] = {.lex_state = 70}, - [2246] = {.lex_state = 70}, - [2247] = {.lex_state = 70}, - [2248] = {.lex_state = 70}, - [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 23}, - [2251] = {.lex_state = 14}, - [2252] = {.lex_state = 70}, - [2253] = {.lex_state = 70}, - [2254] = {.lex_state = 70}, - [2255] = {.lex_state = 14}, - [2256] = {.lex_state = 70}, - [2257] = {.lex_state = 3}, - [2258] = {.lex_state = 70}, - [2259] = {.lex_state = 70}, - [2260] = {.lex_state = 14}, - [2261] = {.lex_state = 23}, - [2262] = {.lex_state = 23}, - [2263] = {.lex_state = 70}, - [2264] = {.lex_state = 23}, - [2265] = {.lex_state = 23}, - [2266] = {.lex_state = 14}, - [2267] = {.lex_state = 70}, - [2268] = {.lex_state = 70}, - [2269] = {.lex_state = 70}, - [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 70}, - [2272] = {.lex_state = 14}, - [2273] = {.lex_state = 70}, - [2274] = {.lex_state = 70}, - [2275] = {.lex_state = 70}, - [2276] = {.lex_state = 70}, - [2277] = {.lex_state = 70}, - [2278] = {.lex_state = 70}, - [2279] = {.lex_state = 70}, - [2280] = {.lex_state = 70}, - [2281] = {.lex_state = 3}, - [2282] = {.lex_state = 10}, - [2283] = {.lex_state = 14}, - [2284] = {.lex_state = 3}, - [2285] = {.lex_state = 10}, - [2286] = {.lex_state = 167}, - [2287] = {.lex_state = 14}, - [2288] = {.lex_state = 14}, - [2289] = {.lex_state = 70}, - [2290] = {.lex_state = 14}, - [2291] = {.lex_state = 14}, - [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 18}, - [2294] = {.lex_state = 27}, - [2295] = {.lex_state = 14}, - [2296] = {.lex_state = 14}, - [2297] = {.lex_state = 14}, + [2135] = {.lex_state = 17}, + [2136] = {.lex_state = 17}, + [2137] = {.lex_state = 17}, + [2138] = {.lex_state = 27}, + [2139] = {.lex_state = 17}, + [2140] = {.lex_state = 18}, + [2141] = {.lex_state = 19}, + [2142] = {.lex_state = 18}, + [2143] = {.lex_state = 24}, + [2144] = {.lex_state = 31}, + [2145] = {.lex_state = 17}, + [2146] = {.lex_state = 17}, + [2147] = {.lex_state = 17}, + [2148] = {.lex_state = 27}, + [2149] = {.lex_state = 31}, + [2150] = {.lex_state = 17}, + [2151] = {.lex_state = 18}, + [2152] = {.lex_state = 24}, + [2153] = {.lex_state = 17}, + [2154] = {.lex_state = 17}, + [2155] = {.lex_state = 18}, + [2156] = {.lex_state = 18}, + [2157] = {.lex_state = 18}, + [2158] = {.lex_state = 18}, + [2159] = {.lex_state = 19}, + [2160] = {.lex_state = 18}, + [2161] = {.lex_state = 18}, + [2162] = {.lex_state = 18}, + [2163] = {.lex_state = 19}, + [2164] = {.lex_state = 17}, + [2165] = {.lex_state = 18}, + [2166] = {.lex_state = 17}, + [2167] = {.lex_state = 17}, + [2168] = {.lex_state = 17}, + [2169] = {.lex_state = 17}, + [2170] = {.lex_state = 31}, + [2171] = {.lex_state = 24}, + [2172] = {.lex_state = 31}, + [2173] = {.lex_state = 18}, + [2174] = {.lex_state = 17}, + [2175] = {.lex_state = 17}, + [2176] = {.lex_state = 24}, + [2177] = {.lex_state = 17}, + [2178] = {.lex_state = 31}, + [2179] = {.lex_state = 31}, + [2180] = {.lex_state = 31}, + [2181] = {.lex_state = 31}, + [2182] = {.lex_state = 31}, + [2183] = {.lex_state = 31}, + [2184] = {.lex_state = 31}, + [2185] = {.lex_state = 31}, + [2186] = {.lex_state = 31}, + [2187] = {.lex_state = 31}, + [2188] = {.lex_state = 31}, + [2189] = {.lex_state = 31}, + [2190] = {.lex_state = 31}, + [2191] = {.lex_state = 31}, + [2192] = {.lex_state = 31}, + [2193] = {.lex_state = 31}, + [2194] = {.lex_state = 31}, + [2195] = {.lex_state = 31}, + [2196] = {.lex_state = 18}, + [2197] = {.lex_state = 18}, + [2198] = {.lex_state = 31}, + [2199] = {.lex_state = 19}, + [2200] = {.lex_state = 17}, + [2201] = {.lex_state = 31}, + [2202] = {.lex_state = 27}, + [2203] = {.lex_state = 27}, + [2204] = {.lex_state = 31}, + [2205] = {.lex_state = 31}, + [2206] = {.lex_state = 18}, + [2207] = {.lex_state = 31}, + [2208] = {.lex_state = 18}, + [2209] = {.lex_state = 17}, + [2210] = {.lex_state = 31}, + [2211] = {.lex_state = 31}, + [2212] = {.lex_state = 27}, + [2213] = {.lex_state = 31}, + [2214] = {.lex_state = 31}, + [2215] = {.lex_state = 27}, + [2216] = {.lex_state = 31}, + [2217] = {.lex_state = 31}, + [2218] = {.lex_state = 31}, + [2219] = {.lex_state = 31}, + [2220] = {.lex_state = 31}, + [2221] = {.lex_state = 31}, + [2222] = {.lex_state = 18}, + [2223] = {.lex_state = 18}, + [2224] = {.lex_state = 12}, + [2225] = {.lex_state = 31}, + [2226] = {.lex_state = 18}, + [2227] = {.lex_state = 31}, + [2228] = {.lex_state = 17}, + [2229] = {.lex_state = 31}, + [2230] = {.lex_state = 31}, + [2231] = {.lex_state = 17}, + [2232] = {.lex_state = 19}, + [2233] = {.lex_state = 31}, + [2234] = {.lex_state = 31}, + [2235] = {.lex_state = 17}, + [2236] = {.lex_state = 8}, + [2237] = {.lex_state = 19}, + [2238] = {.lex_state = 17}, + [2239] = {.lex_state = 31}, + [2240] = {.lex_state = 17}, + [2241] = {.lex_state = 19}, + [2242] = {.lex_state = 8}, + [2243] = {.lex_state = 17}, + [2244] = {.lex_state = 17}, + [2245] = {.lex_state = 17}, + [2246] = {.lex_state = 17}, + [2247] = {.lex_state = 17}, + [2248] = {.lex_state = 17}, + [2249] = {.lex_state = 17}, + [2250] = {.lex_state = 17}, + [2251] = {.lex_state = 19}, + [2252] = {.lex_state = 31}, + [2253] = {.lex_state = 17}, + [2254] = {.lex_state = 17}, + [2255] = {.lex_state = 31}, + [2256] = {.lex_state = 17}, + [2257] = {.lex_state = 17}, + [2258] = {.lex_state = 31}, + [2259] = {.lex_state = 12}, + [2260] = {.lex_state = 8}, + [2261] = {.lex_state = 17}, + [2262] = {.lex_state = 17}, + [2263] = {.lex_state = 17}, + [2264] = {.lex_state = 17}, + [2265] = {.lex_state = 27}, + [2266] = {.lex_state = 17}, + [2267] = {.lex_state = 31}, + [2268] = {.lex_state = 18}, + [2269] = {.lex_state = 17}, + [2270] = {.lex_state = 31}, + [2271] = {.lex_state = 12}, + [2272] = {.lex_state = 17}, + [2273] = {.lex_state = 17}, + [2274] = {.lex_state = 12}, + [2275] = {.lex_state = 12}, + [2276] = {.lex_state = 17}, + [2277] = {.lex_state = 31}, + [2278] = {.lex_state = 31}, + [2279] = {.lex_state = 72}, + [2280] = {.lex_state = 31}, + [2281] = {.lex_state = 17}, + [2282] = {.lex_state = 31}, + [2283] = {.lex_state = 19}, + [2284] = {.lex_state = 17}, + [2285] = {.lex_state = 27}, + [2286] = {.lex_state = 17}, + [2287] = {.lex_state = 17}, + [2288] = {.lex_state = 27}, + [2289] = {.lex_state = 17}, + [2290] = {.lex_state = 17}, + [2291] = {.lex_state = 17}, + [2292] = {.lex_state = 17}, + [2293] = {.lex_state = 17}, + [2294] = {.lex_state = 17}, + [2295] = {.lex_state = 17}, + [2296] = {.lex_state = 24}, + [2297] = {.lex_state = 27}, [2298] = {.lex_state = 27}, [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 27}, - [2301] = {.lex_state = 27}, - [2302] = {.lex_state = 13}, - [2303] = {.lex_state = 27}, - [2304] = {.lex_state = 3}, - [2305] = {.lex_state = 14}, - [2306] = {.lex_state = 27}, - [2307] = {.lex_state = 14}, - [2308] = {.lex_state = 14}, - [2309] = {.lex_state = 14}, - [2310] = {.lex_state = 18}, - [2311] = {.lex_state = 13}, - [2312] = {.lex_state = 14}, - [2313] = {.lex_state = 18}, - [2314] = {.lex_state = 14}, + [2300] = {.lex_state = 17}, + [2301] = {.lex_state = 17}, + [2302] = {.lex_state = 17}, + [2303] = {.lex_state = 17}, + [2304] = {.lex_state = 17}, + [2305] = {.lex_state = 17}, + [2306] = {.lex_state = 17}, + [2307] = {.lex_state = 27}, + [2308] = {.lex_state = 27}, + [2309] = {.lex_state = 17}, + [2310] = {.lex_state = 17}, + [2311] = {.lex_state = 12}, + [2312] = {.lex_state = 17}, + [2313] = {.lex_state = 17}, + [2314] = {.lex_state = 17}, [2315] = {.lex_state = 17}, - [2316] = {.lex_state = 14}, - [2317] = {.lex_state = 14}, - [2318] = {.lex_state = 14}, - [2319] = {.lex_state = 14}, - [2320] = {.lex_state = 14}, - [2321] = {.lex_state = 14}, - [2322] = {.lex_state = 14}, - [2323] = {.lex_state = 14}, - [2324] = {.lex_state = 14}, - [2325] = {.lex_state = 18}, - [2326] = {.lex_state = 27}, - [2327] = {.lex_state = 18}, - [2328] = {.lex_state = 14}, - [2329] = {.lex_state = 14}, - [2330] = {.lex_state = 14}, - [2331] = {.lex_state = 14}, - [2332] = {.lex_state = 14}, - [2333] = {.lex_state = 14}, - [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 14}, - [2336] = {.lex_state = 27}, - [2337] = {.lex_state = 23}, - [2338] = {.lex_state = 14}, - [2339] = {.lex_state = 14}, - [2340] = {.lex_state = 70}, - [2341] = {.lex_state = 14}, - [2342] = {.lex_state = 3}, - [2343] = {.lex_state = 27}, - [2344] = {.lex_state = 27}, - [2345] = {.lex_state = 27}, - [2346] = {.lex_state = 27}, - [2347] = {.lex_state = 14}, - [2348] = {.lex_state = 14}, - [2349] = {.lex_state = 14}, - [2350] = {.lex_state = 14}, - [2351] = {.lex_state = 14}, - [2352] = {.lex_state = 27}, - [2353] = {.lex_state = 27}, - [2354] = {.lex_state = 14}, - [2355] = {.lex_state = 14}, - [2356] = {.lex_state = 27}, - [2357] = {.lex_state = 14}, - [2358] = {.lex_state = 14}, - [2359] = {.lex_state = 14}, + [2316] = {.lex_state = 27}, + [2317] = {.lex_state = 17}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 17}, + [2320] = {.lex_state = 17}, + [2321] = {.lex_state = 17}, + [2322] = {.lex_state = 27}, + [2323] = {.lex_state = 27}, + [2324] = {.lex_state = 17}, + [2325] = {.lex_state = 27}, + [2326] = {.lex_state = 17}, + [2327] = {.lex_state = 17}, + [2328] = {.lex_state = 17}, + [2329] = {.lex_state = 27}, + [2330] = {.lex_state = 17}, + [2331] = {.lex_state = 27}, + [2332] = {.lex_state = 17}, + [2333] = {.lex_state = 17}, + [2334] = {.lex_state = 17}, + [2335] = {.lex_state = 17}, + [2336] = {.lex_state = 17}, + [2337] = {.lex_state = 17}, + [2338] = {.lex_state = 72}, + [2339] = {.lex_state = 72}, + [2340] = {.lex_state = 31}, + [2341] = {.lex_state = 72}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 19}, + [2344] = {.lex_state = 72}, + [2345] = {.lex_state = 72}, + [2346] = {.lex_state = 72}, + [2347] = {.lex_state = 17}, + [2348] = {.lex_state = 27}, + [2349] = {.lex_state = 17}, + [2350] = {.lex_state = 27}, + [2351] = {.lex_state = 72}, + [2352] = {.lex_state = 72}, + [2353] = {.lex_state = 72}, + [2354] = {.lex_state = 72}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 5}, + [2357] = {.lex_state = 5}, + [2358] = {.lex_state = 12}, + [2359] = {.lex_state = 12}, [2360] = {.lex_state = 17}, [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 17}, + [2362] = {.lex_state = 72}, [2363] = {.lex_state = 17}, - [2364] = {.lex_state = 14}, - [2365] = {.lex_state = 70}, - [2366] = {.lex_state = 14}, - [2367] = {.lex_state = 14}, - [2368] = {.lex_state = 14}, - [2369] = {.lex_state = 14}, - [2370] = {.lex_state = 14}, - [2371] = {.lex_state = 14}, - [2372] = {.lex_state = 3}, - [2373] = {.lex_state = 27}, - [2374] = {.lex_state = 3}, - [2375] = {.lex_state = 14}, - [2376] = {.lex_state = 14}, - [2377] = {.lex_state = 14}, - [2378] = {.lex_state = 14}, - [2379] = {.lex_state = 14}, - [2380] = {.lex_state = 14}, - [2381] = {.lex_state = 14}, - [2382] = {.lex_state = 14}, + [2364] = {.lex_state = 72}, + [2365] = {.lex_state = 72}, + [2366] = {.lex_state = 17}, + [2367] = {.lex_state = 31}, + [2368] = {.lex_state = 72}, + [2369] = {.lex_state = 27}, + [2370] = {.lex_state = 17}, + [2371] = {.lex_state = 27}, + [2372] = {.lex_state = 17}, + [2373] = {.lex_state = 17}, + [2374] = {.lex_state = 72}, + [2375] = {.lex_state = 27}, + [2376] = {.lex_state = 169}, + [2377] = {.lex_state = 12}, + [2378] = {.lex_state = 72}, + [2379] = {.lex_state = 72}, + [2380] = {.lex_state = 72}, + [2381] = {.lex_state = 27}, + [2382] = {.lex_state = 72}, [2383] = {.lex_state = 27}, - [2384] = {.lex_state = 14}, - [2385] = {.lex_state = 14}, - [2386] = {.lex_state = 14}, - [2387] = {.lex_state = 17}, - [2388] = {.lex_state = 18}, - [2389] = {.lex_state = 10}, - [2390] = {.lex_state = 27}, - [2391] = {.lex_state = 27}, - [2392] = {.lex_state = 3}, - [2393] = {.lex_state = 27}, - [2394] = {.lex_state = 10}, - [2395] = {.lex_state = 14}, - [2396] = {.lex_state = 27}, - [2397] = {.lex_state = 10}, - [2398] = {.lex_state = 10}, - [2399] = {.lex_state = 10}, - [2400] = {.lex_state = 14}, - [2401] = {.lex_state = 27}, - [2402] = {.lex_state = 10}, - [2403] = {.lex_state = 14}, - [2404] = {.lex_state = 10}, - [2405] = {.lex_state = 6}, - [2406] = {.lex_state = 10}, - [2407] = {.lex_state = 27}, - [2408] = {.lex_state = 10}, - [2409] = {.lex_state = 10}, - [2410] = {.lex_state = 10}, - [2411] = {.lex_state = 10}, - [2412] = {.lex_state = 10}, - [2413] = {.lex_state = 10}, - [2414] = {.lex_state = 10}, - [2415] = {.lex_state = 14}, - [2416] = {.lex_state = 27}, - [2417] = {.lex_state = 27}, - [2418] = {.lex_state = 27}, - [2419] = {.lex_state = 10}, - [2420] = {.lex_state = 10}, - [2421] = {.lex_state = 27}, - [2422] = {.lex_state = 6}, - [2423] = {.lex_state = 6}, - [2424] = {.lex_state = 70}, - [2425] = {.lex_state = 27}, - [2426] = {.lex_state = 27}, - [2427] = {.lex_state = 27}, - [2428] = {.lex_state = 10}, - [2429] = {.lex_state = 27}, - [2430] = {.lex_state = 27}, - [2431] = {.lex_state = 10}, - [2432] = {.lex_state = 10}, - [2433] = {.lex_state = 27}, - [2434] = {.lex_state = 27}, - [2435] = {.lex_state = 14}, - [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 10}, - [2438] = {.lex_state = 10}, - [2439] = {.lex_state = 14}, - [2440] = {.lex_state = 27}, - [2441] = {.lex_state = 27}, - [2442] = {.lex_state = 14}, - [2443] = {.lex_state = 14}, - [2444] = {.lex_state = 14}, - [2445] = {.lex_state = 10}, - [2446] = {.lex_state = 14}, - [2447] = {.lex_state = 27}, - [2448] = {.lex_state = 27}, - [2449] = {.lex_state = 27}, - [2450] = {.lex_state = 10}, - [2451] = {.lex_state = 14}, - [2452] = {.lex_state = 27}, - [2453] = {.lex_state = 27}, - [2454] = {.lex_state = 27}, - [2455] = {.lex_state = 27}, - [2456] = {.lex_state = 27}, - [2457] = {.lex_state = 10}, - [2458] = {.lex_state = 14}, - [2459] = {.lex_state = 10}, - [2460] = {.lex_state = 27}, - [2461] = {.lex_state = 14}, - [2462] = {.lex_state = 14}, - [2463] = {.lex_state = 27}, - [2464] = {.lex_state = 27}, - [2465] = {.lex_state = 10}, - [2466] = {.lex_state = 27}, - [2467] = {.lex_state = 10}, - [2468] = {.lex_state = 27}, - [2469] = {.lex_state = 3}, - [2470] = {.lex_state = 14}, - [2471] = {.lex_state = 27}, - [2472] = {.lex_state = 14}, - [2473] = {.lex_state = 27}, - [2474] = {.lex_state = 10}, - [2475] = {.lex_state = 70}, - [2476] = {.lex_state = 14}, - [2477] = {.lex_state = 14}, - [2478] = {.lex_state = 14}, - [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 27}, - [2481] = {.lex_state = 14}, - [2482] = {.lex_state = 27}, - [2483] = {.lex_state = 10, .external_lex_state = 3}, - [2484] = {.lex_state = 10}, - [2485] = {.lex_state = 27}, - [2486] = {.lex_state = 10}, - [2487] = {.lex_state = 27}, - [2488] = {.lex_state = 14}, - [2489] = {.lex_state = 14}, - [2490] = {.lex_state = 10}, - [2491] = {.lex_state = 6}, - [2492] = {.lex_state = 10}, - [2493] = {.lex_state = 14}, - [2494] = {.lex_state = 3}, - [2495] = {.lex_state = 10}, - [2496] = {.lex_state = 10, .external_lex_state = 4}, - [2497] = {.lex_state = 70}, - [2498] = {.lex_state = 6}, - [2499] = {.lex_state = 6}, - [2500] = {.lex_state = 70}, - [2501] = {.lex_state = 70}, - [2502] = {.lex_state = 6}, - [2503] = {.lex_state = 6}, - [2504] = {.lex_state = 10}, - [2505] = {.lex_state = 6}, - [2506] = {.lex_state = 70}, - [2507] = {.lex_state = 27}, - [2508] = {.lex_state = 27}, - [2509] = {.lex_state = 6}, - [2510] = {.lex_state = 10, .external_lex_state = 4}, - [2511] = {.lex_state = 14}, - [2512] = {.lex_state = 70}, - [2513] = {.lex_state = 14}, - [2514] = {.lex_state = 14}, - [2515] = {.lex_state = 14}, - [2516] = {.lex_state = 27}, - [2517] = {.lex_state = 70}, - [2518] = {.lex_state = 10}, - [2519] = {.lex_state = 10}, - [2520] = {.lex_state = 10, .external_lex_state = 4}, - [2521] = {.lex_state = 70}, - [2522] = {.lex_state = 6}, - [2523] = {.lex_state = 14}, - [2524] = {.lex_state = 70}, - [2525] = {.lex_state = 70}, - [2526] = {.lex_state = 70}, - [2527] = {.lex_state = 6}, - [2528] = {.lex_state = 6}, - [2529] = {.lex_state = 6}, - [2530] = {.lex_state = 14}, - [2531] = {.lex_state = 70}, - [2532] = {.lex_state = 27}, - [2533] = {.lex_state = 70}, - [2534] = {.lex_state = 70}, - [2535] = {.lex_state = 6}, - [2536] = {.lex_state = 14}, - [2537] = {.lex_state = 6}, - [2538] = {.lex_state = 14}, - [2539] = {.lex_state = 6}, - [2540] = {.lex_state = 14}, - [2541] = {.lex_state = 14}, - [2542] = {.lex_state = 14}, - [2543] = {.lex_state = 14}, - [2544] = {.lex_state = 14}, - [2545] = {.lex_state = 14}, - [2546] = {.lex_state = 10}, - [2547] = {.lex_state = 10}, - [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 27}, - [2550] = {.lex_state = 29}, - [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 70}, - [2553] = {.lex_state = 70}, - [2554] = {.lex_state = 70}, - [2555] = {.lex_state = 70}, - [2556] = {.lex_state = 6}, - [2557] = {.lex_state = 14}, - [2558] = {.lex_state = 14}, - [2559] = {.lex_state = 14}, - [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 14}, - [2562] = {.lex_state = 14}, - [2563] = {.lex_state = 10, .external_lex_state = 4}, - [2564] = {.lex_state = 27}, - [2565] = {.lex_state = 27}, - [2566] = {.lex_state = 14}, - [2567] = {.lex_state = 10}, - [2568] = {.lex_state = 70}, - [2569] = {.lex_state = 27}, - [2570] = {.lex_state = 14}, - [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 6}, - [2573] = {.lex_state = 10}, - [2574] = {.lex_state = 14}, - [2575] = {.lex_state = 27}, - [2576] = {.lex_state = 70}, - [2577] = {.lex_state = 14}, - [2578] = {.lex_state = 6}, - [2579] = {.lex_state = 70}, - [2580] = {.lex_state = 70}, - [2581] = {.lex_state = 27}, - [2582] = {.lex_state = 10}, - [2583] = {.lex_state = 10}, - [2584] = {.lex_state = 10, .external_lex_state = 4}, - [2585] = {.lex_state = 10}, - [2586] = {.lex_state = 10}, - [2587] = {.lex_state = 29}, - [2588] = {.lex_state = 6}, - [2589] = {.lex_state = 70}, - [2590] = {.lex_state = 16}, - [2591] = {.lex_state = 10}, - [2592] = {.lex_state = 70}, - [2593] = {.lex_state = 10}, - [2594] = {.lex_state = 10}, - [2595] = {.lex_state = 10, .external_lex_state = 4}, - [2596] = {.lex_state = 70}, - [2597] = {.lex_state = 6}, - [2598] = {.lex_state = 6}, - [2599] = {.lex_state = 6}, - [2600] = {.lex_state = 6}, - [2601] = {.lex_state = 70}, - [2602] = {.lex_state = 10}, - [2603] = {.lex_state = 6}, - [2604] = {.lex_state = 10}, - [2605] = {.lex_state = 27}, - [2606] = {.lex_state = 10}, - [2607] = {.lex_state = 10}, - [2608] = {.lex_state = 10}, - [2609] = {.lex_state = 10}, - [2610] = {.lex_state = 70}, - [2611] = {.lex_state = 14}, - [2612] = {.lex_state = 10}, - [2613] = {.lex_state = 16}, - [2614] = {.lex_state = 70}, - [2615] = {.lex_state = 10}, - [2616] = {.lex_state = 10}, - [2617] = {.lex_state = 10, .external_lex_state = 4}, - [2618] = {.lex_state = 10}, - [2619] = {.lex_state = 10}, - [2620] = {.lex_state = 70}, - [2621] = {.lex_state = 10}, - [2622] = {.lex_state = 70}, - [2623] = {.lex_state = 10, .external_lex_state = 4}, - [2624] = {.lex_state = 70}, - [2625] = {.lex_state = 6}, - [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 6}, - [2628] = {.lex_state = 10}, - [2629] = {.lex_state = 10}, - [2630] = {.lex_state = 10, .external_lex_state = 4}, - [2631] = {.lex_state = 10}, - [2632] = {.lex_state = 27}, - [2633] = {.lex_state = 70}, - [2634] = {.lex_state = 10, .external_lex_state = 4}, - [2635] = {.lex_state = 70}, - [2636] = {.lex_state = 6}, - [2637] = {.lex_state = 6}, - [2638] = {.lex_state = 10}, - [2639] = {.lex_state = 70}, - [2640] = {.lex_state = 70}, - [2641] = {.lex_state = 10, .external_lex_state = 4}, - [2642] = {.lex_state = 10, .external_lex_state = 4}, - [2643] = {.lex_state = 6}, - [2644] = {.lex_state = 6}, - [2645] = {.lex_state = 10}, - [2646] = {.lex_state = 14}, - [2647] = {.lex_state = 14}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 6}, - [2650] = {.lex_state = 6}, - [2651] = {.lex_state = 6}, - [2652] = {.lex_state = 6}, - [2653] = {.lex_state = 6}, - [2654] = {.lex_state = 6}, - [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 6}, - [2657] = {.lex_state = 6}, - [2658] = {.lex_state = 6}, - [2659] = {.lex_state = 6}, - [2660] = {.lex_state = 14}, - [2661] = {.lex_state = 29}, - [2662] = {.lex_state = 10}, - [2663] = {.lex_state = 3}, - [2664] = {.lex_state = 70}, - [2665] = {.lex_state = 70}, + [2384] = {.lex_state = 17}, + [2385] = {.lex_state = 72}, + [2386] = {.lex_state = 17}, + [2387] = {.lex_state = 72}, + [2388] = {.lex_state = 17}, + [2389] = {.lex_state = 5}, + [2390] = {.lex_state = 72}, + [2391] = {.lex_state = 17}, + [2392] = {.lex_state = 27}, + [2393] = {.lex_state = 72}, + [2394] = {.lex_state = 72}, + [2395] = {.lex_state = 72}, + [2396] = {.lex_state = 72}, + [2397] = {.lex_state = 17}, + [2398] = {.lex_state = 17}, + [2399] = {.lex_state = 72}, + [2400] = {.lex_state = 72}, + [2401] = {.lex_state = 17}, + [2402] = {.lex_state = 31}, + [2403] = {.lex_state = 17}, + [2404] = {.lex_state = 31}, + [2405] = {.lex_state = 31}, + [2406] = {.lex_state = 23}, + [2407] = {.lex_state = 17}, + [2408] = {.lex_state = 19}, + [2409] = {.lex_state = 31}, + [2410] = {.lex_state = 20}, + [2411] = {.lex_state = 31}, + [2412] = {.lex_state = 17}, + [2413] = {.lex_state = 17}, + [2414] = {.lex_state = 20}, + [2415] = {.lex_state = 17}, + [2416] = {.lex_state = 17}, + [2417] = {.lex_state = 17}, + [2418] = {.lex_state = 17}, + [2419] = {.lex_state = 17}, + [2420] = {.lex_state = 23}, + [2421] = {.lex_state = 17}, + [2422] = {.lex_state = 17}, + [2423] = {.lex_state = 17}, + [2424] = {.lex_state = 17}, + [2425] = {.lex_state = 17}, + [2426] = {.lex_state = 31}, + [2427] = {.lex_state = 17}, + [2428] = {.lex_state = 17}, + [2429] = {.lex_state = 17}, + [2430] = {.lex_state = 17}, + [2431] = {.lex_state = 17}, + [2432] = {.lex_state = 17}, + [2433] = {.lex_state = 20}, + [2434] = {.lex_state = 17}, + [2435] = {.lex_state = 72}, + [2436] = {.lex_state = 17}, + [2437] = {.lex_state = 31}, + [2438] = {.lex_state = 17}, + [2439] = {.lex_state = 17}, + [2440] = {.lex_state = 17}, + [2441] = {.lex_state = 23}, + [2442] = {.lex_state = 31}, + [2443] = {.lex_state = 17}, + [2444] = {.lex_state = 17}, + [2445] = {.lex_state = 31}, + [2446] = {.lex_state = 17}, + [2447] = {.lex_state = 17}, + [2448] = {.lex_state = 17}, + [2449] = {.lex_state = 19}, + [2450] = {.lex_state = 27}, + [2451] = {.lex_state = 5}, + [2452] = {.lex_state = 5}, + [2453] = {.lex_state = 5}, + [2454] = {.lex_state = 31}, + [2455] = {.lex_state = 17}, + [2456] = {.lex_state = 31}, + [2457] = {.lex_state = 20}, + [2458] = {.lex_state = 17}, + [2459] = {.lex_state = 5}, + [2460] = {.lex_state = 31}, + [2461] = {.lex_state = 17}, + [2462] = {.lex_state = 17}, + [2463] = {.lex_state = 17}, + [2464] = {.lex_state = 19}, + [2465] = {.lex_state = 19}, + [2466] = {.lex_state = 19}, + [2467] = {.lex_state = 17}, + [2468] = {.lex_state = 19}, + [2469] = {.lex_state = 23}, + [2470] = {.lex_state = 31}, + [2471] = {.lex_state = 17}, + [2472] = {.lex_state = 17}, + [2473] = {.lex_state = 17}, + [2474] = {.lex_state = 17}, + [2475] = {.lex_state = 19}, + [2476] = {.lex_state = 17}, + [2477] = {.lex_state = 17}, + [2478] = {.lex_state = 17}, + [2479] = {.lex_state = 17}, + [2480] = {.lex_state = 17}, + [2481] = {.lex_state = 72}, + [2482] = {.lex_state = 15}, + [2483] = {.lex_state = 17}, + [2484] = {.lex_state = 17}, + [2485] = {.lex_state = 23}, + [2486] = {.lex_state = 17}, + [2487] = {.lex_state = 17}, + [2488] = {.lex_state = 17}, + [2489] = {.lex_state = 17}, + [2490] = {.lex_state = 31}, + [2491] = {.lex_state = 17}, + [2492] = {.lex_state = 17}, + [2493] = {.lex_state = 23}, + [2494] = {.lex_state = 31}, + [2495] = {.lex_state = 20}, + [2496] = {.lex_state = 17}, + [2497] = {.lex_state = 15}, + [2498] = {.lex_state = 31}, + [2499] = {.lex_state = 17}, + [2500] = {.lex_state = 17}, + [2501] = {.lex_state = 31}, + [2502] = {.lex_state = 17}, + [2503] = {.lex_state = 17}, + [2504] = {.lex_state = 20}, + [2505] = {.lex_state = 17}, + [2506] = {.lex_state = 17}, + [2507] = {.lex_state = 17}, + [2508] = {.lex_state = 23}, + [2509] = {.lex_state = 31}, + [2510] = {.lex_state = 23}, + [2511] = {.lex_state = 31}, + [2512] = {.lex_state = 23}, + [2513] = {.lex_state = 17}, + [2514] = {.lex_state = 23}, + [2515] = {.lex_state = 5}, + [2516] = {.lex_state = 23}, + [2517] = {.lex_state = 23}, + [2518] = {.lex_state = 17}, + [2519] = {.lex_state = 23}, + [2520] = {.lex_state = 23}, + [2521] = {.lex_state = 23}, + [2522] = {.lex_state = 17}, + [2523] = {.lex_state = 23}, + [2524] = {.lex_state = 23}, + [2525] = {.lex_state = 23}, + [2526] = {.lex_state = 31}, + [2527] = {.lex_state = 17}, + [2528] = {.lex_state = 31}, + [2529] = {.lex_state = 17}, + [2530] = {.lex_state = 17}, + [2531] = {.lex_state = 17}, + [2532] = {.lex_state = 8}, + [2533] = {.lex_state = 17}, + [2534] = {.lex_state = 31}, + [2535] = {.lex_state = 17}, + [2536] = {.lex_state = 31}, + [2537] = {.lex_state = 17}, + [2538] = {.lex_state = 8}, + [2539] = {.lex_state = 31}, + [2540] = {.lex_state = 31}, + [2541] = {.lex_state = 17}, + [2542] = {.lex_state = 8}, + [2543] = {.lex_state = 17}, + [2544] = {.lex_state = 31}, + [2545] = {.lex_state = 23}, + [2546] = {.lex_state = 31}, + [2547] = {.lex_state = 31}, + [2548] = {.lex_state = 23}, + [2549] = {.lex_state = 31}, + [2550] = {.lex_state = 17}, + [2551] = {.lex_state = 17}, + [2552] = {.lex_state = 17}, + [2553] = {.lex_state = 31}, + [2554] = {.lex_state = 17}, + [2555] = {.lex_state = 17}, + [2556] = {.lex_state = 23}, + [2557] = {.lex_state = 23}, + [2558] = {.lex_state = 23}, + [2559] = {.lex_state = 17}, + [2560] = {.lex_state = 31}, + [2561] = {.lex_state = 17}, + [2562] = {.lex_state = 17}, + [2563] = {.lex_state = 17}, + [2564] = {.lex_state = 19}, + [2565] = {.lex_state = 23}, + [2566] = {.lex_state = 31}, + [2567] = {.lex_state = 23}, + [2568] = {.lex_state = 31}, + [2569] = {.lex_state = 17}, + [2570] = {.lex_state = 23}, + [2571] = {.lex_state = 23}, + [2572] = {.lex_state = 31}, + [2573] = {.lex_state = 8}, + [2574] = {.lex_state = 17}, + [2575] = {.lex_state = 19}, + [2576] = {.lex_state = 31}, + [2577] = {.lex_state = 5}, + [2578] = {.lex_state = 23}, + [2579] = {.lex_state = 31}, + [2580] = {.lex_state = 17}, + [2581] = {.lex_state = 72}, + [2582] = {.lex_state = 23}, + [2583] = {.lex_state = 23}, + [2584] = {.lex_state = 19}, + [2585] = {.lex_state = 31}, + [2586] = {.lex_state = 23}, + [2587] = {.lex_state = 31}, + [2588] = {.lex_state = 72}, + [2589] = {.lex_state = 31}, + [2590] = {.lex_state = 23}, + [2591] = {.lex_state = 31}, + [2592] = {.lex_state = 17}, + [2593] = {.lex_state = 23}, + [2594] = {.lex_state = 17}, + [2595] = {.lex_state = 23}, + [2596] = {.lex_state = 31}, + [2597] = {.lex_state = 31}, + [2598] = {.lex_state = 19}, + [2599] = {.lex_state = 23, .external_lex_state = 3}, + [2600] = {.lex_state = 23}, + [2601] = {.lex_state = 19}, + [2602] = {.lex_state = 17}, + [2603] = {.lex_state = 31}, + [2604] = {.lex_state = 23}, + [2605] = {.lex_state = 19}, + [2606] = {.lex_state = 23}, + [2607] = {.lex_state = 17}, + [2608] = {.lex_state = 31}, + [2609] = {.lex_state = 23}, + [2610] = {.lex_state = 8}, + [2611] = {.lex_state = 31}, + [2612] = {.lex_state = 31}, + [2613] = {.lex_state = 17}, + [2614] = {.lex_state = 17}, + [2615] = {.lex_state = 31}, + [2616] = {.lex_state = 8}, + [2617] = {.lex_state = 8}, + [2618] = {.lex_state = 23}, + [2619] = {.lex_state = 17}, + [2620] = {.lex_state = 17}, + [2621] = {.lex_state = 8}, + [2622] = {.lex_state = 17}, + [2623] = {.lex_state = 72}, + [2624] = {.lex_state = 23}, + [2625] = {.lex_state = 23}, + [2626] = {.lex_state = 72}, + [2627] = {.lex_state = 23}, + [2628] = {.lex_state = 23, .external_lex_state = 4}, + [2629] = {.lex_state = 72}, + [2630] = {.lex_state = 23}, + [2631] = {.lex_state = 8}, + [2632] = {.lex_state = 8}, + [2633] = {.lex_state = 8}, + [2634] = {.lex_state = 8}, + [2635] = {.lex_state = 23, .external_lex_state = 4}, + [2636] = {.lex_state = 17}, + [2637] = {.lex_state = 23}, + [2638] = {.lex_state = 17}, + [2639] = {.lex_state = 23}, + [2640] = {.lex_state = 17}, + [2641] = {.lex_state = 23}, + [2642] = {.lex_state = 23, .external_lex_state = 4}, + [2643] = {.lex_state = 17}, + [2644] = {.lex_state = 23}, + [2645] = {.lex_state = 23}, + [2646] = {.lex_state = 17}, + [2647] = {.lex_state = 5}, + [2648] = {.lex_state = 17}, + [2649] = {.lex_state = 72}, + [2650] = {.lex_state = 23, .external_lex_state = 4}, + [2651] = {.lex_state = 17}, + [2652] = {.lex_state = 23}, + [2653] = {.lex_state = 17}, + [2654] = {.lex_state = 23}, + [2655] = {.lex_state = 72}, + [2656] = {.lex_state = 72}, + [2657] = {.lex_state = 72}, + [2658] = {.lex_state = 23, .external_lex_state = 4}, + [2659] = {.lex_state = 72}, + [2660] = {.lex_state = 72}, + [2661] = {.lex_state = 8}, + [2662] = {.lex_state = 8}, + [2663] = {.lex_state = 8}, + [2664] = {.lex_state = 8}, + [2665] = {.lex_state = 23}, [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 14}, - [2668] = {.lex_state = 14}, - [2669] = {.lex_state = 14}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 70}, - [2672] = {.lex_state = 70}, - [2673] = {.lex_state = 10}, - [2674] = {.lex_state = 70}, - [2675] = {.lex_state = 10}, - [2676] = {.lex_state = 10}, - [2677] = {.lex_state = 6}, - [2678] = {.lex_state = 70}, - [2679] = {.lex_state = 70}, - [2680] = {.lex_state = 70}, - [2681] = {.lex_state = 27}, + [2667] = {.lex_state = 17}, + [2668] = {.lex_state = 17}, + [2669] = {.lex_state = 8}, + [2670] = {.lex_state = 72}, + [2671] = {.lex_state = 72}, + [2672] = {.lex_state = 72}, + [2673] = {.lex_state = 23, .external_lex_state = 4}, + [2674] = {.lex_state = 31}, + [2675] = {.lex_state = 8}, + [2676] = {.lex_state = 23, .external_lex_state = 4}, + [2677] = {.lex_state = 8}, + [2678] = {.lex_state = 8}, + [2679] = {.lex_state = 8}, + [2680] = {.lex_state = 72}, + [2681] = {.lex_state = 72}, [2682] = {.lex_state = 17}, - [2683] = {.lex_state = 14}, - [2684] = {.lex_state = 10}, - [2685] = {.lex_state = 14}, - [2686] = {.lex_state = 10}, - [2687] = {.lex_state = 10}, - [2688] = {.lex_state = 10, .external_lex_state = 4}, - [2689] = {.lex_state = 70}, - [2690] = {.lex_state = 10}, - [2691] = {.lex_state = 29}, - [2692] = {.lex_state = 70}, - [2693] = {.lex_state = 70}, - [2694] = {.lex_state = 10}, - [2695] = {.lex_state = 10}, - [2696] = {.lex_state = 17}, - [2697] = {.lex_state = 10}, - [2698] = {.lex_state = 70}, - [2699] = {.lex_state = 10}, - [2700] = {.lex_state = 10}, - [2701] = {.lex_state = 10}, - [2702] = {.lex_state = 10}, - [2703] = {.lex_state = 10}, - [2704] = {.lex_state = 10}, - [2705] = {.lex_state = 70}, - [2706] = {.lex_state = 10}, - [2707] = {.lex_state = 3}, - [2708] = {.lex_state = 3}, - [2709] = {.lex_state = 14}, - [2710] = {.lex_state = 16}, - [2711] = {.lex_state = 14}, - [2712] = {.lex_state = 10}, - [2713] = {.lex_state = 3}, - [2714] = {.lex_state = 14}, - [2715] = {.lex_state = 10}, - [2716] = {.lex_state = 17}, - [2717] = {.lex_state = 70}, + [2683] = {.lex_state = 18}, + [2684] = {.lex_state = 23}, + [2685] = {.lex_state = 23}, + [2686] = {.lex_state = 8}, + [2687] = {.lex_state = 31}, + [2688] = {.lex_state = 8}, + [2689] = {.lex_state = 8}, + [2690] = {.lex_state = 19}, + [2691] = {.lex_state = 8}, + [2692] = {.lex_state = 8}, + [2693] = {.lex_state = 23}, + [2694] = {.lex_state = 23}, + [2695] = {.lex_state = 72}, + [2696] = {.lex_state = 72}, + [2697] = {.lex_state = 8}, + [2698] = {.lex_state = 17}, + [2699] = {.lex_state = 23}, + [2700] = {.lex_state = 8}, + [2701] = {.lex_state = 8}, + [2702] = {.lex_state = 23}, + [2703] = {.lex_state = 23}, + [2704] = {.lex_state = 5}, + [2705] = {.lex_state = 8}, + [2706] = {.lex_state = 17}, + [2707] = {.lex_state = 72}, + [2708] = {.lex_state = 72}, + [2709] = {.lex_state = 72}, + [2710] = {.lex_state = 17}, + [2711] = {.lex_state = 17}, + [2712] = {.lex_state = 17}, + [2713] = {.lex_state = 23}, + [2714] = {.lex_state = 23, .external_lex_state = 4}, + [2715] = {.lex_state = 17}, + [2716] = {.lex_state = 23}, + [2717] = {.lex_state = 72}, [2718] = {.lex_state = 17}, - [2719] = {.lex_state = 14}, - [2720] = {.lex_state = 6}, - [2721] = {.lex_state = 10}, - [2722] = {.lex_state = 10}, - [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 6}, - [2725] = {.lex_state = 6}, - [2726] = {.lex_state = 17}, - [2727] = {.lex_state = 70}, - [2728] = {.lex_state = 6}, - [2729] = {.lex_state = 6}, - [2730] = {.lex_state = 10}, - [2731] = {.lex_state = 70}, - [2732] = {.lex_state = 70}, - [2733] = {.lex_state = 70}, - [2734] = {.lex_state = 70}, - [2735] = {.lex_state = 70}, - [2736] = {.lex_state = 70}, - [2737] = {.lex_state = 70}, - [2738] = {.lex_state = 70}, - [2739] = {.lex_state = 70}, - [2740] = {.lex_state = 70}, - [2741] = {.lex_state = 70}, - [2742] = {.lex_state = 70}, - [2743] = {.lex_state = 70}, - [2744] = {.lex_state = 70}, - [2745] = {.lex_state = 70}, - [2746] = {.lex_state = 70}, - [2747] = {.lex_state = 70}, - [2748] = {.lex_state = 18}, - [2749] = {.lex_state = 70}, - [2750] = {.lex_state = 70}, - [2751] = {.lex_state = 70}, - [2752] = {.lex_state = 70}, - [2753] = {.lex_state = 6}, - [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 70}, - [2756] = {.lex_state = 17}, - [2757] = {.lex_state = 14}, - [2758] = {.lex_state = 70}, - [2759] = {.lex_state = 70}, - [2760] = {.lex_state = 70}, - [2761] = {.lex_state = 17}, - [2762] = {.lex_state = 70}, - [2763] = {.lex_state = 70}, - [2764] = {.lex_state = 70}, - [2765] = {.lex_state = 18}, + [2719] = {.lex_state = 17}, + [2720] = {.lex_state = 23, .external_lex_state = 4}, + [2721] = {.lex_state = 72}, + [2722] = {.lex_state = 17}, + [2723] = {.lex_state = 8}, + [2724] = {.lex_state = 23, .external_lex_state = 4}, + [2725] = {.lex_state = 31}, + [2726] = {.lex_state = 8}, + [2727] = {.lex_state = 17}, + [2728] = {.lex_state = 23, .external_lex_state = 4}, + [2729] = {.lex_state = 8}, + [2730] = {.lex_state = 8}, + [2731] = {.lex_state = 23}, + [2732] = {.lex_state = 72}, + [2733] = {.lex_state = 33}, + [2734] = {.lex_state = 33}, + [2735] = {.lex_state = 8}, + [2736] = {.lex_state = 72}, + [2737] = {.lex_state = 17}, + [2738] = {.lex_state = 72}, + [2739] = {.lex_state = 8}, + [2740] = {.lex_state = 17}, + [2741] = {.lex_state = 17}, + [2742] = {.lex_state = 72}, + [2743] = {.lex_state = 17}, + [2744] = {.lex_state = 17}, + [2745] = {.lex_state = 31}, + [2746] = {.lex_state = 72}, + [2747] = {.lex_state = 17}, + [2748] = {.lex_state = 72}, + [2749] = {.lex_state = 17}, + [2750] = {.lex_state = 8}, + [2751] = {.lex_state = 31}, + [2752] = {.lex_state = 19}, + [2753] = {.lex_state = 8}, + [2754] = {.lex_state = 23}, + [2755] = {.lex_state = 31}, + [2756] = {.lex_state = 72}, + [2757] = {.lex_state = 33}, + [2758] = {.lex_state = 8}, + [2759] = {.lex_state = 72}, + [2760] = {.lex_state = 17}, + [2761] = {.lex_state = 23}, + [2762] = {.lex_state = 72}, + [2763] = {.lex_state = 23}, + [2764] = {.lex_state = 8}, + [2765] = {.lex_state = 8}, [2766] = {.lex_state = 17}, - [2767] = {.lex_state = 70}, - [2768] = {.lex_state = 18}, - [2769] = {.lex_state = 70}, - [2770] = {.lex_state = 70}, - [2771] = {.lex_state = 70}, - [2772] = {.lex_state = 70}, - [2773] = {.lex_state = 70}, - [2774] = {.lex_state = 70}, - [2775] = {.lex_state = 70}, - [2776] = {.lex_state = 70}, - [2777] = {.lex_state = 70}, - [2778] = {.lex_state = 70}, - [2779] = {.lex_state = 70}, - [2780] = {.lex_state = 70}, - [2781] = {.lex_state = 70}, - [2782] = {.lex_state = 14}, - [2783] = {.lex_state = 70}, - [2784] = {.lex_state = 6}, - [2785] = {.lex_state = 17}, - [2786] = {.lex_state = 70}, - [2787] = {.lex_state = 70}, - [2788] = {.lex_state = 70}, - [2789] = {.lex_state = 70}, - [2790] = {.lex_state = 70}, - [2791] = {.lex_state = 70}, - [2792] = {.lex_state = 70}, - [2793] = {.lex_state = 14}, + [2767] = {.lex_state = 72}, + [2768] = {.lex_state = 23}, + [2769] = {.lex_state = 31}, + [2770] = {.lex_state = 8}, + [2771] = {.lex_state = 23}, + [2772] = {.lex_state = 23, .external_lex_state = 4}, + [2773] = {.lex_state = 33}, + [2774] = {.lex_state = 23}, + [2775] = {.lex_state = 23}, + [2776] = {.lex_state = 72}, + [2777] = {.lex_state = 8}, + [2778] = {.lex_state = 23}, + [2779] = {.lex_state = 72}, + [2780] = {.lex_state = 17}, + [2781] = {.lex_state = 23}, + [2782] = {.lex_state = 72}, + [2783] = {.lex_state = 19}, + [2784] = {.lex_state = 23}, + [2785] = {.lex_state = 19}, + [2786] = {.lex_state = 72}, + [2787] = {.lex_state = 23}, + [2788] = {.lex_state = 23}, + [2789] = {.lex_state = 18}, + [2790] = {.lex_state = 19}, + [2791] = {.lex_state = 17}, + [2792] = {.lex_state = 72}, + [2793] = {.lex_state = 72}, [2794] = {.lex_state = 17}, - [2795] = {.lex_state = 70}, - [2796] = {.lex_state = 70}, - [2797] = {.lex_state = 17}, - [2798] = {.lex_state = 70}, - [2799] = {.lex_state = 70}, + [2795] = {.lex_state = 23}, + [2796] = {.lex_state = 31}, + [2797] = {.lex_state = 23}, + [2798] = {.lex_state = 23}, + [2799] = {.lex_state = 17}, [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 14}, - [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 17}, - [2804] = {.lex_state = 70}, - [2805] = {.lex_state = 70}, - [2806] = {.lex_state = 70}, - [2807] = {.lex_state = 70}, - [2808] = {.lex_state = 70}, - [2809] = {.lex_state = 70}, - [2810] = {.lex_state = 70}, - [2811] = {.lex_state = 70}, - [2812] = {.lex_state = 70}, - [2813] = {.lex_state = 14}, - [2814] = {.lex_state = 70}, - [2815] = {.lex_state = 70}, - [2816] = {.lex_state = 70}, - [2817] = {.lex_state = 70}, - [2818] = {.lex_state = 70}, - [2819] = {.lex_state = 14}, - [2820] = {.lex_state = 70}, - [2821] = {.lex_state = 70}, - [2822] = {.lex_state = 70}, - [2823] = {.lex_state = 10}, - [2824] = {.lex_state = 14}, - [2825] = {.lex_state = 70}, - [2826] = {.lex_state = 14}, - [2827] = {.lex_state = 18}, - [2828] = {.lex_state = 70}, - [2829] = {.lex_state = 70}, - [2830] = {.lex_state = 70}, - [2831] = {.lex_state = 70}, - [2832] = {.lex_state = 70}, - [2833] = {.lex_state = 14}, - [2834] = {.lex_state = 14}, - [2835] = {.lex_state = 70}, - [2836] = {.lex_state = 6}, - [2837] = {.lex_state = 70}, - [2838] = {.lex_state = 70}, - [2839] = {.lex_state = 70}, - [2840] = {.lex_state = 70}, + [2801] = {.lex_state = 18}, + [2802] = {.lex_state = 72}, + [2803] = {.lex_state = 18}, + [2804] = {.lex_state = 72}, + [2805] = {.lex_state = 17}, + [2806] = {.lex_state = 5}, + [2807] = {.lex_state = 17}, + [2808] = {.lex_state = 19}, + [2809] = {.lex_state = 23}, + [2810] = {.lex_state = 17}, + [2811] = {.lex_state = 19}, + [2812] = {.lex_state = 19}, + [2813] = {.lex_state = 31}, + [2814] = {.lex_state = 8}, + [2815] = {.lex_state = 17}, + [2816] = {.lex_state = 19}, + [2817] = {.lex_state = 5}, + [2818] = {.lex_state = 8}, + [2819] = {.lex_state = 23}, + [2820] = {.lex_state = 17}, + [2821] = {.lex_state = 23}, + [2822] = {.lex_state = 23}, + [2823] = {.lex_state = 17}, + [2824] = {.lex_state = 72}, + [2825] = {.lex_state = 17}, + [2826] = {.lex_state = 17}, + [2827] = {.lex_state = 19}, + [2828] = {.lex_state = 72}, + [2829] = {.lex_state = 5}, + [2830] = {.lex_state = 19}, + [2831] = {.lex_state = 17}, + [2832] = {.lex_state = 17}, + [2833] = {.lex_state = 17}, + [2834] = {.lex_state = 72}, + [2835] = {.lex_state = 23}, + [2836] = {.lex_state = 19}, + [2837] = {.lex_state = 17}, + [2838] = {.lex_state = 8}, + [2839] = {.lex_state = 72}, + [2840] = {.lex_state = 17}, [2841] = {.lex_state = 17}, - [2842] = {.lex_state = 70}, - [2843] = {.lex_state = 70}, - [2844] = {.lex_state = 70}, - [2845] = {.lex_state = 17}, - [2846] = {.lex_state = 70}, - [2847] = {.lex_state = 70}, - [2848] = {.lex_state = 70}, - [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 14}, - [2851] = {.lex_state = 70}, - [2852] = {.lex_state = 70}, - [2853] = {.lex_state = 70}, - [2854] = {.lex_state = 70}, - [2855] = {.lex_state = 70}, - [2856] = {.lex_state = 70}, - [2857] = {.lex_state = 70}, - [2858] = {.lex_state = 10, .external_lex_state = 4}, - [2859] = {.lex_state = 70}, - [2860] = {.lex_state = 70}, - [2861] = {.lex_state = 27}, - [2862] = {.lex_state = 14}, - [2863] = {.lex_state = 70}, - [2864] = {.lex_state = 70}, - [2865] = {.lex_state = 6}, - [2866] = {.lex_state = 70}, - [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 18}, - [2869] = {.lex_state = 70}, - [2870] = {.lex_state = 70}, - [2871] = {.lex_state = 17}, - [2872] = {.lex_state = 70}, - [2873] = {.lex_state = 70}, - [2874] = {.lex_state = 70}, - [2875] = {.lex_state = 14}, - [2876] = {.lex_state = 70}, + [2842] = {.lex_state = 18}, + [2843] = {.lex_state = 23}, + [2844] = {.lex_state = 17}, + [2845] = {.lex_state = 8}, + [2846] = {.lex_state = 23}, + [2847] = {.lex_state = 72}, + [2848] = {.lex_state = 72}, + [2849] = {.lex_state = 8}, + [2850] = {.lex_state = 17}, + [2851] = {.lex_state = 17}, + [2852] = {.lex_state = 23}, + [2853] = {.lex_state = 23}, + [2854] = {.lex_state = 17}, + [2855] = {.lex_state = 23}, + [2856] = {.lex_state = 17}, + [2857] = {.lex_state = 8}, + [2858] = {.lex_state = 23}, + [2859] = {.lex_state = 17}, + [2860] = {.lex_state = 23}, + [2861] = {.lex_state = 17}, + [2862] = {.lex_state = 17}, + [2863] = {.lex_state = 17}, + [2864] = {.lex_state = 17}, + [2865] = {.lex_state = 8}, + [2866] = {.lex_state = 8}, + [2867] = {.lex_state = 72}, + [2868] = {.lex_state = 8}, + [2869] = {.lex_state = 23}, + [2870] = {.lex_state = 17}, + [2871] = {.lex_state = 31}, + [2872] = {.lex_state = 8}, + [2873] = {.lex_state = 23}, + [2874] = {.lex_state = 23}, + [2875] = {.lex_state = 31}, + [2876] = {.lex_state = 23, .external_lex_state = 4}, [2877] = {.lex_state = 17}, - [2878] = {.lex_state = 17}, - [2879] = {.lex_state = 70}, - [2880] = {.lex_state = 70}, - [2881] = {.lex_state = 6}, - [2882] = {.lex_state = 17}, - [2883] = {.lex_state = 70}, - [2884] = {.lex_state = 70}, - [2885] = {.lex_state = 70}, - [2886] = {.lex_state = 70}, - [2887] = {.lex_state = 10}, - [2888] = {.lex_state = 70}, - [2889] = {.lex_state = 70}, - [2890] = {.lex_state = 70}, - [2891] = {.lex_state = 70}, - [2892] = {.lex_state = 70}, - [2893] = {.lex_state = 70}, - [2894] = {.lex_state = 17}, - [2895] = {.lex_state = 17}, - [2896] = {.lex_state = 70}, - [2897] = {.lex_state = 17}, - [2898] = {.lex_state = 70}, + [2878] = {.lex_state = 72}, + [2879] = {.lex_state = 72}, + [2880] = {.lex_state = 72}, + [2881] = {.lex_state = 72}, + [2882] = {.lex_state = 72}, + [2883] = {.lex_state = 19}, + [2884] = {.lex_state = 72}, + [2885] = {.lex_state = 72}, + [2886] = {.lex_state = 72}, + [2887] = {.lex_state = 72}, + [2888] = {.lex_state = 72}, + [2889] = {.lex_state = 17}, + [2890] = {.lex_state = 72}, + [2891] = {.lex_state = 72}, + [2892] = {.lex_state = 72}, + [2893] = {.lex_state = 72}, + [2894] = {.lex_state = 72}, + [2895] = {.lex_state = 72}, + [2896] = {.lex_state = 17}, + [2897] = {.lex_state = 72}, + [2898] = {.lex_state = 72}, [2899] = {.lex_state = 17}, - [2900] = {.lex_state = 70}, - [2901] = {.lex_state = 70}, - [2902] = {.lex_state = 70}, - [2903] = {.lex_state = 70}, - [2904] = {.lex_state = 70}, - [2905] = {.lex_state = 70}, - [2906] = {.lex_state = 70}, - [2907] = {.lex_state = 70}, - [2908] = {.lex_state = 6}, - [2909] = {.lex_state = 70}, - [2910] = {.lex_state = 70}, - [2911] = {.lex_state = 70}, - [2912] = {.lex_state = 17}, - [2913] = {.lex_state = 70}, - [2914] = {.lex_state = 70}, - [2915] = {.lex_state = 27}, - [2916] = {.lex_state = 70}, - [2917] = {.lex_state = 70}, - [2918] = {.lex_state = 70}, - [2919] = {.lex_state = 17}, - [2920] = {.lex_state = 70}, - [2921] = {.lex_state = 70}, - [2922] = {.lex_state = 70}, - [2923] = {.lex_state = 17}, - [2924] = {.lex_state = 70}, - [2925] = {.lex_state = 70}, + [2900] = {.lex_state = 17}, + [2901] = {.lex_state = 72}, + [2902] = {.lex_state = 72}, + [2903] = {.lex_state = 72}, + [2904] = {.lex_state = 17}, + [2905] = {.lex_state = 17}, + [2906] = {.lex_state = 72}, + [2907] = {.lex_state = 72}, + [2908] = {.lex_state = 72}, + [2909] = {.lex_state = 19}, + [2910] = {.lex_state = 72}, + [2911] = {.lex_state = 72}, + [2912] = {.lex_state = 72}, + [2913] = {.lex_state = 72}, + [2914] = {.lex_state = 72}, + [2915] = {.lex_state = 72}, + [2916] = {.lex_state = 72}, + [2917] = {.lex_state = 72}, + [2918] = {.lex_state = 72}, + [2919] = {.lex_state = 72}, + [2920] = {.lex_state = 72}, + [2921] = {.lex_state = 72}, + [2922] = {.lex_state = 72}, + [2923] = {.lex_state = 72}, + [2924] = {.lex_state = 72}, + [2925] = {.lex_state = 72}, [2926] = {.lex_state = 17}, - [2927] = {.lex_state = 70}, - [2928] = {.lex_state = 70}, - [2929] = {.lex_state = 10}, - [2930] = {.lex_state = 70}, - [2931] = {.lex_state = 70}, - [2932] = {.lex_state = 70}, - [2933] = {.lex_state = 14}, - [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 14}, - [2936] = {.lex_state = 70}, - [2937] = {.lex_state = 70}, - [2938] = {.lex_state = 70}, - [2939] = {.lex_state = 10}, - [2940] = {.lex_state = 70}, - [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 6}, - [2943] = {.lex_state = 70}, - [2944] = {.lex_state = 70}, - [2945] = {.lex_state = 70}, - [2946] = {.lex_state = 70}, - [2947] = {.lex_state = 70}, - [2948] = {.lex_state = 70}, + [2927] = {.lex_state = 19}, + [2928] = {.lex_state = 72}, + [2929] = {.lex_state = 72}, + [2930] = {.lex_state = 19}, + [2931] = {.lex_state = 72}, + [2932] = {.lex_state = 20}, + [2933] = {.lex_state = 19}, + [2934] = {.lex_state = 72}, + [2935] = {.lex_state = 19}, + [2936] = {.lex_state = 72}, + [2937] = {.lex_state = 72}, + [2938] = {.lex_state = 19}, + [2939] = {.lex_state = 19}, + [2940] = {.lex_state = 72}, + [2941] = {.lex_state = 72}, + [2942] = {.lex_state = 72}, + [2943] = {.lex_state = 17}, + [2944] = {.lex_state = 72}, + [2945] = {.lex_state = 72}, + [2946] = {.lex_state = 72}, + [2947] = {.lex_state = 72}, + [2948] = {.lex_state = 72}, [2949] = {.lex_state = 17}, - [2950] = {.lex_state = 70}, - [2951] = {.lex_state = 70}, - [2952] = {.lex_state = 70}, - [2953] = {.lex_state = 17}, - [2954] = {.lex_state = 70}, - [2955] = {.lex_state = 14}, - [2956] = {.lex_state = 70}, - [2957] = {.lex_state = 14}, + [2950] = {.lex_state = 72}, + [2951] = {.lex_state = 72}, + [2952] = {.lex_state = 72}, + [2953] = {.lex_state = 8}, + [2954] = {.lex_state = 72}, + [2955] = {.lex_state = 72}, + [2956] = {.lex_state = 72}, + [2957] = {.lex_state = 72}, [2958] = {.lex_state = 17}, - [2959] = {.lex_state = 70}, - [2960] = {.lex_state = 70}, - [2961] = {.lex_state = 70}, - [2962] = {.lex_state = 17}, - [2963] = {.lex_state = 70}, - [2964] = {.lex_state = 17}, - [2965] = {.lex_state = 70}, - [2966] = {.lex_state = 70}, - [2967] = {.lex_state = 70}, - [2968] = {.lex_state = 14}, - [2969] = {.lex_state = 70}, - [2970] = {.lex_state = 6}, - [2971] = {.lex_state = 17}, - [2972] = {.lex_state = 14}, - [2973] = {.lex_state = 17}, - [2974] = {.lex_state = 17}, - [2975] = {.lex_state = 70}, - [2976] = {.lex_state = 14}, - [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 17}, - [2979] = {.lex_state = 6}, - [2980] = {.lex_state = 70}, - [2981] = {.lex_state = 70}, - [2982] = {.lex_state = 70}, - [2983] = {.lex_state = 17}, - [2984] = {.lex_state = 70}, - [2985] = {.lex_state = 14}, - [2986] = {.lex_state = 70}, - [2987] = {.lex_state = 70}, - [2988] = {.lex_state = 70}, - [2989] = {.lex_state = 70}, - [2990] = {.lex_state = 17}, - [2991] = {.lex_state = 70}, - [2992] = {.lex_state = 70}, - [2993] = {.lex_state = 70}, - [2994] = {.lex_state = 70}, - [2995] = {.lex_state = 17}, - [2996] = {.lex_state = 70}, - [2997] = {.lex_state = 70}, - [2998] = {.lex_state = 17}, - [2999] = {.lex_state = 70}, - [3000] = {.lex_state = 70}, - [3001] = {.lex_state = 70}, - [3002] = {.lex_state = 14}, - [3003] = {.lex_state = 70}, - [3004] = {.lex_state = 70}, - [3005] = {.lex_state = 70}, - [3006] = {.lex_state = 14}, - [3007] = {.lex_state = 70}, - [3008] = {.lex_state = 14}, - [3009] = {.lex_state = 14}, - [3010] = {.lex_state = 70}, - [3011] = {.lex_state = 70}, - [3012] = {.lex_state = 70}, - [3013] = {.lex_state = 6}, - [3014] = {.lex_state = 70}, - [3015] = {.lex_state = 70}, - [3016] = {.lex_state = 70}, - [3017] = {.lex_state = 70}, - [3018] = {.lex_state = 70}, - [3019] = {.lex_state = 6}, - [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 6}, - [3022] = {.lex_state = 70}, - [3023] = {.lex_state = 70}, - [3024] = {.lex_state = 70}, - [3025] = {.lex_state = 6}, - [3026] = {.lex_state = 70}, - [3027] = {.lex_state = 70}, - [3028] = {.lex_state = 14}, - [3029] = {.lex_state = 6}, - [3030] = {.lex_state = 70}, - [3031] = {.lex_state = 14}, - [3032] = {.lex_state = 17}, - [3033] = {.lex_state = 14}, - [3034] = {.lex_state = 14}, - [3035] = {.lex_state = 70}, - [3036] = {.lex_state = 14}, - [3037] = {.lex_state = 14}, - [3038] = {.lex_state = 70}, - [3039] = {.lex_state = 14}, - [3040] = {.lex_state = 14}, - [3041] = {.lex_state = 10, .external_lex_state = 5}, - [3042] = {.lex_state = 14}, - [3043] = {.lex_state = 14}, - [3044] = {.lex_state = 70}, - [3045] = {.lex_state = 14}, - [3046] = {.lex_state = 70}, - [3047] = {.lex_state = 70}, - [3048] = {.lex_state = 27}, - [3049] = {.lex_state = 70}, - [3050] = {.lex_state = 14}, - [3051] = {.lex_state = 14}, - [3052] = {.lex_state = 70}, - [3053] = {.lex_state = 70}, - [3054] = {.lex_state = 70}, - [3055] = {.lex_state = 70}, - [3056] = {.lex_state = 70}, - [3057] = {.lex_state = 70}, - [3058] = {.lex_state = 14}, - [3059] = {.lex_state = 27}, - [3060] = {.lex_state = 70}, - [3061] = {.lex_state = 27}, - [3062] = {.lex_state = 14}, - [3063] = {.lex_state = 14}, - [3064] = {.lex_state = 14}, - [3065] = {.lex_state = 70}, - [3066] = {.lex_state = 14}, - [3067] = {.lex_state = 14}, - [3068] = {.lex_state = 14}, - [3069] = {.lex_state = 27}, - [3070] = {.lex_state = 70}, - [3071] = {.lex_state = 70}, - [3072] = {.lex_state = 14}, - [3073] = {.lex_state = 70}, - [3074] = {.lex_state = 70}, - [3075] = {.lex_state = 10}, - [3076] = {.lex_state = 10, .external_lex_state = 5}, - [3077] = {.lex_state = 14}, - [3078] = {.lex_state = 70}, - [3079] = {.lex_state = 14}, - [3080] = {.lex_state = 70}, - [3081] = {.lex_state = 70}, - [3082] = {.lex_state = 14}, - [3083] = {.lex_state = 70}, - [3084] = {.lex_state = 70}, - [3085] = {.lex_state = 70}, - [3086] = {.lex_state = 14}, - [3087] = {.lex_state = 70}, - [3088] = {.lex_state = 70}, - [3089] = {.lex_state = 70}, - [3090] = {.lex_state = 70}, - [3091] = {.lex_state = 70}, - [3092] = {.lex_state = 14}, - [3093] = {.lex_state = 70}, - [3094] = {.lex_state = 70}, - [3095] = {.lex_state = 14}, - [3096] = {.lex_state = 14}, - [3097] = {.lex_state = 70}, - [3098] = {.lex_state = 70}, - [3099] = {.lex_state = 70}, - [3100] = {.lex_state = 70}, - [3101] = {.lex_state = 70}, - [3102] = {.lex_state = 14}, - [3103] = {.lex_state = 70}, - [3104] = {.lex_state = 70}, - [3105] = {.lex_state = 70}, - [3106] = {.lex_state = 70}, - [3107] = {.lex_state = 70}, - [3108] = {.lex_state = 70}, - [3109] = {.lex_state = 14}, - [3110] = {.lex_state = 14}, - [3111] = {.lex_state = 14}, - [3112] = {.lex_state = 14}, - [3113] = {.lex_state = 70}, - [3114] = {.lex_state = 70}, - [3115] = {.lex_state = 70}, - [3116] = {.lex_state = 70}, - [3117] = {.lex_state = 70}, - [3118] = {.lex_state = 14}, - [3119] = {.lex_state = 70}, - [3120] = {.lex_state = 70}, - [3121] = {.lex_state = 70}, - [3122] = {.lex_state = 70}, - [3123] = {.lex_state = 70}, - [3124] = {.lex_state = 14}, - [3125] = {.lex_state = 14}, - [3126] = {.lex_state = 14}, - [3127] = {.lex_state = 70}, - [3128] = {.lex_state = 70}, - [3129] = {.lex_state = 70}, - [3130] = {.lex_state = 14}, - [3131] = {.lex_state = 70, .external_lex_state = 6}, - [3132] = {.lex_state = 14}, - [3133] = {.lex_state = 14}, - [3134] = {.lex_state = 14}, - [3135] = {.lex_state = 14}, - [3136] = {.lex_state = 70}, - [3137] = {.lex_state = 70}, - [3138] = {.lex_state = 70}, - [3139] = {.lex_state = 14}, - [3140] = {.lex_state = 14}, - [3141] = {.lex_state = 70}, - [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 14}, - [3144] = {.lex_state = 70}, - [3145] = {.lex_state = 14}, - [3146] = {.lex_state = 14}, - [3147] = {.lex_state = 14}, - [3148] = {.lex_state = 70}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 70}, - [3151] = {.lex_state = 70}, - [3152] = {.lex_state = 6}, - [3153] = {.lex_state = 70}, - [3154] = {.lex_state = 70}, - [3155] = {.lex_state = 70}, - [3156] = {.lex_state = 70}, - [3157] = {.lex_state = 14}, - [3158] = {.lex_state = 14}, - [3159] = {.lex_state = 70}, - [3160] = {.lex_state = 14}, - [3161] = {.lex_state = 14}, - [3162] = {.lex_state = 70}, - [3163] = {.lex_state = 70}, - [3164] = {.lex_state = 14}, - [3165] = {.lex_state = 14}, - [3166] = {.lex_state = 27}, - [3167] = {.lex_state = 14}, - [3168] = {.lex_state = 14}, - [3169] = {.lex_state = 70}, - [3170] = {.lex_state = 14}, - [3171] = {.lex_state = 70}, - [3172] = {.lex_state = 14}, - [3173] = {.lex_state = 14}, - [3174] = {.lex_state = 14}, - [3175] = {.lex_state = 14}, - [3176] = {.lex_state = 14}, - [3177] = {.lex_state = 14}, - [3178] = {.lex_state = 14}, - [3179] = {.lex_state = 5}, - [3180] = {.lex_state = 14}, - [3181] = {.lex_state = 5}, - [3182] = {.lex_state = 14}, - [3183] = {.lex_state = 14}, - [3184] = {.lex_state = 70}, - [3185] = {.lex_state = 14}, - [3186] = {.lex_state = 14}, - [3187] = {.lex_state = 14}, - [3188] = {.lex_state = 14}, - [3189] = {.lex_state = 70}, - [3190] = {.lex_state = 70}, - [3191] = {.lex_state = 14}, - [3192] = {.lex_state = 70}, - [3193] = {.lex_state = 70}, - [3194] = {.lex_state = 18}, - [3195] = {.lex_state = 70}, - [3196] = {.lex_state = 70}, - [3197] = {.lex_state = 70}, - [3198] = {.lex_state = 70}, - [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 14}, - [3201] = {.lex_state = 70}, - [3202] = {.lex_state = 70}, - [3203] = {.lex_state = 70}, - [3204] = {.lex_state = 14}, - [3205] = {.lex_state = 14}, - [3206] = {.lex_state = 14}, - [3207] = {.lex_state = 70}, - [3208] = {.lex_state = 70}, - [3209] = {.lex_state = 70}, - [3210] = {.lex_state = 70}, - [3211] = {.lex_state = 70}, - [3212] = {.lex_state = 70}, - [3213] = {.lex_state = 6}, - [3214] = {.lex_state = 70}, - [3215] = {.lex_state = 70}, - [3216] = {.lex_state = 70}, - [3217] = {.lex_state = 70}, - [3218] = {.lex_state = 70}, - [3219] = {.lex_state = 70}, - [3220] = {.lex_state = 70}, - [3221] = {.lex_state = 70}, - [3222] = {.lex_state = 70}, - [3223] = {.lex_state = 70}, - [3224] = {.lex_state = 70}, - [3225] = {.lex_state = 70}, - [3226] = {.lex_state = 70}, - [3227] = {.lex_state = 14}, - [3228] = {.lex_state = 70}, - [3229] = {.lex_state = 70}, - [3230] = {.lex_state = 70}, - [3231] = {.lex_state = 70}, - [3232] = {.lex_state = 70}, - [3233] = {.lex_state = 70}, - [3234] = {.lex_state = 70}, - [3235] = {.lex_state = 14}, - [3236] = {.lex_state = 14}, - [3237] = {.lex_state = 70}, - [3238] = {.lex_state = 14}, - [3239] = {.lex_state = 14}, - [3240] = {.lex_state = 70}, - [3241] = {.lex_state = 70}, - [3242] = {.lex_state = 70}, - [3243] = {.lex_state = 70}, - [3244] = {.lex_state = 70}, - [3245] = {.lex_state = 70}, - [3246] = {.lex_state = 14}, - [3247] = {.lex_state = 14}, - [3248] = {.lex_state = 70}, - [3249] = {.lex_state = 14}, - [3250] = {.lex_state = 70}, - [3251] = {.lex_state = 70}, - [3252] = {.lex_state = 70}, - [3253] = {.lex_state = 70}, - [3254] = {.lex_state = 14}, - [3255] = {.lex_state = 70}, - [3256] = {.lex_state = 70}, - [3257] = {.lex_state = 70}, - [3258] = {.lex_state = 70}, - [3259] = {.lex_state = 70}, - [3260] = {.lex_state = 14}, - [3261] = {.lex_state = 14}, - [3262] = {.lex_state = 70}, - [3263] = {.lex_state = 70, .external_lex_state = 6}, - [3264] = {.lex_state = 70}, - [3265] = {.lex_state = 10, .external_lex_state = 5}, - [3266] = {.lex_state = 70}, - [3267] = {.lex_state = 14}, - [3268] = {.lex_state = 27}, - [3269] = {.lex_state = 70}, - [3270] = {.lex_state = 14}, - [3271] = {.lex_state = 70}, - [3272] = {.lex_state = 70}, - [3273] = {.lex_state = 70}, - [3274] = {.lex_state = 70}, - [3275] = {.lex_state = 70}, - [3276] = {.lex_state = 70}, - [3277] = {.lex_state = 70}, - [3278] = {.lex_state = 70}, - [3279] = {.lex_state = 70}, - [3280] = {.lex_state = 70}, - [3281] = {.lex_state = 14}, - [3282] = {.lex_state = 70}, - [3283] = {.lex_state = 14}, - [3284] = {.lex_state = 70}, - [3285] = {.lex_state = 14}, - [3286] = {.lex_state = 70}, - [3287] = {.lex_state = 14}, - [3288] = {.lex_state = 70}, - [3289] = {.lex_state = 14}, - [3290] = {.lex_state = 70}, - [3291] = {.lex_state = 14}, - [3292] = {.lex_state = 14}, - [3293] = {.lex_state = 70}, - [3294] = {.lex_state = 14}, - [3295] = {.lex_state = 70}, - [3296] = {.lex_state = 14}, - [3297] = {.lex_state = 14}, - [3298] = {.lex_state = 70}, - [3299] = {.lex_state = 14}, - [3300] = {.lex_state = 14}, - [3301] = {.lex_state = 14}, - [3302] = {.lex_state = 14}, - [3303] = {.lex_state = 70}, - [3304] = {.lex_state = 14}, - [3305] = {.lex_state = 70}, - [3306] = {.lex_state = 14}, - [3307] = {.lex_state = 10}, - [3308] = {.lex_state = 14}, - [3309] = {.lex_state = 70}, - [3310] = {.lex_state = 14}, - [3311] = {.lex_state = 14}, - [3312] = {.lex_state = 70}, - [3313] = {.lex_state = 71}, - [3314] = {.lex_state = 14}, - [3315] = {.lex_state = 14}, - [3316] = {.lex_state = 14}, - [3317] = {.lex_state = 14}, - [3318] = {.lex_state = 18}, - [3319] = {.lex_state = 70, .external_lex_state = 7}, - [3320] = {.lex_state = 70}, - [3321] = {.lex_state = 70}, - [3322] = {.lex_state = 70}, - [3323] = {.lex_state = 70}, - [3324] = {.lex_state = 70}, - [3325] = {.lex_state = 71}, - [3326] = {.lex_state = 70}, - [3327] = {.lex_state = 70}, - [3328] = {.lex_state = 70}, - [3329] = {.lex_state = 70}, - [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 18}, - [3332] = {.lex_state = 70}, - [3333] = {.lex_state = 70, .external_lex_state = 7}, - [3334] = {.lex_state = 70}, - [3335] = {.lex_state = 14}, - [3336] = {.lex_state = 70}, - [3337] = {.lex_state = 71}, - [3338] = {.lex_state = 14}, - [3339] = {.lex_state = 70}, - [3340] = {.lex_state = 70}, - [3341] = {.lex_state = 70, .external_lex_state = 7}, - [3342] = {.lex_state = 14}, - [3343] = {.lex_state = 70}, - [3344] = {.lex_state = 14}, - [3345] = {.lex_state = 71}, - [3346] = {.lex_state = 70}, - [3347] = {.lex_state = 70}, - [3348] = {.lex_state = 70}, - [3349] = {.lex_state = 14}, - [3350] = {.lex_state = 70}, - [3351] = {.lex_state = 14}, - [3352] = {.lex_state = 14}, - [3353] = {.lex_state = 14}, - [3354] = {.lex_state = 14}, - [3355] = {.lex_state = 14}, - [3356] = {.lex_state = 14}, - [3357] = {.lex_state = 70}, - [3358] = {.lex_state = 70}, - [3359] = {.lex_state = 70}, - [3360] = {.lex_state = 14}, - [3361] = {.lex_state = 70}, - [3362] = {.lex_state = 70}, - [3363] = {.lex_state = 70}, - [3364] = {.lex_state = 70}, - [3365] = {.lex_state = 70}, - [3366] = {.lex_state = 18}, - [3367] = {.lex_state = 14}, - [3368] = {.lex_state = 70}, - [3369] = {.lex_state = 70}, - [3370] = {.lex_state = 14}, - [3371] = {.lex_state = 70}, - [3372] = {.lex_state = 70}, - [3373] = {.lex_state = 70}, - [3374] = {.lex_state = 70}, - [3375] = {.lex_state = 70}, - [3376] = {.lex_state = 70, .external_lex_state = 8}, - [3377] = {.lex_state = 70}, - [3378] = {.lex_state = 70}, - [3379] = {.lex_state = 70}, - [3380] = {.lex_state = 70, .external_lex_state = 9}, - [3381] = {.lex_state = 70}, - [3382] = {.lex_state = 70}, - [3383] = {.lex_state = 70}, - [3384] = {.lex_state = 70}, - [3385] = {.lex_state = 70}, - [3386] = {.lex_state = 18}, - [3387] = {.lex_state = 14}, - [3388] = {.lex_state = 70}, - [3389] = {.lex_state = 14}, - [3390] = {.lex_state = 14}, - [3391] = {.lex_state = 70}, - [3392] = {.lex_state = 70}, - [3393] = {.lex_state = 70}, - [3394] = {.lex_state = 70}, - [3395] = {.lex_state = 14}, - [3396] = {.lex_state = 10}, - [3397] = {.lex_state = 70}, - [3398] = {.lex_state = 70}, - [3399] = {.lex_state = 14}, - [3400] = {.lex_state = 70}, - [3401] = {.lex_state = 70}, - [3402] = {.lex_state = 165}, - [3403] = {.lex_state = 70}, - [3404] = {.lex_state = 70}, - [3405] = {.lex_state = 70}, - [3406] = {.lex_state = 70}, - [3407] = {.lex_state = 14}, - [3408] = {.lex_state = 70}, - [3409] = {.lex_state = 14}, - [3410] = {.lex_state = 71}, - [3411] = {.lex_state = 70}, - [3412] = {.lex_state = 18}, - [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70}, - [3415] = {.lex_state = 70}, - [3416] = {.lex_state = 70}, - [3417] = {.lex_state = 70}, - [3418] = {.lex_state = 70}, - [3419] = {.lex_state = 10}, - [3420] = {.lex_state = 14}, - [3421] = {.lex_state = 70}, - [3422] = {.lex_state = 70}, - [3423] = {.lex_state = 71}, - [3424] = {.lex_state = 70}, - [3425] = {.lex_state = 70}, - [3426] = {.lex_state = 70}, - [3427] = {.lex_state = 14}, - [3428] = {.lex_state = 70}, - [3429] = {.lex_state = 70, .external_lex_state = 9}, - [3430] = {.lex_state = 70}, - [3431] = {.lex_state = 70}, - [3432] = {.lex_state = 70}, - [3433] = {.lex_state = 70}, - [3434] = {.lex_state = 14}, - [3435] = {.lex_state = 18}, - [3436] = {.lex_state = 14}, - [3437] = {.lex_state = 70}, - [3438] = {.lex_state = 70}, - [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 70}, - [3441] = {.lex_state = 70}, - [3442] = {.lex_state = 70}, - [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 14}, - [3445] = {.lex_state = 14}, - [3446] = {.lex_state = 70}, - [3447] = {.lex_state = 70}, - [3448] = {.lex_state = 14}, - [3449] = {.lex_state = 14}, - [3450] = {.lex_state = 70}, - [3451] = {.lex_state = 70, .external_lex_state = 9}, - [3452] = {.lex_state = 14}, - [3453] = {.lex_state = 14}, - [3454] = {.lex_state = 70}, - [3455] = {.lex_state = 70}, - [3456] = {.lex_state = 70}, - [3457] = {.lex_state = 70}, - [3458] = {.lex_state = 14}, - [3459] = {.lex_state = 14}, - [3460] = {.lex_state = 14}, - [3461] = {.lex_state = 70, .external_lex_state = 8}, - [3462] = {.lex_state = 70}, - [3463] = {.lex_state = 70}, - [3464] = {.lex_state = 70}, - [3465] = {.lex_state = 70}, - [3466] = {.lex_state = 70}, - [3467] = {.lex_state = 70}, - [3468] = {.lex_state = 70}, - [3469] = {.lex_state = 70}, - [3470] = {.lex_state = 14}, - [3471] = {.lex_state = 70}, - [3472] = {.lex_state = 70}, - [3473] = {.lex_state = 14}, - [3474] = {.lex_state = 70}, - [3475] = {.lex_state = 70}, - [3476] = {.lex_state = 70}, - [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 70}, - [3479] = {.lex_state = 70}, - [3480] = {.lex_state = 18}, - [3481] = {.lex_state = 70}, - [3482] = {.lex_state = 70}, - [3483] = {.lex_state = 70}, - [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 18}, - [3486] = {.lex_state = 70}, - [3487] = {.lex_state = 70}, - [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 70, .external_lex_state = 7}, - [3490] = {.lex_state = 70}, - [3491] = {.lex_state = 70}, - [3492] = {.lex_state = 70}, - [3493] = {.lex_state = 14}, - [3494] = {.lex_state = 70, .external_lex_state = 8}, - [3495] = {.lex_state = 70}, - [3496] = {.lex_state = 70}, - [3497] = {.lex_state = 14}, - [3498] = {.lex_state = 70}, - [3499] = {.lex_state = 70}, - [3500] = {.lex_state = 70}, - [3501] = {.lex_state = 70}, - [3502] = {.lex_state = 70, .external_lex_state = 7}, - [3503] = {.lex_state = 70}, - [3504] = {.lex_state = 70}, - [3505] = {.lex_state = 70}, - [3506] = {.lex_state = 70}, - [3507] = {.lex_state = 70}, - [3508] = {.lex_state = 70}, - [3509] = {.lex_state = 14}, - [3510] = {.lex_state = 18}, - [3511] = {.lex_state = 70}, - [3512] = {.lex_state = 70}, - [3513] = {.lex_state = 70, .external_lex_state = 8}, - [3514] = {.lex_state = 70}, - [3515] = {.lex_state = 70}, - [3516] = {.lex_state = 70}, - [3517] = {.lex_state = 70}, - [3518] = {.lex_state = 70}, - [3519] = {.lex_state = 70, .external_lex_state = 8}, - [3520] = {.lex_state = 70}, - [3521] = {.lex_state = 70}, - [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 70}, - [3524] = {.lex_state = 70}, - [3525] = {.lex_state = 70}, - [3526] = {.lex_state = 70}, - [3527] = {.lex_state = 70}, - [3528] = {.lex_state = 70}, - [3529] = {.lex_state = 70}, - [3530] = {.lex_state = 70}, - [3531] = {.lex_state = 14}, - [3532] = {.lex_state = 70}, - [3533] = {.lex_state = 70}, - [3534] = {.lex_state = 14}, - [3535] = {.lex_state = 18}, - [3536] = {.lex_state = 70}, - [3537] = {.lex_state = 14}, - [3538] = {.lex_state = 70}, - [3539] = {.lex_state = 18}, - [3540] = {.lex_state = 18}, - [3541] = {.lex_state = 70}, - [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 70}, - [3544] = {.lex_state = 18}, - [3545] = {.lex_state = 18}, - [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 14}, - [3548] = {.lex_state = 70}, - [3549] = {.lex_state = 14}, - [3550] = {.lex_state = 70, .external_lex_state = 9}, - [3551] = {.lex_state = 14}, - [3552] = {.lex_state = 70}, - [3553] = {.lex_state = 70, .external_lex_state = 9}, - [3554] = {.lex_state = 18}, - [3555] = {.lex_state = 18}, - [3556] = {.lex_state = 70}, - [3557] = {.lex_state = 14}, - [3558] = {.lex_state = 14}, - [3559] = {.lex_state = 18}, - [3560] = {.lex_state = 14}, - [3561] = {.lex_state = 70, .external_lex_state = 9}, - [3562] = {.lex_state = 14}, - [3563] = {.lex_state = 70}, - [3564] = {.lex_state = 14}, - [3565] = {.lex_state = 18}, - [3566] = {.lex_state = 14}, - [3567] = {.lex_state = 70}, - [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 14}, - [3570] = {.lex_state = 70}, - [3571] = {.lex_state = 70}, - [3572] = {.lex_state = 70}, - [3573] = {.lex_state = 70}, - [3574] = {.lex_state = 70}, - [3575] = {.lex_state = 70}, - [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 18}, - [3578] = {.lex_state = 70}, - [3579] = {.lex_state = 18}, - [3580] = {.lex_state = 70}, - [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 18}, - [3583] = {.lex_state = 70}, - [3584] = {.lex_state = 70}, - [3585] = {.lex_state = 18}, - [3586] = {.lex_state = 18}, - [3587] = {.lex_state = 14}, - [3588] = {.lex_state = 18}, - [3589] = {.lex_state = 18}, - [3590] = {.lex_state = 18}, - [3591] = {.lex_state = 18}, - [3592] = {.lex_state = 18}, - [3593] = {.lex_state = 14}, - [3594] = {.lex_state = 71}, - [3595] = {.lex_state = 14}, - [3596] = {.lex_state = 14}, - [3597] = {.lex_state = 70}, - [3598] = {.lex_state = 70}, - [3599] = {.lex_state = 14}, - [3600] = {.lex_state = 14}, - [3601] = {.lex_state = 70, .external_lex_state = 8}, - [3602] = {.lex_state = 14}, - [3603] = {.lex_state = 14}, - [3604] = {.lex_state = 14}, - [3605] = {.lex_state = 71}, - [3606] = {.lex_state = 70}, - [3607] = {.lex_state = 14}, - [3608] = {.lex_state = 70}, - [3609] = {.lex_state = 70}, - [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 14}, - [3612] = {.lex_state = 70}, - [3613] = {(TSStateId)(-1)}, - [3614] = {(TSStateId)(-1)}, - [3615] = {(TSStateId)(-1)}, - [3616] = {(TSStateId)(-1)}, - [3617] = {(TSStateId)(-1)}, - [3618] = {(TSStateId)(-1)}, - [3619] = {(TSStateId)(-1)}, + [2959] = {.lex_state = 72}, + [2960] = {.lex_state = 72}, + [2961] = {.lex_state = 72}, + [2962] = {.lex_state = 72}, + [2963] = {.lex_state = 72}, + [2964] = {.lex_state = 72}, + [2965] = {.lex_state = 72}, + [2966] = {.lex_state = 72}, + [2967] = {.lex_state = 72}, + [2968] = {.lex_state = 72}, + [2969] = {.lex_state = 72}, + [2970] = {.lex_state = 20}, + [2971] = {.lex_state = 72}, + [2972] = {.lex_state = 19}, + [2973] = {.lex_state = 19}, + [2974] = {.lex_state = 72}, + [2975] = {.lex_state = 72}, + [2976] = {.lex_state = 72}, + [2977] = {.lex_state = 72}, + [2978] = {.lex_state = 72}, + [2979] = {.lex_state = 72}, + [2980] = {.lex_state = 72}, + [2981] = {.lex_state = 72}, + [2982] = {.lex_state = 23, .external_lex_state = 4}, + [2983] = {.lex_state = 72}, + [2984] = {.lex_state = 72}, + [2985] = {.lex_state = 72}, + [2986] = {.lex_state = 72}, + [2987] = {.lex_state = 19}, + [2988] = {.lex_state = 72}, + [2989] = {.lex_state = 72}, + [2990] = {.lex_state = 72}, + [2991] = {.lex_state = 19}, + [2992] = {.lex_state = 72}, + [2993] = {.lex_state = 72}, + [2994] = {.lex_state = 72}, + [2995] = {.lex_state = 72}, + [2996] = {.lex_state = 19}, + [2997] = {.lex_state = 19}, + [2998] = {.lex_state = 72}, + [2999] = {.lex_state = 72}, + [3000] = {.lex_state = 19}, + [3001] = {.lex_state = 72}, + [3002] = {.lex_state = 72}, + [3003] = {.lex_state = 72}, + [3004] = {.lex_state = 72}, + [3005] = {.lex_state = 72}, + [3006] = {.lex_state = 72}, + [3007] = {.lex_state = 19}, + [3008] = {.lex_state = 17}, + [3009] = {.lex_state = 72}, + [3010] = {.lex_state = 19}, + [3011] = {.lex_state = 17}, + [3012] = {.lex_state = 72}, + [3013] = {.lex_state = 19}, + [3014] = {.lex_state = 19}, + [3015] = {.lex_state = 19}, + [3016] = {.lex_state = 19}, + [3017] = {.lex_state = 19}, + [3018] = {.lex_state = 72}, + [3019] = {.lex_state = 19}, + [3020] = {.lex_state = 23}, + [3021] = {.lex_state = 72}, + [3022] = {.lex_state = 8}, + [3023] = {.lex_state = 72}, + [3024] = {.lex_state = 72}, + [3025] = {.lex_state = 72}, + [3026] = {.lex_state = 72}, + [3027] = {.lex_state = 72}, + [3028] = {.lex_state = 72}, + [3029] = {.lex_state = 72}, + [3030] = {.lex_state = 72}, + [3031] = {.lex_state = 72}, + [3032] = {.lex_state = 72}, + [3033] = {.lex_state = 72}, + [3034] = {.lex_state = 72}, + [3035] = {.lex_state = 72}, + [3036] = {.lex_state = 72}, + [3037] = {.lex_state = 72}, + [3038] = {.lex_state = 72}, + [3039] = {.lex_state = 31}, + [3040] = {.lex_state = 72}, + [3041] = {.lex_state = 72}, + [3042] = {.lex_state = 72}, + [3043] = {.lex_state = 72}, + [3044] = {.lex_state = 72}, + [3045] = {.lex_state = 72}, + [3046] = {.lex_state = 72}, + [3047] = {.lex_state = 72}, + [3048] = {.lex_state = 72}, + [3049] = {.lex_state = 72}, + [3050] = {.lex_state = 72}, + [3051] = {.lex_state = 72}, + [3052] = {.lex_state = 72}, + [3053] = {.lex_state = 31}, + [3054] = {.lex_state = 19}, + [3055] = {.lex_state = 8}, + [3056] = {.lex_state = 72}, + [3057] = {.lex_state = 72}, + [3058] = {.lex_state = 19}, + [3059] = {.lex_state = 72}, + [3060] = {.lex_state = 72}, + [3061] = {.lex_state = 17}, + [3062] = {.lex_state = 72}, + [3063] = {.lex_state = 72}, + [3064] = {.lex_state = 17}, + [3065] = {.lex_state = 72}, + [3066] = {.lex_state = 72}, + [3067] = {.lex_state = 72}, + [3068] = {.lex_state = 19}, + [3069] = {.lex_state = 8}, + [3070] = {.lex_state = 20}, + [3071] = {.lex_state = 72}, + [3072] = {.lex_state = 19}, + [3073] = {.lex_state = 72}, + [3074] = {.lex_state = 72}, + [3075] = {.lex_state = 72}, + [3076] = {.lex_state = 72}, + [3077] = {.lex_state = 72}, + [3078] = {.lex_state = 20}, + [3079] = {.lex_state = 72}, + [3080] = {.lex_state = 72}, + [3081] = {.lex_state = 19}, + [3082] = {.lex_state = 72}, + [3083] = {.lex_state = 72}, + [3084] = {.lex_state = 17}, + [3085] = {.lex_state = 72}, + [3086] = {.lex_state = 17}, + [3087] = {.lex_state = 72}, + [3088] = {.lex_state = 72}, + [3089] = {.lex_state = 72}, + [3090] = {.lex_state = 19}, + [3091] = {.lex_state = 23}, + [3092] = {.lex_state = 72}, + [3093] = {.lex_state = 8}, + [3094] = {.lex_state = 8}, + [3095] = {.lex_state = 72}, + [3096] = {.lex_state = 19}, + [3097] = {.lex_state = 72}, + [3098] = {.lex_state = 72}, + [3099] = {.lex_state = 17}, + [3100] = {.lex_state = 17}, + [3101] = {.lex_state = 72}, + [3102] = {.lex_state = 72}, + [3103] = {.lex_state = 23}, + [3104] = {.lex_state = 72}, + [3105] = {.lex_state = 72}, + [3106] = {.lex_state = 72}, + [3107] = {.lex_state = 72}, + [3108] = {.lex_state = 72}, + [3109] = {.lex_state = 72}, + [3110] = {.lex_state = 8}, + [3111] = {.lex_state = 72}, + [3112] = {.lex_state = 72}, + [3113] = {.lex_state = 72}, + [3114] = {.lex_state = 72}, + [3115] = {.lex_state = 23}, + [3116] = {.lex_state = 72}, + [3117] = {.lex_state = 72}, + [3118] = {.lex_state = 72}, + [3119] = {.lex_state = 72}, + [3120] = {.lex_state = 72}, + [3121] = {.lex_state = 72}, + [3122] = {.lex_state = 72}, + [3123] = {.lex_state = 72}, + [3124] = {.lex_state = 72}, + [3125] = {.lex_state = 72}, + [3126] = {.lex_state = 17}, + [3127] = {.lex_state = 19}, + [3128] = {.lex_state = 19}, + [3129] = {.lex_state = 72}, + [3130] = {.lex_state = 19}, + [3131] = {.lex_state = 19}, + [3132] = {.lex_state = 19}, + [3133] = {.lex_state = 19}, + [3134] = {.lex_state = 72}, + [3135] = {.lex_state = 72}, + [3136] = {.lex_state = 17}, + [3137] = {.lex_state = 72}, + [3138] = {.lex_state = 72}, + [3139] = {.lex_state = 72}, + [3140] = {.lex_state = 72}, + [3141] = {.lex_state = 72}, + [3142] = {.lex_state = 72}, + [3143] = {.lex_state = 72}, + [3144] = {.lex_state = 72}, + [3145] = {.lex_state = 72}, + [3146] = {.lex_state = 17}, + [3147] = {.lex_state = 72}, + [3148] = {.lex_state = 72}, + [3149] = {.lex_state = 72}, + [3150] = {.lex_state = 72}, + [3151] = {.lex_state = 72}, + [3152] = {.lex_state = 17}, + [3153] = {.lex_state = 20}, + [3154] = {.lex_state = 8}, + [3155] = {.lex_state = 8}, + [3156] = {.lex_state = 17}, + [3157] = {.lex_state = 72}, + [3158] = {.lex_state = 72}, + [3159] = {.lex_state = 72}, + [3160] = {.lex_state = 72}, + [3161] = {.lex_state = 72}, + [3162] = {.lex_state = 72}, + [3163] = {.lex_state = 72}, + [3164] = {.lex_state = 17}, + [3165] = {.lex_state = 8}, + [3166] = {.lex_state = 72}, + [3167] = {.lex_state = 17}, + [3168] = {.lex_state = 8}, + [3169] = {.lex_state = 72}, + [3170] = {.lex_state = 17}, + [3171] = {.lex_state = 72}, + [3172] = {.lex_state = 8}, + [3173] = {.lex_state = 72}, + [3174] = {.lex_state = 8}, + [3175] = {.lex_state = 72}, + [3176] = {.lex_state = 17}, + [3177] = {.lex_state = 72}, + [3178] = {.lex_state = 8}, + [3179] = {.lex_state = 72}, + [3180] = {.lex_state = 72}, + [3181] = {.lex_state = 17}, + [3182] = {.lex_state = 17}, + [3183] = {.lex_state = 19}, + [3184] = {.lex_state = 72}, + [3185] = {.lex_state = 72}, + [3186] = {.lex_state = 72}, + [3187] = {.lex_state = 72}, + [3188] = {.lex_state = 72}, + [3189] = {.lex_state = 72}, + [3190] = {.lex_state = 72}, + [3191] = {.lex_state = 72}, + [3192] = {.lex_state = 72}, + [3193] = {.lex_state = 72}, + [3194] = {.lex_state = 72}, + [3195] = {.lex_state = 72}, + [3196] = {.lex_state = 72}, + [3197] = {.lex_state = 72}, + [3198] = {.lex_state = 17}, + [3199] = {.lex_state = 17}, + [3200] = {.lex_state = 17}, + [3201] = {.lex_state = 17}, + [3202] = {.lex_state = 31}, + [3203] = {.lex_state = 17}, + [3204] = {.lex_state = 17}, + [3205] = {.lex_state = 72}, + [3206] = {.lex_state = 72}, + [3207] = {.lex_state = 72}, + [3208] = {.lex_state = 72}, + [3209] = {.lex_state = 72}, + [3210] = {.lex_state = 31}, + [3211] = {.lex_state = 72}, + [3212] = {.lex_state = 17}, + [3213] = {.lex_state = 17}, + [3214] = {.lex_state = 72}, + [3215] = {.lex_state = 20}, + [3216] = {.lex_state = 72}, + [3217] = {.lex_state = 72}, + [3218] = {.lex_state = 72}, + [3219] = {.lex_state = 72}, + [3220] = {.lex_state = 17}, + [3221] = {.lex_state = 72}, + [3222] = {.lex_state = 72}, + [3223] = {.lex_state = 72}, + [3224] = {.lex_state = 17}, + [3225] = {.lex_state = 72}, + [3226] = {.lex_state = 72}, + [3227] = {.lex_state = 72}, + [3228] = {.lex_state = 72}, + [3229] = {.lex_state = 17}, + [3230] = {.lex_state = 72}, + [3231] = {.lex_state = 72}, + [3232] = {.lex_state = 72}, + [3233] = {.lex_state = 72}, + [3234] = {.lex_state = 72}, + [3235] = {.lex_state = 17}, + [3236] = {.lex_state = 17}, + [3237] = {.lex_state = 72}, + [3238] = {.lex_state = 17}, + [3239] = {.lex_state = 17}, + [3240] = {.lex_state = 72}, + [3241] = {.lex_state = 17}, + [3242] = {.lex_state = 8}, + [3243] = {.lex_state = 17}, + [3244] = {.lex_state = 17}, + [3245] = {.lex_state = 72}, + [3246] = {.lex_state = 72}, + [3247] = {.lex_state = 72}, + [3248] = {.lex_state = 23, .external_lex_state = 5}, + [3249] = {.lex_state = 72}, + [3250] = {.lex_state = 72}, + [3251] = {.lex_state = 17}, + [3252] = {.lex_state = 17}, + [3253] = {.lex_state = 72}, + [3254] = {.lex_state = 17}, + [3255] = {.lex_state = 17}, + [3256] = {.lex_state = 17}, + [3257] = {.lex_state = 72}, + [3258] = {.lex_state = 72}, + [3259] = {.lex_state = 17}, + [3260] = {.lex_state = 17}, + [3261] = {.lex_state = 72}, + [3262] = {.lex_state = 72}, + [3263] = {.lex_state = 72}, + [3264] = {.lex_state = 72}, + [3265] = {.lex_state = 17}, + [3266] = {.lex_state = 72}, + [3267] = {.lex_state = 72}, + [3268] = {.lex_state = 17}, + [3269] = {.lex_state = 17}, + [3270] = {.lex_state = 17}, + [3271] = {.lex_state = 72}, + [3272] = {.lex_state = 23}, + [3273] = {.lex_state = 72}, + [3274] = {.lex_state = 72}, + [3275] = {.lex_state = 17}, + [3276] = {.lex_state = 72}, + [3277] = {.lex_state = 72}, + [3278] = {.lex_state = 17}, + [3279] = {.lex_state = 17}, + [3280] = {.lex_state = 17}, + [3281] = {.lex_state = 17}, + [3282] = {.lex_state = 72}, + [3283] = {.lex_state = 72}, + [3284] = {.lex_state = 72}, + [3285] = {.lex_state = 72}, + [3286] = {.lex_state = 72}, + [3287] = {.lex_state = 17}, + [3288] = {.lex_state = 72}, + [3289] = {.lex_state = 17}, + [3290] = {.lex_state = 17}, + [3291] = {.lex_state = 17}, + [3292] = {.lex_state = 17}, + [3293] = {.lex_state = 72}, + [3294] = {.lex_state = 72}, + [3295] = {.lex_state = 72}, + [3296] = {.lex_state = 72}, + [3297] = {.lex_state = 72}, + [3298] = {.lex_state = 72}, + [3299] = {.lex_state = 72}, + [3300] = {.lex_state = 17}, + [3301] = {.lex_state = 17}, + [3302] = {.lex_state = 17}, + [3303] = {.lex_state = 17}, + [3304] = {.lex_state = 17}, + [3305] = {.lex_state = 72}, + [3306] = {.lex_state = 72}, + [3307] = {.lex_state = 72}, + [3308] = {.lex_state = 17}, + [3309] = {.lex_state = 17}, + [3310] = {.lex_state = 17}, + [3311] = {.lex_state = 17}, + [3312] = {.lex_state = 17}, + [3313] = {.lex_state = 17}, + [3314] = {.lex_state = 17}, + [3315] = {.lex_state = 17}, + [3316] = {.lex_state = 17}, + [3317] = {.lex_state = 17}, + [3318] = {.lex_state = 17}, + [3319] = {.lex_state = 17}, + [3320] = {.lex_state = 17}, + [3321] = {.lex_state = 17}, + [3322] = {.lex_state = 17}, + [3323] = {.lex_state = 17}, + [3324] = {.lex_state = 17}, + [3325] = {.lex_state = 72}, + [3326] = {.lex_state = 72}, + [3327] = {.lex_state = 72}, + [3328] = {.lex_state = 72}, + [3329] = {.lex_state = 72}, + [3330] = {.lex_state = 72}, + [3331] = {.lex_state = 72}, + [3332] = {.lex_state = 17}, + [3333] = {.lex_state = 72}, + [3334] = {.lex_state = 72}, + [3335] = {.lex_state = 17}, + [3336] = {.lex_state = 72}, + [3337] = {.lex_state = 72}, + [3338] = {.lex_state = 72}, + [3339] = {.lex_state = 72}, + [3340] = {.lex_state = 72}, + [3341] = {.lex_state = 17}, + [3342] = {.lex_state = 17}, + [3343] = {.lex_state = 17}, + [3344] = {.lex_state = 72}, + [3345] = {.lex_state = 72}, + [3346] = {.lex_state = 72}, + [3347] = {.lex_state = 72, .external_lex_state = 6}, + [3348] = {.lex_state = 17}, + [3349] = {.lex_state = 72}, + [3350] = {.lex_state = 17}, + [3351] = {.lex_state = 72}, + [3352] = {.lex_state = 72}, + [3353] = {.lex_state = 72}, + [3354] = {.lex_state = 72}, + [3355] = {.lex_state = 72}, + [3356] = {.lex_state = 72}, + [3357] = {.lex_state = 17}, + [3358] = {.lex_state = 31}, + [3359] = {.lex_state = 31}, + [3360] = {.lex_state = 72}, + [3361] = {.lex_state = 7}, + [3362] = {.lex_state = 7}, + [3363] = {.lex_state = 72}, + [3364] = {.lex_state = 72}, + [3365] = {.lex_state = 17}, + [3366] = {.lex_state = 72}, + [3367] = {.lex_state = 72}, + [3368] = {.lex_state = 72}, + [3369] = {.lex_state = 72}, + [3370] = {.lex_state = 72}, + [3371] = {.lex_state = 72}, + [3372] = {.lex_state = 72}, + [3373] = {.lex_state = 23, .external_lex_state = 5}, + [3374] = {.lex_state = 72}, + [3375] = {.lex_state = 17}, + [3376] = {.lex_state = 72}, + [3377] = {.lex_state = 17}, + [3378] = {.lex_state = 17}, + [3379] = {.lex_state = 17}, + [3380] = {.lex_state = 72}, + [3381] = {.lex_state = 72}, + [3382] = {.lex_state = 72}, + [3383] = {.lex_state = 72}, + [3384] = {.lex_state = 23, .external_lex_state = 5}, + [3385] = {.lex_state = 8}, + [3386] = {.lex_state = 72}, + [3387] = {.lex_state = 72}, + [3388] = {.lex_state = 72}, + [3389] = {.lex_state = 72}, + [3390] = {.lex_state = 72}, + [3391] = {.lex_state = 72}, + [3392] = {.lex_state = 72}, + [3393] = {.lex_state = 72}, + [3394] = {.lex_state = 72}, + [3395] = {.lex_state = 23}, + [3396] = {.lex_state = 72}, + [3397] = {.lex_state = 17}, + [3398] = {.lex_state = 17}, + [3399] = {.lex_state = 72}, + [3400] = {.lex_state = 72}, + [3401] = {.lex_state = 72}, + [3402] = {.lex_state = 72}, + [3403] = {.lex_state = 17}, + [3404] = {.lex_state = 17}, + [3405] = {.lex_state = 31}, + [3406] = {.lex_state = 72}, + [3407] = {.lex_state = 17}, + [3408] = {.lex_state = 72}, + [3409] = {.lex_state = 72}, + [3410] = {.lex_state = 17}, + [3411] = {.lex_state = 72}, + [3412] = {.lex_state = 17}, + [3413] = {.lex_state = 17}, + [3414] = {.lex_state = 72}, + [3415] = {.lex_state = 17}, + [3416] = {.lex_state = 72}, + [3417] = {.lex_state = 72}, + [3418] = {.lex_state = 72}, + [3419] = {.lex_state = 72}, + [3420] = {.lex_state = 72}, + [3421] = {.lex_state = 72}, + [3422] = {.lex_state = 72}, + [3423] = {.lex_state = 17}, + [3424] = {.lex_state = 72}, + [3425] = {.lex_state = 72}, + [3426] = {.lex_state = 72, .external_lex_state = 6}, + [3427] = {.lex_state = 72}, + [3428] = {.lex_state = 72}, + [3429] = {.lex_state = 17}, + [3430] = {.lex_state = 72}, + [3431] = {.lex_state = 72}, + [3432] = {.lex_state = 17}, + [3433] = {.lex_state = 72}, + [3434] = {.lex_state = 72}, + [3435] = {.lex_state = 72}, + [3436] = {.lex_state = 72}, + [3437] = {.lex_state = 72}, + [3438] = {.lex_state = 72}, + [3439] = {.lex_state = 72}, + [3440] = {.lex_state = 72}, + [3441] = {.lex_state = 72}, + [3442] = {.lex_state = 72}, + [3443] = {.lex_state = 72}, + [3444] = {.lex_state = 17}, + [3445] = {.lex_state = 72}, + [3446] = {.lex_state = 17}, + [3447] = {.lex_state = 72}, + [3448] = {.lex_state = 72}, + [3449] = {.lex_state = 17}, + [3450] = {.lex_state = 72}, + [3451] = {.lex_state = 17}, + [3452] = {.lex_state = 17}, + [3453] = {.lex_state = 72}, + [3454] = {.lex_state = 72}, + [3455] = {.lex_state = 72}, + [3456] = {.lex_state = 72}, + [3457] = {.lex_state = 17}, + [3458] = {.lex_state = 17}, + [3459] = {.lex_state = 17}, + [3460] = {.lex_state = 17}, + [3461] = {.lex_state = 72}, + [3462] = {.lex_state = 17}, + [3463] = {.lex_state = 72}, + [3464] = {.lex_state = 17}, + [3465] = {.lex_state = 17}, + [3466] = {.lex_state = 17}, + [3467] = {.lex_state = 31}, + [3468] = {.lex_state = 72}, + [3469] = {.lex_state = 17}, + [3470] = {.lex_state = 17}, + [3471] = {.lex_state = 17}, + [3472] = {.lex_state = 72}, + [3473] = {.lex_state = 17}, + [3474] = {.lex_state = 17}, + [3475] = {.lex_state = 72}, + [3476] = {.lex_state = 17}, + [3477] = {.lex_state = 17}, + [3478] = {.lex_state = 17}, + [3479] = {.lex_state = 17}, + [3480] = {.lex_state = 72}, + [3481] = {.lex_state = 72}, + [3482] = {.lex_state = 17}, + [3483] = {.lex_state = 72}, + [3484] = {.lex_state = 17}, + [3485] = {.lex_state = 72}, + [3486] = {.lex_state = 72}, + [3487] = {.lex_state = 72}, + [3488] = {.lex_state = 72}, + [3489] = {.lex_state = 72}, + [3490] = {.lex_state = 72}, + [3491] = {.lex_state = 17}, + [3492] = {.lex_state = 17}, + [3493] = {.lex_state = 72}, + [3494] = {.lex_state = 72}, + [3495] = {.lex_state = 72}, + [3496] = {.lex_state = 17}, + [3497] = {.lex_state = 17}, + [3498] = {.lex_state = 72}, + [3499] = {.lex_state = 17}, + [3500] = {.lex_state = 17}, + [3501] = {.lex_state = 72}, + [3502] = {.lex_state = 72}, + [3503] = {.lex_state = 72, .external_lex_state = 7}, + [3504] = {.lex_state = 72}, + [3505] = {.lex_state = 17}, + [3506] = {.lex_state = 17}, + [3507] = {.lex_state = 17}, + [3508] = {.lex_state = 72}, + [3509] = {.lex_state = 17}, + [3510] = {.lex_state = 17}, + [3511] = {.lex_state = 72, .external_lex_state = 8}, + [3512] = {.lex_state = 72}, + [3513] = {.lex_state = 72}, + [3514] = {.lex_state = 17}, + [3515] = {.lex_state = 17}, + [3516] = {.lex_state = 17}, + [3517] = {.lex_state = 72}, + [3518] = {.lex_state = 72}, + [3519] = {.lex_state = 72}, + [3520] = {.lex_state = 72}, + [3521] = {.lex_state = 72}, + [3522] = {.lex_state = 72}, + [3523] = {.lex_state = 17}, + [3524] = {.lex_state = 23}, + [3525] = {.lex_state = 72}, + [3526] = {.lex_state = 73}, + [3527] = {.lex_state = 17}, + [3528] = {.lex_state = 72}, + [3529] = {.lex_state = 20}, + [3530] = {.lex_state = 72}, + [3531] = {.lex_state = 72}, + [3532] = {.lex_state = 17}, + [3533] = {.lex_state = 17}, + [3534] = {.lex_state = 72}, + [3535] = {.lex_state = 72}, + [3536] = {.lex_state = 72}, + [3537] = {.lex_state = 17}, + [3538] = {.lex_state = 72}, + [3539] = {.lex_state = 72}, + [3540] = {.lex_state = 72}, + [3541] = {.lex_state = 72}, + [3542] = {.lex_state = 17}, + [3543] = {.lex_state = 72}, + [3544] = {.lex_state = 72}, + [3545] = {.lex_state = 72}, + [3546] = {.lex_state = 72}, + [3547] = {.lex_state = 72}, + [3548] = {.lex_state = 20}, + [3549] = {.lex_state = 72}, + [3550] = {.lex_state = 72}, + [3551] = {.lex_state = 72}, + [3552] = {.lex_state = 72}, + [3553] = {.lex_state = 72}, + [3554] = {.lex_state = 17}, + [3555] = {.lex_state = 17}, + [3556] = {.lex_state = 72}, + [3557] = {.lex_state = 72}, + [3558] = {.lex_state = 72}, + [3559] = {.lex_state = 17}, + [3560] = {.lex_state = 17}, + [3561] = {.lex_state = 72}, + [3562] = {.lex_state = 20}, + [3563] = {.lex_state = 72}, + [3564] = {.lex_state = 72}, + [3565] = {.lex_state = 17}, + [3566] = {.lex_state = 72}, + [3567] = {.lex_state = 72, .external_lex_state = 7}, + [3568] = {.lex_state = 72}, + [3569] = {.lex_state = 20}, + [3570] = {.lex_state = 17}, + [3571] = {.lex_state = 72}, + [3572] = {.lex_state = 72}, + [3573] = {.lex_state = 72}, + [3574] = {.lex_state = 72}, + [3575] = {.lex_state = 72}, + [3576] = {.lex_state = 72, .external_lex_state = 8}, + [3577] = {.lex_state = 72}, + [3578] = {.lex_state = 72}, + [3579] = {.lex_state = 72}, + [3580] = {.lex_state = 72}, + [3581] = {.lex_state = 72}, + [3582] = {.lex_state = 72}, + [3583] = {.lex_state = 17}, + [3584] = {.lex_state = 17}, + [3585] = {.lex_state = 17}, + [3586] = {.lex_state = 72}, + [3587] = {.lex_state = 72}, + [3588] = {.lex_state = 17}, + [3589] = {.lex_state = 72}, + [3590] = {.lex_state = 72}, + [3591] = {.lex_state = 72}, + [3592] = {.lex_state = 72}, + [3593] = {.lex_state = 72}, + [3594] = {.lex_state = 72}, + [3595] = {.lex_state = 72}, + [3596] = {.lex_state = 72}, + [3597] = {.lex_state = 72}, + [3598] = {.lex_state = 72}, + [3599] = {.lex_state = 72}, + [3600] = {.lex_state = 17}, + [3601] = {.lex_state = 17}, + [3602] = {.lex_state = 72}, + [3603] = {.lex_state = 72}, + [3604] = {.lex_state = 72, .external_lex_state = 8}, + [3605] = {.lex_state = 167}, + [3606] = {.lex_state = 17}, + [3607] = {.lex_state = 72}, + [3608] = {.lex_state = 72}, + [3609] = {.lex_state = 72}, + [3610] = {.lex_state = 72}, + [3611] = {.lex_state = 72}, + [3612] = {.lex_state = 72}, + [3613] = {.lex_state = 72}, + [3614] = {.lex_state = 72}, + [3615] = {.lex_state = 20}, + [3616] = {.lex_state = 72}, + [3617] = {.lex_state = 72}, + [3618] = {.lex_state = 72}, + [3619] = {.lex_state = 72}, + [3620] = {.lex_state = 72}, + [3621] = {.lex_state = 20}, + [3622] = {.lex_state = 17}, + [3623] = {.lex_state = 72}, + [3624] = {.lex_state = 72}, + [3625] = {.lex_state = 72, .external_lex_state = 9}, + [3626] = {.lex_state = 72}, + [3627] = {.lex_state = 72}, + [3628] = {.lex_state = 72}, + [3629] = {.lex_state = 72}, + [3630] = {.lex_state = 72}, + [3631] = {.lex_state = 72}, + [3632] = {.lex_state = 8}, + [3633] = {.lex_state = 72}, + [3634] = {.lex_state = 72}, + [3635] = {.lex_state = 17}, + [3636] = {.lex_state = 17}, + [3637] = {.lex_state = 17}, + [3638] = {.lex_state = 20}, + [3639] = {.lex_state = 8}, + [3640] = {.lex_state = 72}, + [3641] = {.lex_state = 17}, + [3642] = {.lex_state = 73}, + [3643] = {.lex_state = 72}, + [3644] = {.lex_state = 17}, + [3645] = {.lex_state = 72}, + [3646] = {.lex_state = 72}, + [3647] = {.lex_state = 73}, + [3648] = {.lex_state = 72}, + [3649] = {.lex_state = 72}, + [3650] = {.lex_state = 72}, + [3651] = {.lex_state = 72}, + [3652] = {.lex_state = 17}, + [3653] = {.lex_state = 72}, + [3654] = {.lex_state = 72}, + [3655] = {.lex_state = 72}, + [3656] = {.lex_state = 20}, + [3657] = {.lex_state = 20}, + [3658] = {.lex_state = 72}, + [3659] = {.lex_state = 72}, + [3660] = {.lex_state = 72}, + [3661] = {.lex_state = 73}, + [3662] = {.lex_state = 72}, + [3663] = {.lex_state = 72, .external_lex_state = 9}, + [3664] = {.lex_state = 72}, + [3665] = {.lex_state = 72}, + [3666] = {.lex_state = 72}, + [3667] = {.lex_state = 72}, + [3668] = {.lex_state = 72}, + [3669] = {.lex_state = 72}, + [3670] = {.lex_state = 72}, + [3671] = {.lex_state = 72, .external_lex_state = 7}, + [3672] = {.lex_state = 72}, + [3673] = {.lex_state = 72}, + [3674] = {.lex_state = 72}, + [3675] = {.lex_state = 17}, + [3676] = {.lex_state = 17}, + [3677] = {.lex_state = 72, .external_lex_state = 7}, + [3678] = {.lex_state = 72}, + [3679] = {.lex_state = 72}, + [3680] = {.lex_state = 72}, + [3681] = {.lex_state = 17}, + [3682] = {.lex_state = 72}, + [3683] = {.lex_state = 72}, + [3684] = {.lex_state = 72, .external_lex_state = 9}, + [3685] = {.lex_state = 72}, + [3686] = {.lex_state = 72}, + [3687] = {.lex_state = 17}, + [3688] = {.lex_state = 72}, + [3689] = {.lex_state = 72}, + [3690] = {.lex_state = 72, .external_lex_state = 9}, + [3691] = {.lex_state = 72}, + [3692] = {.lex_state = 72}, + [3693] = {.lex_state = 72, .external_lex_state = 9}, + [3694] = {.lex_state = 72}, + [3695] = {.lex_state = 72}, + [3696] = {.lex_state = 72}, + [3697] = {.lex_state = 72}, + [3698] = {.lex_state = 72}, + [3699] = {.lex_state = 72}, + [3700] = {.lex_state = 72}, + [3701] = {.lex_state = 72}, + [3702] = {.lex_state = 72}, + [3703] = {.lex_state = 73}, + [3704] = {.lex_state = 72}, + [3705] = {.lex_state = 17}, + [3706] = {.lex_state = 20}, + [3707] = {.lex_state = 72}, + [3708] = {.lex_state = 73}, + [3709] = {.lex_state = 72}, + [3710] = {.lex_state = 72}, + [3711] = {.lex_state = 72}, + [3712] = {.lex_state = 72}, + [3713] = {.lex_state = 72}, + [3714] = {.lex_state = 20}, + [3715] = {.lex_state = 20}, + [3716] = {.lex_state = 17}, + [3717] = {.lex_state = 72}, + [3718] = {.lex_state = 20}, + [3719] = {.lex_state = 17}, + [3720] = {.lex_state = 20}, + [3721] = {.lex_state = 17}, + [3722] = {.lex_state = 17}, + [3723] = {.lex_state = 17}, + [3724] = {.lex_state = 72}, + [3725] = {.lex_state = 72}, + [3726] = {.lex_state = 72}, + [3727] = {.lex_state = 72, .external_lex_state = 8}, + [3728] = {.lex_state = 17}, + [3729] = {.lex_state = 72}, + [3730] = {.lex_state = 72}, + [3731] = {.lex_state = 72, .external_lex_state = 8}, + [3732] = {.lex_state = 72}, + [3733] = {.lex_state = 72}, + [3734] = {.lex_state = 72}, + [3735] = {.lex_state = 20}, + [3736] = {.lex_state = 72}, + [3737] = {.lex_state = 72, .external_lex_state = 9}, + [3738] = {.lex_state = 72}, + [3739] = {.lex_state = 20}, + [3740] = {.lex_state = 20}, + [3741] = {.lex_state = 17}, + [3742] = {.lex_state = 72}, + [3743] = {.lex_state = 72}, + [3744] = {.lex_state = 72}, + [3745] = {.lex_state = 72}, + [3746] = {.lex_state = 73}, + [3747] = {.lex_state = 72}, + [3748] = {.lex_state = 20}, + [3749] = {.lex_state = 72}, + [3750] = {.lex_state = 72}, + [3751] = {.lex_state = 72}, + [3752] = {.lex_state = 72}, + [3753] = {.lex_state = 72}, + [3754] = {.lex_state = 72}, + [3755] = {.lex_state = 72}, + [3756] = {.lex_state = 72}, + [3757] = {.lex_state = 72}, + [3758] = {.lex_state = 72}, + [3759] = {.lex_state = 72}, + [3760] = {.lex_state = 72}, + [3761] = {.lex_state = 20}, + [3762] = {.lex_state = 20}, + [3763] = {.lex_state = 23}, + [3764] = {.lex_state = 20}, + [3765] = {.lex_state = 72}, + [3766] = {.lex_state = 8}, + [3767] = {.lex_state = 20}, + [3768] = {.lex_state = 72}, + [3769] = {.lex_state = 72}, + [3770] = {.lex_state = 20}, + [3771] = {.lex_state = 72}, + [3772] = {.lex_state = 17}, + [3773] = {.lex_state = 20}, + [3774] = {.lex_state = 20}, + [3775] = {.lex_state = 72}, + [3776] = {.lex_state = 72}, + [3777] = {.lex_state = 20}, + [3778] = {.lex_state = 20}, + [3779] = {.lex_state = 20}, + [3780] = {.lex_state = 72}, + [3781] = {.lex_state = 17}, + [3782] = {.lex_state = 72}, + [3783] = {.lex_state = 72}, + [3784] = {.lex_state = 73}, + [3785] = {.lex_state = 72}, + [3786] = {.lex_state = 72}, + [3787] = {.lex_state = 72, .external_lex_state = 8}, + [3788] = {.lex_state = 17}, + [3789] = {.lex_state = 72, .external_lex_state = 7}, + [3790] = {.lex_state = 17}, + [3791] = {.lex_state = 17}, + [3792] = {.lex_state = 17}, + [3793] = {.lex_state = 72}, + [3794] = {.lex_state = 17}, + [3795] = {.lex_state = 17}, + [3796] = {.lex_state = 72}, + [3797] = {.lex_state = 17}, + [3798] = {.lex_state = 72}, + [3799] = {.lex_state = 17}, + [3800] = {.lex_state = 72}, + [3801] = {.lex_state = 17}, + [3802] = {.lex_state = 72}, + [3803] = {.lex_state = 17}, + [3804] = {.lex_state = 17}, + [3805] = {.lex_state = 17}, + [3806] = {.lex_state = 17}, + [3807] = {.lex_state = 17}, + [3808] = {.lex_state = 17}, + [3809] = {.lex_state = 17}, + [3810] = {.lex_state = 72}, + [3811] = {.lex_state = 17}, + [3812] = {.lex_state = 17}, + [3813] = {.lex_state = 72}, + [3814] = {.lex_state = 17}, + [3815] = {.lex_state = 17}, + [3816] = {(TSStateId)(-1),}, + [3817] = {(TSStateId)(-1),}, + [3818] = {(TSStateId)(-1),}, + [3819] = {(TSStateId)(-1),}, + [3820] = {(TSStateId)(-1),}, + [3821] = {(TSStateId)(-1),}, + [3822] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [sym_line_comment] = STATE(0), [sym_block_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), @@ -13682,12 +14458,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1), [anon_sym_block] = ACTIONS(1), [anon_sym_expr] = ACTIONS(1), + [anon_sym_expr_2021] = ACTIONS(1), [anon_sym_ident] = ACTIONS(1), [anon_sym_item] = ACTIONS(1), [anon_sym_lifetime] = ACTIONS(1), [anon_sym_literal] = ACTIONS(1), [anon_sym_meta] = ACTIONS(1), [anon_sym_pat] = ACTIONS(1), + [anon_sym_pat_param] = ACTIONS(1), [anon_sym_path] = ACTIONS(1), [anon_sym_stmt] = ACTIONS(1), [anon_sym_tt] = ACTIONS(1), @@ -13759,6 +14537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1), [anon_sym_fn] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), + [anon_sym_gen] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_impl] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), @@ -13783,6 +14562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT2] = ACTIONS(1), [anon_sym_dyn] = ACTIONS(1), [sym_mutable_specifier] = ACTIONS(1), + [anon_sym_raw] = ACTIONS(1), [anon_sym_yield] = ACTIONS(1), [anon_sym_move] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), @@ -13813,83 +14593,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_doc_content] = ACTIONS(1), [sym__error_sentinel] = ACTIONS(1), }, - [1] = { - [sym_source_file] = STATE(3512), - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [STATE(1)] = { + [sym_source_file] = STATE(3607), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -13932,124 +14713,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_shebang] = ACTIONS(105), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [2] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_shebang] = ACTIONS(107), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(2)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14075,7 +14858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14085,123 +14868,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [3] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(3)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14227,7 +15012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14237,123 +15022,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [4] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(4)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14379,7 +15166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14389,116 +15176,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [5] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(5)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14531,7 +15320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14541,123 +15330,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [6] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1660), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(6)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14683,7 +15474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14693,123 +15484,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [7] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(7)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [ts_builtin_sym_end] = ACTIONS(129), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [STATE(8)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14835,7 +15782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14845,275 +15792,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [8] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = ACTIONS(259), - [sym_integer_literal] = ACTIONS(262), - [aux_sym_string_literal_token1] = ACTIONS(265), - [sym_char_literal] = ACTIONS(262), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), - }, - [9] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(9)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(289), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15139,7 +15936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15149,123 +15946,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [10] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(10)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(291), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15291,7 +16090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15301,123 +16100,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [11] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(11)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(290), + [anon_sym_RBRACE] = ACTIONS(293), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15443,7 +16244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15453,123 +16254,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [12] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(12)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(428), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [STATE(13)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(292), + [anon_sym_RBRACE] = ACTIONS(295), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15595,7 +16552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15605,275 +16562,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [13] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(404), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = ACTIONS(259), - [sym_integer_literal] = ACTIONS(262), - [aux_sym_string_literal_token1] = ACTIONS(265), - [sym_char_literal] = ACTIONS(262), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), - }, - [14] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(14)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(297), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15899,7 +16706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15909,123 +16716,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [15] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(15)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(296), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16051,7 +16860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16061,123 +16870,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [16] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(16)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16203,7 +17014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16213,123 +17024,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [17] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(17)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16355,7 +17168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16365,123 +17178,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [18] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(18)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16507,7 +17322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16517,123 +17332,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [19] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(19)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(304), + [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16659,7 +17476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16669,123 +17486,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [20] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(20)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16811,7 +17630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16821,123 +17640,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [21] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(21)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(308), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16963,7 +17784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16973,123 +17794,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [22] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(22)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17115,7 +17938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17125,123 +17948,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [23] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(23)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17267,7 +18092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17277,123 +18102,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [24] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(24)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17419,7 +18246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17429,123 +18256,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [25] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(25)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17571,7 +18400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17581,123 +18410,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [26] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(26)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17723,7 +18554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17733,123 +18564,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [27] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(27)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17875,7 +18708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17885,123 +18718,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [28] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(28)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18027,7 +18862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18037,123 +18872,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [29] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(29)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1914), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18179,7 +19016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18189,123 +19026,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [30] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(30)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18331,7 +19170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18341,123 +19180,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [31] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(31)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18483,7 +19324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18493,123 +19334,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [32] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(32)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(330), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18635,7 +19478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18645,123 +19488,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [33] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(33)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18787,7 +19632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18797,123 +19642,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [34] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(34)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2023), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18939,7 +19786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18949,101 +19796,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_fn] = ACTIONS(51), [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [35] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1483), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(35)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_RPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_RPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_RBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19061,134 +19910,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COMMA] = ACTIONS(341), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [36] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(36)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19206,134 +20057,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [37] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1499), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(37)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(372), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(381), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(381), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19351,134 +20204,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [38] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(383), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(38)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(384), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_RBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19496,134 +20351,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(386), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [39] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(395), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(39)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19641,134 +20498,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(386), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [40] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(399), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(40)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1561), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(368), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19786,134 +20645,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [41] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(41)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_RBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19931,134 +20792,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COMMA] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(390), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [42] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1489), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(395), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(42)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(394), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20076,12313 +20939,11737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [43] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(399), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(43)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(409), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [44] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(44)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [45] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(45)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [46] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(46)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [47] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(47)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(490), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [48] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(48)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [49] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(49)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [50] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(50)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [51] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(51)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [52] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(52)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(342), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [53] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(53)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [54] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(54)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [55] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(55)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [56] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(56)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [57] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(57)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [58] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(58)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [59] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(59)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [60] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(60)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(51), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [61] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(61)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [62] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(62)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [63] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(63)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [64] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(64)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(390), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [65] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(65)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [66] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(66)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [67] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(67)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_EQ_GT] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(517), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(531), - [anon_sym_CARET] = ACTIONS(531), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(531), - [anon_sym_GT_GT] = ACTIONS(531), - [anon_sym_PLUS_EQ] = ACTIONS(517), - [anon_sym_DASH_EQ] = ACTIONS(517), - [anon_sym_STAR_EQ] = ACTIONS(517), - [anon_sym_SLASH_EQ] = ACTIONS(517), - [anon_sym_PERCENT_EQ] = ACTIONS(517), - [anon_sym_CARET_EQ] = ACTIONS(517), - [anon_sym_AMP_EQ] = ACTIONS(517), - [anon_sym_PIPE_EQ] = ACTIONS(517), - [anon_sym_LT_LT_EQ] = ACTIONS(517), - [anon_sym_GT_GT_EQ] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym__] = ACTIONS(531), - [anon_sym_DOT] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(517), - [anon_sym_COMMA] = ACTIONS(517), - [anon_sym_COLON_COLON] = ACTIONS(517), - [anon_sym_DASH_GT] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(517), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_as] = ACTIONS(514), - [anon_sym_async] = ACTIONS(514), - [anon_sym_await] = ACTIONS(514), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_fn] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_impl] = ACTIONS(514), - [anon_sym_let] = ACTIONS(514), - [anon_sym_loop] = ACTIONS(514), - [anon_sym_match] = ACTIONS(514), - [anon_sym_mod] = ACTIONS(514), - [anon_sym_pub] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_trait] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_unsafe] = ACTIONS(514), - [anon_sym_use] = ACTIONS(514), - [anon_sym_where] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [sym_mutable_specifier] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(537), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(537), - [anon_sym_true] = ACTIONS(543), - [anon_sym_false] = ACTIONS(543), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(546), - [sym__raw_string_literal_start] = ACTIONS(549), - [sym_float_literal] = ACTIONS(537), - }, - [68] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(531), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_EQ_GT] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(534), + [anon_sym_u8] = ACTIONS(531), + [anon_sym_i8] = ACTIONS(531), + [anon_sym_u16] = ACTIONS(531), + [anon_sym_i16] = ACTIONS(531), + [anon_sym_u32] = ACTIONS(531), + [anon_sym_i32] = ACTIONS(531), + [anon_sym_u64] = ACTIONS(531), + [anon_sym_i64] = ACTIONS(531), + [anon_sym_u128] = ACTIONS(531), + [anon_sym_i128] = ACTIONS(531), + [anon_sym_isize] = ACTIONS(531), + [anon_sym_usize] = ACTIONS(531), + [anon_sym_f32] = ACTIONS(531), + [anon_sym_f64] = ACTIONS(531), + [anon_sym_bool] = ACTIONS(531), + [anon_sym_str] = ACTIONS(531), + [anon_sym_char] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_PERCENT] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(534), + [anon_sym_PIPE_PIPE] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(534), + [anon_sym_DASH_EQ] = ACTIONS(534), + [anon_sym_STAR_EQ] = ACTIONS(534), + [anon_sym_SLASH_EQ] = ACTIONS(534), + [anon_sym_PERCENT_EQ] = ACTIONS(534), + [anon_sym_CARET_EQ] = ACTIONS(534), + [anon_sym_AMP_EQ] = ACTIONS(534), + [anon_sym_PIPE_EQ] = ACTIONS(534), + [anon_sym_LT_LT_EQ] = ACTIONS(534), + [anon_sym_GT_GT_EQ] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(534), + [anon_sym__] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COLON_COLON] = ACTIONS(534), + [anon_sym_DASH_GT] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_as] = ACTIONS(531), + [anon_sym_async] = ACTIONS(531), + [anon_sym_await] = ACTIONS(531), + [anon_sym_break] = ACTIONS(531), + [anon_sym_const] = ACTIONS(531), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_default] = ACTIONS(531), + [anon_sym_enum] = ACTIONS(531), + [anon_sym_fn] = ACTIONS(531), + [anon_sym_for] = ACTIONS(531), + [anon_sym_gen] = ACTIONS(531), + [anon_sym_if] = ACTIONS(531), + [anon_sym_impl] = ACTIONS(531), + [anon_sym_let] = ACTIONS(531), + [anon_sym_loop] = ACTIONS(531), + [anon_sym_match] = ACTIONS(531), + [anon_sym_mod] = ACTIONS(531), + [anon_sym_pub] = ACTIONS(531), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(531), + [anon_sym_trait] = ACTIONS(531), + [anon_sym_type] = ACTIONS(531), + [anon_sym_union] = ACTIONS(531), + [anon_sym_unsafe] = ACTIONS(531), + [anon_sym_use] = ACTIONS(531), + [anon_sym_where] = ACTIONS(531), + [anon_sym_while] = ACTIONS(531), + [sym_mutable_specifier] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(557), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(531), + [sym_super] = ACTIONS(531), + [sym_crate] = ACTIONS(531), + [sym_metavariable] = ACTIONS(563), + [sym__raw_string_literal_start] = ACTIONS(566), + [sym_float_literal] = ACTIONS(554), + }, + [STATE(68)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [69] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_RBRACK] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(592), + [aux_sym_string_literal_token1] = ACTIONS(595), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(601), + [sym__raw_string_literal_start] = ACTIONS(604), + [sym_float_literal] = ACTIONS(592), + }, + [STATE(69)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [70] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(70)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [71] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(71)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [72] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(72)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [73] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(73)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [74] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(74)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [75] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(75)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [76] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(76)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [77] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(639), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(77)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [78] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(78)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [79] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(639), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(79)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [80] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(80)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [81] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(81)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [82] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(82)] = { + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_EQ_GT] = ACTIONS(591), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(591), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym__] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_COLON_COLON] = ACTIONS(591), - [anon_sym_DASH_GT] = ACTIONS(591), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_await] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_where] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(611), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(611), - [anon_sym_true] = ACTIONS(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(620), - [sym__raw_string_literal_start] = ACTIONS(623), - [sym_float_literal] = ACTIONS(611), - }, - [83] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(83)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_RBRACK] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(635), - [anon_sym_EQ_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_SLASH] = ACTIONS(643), - [anon_sym_PERCENT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(643), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(629), - [anon_sym_DASH_EQ] = ACTIONS(629), - [anon_sym_STAR_EQ] = ACTIONS(629), - [anon_sym_SLASH_EQ] = ACTIONS(629), - [anon_sym_PERCENT_EQ] = ACTIONS(629), - [anon_sym_CARET_EQ] = ACTIONS(629), - [anon_sym_AMP_EQ] = ACTIONS(629), - [anon_sym_PIPE_EQ] = ACTIONS(629), - [anon_sym_LT_LT_EQ] = ACTIONS(629), - [anon_sym_GT_GT_EQ] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym__] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(629), - [anon_sym_POUND] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_await] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_where] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [sym_mutable_specifier] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(649), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(649), - [anon_sym_true] = ACTIONS(655), - [anon_sym_false] = ACTIONS(655), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym__raw_string_literal_start] = ACTIONS(658), - [sym_float_literal] = ACTIONS(649), - }, - [84] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(657), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_EQ_GT] = ACTIONS(646), + [anon_sym_COLON] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_QMARK] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(643), + [anon_sym_i8] = ACTIONS(643), + [anon_sym_u16] = ACTIONS(643), + [anon_sym_i16] = ACTIONS(643), + [anon_sym_u32] = ACTIONS(643), + [anon_sym_i32] = ACTIONS(643), + [anon_sym_u64] = ACTIONS(643), + [anon_sym_i64] = ACTIONS(643), + [anon_sym_u128] = ACTIONS(643), + [anon_sym_i128] = ACTIONS(643), + [anon_sym_isize] = ACTIONS(643), + [anon_sym_usize] = ACTIONS(643), + [anon_sym_f32] = ACTIONS(643), + [anon_sym_f64] = ACTIONS(643), + [anon_sym_bool] = ACTIONS(643), + [anon_sym_str] = ACTIONS(643), + [anon_sym_char] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(660), + [anon_sym_PERCENT] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_PLUS_EQ] = ACTIONS(646), + [anon_sym_DASH_EQ] = ACTIONS(646), + [anon_sym_STAR_EQ] = ACTIONS(646), + [anon_sym_SLASH_EQ] = ACTIONS(646), + [anon_sym_PERCENT_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(660), + [anon_sym_EQ_EQ] = ACTIONS(646), + [anon_sym_BANG_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym__] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(646), + [anon_sym_DASH_GT] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_as] = ACTIONS(643), + [anon_sym_async] = ACTIONS(643), + [anon_sym_await] = ACTIONS(643), + [anon_sym_break] = ACTIONS(643), + [anon_sym_const] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_default] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_fn] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_gen] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_impl] = ACTIONS(643), + [anon_sym_let] = ACTIONS(643), + [anon_sym_loop] = ACTIONS(643), + [anon_sym_match] = ACTIONS(643), + [anon_sym_mod] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(643), + [anon_sym_return] = ACTIONS(643), + [anon_sym_static] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_trait] = ACTIONS(643), + [anon_sym_type] = ACTIONS(643), + [anon_sym_union] = ACTIONS(643), + [anon_sym_unsafe] = ACTIONS(643), + [anon_sym_use] = ACTIONS(643), + [anon_sym_where] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [sym_mutable_specifier] = ACTIONS(643), + [sym_integer_literal] = ACTIONS(666), + [aux_sym_string_literal_token1] = ACTIONS(669), + [sym_char_literal] = ACTIONS(666), + [anon_sym_true] = ACTIONS(672), + [anon_sym_false] = ACTIONS(672), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(643), + [sym_super] = ACTIONS(643), + [sym_crate] = ACTIONS(643), + [sym__raw_string_literal_start] = ACTIONS(675), + [sym_float_literal] = ACTIONS(666), + }, + [STATE(84)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [85] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(85)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [86] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_repeat1] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(86)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [87] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(87)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [88] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(88)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [89] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(89)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [90] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(90)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [91] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(91)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [92] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(92)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [93] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(93)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [94] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(94)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [95] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(95)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [96] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(96)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [97] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(97)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(701), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [98] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(98)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [99] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(99)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), [aux_sym_token_tree_repeat1] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [100] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(100)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [101] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(101)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [102] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(102)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [103] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(103)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [104] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(104)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [105] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(105)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [106] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(106)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [107] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(107)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [108] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(108)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [109] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(109)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [110] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(110)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [111] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(111)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [112] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(112)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [113] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(113)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [114] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(114)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [115] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(115)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [116] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(116)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [117] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(117)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [118] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym_token_tree_repeat1] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(118)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [119] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym_token_tree_repeat1] = STATE(132), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(119)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [120] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(120)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [121] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(121)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [122] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(122)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [123] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym_token_tree_repeat1] = STATE(108), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(123)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [124] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(124)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [125] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(125)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [126] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(126)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [127] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(127)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [128] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(128)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [129] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(129)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(147), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [130] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(130)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym_token_tree_repeat1] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [131] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(131)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [132] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(132)] = { + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [133] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(133)] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [134] = { + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(134)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(733), - [anon_sym_COLON] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(738), - [anon_sym_QMARK] = ACTIONS(733), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(738), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_PERCENT] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(738), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym__] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_DASH_GT] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(736), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), - }, - [135] = { - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), - }, - [136] = { - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_isize] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_f32] = ACTIONS(745), - [anon_sym_f64] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_str] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_as] = ACTIONS(745), - [anon_sym_async] = ACTIONS(745), - [anon_sym_await] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_fn] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_impl] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_pub] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(745), - [anon_sym_trait] = ACTIONS(745), - [anon_sym_type] = ACTIONS(745), - [anon_sym_union] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(745), - [sym_integer_literal] = ACTIONS(747), - [aux_sym_string_literal_token1] = ACTIONS(747), - [sym_char_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_crate] = ACTIONS(745), - [sym_metavariable] = ACTIONS(747), - [sym__raw_string_literal_start] = ACTIONS(747), - [sym_float_literal] = ACTIONS(747), - }, - [137] = { - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym_metavariable] = ACTIONS(751), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), - }, - [138] = { - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym_metavariable] = ACTIONS(755), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), - }, - [139] = { - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [sym_identifier] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_EQ_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(757), - [anon_sym_i8] = ACTIONS(757), - [anon_sym_u16] = ACTIONS(757), - [anon_sym_i16] = ACTIONS(757), - [anon_sym_u32] = ACTIONS(757), - [anon_sym_i32] = ACTIONS(757), - [anon_sym_u64] = ACTIONS(757), - [anon_sym_i64] = ACTIONS(757), - [anon_sym_u128] = ACTIONS(757), - [anon_sym_i128] = ACTIONS(757), - [anon_sym_isize] = ACTIONS(757), - [anon_sym_usize] = ACTIONS(757), - [anon_sym_f32] = ACTIONS(757), - [anon_sym_f64] = ACTIONS(757), - [anon_sym_bool] = ACTIONS(757), - [anon_sym_str] = ACTIONS(757), - [anon_sym_char] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_LT_LT] = ACTIONS(757), - [anon_sym_GT_GT] = ACTIONS(757), - [anon_sym_PLUS_EQ] = ACTIONS(759), - [anon_sym_DASH_EQ] = ACTIONS(759), - [anon_sym_STAR_EQ] = ACTIONS(759), - [anon_sym_SLASH_EQ] = ACTIONS(759), - [anon_sym_PERCENT_EQ] = ACTIONS(759), - [anon_sym_CARET_EQ] = ACTIONS(759), - [anon_sym_AMP_EQ] = ACTIONS(759), - [anon_sym_PIPE_EQ] = ACTIONS(759), - [anon_sym_LT_LT_EQ] = ACTIONS(759), - [anon_sym_GT_GT_EQ] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [anon_sym__] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_as] = ACTIONS(757), - [anon_sym_async] = ACTIONS(757), - [anon_sym_await] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_fn] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_impl] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_pub] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_struct] = ACTIONS(757), - [anon_sym_trait] = ACTIONS(757), - [anon_sym_type] = ACTIONS(757), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [sym_mutable_specifier] = ACTIONS(757), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(757), - [sym_super] = ACTIONS(757), - [sym_crate] = ACTIONS(757), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), - }, - [140] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(761), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32407,173 +32694,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(750), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [141] = { - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym_metavariable] = ACTIONS(769), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), - }, - [142] = { - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(135)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(768), [anon_sym_u8] = ACTIONS(771), [anon_sym_i8] = ACTIONS(771), [anon_sym_u16] = ACTIONS(771), @@ -32591,373 +32805,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(771), [anon_sym_str] = ACTIONS(771), [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym_metavariable] = ACTIONS(773), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), - }, - [143] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_EQ_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u128] = ACTIONS(775), - [anon_sym_i128] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_str] = ACTIONS(775), - [anon_sym_char] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(777), - [anon_sym_DASH_EQ] = ACTIONS(777), - [anon_sym_STAR_EQ] = ACTIONS(777), - [anon_sym_SLASH_EQ] = ACTIONS(777), - [anon_sym_PERCENT_EQ] = ACTIONS(777), - [anon_sym_CARET_EQ] = ACTIONS(777), - [anon_sym_AMP_EQ] = ACTIONS(777), - [anon_sym_PIPE_EQ] = ACTIONS(777), - [anon_sym_LT_LT_EQ] = ACTIONS(777), - [anon_sym_GT_GT_EQ] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [anon_sym__] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_COLON_COLON] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_as] = ACTIONS(775), - [anon_sym_async] = ACTIONS(775), - [anon_sym_await] = ACTIONS(775), - [anon_sym_break] = ACTIONS(775), - [anon_sym_const] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_default] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_impl] = ACTIONS(775), - [anon_sym_let] = ACTIONS(775), - [anon_sym_loop] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(775), - [anon_sym_pub] = ACTIONS(775), - [anon_sym_return] = ACTIONS(775), - [anon_sym_static] = ACTIONS(775), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_trait] = ACTIONS(775), - [anon_sym_type] = ACTIONS(775), - [anon_sym_union] = ACTIONS(775), - [anon_sym_unsafe] = ACTIONS(775), - [anon_sym_use] = ACTIONS(775), - [anon_sym_where] = ACTIONS(775), - [anon_sym_while] = ACTIONS(775), - [sym_mutable_specifier] = ACTIONS(775), - [sym_integer_literal] = ACTIONS(777), - [aux_sym_string_literal_token1] = ACTIONS(777), - [sym_char_literal] = ACTIONS(777), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(775), - [sym_super] = ACTIONS(775), - [sym_crate] = ACTIONS(775), - [sym_metavariable] = ACTIONS(777), - [sym__raw_string_literal_start] = ACTIONS(777), - [sym_float_literal] = ACTIONS(777), - }, - [144] = { - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [sym_identifier] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_EQ_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(779), - [anon_sym_i8] = ACTIONS(779), - [anon_sym_u16] = ACTIONS(779), - [anon_sym_i16] = ACTIONS(779), - [anon_sym_u32] = ACTIONS(779), - [anon_sym_i32] = ACTIONS(779), - [anon_sym_u64] = ACTIONS(779), - [anon_sym_i64] = ACTIONS(779), - [anon_sym_u128] = ACTIONS(779), - [anon_sym_i128] = ACTIONS(779), - [anon_sym_isize] = ACTIONS(779), - [anon_sym_usize] = ACTIONS(779), - [anon_sym_f32] = ACTIONS(779), - [anon_sym_f64] = ACTIONS(779), - [anon_sym_bool] = ACTIONS(779), - [anon_sym_str] = ACTIONS(779), - [anon_sym_char] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_LT_LT] = ACTIONS(779), - [anon_sym_GT_GT] = ACTIONS(779), - [anon_sym_PLUS_EQ] = ACTIONS(781), - [anon_sym_DASH_EQ] = ACTIONS(781), - [anon_sym_STAR_EQ] = ACTIONS(781), - [anon_sym_SLASH_EQ] = ACTIONS(781), - [anon_sym_PERCENT_EQ] = ACTIONS(781), - [anon_sym_CARET_EQ] = ACTIONS(781), - [anon_sym_AMP_EQ] = ACTIONS(781), - [anon_sym_PIPE_EQ] = ACTIONS(781), - [anon_sym_LT_LT_EQ] = ACTIONS(781), - [anon_sym_GT_GT_EQ] = ACTIONS(781), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym__] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_as] = ACTIONS(779), - [anon_sym_async] = ACTIONS(779), - [anon_sym_await] = ACTIONS(779), - [anon_sym_break] = ACTIONS(779), - [anon_sym_const] = ACTIONS(779), - [anon_sym_continue] = ACTIONS(779), - [anon_sym_default] = ACTIONS(779), - [anon_sym_enum] = ACTIONS(779), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_impl] = ACTIONS(779), - [anon_sym_let] = ACTIONS(779), - [anon_sym_loop] = ACTIONS(779), - [anon_sym_match] = ACTIONS(779), - [anon_sym_mod] = ACTIONS(779), - [anon_sym_pub] = ACTIONS(779), - [anon_sym_return] = ACTIONS(779), - [anon_sym_static] = ACTIONS(779), - [anon_sym_struct] = ACTIONS(779), - [anon_sym_trait] = ACTIONS(779), - [anon_sym_type] = ACTIONS(779), - [anon_sym_union] = ACTIONS(779), - [anon_sym_unsafe] = ACTIONS(779), - [anon_sym_use] = ACTIONS(779), - [anon_sym_where] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [sym_mutable_specifier] = ACTIONS(779), - [sym_integer_literal] = ACTIONS(781), - [aux_sym_string_literal_token1] = ACTIONS(781), - [sym_char_literal] = ACTIONS(781), - [anon_sym_true] = ACTIONS(779), - [anon_sym_false] = ACTIONS(779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(779), - [sym_super] = ACTIONS(779), - [sym_crate] = ACTIONS(779), - [sym_metavariable] = ACTIONS(781), - [sym__raw_string_literal_start] = ACTIONS(781), - [sym_float_literal] = ACTIONS(781), - }, - [145] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COLON_COLON] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(789), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_async] = ACTIONS(795), + [anon_sym_break] = ACTIONS(798), + [anon_sym_const] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_default] = ACTIONS(807), + [anon_sym_for] = ACTIONS(810), + [anon_sym_gen] = ACTIONS(813), + [anon_sym_if] = ACTIONS(816), + [anon_sym_loop] = ACTIONS(819), + [anon_sym_match] = ACTIONS(822), + [anon_sym_return] = ACTIONS(825), + [anon_sym_static] = ACTIONS(828), + [anon_sym_union] = ACTIONS(807), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_while] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_move] = ACTIONS(840), + [anon_sym_try] = ACTIONS(843), + [sym_integer_literal] = ACTIONS(846), + [aux_sym_string_literal_token1] = ACTIONS(849), + [sym_char_literal] = ACTIONS(846), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(855), + [sym_super] = ACTIONS(858), + [sym_crate] = ACTIONS(858), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(864), + [sym_float_literal] = ACTIONS(846), + }, + [STATE(136)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [aux_sym_enum_variant_list_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(137)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(138)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(875), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32982,288 +33162,645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(877), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(139)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [146] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), - }, - [147] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), + [STATE(140)] = { + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(883), + [anon_sym_i8] = ACTIONS(883), + [anon_sym_u16] = ACTIONS(883), + [anon_sym_i16] = ACTIONS(883), + [anon_sym_u32] = ACTIONS(883), + [anon_sym_i32] = ACTIONS(883), + [anon_sym_u64] = ACTIONS(883), + [anon_sym_i64] = ACTIONS(883), + [anon_sym_u128] = ACTIONS(883), + [anon_sym_i128] = ACTIONS(883), + [anon_sym_isize] = ACTIONS(883), + [anon_sym_usize] = ACTIONS(883), + [anon_sym_f32] = ACTIONS(883), + [anon_sym_f64] = ACTIONS(883), + [anon_sym_bool] = ACTIONS(883), + [anon_sym_str] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(883), + [anon_sym_as] = ACTIONS(883), + [anon_sym_async] = ACTIONS(883), + [anon_sym_await] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_const] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_gen] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_impl] = ACTIONS(883), + [anon_sym_let] = ACTIONS(883), + [anon_sym_loop] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [anon_sym_mod] = ACTIONS(883), + [anon_sym_pub] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_struct] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_union] = ACTIONS(883), + [anon_sym_unsafe] = ACTIONS(883), + [anon_sym_use] = ACTIONS(883), + [anon_sym_where] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [sym_mutable_specifier] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(885), + [aux_sym_string_literal_token1] = ACTIONS(885), + [sym_char_literal] = ACTIONS(885), + [anon_sym_true] = ACTIONS(883), + [anon_sym_false] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_crate] = ACTIONS(883), + [sym_metavariable] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), + }, + [STATE(141)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_enum_variant_list_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [148] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), + [STATE(142)] = { + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(893), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(893), + [anon_sym_u8] = ACTIONS(891), + [anon_sym_i8] = ACTIONS(891), + [anon_sym_u16] = ACTIONS(891), + [anon_sym_i16] = ACTIONS(891), + [anon_sym_u32] = ACTIONS(891), + [anon_sym_i32] = ACTIONS(891), + [anon_sym_u64] = ACTIONS(891), + [anon_sym_i64] = ACTIONS(891), + [anon_sym_u128] = ACTIONS(891), + [anon_sym_i128] = ACTIONS(891), + [anon_sym_isize] = ACTIONS(891), + [anon_sym_usize] = ACTIONS(891), + [anon_sym_f32] = ACTIONS(891), + [anon_sym_f64] = ACTIONS(891), + [anon_sym_bool] = ACTIONS(891), + [anon_sym_str] = ACTIONS(891), + [anon_sym_char] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_AT] = ACTIONS(893), + [anon_sym__] = ACTIONS(898), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_as] = ACTIONS(891), + [anon_sym_async] = ACTIONS(891), + [anon_sym_await] = ACTIONS(891), + [anon_sym_break] = ACTIONS(891), + [anon_sym_const] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_default] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_fn] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_gen] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_impl] = ACTIONS(891), + [anon_sym_let] = ACTIONS(891), + [anon_sym_loop] = ACTIONS(891), + [anon_sym_match] = ACTIONS(891), + [anon_sym_mod] = ACTIONS(891), + [anon_sym_pub] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_static] = ACTIONS(891), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_trait] = ACTIONS(891), + [anon_sym_type] = ACTIONS(891), + [anon_sym_union] = ACTIONS(891), + [anon_sym_unsafe] = ACTIONS(891), + [anon_sym_use] = ACTIONS(891), + [anon_sym_where] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [sym_mutable_specifier] = ACTIONS(891), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(891), + [anon_sym_false] = ACTIONS(891), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(891), + [sym_super] = ACTIONS(891), + [sym_crate] = ACTIONS(891), + [sym_metavariable] = ACTIONS(896), + [sym__raw_string_literal_start] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + }, + [STATE(143)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_u8] = ACTIONS(771), + [anon_sym_i8] = ACTIONS(771), + [anon_sym_u16] = ACTIONS(771), + [anon_sym_i16] = ACTIONS(771), + [anon_sym_u32] = ACTIONS(771), + [anon_sym_i32] = ACTIONS(771), + [anon_sym_u64] = ACTIONS(771), + [anon_sym_i64] = ACTIONS(771), + [anon_sym_u128] = ACTIONS(771), + [anon_sym_i128] = ACTIONS(771), + [anon_sym_isize] = ACTIONS(771), + [anon_sym_usize] = ACTIONS(771), + [anon_sym_f32] = ACTIONS(771), + [anon_sym_f64] = ACTIONS(771), + [anon_sym_bool] = ACTIONS(771), + [anon_sym_str] = ACTIONS(771), + [anon_sym_char] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COLON_COLON] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(789), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_async] = ACTIONS(795), + [anon_sym_break] = ACTIONS(798), + [anon_sym_const] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_default] = ACTIONS(807), + [anon_sym_for] = ACTIONS(810), + [anon_sym_gen] = ACTIONS(813), + [anon_sym_if] = ACTIONS(816), + [anon_sym_loop] = ACTIONS(819), + [anon_sym_match] = ACTIONS(822), + [anon_sym_return] = ACTIONS(825), + [anon_sym_static] = ACTIONS(828), + [anon_sym_union] = ACTIONS(807), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_while] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_move] = ACTIONS(840), + [anon_sym_try] = ACTIONS(843), + [sym_integer_literal] = ACTIONS(846), + [aux_sym_string_literal_token1] = ACTIONS(849), + [sym_char_literal] = ACTIONS(846), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(855), + [sym_super] = ACTIONS(858), + [sym_crate] = ACTIONS(858), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(864), + [sym_float_literal] = ACTIONS(846), + }, + [STATE(144)] = { + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym__non_special_token_repeat1] = STATE(142), [sym_identifier] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(609), [anon_sym_LPAREN] = ACTIONS(903), [anon_sym_RPAREN] = ACTIONS(903), [anon_sym_LBRACK] = ACTIONS(903), [anon_sym_RBRACK] = ACTIONS(903), [anon_sym_LBRACE] = ACTIONS(903), [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(901), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), [anon_sym_u8] = ACTIONS(901), [anon_sym_i8] = ACTIONS(901), [anon_sym_u16] = ACTIONS(901), @@ -33281,44 +33818,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(901), [anon_sym_str] = ACTIONS(901), [anon_sym_char] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_PERCENT] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym__] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_COLON_COLON] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), [anon_sym_SQUOTE] = ACTIONS(901), [anon_sym_as] = ACTIONS(901), [anon_sym_async] = ACTIONS(901), @@ -33330,6 +33867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(901), [anon_sym_fn] = ACTIONS(901), [anon_sym_for] = ACTIONS(901), + [anon_sym_gen] = ACTIONS(901), [anon_sym_if] = ACTIONS(901), [anon_sym_impl] = ACTIONS(901), [anon_sym_let] = ACTIONS(901), @@ -33353,8 +33891,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(903), [anon_sym_true] = ACTIONS(901), [anon_sym_false] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(901), [sym_super] = ACTIONS(901), [sym_crate] = ACTIONS(901), @@ -33362,292 +33900,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(903), [sym_float_literal] = ACTIONS(903), }, - [149] = { - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_EQ_GT] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_QMARK] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(905), - [anon_sym_i8] = ACTIONS(905), - [anon_sym_u16] = ACTIONS(905), - [anon_sym_i16] = ACTIONS(905), - [anon_sym_u32] = ACTIONS(905), - [anon_sym_i32] = ACTIONS(905), - [anon_sym_u64] = ACTIONS(905), - [anon_sym_i64] = ACTIONS(905), - [anon_sym_u128] = ACTIONS(905), - [anon_sym_i128] = ACTIONS(905), - [anon_sym_isize] = ACTIONS(905), - [anon_sym_usize] = ACTIONS(905), - [anon_sym_f32] = ACTIONS(905), - [anon_sym_f64] = ACTIONS(905), - [anon_sym_bool] = ACTIONS(905), - [anon_sym_str] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(905), - [anon_sym_PERCENT] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - [anon_sym_STAR_EQ] = ACTIONS(907), - [anon_sym_SLASH_EQ] = ACTIONS(907), - [anon_sym_PERCENT_EQ] = ACTIONS(907), - [anon_sym_CARET_EQ] = ACTIONS(907), - [anon_sym_AMP_EQ] = ACTIONS(907), - [anon_sym_PIPE_EQ] = ACTIONS(907), - [anon_sym_LT_LT_EQ] = ACTIONS(907), - [anon_sym_GT_GT_EQ] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), - [anon_sym__] = ACTIONS(905), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(907), - [anon_sym_DASH_GT] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(907), - [anon_sym_SQUOTE] = ACTIONS(905), - [anon_sym_as] = ACTIONS(905), - [anon_sym_async] = ACTIONS(905), - [anon_sym_await] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_const] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_fn] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_impl] = ACTIONS(905), - [anon_sym_let] = ACTIONS(905), - [anon_sym_loop] = ACTIONS(905), - [anon_sym_match] = ACTIONS(905), - [anon_sym_mod] = ACTIONS(905), - [anon_sym_pub] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_struct] = ACTIONS(905), - [anon_sym_trait] = ACTIONS(905), - [anon_sym_type] = ACTIONS(905), - [anon_sym_union] = ACTIONS(905), - [anon_sym_unsafe] = ACTIONS(905), - [anon_sym_use] = ACTIONS(905), - [anon_sym_where] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [sym_mutable_specifier] = ACTIONS(905), - [sym_integer_literal] = ACTIONS(907), - [aux_sym_string_literal_token1] = ACTIONS(907), - [sym_char_literal] = ACTIONS(907), - [anon_sym_true] = ACTIONS(905), - [anon_sym_false] = ACTIONS(905), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(905), - [sym_super] = ACTIONS(905), - [sym_crate] = ACTIONS(905), - [sym_metavariable] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(907), - [sym_float_literal] = ACTIONS(907), - }, - [150] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym__non_special_token_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(912), - [anon_sym_CARET] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_PIPE] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), - }, - [151] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(334), + [STATE(145)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(905), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33672,44 +33981,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(917), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [152] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(146)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2645), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(147)] = { + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(915), + [anon_sym_i8] = ACTIONS(915), + [anon_sym_u16] = ACTIONS(915), + [anon_sym_i16] = ACTIONS(915), + [anon_sym_u32] = ACTIONS(915), + [anon_sym_i32] = ACTIONS(915), + [anon_sym_u64] = ACTIONS(915), + [anon_sym_i64] = ACTIONS(915), + [anon_sym_u128] = ACTIONS(915), + [anon_sym_i128] = ACTIONS(915), + [anon_sym_isize] = ACTIONS(915), + [anon_sym_usize] = ACTIONS(915), + [anon_sym_f32] = ACTIONS(915), + [anon_sym_f64] = ACTIONS(915), + [anon_sym_bool] = ACTIONS(915), + [anon_sym_str] = ACTIONS(915), + [anon_sym_char] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_async] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_fn] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_gen] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_impl] = ACTIONS(915), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mod] = ACTIONS(915), + [anon_sym_pub] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_static] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_type] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_unsafe] = ACTIONS(915), + [anon_sym_use] = ACTIONS(915), + [anon_sym_where] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [sym_mutable_specifier] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(917), + [aux_sym_string_literal_token1] = ACTIONS(917), + [sym_char_literal] = ACTIONS(917), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_crate] = ACTIONS(915), + [sym__raw_string_literal_start] = ACTIONS(917), + [sym_float_literal] = ACTIONS(917), + }, + [STATE(148)] = { + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), [sym_identifier] = ACTIONS(919), [anon_sym_SEMI] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(921), @@ -33790,6 +34331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(919), [anon_sym_fn] = ACTIONS(919), [anon_sym_for] = ACTIONS(919), + [anon_sym_gen] = ACTIONS(919), [anon_sym_if] = ACTIONS(919), [anon_sym_impl] = ACTIONS(919), [anon_sym_let] = ACTIONS(919), @@ -33813,8 +34355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(921), [anon_sym_true] = ACTIONS(919), [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(919), [sym_super] = ACTIONS(919), [sym_crate] = ACTIONS(919), @@ -33822,9 +34364,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(921), [sym_float_literal] = ACTIONS(921), }, - [153] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), + [STATE(149)] = { + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), [sym_identifier] = ACTIONS(923), [anon_sym_SEMI] = ACTIONS(925), [anon_sym_LPAREN] = ACTIONS(925), @@ -33905,6 +34447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(923), [anon_sym_fn] = ACTIONS(923), [anon_sym_for] = ACTIONS(923), + [anon_sym_gen] = ACTIONS(923), [anon_sym_if] = ACTIONS(923), [anon_sym_impl] = ACTIONS(923), [anon_sym_let] = ACTIONS(923), @@ -33928,8 +34471,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(925), [anon_sym_true] = ACTIONS(923), [anon_sym_false] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(923), [sym_super] = ACTIONS(923), [sym_crate] = ACTIONS(923), @@ -33937,9 +34480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(925), [sym_float_literal] = ACTIONS(925), }, - [154] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), + [STATE(150)] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), [sym_identifier] = ACTIONS(927), [anon_sym_SEMI] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(929), @@ -34020,6 +34563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(927), [anon_sym_fn] = ACTIONS(927), [anon_sym_for] = ACTIONS(927), + [anon_sym_gen] = ACTIONS(927), [anon_sym_if] = ACTIONS(927), [anon_sym_impl] = ACTIONS(927), [anon_sym_let] = ACTIONS(927), @@ -34043,8 +34587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(929), [anon_sym_true] = ACTIONS(927), [anon_sym_false] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(927), [sym_super] = ACTIONS(927), [sym_crate] = ACTIONS(927), @@ -34052,62 +34596,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(929), [sym_float_literal] = ACTIONS(929), }, - [155] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(334), + [STATE(151)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34132,327 +34677,678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(933), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(152)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2771), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(153)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_enum_variant_list_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [156] = { + [STATE(154)] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_EQ_GT] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_u8] = ACTIONS(883), + [anon_sym_i8] = ACTIONS(883), + [anon_sym_u16] = ACTIONS(883), + [anon_sym_i16] = ACTIONS(883), + [anon_sym_u32] = ACTIONS(883), + [anon_sym_i32] = ACTIONS(883), + [anon_sym_u64] = ACTIONS(883), + [anon_sym_i64] = ACTIONS(883), + [anon_sym_u128] = ACTIONS(883), + [anon_sym_i128] = ACTIONS(883), + [anon_sym_isize] = ACTIONS(883), + [anon_sym_usize] = ACTIONS(883), + [anon_sym_f32] = ACTIONS(883), + [anon_sym_f64] = ACTIONS(883), + [anon_sym_bool] = ACTIONS(883), + [anon_sym_str] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_LT_LT] = ACTIONS(883), + [anon_sym_GT_GT] = ACTIONS(883), + [anon_sym_PLUS_EQ] = ACTIONS(885), + [anon_sym_DASH_EQ] = ACTIONS(885), + [anon_sym_STAR_EQ] = ACTIONS(885), + [anon_sym_SLASH_EQ] = ACTIONS(885), + [anon_sym_PERCENT_EQ] = ACTIONS(885), + [anon_sym_CARET_EQ] = ACTIONS(885), + [anon_sym_AMP_EQ] = ACTIONS(885), + [anon_sym_PIPE_EQ] = ACTIONS(885), + [anon_sym_LT_LT_EQ] = ACTIONS(885), + [anon_sym_GT_GT_EQ] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(883), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [anon_sym__] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COLON_COLON] = ACTIONS(885), + [anon_sym_DASH_GT] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(883), + [anon_sym_as] = ACTIONS(883), + [anon_sym_async] = ACTIONS(883), + [anon_sym_await] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_const] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_gen] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_impl] = ACTIONS(883), + [anon_sym_let] = ACTIONS(883), + [anon_sym_loop] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [anon_sym_mod] = ACTIONS(883), + [anon_sym_pub] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_struct] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_union] = ACTIONS(883), + [anon_sym_unsafe] = ACTIONS(883), + [anon_sym_use] = ACTIONS(883), + [anon_sym_where] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [sym_mutable_specifier] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(885), + [aux_sym_string_literal_token1] = ACTIONS(885), + [sym_char_literal] = ACTIONS(885), + [anon_sym_true] = ACTIONS(883), + [anon_sym_false] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_crate] = ACTIONS(883), + [sym_metavariable] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), + }, + [STATE(155)] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_EQ_GT] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_u8] = ACTIONS(883), + [anon_sym_i8] = ACTIONS(883), + [anon_sym_u16] = ACTIONS(883), + [anon_sym_i16] = ACTIONS(883), + [anon_sym_u32] = ACTIONS(883), + [anon_sym_i32] = ACTIONS(883), + [anon_sym_u64] = ACTIONS(883), + [anon_sym_i64] = ACTIONS(883), + [anon_sym_u128] = ACTIONS(883), + [anon_sym_i128] = ACTIONS(883), + [anon_sym_isize] = ACTIONS(883), + [anon_sym_usize] = ACTIONS(883), + [anon_sym_f32] = ACTIONS(883), + [anon_sym_f64] = ACTIONS(883), + [anon_sym_bool] = ACTIONS(883), + [anon_sym_str] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_LT_LT] = ACTIONS(883), + [anon_sym_GT_GT] = ACTIONS(883), + [anon_sym_PLUS_EQ] = ACTIONS(885), + [anon_sym_DASH_EQ] = ACTIONS(885), + [anon_sym_STAR_EQ] = ACTIONS(885), + [anon_sym_SLASH_EQ] = ACTIONS(885), + [anon_sym_PERCENT_EQ] = ACTIONS(885), + [anon_sym_CARET_EQ] = ACTIONS(885), + [anon_sym_AMP_EQ] = ACTIONS(885), + [anon_sym_PIPE_EQ] = ACTIONS(885), + [anon_sym_LT_LT_EQ] = ACTIONS(885), + [anon_sym_GT_GT_EQ] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(883), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [anon_sym__] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COLON_COLON] = ACTIONS(885), + [anon_sym_DASH_GT] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(883), + [anon_sym_as] = ACTIONS(883), + [anon_sym_async] = ACTIONS(883), + [anon_sym_await] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_const] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_gen] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_impl] = ACTIONS(883), + [anon_sym_let] = ACTIONS(883), + [anon_sym_loop] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [anon_sym_mod] = ACTIONS(883), + [anon_sym_pub] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_struct] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_union] = ACTIONS(883), + [anon_sym_unsafe] = ACTIONS(883), + [anon_sym_use] = ACTIONS(883), + [anon_sym_where] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [sym_mutable_specifier] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(885), + [aux_sym_string_literal_token1] = ACTIONS(885), + [sym_char_literal] = ACTIONS(885), + [anon_sym_true] = ACTIONS(883), + [anon_sym_false] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_crate] = ACTIONS(883), + [sym_metavariable] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), + }, + [STATE(156)] = { [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym_metavariable] = ACTIONS(937), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), - }, - [157] = { + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_RBRACK] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_EQ_GT] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_u8] = ACTIONS(937), + [anon_sym_i8] = ACTIONS(937), + [anon_sym_u16] = ACTIONS(937), + [anon_sym_i16] = ACTIONS(937), + [anon_sym_u32] = ACTIONS(937), + [anon_sym_i32] = ACTIONS(937), + [anon_sym_u64] = ACTIONS(937), + [anon_sym_i64] = ACTIONS(937), + [anon_sym_u128] = ACTIONS(937), + [anon_sym_i128] = ACTIONS(937), + [anon_sym_isize] = ACTIONS(937), + [anon_sym_usize] = ACTIONS(937), + [anon_sym_f32] = ACTIONS(937), + [anon_sym_f64] = ACTIONS(937), + [anon_sym_bool] = ACTIONS(937), + [anon_sym_str] = ACTIONS(937), + [anon_sym_char] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_PERCENT_EQ] = ACTIONS(939), + [anon_sym_CARET_EQ] = ACTIONS(939), + [anon_sym_AMP_EQ] = ACTIONS(939), + [anon_sym_PIPE_EQ] = ACTIONS(939), + [anon_sym_LT_LT_EQ] = ACTIONS(939), + [anon_sym_GT_GT_EQ] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [anon_sym__] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_COLON_COLON] = ACTIONS(939), + [anon_sym_DASH_GT] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(937), + [anon_sym_as] = ACTIONS(937), + [anon_sym_async] = ACTIONS(937), + [anon_sym_await] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [anon_sym_fn] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_gen] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_impl] = ACTIONS(937), + [anon_sym_let] = ACTIONS(937), + [anon_sym_loop] = ACTIONS(937), + [anon_sym_match] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(937), + [anon_sym_pub] = ACTIONS(937), + [anon_sym_return] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_trait] = ACTIONS(937), + [anon_sym_type] = ACTIONS(937), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsafe] = ACTIONS(937), + [anon_sym_use] = ACTIONS(937), + [anon_sym_where] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [sym_mutable_specifier] = ACTIONS(937), + [sym_integer_literal] = ACTIONS(939), + [aux_sym_string_literal_token1] = ACTIONS(939), + [sym_char_literal] = ACTIONS(939), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(937), + [sym_super] = ACTIONS(937), + [sym_crate] = ACTIONS(937), + [sym_metavariable] = ACTIONS(939), + [sym__raw_string_literal_start] = ACTIONS(939), + [sym_float_literal] = ACTIONS(939), + }, + [STATE(157)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(747), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(747), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_isize] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_f32] = ACTIONS(745), - [anon_sym_f64] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_str] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT_LT] = ACTIONS(745), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_PLUS_EQ] = ACTIONS(747), - [anon_sym_DASH_EQ] = ACTIONS(747), - [anon_sym_STAR_EQ] = ACTIONS(747), - [anon_sym_SLASH_EQ] = ACTIONS(747), - [anon_sym_PERCENT_EQ] = ACTIONS(747), - [anon_sym_CARET_EQ] = ACTIONS(747), - [anon_sym_AMP_EQ] = ACTIONS(747), - [anon_sym_PIPE_EQ] = ACTIONS(747), - [anon_sym_LT_LT_EQ] = ACTIONS(747), - [anon_sym_GT_GT_EQ] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(747), - [anon_sym_BANG_EQ] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(747), - [anon_sym__] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ] = ACTIONS(747), - [anon_sym_COMMA] = ACTIONS(747), - [anon_sym_COLON_COLON] = ACTIONS(747), - [anon_sym_DASH_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_as] = ACTIONS(745), - [anon_sym_async] = ACTIONS(745), - [anon_sym_await] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_fn] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_impl] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_pub] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(745), - [anon_sym_trait] = ACTIONS(745), - [anon_sym_type] = ACTIONS(745), - [anon_sym_union] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(745), - [sym_integer_literal] = ACTIONS(747), - [aux_sym_string_literal_token1] = ACTIONS(747), - [sym_char_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_crate] = ACTIONS(745), - [sym_metavariable] = ACTIONS(747), - [sym__raw_string_literal_start] = ACTIONS(747), - [sym_float_literal] = ACTIONS(747), - }, - [158] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34477,44 +35373,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(941), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [159] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(158)] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), [sym_identifier] = ACTIONS(943), [anon_sym_SEMI] = ACTIONS(945), [anon_sym_LPAREN] = ACTIONS(945), @@ -34595,6 +35491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(943), [anon_sym_fn] = ACTIONS(943), [anon_sym_for] = ACTIONS(943), + [anon_sym_gen] = ACTIONS(943), [anon_sym_if] = ACTIONS(943), [anon_sym_impl] = ACTIONS(943), [anon_sym_let] = ACTIONS(943), @@ -34618,8 +35515,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(945), [anon_sym_true] = ACTIONS(943), [anon_sym_false] = ACTIONS(943), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(943), [sym_super] = ACTIONS(943), [sym_crate] = ACTIONS(943), @@ -34627,24 +35524,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(945), [sym_float_literal] = ACTIONS(945), }, - [160] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [aux_sym__non_special_token_repeat1] = STATE(150), + [STATE(159)] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(949), [anon_sym_RPAREN] = ACTIONS(949), [anon_sym_LBRACK] = ACTIONS(949), [anon_sym_RBRACK] = ACTIONS(949), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_u8] = ACTIONS(947), [anon_sym_i8] = ACTIONS(947), [anon_sym_u16] = ACTIONS(947), @@ -34662,44 +35558,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(947), [anon_sym_str] = ACTIONS(947), [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(949), + [anon_sym_LT_LT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(949), + [anon_sym_DASH_EQ] = ACTIONS(949), + [anon_sym_STAR_EQ] = ACTIONS(949), + [anon_sym_SLASH_EQ] = ACTIONS(949), + [anon_sym_PERCENT_EQ] = ACTIONS(949), + [anon_sym_CARET_EQ] = ACTIONS(949), + [anon_sym_AMP_EQ] = ACTIONS(949), + [anon_sym_PIPE_EQ] = ACTIONS(949), + [anon_sym_LT_LT_EQ] = ACTIONS(949), + [anon_sym_GT_GT_EQ] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym__] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(949), + [anon_sym_COLON_COLON] = ACTIONS(949), + [anon_sym_DASH_GT] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(949), [anon_sym_SQUOTE] = ACTIONS(947), [anon_sym_as] = ACTIONS(947), [anon_sym_async] = ACTIONS(947), @@ -34711,6 +35607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(947), [anon_sym_fn] = ACTIONS(947), [anon_sym_for] = ACTIONS(947), + [anon_sym_gen] = ACTIONS(947), [anon_sym_if] = ACTIONS(947), [anon_sym_impl] = ACTIONS(947), [anon_sym_let] = ACTIONS(947), @@ -34734,132 +35631,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(949), [anon_sym_true] = ACTIONS(947), [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(947), [sym_super] = ACTIONS(947), [sym_crate] = ACTIONS(947), + [sym_metavariable] = ACTIONS(949), [sym__raw_string_literal_start] = ACTIONS(949), [sym_float_literal] = ACTIONS(949), }, - [161] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), - }, - [162] = { - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), + [STATE(160)] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), [sym_identifier] = ACTIONS(951), [anon_sym_SEMI] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(953), @@ -34940,6 +35723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(951), [anon_sym_fn] = ACTIONS(951), [anon_sym_for] = ACTIONS(951), + [anon_sym_gen] = ACTIONS(951), [anon_sym_if] = ACTIONS(951), [anon_sym_impl] = ACTIONS(951), [anon_sym_let] = ACTIONS(951), @@ -34963,8 +35747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(953), [anon_sym_true] = ACTIONS(951), [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(951), [sym_super] = ACTIONS(951), [sym_crate] = ACTIONS(951), @@ -34972,62 +35756,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(953), [sym_float_literal] = ACTIONS(953), }, - [163] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [aux_sym_enum_variant_list_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(334), + [STATE(161)] = { + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym_identifier] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_RBRACK] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_EQ_GT] = ACTIONS(957), + [anon_sym_COLON] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_QMARK] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(955), + [anon_sym_i8] = ACTIONS(955), + [anon_sym_u16] = ACTIONS(955), + [anon_sym_i16] = ACTIONS(955), + [anon_sym_u32] = ACTIONS(955), + [anon_sym_i32] = ACTIONS(955), + [anon_sym_u64] = ACTIONS(955), + [anon_sym_i64] = ACTIONS(955), + [anon_sym_u128] = ACTIONS(955), + [anon_sym_i128] = ACTIONS(955), + [anon_sym_isize] = ACTIONS(955), + [anon_sym_usize] = ACTIONS(955), + [anon_sym_f32] = ACTIONS(955), + [anon_sym_f64] = ACTIONS(955), + [anon_sym_bool] = ACTIONS(955), + [anon_sym_str] = ACTIONS(955), + [anon_sym_char] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_SLASH] = ACTIONS(955), + [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(955), + [anon_sym_GT_GT] = ACTIONS(955), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_STAR_EQ] = ACTIONS(957), + [anon_sym_SLASH_EQ] = ACTIONS(957), + [anon_sym_PERCENT_EQ] = ACTIONS(957), + [anon_sym_CARET_EQ] = ACTIONS(957), + [anon_sym_AMP_EQ] = ACTIONS(957), + [anon_sym_PIPE_EQ] = ACTIONS(957), + [anon_sym_LT_LT_EQ] = ACTIONS(957), + [anon_sym_GT_GT_EQ] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_EQ_EQ] = ACTIONS(957), + [anon_sym_BANG_EQ] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(955), + [anon_sym_GT_EQ] = ACTIONS(957), + [anon_sym_LT_EQ] = ACTIONS(957), + [anon_sym_AT] = ACTIONS(957), + [anon_sym__] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(957), + [anon_sym_DASH_GT] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [anon_sym_async] = ACTIONS(955), + [anon_sym_await] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_default] = ACTIONS(955), + [anon_sym_enum] = ACTIONS(955), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_gen] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_impl] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_mod] = ACTIONS(955), + [anon_sym_pub] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_static] = ACTIONS(955), + [anon_sym_struct] = ACTIONS(955), + [anon_sym_trait] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_union] = ACTIONS(955), + [anon_sym_unsafe] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_where] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [sym_mutable_specifier] = ACTIONS(955), + [sym_integer_literal] = ACTIONS(957), + [aux_sym_string_literal_token1] = ACTIONS(957), + [sym_char_literal] = ACTIONS(957), + [anon_sym_true] = ACTIONS(955), + [anon_sym_false] = ACTIONS(955), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(955), + [sym_super] = ACTIONS(955), + [sym_crate] = ACTIONS(955), + [sym_metavariable] = ACTIONS(957), + [sym__raw_string_literal_start] = ACTIONS(957), + [sym_float_literal] = ACTIONS(957), + }, + [STATE(162)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35052,900 +35953,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [164] = { + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(163)] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym__] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_DASH_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym_metavariable] = ACTIONS(963), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), + }, + [STATE(164)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(959), - [anon_sym_i8] = ACTIONS(959), - [anon_sym_u16] = ACTIONS(959), - [anon_sym_i16] = ACTIONS(959), - [anon_sym_u32] = ACTIONS(959), - [anon_sym_i32] = ACTIONS(959), - [anon_sym_u64] = ACTIONS(959), - [anon_sym_i64] = ACTIONS(959), - [anon_sym_u128] = ACTIONS(959), - [anon_sym_i128] = ACTIONS(959), - [anon_sym_isize] = ACTIONS(959), - [anon_sym_usize] = ACTIONS(959), - [anon_sym_f32] = ACTIONS(959), - [anon_sym_f64] = ACTIONS(959), - [anon_sym_bool] = ACTIONS(959), - [anon_sym_str] = ACTIONS(959), - [anon_sym_char] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_COLON_COLON] = ACTIONS(961), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_default] = ACTIONS(959), - [anon_sym_enum] = ACTIONS(959), - [anon_sym_fn] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_impl] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_pub] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(959), - [anon_sym_type] = ACTIONS(959), - [anon_sym_union] = ACTIONS(959), - [anon_sym_unsafe] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [sym_mutable_specifier] = ACTIONS(959), - [sym_integer_literal] = ACTIONS(961), - [aux_sym_string_literal_token1] = ACTIONS(961), - [sym_char_literal] = ACTIONS(961), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_crate] = ACTIONS(959), - [sym_metavariable] = ACTIONS(961), - [sym__raw_string_literal_start] = ACTIONS(961), - [sym_float_literal] = ACTIONS(961), - }, - [165] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(965), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_EQ_GT] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_PERCENT_EQ] = ACTIONS(965), - [anon_sym_CARET_EQ] = ACTIONS(965), - [anon_sym_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_EQ] = ACTIONS(965), - [anon_sym_LT_LT_EQ] = ACTIONS(965), - [anon_sym_GT_GT_EQ] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym__] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(965), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_COLON_COLON] = ACTIONS(965), - [anon_sym_DASH_GT] = ACTIONS(965), - [anon_sym_POUND] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_as] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_await] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_default] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [anon_sym_fn] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_impl] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_loop] = ACTIONS(963), - [anon_sym_match] = ACTIONS(963), - [anon_sym_mod] = ACTIONS(963), - [anon_sym_pub] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_static] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_trait] = ACTIONS(963), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(963), - [anon_sym_unsafe] = ACTIONS(963), - [anon_sym_use] = ACTIONS(963), - [anon_sym_where] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [sym_mutable_specifier] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(965), - [aux_sym_string_literal_token1] = ACTIONS(965), - [sym_char_literal] = ACTIONS(965), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), - [sym__raw_string_literal_start] = ACTIONS(965), - [sym_float_literal] = ACTIONS(965), - }, - [166] = { - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), - }, - [167] = { - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [168] = { - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), - }, - [169] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2593), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [170] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2730), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [171] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(965), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35971,893 +36186,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [172] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2504), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [173] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), - }, - [174] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2573), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(165)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [175] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), - }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), - }, - [178] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), - }, - [179] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(166)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36883,42 +36418,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [180] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(167)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(168)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(169)] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(975), + [anon_sym_i8] = ACTIONS(975), + [anon_sym_u16] = ACTIONS(975), + [anon_sym_i16] = ACTIONS(975), + [anon_sym_u32] = ACTIONS(975), + [anon_sym_i32] = ACTIONS(975), + [anon_sym_u64] = ACTIONS(975), + [anon_sym_i64] = ACTIONS(975), + [anon_sym_u128] = ACTIONS(975), + [anon_sym_i128] = ACTIONS(975), + [anon_sym_isize] = ACTIONS(975), + [anon_sym_usize] = ACTIONS(975), + [anon_sym_f32] = ACTIONS(975), + [anon_sym_f64] = ACTIONS(975), + [anon_sym_bool] = ACTIONS(975), + [anon_sym_str] = ACTIONS(975), + [anon_sym_char] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(977), + [anon_sym_PIPE_PIPE] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PERCENT_EQ] = ACTIONS(977), + [anon_sym_CARET_EQ] = ACTIONS(977), + [anon_sym_AMP_EQ] = ACTIONS(977), + [anon_sym_PIPE_EQ] = ACTIONS(977), + [anon_sym_LT_LT_EQ] = ACTIONS(977), + [anon_sym_GT_GT_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym__] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(977), + [anon_sym_DASH_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_async] = ACTIONS(975), + [anon_sym_await] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_default] = ACTIONS(975), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_fn] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_gen] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_impl] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(975), + [anon_sym_pub] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_static] = ACTIONS(975), + [anon_sym_struct] = ACTIONS(975), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(975), + [anon_sym_union] = ACTIONS(975), + [anon_sym_unsafe] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_where] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [sym_mutable_specifier] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(977), + [aux_sym_string_literal_token1] = ACTIONS(977), + [sym_char_literal] = ACTIONS(977), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(975), + [sym_super] = ACTIONS(975), + [sym_crate] = ACTIONS(975), + [sym_metavariable] = ACTIONS(977), + [sym__raw_string_literal_start] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), + }, + [STATE(170)] = { + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [aux_sym__non_special_token_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(891), + [anon_sym_i8] = ACTIONS(891), + [anon_sym_u16] = ACTIONS(891), + [anon_sym_i16] = ACTIONS(891), + [anon_sym_u32] = ACTIONS(891), + [anon_sym_i32] = ACTIONS(891), + [anon_sym_u64] = ACTIONS(891), + [anon_sym_i64] = ACTIONS(891), + [anon_sym_u128] = ACTIONS(891), + [anon_sym_i128] = ACTIONS(891), + [anon_sym_isize] = ACTIONS(891), + [anon_sym_usize] = ACTIONS(891), + [anon_sym_f32] = ACTIONS(891), + [anon_sym_f64] = ACTIONS(891), + [anon_sym_bool] = ACTIONS(891), + [anon_sym_str] = ACTIONS(891), + [anon_sym_char] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym_PERCENT] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_PERCENT_EQ] = ACTIONS(979), + [anon_sym_CARET_EQ] = ACTIONS(979), + [anon_sym_AMP_EQ] = ACTIONS(979), + [anon_sym_PIPE_EQ] = ACTIONS(979), + [anon_sym_LT_LT_EQ] = ACTIONS(979), + [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym__] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_COLON_COLON] = ACTIONS(979), + [anon_sym_DASH_GT] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_as] = ACTIONS(891), + [anon_sym_async] = ACTIONS(891), + [anon_sym_await] = ACTIONS(891), + [anon_sym_break] = ACTIONS(891), + [anon_sym_const] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_default] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_fn] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_gen] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_impl] = ACTIONS(891), + [anon_sym_let] = ACTIONS(891), + [anon_sym_loop] = ACTIONS(891), + [anon_sym_match] = ACTIONS(891), + [anon_sym_mod] = ACTIONS(891), + [anon_sym_pub] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_static] = ACTIONS(891), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_trait] = ACTIONS(891), + [anon_sym_type] = ACTIONS(891), + [anon_sym_union] = ACTIONS(891), + [anon_sym_unsafe] = ACTIONS(891), + [anon_sym_use] = ACTIONS(891), + [anon_sym_where] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [sym_mutable_specifier] = ACTIONS(891), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(891), + [anon_sym_false] = ACTIONS(891), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(891), + [sym_super] = ACTIONS(891), + [sym_crate] = ACTIONS(891), + [sym__raw_string_literal_start] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + }, + [STATE(171)] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), [sym_identifier] = ACTIONS(985), [anon_sym_SEMI] = ACTIONS(987), [anon_sym_LPAREN] = ACTIONS(987), @@ -36929,7 +36929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(987), [anon_sym_EQ_GT] = ACTIONS(987), [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(985), [anon_sym_PLUS] = ACTIONS(985), [anon_sym_STAR] = ACTIONS(985), [anon_sym_QMARK] = ACTIONS(987), @@ -36999,6 +36999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(985), [anon_sym_fn] = ACTIONS(985), [anon_sym_for] = ACTIONS(985), + [anon_sym_gen] = ACTIONS(985), [anon_sym_if] = ACTIONS(985), [anon_sym_impl] = ACTIONS(985), [anon_sym_let] = ACTIONS(985), @@ -37022,640 +37023,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(987), [anon_sym_true] = ACTIONS(985), [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(985), [sym_super] = ACTIONS(985), [sym_crate] = ACTIONS(985), + [sym_metavariable] = ACTIONS(987), [sym__raw_string_literal_start] = ACTIONS(987), [sym_float_literal] = ACTIONS(987), }, - [181] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), + [STATE(172)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_let_condition] = STATE(3361), + [sym__let_chain] = STATE(3362), + [sym__condition] = STATE(3526), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, - [182] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2629), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [183] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(949), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u128] = ACTIONS(947), - [anon_sym_i128] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_str] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(949), - [anon_sym_DASH_EQ] = ACTIONS(949), - [anon_sym_STAR_EQ] = ACTIONS(949), - [anon_sym_SLASH_EQ] = ACTIONS(949), - [anon_sym_PERCENT_EQ] = ACTIONS(949), - [anon_sym_CARET_EQ] = ACTIONS(949), - [anon_sym_AMP_EQ] = ACTIONS(949), - [anon_sym_PIPE_EQ] = ACTIONS(949), - [anon_sym_LT_LT_EQ] = ACTIONS(949), - [anon_sym_GT_GT_EQ] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(949), - [anon_sym__] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_COLON_COLON] = ACTIONS(949), - [anon_sym_DASH_GT] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_as] = ACTIONS(947), - [anon_sym_async] = ACTIONS(947), - [anon_sym_await] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_const] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_default] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_impl] = ACTIONS(947), - [anon_sym_let] = ACTIONS(947), - [anon_sym_loop] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_mod] = ACTIONS(947), - [anon_sym_pub] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_trait] = ACTIONS(947), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [anon_sym_unsafe] = ACTIONS(947), - [anon_sym_use] = ACTIONS(947), - [anon_sym_where] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [sym_mutable_specifier] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(949), - [aux_sym_string_literal_token1] = ACTIONS(949), - [sym_char_literal] = ACTIONS(949), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), - }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(995), - [anon_sym_DASH_GT] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_as] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_await] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_loop] = ACTIONS(993), - [anon_sym_match] = ACTIONS(993), - [anon_sym_mod] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_trait] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_union] = ACTIONS(993), - [anon_sym_unsafe] = ACTIONS(993), - [anon_sym_use] = ACTIONS(993), - [anon_sym_where] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [sym_mutable_specifier] = ACTIONS(993), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(995), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(993), - [anon_sym_false] = ACTIONS(993), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_crate] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), - }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [186] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(334), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(995), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(173)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(997), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37681,95 +37230,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [187] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(174)] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_EQ_GT] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_u8] = ACTIONS(999), + [anon_sym_i8] = ACTIONS(999), + [anon_sym_u16] = ACTIONS(999), + [anon_sym_i16] = ACTIONS(999), + [anon_sym_u32] = ACTIONS(999), + [anon_sym_i32] = ACTIONS(999), + [anon_sym_u64] = ACTIONS(999), + [anon_sym_i64] = ACTIONS(999), + [anon_sym_u128] = ACTIONS(999), + [anon_sym_i128] = ACTIONS(999), + [anon_sym_isize] = ACTIONS(999), + [anon_sym_usize] = ACTIONS(999), + [anon_sym_f32] = ACTIONS(999), + [anon_sym_f64] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_str] = ACTIONS(999), + [anon_sym_char] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(999), + [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_PERCENT_EQ] = ACTIONS(1001), + [anon_sym_CARET_EQ] = ACTIONS(1001), + [anon_sym_AMP_EQ] = ACTIONS(1001), + [anon_sym_PIPE_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_GT_EQ] = ACTIONS(1001), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym__] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_COLON_COLON] = ACTIONS(1001), + [anon_sym_DASH_GT] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_as] = ACTIONS(999), + [anon_sym_async] = ACTIONS(999), + [anon_sym_await] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_const] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_default] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [anon_sym_fn] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_gen] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_impl] = ACTIONS(999), + [anon_sym_let] = ACTIONS(999), + [anon_sym_loop] = ACTIONS(999), + [anon_sym_match] = ACTIONS(999), + [anon_sym_mod] = ACTIONS(999), + [anon_sym_pub] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_static] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_trait] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_union] = ACTIONS(999), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_use] = ACTIONS(999), + [anon_sym_where] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [sym_mutable_specifier] = ACTIONS(999), + [sym_integer_literal] = ACTIONS(1001), + [aux_sym_string_literal_token1] = ACTIONS(1001), + [sym_char_literal] = ACTIONS(1001), + [anon_sym_true] = ACTIONS(999), + [anon_sym_false] = ACTIONS(999), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(999), + [sym_metavariable] = ACTIONS(1001), + [sym__raw_string_literal_start] = ACTIONS(1001), + [sym_float_literal] = ACTIONS(1001), + }, + [STATE(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_EQ_GT] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u128] = ACTIONS(1003), + [anon_sym_i128] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_str] = ACTIONS(1003), + [anon_sym_char] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_STAR_EQ] = ACTIONS(1005), + [anon_sym_SLASH_EQ] = ACTIONS(1005), + [anon_sym_PERCENT_EQ] = ACTIONS(1005), + [anon_sym_CARET_EQ] = ACTIONS(1005), + [anon_sym_AMP_EQ] = ACTIONS(1005), + [anon_sym_PIPE_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_GT_EQ] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym__] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_COMMA] = ACTIONS(1005), + [anon_sym_COLON_COLON] = ACTIONS(1005), + [anon_sym_DASH_GT] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(1005), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1003), + [anon_sym_async] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_default] = ACTIONS(1003), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_gen] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_impl] = ACTIONS(1003), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_loop] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_mod] = ACTIONS(1003), + [anon_sym_pub] = ACTIONS(1003), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_trait] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1003), + [anon_sym_union] = ACTIONS(1003), + [anon_sym_unsafe] = ACTIONS(1003), + [anon_sym_use] = ACTIONS(1003), + [anon_sym_where] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [sym_mutable_specifier] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(1005), + [aux_sym_string_literal_token1] = ACTIONS(1005), + [sym_char_literal] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1003), + [sym_super] = ACTIONS(1003), + [sym_crate] = ACTIONS(1003), + [sym_metavariable] = ACTIONS(1005), + [sym__raw_string_literal_start] = ACTIONS(1005), + [sym_float_literal] = ACTIONS(1005), + }, + [STATE(176)] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_RBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_EQ_GT] = ACTIONS(1009), + [anon_sym_COLON] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_u8] = ACTIONS(1007), + [anon_sym_i8] = ACTIONS(1007), + [anon_sym_u16] = ACTIONS(1007), + [anon_sym_i16] = ACTIONS(1007), + [anon_sym_u32] = ACTIONS(1007), + [anon_sym_i32] = ACTIONS(1007), + [anon_sym_u64] = ACTIONS(1007), + [anon_sym_i64] = ACTIONS(1007), + [anon_sym_u128] = ACTIONS(1007), + [anon_sym_i128] = ACTIONS(1007), + [anon_sym_isize] = ACTIONS(1007), + [anon_sym_usize] = ACTIONS(1007), + [anon_sym_f32] = ACTIONS(1007), + [anon_sym_f64] = ACTIONS(1007), + [anon_sym_bool] = ACTIONS(1007), + [anon_sym_str] = ACTIONS(1007), + [anon_sym_char] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_PLUS_EQ] = ACTIONS(1009), + [anon_sym_DASH_EQ] = ACTIONS(1009), + [anon_sym_STAR_EQ] = ACTIONS(1009), + [anon_sym_SLASH_EQ] = ACTIONS(1009), + [anon_sym_PERCENT_EQ] = ACTIONS(1009), + [anon_sym_CARET_EQ] = ACTIONS(1009), + [anon_sym_AMP_EQ] = ACTIONS(1009), + [anon_sym_PIPE_EQ] = ACTIONS(1009), + [anon_sym_LT_LT_EQ] = ACTIONS(1009), + [anon_sym_GT_GT_EQ] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_BANG_EQ] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT_EQ] = ACTIONS(1009), + [anon_sym_LT_EQ] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1009), + [anon_sym__] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), + [anon_sym_COMMA] = ACTIONS(1009), + [anon_sym_COLON_COLON] = ACTIONS(1009), + [anon_sym_DASH_GT] = ACTIONS(1009), + [anon_sym_POUND] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_as] = ACTIONS(1007), + [anon_sym_async] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1007), + [anon_sym_break] = ACTIONS(1007), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_continue] = ACTIONS(1007), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_fn] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_gen] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1007), + [anon_sym_loop] = ACTIONS(1007), + [anon_sym_match] = ACTIONS(1007), + [anon_sym_mod] = ACTIONS(1007), + [anon_sym_pub] = ACTIONS(1007), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1007), + [anon_sym_struct] = ACTIONS(1007), + [anon_sym_trait] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1007), + [anon_sym_union] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_use] = ACTIONS(1007), + [anon_sym_where] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1007), + [sym_mutable_specifier] = ACTIONS(1007), + [sym_integer_literal] = ACTIONS(1009), + [aux_sym_string_literal_token1] = ACTIONS(1009), + [sym_char_literal] = ACTIONS(1009), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1007), + [sym_super] = ACTIONS(1007), + [sym_crate] = ACTIONS(1007), + [sym_metavariable] = ACTIONS(1009), + [sym__raw_string_literal_start] = ACTIONS(1009), + [sym_float_literal] = ACTIONS(1009), + }, + [STATE(177)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37795,323 +37694,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [188] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(178)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2699), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [189] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2548), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(179)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2819), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [190] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(180)] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_identifier] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_RBRACK] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_EQ_GT] = ACTIONS(1015), + [anon_sym_COLON] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1013), + [anon_sym_i8] = ACTIONS(1013), + [anon_sym_u16] = ACTIONS(1013), + [anon_sym_i16] = ACTIONS(1013), + [anon_sym_u32] = ACTIONS(1013), + [anon_sym_i32] = ACTIONS(1013), + [anon_sym_u64] = ACTIONS(1013), + [anon_sym_i64] = ACTIONS(1013), + [anon_sym_u128] = ACTIONS(1013), + [anon_sym_i128] = ACTIONS(1013), + [anon_sym_isize] = ACTIONS(1013), + [anon_sym_usize] = ACTIONS(1013), + [anon_sym_f32] = ACTIONS(1013), + [anon_sym_f64] = ACTIONS(1013), + [anon_sym_bool] = ACTIONS(1013), + [anon_sym_str] = ACTIONS(1013), + [anon_sym_char] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_PERCENT] = ACTIONS(1013), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1015), + [anon_sym_PIPE_PIPE] = ACTIONS(1015), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_PLUS_EQ] = ACTIONS(1015), + [anon_sym_DASH_EQ] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1015), + [anon_sym_SLASH_EQ] = ACTIONS(1015), + [anon_sym_PERCENT_EQ] = ACTIONS(1015), + [anon_sym_CARET_EQ] = ACTIONS(1015), + [anon_sym_AMP_EQ] = ACTIONS(1015), + [anon_sym_PIPE_EQ] = ACTIONS(1015), + [anon_sym_LT_LT_EQ] = ACTIONS(1015), + [anon_sym_GT_GT_EQ] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_EQ_EQ] = ACTIONS(1015), + [anon_sym_BANG_EQ] = ACTIONS(1015), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT_EQ] = ACTIONS(1015), + [anon_sym_LT_EQ] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [anon_sym__] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), + [anon_sym_COMMA] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1015), + [anon_sym_DASH_GT] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1013), + [anon_sym_as] = ACTIONS(1013), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_await] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_gen] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_impl] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_loop] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_mod] = ACTIONS(1013), + [anon_sym_pub] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_trait] = ACTIONS(1013), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_unsafe] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_where] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [sym_mutable_specifier] = ACTIONS(1013), + [sym_integer_literal] = ACTIONS(1015), + [aux_sym_string_literal_token1] = ACTIONS(1015), + [sym_char_literal] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1013), + [sym_super] = ACTIONS(1013), + [sym_crate] = ACTIONS(1013), + [sym_metavariable] = ACTIONS(1015), + [sym__raw_string_literal_start] = ACTIONS(1015), + [sym_float_literal] = ACTIONS(1015), + }, + [STATE(181)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38137,95 +38158,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [191] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(182)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38251,95 +38274,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [192] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [STATE(183)] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_identifier] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_RBRACK] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_EQ_GT] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_u8] = ACTIONS(1021), + [anon_sym_i8] = ACTIONS(1021), + [anon_sym_u16] = ACTIONS(1021), + [anon_sym_i16] = ACTIONS(1021), + [anon_sym_u32] = ACTIONS(1021), + [anon_sym_i32] = ACTIONS(1021), + [anon_sym_u64] = ACTIONS(1021), + [anon_sym_i64] = ACTIONS(1021), + [anon_sym_u128] = ACTIONS(1021), + [anon_sym_i128] = ACTIONS(1021), + [anon_sym_isize] = ACTIONS(1021), + [anon_sym_usize] = ACTIONS(1021), + [anon_sym_f32] = ACTIONS(1021), + [anon_sym_f64] = ACTIONS(1021), + [anon_sym_bool] = ACTIONS(1021), + [anon_sym_str] = ACTIONS(1021), + [anon_sym_char] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PERCENT] = ACTIONS(1021), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE_PIPE] = ACTIONS(1023), + [anon_sym_LT_LT] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PERCENT_EQ] = ACTIONS(1023), + [anon_sym_CARET_EQ] = ACTIONS(1023), + [anon_sym_AMP_EQ] = ACTIONS(1023), + [anon_sym_PIPE_EQ] = ACTIONS(1023), + [anon_sym_LT_LT_EQ] = ACTIONS(1023), + [anon_sym_GT_GT_EQ] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_EQ_EQ] = ACTIONS(1023), + [anon_sym_BANG_EQ] = ACTIONS(1023), + [anon_sym_GT] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_GT_EQ] = ACTIONS(1023), + [anon_sym_LT_EQ] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(1023), + [anon_sym_DASH_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_default] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_fn] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_gen] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_impl] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_mod] = ACTIONS(1021), + [anon_sym_pub] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_trait] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_unsafe] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_where] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [sym_mutable_specifier] = ACTIONS(1021), + [sym_integer_literal] = ACTIONS(1023), + [aux_sym_string_literal_token1] = ACTIONS(1023), + [sym_char_literal] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1021), + [sym_super] = ACTIONS(1021), + [sym_crate] = ACTIONS(1021), + [sym_metavariable] = ACTIONS(1023), + [sym__raw_string_literal_start] = ACTIONS(1023), + [sym_float_literal] = ACTIONS(1023), + }, + [STATE(184)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38365,95 +38506,1025 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [193] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(185)] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_EQ_GT] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u128] = ACTIONS(1027), + [anon_sym_i128] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_str] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1027), + [anon_sym_PERCENT] = ACTIONS(1027), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1029), + [anon_sym_PIPE_PIPE] = ACTIONS(1029), + [anon_sym_LT_LT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PERCENT_EQ] = ACTIONS(1029), + [anon_sym_CARET_EQ] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), + [anon_sym__] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_COLON_COLON] = ACTIONS(1029), + [anon_sym_DASH_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1027), + [anon_sym_await] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_fn] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_gen] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_impl] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_mod] = ACTIONS(1027), + [anon_sym_pub] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_trait] = ACTIONS(1027), + [anon_sym_type] = ACTIONS(1027), + [anon_sym_union] = ACTIONS(1027), + [anon_sym_unsafe] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_where] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [sym_mutable_specifier] = ACTIONS(1027), + [sym_integer_literal] = ACTIONS(1029), + [aux_sym_string_literal_token1] = ACTIONS(1029), + [sym_char_literal] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1027), + [anon_sym_false] = ACTIONS(1027), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1027), + [sym_super] = ACTIONS(1027), + [sym_crate] = ACTIONS(1027), + [sym_metavariable] = ACTIONS(1029), + [sym__raw_string_literal_start] = ACTIONS(1029), + [sym_float_literal] = ACTIONS(1029), + }, + [STATE(186)] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_identifier] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_RBRACK] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1033), + [anon_sym_COLON] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_u8] = ACTIONS(1031), + [anon_sym_i8] = ACTIONS(1031), + [anon_sym_u16] = ACTIONS(1031), + [anon_sym_i16] = ACTIONS(1031), + [anon_sym_u32] = ACTIONS(1031), + [anon_sym_i32] = ACTIONS(1031), + [anon_sym_u64] = ACTIONS(1031), + [anon_sym_i64] = ACTIONS(1031), + [anon_sym_u128] = ACTIONS(1031), + [anon_sym_i128] = ACTIONS(1031), + [anon_sym_isize] = ACTIONS(1031), + [anon_sym_usize] = ACTIONS(1031), + [anon_sym_f32] = ACTIONS(1031), + [anon_sym_f64] = ACTIONS(1031), + [anon_sym_bool] = ACTIONS(1031), + [anon_sym_str] = ACTIONS(1031), + [anon_sym_char] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1031), + [anon_sym_PERCENT] = ACTIONS(1031), + [anon_sym_CARET] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PERCENT_EQ] = ACTIONS(1033), + [anon_sym_CARET_EQ] = ACTIONS(1033), + [anon_sym_AMP_EQ] = ACTIONS(1033), + [anon_sym_PIPE_EQ] = ACTIONS(1033), + [anon_sym_LT_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_GT_EQ] = ACTIONS(1033), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(1033), + [anon_sym__] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(1033), + [anon_sym_DASH_GT] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_await] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1031), + [anon_sym_fn] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_gen] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_impl] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_mod] = ACTIONS(1031), + [anon_sym_pub] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_trait] = ACTIONS(1031), + [anon_sym_type] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1031), + [anon_sym_unsafe] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_where] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [sym_mutable_specifier] = ACTIONS(1031), + [sym_integer_literal] = ACTIONS(1033), + [aux_sym_string_literal_token1] = ACTIONS(1033), + [sym_char_literal] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1031), + [anon_sym_false] = ACTIONS(1031), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1031), + [sym_super] = ACTIONS(1031), + [sym_crate] = ACTIONS(1031), + [sym_metavariable] = ACTIONS(1033), + [sym__raw_string_literal_start] = ACTIONS(1033), + [sym_float_literal] = ACTIONS(1033), + }, + [STATE(187)] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_AMP_EQ] = ACTIONS(903), + [anon_sym_PIPE_EQ] = ACTIONS(903), + [anon_sym_LT_LT_EQ] = ACTIONS(903), + [anon_sym_GT_GT_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(903), + [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_gen] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_union] = ACTIONS(901), + [anon_sym_unsafe] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [sym_mutable_specifier] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_crate] = ACTIONS(901), + [sym_metavariable] = ACTIONS(903), + [sym__raw_string_literal_start] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), + }, + [STATE(188)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2855), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(189)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2869), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(190)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2754), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(191)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2703), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(192)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2716), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(193)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1013), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38479,95 +39550,675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [194] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(194)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2835), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(195)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2625), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(196)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2627), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(197)] = { + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym_metavariable] = ACTIONS(1039), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [STATE(198)] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [STATE(199)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38593,95 +40244,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [195] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [STATE(200)] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [sym_mutable_specifier] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, + [STATE(201)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1969), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38707,97 +40474,903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [196] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), + [STATE(202)] = { + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_RBRACK] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_EQ_GT] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_u8] = ACTIONS(1021), + [anon_sym_i8] = ACTIONS(1021), + [anon_sym_u16] = ACTIONS(1021), + [anon_sym_i16] = ACTIONS(1021), + [anon_sym_u32] = ACTIONS(1021), + [anon_sym_i32] = ACTIONS(1021), + [anon_sym_u64] = ACTIONS(1021), + [anon_sym_i64] = ACTIONS(1021), + [anon_sym_u128] = ACTIONS(1021), + [anon_sym_i128] = ACTIONS(1021), + [anon_sym_isize] = ACTIONS(1021), + [anon_sym_usize] = ACTIONS(1021), + [anon_sym_f32] = ACTIONS(1021), + [anon_sym_f64] = ACTIONS(1021), + [anon_sym_bool] = ACTIONS(1021), + [anon_sym_str] = ACTIONS(1021), + [anon_sym_char] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PERCENT] = ACTIONS(1021), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE_PIPE] = ACTIONS(1023), + [anon_sym_LT_LT] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PERCENT_EQ] = ACTIONS(1023), + [anon_sym_CARET_EQ] = ACTIONS(1023), + [anon_sym_AMP_EQ] = ACTIONS(1023), + [anon_sym_PIPE_EQ] = ACTIONS(1023), + [anon_sym_LT_LT_EQ] = ACTIONS(1023), + [anon_sym_GT_GT_EQ] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_EQ_EQ] = ACTIONS(1023), + [anon_sym_BANG_EQ] = ACTIONS(1023), + [anon_sym_GT] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_GT_EQ] = ACTIONS(1023), + [anon_sym_LT_EQ] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(1023), + [anon_sym_DASH_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_default] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_fn] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_gen] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_impl] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_mod] = ACTIONS(1021), + [anon_sym_pub] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_trait] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_unsafe] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_where] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [sym_mutable_specifier] = ACTIONS(1021), + [sym_integer_literal] = ACTIONS(1023), + [aux_sym_string_literal_token1] = ACTIONS(1023), + [sym_char_literal] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1021), + [sym_super] = ACTIONS(1021), + [sym_crate] = ACTIONS(1021), + [sym__raw_string_literal_start] = ACTIONS(1023), + [sym_float_literal] = ACTIONS(1023), + }, + [STATE(203)] = { + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [sym_identifier] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(975), + [anon_sym_i8] = ACTIONS(975), + [anon_sym_u16] = ACTIONS(975), + [anon_sym_i16] = ACTIONS(975), + [anon_sym_u32] = ACTIONS(975), + [anon_sym_i32] = ACTIONS(975), + [anon_sym_u64] = ACTIONS(975), + [anon_sym_i64] = ACTIONS(975), + [anon_sym_u128] = ACTIONS(975), + [anon_sym_i128] = ACTIONS(975), + [anon_sym_isize] = ACTIONS(975), + [anon_sym_usize] = ACTIONS(975), + [anon_sym_f32] = ACTIONS(975), + [anon_sym_f64] = ACTIONS(975), + [anon_sym_bool] = ACTIONS(975), + [anon_sym_str] = ACTIONS(975), + [anon_sym_char] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(977), + [anon_sym_PIPE_PIPE] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PERCENT_EQ] = ACTIONS(977), + [anon_sym_CARET_EQ] = ACTIONS(977), + [anon_sym_AMP_EQ] = ACTIONS(977), + [anon_sym_PIPE_EQ] = ACTIONS(977), + [anon_sym_LT_LT_EQ] = ACTIONS(977), + [anon_sym_GT_GT_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym__] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(977), + [anon_sym_DASH_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_async] = ACTIONS(975), + [anon_sym_await] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_default] = ACTIONS(975), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_fn] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_gen] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_impl] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(975), + [anon_sym_pub] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_static] = ACTIONS(975), + [anon_sym_struct] = ACTIONS(975), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(975), + [anon_sym_union] = ACTIONS(975), + [anon_sym_unsafe] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_where] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [sym_mutable_specifier] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(977), + [aux_sym_string_literal_token1] = ACTIONS(977), + [sym_char_literal] = ACTIONS(977), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(975), + [sym_super] = ACTIONS(975), + [sym_crate] = ACTIONS(975), + [sym__raw_string_literal_start] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), + }, + [STATE(204)] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1045), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_DASH_GT] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_where] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [sym_mutable_specifier] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [STATE(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(951), + [anon_sym_i8] = ACTIONS(951), + [anon_sym_u16] = ACTIONS(951), + [anon_sym_i16] = ACTIONS(951), + [anon_sym_u32] = ACTIONS(951), + [anon_sym_i32] = ACTIONS(951), + [anon_sym_u64] = ACTIONS(951), + [anon_sym_i64] = ACTIONS(951), + [anon_sym_u128] = ACTIONS(951), + [anon_sym_i128] = ACTIONS(951), + [anon_sym_isize] = ACTIONS(951), + [anon_sym_usize] = ACTIONS(951), + [anon_sym_f32] = ACTIONS(951), + [anon_sym_f64] = ACTIONS(951), + [anon_sym_bool] = ACTIONS(951), + [anon_sym_str] = ACTIONS(951), + [anon_sym_char] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(953), + [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym__] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_COLON_COLON] = ACTIONS(953), + [anon_sym_DASH_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(953), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_async] = ACTIONS(951), + [anon_sym_await] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_default] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_gen] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_mod] = ACTIONS(951), + [anon_sym_pub] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_static] = ACTIONS(951), + [anon_sym_struct] = ACTIONS(951), + [anon_sym_trait] = ACTIONS(951), + [anon_sym_type] = ACTIONS(951), + [anon_sym_union] = ACTIONS(951), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_where] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [sym_mutable_specifier] = ACTIONS(951), + [sym_integer_literal] = ACTIONS(953), + [aux_sym_string_literal_token1] = ACTIONS(953), + [sym_char_literal] = ACTIONS(953), + [anon_sym_true] = ACTIONS(951), + [anon_sym_false] = ACTIONS(951), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_crate] = ACTIONS(951), + [sym__raw_string_literal_start] = ACTIONS(953), + [sym_float_literal] = ACTIONS(953), + }, + [STATE(206)] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_RBRACK] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_EQ_GT] = ACTIONS(957), + [anon_sym_COLON] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_QMARK] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(955), + [anon_sym_i8] = ACTIONS(955), + [anon_sym_u16] = ACTIONS(955), + [anon_sym_i16] = ACTIONS(955), + [anon_sym_u32] = ACTIONS(955), + [anon_sym_i32] = ACTIONS(955), + [anon_sym_u64] = ACTIONS(955), + [anon_sym_i64] = ACTIONS(955), + [anon_sym_u128] = ACTIONS(955), + [anon_sym_i128] = ACTIONS(955), + [anon_sym_isize] = ACTIONS(955), + [anon_sym_usize] = ACTIONS(955), + [anon_sym_f32] = ACTIONS(955), + [anon_sym_f64] = ACTIONS(955), + [anon_sym_bool] = ACTIONS(955), + [anon_sym_str] = ACTIONS(955), + [anon_sym_char] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_SLASH] = ACTIONS(955), + [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(955), + [anon_sym_GT_GT] = ACTIONS(955), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_STAR_EQ] = ACTIONS(957), + [anon_sym_SLASH_EQ] = ACTIONS(957), + [anon_sym_PERCENT_EQ] = ACTIONS(957), + [anon_sym_CARET_EQ] = ACTIONS(957), + [anon_sym_AMP_EQ] = ACTIONS(957), + [anon_sym_PIPE_EQ] = ACTIONS(957), + [anon_sym_LT_LT_EQ] = ACTIONS(957), + [anon_sym_GT_GT_EQ] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_EQ_EQ] = ACTIONS(957), + [anon_sym_BANG_EQ] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(955), + [anon_sym_GT_EQ] = ACTIONS(957), + [anon_sym_LT_EQ] = ACTIONS(957), + [anon_sym_AT] = ACTIONS(957), + [anon_sym__] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(957), + [anon_sym_DASH_GT] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [anon_sym_async] = ACTIONS(955), + [anon_sym_await] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_default] = ACTIONS(955), + [anon_sym_enum] = ACTIONS(955), + [anon_sym_fn] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_gen] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_impl] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_mod] = ACTIONS(955), + [anon_sym_pub] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_static] = ACTIONS(955), + [anon_sym_struct] = ACTIONS(955), + [anon_sym_trait] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_union] = ACTIONS(955), + [anon_sym_unsafe] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_where] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [sym_mutable_specifier] = ACTIONS(955), + [sym_integer_literal] = ACTIONS(957), + [aux_sym_string_literal_token1] = ACTIONS(957), + [sym_char_literal] = ACTIONS(957), + [anon_sym_true] = ACTIONS(955), + [anon_sym_false] = ACTIONS(955), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(955), + [sym_super] = ACTIONS(955), + [sym_crate] = ACTIONS(955), + [sym__raw_string_literal_start] = ACTIONS(957), + [sym_float_literal] = ACTIONS(957), + }, + [STATE(207)] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_RBRACK] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_EQ_GT] = ACTIONS(1015), + [anon_sym_COLON] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1013), + [anon_sym_i8] = ACTIONS(1013), + [anon_sym_u16] = ACTIONS(1013), + [anon_sym_i16] = ACTIONS(1013), + [anon_sym_u32] = ACTIONS(1013), + [anon_sym_i32] = ACTIONS(1013), + [anon_sym_u64] = ACTIONS(1013), + [anon_sym_i64] = ACTIONS(1013), + [anon_sym_u128] = ACTIONS(1013), + [anon_sym_i128] = ACTIONS(1013), + [anon_sym_isize] = ACTIONS(1013), + [anon_sym_usize] = ACTIONS(1013), + [anon_sym_f32] = ACTIONS(1013), + [anon_sym_f64] = ACTIONS(1013), + [anon_sym_bool] = ACTIONS(1013), + [anon_sym_str] = ACTIONS(1013), + [anon_sym_char] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_PERCENT] = ACTIONS(1013), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1015), + [anon_sym_PIPE_PIPE] = ACTIONS(1015), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_PLUS_EQ] = ACTIONS(1015), + [anon_sym_DASH_EQ] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1015), + [anon_sym_SLASH_EQ] = ACTIONS(1015), + [anon_sym_PERCENT_EQ] = ACTIONS(1015), + [anon_sym_CARET_EQ] = ACTIONS(1015), + [anon_sym_AMP_EQ] = ACTIONS(1015), + [anon_sym_PIPE_EQ] = ACTIONS(1015), + [anon_sym_LT_LT_EQ] = ACTIONS(1015), + [anon_sym_GT_GT_EQ] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_EQ_EQ] = ACTIONS(1015), + [anon_sym_BANG_EQ] = ACTIONS(1015), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT_EQ] = ACTIONS(1015), + [anon_sym_LT_EQ] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [anon_sym__] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), + [anon_sym_COMMA] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1015), + [anon_sym_DASH_GT] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1013), + [anon_sym_as] = ACTIONS(1013), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_await] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_gen] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_impl] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_loop] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_mod] = ACTIONS(1013), + [anon_sym_pub] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_trait] = ACTIONS(1013), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_unsafe] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_where] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [sym_mutable_specifier] = ACTIONS(1013), + [sym_integer_literal] = ACTIONS(1015), + [aux_sym_string_literal_token1] = ACTIONS(1015), + [sym_char_literal] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1013), + [sym_super] = ACTIONS(1013), + [sym_crate] = ACTIONS(1013), + [sym__raw_string_literal_start] = ACTIONS(1015), + [sym_float_literal] = ACTIONS(1015), + }, + [STATE(208)] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_RBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_EQ_GT] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_DASH_GT] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), + }, + [STATE(209)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), [anon_sym_i16] = ACTIONS(23), @@ -38821,209 +41394,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [197] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(3179), - [sym__let_chain] = STATE(3181), - [sym__condition] = STATE(3594), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [198] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_EQ_GT] = ACTIONS(917), + [anon_sym_COLON] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_u8] = ACTIONS(915), + [anon_sym_i8] = ACTIONS(915), + [anon_sym_u16] = ACTIONS(915), + [anon_sym_i16] = ACTIONS(915), + [anon_sym_u32] = ACTIONS(915), + [anon_sym_i32] = ACTIONS(915), + [anon_sym_u64] = ACTIONS(915), + [anon_sym_i64] = ACTIONS(915), + [anon_sym_u128] = ACTIONS(915), + [anon_sym_i128] = ACTIONS(915), + [anon_sym_isize] = ACTIONS(915), + [anon_sym_usize] = ACTIONS(915), + [anon_sym_f32] = ACTIONS(915), + [anon_sym_f64] = ACTIONS(915), + [anon_sym_bool] = ACTIONS(915), + [anon_sym_str] = ACTIONS(915), + [anon_sym_char] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_STAR_EQ] = ACTIONS(917), + [anon_sym_SLASH_EQ] = ACTIONS(917), + [anon_sym_PERCENT_EQ] = ACTIONS(917), + [anon_sym_CARET_EQ] = ACTIONS(917), + [anon_sym_AMP_EQ] = ACTIONS(917), + [anon_sym_PIPE_EQ] = ACTIONS(917), + [anon_sym_LT_LT_EQ] = ACTIONS(917), + [anon_sym_GT_GT_EQ] = ACTIONS(917), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(917), + [anon_sym__] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_COLON_COLON] = ACTIONS(917), + [anon_sym_DASH_GT] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_async] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_fn] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_gen] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_impl] = ACTIONS(915), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mod] = ACTIONS(915), + [anon_sym_pub] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_static] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_type] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_unsafe] = ACTIONS(915), + [anon_sym_use] = ACTIONS(915), + [anon_sym_where] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [sym_mutable_specifier] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(917), + [aux_sym_string_literal_token1] = ACTIONS(917), + [sym_char_literal] = ACTIONS(917), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_crate] = ACTIONS(915), + [sym__raw_string_literal_start] = ACTIONS(917), + [sym_float_literal] = ACTIONS(917), + }, + [STATE(211)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1029), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39049,95 +41624,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [199] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [STATE(212)] = { + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_EQ_GT] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_AMP_AMP] = ACTIONS(1055), + [anon_sym_PIPE_PIPE] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_PLUS_EQ] = ACTIONS(1055), + [anon_sym_DASH_EQ] = ACTIONS(1055), + [anon_sym_STAR_EQ] = ACTIONS(1055), + [anon_sym_SLASH_EQ] = ACTIONS(1055), + [anon_sym_PERCENT_EQ] = ACTIONS(1055), + [anon_sym_CARET_EQ] = ACTIONS(1055), + [anon_sym_AMP_EQ] = ACTIONS(1055), + [anon_sym_PIPE_EQ] = ACTIONS(1055), + [anon_sym_LT_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_GT_EQ] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_await] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_gen] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_impl] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_loop] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_pub] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [sym_mutable_specifier] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_crate] = ACTIONS(1053), + [sym__raw_string_literal_start] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), + }, + [STATE(213)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1973), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39163,95 +41854,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [200] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(214)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39277,323 +41969,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [201] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2722), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(215)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [202] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2495), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(216)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [203] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1069), + [anon_sym_raw] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(217)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39612,671 +42303,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1073), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [204] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2547), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(218)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [205] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2594), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(219)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [206] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2612), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(220)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1787), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1085), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [207] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2621), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(221)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [aux_sym_tuple_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1087), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [208] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), - }, - [209] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(222)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1087), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40302,94 +42882,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [210] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(223)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1089), + [anon_sym_raw] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(224)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40408,101 +43101,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [211] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(225)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40526,96 +43220,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [212] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1095), + [anon_sym_raw] = ACTIONS(1097), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(226)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(227)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1099), + [anon_sym_raw] = ACTIONS(1101), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(228)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40634,101 +43557,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [213] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(229)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2596), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1171), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(230)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [aux_sym_tuple_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40754,94 +43794,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [214] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(231)] = { + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3032), + [sym_variadic_parameter] = STATE(3032), + [sym_parameter] = STATE(3032), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(232)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40860,101 +44013,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [215] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(233)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1037), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40973,324 +44127,788 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1061), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [216] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(234)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym__] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [217] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(235)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2596), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1171), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(236)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1213), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [218] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(237)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(238)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(995), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(239)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [aux_sym_tuple_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1238), + [anon_sym_i8] = ACTIONS(1238), + [anon_sym_u16] = ACTIONS(1238), + [anon_sym_i16] = ACTIONS(1238), + [anon_sym_u32] = ACTIONS(1238), + [anon_sym_i32] = ACTIONS(1238), + [anon_sym_u64] = ACTIONS(1238), + [anon_sym_i64] = ACTIONS(1238), + [anon_sym_u128] = ACTIONS(1238), + [anon_sym_i128] = ACTIONS(1238), + [anon_sym_isize] = ACTIONS(1238), + [anon_sym_usize] = ACTIONS(1238), + [anon_sym_f32] = ACTIONS(1238), + [anon_sym_f64] = ACTIONS(1238), + [anon_sym_bool] = ACTIONS(1238), + [anon_sym_str] = ACTIONS(1238), + [anon_sym_char] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_gen] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_unsafe] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_yield] = ACTIONS(1301), + [anon_sym_move] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(1307), + [sym_integer_literal] = ACTIONS(1310), + [aux_sym_string_literal_token1] = ACTIONS(1313), + [sym_char_literal] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1310), + }, + [STATE(240)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [aux_sym_tuple_expression_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41317,92 +44935,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [219] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [aux_sym_tuple_expression_repeat1] = STATE(223), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(241)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_tuple_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1331), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41429,204 +45049,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [220] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(242)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2884), + [sym_variadic_parameter] = STATE(2884), + [sym_parameter] = STATE(2884), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2717), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(243)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1721), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(244)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1213), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [221] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(245)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1760), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(246)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [aux_sym_tuple_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41653,204 +45619,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [222] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_u8] = ACTIONS(1078), - [anon_sym_i8] = ACTIONS(1078), - [anon_sym_u16] = ACTIONS(1078), - [anon_sym_i16] = ACTIONS(1078), - [anon_sym_u32] = ACTIONS(1078), - [anon_sym_i32] = ACTIONS(1078), - [anon_sym_u64] = ACTIONS(1078), - [anon_sym_i64] = ACTIONS(1078), - [anon_sym_u128] = ACTIONS(1078), - [anon_sym_i128] = ACTIONS(1078), - [anon_sym_isize] = ACTIONS(1078), - [anon_sym_usize] = ACTIONS(1078), - [anon_sym_f32] = ACTIONS(1078), - [anon_sym_f64] = ACTIONS(1078), - [anon_sym_bool] = ACTIONS(1078), - [anon_sym_str] = ACTIONS(1078), - [anon_sym_char] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1084), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_COLON_COLON] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_union] = ACTIONS(1111), - [anon_sym_unsafe] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_move] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1147), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1147), - [anon_sym_true] = ACTIONS(1153), - [anon_sym_false] = ACTIONS(1153), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1159), - [sym_crate] = ACTIONS(1159), - [sym_metavariable] = ACTIONS(1162), - [sym__raw_string_literal_start] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1147), - }, - [223] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(247)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1168), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41869,324 +45723,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1213), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [224] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [225] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [226] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(248)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42205,100 +45837,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1077), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [227] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(249)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42317,98 +45951,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1211), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1213), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [228] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(250)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_tuple_expression_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42427,212 +46067,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [229] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [230] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(251)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2596), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1171), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(252)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [aux_sym_tuple_expression_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1355), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42651,100 +46295,1687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [231] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(253)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(254)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(255)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(256)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1922), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1357), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(257)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(995), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(258)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(259)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(260)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(261)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(262)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(263)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(264)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(265)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(266)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(267)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42763,212 +47994,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [232] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(268)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [233] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(269)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(270)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1449), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(271)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(272)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42987,324 +48554,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [234] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [235] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1634), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [236] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1487), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(273)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43323,214 +48666,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [237] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1656), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(274)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1180), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [238] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [aux_sym_tuple_expression_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(275)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1182), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43557,982 +48898,1436 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [239] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1662), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(276)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1184), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [240] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(277)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [241] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1673), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(278)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1190), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [242] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(279)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [243] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(280)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [sym_mutable_specifier] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [244] = { - [sym_else_clause] = STATE(385), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1194), - [anon_sym_DASH_EQ] = ACTIONS(1194), - [anon_sym_STAR_EQ] = ACTIONS(1194), - [anon_sym_SLASH_EQ] = ACTIONS(1194), - [anon_sym_PERCENT_EQ] = ACTIONS(1194), - [anon_sym_CARET_EQ] = ACTIONS(1194), - [anon_sym_AMP_EQ] = ACTIONS(1194), - [anon_sym_PIPE_EQ] = ACTIONS(1194), - [anon_sym_LT_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_as] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym__raw_string_literal_start] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), - }, - [245] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(281)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [246] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(282)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(283)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(284)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(285)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(286)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(287)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1202), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [247] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(288)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(481), + [sym_match_expression] = STATE(481), + [sym_while_expression] = STATE(481), + [sym_loop_expression] = STATE(481), + [sym_for_expression] = STATE(481), + [sym_const_block] = STATE(481), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(481), + [sym_async_block] = STATE(481), + [sym_gen_block] = STATE(481), + [sym_try_block] = STATE(481), + [sym_block] = STATE(481), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44556,94 +50351,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1385), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1387), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [248] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(289)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(290)] = { + [sym_else_clause] = STATE(407), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_macro_rules_BANG] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_QMARK] = ACTIONS(1405), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1405), + [anon_sym_LT_LT] = ACTIONS(1407), + [anon_sym_GT_GT] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1405), + [anon_sym_DASH_EQ] = ACTIONS(1405), + [anon_sym_STAR_EQ] = ACTIONS(1405), + [anon_sym_SLASH_EQ] = ACTIONS(1405), + [anon_sym_PERCENT_EQ] = ACTIONS(1405), + [anon_sym_CARET_EQ] = ACTIONS(1405), + [anon_sym_AMP_EQ] = ACTIONS(1405), + [anon_sym_PIPE_EQ] = ACTIONS(1405), + [anon_sym_LT_LT_EQ] = ACTIONS(1405), + [anon_sym_GT_GT_EQ] = ACTIONS(1405), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1405), + [anon_sym_BANG_EQ] = ACTIONS(1405), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_gen] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_trait] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_unsafe] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1409), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_move] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym__raw_string_literal_start] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1946), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44670,1190 +50690,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [249] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [250] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [251] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [252] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [253] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [254] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [255] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [256] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [257] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [258] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [259] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(292)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45880,90 +50802,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [260] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(293)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45990,200 +50914,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [261] = { - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - }, - [262] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(294)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46210,90 +51026,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [263] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(295)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(296)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(297)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46320,1630 +51362,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [264] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1659), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [265] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(298)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [266] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [267] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [268] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [269] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [270] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [271] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [272] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [273] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [274] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [275] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [276] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(299)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [277] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(300)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [278] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(301)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1467), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47967,93 +51807,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [279] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(302)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48080,1850 +51922,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [280] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [281] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [282] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1630), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [283] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [284] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [285] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [286] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [287] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [288] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [289] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [290] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [291] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [292] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1615), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [293] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [294] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1616), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [295] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(303)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1467), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [296] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(304)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49950,200 +52146,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [297] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [298] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(305)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50170,90 +52258,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [299] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(306)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(479), + [sym_match_expression] = STATE(479), + [sym_while_expression] = STATE(479), + [sym_loop_expression] = STATE(479), + [sym_for_expression] = STATE(479), + [sym_const_block] = STATE(479), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(479), + [sym_async_block] = STATE(479), + [sym_gen_block] = STATE(479), + [sym_try_block] = STATE(479), + [sym_block] = STATE(479), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50280,90 +52370,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1385), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1387), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [300] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(307)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1972), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50387,93 +52479,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [301] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(308)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1970), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50500,90 +52594,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [302] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(309)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1956), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50610,90 +52706,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [303] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(310)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50717,93 +52815,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [304] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(311)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1455), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50827,93 +52927,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [305] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1485), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(312)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50937,93 +53039,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [306] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1486), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(313)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51047,203 +53151,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [307] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [308] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(314)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51267,93 +53263,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [309] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(315)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51377,203 +53375,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [310] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [311] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(316)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51597,203 +53487,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [312] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [313] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(317)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51820,90 +53602,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [314] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1488), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(318)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(319)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(320)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51927,93 +53935,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [315] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1490), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(321)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(481), + [sym_match_expression] = STATE(481), + [sym_while_expression] = STATE(481), + [sym_loop_expression] = STATE(481), + [sym_for_expression] = STATE(481), + [sym_const_block] = STATE(481), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(481), + [sym_async_block] = STATE(481), + [sym_gen_block] = STATE(481), + [sym_try_block] = STATE(481), + [sym_block] = STATE(481), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52037,93 +54047,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1385), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1387), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [316] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(322)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52150,90 +54162,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [317] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(323)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52260,90 +54274,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [318] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(324)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(325)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(326)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1958), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52370,90 +54610,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [319] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(327)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1965), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52477,93 +54719,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [320] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(328)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52590,90 +54834,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [321] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(329)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52697,93 +54943,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [322] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(330)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(331)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52807,313 +55167,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [323] = { - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, - [324] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [325] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1500), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(332)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1591), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53137,93 +55279,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [326] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(333)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53247,93 +55391,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [327] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1494), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(334)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1467), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(335)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53357,93 +55615,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [328] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1503), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(336)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53467,93 +55727,1663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [329] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(337)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(338)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(339)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(340)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1455), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(341)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(342)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(343)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(344)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(345)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(346)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(347)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(348)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(349)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(350)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(351)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53577,93 +57407,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [330] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(352)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1449), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(353)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53690,90 +57634,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [331] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(354)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1921), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1921), + [sym_try_expression] = STATE(1921), + [sym_reference_expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_assignment_expression] = STATE(1921), + [sym_compound_assignment_expr] = STATE(1921), + [sym_type_cast_expression] = STATE(1921), + [sym_return_expression] = STATE(1921), + [sym_yield_expression] = STATE(1921), + [sym_call_expression] = STATE(1921), + [sym_array_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_tuple_expression] = STATE(1921), + [sym_unit_expression] = STATE(1921), + [sym_struct_expression] = STATE(1921), + [sym_if_expression] = STATE(1921), + [sym_match_expression] = STATE(1921), + [sym_while_expression] = STATE(1921), + [sym_loop_expression] = STATE(1921), + [sym_for_expression] = STATE(1921), + [sym_const_block] = STATE(1921), + [sym_closure_expression] = STATE(1921), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1921), + [sym_continue_expression] = STATE(1921), + [sym_index_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1921), + [sym_async_block] = STATE(1921), + [sym_gen_block] = STATE(1921), + [sym_try_block] = STATE(1921), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1921), + [sym_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(355)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1962), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53800,90 +57858,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [332] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(356)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53910,90 +57970,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [333] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(357)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54020,90 +58082,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [334] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(358)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(359)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1449), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54127,93 +58303,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [335] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(360)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(361)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(362)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54240,200 +58642,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [336] = { - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), - }, - [337] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(363)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(364)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54460,200 +58866,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [338] = { - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, - [339] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(365)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(366)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1455), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(367)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1963), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54677,93 +59199,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [340] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(368)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1964), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54790,310 +59314,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [341] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [342] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [343] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(369)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55120,90 +59426,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [344] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(370)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1968), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55230,200 +59538,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [345] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [346] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(371)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55450,200 +59650,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [347] = { - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), - }, - [348] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(372)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1971), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55670,90 +59762,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [349] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(373)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1640), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(374)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55780,90 +59986,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [350] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(375)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55890,90 +60098,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [351] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(376)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56000,90 +60210,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [352] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(377)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56110,90 +60322,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [353] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(378)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56220,970 +60434,764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [354] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [355] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(379)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [356] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(380)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [357] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(381)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [358] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [359] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(334), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(382)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [360] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(383)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [361] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(384)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [362] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(334), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(385)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1959), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57210,14844 +61218,11355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [363] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(386)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [364] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(387)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [365] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(388)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [366] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(389)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [367] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(390)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [368] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(391)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [369] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(456), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(392)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [370] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(456), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(393)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(479), + [sym_match_expression] = STATE(479), + [sym_while_expression] = STATE(479), + [sym_loop_expression] = STATE(479), + [sym_for_expression] = STATE(479), + [sym_const_block] = STATE(479), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(479), + [sym_async_block] = STATE(479), + [sym_gen_block] = STATE(479), + [sym_try_block] = STATE(479), + [sym_block] = STATE(479), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1387), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [371] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1276), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [372] = { - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_as] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), - [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), - }, - [373] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2798), - [sym_variadic_parameter] = STATE(2798), - [sym_parameter] = STATE(2798), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2610), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(991), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_macro_rules_BANG] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_extern] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(989), - [anon_sym_move] = ACTIONS(989), - [anon_sym_try] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym_metavariable] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, - [375] = { - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(987), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_macro_rules_BANG] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_extern] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_move] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym_metavariable] = ACTIONS(987), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [376] = { - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_as] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), - }, - [377] = { - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), - }, - [378] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_macro_rules_BANG] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_as] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsafe] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym__raw_string_literal_start] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), - }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_macro_rules_BANG] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_unsafe] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), - }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_macro_rules_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), - }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_macro_rules_BANG] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_type] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), - }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), - }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), - }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), - }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), - }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(1396), - [anon_sym_async] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_mod] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_type] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [anon_sym_try] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym__raw_string_literal_start] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), - }, - [388] = { - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_STAR_EQ] = ACTIONS(1398), - [anon_sym_SLASH_EQ] = ACTIONS(1398), - [anon_sym_PERCENT_EQ] = ACTIONS(1398), - [anon_sym_CARET_EQ] = ACTIONS(1398), - [anon_sym_AMP_EQ] = ACTIONS(1398), - [anon_sym_PIPE_EQ] = ACTIONS(1398), - [anon_sym_LT_LT_EQ] = ACTIONS(1398), - [anon_sym_GT_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_as] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [anon_sym_try] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym__raw_string_literal_start] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), - }, - [389] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_macro_rules_BANG] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_async] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_mod] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [anon_sym_try] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym__raw_string_literal_start] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), - }, - [390] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2751), - [sym_variadic_parameter] = STATE(2751), - [sym_parameter] = STATE(2751), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2526), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [391] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_macro_rules_BANG] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u128] = ACTIONS(1414), - [anon_sym_i128] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_str] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_impl] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_pub] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_trait] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_unsafe] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_move] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1412), - [aux_sym_string_literal_token1] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym__raw_string_literal_start] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), - }, - [392] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_macro_rules_BANG] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_impl] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_pub] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_trait] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_unsafe] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_move] = ACTIONS(1422), - [anon_sym_try] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), - }, - [393] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), - }, - [394] = { + [STATE(394)] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), - }, - [395] = { + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), + }, + [STATE(395)] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), - }, - [396] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_macro_rules_BANG] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_impl] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(1439), + [anon_sym_loop] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_mod] = ACTIONS(1439), + [anon_sym_pub] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_trait] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_unsafe] = ACTIONS(1439), + [anon_sym_use] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), + }, + [STATE(396)] = { [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [397] = { + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_macro_rules_BANG] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_impl] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_mod] = ACTIONS(1443), + [anon_sym_pub] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_struct] = ACTIONS(1443), + [anon_sym_trait] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(397)] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1444), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_as] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [anon_sym_try] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym__raw_string_literal_start] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), - }, - [398] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_QMARK] = ACTIONS(1445), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_else] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), + }, + [STATE(398)] = { [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [399] = { + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(399)] = { [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), - }, - [400] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [STATE(400)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3009), + [sym_variadic_parameter] = STATE(3009), + [sym_parameter] = STATE(3009), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [401] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(401)] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [402] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_macro_rules_BANG] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_u8] = ACTIONS(1465), + [anon_sym_i8] = ACTIONS(1465), + [anon_sym_u16] = ACTIONS(1465), + [anon_sym_i16] = ACTIONS(1465), + [anon_sym_u32] = ACTIONS(1465), + [anon_sym_i32] = ACTIONS(1465), + [anon_sym_u64] = ACTIONS(1465), + [anon_sym_i64] = ACTIONS(1465), + [anon_sym_u128] = ACTIONS(1465), + [anon_sym_i128] = ACTIONS(1465), + [anon_sym_isize] = ACTIONS(1465), + [anon_sym_usize] = ACTIONS(1465), + [anon_sym_f32] = ACTIONS(1465), + [anon_sym_f64] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_str] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1463), + [anon_sym_DASH_EQ] = ACTIONS(1463), + [anon_sym_STAR_EQ] = ACTIONS(1463), + [anon_sym_SLASH_EQ] = ACTIONS(1463), + [anon_sym_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_CARET_EQ] = ACTIONS(1463), + [anon_sym_AMP_EQ] = ACTIONS(1463), + [anon_sym_PIPE_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_GT_EQ] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(1465), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_gen] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_impl] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(1465), + [anon_sym_loop] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [anon_sym_mod] = ACTIONS(1465), + [anon_sym_pub] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_unsafe] = ACTIONS(1465), + [anon_sym_use] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_extern] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_move] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1463), + [aux_sym_string_literal_token1] = ACTIONS(1463), + [sym_char_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_crate] = ACTIONS(1465), + [sym_metavariable] = ACTIONS(1463), + [sym__raw_string_literal_start] = ACTIONS(1463), + [sym_float_literal] = ACTIONS(1463), + }, + [STATE(402)] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [403] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_macro_rules_BANG] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1467), + [anon_sym_u8] = ACTIONS(1469), + [anon_sym_i8] = ACTIONS(1469), + [anon_sym_u16] = ACTIONS(1469), + [anon_sym_i16] = ACTIONS(1469), + [anon_sym_u32] = ACTIONS(1469), + [anon_sym_i32] = ACTIONS(1469), + [anon_sym_u64] = ACTIONS(1469), + [anon_sym_i64] = ACTIONS(1469), + [anon_sym_u128] = ACTIONS(1469), + [anon_sym_i128] = ACTIONS(1469), + [anon_sym_isize] = ACTIONS(1469), + [anon_sym_usize] = ACTIONS(1469), + [anon_sym_f32] = ACTIONS(1469), + [anon_sym_f64] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_str] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1469), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1469), + [anon_sym_PLUS_EQ] = ACTIONS(1467), + [anon_sym_DASH_EQ] = ACTIONS(1467), + [anon_sym_STAR_EQ] = ACTIONS(1467), + [anon_sym_SLASH_EQ] = ACTIONS(1467), + [anon_sym_PERCENT_EQ] = ACTIONS(1467), + [anon_sym_CARET_EQ] = ACTIONS(1467), + [anon_sym_AMP_EQ] = ACTIONS(1467), + [anon_sym_PIPE_EQ] = ACTIONS(1467), + [anon_sym_LT_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_GT_EQ] = ACTIONS(1467), + [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), + [anon_sym_COLON_COLON] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_as] = ACTIONS(1469), + [anon_sym_async] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_gen] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_impl] = ACTIONS(1469), + [anon_sym_let] = ACTIONS(1469), + [anon_sym_loop] = ACTIONS(1469), + [anon_sym_match] = ACTIONS(1469), + [anon_sym_mod] = ACTIONS(1469), + [anon_sym_pub] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_struct] = ACTIONS(1469), + [anon_sym_trait] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1469), + [anon_sym_unsafe] = ACTIONS(1469), + [anon_sym_use] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_move] = ACTIONS(1469), + [anon_sym_try] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1467), + [aux_sym_string_literal_token1] = ACTIONS(1467), + [sym_char_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1469), + [sym_super] = ACTIONS(1469), + [sym_crate] = ACTIONS(1469), + [sym_metavariable] = ACTIONS(1467), + [sym__raw_string_literal_start] = ACTIONS(1467), + [sym_float_literal] = ACTIONS(1467), + }, + [STATE(403)] = { [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [404] = { + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(404)] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), - }, - [405] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_macro_rules_BANG] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_async] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_impl] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_loop] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [anon_sym_mod] = ACTIONS(1477), + [anon_sym_pub] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(1477), + [anon_sym_trait] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_unsafe] = ACTIONS(1477), + [anon_sym_use] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_extern] = ACTIONS(1477), + [anon_sym_yield] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1477), + [anon_sym_try] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), + }, + [STATE(405)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3392), + [sym_variadic_parameter] = STATE(3392), + [sym_parameter] = STATE(3392), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3141), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [406] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [407] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_macro_rules_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1481), + [anon_sym_u8] = ACTIONS(1483), + [anon_sym_i8] = ACTIONS(1483), + [anon_sym_u16] = ACTIONS(1483), + [anon_sym_i16] = ACTIONS(1483), + [anon_sym_u32] = ACTIONS(1483), + [anon_sym_i32] = ACTIONS(1483), + [anon_sym_u64] = ACTIONS(1483), + [anon_sym_i64] = ACTIONS(1483), + [anon_sym_u128] = ACTIONS(1483), + [anon_sym_i128] = ACTIONS(1483), + [anon_sym_isize] = ACTIONS(1483), + [anon_sym_usize] = ACTIONS(1483), + [anon_sym_f32] = ACTIONS(1483), + [anon_sym_f64] = ACTIONS(1483), + [anon_sym_bool] = ACTIONS(1483), + [anon_sym_str] = ACTIONS(1483), + [anon_sym_char] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_PERCENT_EQ] = ACTIONS(1481), + [anon_sym_CARET_EQ] = ACTIONS(1481), + [anon_sym_AMP_EQ] = ACTIONS(1481), + [anon_sym_PIPE_EQ] = ACTIONS(1481), + [anon_sym_LT_LT_EQ] = ACTIONS(1481), + [anon_sym_GT_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_COLON_COLON] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_gen] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_impl] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_mod] = ACTIONS(1483), + [anon_sym_pub] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_static] = ACTIONS(1483), + [anon_sym_struct] = ACTIONS(1483), + [anon_sym_trait] = ACTIONS(1483), + [anon_sym_type] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [anon_sym_unsafe] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1483), + [anon_sym_move] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1483), + [sym_integer_literal] = ACTIONS(1481), + [aux_sym_string_literal_token1] = ACTIONS(1481), + [sym_char_literal] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_crate] = ACTIONS(1483), + [sym_metavariable] = ACTIONS(1481), + [sym__raw_string_literal_start] = ACTIONS(1481), + [sym_float_literal] = ACTIONS(1481), + }, + [STATE(407)] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [408] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_macro_rules_BANG] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1487), + [anon_sym_i8] = ACTIONS(1487), + [anon_sym_u16] = ACTIONS(1487), + [anon_sym_i16] = ACTIONS(1487), + [anon_sym_u32] = ACTIONS(1487), + [anon_sym_i32] = ACTIONS(1487), + [anon_sym_u64] = ACTIONS(1487), + [anon_sym_i64] = ACTIONS(1487), + [anon_sym_u128] = ACTIONS(1487), + [anon_sym_i128] = ACTIONS(1487), + [anon_sym_isize] = ACTIONS(1487), + [anon_sym_usize] = ACTIONS(1487), + [anon_sym_f32] = ACTIONS(1487), + [anon_sym_f64] = ACTIONS(1487), + [anon_sym_bool] = ACTIONS(1487), + [anon_sym_str] = ACTIONS(1487), + [anon_sym_char] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1485), + [anon_sym_BANG_EQ] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_gen] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_impl] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_loop] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [anon_sym_mod] = ACTIONS(1487), + [anon_sym_pub] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1487), + [anon_sym_struct] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_union] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1487), + [anon_sym_use] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_extern] = ACTIONS(1487), + [anon_sym_yield] = ACTIONS(1487), + [anon_sym_move] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1487), + [sym_integer_literal] = ACTIONS(1485), + [aux_sym_string_literal_token1] = ACTIONS(1485), + [sym_char_literal] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1487), + [sym_super] = ACTIONS(1487), + [sym_crate] = ACTIONS(1487), + [sym_metavariable] = ACTIONS(1485), + [sym__raw_string_literal_start] = ACTIONS(1485), + [sym_float_literal] = ACTIONS(1485), + }, + [STATE(408)] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [409] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_macro_rules_BANG] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_async] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_gen] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_impl] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1491), + [anon_sym_pub] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_trait] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_move] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym__raw_string_literal_start] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), + }, + [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [410] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_macro_rules_BANG] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_QMARK] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1493), + [anon_sym_DASH_EQ] = ACTIONS(1493), + [anon_sym_STAR_EQ] = ACTIONS(1493), + [anon_sym_SLASH_EQ] = ACTIONS(1493), + [anon_sym_PERCENT_EQ] = ACTIONS(1493), + [anon_sym_CARET_EQ] = ACTIONS(1493), + [anon_sym_AMP_EQ] = ACTIONS(1493), + [anon_sym_PIPE_EQ] = ACTIONS(1493), + [anon_sym_LT_LT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_gen] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_impl] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_loop] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_mod] = ACTIONS(1495), + [anon_sym_pub] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [anon_sym_trait] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsafe] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_move] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym__raw_string_literal_start] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), + }, + [STATE(410)] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [411] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_QMARK] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1497), + [anon_sym_DASH_EQ] = ACTIONS(1497), + [anon_sym_STAR_EQ] = ACTIONS(1497), + [anon_sym_SLASH_EQ] = ACTIONS(1497), + [anon_sym_PERCENT_EQ] = ACTIONS(1497), + [anon_sym_CARET_EQ] = ACTIONS(1497), + [anon_sym_AMP_EQ] = ACTIONS(1497), + [anon_sym_PIPE_EQ] = ACTIONS(1497), + [anon_sym_LT_LT_EQ] = ACTIONS(1497), + [anon_sym_GT_GT_EQ] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), + }, + [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [412] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1501), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1501), + [anon_sym_DASH_EQ] = ACTIONS(1501), + [anon_sym_STAR_EQ] = ACTIONS(1501), + [anon_sym_SLASH_EQ] = ACTIONS(1501), + [anon_sym_PERCENT_EQ] = ACTIONS(1501), + [anon_sym_CARET_EQ] = ACTIONS(1501), + [anon_sym_AMP_EQ] = ACTIONS(1501), + [anon_sym_PIPE_EQ] = ACTIONS(1501), + [anon_sym_LT_LT_EQ] = ACTIONS(1501), + [anon_sym_GT_GT_EQ] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), + }, + [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [413] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_macro_rules_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_unsafe] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_yield] = ACTIONS(1507), + [anon_sym_move] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), + }, + [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [414] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2883), - [sym_variadic_parameter] = STATE(2883), - [sym_parameter] = STATE(2883), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2555), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_macro_rules_BANG] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_async] = ACTIONS(1511), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1511), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1511), + [anon_sym_impl] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), + [anon_sym_loop] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mod] = ACTIONS(1511), + [anon_sym_pub] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_struct] = ACTIONS(1511), + [anon_sym_trait] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_unsafe] = ACTIONS(1511), + [anon_sym_use] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1511), + [anon_sym_extern] = ACTIONS(1511), + [anon_sym_yield] = ACTIONS(1511), + [anon_sym_move] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), + }, + [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [415] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3049), - [sym_variadic_parameter] = STATE(3049), - [sym_parameter] = STATE(3049), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2760), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_macro_rules_BANG] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_async] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1515), + [anon_sym_for] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_impl] = ACTIONS(1515), + [anon_sym_let] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1515), + [anon_sym_match] = ACTIONS(1515), + [anon_sym_mod] = ACTIONS(1515), + [anon_sym_pub] = ACTIONS(1515), + [anon_sym_return] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1515), + [anon_sym_struct] = ACTIONS(1515), + [anon_sym_trait] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_unsafe] = ACTIONS(1515), + [anon_sym_use] = ACTIONS(1515), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_extern] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(1515), + [anon_sym_move] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), + }, + [STATE(415)] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [416] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2879), - [sym_variadic_parameter] = STATE(2879), - [sym_parameter] = STATE(2879), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2554), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_macro_rules_BANG] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PERCENT_EQ] = ACTIONS(1517), + [anon_sym_CARET_EQ] = ACTIONS(1517), + [anon_sym_AMP_EQ] = ACTIONS(1517), + [anon_sym_PIPE_EQ] = ACTIONS(1517), + [anon_sym_LT_LT_EQ] = ACTIONS(1517), + [anon_sym_GT_GT_EQ] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1517), + [anon_sym_BANG_EQ] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_GT_EQ] = ACTIONS(1517), + [anon_sym_LT_EQ] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_gen] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_impl] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_mod] = ACTIONS(1519), + [anon_sym_pub] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_struct] = ACTIONS(1519), + [anon_sym_trait] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_unsafe] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_yield] = ACTIONS(1519), + [anon_sym_move] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym__raw_string_literal_start] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), + }, + [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [417] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2614), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_EQ] = ACTIONS(1521), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(1523), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_gen] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_yield] = ACTIONS(1523), + [anon_sym_move] = ACTIONS(1523), + [anon_sym_try] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), + }, + [STATE(417)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2920), + [sym_variadic_parameter] = STATE(2920), + [sym_parameter] = STATE(2920), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2792), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [418] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(418)] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [419] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_macro_rules_BANG] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_unsafe] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), + }, + [STATE(419)] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [420] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_macro_rules_BANG] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1533), + [anon_sym_i8] = ACTIONS(1533), + [anon_sym_u16] = ACTIONS(1533), + [anon_sym_i16] = ACTIONS(1533), + [anon_sym_u32] = ACTIONS(1533), + [anon_sym_i32] = ACTIONS(1533), + [anon_sym_u64] = ACTIONS(1533), + [anon_sym_i64] = ACTIONS(1533), + [anon_sym_u128] = ACTIONS(1533), + [anon_sym_i128] = ACTIONS(1533), + [anon_sym_isize] = ACTIONS(1533), + [anon_sym_usize] = ACTIONS(1533), + [anon_sym_f32] = ACTIONS(1533), + [anon_sym_f64] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_str] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1533), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_async] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_gen] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_impl] = ACTIONS(1533), + [anon_sym_let] = ACTIONS(1533), + [anon_sym_loop] = ACTIONS(1533), + [anon_sym_match] = ACTIONS(1533), + [anon_sym_mod] = ACTIONS(1533), + [anon_sym_pub] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_trait] = ACTIONS(1533), + [anon_sym_type] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_unsafe] = ACTIONS(1533), + [anon_sym_use] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1533), + [anon_sym_move] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1531), + [aux_sym_string_literal_token1] = ACTIONS(1531), + [sym_char_literal] = ACTIONS(1531), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1533), + [sym_super] = ACTIONS(1533), + [sym_crate] = ACTIONS(1533), + [sym_metavariable] = ACTIONS(1531), + [sym__raw_string_literal_start] = ACTIONS(1531), + [sym_float_literal] = ACTIONS(1531), + }, + [STATE(420)] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [421] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_macro_rules_BANG] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1537), + [anon_sym_i8] = ACTIONS(1537), + [anon_sym_u16] = ACTIONS(1537), + [anon_sym_i16] = ACTIONS(1537), + [anon_sym_u32] = ACTIONS(1537), + [anon_sym_i32] = ACTIONS(1537), + [anon_sym_u64] = ACTIONS(1537), + [anon_sym_i64] = ACTIONS(1537), + [anon_sym_u128] = ACTIONS(1537), + [anon_sym_i128] = ACTIONS(1537), + [anon_sym_isize] = ACTIONS(1537), + [anon_sym_usize] = ACTIONS(1537), + [anon_sym_f32] = ACTIONS(1537), + [anon_sym_f64] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_str] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_gen] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_impl] = ACTIONS(1537), + [anon_sym_let] = ACTIONS(1537), + [anon_sym_loop] = ACTIONS(1537), + [anon_sym_match] = ACTIONS(1537), + [anon_sym_mod] = ACTIONS(1537), + [anon_sym_pub] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_trait] = ACTIONS(1537), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_unsafe] = ACTIONS(1537), + [anon_sym_use] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_move] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1535), + [aux_sym_string_literal_token1] = ACTIONS(1535), + [sym_char_literal] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_crate] = ACTIONS(1537), + [sym_metavariable] = ACTIONS(1535), + [sym__raw_string_literal_start] = ACTIONS(1535), + [sym_float_literal] = ACTIONS(1535), + }, + [STATE(421)] = { [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [422] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_macro_rules_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1047), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [STATE(422)] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [423] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_macro_rules_BANG] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_async] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_impl] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_loop] = ACTIONS(1541), + [anon_sym_match] = ACTIONS(1541), + [anon_sym_mod] = ACTIONS(1541), + [anon_sym_pub] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_trait] = ACTIONS(1541), + [anon_sym_type] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_unsafe] = ACTIONS(1541), + [anon_sym_use] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), + }, + [STATE(423)] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [424] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_macro_rules_BANG] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_pub] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_trait] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_move] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), + }, + [STATE(424)] = { [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [425] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_macro_rules_BANG] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_gen] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_impl] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_loop] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1549), + [anon_sym_mod] = ACTIONS(1549), + [anon_sym_pub] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_struct] = ACTIONS(1549), + [anon_sym_trait] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_unsafe] = ACTIONS(1549), + [anon_sym_use] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_move] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1547), + [aux_sym_string_literal_token1] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_crate] = ACTIONS(1549), + [sym_metavariable] = ACTIONS(1547), + [sym__raw_string_literal_start] = ACTIONS(1547), + [sym_float_literal] = ACTIONS(1547), + }, + [STATE(425)] = { [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [426] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_macro_rules_BANG] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_async] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_gen] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_impl] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_mod] = ACTIONS(1553), + [anon_sym_pub] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_trait] = ACTIONS(1553), + [anon_sym_type] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_unsafe] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_move] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1551), + [aux_sym_string_literal_token1] = ACTIONS(1551), + [sym_char_literal] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_crate] = ACTIONS(1553), + [sym_metavariable] = ACTIONS(1551), + [sym__raw_string_literal_start] = ACTIONS(1551), + [sym_float_literal] = ACTIONS(1551), + }, + [STATE(426)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3045), + [sym_variadic_parameter] = STATE(3045), + [sym_parameter] = STATE(3045), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [427] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(427)] = { [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [428] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(1055), + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_macro_rules_BANG] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_AMP_AMP] = ACTIONS(1055), + [anon_sym_PIPE_PIPE] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_PLUS_EQ] = ACTIONS(1055), + [anon_sym_DASH_EQ] = ACTIONS(1055), + [anon_sym_STAR_EQ] = ACTIONS(1055), + [anon_sym_SLASH_EQ] = ACTIONS(1055), + [anon_sym_PERCENT_EQ] = ACTIONS(1055), + [anon_sym_CARET_EQ] = ACTIONS(1055), + [anon_sym_AMP_EQ] = ACTIONS(1055), + [anon_sym_PIPE_EQ] = ACTIONS(1055), + [anon_sym_LT_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_GT_EQ] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_gen] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_impl] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_loop] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_pub] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [anon_sym_extern] = ACTIONS(1053), + [anon_sym_yield] = ACTIONS(1053), + [anon_sym_move] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_crate] = ACTIONS(1053), + [sym_metavariable] = ACTIONS(1055), + [sym__raw_string_literal_start] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), + }, + [STATE(428)] = { [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [429] = { + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [STATE(429)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(2275), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2828), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_PLUS_EQ] = ACTIONS(1548), - [anon_sym_DASH_EQ] = ACTIONS(1548), - [anon_sym_STAR_EQ] = ACTIONS(1548), - [anon_sym_SLASH_EQ] = ACTIONS(1548), - [anon_sym_PERCENT_EQ] = ACTIONS(1548), - [anon_sym_CARET_EQ] = ACTIONS(1548), - [anon_sym_AMP_EQ] = ACTIONS(1548), - [anon_sym_PIPE_EQ] = ACTIONS(1548), - [anon_sym_LT_LT_EQ] = ACTIONS(1548), - [anon_sym_GT_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), - [anon_sym_COMMA] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_as] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_else] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1548), - [sym__raw_string_literal_start] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), - }, - [430] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(430)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [sym_identifier] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_EQ_GT] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_PLUS_EQ] = ACTIONS(1548), - [anon_sym_DASH_EQ] = ACTIONS(1548), - [anon_sym_STAR_EQ] = ACTIONS(1548), - [anon_sym_SLASH_EQ] = ACTIONS(1548), - [anon_sym_PERCENT_EQ] = ACTIONS(1548), - [anon_sym_CARET_EQ] = ACTIONS(1548), - [anon_sym_AMP_EQ] = ACTIONS(1548), - [anon_sym_PIPE_EQ] = ACTIONS(1548), - [anon_sym_LT_LT_EQ] = ACTIONS(1548), - [anon_sym_GT_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_as] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1548), - [sym__raw_string_literal_start] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), - }, - [431] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(431)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [sym_identifier] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_u8] = ACTIONS(1550), - [anon_sym_i8] = ACTIONS(1550), - [anon_sym_u16] = ACTIONS(1550), - [anon_sym_i16] = ACTIONS(1550), - [anon_sym_u32] = ACTIONS(1550), - [anon_sym_i32] = ACTIONS(1550), - [anon_sym_u64] = ACTIONS(1550), - [anon_sym_i64] = ACTIONS(1550), - [anon_sym_u128] = ACTIONS(1550), - [anon_sym_i128] = ACTIONS(1550), - [anon_sym_isize] = ACTIONS(1550), - [anon_sym_usize] = ACTIONS(1550), - [anon_sym_f32] = ACTIONS(1550), - [anon_sym_f64] = ACTIONS(1550), - [anon_sym_bool] = ACTIONS(1550), - [anon_sym_str] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_DASH_GT] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_move] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1552), - [sym__raw_string_literal_start] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), - }, - [432] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1203), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(432)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [sym_identifier] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_DASH_GT] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1554), - [anon_sym_move] = ACTIONS(1554), - [anon_sym_try] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1556), - [sym__raw_string_literal_start] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), - }, - [433] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1203), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(433)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [434] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1587), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(434)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [435] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(435)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [436] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(436)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [437] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1591), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(437)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [438] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1595), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(438)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(2275), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [439] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(439)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(2275), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [440] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(440)] = { [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [441] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_identifier] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_RBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_COLON] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1599), + [anon_sym_GT_GT] = ACTIONS(1599), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), + [anon_sym_COMMA] = ACTIONS(1601), + [anon_sym_COLON_COLON] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_gen] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1599), + [anon_sym_union] = ACTIONS(1599), + [anon_sym_unsafe] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_yield] = ACTIONS(1599), + [anon_sym_move] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [sym_integer_literal] = ACTIONS(1601), + [aux_sym_string_literal_token1] = ACTIONS(1601), + [sym_char_literal] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1601), + [sym_float_literal] = ACTIONS(1601), + }, + [STATE(441)] = { [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [442] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_identifier] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_EQ_GT] = ACTIONS(1601), + [anon_sym_COLON] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1599), + [anon_sym_GT_GT] = ACTIONS(1599), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), + [anon_sym_COLON_COLON] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_gen] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1599), + [anon_sym_union] = ACTIONS(1599), + [anon_sym_unsafe] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_yield] = ACTIONS(1599), + [anon_sym_move] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [sym_integer_literal] = ACTIONS(1601), + [aux_sym_string_literal_token1] = ACTIONS(1601), + [sym_char_literal] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1601), + [sym_float_literal] = ACTIONS(1601), + }, + [STATE(442)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2213), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [443] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2300), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2301), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2426), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2426), - [sym__literal] = STATE(2426), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_identifier] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym__] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_DASH_GT] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_async] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_gen] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1603), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_move] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1603), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1605), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1603), + [sym_super] = ACTIONS(1603), + [sym_crate] = ACTIONS(1603), + [sym_metavariable] = ACTIONS(1605), + [sym__raw_string_literal_start] = ACTIONS(1605), + [sym_float_literal] = ACTIONS(1605), + }, + [STATE(443)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2230), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [444] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2345), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2346), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2425), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2425), - [sym__literal] = STATE(2425), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_identifier] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_u8] = ACTIONS(1607), + [anon_sym_i8] = ACTIONS(1607), + [anon_sym_u16] = ACTIONS(1607), + [anon_sym_i16] = ACTIONS(1607), + [anon_sym_u32] = ACTIONS(1607), + [anon_sym_i32] = ACTIONS(1607), + [anon_sym_u64] = ACTIONS(1607), + [anon_sym_i64] = ACTIONS(1607), + [anon_sym_u128] = ACTIONS(1607), + [anon_sym_i128] = ACTIONS(1607), + [anon_sym_isize] = ACTIONS(1607), + [anon_sym_usize] = ACTIONS(1607), + [anon_sym_f32] = ACTIONS(1607), + [anon_sym_f64] = ACTIONS(1607), + [anon_sym_bool] = ACTIONS(1607), + [anon_sym_str] = ACTIONS(1607), + [anon_sym_char] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1609), + [anon_sym__] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_gen] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsafe] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_move] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1607), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1609), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), + }, + [STATE(444)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [445] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2352), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2353), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2441), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2441), - [sym__literal] = STATE(2441), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(445)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), - }, - [446] = { - [sym_else_clause] = STATE(455), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(446)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [sym_identifier] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1194), - [anon_sym_DASH_EQ] = ACTIONS(1194), - [anon_sym_STAR_EQ] = ACTIONS(1194), - [anon_sym_SLASH_EQ] = ACTIONS(1194), - [anon_sym_PERCENT_EQ] = ACTIONS(1194), - [anon_sym_CARET_EQ] = ACTIONS(1194), - [anon_sym_AMP_EQ] = ACTIONS(1194), - [anon_sym_PIPE_EQ] = ACTIONS(1194), - [anon_sym_LT_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym__] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_ref] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1602), - [sym_mutable_specifier] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym__raw_string_literal_start] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), - }, - [447] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(447)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [sym_identifier] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym__] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_ref] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [sym_mutable_specifier] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, - [448] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(448)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [sym_identifier] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym__] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_ref] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [sym_mutable_specifier] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), - }, - [449] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(449)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [sym_identifier] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym__] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_ref] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [sym_mutable_specifier] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - }, - [450] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(450)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [sym_identifier] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym__] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_ref] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [sym_mutable_specifier] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, - [451] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(451)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym_identifier] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_ref] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [sym_mutable_specifier] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), - }, - [452] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(452)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [sym_identifier] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_ref] = ACTIONS(1364), - [sym_mutable_specifier] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym__raw_string_literal_start] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), - }, - [453] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(453)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [sym_identifier] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_ref] = ACTIONS(1430), - [sym_mutable_specifier] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), - }, - [454] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(454)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_ref] = ACTIONS(1372), - [sym_mutable_specifier] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), - }, - [455] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(455)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1388), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_ref] = ACTIONS(1388), - [sym_mutable_specifier] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), - }, - [456] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3546), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(456)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2445), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2445), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2534), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2534), + [sym__literal] = STATE(2534), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(478), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [457] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(457)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_ref] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), - }, - [458] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(458)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2470), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2470), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2546), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2546), + [sym__literal] = STATE(2546), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u128] = ACTIONS(1648), - [anon_sym_i128] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_str] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1648), - [anon_sym_ref] = ACTIONS(1648), - [sym_mutable_specifier] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [aux_sym_string_literal_token1] = ACTIONS(1650), - [sym_char_literal] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1648), - [sym_super] = ACTIONS(1648), - [sym_crate] = ACTIONS(1648), - [sym_metavariable] = ACTIONS(1650), - [sym__raw_string_literal_start] = ACTIONS(1650), - [sym_float_literal] = ACTIONS(1650), - }, - [459] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3568), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(459)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2411), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2615), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2615), + [sym__literal] = STATE(2615), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_match_block_repeat1] = STATE(475), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [460] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(460)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2437), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2511), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2511), + [sym__literal] = STATE(2511), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_STAR_EQ] = ACTIONS(1398), - [anon_sym_SLASH_EQ] = ACTIONS(1398), - [anon_sym_PERCENT_EQ] = ACTIONS(1398), - [anon_sym_CARET_EQ] = ACTIONS(1398), - [anon_sym_AMP_EQ] = ACTIONS(1398), - [anon_sym_PIPE_EQ] = ACTIONS(1398), - [anon_sym_LT_LT_EQ] = ACTIONS(1398), - [anon_sym_GT_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1400), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_ref] = ACTIONS(1400), - [sym_mutable_specifier] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym__raw_string_literal_start] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), - }, - [461] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3358), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1643), + }, + [STATE(461)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3680), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(477), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [462] = { + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(462)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3672), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_ref] = ACTIONS(1368), - [sym_mutable_specifier] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), - }, - [463] = { + [aux_sym_match_block_repeat1] = STATE(469), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(463)] = { + [sym_else_clause] = STATE(489), [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym__] = ACTIONS(1404), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_ref] = ACTIONS(1404), - [sym_mutable_specifier] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym__raw_string_literal_start] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), - }, - [464] = { + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_QMARK] = ACTIONS(1405), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1405), + [anon_sym_LT_LT] = ACTIONS(1407), + [anon_sym_GT_GT] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1405), + [anon_sym_DASH_EQ] = ACTIONS(1405), + [anon_sym_STAR_EQ] = ACTIONS(1405), + [anon_sym_SLASH_EQ] = ACTIONS(1405), + [anon_sym_PERCENT_EQ] = ACTIONS(1405), + [anon_sym_CARET_EQ] = ACTIONS(1405), + [anon_sym_AMP_EQ] = ACTIONS(1405), + [anon_sym_PIPE_EQ] = ACTIONS(1405), + [anon_sym_LT_LT_EQ] = ACTIONS(1405), + [anon_sym_GT_GT_EQ] = ACTIONS(1405), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1405), + [anon_sym_BANG_EQ] = ACTIONS(1405), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym__] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_gen] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_ref] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1719), + [sym_mutable_specifier] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym__raw_string_literal_start] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), + }, + [STATE(464)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3776), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1656), - [anon_sym_ref] = ACTIONS(1656), - [sym_mutable_specifier] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [aux_sym_string_literal_token1] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_crate] = ACTIONS(1656), - [sym_metavariable] = ACTIONS(1658), - [sym__raw_string_literal_start] = ACTIONS(1658), - [sym_float_literal] = ACTIONS(1658), - }, - [465] = { + [aux_sym_match_block_repeat1] = STATE(467), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(465)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3668), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1384), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_ref] = ACTIONS(1384), - [sym_mutable_specifier] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), - }, - [466] = { + [aux_sym_match_block_repeat1] = STATE(466), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(466)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3612), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_ref] = ACTIONS(1422), - [sym_mutable_specifier] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), - }, - [467] = { + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(467)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3498), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1452), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_ref] = ACTIONS(1452), - [sym_mutable_specifier] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), - }, - [468] = { + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(468)] = { [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_ref] = ACTIONS(1380), - [sym_mutable_specifier] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), - }, - [469] = { + [sym_identifier] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_ref] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1451), + [sym_mutable_specifier] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(469)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3655), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [sym_identifier] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_ref] = ACTIONS(1352), - [sym_mutable_specifier] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), - }, - [470] = { + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(470)] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1392), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_ref] = ACTIONS(1392), - [sym_mutable_specifier] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), - }, - [471] = { + [sym_identifier] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_ref] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1443), + [sym_mutable_specifier] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(471)] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1396), - [anon_sym_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_ref] = ACTIONS(1396), - [sym_mutable_specifier] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym__raw_string_literal_start] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), - }, - [472] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3426), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym__] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [sym_mutable_specifier] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), + }, + [STATE(472)] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(476), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [473] = { + [sym_identifier] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym__] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_ref] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [sym_mutable_specifier] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), + }, + [STATE(473)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3528), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_ref] = ACTIONS(1376), - [sym_mutable_specifier] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), - }, - [474] = { + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(474)] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_ref] = ACTIONS(1426), - [sym_mutable_specifier] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), - }, - [475] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3363), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_QMARK] = ACTIONS(1445), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym__] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_ref] = ACTIONS(1447), + [anon_sym_else] = ACTIONS(1447), + [sym_mutable_specifier] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), + }, + [STATE(475)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3145), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2655), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [476] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3477), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1737), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(476)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [477] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3364), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(477)] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [478] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3405), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_ref] = ACTIONS(1473), + [sym_mutable_specifier] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(478)] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [479] = { + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym__] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_ref] = ACTIONS(1545), + [sym_mutable_specifier] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), + }, + [STATE(479)] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_identifier] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_macro_rules_BANG] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_RBRACE] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_u8] = ACTIONS(1664), - [anon_sym_i8] = ACTIONS(1664), - [anon_sym_u16] = ACTIONS(1664), - [anon_sym_i16] = ACTIONS(1664), - [anon_sym_u32] = ACTIONS(1664), - [anon_sym_i32] = ACTIONS(1664), - [anon_sym_u64] = ACTIONS(1664), - [anon_sym_i64] = ACTIONS(1664), - [anon_sym_u128] = ACTIONS(1664), - [anon_sym_i128] = ACTIONS(1664), - [anon_sym_isize] = ACTIONS(1664), - [anon_sym_usize] = ACTIONS(1664), - [anon_sym_f32] = ACTIONS(1664), - [anon_sym_f64] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_str] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_PIPE] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1662), - [anon_sym_DOT_DOT] = ACTIONS(1662), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_async] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_enum] = ACTIONS(1664), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_impl] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_pub] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_struct] = ACTIONS(1664), - [anon_sym_trait] = ACTIONS(1664), - [anon_sym_type] = ACTIONS(1664), - [anon_sym_union] = ACTIONS(1664), - [anon_sym_unsafe] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_yield] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1664), - [anon_sym_try] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1662), - [aux_sym_string_literal_token1] = ACTIONS(1662), - [sym_char_literal] = ACTIONS(1662), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1664), - [sym_super] = ACTIONS(1664), - [sym_crate] = ACTIONS(1664), - [sym_metavariable] = ACTIONS(1662), - [sym__raw_string_literal_start] = ACTIONS(1662), - [sym_float_literal] = ACTIONS(1662), - }, - [480] = { + [sym_identifier] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1753), + [anon_sym_i8] = ACTIONS(1753), + [anon_sym_u16] = ACTIONS(1753), + [anon_sym_i16] = ACTIONS(1753), + [anon_sym_u32] = ACTIONS(1753), + [anon_sym_i32] = ACTIONS(1753), + [anon_sym_u64] = ACTIONS(1753), + [anon_sym_i64] = ACTIONS(1753), + [anon_sym_u128] = ACTIONS(1753), + [anon_sym_i128] = ACTIONS(1753), + [anon_sym_isize] = ACTIONS(1753), + [anon_sym_usize] = ACTIONS(1753), + [anon_sym_f32] = ACTIONS(1753), + [anon_sym_f64] = ACTIONS(1753), + [anon_sym_bool] = ACTIONS(1753), + [anon_sym_str] = ACTIONS(1753), + [anon_sym_char] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym__] = ACTIONS(1753), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_gen] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_ref] = ACTIONS(1753), + [sym_mutable_specifier] = ACTIONS(1753), + [sym_integer_literal] = ACTIONS(1755), + [aux_sym_string_literal_token1] = ACTIONS(1755), + [sym_char_literal] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1753), + [anon_sym_false] = ACTIONS(1753), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_crate] = ACTIONS(1753), + [sym_metavariable] = ACTIONS(1755), + [sym__raw_string_literal_start] = ACTIONS(1755), + [sym_float_literal] = ACTIONS(1755), + }, + [STATE(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_macro_rules_BANG] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_u8] = ACTIONS(1668), - [anon_sym_i8] = ACTIONS(1668), - [anon_sym_u16] = ACTIONS(1668), - [anon_sym_i16] = ACTIONS(1668), - [anon_sym_u32] = ACTIONS(1668), - [anon_sym_i32] = ACTIONS(1668), - [anon_sym_u64] = ACTIONS(1668), - [anon_sym_i64] = ACTIONS(1668), - [anon_sym_u128] = ACTIONS(1668), - [anon_sym_i128] = ACTIONS(1668), - [anon_sym_isize] = ACTIONS(1668), - [anon_sym_usize] = ACTIONS(1668), - [anon_sym_f32] = ACTIONS(1668), - [anon_sym_f64] = ACTIONS(1668), - [anon_sym_bool] = ACTIONS(1668), - [anon_sym_str] = ACTIONS(1668), - [anon_sym_char] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), - [anon_sym_PIPE] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_COLON_COLON] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_enum] = ACTIONS(1668), - [anon_sym_fn] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_impl] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_pub] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1668), - [anon_sym_trait] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_unsafe] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_yield] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(1666), - [aux_sym_string_literal_token1] = ACTIONS(1666), - [sym_char_literal] = ACTIONS(1666), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1668), - [sym_super] = ACTIONS(1668), - [sym_crate] = ACTIONS(1668), - [sym_metavariable] = ACTIONS(1666), - [sym__raw_string_literal_start] = ACTIONS(1666), - [sym_float_literal] = ACTIONS(1666), - }, - [481] = { + [sym_identifier] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_u8] = ACTIONS(1465), + [anon_sym_i8] = ACTIONS(1465), + [anon_sym_u16] = ACTIONS(1465), + [anon_sym_i16] = ACTIONS(1465), + [anon_sym_u32] = ACTIONS(1465), + [anon_sym_i32] = ACTIONS(1465), + [anon_sym_u64] = ACTIONS(1465), + [anon_sym_i64] = ACTIONS(1465), + [anon_sym_u128] = ACTIONS(1465), + [anon_sym_i128] = ACTIONS(1465), + [anon_sym_isize] = ACTIONS(1465), + [anon_sym_usize] = ACTIONS(1465), + [anon_sym_f32] = ACTIONS(1465), + [anon_sym_f64] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_str] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1463), + [anon_sym_DASH_EQ] = ACTIONS(1463), + [anon_sym_STAR_EQ] = ACTIONS(1463), + [anon_sym_SLASH_EQ] = ACTIONS(1463), + [anon_sym_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_CARET_EQ] = ACTIONS(1463), + [anon_sym_AMP_EQ] = ACTIONS(1463), + [anon_sym_PIPE_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_GT_EQ] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym__] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_gen] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_ref] = ACTIONS(1465), + [sym_mutable_specifier] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1463), + [aux_sym_string_literal_token1] = ACTIONS(1463), + [sym_char_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_crate] = ACTIONS(1465), + [sym_metavariable] = ACTIONS(1463), + [sym__raw_string_literal_start] = ACTIONS(1463), + [sym_float_literal] = ACTIONS(1463), + }, + [STATE(481)] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_macro_rules_BANG] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_u8] = ACTIONS(1672), - [anon_sym_i8] = ACTIONS(1672), - [anon_sym_u16] = ACTIONS(1672), - [anon_sym_i16] = ACTIONS(1672), - [anon_sym_u32] = ACTIONS(1672), - [anon_sym_i32] = ACTIONS(1672), - [anon_sym_u64] = ACTIONS(1672), - [anon_sym_i64] = ACTIONS(1672), - [anon_sym_u128] = ACTIONS(1672), - [anon_sym_i128] = ACTIONS(1672), - [anon_sym_isize] = ACTIONS(1672), - [anon_sym_usize] = ACTIONS(1672), - [anon_sym_f32] = ACTIONS(1672), - [anon_sym_f64] = ACTIONS(1672), - [anon_sym_bool] = ACTIONS(1672), - [anon_sym_str] = ACTIONS(1672), - [anon_sym_char] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_COLON_COLON] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [anon_sym_fn] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_impl] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_loop] = ACTIONS(1672), - [anon_sym_match] = ACTIONS(1672), - [anon_sym_mod] = ACTIONS(1672), - [anon_sym_pub] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_trait] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(1672), - [anon_sym_unsafe] = ACTIONS(1672), - [anon_sym_use] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [sym_integer_literal] = ACTIONS(1670), - [aux_sym_string_literal_token1] = ACTIONS(1670), - [sym_char_literal] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_crate] = ACTIONS(1672), - [sym_metavariable] = ACTIONS(1670), - [sym__raw_string_literal_start] = ACTIONS(1670), - [sym_float_literal] = ACTIONS(1670), - }, - [482] = { + [sym_identifier] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1757), + [anon_sym_i8] = ACTIONS(1757), + [anon_sym_u16] = ACTIONS(1757), + [anon_sym_i16] = ACTIONS(1757), + [anon_sym_u32] = ACTIONS(1757), + [anon_sym_i32] = ACTIONS(1757), + [anon_sym_u64] = ACTIONS(1757), + [anon_sym_i64] = ACTIONS(1757), + [anon_sym_u128] = ACTIONS(1757), + [anon_sym_i128] = ACTIONS(1757), + [anon_sym_isize] = ACTIONS(1757), + [anon_sym_usize] = ACTIONS(1757), + [anon_sym_f32] = ACTIONS(1757), + [anon_sym_f64] = ACTIONS(1757), + [anon_sym_bool] = ACTIONS(1757), + [anon_sym_str] = ACTIONS(1757), + [anon_sym_char] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym__] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_gen] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1757), + [sym_mutable_specifier] = ACTIONS(1757), + [sym_integer_literal] = ACTIONS(1759), + [aux_sym_string_literal_token1] = ACTIONS(1759), + [sym_char_literal] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1757), + [sym_super] = ACTIONS(1757), + [sym_crate] = ACTIONS(1757), + [sym_metavariable] = ACTIONS(1759), + [sym__raw_string_literal_start] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), + }, + [STATE(482)] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_macro_rules_BANG] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_u8] = ACTIONS(1676), - [anon_sym_i8] = ACTIONS(1676), - [anon_sym_u16] = ACTIONS(1676), - [anon_sym_i16] = ACTIONS(1676), - [anon_sym_u32] = ACTIONS(1676), - [anon_sym_i32] = ACTIONS(1676), - [anon_sym_u64] = ACTIONS(1676), - [anon_sym_i64] = ACTIONS(1676), - [anon_sym_u128] = ACTIONS(1676), - [anon_sym_i128] = ACTIONS(1676), - [anon_sym_isize] = ACTIONS(1676), - [anon_sym_usize] = ACTIONS(1676), - [anon_sym_f32] = ACTIONS(1676), - [anon_sym_f64] = ACTIONS(1676), - [anon_sym_bool] = ACTIONS(1676), - [anon_sym_str] = ACTIONS(1676), - [anon_sym_char] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1674), - [anon_sym_COLON_COLON] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [anon_sym_fn] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_impl] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1676), - [anon_sym_match] = ACTIONS(1676), - [anon_sym_mod] = ACTIONS(1676), - [anon_sym_pub] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_struct] = ACTIONS(1676), - [anon_sym_trait] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_union] = ACTIONS(1676), - [anon_sym_unsafe] = ACTIONS(1676), - [anon_sym_use] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1674), - [aux_sym_string_literal_token1] = ACTIONS(1674), - [sym_char_literal] = ACTIONS(1674), - [anon_sym_true] = ACTIONS(1676), - [anon_sym_false] = ACTIONS(1676), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_crate] = ACTIONS(1676), - [sym_metavariable] = ACTIONS(1674), - [sym__raw_string_literal_start] = ACTIONS(1674), - [sym_float_literal] = ACTIONS(1674), - }, - [483] = { + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1501), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1501), + [anon_sym_DASH_EQ] = ACTIONS(1501), + [anon_sym_STAR_EQ] = ACTIONS(1501), + [anon_sym_SLASH_EQ] = ACTIONS(1501), + [anon_sym_PERCENT_EQ] = ACTIONS(1501), + [anon_sym_CARET_EQ] = ACTIONS(1501), + [anon_sym_AMP_EQ] = ACTIONS(1501), + [anon_sym_PIPE_EQ] = ACTIONS(1501), + [anon_sym_LT_LT_EQ] = ACTIONS(1501), + [anon_sym_GT_GT_EQ] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym__] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1503), + [sym_mutable_specifier] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), + }, + [STATE(483)] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_macro_rules_BANG] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_u8] = ACTIONS(1680), - [anon_sym_i8] = ACTIONS(1680), - [anon_sym_u16] = ACTIONS(1680), - [anon_sym_i16] = ACTIONS(1680), - [anon_sym_u32] = ACTIONS(1680), - [anon_sym_i32] = ACTIONS(1680), - [anon_sym_u64] = ACTIONS(1680), - [anon_sym_i64] = ACTIONS(1680), - [anon_sym_u128] = ACTIONS(1680), - [anon_sym_i128] = ACTIONS(1680), - [anon_sym_isize] = ACTIONS(1680), - [anon_sym_usize] = ACTIONS(1680), - [anon_sym_f32] = ACTIONS(1680), - [anon_sym_f64] = ACTIONS(1680), - [anon_sym_bool] = ACTIONS(1680), - [anon_sym_str] = ACTIONS(1680), - [anon_sym_char] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_DOT_DOT] = ACTIONS(1678), - [anon_sym_COLON_COLON] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(1678), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_async] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_enum] = ACTIONS(1680), - [anon_sym_fn] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_impl] = ACTIONS(1680), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_loop] = ACTIONS(1680), - [anon_sym_match] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1680), - [anon_sym_pub] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1680), - [anon_sym_struct] = ACTIONS(1680), - [anon_sym_trait] = ACTIONS(1680), - [anon_sym_type] = ACTIONS(1680), - [anon_sym_union] = ACTIONS(1680), - [anon_sym_unsafe] = ACTIONS(1680), - [anon_sym_use] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_yield] = ACTIONS(1680), - [anon_sym_move] = ACTIONS(1680), - [anon_sym_try] = ACTIONS(1680), - [sym_integer_literal] = ACTIONS(1678), - [aux_sym_string_literal_token1] = ACTIONS(1678), - [sym_char_literal] = ACTIONS(1678), - [anon_sym_true] = ACTIONS(1680), - [anon_sym_false] = ACTIONS(1680), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1680), - [sym_super] = ACTIONS(1680), - [sym_crate] = ACTIONS(1680), - [sym_metavariable] = ACTIONS(1678), - [sym__raw_string_literal_start] = ACTIONS(1678), - [sym_float_literal] = ACTIONS(1678), - }, - [484] = { + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym__] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_gen] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_ref] = ACTIONS(1491), + [sym_mutable_specifier] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym__raw_string_literal_start] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), + }, + [STATE(484)] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_macro_rules_BANG] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1682), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1682), - [anon_sym_COLON_COLON] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_async] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_fn] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_impl] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1684), - [anon_sym_loop] = ACTIONS(1684), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_mod] = ACTIONS(1684), - [anon_sym_pub] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_trait] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_unsafe] = ACTIONS(1684), - [anon_sym_use] = ACTIONS(1684), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_yield] = ACTIONS(1684), - [anon_sym_move] = ACTIONS(1684), - [anon_sym_try] = ACTIONS(1684), - [sym_integer_literal] = ACTIONS(1682), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1684), - [sym_super] = ACTIONS(1684), - [sym_crate] = ACTIONS(1684), - [sym_metavariable] = ACTIONS(1682), - [sym__raw_string_literal_start] = ACTIONS(1682), - [sym_float_literal] = ACTIONS(1682), - }, - [485] = { + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_QMARK] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1493), + [anon_sym_DASH_EQ] = ACTIONS(1493), + [anon_sym_STAR_EQ] = ACTIONS(1493), + [anon_sym_SLASH_EQ] = ACTIONS(1493), + [anon_sym_PERCENT_EQ] = ACTIONS(1493), + [anon_sym_CARET_EQ] = ACTIONS(1493), + [anon_sym_AMP_EQ] = ACTIONS(1493), + [anon_sym_PIPE_EQ] = ACTIONS(1493), + [anon_sym_LT_LT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym__] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_gen] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1495), + [sym_mutable_specifier] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym__raw_string_literal_start] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), + }, + [STATE(485)] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_macro_rules_BANG] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_u8] = ACTIONS(1688), - [anon_sym_i8] = ACTIONS(1688), - [anon_sym_u16] = ACTIONS(1688), - [anon_sym_i16] = ACTIONS(1688), - [anon_sym_u32] = ACTIONS(1688), - [anon_sym_i32] = ACTIONS(1688), - [anon_sym_u64] = ACTIONS(1688), - [anon_sym_i64] = ACTIONS(1688), - [anon_sym_u128] = ACTIONS(1688), - [anon_sym_i128] = ACTIONS(1688), - [anon_sym_isize] = ACTIONS(1688), - [anon_sym_usize] = ACTIONS(1688), - [anon_sym_f32] = ACTIONS(1688), - [anon_sym_f64] = ACTIONS(1688), - [anon_sym_bool] = ACTIONS(1688), - [anon_sym_str] = ACTIONS(1688), - [anon_sym_char] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_async] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1688), - [anon_sym_continue] = ACTIONS(1688), - [anon_sym_default] = ACTIONS(1688), - [anon_sym_enum] = ACTIONS(1688), - [anon_sym_fn] = ACTIONS(1688), - [anon_sym_for] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1688), - [anon_sym_impl] = ACTIONS(1688), - [anon_sym_let] = ACTIONS(1688), - [anon_sym_loop] = ACTIONS(1688), - [anon_sym_match] = ACTIONS(1688), - [anon_sym_mod] = ACTIONS(1688), - [anon_sym_pub] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_static] = ACTIONS(1688), - [anon_sym_struct] = ACTIONS(1688), - [anon_sym_trait] = ACTIONS(1688), - [anon_sym_type] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1688), - [anon_sym_unsafe] = ACTIONS(1688), - [anon_sym_use] = ACTIONS(1688), - [anon_sym_while] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1688), - [anon_sym_yield] = ACTIONS(1688), - [anon_sym_move] = ACTIONS(1688), - [anon_sym_try] = ACTIONS(1688), - [sym_integer_literal] = ACTIONS(1686), - [aux_sym_string_literal_token1] = ACTIONS(1686), - [sym_char_literal] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1688), - [sym_super] = ACTIONS(1688), - [sym_crate] = ACTIONS(1688), - [sym_metavariable] = ACTIONS(1686), - [sym__raw_string_literal_start] = ACTIONS(1686), - [sym_float_literal] = ACTIONS(1686), - }, - [486] = { + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1477), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_ref] = ACTIONS(1477), + [sym_mutable_specifier] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), + }, + [STATE(486)] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_macro_rules_BANG] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_u8] = ACTIONS(1692), - [anon_sym_i8] = ACTIONS(1692), - [anon_sym_u16] = ACTIONS(1692), - [anon_sym_i16] = ACTIONS(1692), - [anon_sym_u32] = ACTIONS(1692), - [anon_sym_i32] = ACTIONS(1692), - [anon_sym_u64] = ACTIONS(1692), - [anon_sym_i64] = ACTIONS(1692), - [anon_sym_u128] = ACTIONS(1692), - [anon_sym_i128] = ACTIONS(1692), - [anon_sym_isize] = ACTIONS(1692), - [anon_sym_usize] = ACTIONS(1692), - [anon_sym_f32] = ACTIONS(1692), - [anon_sym_f64] = ACTIONS(1692), - [anon_sym_bool] = ACTIONS(1692), - [anon_sym_str] = ACTIONS(1692), - [anon_sym_char] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_COLON_COLON] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [anon_sym_fn] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_impl] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_loop] = ACTIONS(1692), - [anon_sym_match] = ACTIONS(1692), - [anon_sym_mod] = ACTIONS(1692), - [anon_sym_pub] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_trait] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsafe] = ACTIONS(1692), - [anon_sym_use] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_move] = ACTIONS(1692), - [anon_sym_try] = ACTIONS(1692), - [sym_integer_literal] = ACTIONS(1690), - [aux_sym_string_literal_token1] = ACTIONS(1690), - [sym_char_literal] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_crate] = ACTIONS(1692), - [sym_metavariable] = ACTIONS(1690), - [sym__raw_string_literal_start] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), - }, - [487] = { + [sym_identifier] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym__] = ACTIONS(1511), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1511), + [sym_mutable_specifier] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), + }, + [STATE(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1694), - [sym_identifier] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_macro_rules_BANG] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_u8] = ACTIONS(1696), - [anon_sym_i8] = ACTIONS(1696), - [anon_sym_u16] = ACTIONS(1696), - [anon_sym_i16] = ACTIONS(1696), - [anon_sym_u32] = ACTIONS(1696), - [anon_sym_i32] = ACTIONS(1696), - [anon_sym_u64] = ACTIONS(1696), - [anon_sym_i64] = ACTIONS(1696), - [anon_sym_u128] = ACTIONS(1696), - [anon_sym_i128] = ACTIONS(1696), - [anon_sym_isize] = ACTIONS(1696), - [anon_sym_usize] = ACTIONS(1696), - [anon_sym_f32] = ACTIONS(1696), - [anon_sym_f64] = ACTIONS(1696), - [anon_sym_bool] = ACTIONS(1696), - [anon_sym_str] = ACTIONS(1696), - [anon_sym_char] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1696), - [anon_sym_async] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_fn] = ACTIONS(1696), - [anon_sym_for] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_impl] = ACTIONS(1696), - [anon_sym_let] = ACTIONS(1696), - [anon_sym_loop] = ACTIONS(1696), - [anon_sym_match] = ACTIONS(1696), - [anon_sym_mod] = ACTIONS(1696), - [anon_sym_pub] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_trait] = ACTIONS(1696), - [anon_sym_type] = ACTIONS(1696), - [anon_sym_union] = ACTIONS(1696), - [anon_sym_unsafe] = ACTIONS(1696), - [anon_sym_use] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym_yield] = ACTIONS(1696), - [anon_sym_move] = ACTIONS(1696), - [anon_sym_try] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [aux_sym_string_literal_token1] = ACTIONS(1694), - [sym_char_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1696), - [sym_super] = ACTIONS(1696), - [sym_crate] = ACTIONS(1696), - [sym_metavariable] = ACTIONS(1694), - [sym__raw_string_literal_start] = ACTIONS(1694), - [sym_float_literal] = ACTIONS(1694), - }, - [488] = { + [sym_identifier] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym__] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_ref] = ACTIONS(1515), + [sym_mutable_specifier] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), + }, + [STATE(488)] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_identifier] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_macro_rules_BANG] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_u8] = ACTIONS(1700), - [anon_sym_i8] = ACTIONS(1700), - [anon_sym_u16] = ACTIONS(1700), - [anon_sym_i16] = ACTIONS(1700), - [anon_sym_u32] = ACTIONS(1700), - [anon_sym_i32] = ACTIONS(1700), - [anon_sym_u64] = ACTIONS(1700), - [anon_sym_i64] = ACTIONS(1700), - [anon_sym_u128] = ACTIONS(1700), - [anon_sym_i128] = ACTIONS(1700), - [anon_sym_isize] = ACTIONS(1700), - [anon_sym_usize] = ACTIONS(1700), - [anon_sym_f32] = ACTIONS(1700), - [anon_sym_f64] = ACTIONS(1700), - [anon_sym_bool] = ACTIONS(1700), - [anon_sym_str] = ACTIONS(1700), - [anon_sym_char] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_default] = ACTIONS(1700), - [anon_sym_enum] = ACTIONS(1700), - [anon_sym_fn] = ACTIONS(1700), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_impl] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1700), - [anon_sym_loop] = ACTIONS(1700), - [anon_sym_match] = ACTIONS(1700), - [anon_sym_mod] = ACTIONS(1700), - [anon_sym_pub] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1700), - [anon_sym_trait] = ACTIONS(1700), - [anon_sym_type] = ACTIONS(1700), - [anon_sym_union] = ACTIONS(1700), - [anon_sym_unsafe] = ACTIONS(1700), - [anon_sym_use] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_yield] = ACTIONS(1700), - [anon_sym_move] = ACTIONS(1700), - [anon_sym_try] = ACTIONS(1700), - [sym_integer_literal] = ACTIONS(1698), - [aux_sym_string_literal_token1] = ACTIONS(1698), - [sym_char_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1700), - [sym_super] = ACTIONS(1700), - [sym_crate] = ACTIONS(1700), - [sym_metavariable] = ACTIONS(1698), - [sym__raw_string_literal_start] = ACTIONS(1698), - [sym_float_literal] = ACTIONS(1698), - }, - [489] = { + [sym_identifier] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym__] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1529), + [sym_mutable_specifier] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), + }, + [STATE(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_macro_rules_BANG] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_u8] = ACTIONS(1704), - [anon_sym_i8] = ACTIONS(1704), - [anon_sym_u16] = ACTIONS(1704), - [anon_sym_i16] = ACTIONS(1704), - [anon_sym_u32] = ACTIONS(1704), - [anon_sym_i32] = ACTIONS(1704), - [anon_sym_u64] = ACTIONS(1704), - [anon_sym_i64] = ACTIONS(1704), - [anon_sym_u128] = ACTIONS(1704), - [anon_sym_i128] = ACTIONS(1704), - [anon_sym_isize] = ACTIONS(1704), - [anon_sym_usize] = ACTIONS(1704), - [anon_sym_f32] = ACTIONS(1704), - [anon_sym_f64] = ACTIONS(1704), - [anon_sym_bool] = ACTIONS(1704), - [anon_sym_str] = ACTIONS(1704), - [anon_sym_char] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1702), - [anon_sym_COLON_COLON] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [anon_sym_fn] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_impl] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_loop] = ACTIONS(1704), - [anon_sym_match] = ACTIONS(1704), - [anon_sym_mod] = ACTIONS(1704), - [anon_sym_pub] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_trait] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsafe] = ACTIONS(1704), - [anon_sym_use] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_move] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1702), - [aux_sym_string_literal_token1] = ACTIONS(1702), - [sym_char_literal] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_crate] = ACTIONS(1704), - [sym_metavariable] = ACTIONS(1702), - [sym__raw_string_literal_start] = ACTIONS(1702), - [sym_float_literal] = ACTIONS(1702), - }, - [490] = { + [sym_identifier] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1487), + [anon_sym_i8] = ACTIONS(1487), + [anon_sym_u16] = ACTIONS(1487), + [anon_sym_i16] = ACTIONS(1487), + [anon_sym_u32] = ACTIONS(1487), + [anon_sym_i32] = ACTIONS(1487), + [anon_sym_u64] = ACTIONS(1487), + [anon_sym_i64] = ACTIONS(1487), + [anon_sym_u128] = ACTIONS(1487), + [anon_sym_i128] = ACTIONS(1487), + [anon_sym_isize] = ACTIONS(1487), + [anon_sym_usize] = ACTIONS(1487), + [anon_sym_f32] = ACTIONS(1487), + [anon_sym_f64] = ACTIONS(1487), + [anon_sym_bool] = ACTIONS(1487), + [anon_sym_str] = ACTIONS(1487), + [anon_sym_char] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1485), + [anon_sym_BANG_EQ] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym__] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_gen] = ACTIONS(1487), + [anon_sym_union] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1487), + [sym_mutable_specifier] = ACTIONS(1487), + [sym_integer_literal] = ACTIONS(1485), + [aux_sym_string_literal_token1] = ACTIONS(1485), + [sym_char_literal] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1487), + [sym_super] = ACTIONS(1487), + [sym_crate] = ACTIONS(1487), + [sym_metavariable] = ACTIONS(1485), + [sym__raw_string_literal_start] = ACTIONS(1485), + [sym_float_literal] = ACTIONS(1485), + }, + [STATE(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1706), - [sym_identifier] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_macro_rules_BANG] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_u8] = ACTIONS(1708), - [anon_sym_i8] = ACTIONS(1708), - [anon_sym_u16] = ACTIONS(1708), - [anon_sym_i16] = ACTIONS(1708), - [anon_sym_u32] = ACTIONS(1708), - [anon_sym_i32] = ACTIONS(1708), - [anon_sym_u64] = ACTIONS(1708), - [anon_sym_i64] = ACTIONS(1708), - [anon_sym_u128] = ACTIONS(1708), - [anon_sym_i128] = ACTIONS(1708), - [anon_sym_isize] = ACTIONS(1708), - [anon_sym_usize] = ACTIONS(1708), - [anon_sym_f32] = ACTIONS(1708), - [anon_sym_f64] = ACTIONS(1708), - [anon_sym_bool] = ACTIONS(1708), - [anon_sym_str] = ACTIONS(1708), - [anon_sym_char] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1706), - [anon_sym_COLON_COLON] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1708), - [anon_sym_async] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_enum] = ACTIONS(1708), - [anon_sym_fn] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_impl] = ACTIONS(1708), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_loop] = ACTIONS(1708), - [anon_sym_match] = ACTIONS(1708), - [anon_sym_mod] = ACTIONS(1708), - [anon_sym_pub] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_struct] = ACTIONS(1708), - [anon_sym_trait] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_union] = ACTIONS(1708), - [anon_sym_unsafe] = ACTIONS(1708), - [anon_sym_use] = ACTIONS(1708), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1708), - [anon_sym_yield] = ACTIONS(1708), - [anon_sym_move] = ACTIONS(1708), - [anon_sym_try] = ACTIONS(1708), - [sym_integer_literal] = ACTIONS(1706), - [aux_sym_string_literal_token1] = ACTIONS(1706), - [sym_char_literal] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1708), - [anon_sym_false] = ACTIONS(1708), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1708), - [sym_super] = ACTIONS(1708), - [sym_crate] = ACTIONS(1708), - [sym_metavariable] = ACTIONS(1706), - [sym__raw_string_literal_start] = ACTIONS(1706), - [sym_float_literal] = ACTIONS(1706), - }, - [491] = { + [sym_identifier] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PERCENT_EQ] = ACTIONS(1517), + [anon_sym_CARET_EQ] = ACTIONS(1517), + [anon_sym_AMP_EQ] = ACTIONS(1517), + [anon_sym_PIPE_EQ] = ACTIONS(1517), + [anon_sym_LT_LT_EQ] = ACTIONS(1517), + [anon_sym_GT_GT_EQ] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1517), + [anon_sym_BANG_EQ] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_GT_EQ] = ACTIONS(1517), + [anon_sym_LT_EQ] = ACTIONS(1517), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_gen] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_ref] = ACTIONS(1519), + [sym_mutable_specifier] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym__raw_string_literal_start] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), + }, + [STATE(491)] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_macro_rules_BANG] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_DOT_DOT] = ACTIONS(1710), - [anon_sym_COLON_COLON] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_async] = ACTIONS(1712), - [anon_sym_break] = ACTIONS(1712), - [anon_sym_const] = ACTIONS(1712), - [anon_sym_continue] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1712), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_for] = ACTIONS(1712), - [anon_sym_if] = ACTIONS(1712), - [anon_sym_impl] = ACTIONS(1712), - [anon_sym_let] = ACTIONS(1712), - [anon_sym_loop] = ACTIONS(1712), - [anon_sym_match] = ACTIONS(1712), - [anon_sym_mod] = ACTIONS(1712), - [anon_sym_pub] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_struct] = ACTIONS(1712), - [anon_sym_trait] = ACTIONS(1712), - [anon_sym_type] = ACTIONS(1712), - [anon_sym_union] = ACTIONS(1712), - [anon_sym_unsafe] = ACTIONS(1712), - [anon_sym_use] = ACTIONS(1712), - [anon_sym_while] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym_yield] = ACTIONS(1712), - [anon_sym_move] = ACTIONS(1712), - [anon_sym_try] = ACTIONS(1712), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1710), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1712), - [anon_sym_false] = ACTIONS(1712), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1712), - [sym_super] = ACTIONS(1712), - [sym_crate] = ACTIONS(1712), - [sym_metavariable] = ACTIONS(1710), - [sym__raw_string_literal_start] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), - }, - [492] = { + [sym_identifier] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_EQ] = ACTIONS(1521), + [anon_sym__] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_gen] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1523), + [sym_mutable_specifier] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), + }, + [STATE(492)] = { [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1714), - [sym_identifier] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_macro_rules_BANG] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_u8] = ACTIONS(1716), - [anon_sym_i8] = ACTIONS(1716), - [anon_sym_u16] = ACTIONS(1716), - [anon_sym_i16] = ACTIONS(1716), - [anon_sym_u32] = ACTIONS(1716), - [anon_sym_i32] = ACTIONS(1716), - [anon_sym_u64] = ACTIONS(1716), - [anon_sym_i64] = ACTIONS(1716), - [anon_sym_u128] = ACTIONS(1716), - [anon_sym_i128] = ACTIONS(1716), - [anon_sym_isize] = ACTIONS(1716), - [anon_sym_usize] = ACTIONS(1716), - [anon_sym_f32] = ACTIONS(1716), - [anon_sym_f64] = ACTIONS(1716), - [anon_sym_bool] = ACTIONS(1716), - [anon_sym_str] = ACTIONS(1716), - [anon_sym_char] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(1714), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(1714), - [anon_sym_SQUOTE] = ACTIONS(1716), - [anon_sym_async] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_default] = ACTIONS(1716), - [anon_sym_enum] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1716), - [anon_sym_for] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_impl] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1716), - [anon_sym_loop] = ACTIONS(1716), - [anon_sym_match] = ACTIONS(1716), - [anon_sym_mod] = ACTIONS(1716), - [anon_sym_pub] = ACTIONS(1716), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1716), - [anon_sym_trait] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_union] = ACTIONS(1716), - [anon_sym_unsafe] = ACTIONS(1716), - [anon_sym_use] = ACTIONS(1716), - [anon_sym_while] = ACTIONS(1716), - [anon_sym_extern] = ACTIONS(1716), - [anon_sym_yield] = ACTIONS(1716), - [anon_sym_move] = ACTIONS(1716), - [anon_sym_try] = ACTIONS(1716), - [sym_integer_literal] = ACTIONS(1714), - [aux_sym_string_literal_token1] = ACTIONS(1714), - [sym_char_literal] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1716), - [anon_sym_false] = ACTIONS(1716), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1714), - [sym__raw_string_literal_start] = ACTIONS(1714), - [sym_float_literal] = ACTIONS(1714), - }, - [493] = { + [sym_identifier] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym__] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_gen] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1549), + [sym_mutable_specifier] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1547), + [aux_sym_string_literal_token1] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_crate] = ACTIONS(1549), + [sym_metavariable] = ACTIONS(1547), + [sym__raw_string_literal_start] = ACTIONS(1547), + [sym_float_literal] = ACTIONS(1547), + }, + [STATE(493)] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1718), - [sym_identifier] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_macro_rules_BANG] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_u8] = ACTIONS(1720), - [anon_sym_i8] = ACTIONS(1720), - [anon_sym_u16] = ACTIONS(1720), - [anon_sym_i16] = ACTIONS(1720), - [anon_sym_u32] = ACTIONS(1720), - [anon_sym_i32] = ACTIONS(1720), - [anon_sym_u64] = ACTIONS(1720), - [anon_sym_i64] = ACTIONS(1720), - [anon_sym_u128] = ACTIONS(1720), - [anon_sym_i128] = ACTIONS(1720), - [anon_sym_isize] = ACTIONS(1720), - [anon_sym_usize] = ACTIONS(1720), - [anon_sym_f32] = ACTIONS(1720), - [anon_sym_f64] = ACTIONS(1720), - [anon_sym_bool] = ACTIONS(1720), - [anon_sym_str] = ACTIONS(1720), - [anon_sym_char] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_COLON_COLON] = ACTIONS(1718), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_default] = ACTIONS(1720), - [anon_sym_enum] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(1720), - [anon_sym_for] = ACTIONS(1720), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_impl] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1720), - [anon_sym_loop] = ACTIONS(1720), - [anon_sym_match] = ACTIONS(1720), - [anon_sym_mod] = ACTIONS(1720), - [anon_sym_pub] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_trait] = ACTIONS(1720), - [anon_sym_type] = ACTIONS(1720), - [anon_sym_union] = ACTIONS(1720), - [anon_sym_unsafe] = ACTIONS(1720), - [anon_sym_use] = ACTIONS(1720), - [anon_sym_while] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym_yield] = ACTIONS(1720), - [anon_sym_move] = ACTIONS(1720), - [anon_sym_try] = ACTIONS(1720), - [sym_integer_literal] = ACTIONS(1718), - [aux_sym_string_literal_token1] = ACTIONS(1718), - [sym_char_literal] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1720), - [sym_super] = ACTIONS(1720), - [sym_crate] = ACTIONS(1720), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1718), - [sym_float_literal] = ACTIONS(1718), - }, - [494] = { + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym__] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_gen] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_ref] = ACTIONS(1553), + [sym_mutable_specifier] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1551), + [aux_sym_string_literal_token1] = ACTIONS(1551), + [sym_char_literal] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_crate] = ACTIONS(1553), + [sym_metavariable] = ACTIONS(1551), + [sym__raw_string_literal_start] = ACTIONS(1551), + [sym_float_literal] = ACTIONS(1551), + }, + [STATE(494)] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1722), - [anon_sym_macro_rules_BANG] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_RBRACE] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_DOT_DOT] = ACTIONS(1722), - [anon_sym_COLON_COLON] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_async] = ACTIONS(1724), - [anon_sym_break] = ACTIONS(1724), - [anon_sym_const] = ACTIONS(1724), - [anon_sym_continue] = ACTIONS(1724), - [anon_sym_default] = ACTIONS(1724), - [anon_sym_enum] = ACTIONS(1724), - [anon_sym_fn] = ACTIONS(1724), - [anon_sym_for] = ACTIONS(1724), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_impl] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1724), - [anon_sym_loop] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1724), - [anon_sym_mod] = ACTIONS(1724), - [anon_sym_pub] = ACTIONS(1724), - [anon_sym_return] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1724), - [anon_sym_struct] = ACTIONS(1724), - [anon_sym_trait] = ACTIONS(1724), - [anon_sym_type] = ACTIONS(1724), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1724), - [anon_sym_use] = ACTIONS(1724), - [anon_sym_while] = ACTIONS(1724), - [anon_sym_extern] = ACTIONS(1724), - [anon_sym_yield] = ACTIONS(1724), - [anon_sym_move] = ACTIONS(1724), - [anon_sym_try] = ACTIONS(1724), - [sym_integer_literal] = ACTIONS(1722), - [aux_sym_string_literal_token1] = ACTIONS(1722), - [sym_char_literal] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1724), - [anon_sym_false] = ACTIONS(1724), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1724), - [sym_super] = ACTIONS(1724), - [sym_crate] = ACTIONS(1724), - [sym_metavariable] = ACTIONS(1722), - [sym__raw_string_literal_start] = ACTIONS(1722), - [sym_float_literal] = ACTIONS(1722), - }, - [495] = { + [sym_identifier] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_QMARK] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1497), + [anon_sym_DASH_EQ] = ACTIONS(1497), + [anon_sym_STAR_EQ] = ACTIONS(1497), + [anon_sym_SLASH_EQ] = ACTIONS(1497), + [anon_sym_PERCENT_EQ] = ACTIONS(1497), + [anon_sym_CARET_EQ] = ACTIONS(1497), + [anon_sym_AMP_EQ] = ACTIONS(1497), + [anon_sym_PIPE_EQ] = ACTIONS(1497), + [anon_sym_LT_LT_EQ] = ACTIONS(1497), + [anon_sym_GT_GT_EQ] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1497), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_ref] = ACTIONS(1499), + [sym_mutable_specifier] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), + }, + [STATE(495)] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_macro_rules_BANG] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_u8] = ACTIONS(1728), - [anon_sym_i8] = ACTIONS(1728), - [anon_sym_u16] = ACTIONS(1728), - [anon_sym_i16] = ACTIONS(1728), - [anon_sym_u32] = ACTIONS(1728), - [anon_sym_i32] = ACTIONS(1728), - [anon_sym_u64] = ACTIONS(1728), - [anon_sym_i64] = ACTIONS(1728), - [anon_sym_u128] = ACTIONS(1728), - [anon_sym_i128] = ACTIONS(1728), - [anon_sym_isize] = ACTIONS(1728), - [anon_sym_usize] = ACTIONS(1728), - [anon_sym_f32] = ACTIONS(1728), - [anon_sym_f64] = ACTIONS(1728), - [anon_sym_bool] = ACTIONS(1728), - [anon_sym_str] = ACTIONS(1728), - [anon_sym_char] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_DOT_DOT] = ACTIONS(1726), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_POUND] = ACTIONS(1726), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_async] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_fn] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_impl] = ACTIONS(1728), - [anon_sym_let] = ACTIONS(1728), - [anon_sym_loop] = ACTIONS(1728), - [anon_sym_match] = ACTIONS(1728), - [anon_sym_mod] = ACTIONS(1728), - [anon_sym_pub] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1728), - [anon_sym_trait] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1728), - [anon_sym_union] = ACTIONS(1728), - [anon_sym_unsafe] = ACTIONS(1728), - [anon_sym_use] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1728), - [anon_sym_move] = ACTIONS(1728), - [anon_sym_try] = ACTIONS(1728), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1728), - [anon_sym_false] = ACTIONS(1728), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1726), - [sym__raw_string_literal_start] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - }, - [496] = { + [sym_identifier] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym__] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_ref] = ACTIONS(1507), + [sym_mutable_specifier] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), + }, + [STATE(496)] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_macro_rules_BANG] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_DOT_DOT] = ACTIONS(1730), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [anon_sym_fn] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_impl] = ACTIONS(1732), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_loop] = ACTIONS(1732), - [anon_sym_match] = ACTIONS(1732), - [anon_sym_mod] = ACTIONS(1732), - [anon_sym_pub] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_trait] = ACTIONS(1732), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [anon_sym_unsafe] = ACTIONS(1732), - [anon_sym_use] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_yield] = ACTIONS(1732), - [anon_sym_move] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [sym_integer_literal] = ACTIONS(1730), - [aux_sym_string_literal_token1] = ACTIONS(1730), - [sym_char_literal] = ACTIONS(1730), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_crate] = ACTIONS(1732), - [sym_metavariable] = ACTIONS(1730), - [sym__raw_string_literal_start] = ACTIONS(1730), - [sym_float_literal] = ACTIONS(1730), - }, - [497] = { + [sym_identifier] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1481), + [anon_sym_u8] = ACTIONS(1483), + [anon_sym_i8] = ACTIONS(1483), + [anon_sym_u16] = ACTIONS(1483), + [anon_sym_i16] = ACTIONS(1483), + [anon_sym_u32] = ACTIONS(1483), + [anon_sym_i32] = ACTIONS(1483), + [anon_sym_u64] = ACTIONS(1483), + [anon_sym_i64] = ACTIONS(1483), + [anon_sym_u128] = ACTIONS(1483), + [anon_sym_i128] = ACTIONS(1483), + [anon_sym_isize] = ACTIONS(1483), + [anon_sym_usize] = ACTIONS(1483), + [anon_sym_f32] = ACTIONS(1483), + [anon_sym_f64] = ACTIONS(1483), + [anon_sym_bool] = ACTIONS(1483), + [anon_sym_str] = ACTIONS(1483), + [anon_sym_char] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_PERCENT_EQ] = ACTIONS(1481), + [anon_sym_CARET_EQ] = ACTIONS(1481), + [anon_sym_AMP_EQ] = ACTIONS(1481), + [anon_sym_PIPE_EQ] = ACTIONS(1481), + [anon_sym_LT_LT_EQ] = ACTIONS(1481), + [anon_sym_GT_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym__] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_COLON_COLON] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_gen] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [anon_sym_ref] = ACTIONS(1483), + [sym_mutable_specifier] = ACTIONS(1483), + [sym_integer_literal] = ACTIONS(1481), + [aux_sym_string_literal_token1] = ACTIONS(1481), + [sym_char_literal] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_crate] = ACTIONS(1483), + [sym_metavariable] = ACTIONS(1481), + [sym__raw_string_literal_start] = ACTIONS(1481), + [sym_float_literal] = ACTIONS(1481), + }, + [STATE(497)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_match_pattern] = STATE(3642), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_macro_rules_BANG] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_u8] = ACTIONS(1736), - [anon_sym_i8] = ACTIONS(1736), - [anon_sym_u16] = ACTIONS(1736), - [anon_sym_i16] = ACTIONS(1736), - [anon_sym_u32] = ACTIONS(1736), - [anon_sym_i32] = ACTIONS(1736), - [anon_sym_u64] = ACTIONS(1736), - [anon_sym_i64] = ACTIONS(1736), - [anon_sym_u128] = ACTIONS(1736), - [anon_sym_i128] = ACTIONS(1736), - [anon_sym_isize] = ACTIONS(1736), - [anon_sym_usize] = ACTIONS(1736), - [anon_sym_f32] = ACTIONS(1736), - [anon_sym_f64] = ACTIONS(1736), - [anon_sym_bool] = ACTIONS(1736), - [anon_sym_str] = ACTIONS(1736), - [anon_sym_char] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_async] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [anon_sym_fn] = ACTIONS(1736), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_impl] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_loop] = ACTIONS(1736), - [anon_sym_match] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_pub] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1736), - [anon_sym_trait] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_union] = ACTIONS(1736), - [anon_sym_unsafe] = ACTIONS(1736), - [anon_sym_use] = ACTIONS(1736), - [anon_sym_while] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym_yield] = ACTIONS(1736), - [anon_sym_move] = ACTIONS(1736), - [anon_sym_try] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [aux_sym_string_literal_token1] = ACTIONS(1734), - [sym_char_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1736), - [anon_sym_false] = ACTIONS(1736), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_crate] = ACTIONS(1736), - [sym_metavariable] = ACTIONS(1734), - [sym__raw_string_literal_start] = ACTIONS(1734), - [sym_float_literal] = ACTIONS(1734), - }, - [498] = { + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(644), + [sym_identifier] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_u8] = ACTIONS(1770), + [anon_sym_i8] = ACTIONS(1770), + [anon_sym_u16] = ACTIONS(1770), + [anon_sym_i16] = ACTIONS(1770), + [anon_sym_u32] = ACTIONS(1770), + [anon_sym_i32] = ACTIONS(1770), + [anon_sym_u64] = ACTIONS(1770), + [anon_sym_i64] = ACTIONS(1770), + [anon_sym_u128] = ACTIONS(1770), + [anon_sym_i128] = ACTIONS(1770), + [anon_sym_isize] = ACTIONS(1770), + [anon_sym_usize] = ACTIONS(1770), + [anon_sym_f32] = ACTIONS(1770), + [anon_sym_f64] = ACTIONS(1770), + [anon_sym_bool] = ACTIONS(1770), + [anon_sym_str] = ACTIONS(1770), + [anon_sym_char] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym__] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1791), + [anon_sym_COLON_COLON] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_gen] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1806), + [sym_mutable_specifier] = ACTIONS(1809), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1815), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1821), + [sym_super] = ACTIONS(1821), + [sym_crate] = ACTIONS(1821), + [sym_metavariable] = ACTIONS(1824), + [sym__raw_string_literal_start] = ACTIONS(1827), + [sym_float_literal] = ACTIONS(1812), + }, + [STATE(498)] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1738), - [sym_identifier] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_macro_rules_BANG] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_u8] = ACTIONS(1740), - [anon_sym_i8] = ACTIONS(1740), - [anon_sym_u16] = ACTIONS(1740), - [anon_sym_i16] = ACTIONS(1740), - [anon_sym_u32] = ACTIONS(1740), - [anon_sym_i32] = ACTIONS(1740), - [anon_sym_u64] = ACTIONS(1740), - [anon_sym_i64] = ACTIONS(1740), - [anon_sym_u128] = ACTIONS(1740), - [anon_sym_i128] = ACTIONS(1740), - [anon_sym_isize] = ACTIONS(1740), - [anon_sym_usize] = ACTIONS(1740), - [anon_sym_f32] = ACTIONS(1740), - [anon_sym_f64] = ACTIONS(1740), - [anon_sym_bool] = ACTIONS(1740), - [anon_sym_str] = ACTIONS(1740), - [anon_sym_char] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_const] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_default] = ACTIONS(1740), - [anon_sym_enum] = ACTIONS(1740), - [anon_sym_fn] = ACTIONS(1740), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_impl] = ACTIONS(1740), - [anon_sym_let] = ACTIONS(1740), - [anon_sym_loop] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1740), - [anon_sym_mod] = ACTIONS(1740), - [anon_sym_pub] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1740), - [anon_sym_struct] = ACTIONS(1740), - [anon_sym_trait] = ACTIONS(1740), - [anon_sym_type] = ACTIONS(1740), - [anon_sym_union] = ACTIONS(1740), - [anon_sym_unsafe] = ACTIONS(1740), - [anon_sym_use] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_yield] = ACTIONS(1740), - [anon_sym_move] = ACTIONS(1740), - [anon_sym_try] = ACTIONS(1740), - [sym_integer_literal] = ACTIONS(1738), - [aux_sym_string_literal_token1] = ACTIONS(1738), - [sym_char_literal] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1740), - [sym_super] = ACTIONS(1740), - [sym_crate] = ACTIONS(1740), - [sym_metavariable] = ACTIONS(1738), - [sym__raw_string_literal_start] = ACTIONS(1738), - [sym_float_literal] = ACTIONS(1738), - }, - [499] = { + [sym_identifier] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym__] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_ref] = ACTIONS(1541), + [sym_mutable_specifier] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), + }, + [STATE(499)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1742), - [sym_identifier] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_macro_rules_BANG] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_u8] = ACTIONS(1744), - [anon_sym_i8] = ACTIONS(1744), - [anon_sym_u16] = ACTIONS(1744), - [anon_sym_i16] = ACTIONS(1744), - [anon_sym_u32] = ACTIONS(1744), - [anon_sym_i32] = ACTIONS(1744), - [anon_sym_u64] = ACTIONS(1744), - [anon_sym_i64] = ACTIONS(1744), - [anon_sym_u128] = ACTIONS(1744), - [anon_sym_i128] = ACTIONS(1744), - [anon_sym_isize] = ACTIONS(1744), - [anon_sym_usize] = ACTIONS(1744), - [anon_sym_f32] = ACTIONS(1744), - [anon_sym_f64] = ACTIONS(1744), - [anon_sym_bool] = ACTIONS(1744), - [anon_sym_str] = ACTIONS(1744), - [anon_sym_char] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_default] = ACTIONS(1744), - [anon_sym_enum] = ACTIONS(1744), - [anon_sym_fn] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_impl] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1744), - [anon_sym_pub] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_struct] = ACTIONS(1744), - [anon_sym_trait] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1744), - [anon_sym_union] = ACTIONS(1744), - [anon_sym_unsafe] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_yield] = ACTIONS(1744), - [anon_sym_move] = ACTIONS(1744), - [anon_sym_try] = ACTIONS(1744), - [sym_integer_literal] = ACTIONS(1742), - [aux_sym_string_literal_token1] = ACTIONS(1742), - [sym_char_literal] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1744), - [sym_super] = ACTIONS(1744), - [sym_crate] = ACTIONS(1744), - [sym_metavariable] = ACTIONS(1742), - [sym__raw_string_literal_start] = ACTIONS(1742), - [sym_float_literal] = ACTIONS(1742), - }, - [500] = { + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(500)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_macro_rules_BANG] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_u8] = ACTIONS(1748), - [anon_sym_i8] = ACTIONS(1748), - [anon_sym_u16] = ACTIONS(1748), - [anon_sym_i16] = ACTIONS(1748), - [anon_sym_u32] = ACTIONS(1748), - [anon_sym_i32] = ACTIONS(1748), - [anon_sym_u64] = ACTIONS(1748), - [anon_sym_i64] = ACTIONS(1748), - [anon_sym_u128] = ACTIONS(1748), - [anon_sym_i128] = ACTIONS(1748), - [anon_sym_isize] = ACTIONS(1748), - [anon_sym_usize] = ACTIONS(1748), - [anon_sym_f32] = ACTIONS(1748), - [anon_sym_f64] = ACTIONS(1748), - [anon_sym_bool] = ACTIONS(1748), - [anon_sym_str] = ACTIONS(1748), - [anon_sym_char] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1746), - [anon_sym_COLON_COLON] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_enum] = ACTIONS(1748), - [anon_sym_fn] = ACTIONS(1748), - [anon_sym_for] = ACTIONS(1748), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_impl] = ACTIONS(1748), - [anon_sym_let] = ACTIONS(1748), - [anon_sym_loop] = ACTIONS(1748), - [anon_sym_match] = ACTIONS(1748), - [anon_sym_mod] = ACTIONS(1748), - [anon_sym_pub] = ACTIONS(1748), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_struct] = ACTIONS(1748), - [anon_sym_trait] = ACTIONS(1748), - [anon_sym_type] = ACTIONS(1748), - [anon_sym_union] = ACTIONS(1748), - [anon_sym_unsafe] = ACTIONS(1748), - [anon_sym_use] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_yield] = ACTIONS(1748), - [anon_sym_move] = ACTIONS(1748), - [anon_sym_try] = ACTIONS(1748), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1746), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_crate] = ACTIONS(1748), - [sym_metavariable] = ACTIONS(1746), - [sym__raw_string_literal_start] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), - }, - [501] = { + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(501)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_macro_rules_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_u8] = ACTIONS(1752), - [anon_sym_i8] = ACTIONS(1752), - [anon_sym_u16] = ACTIONS(1752), - [anon_sym_i16] = ACTIONS(1752), - [anon_sym_u32] = ACTIONS(1752), - [anon_sym_i32] = ACTIONS(1752), - [anon_sym_u64] = ACTIONS(1752), - [anon_sym_i64] = ACTIONS(1752), - [anon_sym_u128] = ACTIONS(1752), - [anon_sym_i128] = ACTIONS(1752), - [anon_sym_isize] = ACTIONS(1752), - [anon_sym_usize] = ACTIONS(1752), - [anon_sym_f32] = ACTIONS(1752), - [anon_sym_f64] = ACTIONS(1752), - [anon_sym_bool] = ACTIONS(1752), - [anon_sym_str] = ACTIONS(1752), - [anon_sym_char] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_COLON_COLON] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_union] = ACTIONS(1752), - [anon_sym_unsafe] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_move] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [sym_integer_literal] = ACTIONS(1750), - [aux_sym_string_literal_token1] = ACTIONS(1750), - [sym_char_literal] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1750), - [sym__raw_string_literal_start] = ACTIONS(1750), - [sym_float_literal] = ACTIONS(1750), - }, - [502] = { + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(502)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_macro_rules_BANG] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_u8] = ACTIONS(1756), - [anon_sym_i8] = ACTIONS(1756), - [anon_sym_u16] = ACTIONS(1756), - [anon_sym_i16] = ACTIONS(1756), - [anon_sym_u32] = ACTIONS(1756), - [anon_sym_i32] = ACTIONS(1756), - [anon_sym_u64] = ACTIONS(1756), - [anon_sym_i64] = ACTIONS(1756), - [anon_sym_u128] = ACTIONS(1756), - [anon_sym_i128] = ACTIONS(1756), - [anon_sym_isize] = ACTIONS(1756), - [anon_sym_usize] = ACTIONS(1756), - [anon_sym_f32] = ACTIONS(1756), - [anon_sym_f64] = ACTIONS(1756), - [anon_sym_bool] = ACTIONS(1756), - [anon_sym_str] = ACTIONS(1756), - [anon_sym_char] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_fn] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_impl] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_loop] = ACTIONS(1756), - [anon_sym_match] = ACTIONS(1756), - [anon_sym_mod] = ACTIONS(1756), - [anon_sym_pub] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_trait] = ACTIONS(1756), - [anon_sym_type] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_unsafe] = ACTIONS(1756), - [anon_sym_use] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_move] = ACTIONS(1756), - [anon_sym_try] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1754), - [aux_sym_string_literal_token1] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1754), - [sym_float_literal] = ACTIONS(1754), - }, - [503] = { + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(503)] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_macro_rules_BANG] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_u8] = ACTIONS(1760), - [anon_sym_i8] = ACTIONS(1760), - [anon_sym_u16] = ACTIONS(1760), - [anon_sym_i16] = ACTIONS(1760), - [anon_sym_u32] = ACTIONS(1760), - [anon_sym_i32] = ACTIONS(1760), - [anon_sym_u64] = ACTIONS(1760), - [anon_sym_i64] = ACTIONS(1760), - [anon_sym_u128] = ACTIONS(1760), - [anon_sym_i128] = ACTIONS(1760), - [anon_sym_isize] = ACTIONS(1760), - [anon_sym_usize] = ACTIONS(1760), - [anon_sym_f32] = ACTIONS(1760), - [anon_sym_f64] = ACTIONS(1760), - [anon_sym_bool] = ACTIONS(1760), - [anon_sym_str] = ACTIONS(1760), - [anon_sym_char] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1758), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_fn] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_impl] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1760), - [anon_sym_pub] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_trait] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_unsafe] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_move] = ACTIONS(1760), - [anon_sym_try] = ACTIONS(1760), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_crate] = ACTIONS(1760), - [sym_metavariable] = ACTIONS(1758), - [sym__raw_string_literal_start] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), - }, - [504] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_macro_rules_BANG] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_u8] = ACTIONS(1764), - [anon_sym_i8] = ACTIONS(1764), - [anon_sym_u16] = ACTIONS(1764), - [anon_sym_i16] = ACTIONS(1764), - [anon_sym_u32] = ACTIONS(1764), - [anon_sym_i32] = ACTIONS(1764), - [anon_sym_u64] = ACTIONS(1764), - [anon_sym_i64] = ACTIONS(1764), - [anon_sym_u128] = ACTIONS(1764), - [anon_sym_i128] = ACTIONS(1764), - [anon_sym_isize] = ACTIONS(1764), - [anon_sym_usize] = ACTIONS(1764), - [anon_sym_f32] = ACTIONS(1764), - [anon_sym_f64] = ACTIONS(1764), - [anon_sym_bool] = ACTIONS(1764), - [anon_sym_str] = ACTIONS(1764), - [anon_sym_char] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_COLON_COLON] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [anon_sym_fn] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_impl] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1764), - [anon_sym_pub] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_struct] = ACTIONS(1764), - [anon_sym_trait] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_union] = ACTIONS(1764), - [anon_sym_unsafe] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_move] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [sym_integer_literal] = ACTIONS(1762), - [aux_sym_string_literal_token1] = ACTIONS(1762), - [sym_char_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_crate] = ACTIONS(1764), - [sym_metavariable] = ACTIONS(1762), - [sym__raw_string_literal_start] = ACTIONS(1762), - [sym_float_literal] = ACTIONS(1762), - }, - [505] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_macro_rules_BANG] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1768), - [anon_sym_i8] = ACTIONS(1768), - [anon_sym_u16] = ACTIONS(1768), - [anon_sym_i16] = ACTIONS(1768), - [anon_sym_u32] = ACTIONS(1768), - [anon_sym_i32] = ACTIONS(1768), - [anon_sym_u64] = ACTIONS(1768), - [anon_sym_i64] = ACTIONS(1768), - [anon_sym_u128] = ACTIONS(1768), - [anon_sym_i128] = ACTIONS(1768), - [anon_sym_isize] = ACTIONS(1768), - [anon_sym_usize] = ACTIONS(1768), - [anon_sym_f32] = ACTIONS(1768), - [anon_sym_f64] = ACTIONS(1768), - [anon_sym_bool] = ACTIONS(1768), - [anon_sym_str] = ACTIONS(1768), - [anon_sym_char] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_async] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_default] = ACTIONS(1768), - [anon_sym_enum] = ACTIONS(1768), - [anon_sym_fn] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_impl] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_pub] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_struct] = ACTIONS(1768), - [anon_sym_trait] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1768), - [anon_sym_union] = ACTIONS(1768), - [anon_sym_unsafe] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_yield] = ACTIONS(1768), - [anon_sym_move] = ACTIONS(1768), - [anon_sym_try] = ACTIONS(1768), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1766), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1768), - [sym_super] = ACTIONS(1768), - [sym_crate] = ACTIONS(1768), - [sym_metavariable] = ACTIONS(1766), - [sym__raw_string_literal_start] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), - }, - [506] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_macro_rules_BANG] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [anon_sym_fn] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_impl] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1772), - [anon_sym_pub] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_struct] = ACTIONS(1772), - [anon_sym_trait] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_unsafe] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [aux_sym_string_literal_token1] = ACTIONS(1770), - [sym_char_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym__raw_string_literal_start] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), - }, - [507] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_macro_rules_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_u8] = ACTIONS(1776), - [anon_sym_i8] = ACTIONS(1776), - [anon_sym_u16] = ACTIONS(1776), - [anon_sym_i16] = ACTIONS(1776), - [anon_sym_u32] = ACTIONS(1776), - [anon_sym_i32] = ACTIONS(1776), - [anon_sym_u64] = ACTIONS(1776), - [anon_sym_i64] = ACTIONS(1776), - [anon_sym_u128] = ACTIONS(1776), - [anon_sym_i128] = ACTIONS(1776), - [anon_sym_isize] = ACTIONS(1776), - [anon_sym_usize] = ACTIONS(1776), - [anon_sym_f32] = ACTIONS(1776), - [anon_sym_f64] = ACTIONS(1776), - [anon_sym_bool] = ACTIONS(1776), - [anon_sym_str] = ACTIONS(1776), - [anon_sym_char] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_impl] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_trait] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_yield] = ACTIONS(1776), - [anon_sym_move] = ACTIONS(1776), - [anon_sym_try] = ACTIONS(1776), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym__raw_string_literal_start] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), - }, - [508] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1780), - [anon_sym_move] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), - }, - [509] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1784), - [anon_sym_move] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym__raw_string_literal_start] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), - }, - [510] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_move] = ACTIONS(1788), - [anon_sym_try] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), - }, - [511] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_move] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym__raw_string_literal_start] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), - }, - [512] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1796), - [anon_sym_move] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym__raw_string_literal_start] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), - }, - [513] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), - }, - [514] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym__raw_string_literal_start] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), - }, - [515] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym__raw_string_literal_start] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), - }, - [516] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), - }, - [517] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), - }, - [518] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym__raw_string_literal_start] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), - }, - [519] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), - }, - [520] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), - }, - [521] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), - }, - [522] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), - }, - [523] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1838), [sym_identifier] = ACTIONS(1840), [anon_sym_SEMI] = ACTIONS(1838), @@ -72091,6 +72610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1840), [anon_sym_fn] = ACTIONS(1840), [anon_sym_for] = ACTIONS(1840), + [anon_sym_gen] = ACTIONS(1840), [anon_sym_if] = ACTIONS(1840), [anon_sym_impl] = ACTIONS(1840), [anon_sym_let] = ACTIONS(1840), @@ -72116,8 +72636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1838), [anon_sym_true] = ACTIONS(1840), [anon_sym_false] = ACTIONS(1840), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1840), [sym_super] = ACTIONS(1840), [sym_crate] = ACTIONS(1840), @@ -72125,9 +72645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1838), [sym_float_literal] = ACTIONS(1838), }, - [524] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [STATE(504)] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1842), [sym_identifier] = ACTIONS(1844), [anon_sym_SEMI] = ACTIONS(1842), @@ -72171,6 +72691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1844), [anon_sym_fn] = ACTIONS(1844), [anon_sym_for] = ACTIONS(1844), + [anon_sym_gen] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1844), [anon_sym_impl] = ACTIONS(1844), [anon_sym_let] = ACTIONS(1844), @@ -72196,8 +72717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1842), [anon_sym_true] = ACTIONS(1844), [anon_sym_false] = ACTIONS(1844), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1844), [sym_super] = ACTIONS(1844), [sym_crate] = ACTIONS(1844), @@ -72205,9 +72726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1842), [sym_float_literal] = ACTIONS(1842), }, - [525] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [STATE(505)] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), [ts_builtin_sym_end] = ACTIONS(1846), [sym_identifier] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1846), @@ -72251,6 +72772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1848), [anon_sym_fn] = ACTIONS(1848), [anon_sym_for] = ACTIONS(1848), + [anon_sym_gen] = ACTIONS(1848), [anon_sym_if] = ACTIONS(1848), [anon_sym_impl] = ACTIONS(1848), [anon_sym_let] = ACTIONS(1848), @@ -72276,8 +72798,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1846), [anon_sym_true] = ACTIONS(1848), [anon_sym_false] = ACTIONS(1848), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1848), [sym_super] = ACTIONS(1848), [sym_crate] = ACTIONS(1848), @@ -72285,9 +72807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1846), [sym_float_literal] = ACTIONS(1846), }, - [526] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [STATE(506)] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), [ts_builtin_sym_end] = ACTIONS(1850), [sym_identifier] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1850), @@ -72331,6 +72853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1852), [anon_sym_fn] = ACTIONS(1852), [anon_sym_for] = ACTIONS(1852), + [anon_sym_gen] = ACTIONS(1852), [anon_sym_if] = ACTIONS(1852), [anon_sym_impl] = ACTIONS(1852), [anon_sym_let] = ACTIONS(1852), @@ -72356,8 +72879,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1850), [anon_sym_true] = ACTIONS(1852), [anon_sym_false] = ACTIONS(1852), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1852), [sym_super] = ACTIONS(1852), [sym_crate] = ACTIONS(1852), @@ -72365,9 +72888,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1850), [sym_float_literal] = ACTIONS(1850), }, - [527] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [STATE(507)] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1854), [sym_identifier] = ACTIONS(1856), [anon_sym_SEMI] = ACTIONS(1854), @@ -72411,6 +72934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1856), [anon_sym_fn] = ACTIONS(1856), [anon_sym_for] = ACTIONS(1856), + [anon_sym_gen] = ACTIONS(1856), [anon_sym_if] = ACTIONS(1856), [anon_sym_impl] = ACTIONS(1856), [anon_sym_let] = ACTIONS(1856), @@ -72436,8 +72960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1854), [anon_sym_true] = ACTIONS(1856), [anon_sym_false] = ACTIONS(1856), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1856), [sym_super] = ACTIONS(1856), [sym_crate] = ACTIONS(1856), @@ -72445,9 +72969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1854), [sym_float_literal] = ACTIONS(1854), }, - [528] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [STATE(508)] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(1858), [sym_identifier] = ACTIONS(1860), [anon_sym_SEMI] = ACTIONS(1858), @@ -72491,6 +73015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1860), [anon_sym_fn] = ACTIONS(1860), [anon_sym_for] = ACTIONS(1860), + [anon_sym_gen] = ACTIONS(1860), [anon_sym_if] = ACTIONS(1860), [anon_sym_impl] = ACTIONS(1860), [anon_sym_let] = ACTIONS(1860), @@ -72516,8 +73041,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1858), [anon_sym_true] = ACTIONS(1860), [anon_sym_false] = ACTIONS(1860), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1860), [sym_super] = ACTIONS(1860), [sym_crate] = ACTIONS(1860), @@ -72525,9 +73050,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1858), [sym_float_literal] = ACTIONS(1858), }, - [529] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [STATE(509)] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), [ts_builtin_sym_end] = ACTIONS(1862), [sym_identifier] = ACTIONS(1864), [anon_sym_SEMI] = ACTIONS(1862), @@ -72571,6 +73096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1864), [anon_sym_fn] = ACTIONS(1864), [anon_sym_for] = ACTIONS(1864), + [anon_sym_gen] = ACTIONS(1864), [anon_sym_if] = ACTIONS(1864), [anon_sym_impl] = ACTIONS(1864), [anon_sym_let] = ACTIONS(1864), @@ -72596,8 +73122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1862), [anon_sym_true] = ACTIONS(1864), [anon_sym_false] = ACTIONS(1864), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1864), [sym_super] = ACTIONS(1864), [sym_crate] = ACTIONS(1864), @@ -72605,9 +73131,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1862), [sym_float_literal] = ACTIONS(1862), }, - [530] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [STATE(510)] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), [ts_builtin_sym_end] = ACTIONS(1866), [sym_identifier] = ACTIONS(1868), [anon_sym_SEMI] = ACTIONS(1866), @@ -72651,6 +73177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1868), [anon_sym_fn] = ACTIONS(1868), [anon_sym_for] = ACTIONS(1868), + [anon_sym_gen] = ACTIONS(1868), [anon_sym_if] = ACTIONS(1868), [anon_sym_impl] = ACTIONS(1868), [anon_sym_let] = ACTIONS(1868), @@ -72676,8 +73203,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1866), [anon_sym_true] = ACTIONS(1868), [anon_sym_false] = ACTIONS(1868), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1868), [sym_super] = ACTIONS(1868), [sym_crate] = ACTIONS(1868), @@ -72685,9 +73212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1866), [sym_float_literal] = ACTIONS(1866), }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [STATE(511)] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), [ts_builtin_sym_end] = ACTIONS(1870), [sym_identifier] = ACTIONS(1872), [anon_sym_SEMI] = ACTIONS(1870), @@ -72731,6 +73258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1872), [anon_sym_fn] = ACTIONS(1872), [anon_sym_for] = ACTIONS(1872), + [anon_sym_gen] = ACTIONS(1872), [anon_sym_if] = ACTIONS(1872), [anon_sym_impl] = ACTIONS(1872), [anon_sym_let] = ACTIONS(1872), @@ -72756,8 +73284,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1870), [anon_sym_true] = ACTIONS(1872), [anon_sym_false] = ACTIONS(1872), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1872), [sym_super] = ACTIONS(1872), [sym_crate] = ACTIONS(1872), @@ -72765,9 +73293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1870), [sym_float_literal] = ACTIONS(1870), }, - [532] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [STATE(512)] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), [ts_builtin_sym_end] = ACTIONS(1874), [sym_identifier] = ACTIONS(1876), [anon_sym_SEMI] = ACTIONS(1874), @@ -72811,6 +73339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1876), [anon_sym_fn] = ACTIONS(1876), [anon_sym_for] = ACTIONS(1876), + [anon_sym_gen] = ACTIONS(1876), [anon_sym_if] = ACTIONS(1876), [anon_sym_impl] = ACTIONS(1876), [anon_sym_let] = ACTIONS(1876), @@ -72836,8 +73365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1874), [anon_sym_true] = ACTIONS(1876), [anon_sym_false] = ACTIONS(1876), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1876), [sym_super] = ACTIONS(1876), [sym_crate] = ACTIONS(1876), @@ -72845,9 +73374,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1874), [sym_float_literal] = ACTIONS(1874), }, - [533] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [STATE(513)] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), @@ -72891,6 +73420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1880), [anon_sym_fn] = ACTIONS(1880), [anon_sym_for] = ACTIONS(1880), + [anon_sym_gen] = ACTIONS(1880), [anon_sym_if] = ACTIONS(1880), [anon_sym_impl] = ACTIONS(1880), [anon_sym_let] = ACTIONS(1880), @@ -72916,8 +73446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1878), [anon_sym_true] = ACTIONS(1880), [anon_sym_false] = ACTIONS(1880), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1880), [sym_super] = ACTIONS(1880), [sym_crate] = ACTIONS(1880), @@ -72925,9 +73455,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1878), [sym_float_literal] = ACTIONS(1878), }, - [534] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [STATE(514)] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(1882), [sym_identifier] = ACTIONS(1884), [anon_sym_SEMI] = ACTIONS(1882), @@ -72971,6 +73501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1884), [anon_sym_fn] = ACTIONS(1884), [anon_sym_for] = ACTIONS(1884), + [anon_sym_gen] = ACTIONS(1884), [anon_sym_if] = ACTIONS(1884), [anon_sym_impl] = ACTIONS(1884), [anon_sym_let] = ACTIONS(1884), @@ -72996,8 +73527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1882), [anon_sym_true] = ACTIONS(1884), [anon_sym_false] = ACTIONS(1884), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1884), [sym_super] = ACTIONS(1884), [sym_crate] = ACTIONS(1884), @@ -73005,9 +73536,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1882), [sym_float_literal] = ACTIONS(1882), }, - [535] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [STATE(515)] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), [ts_builtin_sym_end] = ACTIONS(1886), [sym_identifier] = ACTIONS(1888), [anon_sym_SEMI] = ACTIONS(1886), @@ -73051,6 +73582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1888), [anon_sym_fn] = ACTIONS(1888), [anon_sym_for] = ACTIONS(1888), + [anon_sym_gen] = ACTIONS(1888), [anon_sym_if] = ACTIONS(1888), [anon_sym_impl] = ACTIONS(1888), [anon_sym_let] = ACTIONS(1888), @@ -73076,8 +73608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1886), [anon_sym_true] = ACTIONS(1888), [anon_sym_false] = ACTIONS(1888), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1888), [sym_super] = ACTIONS(1888), [sym_crate] = ACTIONS(1888), @@ -73085,9 +73617,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1886), [sym_float_literal] = ACTIONS(1886), }, - [536] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [STATE(516)] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), [ts_builtin_sym_end] = ACTIONS(1890), [sym_identifier] = ACTIONS(1892), [anon_sym_SEMI] = ACTIONS(1890), @@ -73131,6 +73663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1892), [anon_sym_fn] = ACTIONS(1892), [anon_sym_for] = ACTIONS(1892), + [anon_sym_gen] = ACTIONS(1892), [anon_sym_if] = ACTIONS(1892), [anon_sym_impl] = ACTIONS(1892), [anon_sym_let] = ACTIONS(1892), @@ -73156,8 +73689,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1890), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1892), [sym_super] = ACTIONS(1892), [sym_crate] = ACTIONS(1892), @@ -73165,9 +73698,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1890), [sym_float_literal] = ACTIONS(1890), }, - [537] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [STATE(517)] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), [ts_builtin_sym_end] = ACTIONS(1894), [sym_identifier] = ACTIONS(1896), [anon_sym_SEMI] = ACTIONS(1894), @@ -73211,6 +73744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1896), [anon_sym_fn] = ACTIONS(1896), [anon_sym_for] = ACTIONS(1896), + [anon_sym_gen] = ACTIONS(1896), [anon_sym_if] = ACTIONS(1896), [anon_sym_impl] = ACTIONS(1896), [anon_sym_let] = ACTIONS(1896), @@ -73236,8 +73770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1894), [anon_sym_true] = ACTIONS(1896), [anon_sym_false] = ACTIONS(1896), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1896), [sym_super] = ACTIONS(1896), [sym_crate] = ACTIONS(1896), @@ -73245,9 +73779,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1894), [sym_float_literal] = ACTIONS(1894), }, - [538] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [STATE(518)] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1898), [sym_identifier] = ACTIONS(1900), [anon_sym_SEMI] = ACTIONS(1898), @@ -73291,6 +73825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1900), [anon_sym_fn] = ACTIONS(1900), [anon_sym_for] = ACTIONS(1900), + [anon_sym_gen] = ACTIONS(1900), [anon_sym_if] = ACTIONS(1900), [anon_sym_impl] = ACTIONS(1900), [anon_sym_let] = ACTIONS(1900), @@ -73316,8 +73851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1898), [anon_sym_true] = ACTIONS(1900), [anon_sym_false] = ACTIONS(1900), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1900), [sym_super] = ACTIONS(1900), [sym_crate] = ACTIONS(1900), @@ -73325,9 +73860,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1898), [sym_float_literal] = ACTIONS(1898), }, - [539] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [STATE(519)] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(1902), [sym_identifier] = ACTIONS(1904), [anon_sym_SEMI] = ACTIONS(1902), @@ -73371,6 +73906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1904), [anon_sym_fn] = ACTIONS(1904), [anon_sym_for] = ACTIONS(1904), + [anon_sym_gen] = ACTIONS(1904), [anon_sym_if] = ACTIONS(1904), [anon_sym_impl] = ACTIONS(1904), [anon_sym_let] = ACTIONS(1904), @@ -73396,8 +73932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1902), [anon_sym_true] = ACTIONS(1904), [anon_sym_false] = ACTIONS(1904), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1904), [sym_super] = ACTIONS(1904), [sym_crate] = ACTIONS(1904), @@ -73405,9 +73941,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1902), [sym_float_literal] = ACTIONS(1902), }, - [540] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [STATE(520)] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(1906), [sym_identifier] = ACTIONS(1908), [anon_sym_SEMI] = ACTIONS(1906), @@ -73451,6 +73987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1908), [anon_sym_fn] = ACTIONS(1908), [anon_sym_for] = ACTIONS(1908), + [anon_sym_gen] = ACTIONS(1908), [anon_sym_if] = ACTIONS(1908), [anon_sym_impl] = ACTIONS(1908), [anon_sym_let] = ACTIONS(1908), @@ -73476,8 +74013,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1906), [anon_sym_true] = ACTIONS(1908), [anon_sym_false] = ACTIONS(1908), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1908), [sym_super] = ACTIONS(1908), [sym_crate] = ACTIONS(1908), @@ -73485,9 +74022,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1906), [sym_float_literal] = ACTIONS(1906), }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [STATE(521)] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1910), [sym_identifier] = ACTIONS(1912), [anon_sym_SEMI] = ACTIONS(1910), @@ -73531,6 +74068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1912), [anon_sym_fn] = ACTIONS(1912), [anon_sym_for] = ACTIONS(1912), + [anon_sym_gen] = ACTIONS(1912), [anon_sym_if] = ACTIONS(1912), [anon_sym_impl] = ACTIONS(1912), [anon_sym_let] = ACTIONS(1912), @@ -73556,8 +74094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1910), [anon_sym_true] = ACTIONS(1912), [anon_sym_false] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1912), [sym_super] = ACTIONS(1912), [sym_crate] = ACTIONS(1912), @@ -73565,9 +74103,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1910), [sym_float_literal] = ACTIONS(1910), }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [STATE(522)] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), [ts_builtin_sym_end] = ACTIONS(1914), [sym_identifier] = ACTIONS(1916), [anon_sym_SEMI] = ACTIONS(1914), @@ -73611,6 +74149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1916), [anon_sym_fn] = ACTIONS(1916), [anon_sym_for] = ACTIONS(1916), + [anon_sym_gen] = ACTIONS(1916), [anon_sym_if] = ACTIONS(1916), [anon_sym_impl] = ACTIONS(1916), [anon_sym_let] = ACTIONS(1916), @@ -73636,8 +74175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1914), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1916), [sym_super] = ACTIONS(1916), [sym_crate] = ACTIONS(1916), @@ -73645,9 +74184,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1914), [sym_float_literal] = ACTIONS(1914), }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [STATE(523)] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1918), [sym_identifier] = ACTIONS(1920), [anon_sym_SEMI] = ACTIONS(1918), @@ -73691,6 +74230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1920), [anon_sym_fn] = ACTIONS(1920), [anon_sym_for] = ACTIONS(1920), + [anon_sym_gen] = ACTIONS(1920), [anon_sym_if] = ACTIONS(1920), [anon_sym_impl] = ACTIONS(1920), [anon_sym_let] = ACTIONS(1920), @@ -73716,8 +74256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1918), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1920), [sym_super] = ACTIONS(1920), [sym_crate] = ACTIONS(1920), @@ -73725,9 +74265,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1918), [sym_float_literal] = ACTIONS(1918), }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [STATE(524)] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1922), [sym_identifier] = ACTIONS(1924), [anon_sym_SEMI] = ACTIONS(1922), @@ -73771,6 +74311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1924), [anon_sym_fn] = ACTIONS(1924), [anon_sym_for] = ACTIONS(1924), + [anon_sym_gen] = ACTIONS(1924), [anon_sym_if] = ACTIONS(1924), [anon_sym_impl] = ACTIONS(1924), [anon_sym_let] = ACTIONS(1924), @@ -73796,8 +74337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1922), [anon_sym_true] = ACTIONS(1924), [anon_sym_false] = ACTIONS(1924), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1924), [sym_super] = ACTIONS(1924), [sym_crate] = ACTIONS(1924), @@ -73805,9 +74346,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1922), [sym_float_literal] = ACTIONS(1922), }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [STATE(525)] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), [ts_builtin_sym_end] = ACTIONS(1926), [sym_identifier] = ACTIONS(1928), [anon_sym_SEMI] = ACTIONS(1926), @@ -73851,6 +74392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1928), [anon_sym_fn] = ACTIONS(1928), [anon_sym_for] = ACTIONS(1928), + [anon_sym_gen] = ACTIONS(1928), [anon_sym_if] = ACTIONS(1928), [anon_sym_impl] = ACTIONS(1928), [anon_sym_let] = ACTIONS(1928), @@ -73876,8 +74418,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1926), [anon_sym_true] = ACTIONS(1928), [anon_sym_false] = ACTIONS(1928), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1928), [sym_super] = ACTIONS(1928), [sym_crate] = ACTIONS(1928), @@ -73885,9 +74427,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1926), [sym_float_literal] = ACTIONS(1926), }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [STATE(526)] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(1930), [sym_identifier] = ACTIONS(1932), [anon_sym_SEMI] = ACTIONS(1930), @@ -73931,6 +74473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1932), [anon_sym_fn] = ACTIONS(1932), [anon_sym_for] = ACTIONS(1932), + [anon_sym_gen] = ACTIONS(1932), [anon_sym_if] = ACTIONS(1932), [anon_sym_impl] = ACTIONS(1932), [anon_sym_let] = ACTIONS(1932), @@ -73956,8 +74499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1930), [anon_sym_true] = ACTIONS(1932), [anon_sym_false] = ACTIONS(1932), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1932), [sym_super] = ACTIONS(1932), [sym_crate] = ACTIONS(1932), @@ -73965,9 +74508,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1930), [sym_float_literal] = ACTIONS(1930), }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [STATE(527)] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), [ts_builtin_sym_end] = ACTIONS(1934), [sym_identifier] = ACTIONS(1936), [anon_sym_SEMI] = ACTIONS(1934), @@ -74011,6 +74554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1936), [anon_sym_fn] = ACTIONS(1936), [anon_sym_for] = ACTIONS(1936), + [anon_sym_gen] = ACTIONS(1936), [anon_sym_if] = ACTIONS(1936), [anon_sym_impl] = ACTIONS(1936), [anon_sym_let] = ACTIONS(1936), @@ -74036,8 +74580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1934), [anon_sym_true] = ACTIONS(1936), [anon_sym_false] = ACTIONS(1936), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1936), [sym_super] = ACTIONS(1936), [sym_crate] = ACTIONS(1936), @@ -74045,9 +74589,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1934), [sym_float_literal] = ACTIONS(1934), }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [STATE(528)] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(1938), [sym_identifier] = ACTIONS(1940), [anon_sym_SEMI] = ACTIONS(1938), @@ -74091,6 +74635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1940), [anon_sym_fn] = ACTIONS(1940), [anon_sym_for] = ACTIONS(1940), + [anon_sym_gen] = ACTIONS(1940), [anon_sym_if] = ACTIONS(1940), [anon_sym_impl] = ACTIONS(1940), [anon_sym_let] = ACTIONS(1940), @@ -74116,8 +74661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1938), [anon_sym_true] = ACTIONS(1940), [anon_sym_false] = ACTIONS(1940), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1940), [sym_super] = ACTIONS(1940), [sym_crate] = ACTIONS(1940), @@ -74125,9 +74670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1938), [sym_float_literal] = ACTIONS(1938), }, - [549] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [STATE(529)] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1942), [sym_identifier] = ACTIONS(1944), [anon_sym_SEMI] = ACTIONS(1942), @@ -74171,6 +74716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1944), [anon_sym_fn] = ACTIONS(1944), [anon_sym_for] = ACTIONS(1944), + [anon_sym_gen] = ACTIONS(1944), [anon_sym_if] = ACTIONS(1944), [anon_sym_impl] = ACTIONS(1944), [anon_sym_let] = ACTIONS(1944), @@ -74196,8 +74742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1942), [anon_sym_true] = ACTIONS(1944), [anon_sym_false] = ACTIONS(1944), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1944), [sym_super] = ACTIONS(1944), [sym_crate] = ACTIONS(1944), @@ -74205,9 +74751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1942), [sym_float_literal] = ACTIONS(1942), }, - [550] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [STATE(530)] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1946), [sym_identifier] = ACTIONS(1948), [anon_sym_SEMI] = ACTIONS(1946), @@ -74251,6 +74797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1948), [anon_sym_fn] = ACTIONS(1948), [anon_sym_for] = ACTIONS(1948), + [anon_sym_gen] = ACTIONS(1948), [anon_sym_if] = ACTIONS(1948), [anon_sym_impl] = ACTIONS(1948), [anon_sym_let] = ACTIONS(1948), @@ -74276,8 +74823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1946), [anon_sym_true] = ACTIONS(1948), [anon_sym_false] = ACTIONS(1948), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1948), [sym_super] = ACTIONS(1948), [sym_crate] = ACTIONS(1948), @@ -74285,2898 +74832,1176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1946), [sym_float_literal] = ACTIONS(1946), }, - [551] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [anon_sym_try] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym__raw_string_literal_start] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), - }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [anon_sym_try] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym__raw_string_literal_start] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), - }, - [553] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_macro_rules_BANG] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_u8] = ACTIONS(1960), - [anon_sym_i8] = ACTIONS(1960), - [anon_sym_u16] = ACTIONS(1960), - [anon_sym_i16] = ACTIONS(1960), - [anon_sym_u32] = ACTIONS(1960), - [anon_sym_i32] = ACTIONS(1960), - [anon_sym_u64] = ACTIONS(1960), - [anon_sym_i64] = ACTIONS(1960), - [anon_sym_u128] = ACTIONS(1960), - [anon_sym_i128] = ACTIONS(1960), - [anon_sym_isize] = ACTIONS(1960), - [anon_sym_usize] = ACTIONS(1960), - [anon_sym_f32] = ACTIONS(1960), - [anon_sym_f64] = ACTIONS(1960), - [anon_sym_bool] = ACTIONS(1960), - [anon_sym_str] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_fn] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_impl] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_mod] = ACTIONS(1960), - [anon_sym_pub] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_trait] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_unsafe] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [sym_integer_literal] = ACTIONS(1958), - [aux_sym_string_literal_token1] = ACTIONS(1958), - [sym_char_literal] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym__raw_string_literal_start] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), - }, - [554] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym__raw_string_literal_start] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), - }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym__raw_string_literal_start] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), - }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), + [STATE(531)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [aux_sym_declaration_list_repeat1] = STATE(531), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_u8] = ACTIONS(1961), + [anon_sym_i8] = ACTIONS(1961), + [anon_sym_u16] = ACTIONS(1961), + [anon_sym_i16] = ACTIONS(1961), + [anon_sym_u32] = ACTIONS(1961), + [anon_sym_i32] = ACTIONS(1961), + [anon_sym_u64] = ACTIONS(1961), + [anon_sym_i64] = ACTIONS(1961), + [anon_sym_u128] = ACTIONS(1961), + [anon_sym_i128] = ACTIONS(1961), + [anon_sym_isize] = ACTIONS(1961), + [anon_sym_usize] = ACTIONS(1961), + [anon_sym_f32] = ACTIONS(1961), + [anon_sym_f64] = ACTIONS(1961), + [anon_sym_bool] = ACTIONS(1961), + [anon_sym_str] = ACTIONS(1961), + [anon_sym_char] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1967), [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym__raw_string_literal_start] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), - }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1973), [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym__raw_string_literal_start] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), - }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [anon_sym_try] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym__raw_string_literal_start] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), - }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym__raw_string_literal_start] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), - }, - [560] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym__raw_string_literal_start] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), - }, - [561] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym__raw_string_literal_start] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), - }, - [562] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym__raw_string_literal_start] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), - }, - [563] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1985), + [anon_sym_gen] = ACTIONS(1988), + [anon_sym_impl] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1997), [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym__raw_string_literal_start] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), - }, - [564] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym__raw_string_literal_start] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), - }, - [565] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym__raw_string_literal_start] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), - }, - [566] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2006), + [anon_sym_trait] = ACTIONS(2009), [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym__raw_string_literal_start] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), - }, - [567] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym__raw_string_literal_start] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - }, - [568] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym__raw_string_literal_start] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), - }, - [569] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2021), [anon_sym_extern] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym__raw_string_literal_start] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), - }, - [570] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym__raw_string_literal_start] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), - }, - [571] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym__raw_string_literal_start] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - }, - [572] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_macro_rules_BANG] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2034), - [aux_sym_string_literal_token1] = ACTIONS(2034), - [sym_char_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym__raw_string_literal_start] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), - }, - [573] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_macro_rules_BANG] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2038), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym__raw_string_literal_start] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), - }, - [574] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_macro_rules_BANG] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_move] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [aux_sym_string_literal_token1] = ACTIONS(2042), - [sym_char_literal] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2042), - [sym__raw_string_literal_start] = ACTIONS(2042), - [sym_float_literal] = ACTIONS(2042), - }, - [575] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_macro_rules_BANG] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_u8] = ACTIONS(2048), - [anon_sym_i8] = ACTIONS(2048), - [anon_sym_u16] = ACTIONS(2048), - [anon_sym_i16] = ACTIONS(2048), - [anon_sym_u32] = ACTIONS(2048), - [anon_sym_i32] = ACTIONS(2048), - [anon_sym_u64] = ACTIONS(2048), - [anon_sym_i64] = ACTIONS(2048), - [anon_sym_u128] = ACTIONS(2048), - [anon_sym_i128] = ACTIONS(2048), - [anon_sym_isize] = ACTIONS(2048), - [anon_sym_usize] = ACTIONS(2048), - [anon_sym_f32] = ACTIONS(2048), - [anon_sym_f64] = ACTIONS(2048), - [anon_sym_bool] = ACTIONS(2048), - [anon_sym_str] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_fn] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_impl] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_loop] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_mod] = ACTIONS(2048), - [anon_sym_pub] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_trait] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_unsafe] = ACTIONS(2048), - [anon_sym_use] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_move] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [sym_integer_literal] = ACTIONS(2046), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_crate] = ACTIONS(2048), - [sym_metavariable] = ACTIONS(2046), - [sym__raw_string_literal_start] = ACTIONS(2046), - [sym_float_literal] = ACTIONS(2046), - }, - [576] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_macro_rules_BANG] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_COLON_COLON] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_move] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2050), - [sym__raw_string_literal_start] = ACTIONS(2050), - [sym_float_literal] = ACTIONS(2050), - }, - [577] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_macro_rules_BANG] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2054), - [anon_sym_COLON_COLON] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_move] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2054), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_metavariable] = ACTIONS(2054), - [sym__raw_string_literal_start] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - }, - [578] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_macro_rules_BANG] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2060), - [anon_sym_i8] = ACTIONS(2060), - [anon_sym_u16] = ACTIONS(2060), - [anon_sym_i16] = ACTIONS(2060), - [anon_sym_u32] = ACTIONS(2060), - [anon_sym_i32] = ACTIONS(2060), - [anon_sym_u64] = ACTIONS(2060), - [anon_sym_i64] = ACTIONS(2060), - [anon_sym_u128] = ACTIONS(2060), - [anon_sym_i128] = ACTIONS(2060), - [anon_sym_isize] = ACTIONS(2060), - [anon_sym_usize] = ACTIONS(2060), - [anon_sym_f32] = ACTIONS(2060), - [anon_sym_f64] = ACTIONS(2060), - [anon_sym_bool] = ACTIONS(2060), - [anon_sym_str] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2058), - [anon_sym_COLON_COLON] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_fn] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_impl] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_loop] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_mod] = ACTIONS(2060), - [anon_sym_pub] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_trait] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_unsafe] = ACTIONS(2060), - [anon_sym_use] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2060), - [anon_sym_false] = ACTIONS(2060), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_crate] = ACTIONS(2060), - [sym_metavariable] = ACTIONS(2058), - [sym__raw_string_literal_start] = ACTIONS(2058), - [sym_float_literal] = ACTIONS(2058), - }, - [579] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_macro_rules_BANG] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_u8] = ACTIONS(2064), - [anon_sym_i8] = ACTIONS(2064), - [anon_sym_u16] = ACTIONS(2064), - [anon_sym_i16] = ACTIONS(2064), - [anon_sym_u32] = ACTIONS(2064), - [anon_sym_i32] = ACTIONS(2064), - [anon_sym_u64] = ACTIONS(2064), - [anon_sym_i64] = ACTIONS(2064), - [anon_sym_u128] = ACTIONS(2064), - [anon_sym_i128] = ACTIONS(2064), - [anon_sym_isize] = ACTIONS(2064), - [anon_sym_usize] = ACTIONS(2064), - [anon_sym_f32] = ACTIONS(2064), - [anon_sym_f64] = ACTIONS(2064), - [anon_sym_bool] = ACTIONS(2064), - [anon_sym_str] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_fn] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_impl] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_mod] = ACTIONS(2064), - [anon_sym_pub] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_trait] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [anon_sym_move] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [aux_sym_string_literal_token1] = ACTIONS(2062), - [sym_char_literal] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2064), - [sym_super] = ACTIONS(2064), - [sym_crate] = ACTIONS(2064), - [sym_metavariable] = ACTIONS(2062), - [sym__raw_string_literal_start] = ACTIONS(2062), - [sym_float_literal] = ACTIONS(2062), - }, - [580] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_macro_rules_BANG] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_u8] = ACTIONS(2068), - [anon_sym_i8] = ACTIONS(2068), - [anon_sym_u16] = ACTIONS(2068), - [anon_sym_i16] = ACTIONS(2068), - [anon_sym_u32] = ACTIONS(2068), - [anon_sym_i32] = ACTIONS(2068), - [anon_sym_u64] = ACTIONS(2068), - [anon_sym_i64] = ACTIONS(2068), - [anon_sym_u128] = ACTIONS(2068), - [anon_sym_i128] = ACTIONS(2068), - [anon_sym_isize] = ACTIONS(2068), - [anon_sym_usize] = ACTIONS(2068), - [anon_sym_f32] = ACTIONS(2068), - [anon_sym_f64] = ACTIONS(2068), - [anon_sym_bool] = ACTIONS(2068), - [anon_sym_str] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_COLON_COLON] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_impl] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_mod] = ACTIONS(2068), - [anon_sym_pub] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_trait] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_unsafe] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_move] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [aux_sym_string_literal_token1] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2066), - [sym__raw_string_literal_start] = ACTIONS(2066), - [sym_float_literal] = ACTIONS(2066), - }, - [581] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_macro_rules_BANG] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_u8] = ACTIONS(2072), - [anon_sym_i8] = ACTIONS(2072), - [anon_sym_u16] = ACTIONS(2072), - [anon_sym_i16] = ACTIONS(2072), - [anon_sym_u32] = ACTIONS(2072), - [anon_sym_i32] = ACTIONS(2072), - [anon_sym_u64] = ACTIONS(2072), - [anon_sym_i64] = ACTIONS(2072), - [anon_sym_u128] = ACTIONS(2072), - [anon_sym_i128] = ACTIONS(2072), - [anon_sym_isize] = ACTIONS(2072), - [anon_sym_usize] = ACTIONS(2072), - [anon_sym_f32] = ACTIONS(2072), - [anon_sym_f64] = ACTIONS(2072), - [anon_sym_bool] = ACTIONS(2072), - [anon_sym_str] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_COLON_COLON] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_impl] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_mod] = ACTIONS(2072), - [anon_sym_pub] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_trait] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_unsafe] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [anon_sym_move] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [aux_sym_string_literal_token1] = ACTIONS(2070), - [sym_char_literal] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2070), - [sym__raw_string_literal_start] = ACTIONS(2070), - [sym_float_literal] = ACTIONS(2070), - }, - [582] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_macro_rules_BANG] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_u8] = ACTIONS(2076), - [anon_sym_i8] = ACTIONS(2076), - [anon_sym_u16] = ACTIONS(2076), - [anon_sym_i16] = ACTIONS(2076), - [anon_sym_u32] = ACTIONS(2076), - [anon_sym_i32] = ACTIONS(2076), - [anon_sym_u64] = ACTIONS(2076), - [anon_sym_i64] = ACTIONS(2076), - [anon_sym_u128] = ACTIONS(2076), - [anon_sym_i128] = ACTIONS(2076), - [anon_sym_isize] = ACTIONS(2076), - [anon_sym_usize] = ACTIONS(2076), - [anon_sym_f32] = ACTIONS(2076), - [anon_sym_f64] = ACTIONS(2076), - [anon_sym_bool] = ACTIONS(2076), - [anon_sym_str] = ACTIONS(2076), - [anon_sym_char] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_default] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_impl] = ACTIONS(2076), - [anon_sym_let] = ACTIONS(2076), - [anon_sym_loop] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_mod] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_trait] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_use] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2076), - [sym_integer_literal] = ACTIONS(2074), - [aux_sym_string_literal_token1] = ACTIONS(2074), - [sym_char_literal] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2076), - [sym_super] = ACTIONS(2076), - [sym_crate] = ACTIONS(2076), - [sym_metavariable] = ACTIONS(2074), - [sym__raw_string_literal_start] = ACTIONS(2074), - [sym_float_literal] = ACTIONS(2074), - }, - [583] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_macro_rules_BANG] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_u8] = ACTIONS(2080), - [anon_sym_i8] = ACTIONS(2080), - [anon_sym_u16] = ACTIONS(2080), - [anon_sym_i16] = ACTIONS(2080), - [anon_sym_u32] = ACTIONS(2080), - [anon_sym_i32] = ACTIONS(2080), - [anon_sym_u64] = ACTIONS(2080), - [anon_sym_i64] = ACTIONS(2080), - [anon_sym_u128] = ACTIONS(2080), - [anon_sym_i128] = ACTIONS(2080), - [anon_sym_isize] = ACTIONS(2080), - [anon_sym_usize] = ACTIONS(2080), - [anon_sym_f32] = ACTIONS(2080), - [anon_sym_f64] = ACTIONS(2080), - [anon_sym_bool] = ACTIONS(2080), - [anon_sym_str] = ACTIONS(2080), - [anon_sym_char] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_fn] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_impl] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_loop] = ACTIONS(2080), - [anon_sym_match] = ACTIONS(2080), - [anon_sym_mod] = ACTIONS(2080), - [anon_sym_pub] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_struct] = ACTIONS(2080), - [anon_sym_trait] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_union] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(2080), - [anon_sym_use] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [sym_integer_literal] = ACTIONS(2078), - [aux_sym_string_literal_token1] = ACTIONS(2078), - [sym_char_literal] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_crate] = ACTIONS(2080), - [sym_metavariable] = ACTIONS(2078), - [sym__raw_string_literal_start] = ACTIONS(2078), - [sym_float_literal] = ACTIONS(2078), - }, - [584] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_macro_rules_BANG] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_u8] = ACTIONS(2084), - [anon_sym_i8] = ACTIONS(2084), - [anon_sym_u16] = ACTIONS(2084), - [anon_sym_i16] = ACTIONS(2084), - [anon_sym_u32] = ACTIONS(2084), - [anon_sym_i32] = ACTIONS(2084), - [anon_sym_u64] = ACTIONS(2084), - [anon_sym_i64] = ACTIONS(2084), - [anon_sym_u128] = ACTIONS(2084), - [anon_sym_i128] = ACTIONS(2084), - [anon_sym_isize] = ACTIONS(2084), - [anon_sym_usize] = ACTIONS(2084), - [anon_sym_f32] = ACTIONS(2084), - [anon_sym_f64] = ACTIONS(2084), - [anon_sym_bool] = ACTIONS(2084), - [anon_sym_str] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_fn] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_impl] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_loop] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_mod] = ACTIONS(2084), - [anon_sym_pub] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_trait] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_unsafe] = ACTIONS(2084), - [anon_sym_use] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2082), - [aux_sym_string_literal_token1] = ACTIONS(2082), - [sym_char_literal] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2082), - [sym__raw_string_literal_start] = ACTIONS(2082), - [sym_float_literal] = ACTIONS(2082), - }, - [585] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2086), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2027), + [sym_super] = ACTIONS(2027), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2033), + }, + [STATE(532)] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_macro_rules_BANG] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_u8] = ACTIONS(2038), + [anon_sym_i8] = ACTIONS(2038), + [anon_sym_u16] = ACTIONS(2038), + [anon_sym_i16] = ACTIONS(2038), + [anon_sym_u32] = ACTIONS(2038), + [anon_sym_i32] = ACTIONS(2038), + [anon_sym_u64] = ACTIONS(2038), + [anon_sym_i64] = ACTIONS(2038), + [anon_sym_u128] = ACTIONS(2038), + [anon_sym_i128] = ACTIONS(2038), + [anon_sym_isize] = ACTIONS(2038), + [anon_sym_usize] = ACTIONS(2038), + [anon_sym_f32] = ACTIONS(2038), + [anon_sym_f64] = ACTIONS(2038), + [anon_sym_bool] = ACTIONS(2038), + [anon_sym_str] = ACTIONS(2038), + [anon_sym_char] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_fn] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_gen] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_impl] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_mod] = ACTIONS(2038), + [anon_sym_pub] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_trait] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_unsafe] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_move] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2036), + [aux_sym_string_literal_token1] = ACTIONS(2036), + [sym_char_literal] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2036), + [sym__raw_string_literal_start] = ACTIONS(2036), + [sym_float_literal] = ACTIONS(2036), + }, + [STATE(533)] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_macro_rules_BANG] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_u8] = ACTIONS(2042), + [anon_sym_i8] = ACTIONS(2042), + [anon_sym_u16] = ACTIONS(2042), + [anon_sym_i16] = ACTIONS(2042), + [anon_sym_u32] = ACTIONS(2042), + [anon_sym_i32] = ACTIONS(2042), + [anon_sym_u64] = ACTIONS(2042), + [anon_sym_i64] = ACTIONS(2042), + [anon_sym_u128] = ACTIONS(2042), + [anon_sym_i128] = ACTIONS(2042), + [anon_sym_isize] = ACTIONS(2042), + [anon_sym_usize] = ACTIONS(2042), + [anon_sym_f32] = ACTIONS(2042), + [anon_sym_f64] = ACTIONS(2042), + [anon_sym_bool] = ACTIONS(2042), + [anon_sym_str] = ACTIONS(2042), + [anon_sym_char] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_DOT_DOT] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_fn] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_gen] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_impl] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_mod] = ACTIONS(2042), + [anon_sym_pub] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_struct] = ACTIONS(2042), + [anon_sym_trait] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_unsafe] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_yield] = ACTIONS(2042), + [anon_sym_move] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [sym_integer_literal] = ACTIONS(2040), + [aux_sym_string_literal_token1] = ACTIONS(2040), + [sym_char_literal] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), + [sym_metavariable] = ACTIONS(2040), + [sym__raw_string_literal_start] = ACTIONS(2040), + [sym_float_literal] = ACTIONS(2040), + }, + [STATE(534)] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_macro_rules_BANG] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_u8] = ACTIONS(2046), + [anon_sym_i8] = ACTIONS(2046), + [anon_sym_u16] = ACTIONS(2046), + [anon_sym_i16] = ACTIONS(2046), + [anon_sym_u32] = ACTIONS(2046), + [anon_sym_i32] = ACTIONS(2046), + [anon_sym_u64] = ACTIONS(2046), + [anon_sym_i64] = ACTIONS(2046), + [anon_sym_u128] = ACTIONS(2046), + [anon_sym_i128] = ACTIONS(2046), + [anon_sym_isize] = ACTIONS(2046), + [anon_sym_usize] = ACTIONS(2046), + [anon_sym_f32] = ACTIONS(2046), + [anon_sym_f64] = ACTIONS(2046), + [anon_sym_bool] = ACTIONS(2046), + [anon_sym_str] = ACTIONS(2046), + [anon_sym_char] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_DOT_DOT] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_fn] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_gen] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_impl] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_mod] = ACTIONS(2046), + [anon_sym_pub] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_trait] = ACTIONS(2046), + [anon_sym_type] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_unsafe] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_yield] = ACTIONS(2046), + [anon_sym_move] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [sym_integer_literal] = ACTIONS(2044), + [aux_sym_string_literal_token1] = ACTIONS(2044), + [sym_char_literal] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), + [sym_metavariable] = ACTIONS(2044), + [sym__raw_string_literal_start] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2044), + }, + [STATE(535)] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), + [ts_builtin_sym_end] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_macro_rules_BANG] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2050), + [anon_sym_i8] = ACTIONS(2050), + [anon_sym_u16] = ACTIONS(2050), + [anon_sym_i16] = ACTIONS(2050), + [anon_sym_u32] = ACTIONS(2050), + [anon_sym_i32] = ACTIONS(2050), + [anon_sym_u64] = ACTIONS(2050), + [anon_sym_i64] = ACTIONS(2050), + [anon_sym_u128] = ACTIONS(2050), + [anon_sym_i128] = ACTIONS(2050), + [anon_sym_isize] = ACTIONS(2050), + [anon_sym_usize] = ACTIONS(2050), + [anon_sym_f32] = ACTIONS(2050), + [anon_sym_f64] = ACTIONS(2050), + [anon_sym_bool] = ACTIONS(2050), + [anon_sym_str] = ACTIONS(2050), + [anon_sym_char] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_DOT_DOT] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_async] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_fn] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_gen] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_impl] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_mod] = ACTIONS(2050), + [anon_sym_pub] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2050), + [anon_sym_trait] = ACTIONS(2050), + [anon_sym_type] = ACTIONS(2050), + [anon_sym_union] = ACTIONS(2050), + [anon_sym_unsafe] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_yield] = ACTIONS(2050), + [anon_sym_move] = ACTIONS(2050), + [anon_sym_try] = ACTIONS(2050), + [sym_integer_literal] = ACTIONS(2048), + [aux_sym_string_literal_token1] = ACTIONS(2048), + [sym_char_literal] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_metavariable] = ACTIONS(2048), + [sym__raw_string_literal_start] = ACTIONS(2048), + [sym_float_literal] = ACTIONS(2048), + }, + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_macro_rules_BANG] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2054), + [anon_sym_i8] = ACTIONS(2054), + [anon_sym_u16] = ACTIONS(2054), + [anon_sym_i16] = ACTIONS(2054), + [anon_sym_u32] = ACTIONS(2054), + [anon_sym_i32] = ACTIONS(2054), + [anon_sym_u64] = ACTIONS(2054), + [anon_sym_i64] = ACTIONS(2054), + [anon_sym_u128] = ACTIONS(2054), + [anon_sym_i128] = ACTIONS(2054), + [anon_sym_isize] = ACTIONS(2054), + [anon_sym_usize] = ACTIONS(2054), + [anon_sym_f32] = ACTIONS(2054), + [anon_sym_f64] = ACTIONS(2054), + [anon_sym_bool] = ACTIONS(2054), + [anon_sym_str] = ACTIONS(2054), + [anon_sym_char] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_COLON_COLON] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_fn] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_gen] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_impl] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_mod] = ACTIONS(2054), + [anon_sym_pub] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2054), + [anon_sym_trait] = ACTIONS(2054), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2054), + [anon_sym_unsafe] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_yield] = ACTIONS(2054), + [anon_sym_move] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [sym_integer_literal] = ACTIONS(2052), + [aux_sym_string_literal_token1] = ACTIONS(2052), + [sym_char_literal] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), + [sym_metavariable] = ACTIONS(2052), + [sym__raw_string_literal_start] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), + }, + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_macro_rules_BANG] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_u8] = ACTIONS(2058), + [anon_sym_i8] = ACTIONS(2058), + [anon_sym_u16] = ACTIONS(2058), + [anon_sym_i16] = ACTIONS(2058), + [anon_sym_u32] = ACTIONS(2058), + [anon_sym_i32] = ACTIONS(2058), + [anon_sym_u64] = ACTIONS(2058), + [anon_sym_i64] = ACTIONS(2058), + [anon_sym_u128] = ACTIONS(2058), + [anon_sym_i128] = ACTIONS(2058), + [anon_sym_isize] = ACTIONS(2058), + [anon_sym_usize] = ACTIONS(2058), + [anon_sym_f32] = ACTIONS(2058), + [anon_sym_f64] = ACTIONS(2058), + [anon_sym_bool] = ACTIONS(2058), + [anon_sym_str] = ACTIONS(2058), + [anon_sym_char] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_DOT_DOT] = ACTIONS(2056), + [anon_sym_COLON_COLON] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_gen] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_impl] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_mod] = ACTIONS(2058), + [anon_sym_pub] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_trait] = ACTIONS(2058), + [anon_sym_type] = ACTIONS(2058), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_yield] = ACTIONS(2058), + [anon_sym_move] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [sym_integer_literal] = ACTIONS(2056), + [aux_sym_string_literal_token1] = ACTIONS(2056), + [sym_char_literal] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), + [sym_metavariable] = ACTIONS(2056), + [sym__raw_string_literal_start] = ACTIONS(2056), + [sym_float_literal] = ACTIONS(2056), + }, + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_macro_rules_BANG] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_u8] = ACTIONS(2062), + [anon_sym_i8] = ACTIONS(2062), + [anon_sym_u16] = ACTIONS(2062), + [anon_sym_i16] = ACTIONS(2062), + [anon_sym_u32] = ACTIONS(2062), + [anon_sym_i32] = ACTIONS(2062), + [anon_sym_u64] = ACTIONS(2062), + [anon_sym_i64] = ACTIONS(2062), + [anon_sym_u128] = ACTIONS(2062), + [anon_sym_i128] = ACTIONS(2062), + [anon_sym_isize] = ACTIONS(2062), + [anon_sym_usize] = ACTIONS(2062), + [anon_sym_f32] = ACTIONS(2062), + [anon_sym_f64] = ACTIONS(2062), + [anon_sym_bool] = ACTIONS(2062), + [anon_sym_str] = ACTIONS(2062), + [anon_sym_char] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2060), + [anon_sym_COLON_COLON] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_async] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_fn] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_gen] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_impl] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_mod] = ACTIONS(2062), + [anon_sym_pub] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_trait] = ACTIONS(2062), + [anon_sym_type] = ACTIONS(2062), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsafe] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_yield] = ACTIONS(2062), + [anon_sym_move] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [sym_integer_literal] = ACTIONS(2060), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_crate] = ACTIONS(2062), + [sym_metavariable] = ACTIONS(2060), + [sym__raw_string_literal_start] = ACTIONS(2060), + [sym_float_literal] = ACTIONS(2060), + }, + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_macro_rules_BANG] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_gen] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_yield] = ACTIONS(2066), + [anon_sym_move] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2064), + [aux_sym_string_literal_token1] = ACTIONS(2064), + [sym_char_literal] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2064), + [sym__raw_string_literal_start] = ACTIONS(2064), + [sym_float_literal] = ACTIONS(2064), + }, + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_macro_rules_BANG] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_u8] = ACTIONS(2070), + [anon_sym_i8] = ACTIONS(2070), + [anon_sym_u16] = ACTIONS(2070), + [anon_sym_i16] = ACTIONS(2070), + [anon_sym_u32] = ACTIONS(2070), + [anon_sym_i32] = ACTIONS(2070), + [anon_sym_u64] = ACTIONS(2070), + [anon_sym_i64] = ACTIONS(2070), + [anon_sym_u128] = ACTIONS(2070), + [anon_sym_i128] = ACTIONS(2070), + [anon_sym_isize] = ACTIONS(2070), + [anon_sym_usize] = ACTIONS(2070), + [anon_sym_f32] = ACTIONS(2070), + [anon_sym_f64] = ACTIONS(2070), + [anon_sym_bool] = ACTIONS(2070), + [anon_sym_str] = ACTIONS(2070), + [anon_sym_char] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_COLON_COLON] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_async] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_fn] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_gen] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_impl] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_mod] = ACTIONS(2070), + [anon_sym_pub] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_struct] = ACTIONS(2070), + [anon_sym_trait] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_union] = ACTIONS(2070), + [anon_sym_unsafe] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_yield] = ACTIONS(2070), + [anon_sym_move] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [sym_integer_literal] = ACTIONS(2068), + [aux_sym_string_literal_token1] = ACTIONS(2068), + [sym_char_literal] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2070), + [sym_super] = ACTIONS(2070), + [sym_crate] = ACTIONS(2070), + [sym_metavariable] = ACTIONS(2068), + [sym__raw_string_literal_start] = ACTIONS(2068), + [sym_float_literal] = ACTIONS(2068), + }, + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_macro_rules_BANG] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_u8] = ACTIONS(2074), + [anon_sym_i8] = ACTIONS(2074), + [anon_sym_u16] = ACTIONS(2074), + [anon_sym_i16] = ACTIONS(2074), + [anon_sym_u32] = ACTIONS(2074), + [anon_sym_i32] = ACTIONS(2074), + [anon_sym_u64] = ACTIONS(2074), + [anon_sym_i64] = ACTIONS(2074), + [anon_sym_u128] = ACTIONS(2074), + [anon_sym_i128] = ACTIONS(2074), + [anon_sym_isize] = ACTIONS(2074), + [anon_sym_usize] = ACTIONS(2074), + [anon_sym_f32] = ACTIONS(2074), + [anon_sym_f64] = ACTIONS(2074), + [anon_sym_bool] = ACTIONS(2074), + [anon_sym_str] = ACTIONS(2074), + [anon_sym_char] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_COLON_COLON] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_const] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_default] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + [anon_sym_fn] = ACTIONS(2074), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_gen] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_impl] = ACTIONS(2074), + [anon_sym_let] = ACTIONS(2074), + [anon_sym_loop] = ACTIONS(2074), + [anon_sym_match] = ACTIONS(2074), + [anon_sym_mod] = ACTIONS(2074), + [anon_sym_pub] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_struct] = ACTIONS(2074), + [anon_sym_trait] = ACTIONS(2074), + [anon_sym_type] = ACTIONS(2074), + [anon_sym_union] = ACTIONS(2074), + [anon_sym_unsafe] = ACTIONS(2074), + [anon_sym_use] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2074), + [anon_sym_yield] = ACTIONS(2074), + [anon_sym_move] = ACTIONS(2074), + [anon_sym_try] = ACTIONS(2074), + [sym_integer_literal] = ACTIONS(2072), + [aux_sym_string_literal_token1] = ACTIONS(2072), + [sym_char_literal] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2074), + [sym_super] = ACTIONS(2074), + [sym_crate] = ACTIONS(2074), + [sym_metavariable] = ACTIONS(2072), + [sym__raw_string_literal_start] = ACTIONS(2072), + [sym_float_literal] = ACTIONS(2072), + }, + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [ts_builtin_sym_end] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_macro_rules_BANG] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_u8] = ACTIONS(2078), + [anon_sym_i8] = ACTIONS(2078), + [anon_sym_u16] = ACTIONS(2078), + [anon_sym_i16] = ACTIONS(2078), + [anon_sym_u32] = ACTIONS(2078), + [anon_sym_i32] = ACTIONS(2078), + [anon_sym_u64] = ACTIONS(2078), + [anon_sym_i64] = ACTIONS(2078), + [anon_sym_u128] = ACTIONS(2078), + [anon_sym_i128] = ACTIONS(2078), + [anon_sym_isize] = ACTIONS(2078), + [anon_sym_usize] = ACTIONS(2078), + [anon_sym_f32] = ACTIONS(2078), + [anon_sym_f64] = ACTIONS(2078), + [anon_sym_bool] = ACTIONS(2078), + [anon_sym_str] = ACTIONS(2078), + [anon_sym_char] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2076), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_async] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_default] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [anon_sym_fn] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_gen] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_impl] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_mod] = ACTIONS(2078), + [anon_sym_pub] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_struct] = ACTIONS(2078), + [anon_sym_trait] = ACTIONS(2078), + [anon_sym_type] = ACTIONS(2078), + [anon_sym_union] = ACTIONS(2078), + [anon_sym_unsafe] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_yield] = ACTIONS(2078), + [anon_sym_move] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [sym_integer_literal] = ACTIONS(2076), + [aux_sym_string_literal_token1] = ACTIONS(2076), + [sym_char_literal] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2078), + [sym_super] = ACTIONS(2078), + [sym_crate] = ACTIONS(2078), + [sym_metavariable] = ACTIONS(2076), + [sym__raw_string_literal_start] = ACTIONS(2076), + [sym_float_literal] = ACTIONS(2076), + }, + [STATE(543)] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), + [ts_builtin_sym_end] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_macro_rules_BANG] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2082), + [anon_sym_i8] = ACTIONS(2082), + [anon_sym_u16] = ACTIONS(2082), + [anon_sym_i16] = ACTIONS(2082), + [anon_sym_u32] = ACTIONS(2082), + [anon_sym_i32] = ACTIONS(2082), + [anon_sym_u64] = ACTIONS(2082), + [anon_sym_i64] = ACTIONS(2082), + [anon_sym_u128] = ACTIONS(2082), + [anon_sym_i128] = ACTIONS(2082), + [anon_sym_isize] = ACTIONS(2082), + [anon_sym_usize] = ACTIONS(2082), + [anon_sym_f32] = ACTIONS(2082), + [anon_sym_f64] = ACTIONS(2082), + [anon_sym_bool] = ACTIONS(2082), + [anon_sym_str] = ACTIONS(2082), + [anon_sym_char] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2080), + [anon_sym_DOT_DOT] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_default] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_fn] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_gen] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_impl] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_mod] = ACTIONS(2082), + [anon_sym_pub] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_struct] = ACTIONS(2082), + [anon_sym_trait] = ACTIONS(2082), + [anon_sym_type] = ACTIONS(2082), + [anon_sym_union] = ACTIONS(2082), + [anon_sym_unsafe] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2082), + [anon_sym_move] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [sym_integer_literal] = ACTIONS(2080), + [aux_sym_string_literal_token1] = ACTIONS(2080), + [sym_char_literal] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2082), + [sym_super] = ACTIONS(2082), + [sym_crate] = ACTIONS(2082), + [sym_metavariable] = ACTIONS(2080), + [sym__raw_string_literal_start] = ACTIONS(2080), + [sym_float_literal] = ACTIONS(2080), + }, + [STATE(544)] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_macro_rules_BANG] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_u8] = ACTIONS(2086), + [anon_sym_i8] = ACTIONS(2086), + [anon_sym_u16] = ACTIONS(2086), + [anon_sym_i16] = ACTIONS(2086), + [anon_sym_u32] = ACTIONS(2086), + [anon_sym_i32] = ACTIONS(2086), + [anon_sym_u64] = ACTIONS(2086), + [anon_sym_i64] = ACTIONS(2086), + [anon_sym_u128] = ACTIONS(2086), + [anon_sym_i128] = ACTIONS(2086), + [anon_sym_isize] = ACTIONS(2086), + [anon_sym_usize] = ACTIONS(2086), + [anon_sym_f32] = ACTIONS(2086), + [anon_sym_f64] = ACTIONS(2086), + [anon_sym_bool] = ACTIONS(2086), + [anon_sym_str] = ACTIONS(2086), + [anon_sym_char] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2084), + [anon_sym_COLON_COLON] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_default] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_fn] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_gen] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_impl] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_mod] = ACTIONS(2086), + [anon_sym_pub] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(2086), + [anon_sym_trait] = ACTIONS(2086), + [anon_sym_type] = ACTIONS(2086), + [anon_sym_union] = ACTIONS(2086), + [anon_sym_unsafe] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_yield] = ACTIONS(2086), + [anon_sym_move] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [sym_integer_literal] = ACTIONS(2084), + [aux_sym_string_literal_token1] = ACTIONS(2084), + [sym_char_literal] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2086), + [sym_super] = ACTIONS(2086), + [sym_crate] = ACTIONS(2086), + [sym_metavariable] = ACTIONS(2084), + [sym__raw_string_literal_start] = ACTIONS(2084), + [sym_float_literal] = ACTIONS(2084), + }, + [STATE(545)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [aux_sym_declaration_list_repeat1] = STATE(531), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_macro_rules_BANG] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_u8] = ACTIONS(2088), - [anon_sym_i8] = ACTIONS(2088), - [anon_sym_u16] = ACTIONS(2088), - [anon_sym_i16] = ACTIONS(2088), - [anon_sym_u32] = ACTIONS(2088), - [anon_sym_i32] = ACTIONS(2088), - [anon_sym_u64] = ACTIONS(2088), - [anon_sym_i64] = ACTIONS(2088), - [anon_sym_u128] = ACTIONS(2088), - [anon_sym_i128] = ACTIONS(2088), - [anon_sym_isize] = ACTIONS(2088), - [anon_sym_usize] = ACTIONS(2088), - [anon_sym_f32] = ACTIONS(2088), - [anon_sym_f64] = ACTIONS(2088), - [anon_sym_bool] = ACTIONS(2088), - [anon_sym_str] = ACTIONS(2088), - [anon_sym_char] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_COLON_COLON] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_enum] = ACTIONS(2088), - [anon_sym_fn] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_impl] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_mod] = ACTIONS(2088), - [anon_sym_pub] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_struct] = ACTIONS(2088), - [anon_sym_trait] = ACTIONS(2088), - [anon_sym_type] = ACTIONS(2088), - [anon_sym_union] = ACTIONS(2088), - [anon_sym_unsafe] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [sym_integer_literal] = ACTIONS(2086), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2088), - [sym_super] = ACTIONS(2088), - [sym_crate] = ACTIONS(2088), - [sym_metavariable] = ACTIONS(2086), - [sym__raw_string_literal_start] = ACTIONS(2086), - [sym_float_literal] = ACTIONS(2086), - }, - [586] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_u8] = ACTIONS(2092), - [anon_sym_i8] = ACTIONS(2092), - [anon_sym_u16] = ACTIONS(2092), - [anon_sym_i16] = ACTIONS(2092), - [anon_sym_u32] = ACTIONS(2092), - [anon_sym_i32] = ACTIONS(2092), - [anon_sym_u64] = ACTIONS(2092), - [anon_sym_i64] = ACTIONS(2092), - [anon_sym_u128] = ACTIONS(2092), - [anon_sym_i128] = ACTIONS(2092), - [anon_sym_isize] = ACTIONS(2092), - [anon_sym_usize] = ACTIONS(2092), - [anon_sym_f32] = ACTIONS(2092), - [anon_sym_f64] = ACTIONS(2092), - [anon_sym_bool] = ACTIONS(2092), - [anon_sym_str] = ACTIONS(2092), - [anon_sym_char] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_impl] = ACTIONS(2092), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_loop] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_mod] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_trait] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_use] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [sym_integer_literal] = ACTIONS(2090), - [aux_sym_string_literal_token1] = ACTIONS(2090), - [sym_char_literal] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_crate] = ACTIONS(2092), - [sym_metavariable] = ACTIONS(2090), - [sym__raw_string_literal_start] = ACTIONS(2090), - [sym_float_literal] = ACTIONS(2090), - }, - [587] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_macro_rules_BANG] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), [anon_sym_u8] = ACTIONS(2096), [anon_sym_i8] = ACTIONS(2096), [anon_sym_u16] = ACTIONS(2096), @@ -77194,1260 +76019,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2096), [anon_sym_str] = ACTIONS(2096), [anon_sym_char] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_COLON_COLON] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), - [anon_sym_fn] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_impl] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_mod] = ACTIONS(2096), - [anon_sym_pub] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(2096), - [anon_sym_trait] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_unsafe] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [sym_integer_literal] = ACTIONS(2094), - [aux_sym_string_literal_token1] = ACTIONS(2094), - [sym_char_literal] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_crate] = ACTIONS(2096), - [sym_metavariable] = ACTIONS(2094), - [sym__raw_string_literal_start] = ACTIONS(2094), - [sym_float_literal] = ACTIONS(2094), - }, - [588] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_macro_rules_BANG] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_u8] = ACTIONS(2100), - [anon_sym_i8] = ACTIONS(2100), - [anon_sym_u16] = ACTIONS(2100), - [anon_sym_i16] = ACTIONS(2100), - [anon_sym_u32] = ACTIONS(2100), - [anon_sym_i32] = ACTIONS(2100), - [anon_sym_u64] = ACTIONS(2100), - [anon_sym_i64] = ACTIONS(2100), - [anon_sym_u128] = ACTIONS(2100), - [anon_sym_i128] = ACTIONS(2100), - [anon_sym_isize] = ACTIONS(2100), - [anon_sym_usize] = ACTIONS(2100), - [anon_sym_f32] = ACTIONS(2100), - [anon_sym_f64] = ACTIONS(2100), - [anon_sym_bool] = ACTIONS(2100), - [anon_sym_str] = ACTIONS(2100), - [anon_sym_char] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_const] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2100), - [anon_sym_fn] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_impl] = ACTIONS(2100), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_loop] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_mod] = ACTIONS(2100), - [anon_sym_pub] = ACTIONS(2100), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_struct] = ACTIONS(2100), - [anon_sym_trait] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_union] = ACTIONS(2100), - [anon_sym_unsafe] = ACTIONS(2100), - [anon_sym_use] = ACTIONS(2100), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2100), - [sym_integer_literal] = ACTIONS(2098), - [aux_sym_string_literal_token1] = ACTIONS(2098), - [sym_char_literal] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_crate] = ACTIONS(2100), - [sym_metavariable] = ACTIONS(2098), - [sym__raw_string_literal_start] = ACTIONS(2098), - [sym_float_literal] = ACTIONS(2098), - }, - [589] = { - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_macro_rules_BANG] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_u8] = ACTIONS(2104), - [anon_sym_i8] = ACTIONS(2104), - [anon_sym_u16] = ACTIONS(2104), - [anon_sym_i16] = ACTIONS(2104), - [anon_sym_u32] = ACTIONS(2104), - [anon_sym_i32] = ACTIONS(2104), - [anon_sym_u64] = ACTIONS(2104), - [anon_sym_i64] = ACTIONS(2104), - [anon_sym_u128] = ACTIONS(2104), - [anon_sym_i128] = ACTIONS(2104), - [anon_sym_isize] = ACTIONS(2104), - [anon_sym_usize] = ACTIONS(2104), - [anon_sym_f32] = ACTIONS(2104), - [anon_sym_f64] = ACTIONS(2104), - [anon_sym_bool] = ACTIONS(2104), - [anon_sym_str] = ACTIONS(2104), - [anon_sym_char] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_COLON_COLON] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(2102), [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), - [anon_sym_fn] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_impl] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_loop] = ACTIONS(2104), - [anon_sym_match] = ACTIONS(2104), - [anon_sym_mod] = ACTIONS(2104), - [anon_sym_pub] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_struct] = ACTIONS(2104), - [anon_sym_trait] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_union] = ACTIONS(2104), - [anon_sym_unsafe] = ACTIONS(2104), - [anon_sym_use] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [sym_integer_literal] = ACTIONS(2102), - [aux_sym_string_literal_token1] = ACTIONS(2102), - [sym_char_literal] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_crate] = ACTIONS(2104), - [sym_metavariable] = ACTIONS(2102), - [sym__raw_string_literal_start] = ACTIONS(2102), - [sym_float_literal] = ACTIONS(2102), - }, - [590] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_macro_rules_BANG] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_u8] = ACTIONS(2108), - [anon_sym_i8] = ACTIONS(2108), - [anon_sym_u16] = ACTIONS(2108), - [anon_sym_i16] = ACTIONS(2108), - [anon_sym_u32] = ACTIONS(2108), - [anon_sym_i32] = ACTIONS(2108), - [anon_sym_u64] = ACTIONS(2108), - [anon_sym_i64] = ACTIONS(2108), - [anon_sym_u128] = ACTIONS(2108), - [anon_sym_i128] = ACTIONS(2108), - [anon_sym_isize] = ACTIONS(2108), - [anon_sym_usize] = ACTIONS(2108), - [anon_sym_f32] = ACTIONS(2108), - [anon_sym_f64] = ACTIONS(2108), - [anon_sym_bool] = ACTIONS(2108), - [anon_sym_str] = ACTIONS(2108), - [anon_sym_char] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2106), [anon_sym_fn] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_impl] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_loop] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_mod] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_trait] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_use] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2106), - [aux_sym_string_literal_token1] = ACTIONS(2106), - [sym_char_literal] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_crate] = ACTIONS(2108), - [sym_metavariable] = ACTIONS(2106), - [sym__raw_string_literal_start] = ACTIONS(2106), - [sym_float_literal] = ACTIONS(2106), - }, - [591] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_macro_rules_BANG] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_u8] = ACTIONS(2112), - [anon_sym_i8] = ACTIONS(2112), - [anon_sym_u16] = ACTIONS(2112), - [anon_sym_i16] = ACTIONS(2112), - [anon_sym_u32] = ACTIONS(2112), - [anon_sym_i32] = ACTIONS(2112), - [anon_sym_u64] = ACTIONS(2112), - [anon_sym_i64] = ACTIONS(2112), - [anon_sym_u128] = ACTIONS(2112), - [anon_sym_i128] = ACTIONS(2112), - [anon_sym_isize] = ACTIONS(2112), - [anon_sym_usize] = ACTIONS(2112), - [anon_sym_f32] = ACTIONS(2112), - [anon_sym_f64] = ACTIONS(2112), - [anon_sym_bool] = ACTIONS(2112), - [anon_sym_str] = ACTIONS(2112), - [anon_sym_char] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2110), - [anon_sym_COLON_COLON] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_default] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2112), + [anon_sym_gen] = ACTIONS(2110), [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_loop] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_mod] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_trait] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_use] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_yield] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2112), - [sym_integer_literal] = ACTIONS(2110), - [aux_sym_string_literal_token1] = ACTIONS(2110), - [sym_char_literal] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2112), - [sym_super] = ACTIONS(2112), - [sym_crate] = ACTIONS(2112), - [sym_metavariable] = ACTIONS(2110), - [sym__raw_string_literal_start] = ACTIONS(2110), - [sym_float_literal] = ACTIONS(2110), - }, - [592] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_macro_rules_BANG] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_u8] = ACTIONS(2116), - [anon_sym_i8] = ACTIONS(2116), - [anon_sym_u16] = ACTIONS(2116), - [anon_sym_i16] = ACTIONS(2116), - [anon_sym_u32] = ACTIONS(2116), - [anon_sym_i32] = ACTIONS(2116), - [anon_sym_u64] = ACTIONS(2116), - [anon_sym_i64] = ACTIONS(2116), - [anon_sym_u128] = ACTIONS(2116), - [anon_sym_i128] = ACTIONS(2116), - [anon_sym_isize] = ACTIONS(2116), - [anon_sym_usize] = ACTIONS(2116), - [anon_sym_f32] = ACTIONS(2116), - [anon_sym_f64] = ACTIONS(2116), - [anon_sym_bool] = ACTIONS(2116), - [anon_sym_str] = ACTIONS(2116), - [anon_sym_char] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_DOT_DOT] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [anon_sym_fn] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_impl] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2114), [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(2116), - [anon_sym_trait] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_union] = ACTIONS(2116), - [anon_sym_unsafe] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [sym_integer_literal] = ACTIONS(2114), - [aux_sym_string_literal_token1] = ACTIONS(2114), - [sym_char_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_crate] = ACTIONS(2116), - [sym_metavariable] = ACTIONS(2114), - [sym__raw_string_literal_start] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2114), - }, - [593] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_macro_rules_BANG] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_u8] = ACTIONS(2120), - [anon_sym_i8] = ACTIONS(2120), - [anon_sym_u16] = ACTIONS(2120), - [anon_sym_i16] = ACTIONS(2120), - [anon_sym_u32] = ACTIONS(2120), - [anon_sym_i32] = ACTIONS(2120), - [anon_sym_u64] = ACTIONS(2120), - [anon_sym_i64] = ACTIONS(2120), - [anon_sym_u128] = ACTIONS(2120), - [anon_sym_i128] = ACTIONS(2120), - [anon_sym_isize] = ACTIONS(2120), - [anon_sym_usize] = ACTIONS(2120), - [anon_sym_f32] = ACTIONS(2120), - [anon_sym_f64] = ACTIONS(2120), - [anon_sym_bool] = ACTIONS(2120), - [anon_sym_str] = ACTIONS(2120), - [anon_sym_char] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_COLON_COLON] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), - [anon_sym_fn] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_impl] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_mod] = ACTIONS(2120), - [anon_sym_pub] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2118), [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_union] = ACTIONS(2120), - [anon_sym_unsafe] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [sym_integer_literal] = ACTIONS(2118), - [aux_sym_string_literal_token1] = ACTIONS(2118), - [sym_char_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_crate] = ACTIONS(2120), - [sym_metavariable] = ACTIONS(2118), - [sym__raw_string_literal_start] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), - }, - [594] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_macro_rules_BANG] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_u8] = ACTIONS(2124), - [anon_sym_i8] = ACTIONS(2124), - [anon_sym_u16] = ACTIONS(2124), - [anon_sym_i16] = ACTIONS(2124), - [anon_sym_u32] = ACTIONS(2124), - [anon_sym_i32] = ACTIONS(2124), - [anon_sym_u64] = ACTIONS(2124), - [anon_sym_i64] = ACTIONS(2124), - [anon_sym_u128] = ACTIONS(2124), - [anon_sym_i128] = ACTIONS(2124), - [anon_sym_isize] = ACTIONS(2124), - [anon_sym_usize] = ACTIONS(2124), - [anon_sym_f32] = ACTIONS(2124), - [anon_sym_f64] = ACTIONS(2124), - [anon_sym_bool] = ACTIONS(2124), - [anon_sym_str] = ACTIONS(2124), - [anon_sym_char] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_async] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_impl] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_mod] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_trait] = ACTIONS(2124), + [anon_sym_trait] = ACTIONS(2122), [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_yield] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [sym_integer_literal] = ACTIONS(2122), - [aux_sym_string_literal_token1] = ACTIONS(2122), - [sym_char_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2124), - [anon_sym_false] = ACTIONS(2124), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2124), - [sym_super] = ACTIONS(2124), - [sym_crate] = ACTIONS(2124), - [sym_metavariable] = ACTIONS(2122), - [sym__raw_string_literal_start] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), - }, - [595] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_macro_rules_BANG] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_u8] = ACTIONS(2128), - [anon_sym_i8] = ACTIONS(2128), - [anon_sym_u16] = ACTIONS(2128), - [anon_sym_i16] = ACTIONS(2128), - [anon_sym_u32] = ACTIONS(2128), - [anon_sym_i32] = ACTIONS(2128), - [anon_sym_u64] = ACTIONS(2128), - [anon_sym_i64] = ACTIONS(2128), - [anon_sym_u128] = ACTIONS(2128), - [anon_sym_i128] = ACTIONS(2128), - [anon_sym_isize] = ACTIONS(2128), - [anon_sym_usize] = ACTIONS(2128), - [anon_sym_f32] = ACTIONS(2128), - [anon_sym_f64] = ACTIONS(2128), - [anon_sym_bool] = ACTIONS(2128), - [anon_sym_str] = ACTIONS(2128), - [anon_sym_char] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_COLON_COLON] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [anon_sym_fn] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_impl] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_mod] = ACTIONS(2128), - [anon_sym_pub] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_struct] = ACTIONS(2128), - [anon_sym_trait] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_union] = ACTIONS(2128), + [anon_sym_union] = ACTIONS(2126), [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2126), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_crate] = ACTIONS(2128), - [sym_metavariable] = ACTIONS(2126), - [sym__raw_string_literal_start] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), - }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2130), - [anon_sym_macro_rules_BANG] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_u8] = ACTIONS(2132), - [anon_sym_i8] = ACTIONS(2132), - [anon_sym_u16] = ACTIONS(2132), - [anon_sym_i16] = ACTIONS(2132), - [anon_sym_u32] = ACTIONS(2132), - [anon_sym_i32] = ACTIONS(2132), - [anon_sym_u64] = ACTIONS(2132), - [anon_sym_i64] = ACTIONS(2132), - [anon_sym_u128] = ACTIONS(2132), - [anon_sym_i128] = ACTIONS(2132), - [anon_sym_isize] = ACTIONS(2132), - [anon_sym_usize] = ACTIONS(2132), - [anon_sym_f32] = ACTIONS(2132), - [anon_sym_f64] = ACTIONS(2132), - [anon_sym_bool] = ACTIONS(2132), - [anon_sym_str] = ACTIONS(2132), - [anon_sym_char] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_COLON_COLON] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_async] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_enum] = ACTIONS(2132), - [anon_sym_fn] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_impl] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_mod] = ACTIONS(2132), - [anon_sym_pub] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_struct] = ACTIONS(2132), - [anon_sym_trait] = ACTIONS(2132), - [anon_sym_type] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_unsafe] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2130), [anon_sym_extern] = ACTIONS(2132), - [anon_sym_yield] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [sym_integer_literal] = ACTIONS(2130), - [aux_sym_string_literal_token1] = ACTIONS(2130), - [sym_char_literal] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2132), - [sym_super] = ACTIONS(2132), - [sym_crate] = ACTIONS(2132), - [sym_metavariable] = ACTIONS(2130), - [sym__raw_string_literal_start] = ACTIONS(2130), - [sym_float_literal] = ACTIONS(2130), - }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_macro_rules_BANG] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_u8] = ACTIONS(2136), - [anon_sym_i8] = ACTIONS(2136), - [anon_sym_u16] = ACTIONS(2136), - [anon_sym_i16] = ACTIONS(2136), - [anon_sym_u32] = ACTIONS(2136), - [anon_sym_i32] = ACTIONS(2136), - [anon_sym_u64] = ACTIONS(2136), - [anon_sym_i64] = ACTIONS(2136), - [anon_sym_u128] = ACTIONS(2136), - [anon_sym_i128] = ACTIONS(2136), - [anon_sym_isize] = ACTIONS(2136), - [anon_sym_usize] = ACTIONS(2136), - [anon_sym_f32] = ACTIONS(2136), - [anon_sym_f64] = ACTIONS(2136), - [anon_sym_bool] = ACTIONS(2136), - [anon_sym_str] = ACTIONS(2136), - [anon_sym_char] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_async] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_default] = ACTIONS(2136), - [anon_sym_enum] = ACTIONS(2136), - [anon_sym_fn] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_impl] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_mod] = ACTIONS(2136), - [anon_sym_pub] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(2136), - [anon_sym_trait] = ACTIONS(2136), - [anon_sym_type] = ACTIONS(2136), - [anon_sym_union] = ACTIONS(2136), - [anon_sym_unsafe] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_yield] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [sym_integer_literal] = ACTIONS(2134), - [aux_sym_string_literal_token1] = ACTIONS(2134), - [sym_char_literal] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2136), - [sym_super] = ACTIONS(2136), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2134), - [sym__raw_string_literal_start] = ACTIONS(2134), - [sym_float_literal] = ACTIONS(2134), + [sym_metavariable] = ACTIONS(2138), }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_macro_rules_BANG] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_u8] = ACTIONS(2140), - [anon_sym_i8] = ACTIONS(2140), - [anon_sym_u16] = ACTIONS(2140), - [anon_sym_i16] = ACTIONS(2140), - [anon_sym_u32] = ACTIONS(2140), - [anon_sym_i32] = ACTIONS(2140), - [anon_sym_u64] = ACTIONS(2140), - [anon_sym_i64] = ACTIONS(2140), - [anon_sym_u128] = ACTIONS(2140), - [anon_sym_i128] = ACTIONS(2140), - [anon_sym_isize] = ACTIONS(2140), - [anon_sym_usize] = ACTIONS(2140), - [anon_sym_f32] = ACTIONS(2140), - [anon_sym_f64] = ACTIONS(2140), - [anon_sym_bool] = ACTIONS(2140), - [anon_sym_str] = ACTIONS(2140), - [anon_sym_char] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_COLON_COLON] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [anon_sym_fn] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_impl] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_mod] = ACTIONS(2140), - [anon_sym_pub] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(2140), - [anon_sym_trait] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_union] = ACTIONS(2140), - [anon_sym_unsafe] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [sym_integer_literal] = ACTIONS(2138), - [aux_sym_string_literal_token1] = ACTIONS(2138), - [sym_char_literal] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_crate] = ACTIONS(2140), + [STATE(546)] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_macro_rules_BANG] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_u8] = ACTIONS(2142), + [anon_sym_i8] = ACTIONS(2142), + [anon_sym_u16] = ACTIONS(2142), + [anon_sym_i16] = ACTIONS(2142), + [anon_sym_u32] = ACTIONS(2142), + [anon_sym_i32] = ACTIONS(2142), + [anon_sym_u64] = ACTIONS(2142), + [anon_sym_i64] = ACTIONS(2142), + [anon_sym_u128] = ACTIONS(2142), + [anon_sym_i128] = ACTIONS(2142), + [anon_sym_isize] = ACTIONS(2142), + [anon_sym_usize] = ACTIONS(2142), + [anon_sym_f32] = ACTIONS(2142), + [anon_sym_f64] = ACTIONS(2142), + [anon_sym_bool] = ACTIONS(2142), + [anon_sym_str] = ACTIONS(2142), + [anon_sym_char] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [anon_sym_fn] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_gen] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_impl] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_mod] = ACTIONS(2142), + [anon_sym_pub] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2142), + [anon_sym_trait] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_union] = ACTIONS(2142), + [anon_sym_unsafe] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [sym_integer_literal] = ACTIONS(2140), + [aux_sym_string_literal_token1] = ACTIONS(2140), + [sym_char_literal] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_crate] = ACTIONS(2142), + [sym_metavariable] = ACTIONS(2140), + [sym__raw_string_literal_start] = ACTIONS(2140), + [sym_float_literal] = ACTIONS(2140), + }, + [STATE(547)] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_macro_rules_BANG] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_u8] = ACTIONS(2146), + [anon_sym_i8] = ACTIONS(2146), + [anon_sym_u16] = ACTIONS(2146), + [anon_sym_i16] = ACTIONS(2146), + [anon_sym_u32] = ACTIONS(2146), + [anon_sym_i32] = ACTIONS(2146), + [anon_sym_u64] = ACTIONS(2146), + [anon_sym_i64] = ACTIONS(2146), + [anon_sym_u128] = ACTIONS(2146), + [anon_sym_i128] = ACTIONS(2146), + [anon_sym_isize] = ACTIONS(2146), + [anon_sym_usize] = ACTIONS(2146), + [anon_sym_f32] = ACTIONS(2146), + [anon_sym_f64] = ACTIONS(2146), + [anon_sym_bool] = ACTIONS(2146), + [anon_sym_str] = ACTIONS(2146), + [anon_sym_char] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_COLON_COLON] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_fn] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_gen] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_impl] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_mod] = ACTIONS(2146), + [anon_sym_pub] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_struct] = ACTIONS(2146), + [anon_sym_trait] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_union] = ACTIONS(2146), + [anon_sym_unsafe] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2146), + [anon_sym_move] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [sym_integer_literal] = ACTIONS(2144), + [aux_sym_string_literal_token1] = ACTIONS(2144), + [sym_char_literal] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_crate] = ACTIONS(2146), + [sym_metavariable] = ACTIONS(2144), + [sym__raw_string_literal_start] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), + }, + [STATE(548)] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_macro_rules_BANG] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_u8] = ACTIONS(2150), + [anon_sym_i8] = ACTIONS(2150), + [anon_sym_u16] = ACTIONS(2150), + [anon_sym_i16] = ACTIONS(2150), + [anon_sym_u32] = ACTIONS(2150), + [anon_sym_i32] = ACTIONS(2150), + [anon_sym_u64] = ACTIONS(2150), + [anon_sym_i64] = ACTIONS(2150), + [anon_sym_u128] = ACTIONS(2150), + [anon_sym_i128] = ACTIONS(2150), + [anon_sym_isize] = ACTIONS(2150), + [anon_sym_usize] = ACTIONS(2150), + [anon_sym_f32] = ACTIONS(2150), + [anon_sym_f64] = ACTIONS(2150), + [anon_sym_bool] = ACTIONS(2150), + [anon_sym_str] = ACTIONS(2150), + [anon_sym_char] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2150), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_fn] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_gen] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_impl] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_mod] = ACTIONS(2150), + [anon_sym_pub] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2150), + [anon_sym_trait] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_unsafe] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_yield] = ACTIONS(2150), + [anon_sym_move] = ACTIONS(2150), + [anon_sym_try] = ACTIONS(2150), + [sym_integer_literal] = ACTIONS(2148), + [aux_sym_string_literal_token1] = ACTIONS(2148), + [sym_char_literal] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2150), + [sym_super] = ACTIONS(2150), + [sym_crate] = ACTIONS(2150), + [sym_metavariable] = ACTIONS(2148), + [sym__raw_string_literal_start] = ACTIONS(2148), + [sym_float_literal] = ACTIONS(2148), + }, + [STATE(549)] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_macro_rules_BANG] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_u8] = ACTIONS(2154), + [anon_sym_i8] = ACTIONS(2154), + [anon_sym_u16] = ACTIONS(2154), + [anon_sym_i16] = ACTIONS(2154), + [anon_sym_u32] = ACTIONS(2154), + [anon_sym_i32] = ACTIONS(2154), + [anon_sym_u64] = ACTIONS(2154), + [anon_sym_i64] = ACTIONS(2154), + [anon_sym_u128] = ACTIONS(2154), + [anon_sym_i128] = ACTIONS(2154), + [anon_sym_isize] = ACTIONS(2154), + [anon_sym_usize] = ACTIONS(2154), + [anon_sym_f32] = ACTIONS(2154), + [anon_sym_f64] = ACTIONS(2154), + [anon_sym_bool] = ACTIONS(2154), + [anon_sym_str] = ACTIONS(2154), + [anon_sym_char] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_const] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_fn] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_gen] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_impl] = ACTIONS(2154), + [anon_sym_let] = ACTIONS(2154), + [anon_sym_loop] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2154), + [anon_sym_mod] = ACTIONS(2154), + [anon_sym_pub] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_struct] = ACTIONS(2154), + [anon_sym_trait] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2154), + [anon_sym_union] = ACTIONS(2154), + [anon_sym_unsafe] = ACTIONS(2154), + [anon_sym_use] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_yield] = ACTIONS(2154), + [anon_sym_move] = ACTIONS(2154), + [anon_sym_try] = ACTIONS(2154), + [sym_integer_literal] = ACTIONS(2152), + [aux_sym_string_literal_token1] = ACTIONS(2152), + [sym_char_literal] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2154), + [sym_super] = ACTIONS(2154), + [sym_crate] = ACTIONS(2154), + [sym_metavariable] = ACTIONS(2152), + [sym__raw_string_literal_start] = ACTIONS(2152), + [sym_float_literal] = ACTIONS(2152), + }, + [STATE(550)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [aux_sym_declaration_list_repeat1] = STATE(545), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2136), [sym_metavariable] = ACTIONS(2138), - [sym__raw_string_literal_start] = ACTIONS(2138), - [sym_float_literal] = ACTIONS(2138), }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_macro_rules_BANG] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_u8] = ACTIONS(2144), - [anon_sym_i8] = ACTIONS(2144), - [anon_sym_u16] = ACTIONS(2144), - [anon_sym_i16] = ACTIONS(2144), - [anon_sym_u32] = ACTIONS(2144), - [anon_sym_i32] = ACTIONS(2144), - [anon_sym_u64] = ACTIONS(2144), - [anon_sym_i64] = ACTIONS(2144), - [anon_sym_u128] = ACTIONS(2144), - [anon_sym_i128] = ACTIONS(2144), - [anon_sym_isize] = ACTIONS(2144), - [anon_sym_usize] = ACTIONS(2144), - [anon_sym_f32] = ACTIONS(2144), - [anon_sym_f64] = ACTIONS(2144), - [anon_sym_bool] = ACTIONS(2144), - [anon_sym_str] = ACTIONS(2144), - [anon_sym_char] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_yield] = ACTIONS(2144), - [anon_sym_move] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2142), - [aux_sym_string_literal_token1] = ACTIONS(2142), - [sym_char_literal] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2142), - [sym__raw_string_literal_start] = ACTIONS(2142), - [sym_float_literal] = ACTIONS(2142), - }, - [600] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_macro_rules_BANG] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_u8] = ACTIONS(2148), - [anon_sym_i8] = ACTIONS(2148), - [anon_sym_u16] = ACTIONS(2148), - [anon_sym_i16] = ACTIONS(2148), - [anon_sym_u32] = ACTIONS(2148), - [anon_sym_i32] = ACTIONS(2148), - [anon_sym_u64] = ACTIONS(2148), - [anon_sym_i64] = ACTIONS(2148), - [anon_sym_u128] = ACTIONS(2148), - [anon_sym_i128] = ACTIONS(2148), - [anon_sym_isize] = ACTIONS(2148), - [anon_sym_usize] = ACTIONS(2148), - [anon_sym_f32] = ACTIONS(2148), - [anon_sym_f64] = ACTIONS(2148), - [anon_sym_bool] = ACTIONS(2148), - [anon_sym_str] = ACTIONS(2148), - [anon_sym_char] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_async] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_impl] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_mod] = ACTIONS(2148), - [anon_sym_pub] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_trait] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_unsafe] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_yield] = ACTIONS(2148), - [anon_sym_move] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2146), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2148), - [sym_super] = ACTIONS(2148), - [sym_crate] = ACTIONS(2148), - [sym_metavariable] = ACTIONS(2146), - [sym__raw_string_literal_start] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), - }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_macro_rules_BANG] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2152), - [anon_sym_i8] = ACTIONS(2152), - [anon_sym_u16] = ACTIONS(2152), - [anon_sym_i16] = ACTIONS(2152), - [anon_sym_u32] = ACTIONS(2152), - [anon_sym_i32] = ACTIONS(2152), - [anon_sym_u64] = ACTIONS(2152), - [anon_sym_i64] = ACTIONS(2152), - [anon_sym_u128] = ACTIONS(2152), - [anon_sym_i128] = ACTIONS(2152), - [anon_sym_isize] = ACTIONS(2152), - [anon_sym_usize] = ACTIONS(2152), - [anon_sym_f32] = ACTIONS(2152), - [anon_sym_f64] = ACTIONS(2152), - [anon_sym_bool] = ACTIONS(2152), - [anon_sym_str] = ACTIONS(2152), - [anon_sym_char] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2150), - [anon_sym_COLON_COLON] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_fn] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_impl] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_mod] = ACTIONS(2152), - [anon_sym_pub] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_trait] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [anon_sym_unsafe] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_move] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [sym_integer_literal] = ACTIONS(2150), - [aux_sym_string_literal_token1] = ACTIONS(2150), - [sym_char_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_crate] = ACTIONS(2152), - [sym_metavariable] = ACTIONS(2150), - [sym__raw_string_literal_start] = ACTIONS(2150), - [sym_float_literal] = ACTIONS(2150), - }, - [602] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_macro_rules_BANG] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_DOT_DOT] = ACTIONS(2154), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_impl] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_mod] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_trait] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_move] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [sym_integer_literal] = ACTIONS(2154), - [aux_sym_string_literal_token1] = ACTIONS(2154), - [sym_char_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_crate] = ACTIONS(2156), - [sym_metavariable] = ACTIONS(2154), - [sym__raw_string_literal_start] = ACTIONS(2154), - [sym_float_literal] = ACTIONS(2154), - }, - [603] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [STATE(551)] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_SEMI] = ACTIONS(2158), @@ -78491,6 +76498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2160), [anon_sym_fn] = ACTIONS(2160), [anon_sym_for] = ACTIONS(2160), + [anon_sym_gen] = ACTIONS(2160), [anon_sym_if] = ACTIONS(2160), [anon_sym_impl] = ACTIONS(2160), [anon_sym_let] = ACTIONS(2160), @@ -78516,8 +76524,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2158), [anon_sym_true] = ACTIONS(2160), [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2160), [sym_super] = ACTIONS(2160), [sym_crate] = ACTIONS(2160), @@ -78525,9 +76533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2158), [sym_float_literal] = ACTIONS(2158), }, - [604] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [STATE(552)] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_SEMI] = ACTIONS(2162), @@ -78571,6 +76579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2164), [anon_sym_fn] = ACTIONS(2164), [anon_sym_for] = ACTIONS(2164), + [anon_sym_gen] = ACTIONS(2164), [anon_sym_if] = ACTIONS(2164), [anon_sym_impl] = ACTIONS(2164), [anon_sym_let] = ACTIONS(2164), @@ -78596,8 +76605,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2162), [anon_sym_true] = ACTIONS(2164), [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2164), [sym_super] = ACTIONS(2164), [sym_crate] = ACTIONS(2164), @@ -78605,9 +76614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2162), [sym_float_literal] = ACTIONS(2162), }, - [605] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [STATE(553)] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_SEMI] = ACTIONS(2166), @@ -78651,6 +76660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2168), [anon_sym_fn] = ACTIONS(2168), [anon_sym_for] = ACTIONS(2168), + [anon_sym_gen] = ACTIONS(2168), [anon_sym_if] = ACTIONS(2168), [anon_sym_impl] = ACTIONS(2168), [anon_sym_let] = ACTIONS(2168), @@ -78676,8 +76686,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2166), [anon_sym_true] = ACTIONS(2168), [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2168), [sym_super] = ACTIONS(2168), [sym_crate] = ACTIONS(2168), @@ -78685,9 +76695,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2166), [sym_float_literal] = ACTIONS(2166), }, - [606] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [STATE(554)] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), [ts_builtin_sym_end] = ACTIONS(2170), [sym_identifier] = ACTIONS(2172), [anon_sym_SEMI] = ACTIONS(2170), @@ -78731,6 +76741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2172), [anon_sym_fn] = ACTIONS(2172), [anon_sym_for] = ACTIONS(2172), + [anon_sym_gen] = ACTIONS(2172), [anon_sym_if] = ACTIONS(2172), [anon_sym_impl] = ACTIONS(2172), [anon_sym_let] = ACTIONS(2172), @@ -78756,8 +76767,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2170), [anon_sym_true] = ACTIONS(2172), [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2172), [sym_super] = ACTIONS(2172), [sym_crate] = ACTIONS(2172), @@ -78765,9 +76776,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2170), [sym_float_literal] = ACTIONS(2170), }, - [607] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [STATE(555)] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), [ts_builtin_sym_end] = ACTIONS(2174), [sym_identifier] = ACTIONS(2176), [anon_sym_SEMI] = ACTIONS(2174), @@ -78811,6 +76822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2176), [anon_sym_fn] = ACTIONS(2176), [anon_sym_for] = ACTIONS(2176), + [anon_sym_gen] = ACTIONS(2176), [anon_sym_if] = ACTIONS(2176), [anon_sym_impl] = ACTIONS(2176), [anon_sym_let] = ACTIONS(2176), @@ -78836,8 +76848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2174), [anon_sym_true] = ACTIONS(2176), [anon_sym_false] = ACTIONS(2176), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2176), [sym_super] = ACTIONS(2176), [sym_crate] = ACTIONS(2176), @@ -78845,9 +76857,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2174), [sym_float_literal] = ACTIONS(2174), }, - [608] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [STATE(556)] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), [ts_builtin_sym_end] = ACTIONS(2178), [sym_identifier] = ACTIONS(2180), [anon_sym_SEMI] = ACTIONS(2178), @@ -78891,6 +76903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2180), [anon_sym_fn] = ACTIONS(2180), [anon_sym_for] = ACTIONS(2180), + [anon_sym_gen] = ACTIONS(2180), [anon_sym_if] = ACTIONS(2180), [anon_sym_impl] = ACTIONS(2180), [anon_sym_let] = ACTIONS(2180), @@ -78916,8 +76929,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2178), [anon_sym_true] = ACTIONS(2180), [anon_sym_false] = ACTIONS(2180), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2180), [sym_super] = ACTIONS(2180), [sym_crate] = ACTIONS(2180), @@ -78925,9 +76938,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2178), [sym_float_literal] = ACTIONS(2178), }, - [609] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), + [STATE(557)] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), [ts_builtin_sym_end] = ACTIONS(2182), [sym_identifier] = ACTIONS(2184), [anon_sym_SEMI] = ACTIONS(2182), @@ -78971,6 +76984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2184), [anon_sym_fn] = ACTIONS(2184), [anon_sym_for] = ACTIONS(2184), + [anon_sym_gen] = ACTIONS(2184), [anon_sym_if] = ACTIONS(2184), [anon_sym_impl] = ACTIONS(2184), [anon_sym_let] = ACTIONS(2184), @@ -78996,8 +77010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2182), [anon_sym_true] = ACTIONS(2184), [anon_sym_false] = ACTIONS(2184), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2184), [sym_super] = ACTIONS(2184), [sym_crate] = ACTIONS(2184), @@ -79005,9 +77019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2182), [sym_float_literal] = ACTIONS(2182), }, - [610] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [STATE(558)] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), [ts_builtin_sym_end] = ACTIONS(2186), [sym_identifier] = ACTIONS(2188), [anon_sym_SEMI] = ACTIONS(2186), @@ -79051,6 +77065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2188), [anon_sym_fn] = ACTIONS(2188), [anon_sym_for] = ACTIONS(2188), + [anon_sym_gen] = ACTIONS(2188), [anon_sym_if] = ACTIONS(2188), [anon_sym_impl] = ACTIONS(2188), [anon_sym_let] = ACTIONS(2188), @@ -79076,8 +77091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2186), [anon_sym_true] = ACTIONS(2188), [anon_sym_false] = ACTIONS(2188), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2188), [sym_super] = ACTIONS(2188), [sym_crate] = ACTIONS(2188), @@ -79085,9 +77100,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2186), [sym_float_literal] = ACTIONS(2186), }, - [611] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [STATE(559)] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), [ts_builtin_sym_end] = ACTIONS(2190), [sym_identifier] = ACTIONS(2192), [anon_sym_SEMI] = ACTIONS(2190), @@ -79131,6 +77146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2192), [anon_sym_fn] = ACTIONS(2192), [anon_sym_for] = ACTIONS(2192), + [anon_sym_gen] = ACTIONS(2192), [anon_sym_if] = ACTIONS(2192), [anon_sym_impl] = ACTIONS(2192), [anon_sym_let] = ACTIONS(2192), @@ -79156,8 +77172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2190), [anon_sym_true] = ACTIONS(2192), [anon_sym_false] = ACTIONS(2192), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2192), [sym_super] = ACTIONS(2192), [sym_crate] = ACTIONS(2192), @@ -79165,9 +77181,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2190), [sym_float_literal] = ACTIONS(2190), }, - [612] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [STATE(560)] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), [ts_builtin_sym_end] = ACTIONS(2194), [sym_identifier] = ACTIONS(2196), [anon_sym_SEMI] = ACTIONS(2194), @@ -79211,6 +77227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2196), [anon_sym_fn] = ACTIONS(2196), [anon_sym_for] = ACTIONS(2196), + [anon_sym_gen] = ACTIONS(2196), [anon_sym_if] = ACTIONS(2196), [anon_sym_impl] = ACTIONS(2196), [anon_sym_let] = ACTIONS(2196), @@ -79236,8 +77253,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2194), [anon_sym_true] = ACTIONS(2196), [anon_sym_false] = ACTIONS(2196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2196), [sym_super] = ACTIONS(2196), [sym_crate] = ACTIONS(2196), @@ -79245,9 +77262,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2194), [sym_float_literal] = ACTIONS(2194), }, - [613] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), + [STATE(561)] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), [ts_builtin_sym_end] = ACTIONS(2198), [sym_identifier] = ACTIONS(2200), [anon_sym_SEMI] = ACTIONS(2198), @@ -79291,6 +77308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2200), [anon_sym_fn] = ACTIONS(2200), [anon_sym_for] = ACTIONS(2200), + [anon_sym_gen] = ACTIONS(2200), [anon_sym_if] = ACTIONS(2200), [anon_sym_impl] = ACTIONS(2200), [anon_sym_let] = ACTIONS(2200), @@ -79316,8 +77334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2198), [anon_sym_true] = ACTIONS(2200), [anon_sym_false] = ACTIONS(2200), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2200), [sym_super] = ACTIONS(2200), [sym_crate] = ACTIONS(2200), @@ -79325,9 +77343,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2198), [sym_float_literal] = ACTIONS(2198), }, - [614] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [STATE(562)] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), [ts_builtin_sym_end] = ACTIONS(2202), [sym_identifier] = ACTIONS(2204), [anon_sym_SEMI] = ACTIONS(2202), @@ -79371,6 +77389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2204), [anon_sym_fn] = ACTIONS(2204), [anon_sym_for] = ACTIONS(2204), + [anon_sym_gen] = ACTIONS(2204), [anon_sym_if] = ACTIONS(2204), [anon_sym_impl] = ACTIONS(2204), [anon_sym_let] = ACTIONS(2204), @@ -79396,8 +77415,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2202), [anon_sym_true] = ACTIONS(2204), [anon_sym_false] = ACTIONS(2204), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2204), [sym_super] = ACTIONS(2204), [sym_crate] = ACTIONS(2204), @@ -79405,9 +77424,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2202), [sym_float_literal] = ACTIONS(2202), }, - [615] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), + [STATE(563)] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), [ts_builtin_sym_end] = ACTIONS(2206), [sym_identifier] = ACTIONS(2208), [anon_sym_SEMI] = ACTIONS(2206), @@ -79451,6 +77470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2208), [anon_sym_fn] = ACTIONS(2208), [anon_sym_for] = ACTIONS(2208), + [anon_sym_gen] = ACTIONS(2208), [anon_sym_if] = ACTIONS(2208), [anon_sym_impl] = ACTIONS(2208), [anon_sym_let] = ACTIONS(2208), @@ -79476,8 +77496,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2206), [anon_sym_true] = ACTIONS(2208), [anon_sym_false] = ACTIONS(2208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2208), [sym_super] = ACTIONS(2208), [sym_crate] = ACTIONS(2208), @@ -79485,9 +77505,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2206), [sym_float_literal] = ACTIONS(2206), }, - [616] = { - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), + [STATE(564)] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), [ts_builtin_sym_end] = ACTIONS(2210), [sym_identifier] = ACTIONS(2212), [anon_sym_SEMI] = ACTIONS(2210), @@ -79531,6 +77551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2212), [anon_sym_fn] = ACTIONS(2212), [anon_sym_for] = ACTIONS(2212), + [anon_sym_gen] = ACTIONS(2212), [anon_sym_if] = ACTIONS(2212), [anon_sym_impl] = ACTIONS(2212), [anon_sym_let] = ACTIONS(2212), @@ -79556,8 +77577,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2210), [anon_sym_true] = ACTIONS(2212), [anon_sym_false] = ACTIONS(2212), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2212), [sym_super] = ACTIONS(2212), [sym_crate] = ACTIONS(2212), @@ -79565,9 +77586,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2210), [sym_float_literal] = ACTIONS(2210), }, - [617] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), + [STATE(565)] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), [ts_builtin_sym_end] = ACTIONS(2214), [sym_identifier] = ACTIONS(2216), [anon_sym_SEMI] = ACTIONS(2214), @@ -79611,6 +77632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2216), [anon_sym_fn] = ACTIONS(2216), [anon_sym_for] = ACTIONS(2216), + [anon_sym_gen] = ACTIONS(2216), [anon_sym_if] = ACTIONS(2216), [anon_sym_impl] = ACTIONS(2216), [anon_sym_let] = ACTIONS(2216), @@ -79636,8 +77658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2214), [anon_sym_true] = ACTIONS(2216), [anon_sym_false] = ACTIONS(2216), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2216), [sym_super] = ACTIONS(2216), [sym_crate] = ACTIONS(2216), @@ -79645,9 +77667,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2214), [sym_float_literal] = ACTIONS(2214), }, - [618] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), + [STATE(566)] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), [ts_builtin_sym_end] = ACTIONS(2218), [sym_identifier] = ACTIONS(2220), [anon_sym_SEMI] = ACTIONS(2218), @@ -79691,6 +77713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2220), [anon_sym_fn] = ACTIONS(2220), [anon_sym_for] = ACTIONS(2220), + [anon_sym_gen] = ACTIONS(2220), [anon_sym_if] = ACTIONS(2220), [anon_sym_impl] = ACTIONS(2220), [anon_sym_let] = ACTIONS(2220), @@ -79716,8 +77739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2218), [anon_sym_true] = ACTIONS(2220), [anon_sym_false] = ACTIONS(2220), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2220), [sym_super] = ACTIONS(2220), [sym_crate] = ACTIONS(2220), @@ -79725,9 +77748,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2218), [sym_float_literal] = ACTIONS(2218), }, - [619] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), + [STATE(567)] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), [ts_builtin_sym_end] = ACTIONS(2222), [sym_identifier] = ACTIONS(2224), [anon_sym_SEMI] = ACTIONS(2222), @@ -79771,6 +77794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2224), [anon_sym_fn] = ACTIONS(2224), [anon_sym_for] = ACTIONS(2224), + [anon_sym_gen] = ACTIONS(2224), [anon_sym_if] = ACTIONS(2224), [anon_sym_impl] = ACTIONS(2224), [anon_sym_let] = ACTIONS(2224), @@ -79796,8 +77820,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2222), [anon_sym_true] = ACTIONS(2224), [anon_sym_false] = ACTIONS(2224), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2224), [sym_super] = ACTIONS(2224), [sym_crate] = ACTIONS(2224), @@ -79805,9 +77829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2222), [sym_float_literal] = ACTIONS(2222), }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), + [STATE(568)] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), [ts_builtin_sym_end] = ACTIONS(2226), [sym_identifier] = ACTIONS(2228), [anon_sym_SEMI] = ACTIONS(2226), @@ -79851,6 +77875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2228), [anon_sym_fn] = ACTIONS(2228), [anon_sym_for] = ACTIONS(2228), + [anon_sym_gen] = ACTIONS(2228), [anon_sym_if] = ACTIONS(2228), [anon_sym_impl] = ACTIONS(2228), [anon_sym_let] = ACTIONS(2228), @@ -79876,8 +77901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2226), [anon_sym_true] = ACTIONS(2228), [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2228), [sym_super] = ACTIONS(2228), [sym_crate] = ACTIONS(2228), @@ -79885,9 +77910,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2226), [sym_float_literal] = ACTIONS(2226), }, - [621] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), + [STATE(569)] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), [anon_sym_SEMI] = ACTIONS(2230), @@ -79931,6 +77956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2232), [anon_sym_fn] = ACTIONS(2232), [anon_sym_for] = ACTIONS(2232), + [anon_sym_gen] = ACTIONS(2232), [anon_sym_if] = ACTIONS(2232), [anon_sym_impl] = ACTIONS(2232), [anon_sym_let] = ACTIONS(2232), @@ -79956,8 +77982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2230), [anon_sym_true] = ACTIONS(2232), [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2232), [sym_super] = ACTIONS(2232), [sym_crate] = ACTIONS(2232), @@ -79965,9 +77991,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2230), [sym_float_literal] = ACTIONS(2230), }, - [622] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), + [STATE(570)] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_SEMI] = ACTIONS(2234), @@ -80011,6 +78037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2236), [anon_sym_fn] = ACTIONS(2236), [anon_sym_for] = ACTIONS(2236), + [anon_sym_gen] = ACTIONS(2236), [anon_sym_if] = ACTIONS(2236), [anon_sym_impl] = ACTIONS(2236), [anon_sym_let] = ACTIONS(2236), @@ -80036,8 +78063,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2234), [anon_sym_true] = ACTIONS(2236), [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2236), [sym_super] = ACTIONS(2236), [sym_crate] = ACTIONS(2236), @@ -80045,9 +78072,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2234), [sym_float_literal] = ACTIONS(2234), }, - [623] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), + [STATE(571)] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_SEMI] = ACTIONS(2238), @@ -80091,6 +78118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2240), [anon_sym_fn] = ACTIONS(2240), [anon_sym_for] = ACTIONS(2240), + [anon_sym_gen] = ACTIONS(2240), [anon_sym_if] = ACTIONS(2240), [anon_sym_impl] = ACTIONS(2240), [anon_sym_let] = ACTIONS(2240), @@ -80116,8 +78144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2238), [anon_sym_true] = ACTIONS(2240), [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2240), [sym_super] = ACTIONS(2240), [sym_crate] = ACTIONS(2240), @@ -80125,9 +78153,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2238), [sym_float_literal] = ACTIONS(2238), }, - [624] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), + [STATE(572)] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), [ts_builtin_sym_end] = ACTIONS(2242), [sym_identifier] = ACTIONS(2244), [anon_sym_SEMI] = ACTIONS(2242), @@ -80171,6 +78199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2244), [anon_sym_fn] = ACTIONS(2244), [anon_sym_for] = ACTIONS(2244), + [anon_sym_gen] = ACTIONS(2244), [anon_sym_if] = ACTIONS(2244), [anon_sym_impl] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2244), @@ -80196,8 +78225,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2242), [anon_sym_true] = ACTIONS(2244), [anon_sym_false] = ACTIONS(2244), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2244), [sym_super] = ACTIONS(2244), [sym_crate] = ACTIONS(2244), @@ -80205,9 +78234,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2242), [sym_float_literal] = ACTIONS(2242), }, - [625] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), + [STATE(573)] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), [ts_builtin_sym_end] = ACTIONS(2246), [sym_identifier] = ACTIONS(2248), [anon_sym_SEMI] = ACTIONS(2246), @@ -80251,6 +78280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2248), [anon_sym_fn] = ACTIONS(2248), [anon_sym_for] = ACTIONS(2248), + [anon_sym_gen] = ACTIONS(2248), [anon_sym_if] = ACTIONS(2248), [anon_sym_impl] = ACTIONS(2248), [anon_sym_let] = ACTIONS(2248), @@ -80276,8 +78306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2246), [anon_sym_true] = ACTIONS(2248), [anon_sym_false] = ACTIONS(2248), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2248), [sym_super] = ACTIONS(2248), [sym_crate] = ACTIONS(2248), @@ -80285,9 +78315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2246), [sym_float_literal] = ACTIONS(2246), }, - [626] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), + [STATE(574)] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), [ts_builtin_sym_end] = ACTIONS(2250), [sym_identifier] = ACTIONS(2252), [anon_sym_SEMI] = ACTIONS(2250), @@ -80331,6 +78361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2252), [anon_sym_fn] = ACTIONS(2252), [anon_sym_for] = ACTIONS(2252), + [anon_sym_gen] = ACTIONS(2252), [anon_sym_if] = ACTIONS(2252), [anon_sym_impl] = ACTIONS(2252), [anon_sym_let] = ACTIONS(2252), @@ -80356,8 +78387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2250), [anon_sym_true] = ACTIONS(2252), [anon_sym_false] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2252), [sym_super] = ACTIONS(2252), [sym_crate] = ACTIONS(2252), @@ -80365,9 +78396,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2250), [sym_float_literal] = ACTIONS(2250), }, - [627] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), + [STATE(575)] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), [ts_builtin_sym_end] = ACTIONS(2254), [sym_identifier] = ACTIONS(2256), [anon_sym_SEMI] = ACTIONS(2254), @@ -80411,6 +78442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2256), [anon_sym_fn] = ACTIONS(2256), [anon_sym_for] = ACTIONS(2256), + [anon_sym_gen] = ACTIONS(2256), [anon_sym_if] = ACTIONS(2256), [anon_sym_impl] = ACTIONS(2256), [anon_sym_let] = ACTIONS(2256), @@ -80436,8 +78468,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2254), [anon_sym_true] = ACTIONS(2256), [anon_sym_false] = ACTIONS(2256), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2256), [sym_super] = ACTIONS(2256), [sym_crate] = ACTIONS(2256), @@ -80445,9 +78477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2254), [sym_float_literal] = ACTIONS(2254), }, - [628] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [STATE(576)] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), [ts_builtin_sym_end] = ACTIONS(2258), [sym_identifier] = ACTIONS(2260), [anon_sym_SEMI] = ACTIONS(2258), @@ -80491,6 +78523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2260), [anon_sym_fn] = ACTIONS(2260), [anon_sym_for] = ACTIONS(2260), + [anon_sym_gen] = ACTIONS(2260), [anon_sym_if] = ACTIONS(2260), [anon_sym_impl] = ACTIONS(2260), [anon_sym_let] = ACTIONS(2260), @@ -80516,8 +78549,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2258), [anon_sym_true] = ACTIONS(2260), [anon_sym_false] = ACTIONS(2260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2260), [sym_super] = ACTIONS(2260), [sym_crate] = ACTIONS(2260), @@ -80525,9 +78558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2258), [sym_float_literal] = ACTIONS(2258), }, - [629] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [STATE(577)] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(2262), [sym_identifier] = ACTIONS(2264), [anon_sym_SEMI] = ACTIONS(2262), @@ -80571,6 +78604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2264), [anon_sym_fn] = ACTIONS(2264), [anon_sym_for] = ACTIONS(2264), + [anon_sym_gen] = ACTIONS(2264), [anon_sym_if] = ACTIONS(2264), [anon_sym_impl] = ACTIONS(2264), [anon_sym_let] = ACTIONS(2264), @@ -80596,8 +78630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2262), [anon_sym_true] = ACTIONS(2264), [anon_sym_false] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2264), [sym_super] = ACTIONS(2264), [sym_crate] = ACTIONS(2264), @@ -80605,9 +78639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2262), [sym_float_literal] = ACTIONS(2262), }, - [630] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [STATE(578)] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), [ts_builtin_sym_end] = ACTIONS(2266), [sym_identifier] = ACTIONS(2268), [anon_sym_SEMI] = ACTIONS(2266), @@ -80651,6 +78685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2268), [anon_sym_fn] = ACTIONS(2268), [anon_sym_for] = ACTIONS(2268), + [anon_sym_gen] = ACTIONS(2268), [anon_sym_if] = ACTIONS(2268), [anon_sym_impl] = ACTIONS(2268), [anon_sym_let] = ACTIONS(2268), @@ -80676,8 +78711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2266), [anon_sym_true] = ACTIONS(2268), [anon_sym_false] = ACTIONS(2268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2268), [sym_super] = ACTIONS(2268), [sym_crate] = ACTIONS(2268), @@ -80685,9 +78720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2266), [sym_float_literal] = ACTIONS(2266), }, - [631] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), + [STATE(579)] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(2270), [sym_identifier] = ACTIONS(2272), [anon_sym_SEMI] = ACTIONS(2270), @@ -80731,6 +78766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2272), [anon_sym_fn] = ACTIONS(2272), [anon_sym_for] = ACTIONS(2272), + [anon_sym_gen] = ACTIONS(2272), [anon_sym_if] = ACTIONS(2272), [anon_sym_impl] = ACTIONS(2272), [anon_sym_let] = ACTIONS(2272), @@ -80756,8 +78792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2270), [anon_sym_true] = ACTIONS(2272), [anon_sym_false] = ACTIONS(2272), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2272), [sym_super] = ACTIONS(2272), [sym_crate] = ACTIONS(2272), @@ -80765,9 +78801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2270), [sym_float_literal] = ACTIONS(2270), }, - [632] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), + [STATE(580)] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2274), [sym_identifier] = ACTIONS(2276), [anon_sym_SEMI] = ACTIONS(2274), @@ -80811,6 +78847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2276), [anon_sym_fn] = ACTIONS(2276), [anon_sym_for] = ACTIONS(2276), + [anon_sym_gen] = ACTIONS(2276), [anon_sym_if] = ACTIONS(2276), [anon_sym_impl] = ACTIONS(2276), [anon_sym_let] = ACTIONS(2276), @@ -80836,8 +78873,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2274), [anon_sym_true] = ACTIONS(2276), [anon_sym_false] = ACTIONS(2276), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2276), [sym_super] = ACTIONS(2276), [sym_crate] = ACTIONS(2276), @@ -80845,9 +78882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2274), [sym_float_literal] = ACTIONS(2274), }, - [633] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), + [STATE(581)] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2278), [sym_identifier] = ACTIONS(2280), [anon_sym_SEMI] = ACTIONS(2278), @@ -80891,6 +78928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2280), [anon_sym_fn] = ACTIONS(2280), [anon_sym_for] = ACTIONS(2280), + [anon_sym_gen] = ACTIONS(2280), [anon_sym_if] = ACTIONS(2280), [anon_sym_impl] = ACTIONS(2280), [anon_sym_let] = ACTIONS(2280), @@ -80916,8 +78954,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2278), [anon_sym_true] = ACTIONS(2280), [anon_sym_false] = ACTIONS(2280), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2280), [sym_super] = ACTIONS(2280), [sym_crate] = ACTIONS(2280), @@ -80925,9 +78963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2278), [sym_float_literal] = ACTIONS(2278), }, - [634] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), + [STATE(582)] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2282), [sym_identifier] = ACTIONS(2284), [anon_sym_SEMI] = ACTIONS(2282), @@ -80971,6 +79009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2284), [anon_sym_fn] = ACTIONS(2284), [anon_sym_for] = ACTIONS(2284), + [anon_sym_gen] = ACTIONS(2284), [anon_sym_if] = ACTIONS(2284), [anon_sym_impl] = ACTIONS(2284), [anon_sym_let] = ACTIONS(2284), @@ -80996,8 +79035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2282), [anon_sym_true] = ACTIONS(2284), [anon_sym_false] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2284), [sym_super] = ACTIONS(2284), [sym_crate] = ACTIONS(2284), @@ -81005,9 +79044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2282), [sym_float_literal] = ACTIONS(2282), }, - [635] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), + [STATE(583)] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2286), [sym_identifier] = ACTIONS(2288), [anon_sym_SEMI] = ACTIONS(2286), @@ -81051,6 +79090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2288), [anon_sym_fn] = ACTIONS(2288), [anon_sym_for] = ACTIONS(2288), + [anon_sym_gen] = ACTIONS(2288), [anon_sym_if] = ACTIONS(2288), [anon_sym_impl] = ACTIONS(2288), [anon_sym_let] = ACTIONS(2288), @@ -81076,8 +79116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2286), [anon_sym_true] = ACTIONS(2288), [anon_sym_false] = ACTIONS(2288), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2288), [sym_super] = ACTIONS(2288), [sym_crate] = ACTIONS(2288), @@ -81085,9 +79125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2286), [sym_float_literal] = ACTIONS(2286), }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), + [STATE(584)] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2292), [anon_sym_SEMI] = ACTIONS(2290), @@ -81131,6 +79171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2292), [anon_sym_fn] = ACTIONS(2292), [anon_sym_for] = ACTIONS(2292), + [anon_sym_gen] = ACTIONS(2292), [anon_sym_if] = ACTIONS(2292), [anon_sym_impl] = ACTIONS(2292), [anon_sym_let] = ACTIONS(2292), @@ -81156,8 +79197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2290), [anon_sym_true] = ACTIONS(2292), [anon_sym_false] = ACTIONS(2292), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2292), [sym_super] = ACTIONS(2292), [sym_crate] = ACTIONS(2292), @@ -81165,9 +79206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2290), [sym_float_literal] = ACTIONS(2290), }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2294), [sym_identifier] = ACTIONS(2296), [anon_sym_SEMI] = ACTIONS(2294), @@ -81211,6 +79252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2296), [anon_sym_fn] = ACTIONS(2296), [anon_sym_for] = ACTIONS(2296), + [anon_sym_gen] = ACTIONS(2296), [anon_sym_if] = ACTIONS(2296), [anon_sym_impl] = ACTIONS(2296), [anon_sym_let] = ACTIONS(2296), @@ -81236,8 +79278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2294), [anon_sym_true] = ACTIONS(2296), [anon_sym_false] = ACTIONS(2296), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2296), [sym_super] = ACTIONS(2296), [sym_crate] = ACTIONS(2296), @@ -81245,9 +79287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2294), [sym_float_literal] = ACTIONS(2294), }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2298), [sym_identifier] = ACTIONS(2300), [anon_sym_SEMI] = ACTIONS(2298), @@ -81291,6 +79333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2300), [anon_sym_fn] = ACTIONS(2300), [anon_sym_for] = ACTIONS(2300), + [anon_sym_gen] = ACTIONS(2300), [anon_sym_if] = ACTIONS(2300), [anon_sym_impl] = ACTIONS(2300), [anon_sym_let] = ACTIONS(2300), @@ -81316,8 +79359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2298), [anon_sym_true] = ACTIONS(2300), [anon_sym_false] = ACTIONS(2300), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2300), [sym_super] = ACTIONS(2300), [sym_crate] = ACTIONS(2300), @@ -81325,9 +79368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2298), [sym_float_literal] = ACTIONS(2298), }, - [639] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [STATE(587)] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2302), [sym_identifier] = ACTIONS(2304), [anon_sym_SEMI] = ACTIONS(2302), @@ -81371,6 +79414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2304), [anon_sym_fn] = ACTIONS(2304), [anon_sym_for] = ACTIONS(2304), + [anon_sym_gen] = ACTIONS(2304), [anon_sym_if] = ACTIONS(2304), [anon_sym_impl] = ACTIONS(2304), [anon_sym_let] = ACTIONS(2304), @@ -81396,8 +79440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2302), [anon_sym_true] = ACTIONS(2304), [anon_sym_false] = ACTIONS(2304), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2304), [sym_super] = ACTIONS(2304), [sym_crate] = ACTIONS(2304), @@ -81405,9 +79449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2302), [sym_float_literal] = ACTIONS(2302), }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), + [STATE(588)] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2306), [sym_identifier] = ACTIONS(2308), [anon_sym_SEMI] = ACTIONS(2306), @@ -81451,6 +79495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2308), [anon_sym_fn] = ACTIONS(2308), [anon_sym_for] = ACTIONS(2308), + [anon_sym_gen] = ACTIONS(2308), [anon_sym_if] = ACTIONS(2308), [anon_sym_impl] = ACTIONS(2308), [anon_sym_let] = ACTIONS(2308), @@ -81476,8 +79521,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2306), [anon_sym_true] = ACTIONS(2308), [anon_sym_false] = ACTIONS(2308), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2308), [sym_super] = ACTIONS(2308), [sym_crate] = ACTIONS(2308), @@ -81485,9 +79530,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2306), [sym_float_literal] = ACTIONS(2306), }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [STATE(589)] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), [ts_builtin_sym_end] = ACTIONS(2310), [sym_identifier] = ACTIONS(2312), [anon_sym_SEMI] = ACTIONS(2310), @@ -81531,6 +79576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2312), [anon_sym_fn] = ACTIONS(2312), [anon_sym_for] = ACTIONS(2312), + [anon_sym_gen] = ACTIONS(2312), [anon_sym_if] = ACTIONS(2312), [anon_sym_impl] = ACTIONS(2312), [anon_sym_let] = ACTIONS(2312), @@ -81556,8 +79602,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2310), [anon_sym_true] = ACTIONS(2312), [anon_sym_false] = ACTIONS(2312), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2312), [sym_super] = ACTIONS(2312), [sym_crate] = ACTIONS(2312), @@ -81565,9 +79611,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2310), [sym_float_literal] = ACTIONS(2310), }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [STATE(590)] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2314), [sym_identifier] = ACTIONS(2316), [anon_sym_SEMI] = ACTIONS(2314), @@ -81611,6 +79657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2316), [anon_sym_fn] = ACTIONS(2316), [anon_sym_for] = ACTIONS(2316), + [anon_sym_gen] = ACTIONS(2316), [anon_sym_if] = ACTIONS(2316), [anon_sym_impl] = ACTIONS(2316), [anon_sym_let] = ACTIONS(2316), @@ -81636,8 +79683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2314), [anon_sym_true] = ACTIONS(2316), [anon_sym_false] = ACTIONS(2316), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2316), [sym_super] = ACTIONS(2316), [sym_crate] = ACTIONS(2316), @@ -81645,9 +79692,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2314), [sym_float_literal] = ACTIONS(2314), }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), [ts_builtin_sym_end] = ACTIONS(2318), [sym_identifier] = ACTIONS(2320), [anon_sym_SEMI] = ACTIONS(2318), @@ -81691,6 +79738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2320), [anon_sym_fn] = ACTIONS(2320), [anon_sym_for] = ACTIONS(2320), + [anon_sym_gen] = ACTIONS(2320), [anon_sym_if] = ACTIONS(2320), [anon_sym_impl] = ACTIONS(2320), [anon_sym_let] = ACTIONS(2320), @@ -81716,8 +79764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2318), [anon_sym_true] = ACTIONS(2320), [anon_sym_false] = ACTIONS(2320), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2320), [sym_super] = ACTIONS(2320), [sym_crate] = ACTIONS(2320), @@ -81725,9 +79773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2318), [sym_float_literal] = ACTIONS(2318), }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), [ts_builtin_sym_end] = ACTIONS(2322), [sym_identifier] = ACTIONS(2324), [anon_sym_SEMI] = ACTIONS(2322), @@ -81771,6 +79819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2324), [anon_sym_fn] = ACTIONS(2324), [anon_sym_for] = ACTIONS(2324), + [anon_sym_gen] = ACTIONS(2324), [anon_sym_if] = ACTIONS(2324), [anon_sym_impl] = ACTIONS(2324), [anon_sym_let] = ACTIONS(2324), @@ -81796,8 +79845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2322), [anon_sym_true] = ACTIONS(2324), [anon_sym_false] = ACTIONS(2324), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2324), [sym_super] = ACTIONS(2324), [sym_crate] = ACTIONS(2324), @@ -81805,9 +79854,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2322), [sym_float_literal] = ACTIONS(2322), }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), [ts_builtin_sym_end] = ACTIONS(2326), [sym_identifier] = ACTIONS(2328), [anon_sym_SEMI] = ACTIONS(2326), @@ -81851,6 +79981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2328), [anon_sym_fn] = ACTIONS(2328), [anon_sym_for] = ACTIONS(2328), + [anon_sym_gen] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2328), [anon_sym_impl] = ACTIONS(2328), [anon_sym_let] = ACTIONS(2328), @@ -81876,8 +80007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2326), [anon_sym_true] = ACTIONS(2328), [anon_sym_false] = ACTIONS(2328), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2328), [sym_super] = ACTIONS(2328), [sym_crate] = ACTIONS(2328), @@ -81885,729 +80016,2034 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2326), [sym_float_literal] = ACTIONS(2326), }, - [646] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_macro_rules_BANG] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2330), + [anon_sym_u8] = ACTIONS(2332), + [anon_sym_i8] = ACTIONS(2332), + [anon_sym_u16] = ACTIONS(2332), + [anon_sym_i16] = ACTIONS(2332), + [anon_sym_u32] = ACTIONS(2332), + [anon_sym_i32] = ACTIONS(2332), + [anon_sym_u64] = ACTIONS(2332), + [anon_sym_i64] = ACTIONS(2332), + [anon_sym_u128] = ACTIONS(2332), + [anon_sym_i128] = ACTIONS(2332), + [anon_sym_isize] = ACTIONS(2332), + [anon_sym_usize] = ACTIONS(2332), + [anon_sym_f32] = ACTIONS(2332), + [anon_sym_f64] = ACTIONS(2332), + [anon_sym_bool] = ACTIONS(2332), + [anon_sym_str] = ACTIONS(2332), + [anon_sym_char] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_AMP] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2330), + [anon_sym_DOT_DOT] = ACTIONS(2330), + [anon_sym_COLON_COLON] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [anon_sym_fn] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_gen] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_impl] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_mod] = ACTIONS(2332), + [anon_sym_pub] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_struct] = ACTIONS(2332), + [anon_sym_trait] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_union] = ACTIONS(2332), + [anon_sym_unsafe] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_move] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [sym_integer_literal] = ACTIONS(2330), + [aux_sym_string_literal_token1] = ACTIONS(2330), + [sym_char_literal] = ACTIONS(2330), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_crate] = ACTIONS(2332), + [sym_metavariable] = ACTIONS(2330), + [sym__raw_string_literal_start] = ACTIONS(2330), + [sym_float_literal] = ACTIONS(2330), + }, + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2334), [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_u8] = ACTIONS(2336), + [anon_sym_i8] = ACTIONS(2336), + [anon_sym_u16] = ACTIONS(2336), + [anon_sym_i16] = ACTIONS(2336), + [anon_sym_u32] = ACTIONS(2336), + [anon_sym_i32] = ACTIONS(2336), + [anon_sym_u64] = ACTIONS(2336), + [anon_sym_i64] = ACTIONS(2336), + [anon_sym_u128] = ACTIONS(2336), + [anon_sym_i128] = ACTIONS(2336), + [anon_sym_isize] = ACTIONS(2336), + [anon_sym_usize] = ACTIONS(2336), + [anon_sym_f32] = ACTIONS(2336), + [anon_sym_f64] = ACTIONS(2336), + [anon_sym_bool] = ACTIONS(2336), + [anon_sym_str] = ACTIONS(2336), + [anon_sym_char] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_DOT_DOT] = ACTIONS(2334), + [anon_sym_COLON_COLON] = ACTIONS(2334), + [anon_sym_POUND] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), + [anon_sym_fn] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_gen] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_impl] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_loop] = ACTIONS(2336), + [anon_sym_match] = ACTIONS(2336), + [anon_sym_mod] = ACTIONS(2336), + [anon_sym_pub] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_struct] = ACTIONS(2336), + [anon_sym_trait] = ACTIONS(2336), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_union] = ACTIONS(2336), + [anon_sym_unsafe] = ACTIONS(2336), + [anon_sym_use] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_extern] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_move] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [sym_integer_literal] = ACTIONS(2334), + [aux_sym_string_literal_token1] = ACTIONS(2334), + [sym_char_literal] = ACTIONS(2334), + [anon_sym_true] = ACTIONS(2336), + [anon_sym_false] = ACTIONS(2336), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_crate] = ACTIONS(2336), + [sym_metavariable] = ACTIONS(2334), + [sym__raw_string_literal_start] = ACTIONS(2334), + [sym_float_literal] = ACTIONS(2334), + }, + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2338), + [anon_sym_macro_rules_BANG] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_u8] = ACTIONS(2340), + [anon_sym_i8] = ACTIONS(2340), + [anon_sym_u16] = ACTIONS(2340), + [anon_sym_i16] = ACTIONS(2340), + [anon_sym_u32] = ACTIONS(2340), + [anon_sym_i32] = ACTIONS(2340), + [anon_sym_u64] = ACTIONS(2340), + [anon_sym_i64] = ACTIONS(2340), + [anon_sym_u128] = ACTIONS(2340), + [anon_sym_i128] = ACTIONS(2340), + [anon_sym_isize] = ACTIONS(2340), + [anon_sym_usize] = ACTIONS(2340), + [anon_sym_f32] = ACTIONS(2340), + [anon_sym_f64] = ACTIONS(2340), + [anon_sym_bool] = ACTIONS(2340), + [anon_sym_str] = ACTIONS(2340), + [anon_sym_char] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_DOT_DOT] = ACTIONS(2338), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(2338), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [anon_sym_fn] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_gen] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_impl] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_loop] = ACTIONS(2340), + [anon_sym_match] = ACTIONS(2340), + [anon_sym_mod] = ACTIONS(2340), + [anon_sym_pub] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_struct] = ACTIONS(2340), + [anon_sym_trait] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_union] = ACTIONS(2340), + [anon_sym_unsafe] = ACTIONS(2340), + [anon_sym_use] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_extern] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_move] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [sym_integer_literal] = ACTIONS(2338), + [aux_sym_string_literal_token1] = ACTIONS(2338), + [sym_char_literal] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2340), + [anon_sym_false] = ACTIONS(2340), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_crate] = ACTIONS(2340), + [sym_metavariable] = ACTIONS(2338), + [sym__raw_string_literal_start] = ACTIONS(2338), + [sym_float_literal] = ACTIONS(2338), + }, + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2344), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_macro_rules_BANG] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_u8] = ACTIONS(2344), + [anon_sym_i8] = ACTIONS(2344), + [anon_sym_u16] = ACTIONS(2344), + [anon_sym_i16] = ACTIONS(2344), + [anon_sym_u32] = ACTIONS(2344), + [anon_sym_i32] = ACTIONS(2344), + [anon_sym_u64] = ACTIONS(2344), + [anon_sym_i64] = ACTIONS(2344), + [anon_sym_u128] = ACTIONS(2344), + [anon_sym_i128] = ACTIONS(2344), + [anon_sym_isize] = ACTIONS(2344), + [anon_sym_usize] = ACTIONS(2344), + [anon_sym_f32] = ACTIONS(2344), + [anon_sym_f64] = ACTIONS(2344), + [anon_sym_bool] = ACTIONS(2344), + [anon_sym_str] = ACTIONS(2344), + [anon_sym_char] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_DOT_DOT] = ACTIONS(2342), + [anon_sym_COLON_COLON] = ACTIONS(2342), [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), + [anon_sym_fn] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_gen] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_impl] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_loop] = ACTIONS(2344), + [anon_sym_match] = ACTIONS(2344), + [anon_sym_mod] = ACTIONS(2344), + [anon_sym_pub] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_static] = ACTIONS(2344), + [anon_sym_struct] = ACTIONS(2344), + [anon_sym_trait] = ACTIONS(2344), + [anon_sym_type] = ACTIONS(2344), + [anon_sym_union] = ACTIONS(2344), + [anon_sym_unsafe] = ACTIONS(2344), + [anon_sym_use] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_extern] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2344), + [anon_sym_move] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [sym_integer_literal] = ACTIONS(2342), + [aux_sym_string_literal_token1] = ACTIONS(2342), + [sym_char_literal] = ACTIONS(2342), + [anon_sym_true] = ACTIONS(2344), + [anon_sym_false] = ACTIONS(2344), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2344), + [sym_super] = ACTIONS(2344), + [sym_crate] = ACTIONS(2344), + [sym_metavariable] = ACTIONS(2342), + [sym__raw_string_literal_start] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2342), + }, + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_macro_rules_BANG] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2346), + [anon_sym_u8] = ACTIONS(2348), + [anon_sym_i8] = ACTIONS(2348), + [anon_sym_u16] = ACTIONS(2348), + [anon_sym_i16] = ACTIONS(2348), + [anon_sym_u32] = ACTIONS(2348), + [anon_sym_i32] = ACTIONS(2348), + [anon_sym_u64] = ACTIONS(2348), + [anon_sym_i64] = ACTIONS(2348), + [anon_sym_u128] = ACTIONS(2348), + [anon_sym_i128] = ACTIONS(2348), + [anon_sym_isize] = ACTIONS(2348), + [anon_sym_usize] = ACTIONS(2348), + [anon_sym_f32] = ACTIONS(2348), + [anon_sym_f64] = ACTIONS(2348), + [anon_sym_bool] = ACTIONS(2348), + [anon_sym_str] = ACTIONS(2348), + [anon_sym_char] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_BANG] = ACTIONS(2346), + [anon_sym_AMP] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_DOT_DOT] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), + [anon_sym_fn] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_gen] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_impl] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_loop] = ACTIONS(2348), + [anon_sym_match] = ACTIONS(2348), + [anon_sym_mod] = ACTIONS(2348), + [anon_sym_pub] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_struct] = ACTIONS(2348), + [anon_sym_trait] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_union] = ACTIONS(2348), + [anon_sym_unsafe] = ACTIONS(2348), + [anon_sym_use] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_extern] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_move] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [sym_integer_literal] = ACTIONS(2346), + [aux_sym_string_literal_token1] = ACTIONS(2346), + [sym_char_literal] = ACTIONS(2346), + [anon_sym_true] = ACTIONS(2348), + [anon_sym_false] = ACTIONS(2348), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_crate] = ACTIONS(2348), + [sym_metavariable] = ACTIONS(2346), + [sym__raw_string_literal_start] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2346), + }, + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_macro_rules_BANG] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_impl] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(1439), + [anon_sym_loop] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_mod] = ACTIONS(1439), + [anon_sym_pub] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_trait] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_unsafe] = ACTIONS(1439), + [anon_sym_use] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), + }, + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [ts_builtin_sym_end] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_macro_rules_BANG] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_u8] = ACTIONS(2352), + [anon_sym_i8] = ACTIONS(2352), + [anon_sym_u16] = ACTIONS(2352), + [anon_sym_i16] = ACTIONS(2352), + [anon_sym_u32] = ACTIONS(2352), + [anon_sym_i32] = ACTIONS(2352), + [anon_sym_u64] = ACTIONS(2352), + [anon_sym_i64] = ACTIONS(2352), + [anon_sym_u128] = ACTIONS(2352), + [anon_sym_i128] = ACTIONS(2352), + [anon_sym_isize] = ACTIONS(2352), + [anon_sym_usize] = ACTIONS(2352), + [anon_sym_f32] = ACTIONS(2352), + [anon_sym_f64] = ACTIONS(2352), + [anon_sym_bool] = ACTIONS(2352), + [anon_sym_str] = ACTIONS(2352), + [anon_sym_char] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_DOT_DOT] = ACTIONS(2350), + [anon_sym_COLON_COLON] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_default] = ACTIONS(2352), + [anon_sym_enum] = ACTIONS(2352), + [anon_sym_fn] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_gen] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_loop] = ACTIONS(2352), + [anon_sym_match] = ACTIONS(2352), + [anon_sym_mod] = ACTIONS(2352), + [anon_sym_pub] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_static] = ACTIONS(2352), + [anon_sym_struct] = ACTIONS(2352), + [anon_sym_trait] = ACTIONS(2352), + [anon_sym_type] = ACTIONS(2352), + [anon_sym_union] = ACTIONS(2352), + [anon_sym_unsafe] = ACTIONS(2352), + [anon_sym_use] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_extern] = ACTIONS(2352), + [anon_sym_yield] = ACTIONS(2352), + [anon_sym_move] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2352), + [sym_integer_literal] = ACTIONS(2350), + [aux_sym_string_literal_token1] = ACTIONS(2350), + [sym_char_literal] = ACTIONS(2350), + [anon_sym_true] = ACTIONS(2352), + [anon_sym_false] = ACTIONS(2352), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2352), + [sym_super] = ACTIONS(2352), + [sym_crate] = ACTIONS(2352), + [sym_metavariable] = ACTIONS(2350), + [sym__raw_string_literal_start] = ACTIONS(2350), + [sym_float_literal] = ACTIONS(2350), + }, + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_macro_rules_BANG] = ACTIONS(2354), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_u8] = ACTIONS(2356), + [anon_sym_i8] = ACTIONS(2356), + [anon_sym_u16] = ACTIONS(2356), + [anon_sym_i16] = ACTIONS(2356), + [anon_sym_u32] = ACTIONS(2356), + [anon_sym_i32] = ACTIONS(2356), + [anon_sym_u64] = ACTIONS(2356), + [anon_sym_i64] = ACTIONS(2356), + [anon_sym_u128] = ACTIONS(2356), + [anon_sym_i128] = ACTIONS(2356), + [anon_sym_isize] = ACTIONS(2356), + [anon_sym_usize] = ACTIONS(2356), + [anon_sym_f32] = ACTIONS(2356), + [anon_sym_f64] = ACTIONS(2356), + [anon_sym_bool] = ACTIONS(2356), + [anon_sym_str] = ACTIONS(2356), + [anon_sym_char] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_BANG] = ACTIONS(2354), + [anon_sym_AMP] = ACTIONS(2354), + [anon_sym_PIPE] = ACTIONS(2354), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [anon_sym_fn] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_gen] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_impl] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), + [anon_sym_pub] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_struct] = ACTIONS(2356), + [anon_sym_trait] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_union] = ACTIONS(2356), + [anon_sym_unsafe] = ACTIONS(2356), + [anon_sym_use] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_extern] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_move] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2354), + [aux_sym_string_literal_token1] = ACTIONS(2354), + [sym_char_literal] = ACTIONS(2354), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_crate] = ACTIONS(2356), + [sym_metavariable] = ACTIONS(2354), + [sym__raw_string_literal_start] = ACTIONS(2354), + [sym_float_literal] = ACTIONS(2354), + }, + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_macro_rules_BANG] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2358), + [anon_sym_u8] = ACTIONS(2360), + [anon_sym_i8] = ACTIONS(2360), + [anon_sym_u16] = ACTIONS(2360), + [anon_sym_i16] = ACTIONS(2360), + [anon_sym_u32] = ACTIONS(2360), + [anon_sym_i32] = ACTIONS(2360), + [anon_sym_u64] = ACTIONS(2360), + [anon_sym_i64] = ACTIONS(2360), + [anon_sym_u128] = ACTIONS(2360), + [anon_sym_i128] = ACTIONS(2360), + [anon_sym_isize] = ACTIONS(2360), + [anon_sym_usize] = ACTIONS(2360), + [anon_sym_f32] = ACTIONS(2360), + [anon_sym_f64] = ACTIONS(2360), + [anon_sym_bool] = ACTIONS(2360), + [anon_sym_str] = ACTIONS(2360), + [anon_sym_char] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_AMP] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_DOT_DOT] = ACTIONS(2358), + [anon_sym_COLON_COLON] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_gen] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_impl] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_loop] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_mod] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), + [anon_sym_trait] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_use] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_move] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [sym_integer_literal] = ACTIONS(2358), + [aux_sym_string_literal_token1] = ACTIONS(2358), + [sym_char_literal] = ACTIONS(2358), + [anon_sym_true] = ACTIONS(2360), + [anon_sym_false] = ACTIONS(2360), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_crate] = ACTIONS(2360), + [sym_metavariable] = ACTIONS(2358), + [sym__raw_string_literal_start] = ACTIONS(2358), + [sym_float_literal] = ACTIONS(2358), + }, + [STATE(604)] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_macro_rules_BANG] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_u8] = ACTIONS(2364), + [anon_sym_i8] = ACTIONS(2364), + [anon_sym_u16] = ACTIONS(2364), + [anon_sym_i16] = ACTIONS(2364), + [anon_sym_u32] = ACTIONS(2364), + [anon_sym_i32] = ACTIONS(2364), + [anon_sym_u64] = ACTIONS(2364), + [anon_sym_i64] = ACTIONS(2364), + [anon_sym_u128] = ACTIONS(2364), + [anon_sym_i128] = ACTIONS(2364), + [anon_sym_isize] = ACTIONS(2364), + [anon_sym_usize] = ACTIONS(2364), + [anon_sym_f32] = ACTIONS(2364), + [anon_sym_f64] = ACTIONS(2364), + [anon_sym_bool] = ACTIONS(2364), + [anon_sym_str] = ACTIONS(2364), + [anon_sym_char] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_COLON_COLON] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(2364), + [anon_sym_async] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_fn] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_gen] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_impl] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_mod] = ACTIONS(2364), + [anon_sym_pub] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_trait] = ACTIONS(2364), [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_unsafe] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_yield] = ACTIONS(2364), + [anon_sym_move] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2362), + [aux_sym_string_literal_token1] = ACTIONS(2362), + [sym_char_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2364), + [sym_super] = ACTIONS(2364), + [sym_crate] = ACTIONS(2364), + [sym_metavariable] = ACTIONS(2362), + [sym__raw_string_literal_start] = ACTIONS(2362), + [sym_float_literal] = ACTIONS(2362), + }, + [STATE(605)] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_macro_rules_BANG] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_u8] = ACTIONS(2368), + [anon_sym_i8] = ACTIONS(2368), + [anon_sym_u16] = ACTIONS(2368), + [anon_sym_i16] = ACTIONS(2368), + [anon_sym_u32] = ACTIONS(2368), + [anon_sym_i32] = ACTIONS(2368), + [anon_sym_u64] = ACTIONS(2368), + [anon_sym_i64] = ACTIONS(2368), + [anon_sym_u128] = ACTIONS(2368), + [anon_sym_i128] = ACTIONS(2368), + [anon_sym_isize] = ACTIONS(2368), + [anon_sym_usize] = ACTIONS(2368), + [anon_sym_f32] = ACTIONS(2368), + [anon_sym_f64] = ACTIONS(2368), + [anon_sym_bool] = ACTIONS(2368), + [anon_sym_str] = ACTIONS(2368), + [anon_sym_char] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_DOT_DOT] = ACTIONS(2366), + [anon_sym_COLON_COLON] = ACTIONS(2366), + [anon_sym_POUND] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_fn] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_gen] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_impl] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_loop] = ACTIONS(2368), + [anon_sym_match] = ACTIONS(2368), + [anon_sym_mod] = ACTIONS(2368), + [anon_sym_pub] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_trait] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), + [anon_sym_use] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_move] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [sym_integer_literal] = ACTIONS(2366), + [aux_sym_string_literal_token1] = ACTIONS(2366), + [sym_char_literal] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_crate] = ACTIONS(2368), + [sym_metavariable] = ACTIONS(2366), + [sym__raw_string_literal_start] = ACTIONS(2366), + [sym_float_literal] = ACTIONS(2366), + }, + [STATE(606)] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_macro_rules_BANG] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_u8] = ACTIONS(2372), + [anon_sym_i8] = ACTIONS(2372), + [anon_sym_u16] = ACTIONS(2372), + [anon_sym_i16] = ACTIONS(2372), + [anon_sym_u32] = ACTIONS(2372), + [anon_sym_i32] = ACTIONS(2372), + [anon_sym_u64] = ACTIONS(2372), + [anon_sym_i64] = ACTIONS(2372), + [anon_sym_u128] = ACTIONS(2372), + [anon_sym_i128] = ACTIONS(2372), + [anon_sym_isize] = ACTIONS(2372), + [anon_sym_usize] = ACTIONS(2372), + [anon_sym_f32] = ACTIONS(2372), + [anon_sym_f64] = ACTIONS(2372), + [anon_sym_bool] = ACTIONS(2372), + [anon_sym_str] = ACTIONS(2372), + [anon_sym_char] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_DOT_DOT] = ACTIONS(2370), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_POUND] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2372), + [anon_sym_async] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_fn] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_gen] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_impl] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_loop] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_mod] = ACTIONS(2372), + [anon_sym_pub] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_trait] = ACTIONS(2372), + [anon_sym_type] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_unsafe] = ACTIONS(2372), + [anon_sym_use] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), + [anon_sym_yield] = ACTIONS(2372), + [anon_sym_move] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [sym_integer_literal] = ACTIONS(2370), + [aux_sym_string_literal_token1] = ACTIONS(2370), + [sym_char_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2372), + [sym_super] = ACTIONS(2372), + [sym_crate] = ACTIONS(2372), + [sym_metavariable] = ACTIONS(2370), + [sym__raw_string_literal_start] = ACTIONS(2370), + [sym_float_literal] = ACTIONS(2370), + }, + [STATE(607)] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_macro_rules_BANG] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_u8] = ACTIONS(2376), + [anon_sym_i8] = ACTIONS(2376), + [anon_sym_u16] = ACTIONS(2376), + [anon_sym_i16] = ACTIONS(2376), + [anon_sym_u32] = ACTIONS(2376), + [anon_sym_i32] = ACTIONS(2376), + [anon_sym_u64] = ACTIONS(2376), + [anon_sym_i64] = ACTIONS(2376), + [anon_sym_u128] = ACTIONS(2376), + [anon_sym_i128] = ACTIONS(2376), + [anon_sym_isize] = ACTIONS(2376), + [anon_sym_usize] = ACTIONS(2376), + [anon_sym_f32] = ACTIONS(2376), + [anon_sym_f64] = ACTIONS(2376), + [anon_sym_bool] = ACTIONS(2376), + [anon_sym_str] = ACTIONS(2376), + [anon_sym_char] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_DOT_DOT] = ACTIONS(2374), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [anon_sym_fn] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_gen] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_impl] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_loop] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2376), + [anon_sym_mod] = ACTIONS(2376), + [anon_sym_pub] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_struct] = ACTIONS(2376), + [anon_sym_trait] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_union] = ACTIONS(2376), + [anon_sym_unsafe] = ACTIONS(2376), + [anon_sym_use] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_move] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [sym_integer_literal] = ACTIONS(2374), + [aux_sym_string_literal_token1] = ACTIONS(2374), + [sym_char_literal] = ACTIONS(2374), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [sym_metavariable] = ACTIONS(2374), + [sym__raw_string_literal_start] = ACTIONS(2374), + [sym_float_literal] = ACTIONS(2374), }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_macro_rules_BANG] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2380), - [anon_sym_u8] = ACTIONS(2382), - [anon_sym_i8] = ACTIONS(2382), - [anon_sym_u16] = ACTIONS(2382), - [anon_sym_i16] = ACTIONS(2382), - [anon_sym_u32] = ACTIONS(2382), - [anon_sym_i32] = ACTIONS(2382), - [anon_sym_u64] = ACTIONS(2382), - [anon_sym_i64] = ACTIONS(2382), - [anon_sym_u128] = ACTIONS(2382), - [anon_sym_i128] = ACTIONS(2382), - [anon_sym_isize] = ACTIONS(2382), - [anon_sym_usize] = ACTIONS(2382), - [anon_sym_f32] = ACTIONS(2382), - [anon_sym_f64] = ACTIONS(2382), - [anon_sym_bool] = ACTIONS(2382), - [anon_sym_str] = ACTIONS(2382), - [anon_sym_char] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_DOT_DOT] = ACTIONS(2380), - [anon_sym_COLON_COLON] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [anon_sym_fn] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_impl] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_loop] = ACTIONS(2382), - [anon_sym_match] = ACTIONS(2382), - [anon_sym_mod] = ACTIONS(2382), - [anon_sym_pub] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(2382), - [anon_sym_trait] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_union] = ACTIONS(2382), - [anon_sym_unsafe] = ACTIONS(2382), - [anon_sym_use] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_move] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [sym_integer_literal] = ACTIONS(2380), - [aux_sym_string_literal_token1] = ACTIONS(2380), - [sym_char_literal] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2382), - [anon_sym_false] = ACTIONS(2382), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_crate] = ACTIONS(2382), - [sym_metavariable] = ACTIONS(2380), - [sym__raw_string_literal_start] = ACTIONS(2380), - [sym_float_literal] = ACTIONS(2380), - }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2384), - [sym_identifier] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_macro_rules_BANG] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_u8] = ACTIONS(2386), - [anon_sym_i8] = ACTIONS(2386), - [anon_sym_u16] = ACTIONS(2386), - [anon_sym_i16] = ACTIONS(2386), - [anon_sym_u32] = ACTIONS(2386), - [anon_sym_i32] = ACTIONS(2386), - [anon_sym_u64] = ACTIONS(2386), - [anon_sym_i64] = ACTIONS(2386), - [anon_sym_u128] = ACTIONS(2386), - [anon_sym_i128] = ACTIONS(2386), - [anon_sym_isize] = ACTIONS(2386), - [anon_sym_usize] = ACTIONS(2386), - [anon_sym_f32] = ACTIONS(2386), - [anon_sym_f64] = ACTIONS(2386), - [anon_sym_bool] = ACTIONS(2386), - [anon_sym_str] = ACTIONS(2386), - [anon_sym_char] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_DOT_DOT] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_async] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_default] = ACTIONS(2386), - [anon_sym_enum] = ACTIONS(2386), - [anon_sym_fn] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_impl] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), - [anon_sym_mod] = ACTIONS(2386), - [anon_sym_pub] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_static] = ACTIONS(2386), - [anon_sym_struct] = ACTIONS(2386), - [anon_sym_trait] = ACTIONS(2386), - [anon_sym_type] = ACTIONS(2386), - [anon_sym_union] = ACTIONS(2386), - [anon_sym_unsafe] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_yield] = ACTIONS(2386), - [anon_sym_move] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [sym_integer_literal] = ACTIONS(2384), - [aux_sym_string_literal_token1] = ACTIONS(2384), - [sym_char_literal] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2386), - [anon_sym_false] = ACTIONS(2386), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2386), - [sym_super] = ACTIONS(2386), - [sym_crate] = ACTIONS(2386), - [sym_metavariable] = ACTIONS(2384), - [sym__raw_string_literal_start] = ACTIONS(2384), - [sym_float_literal] = ACTIONS(2384), - }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_macro_rules_BANG] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_u8] = ACTIONS(2390), - [anon_sym_i8] = ACTIONS(2390), - [anon_sym_u16] = ACTIONS(2390), - [anon_sym_i16] = ACTIONS(2390), - [anon_sym_u32] = ACTIONS(2390), - [anon_sym_i32] = ACTIONS(2390), - [anon_sym_u64] = ACTIONS(2390), - [anon_sym_i64] = ACTIONS(2390), - [anon_sym_u128] = ACTIONS(2390), - [anon_sym_i128] = ACTIONS(2390), - [anon_sym_isize] = ACTIONS(2390), - [anon_sym_usize] = ACTIONS(2390), - [anon_sym_f32] = ACTIONS(2390), - [anon_sym_f64] = ACTIONS(2390), - [anon_sym_bool] = ACTIONS(2390), - [anon_sym_str] = ACTIONS(2390), - [anon_sym_char] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_DOT_DOT] = ACTIONS(2388), - [anon_sym_COLON_COLON] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), - [anon_sym_fn] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_impl] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_mod] = ACTIONS(2390), - [anon_sym_pub] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2390), - [anon_sym_trait] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_union] = ACTIONS(2390), - [anon_sym_unsafe] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_move] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [sym_integer_literal] = ACTIONS(2388), - [aux_sym_string_literal_token1] = ACTIONS(2388), - [sym_char_literal] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_crate] = ACTIONS(2390), - [sym_metavariable] = ACTIONS(2388), - [sym__raw_string_literal_start] = ACTIONS(2388), - [sym_float_literal] = ACTIONS(2388), - }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2392), - [sym_identifier] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_macro_rules_BANG] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_u8] = ACTIONS(2394), - [anon_sym_i8] = ACTIONS(2394), - [anon_sym_u16] = ACTIONS(2394), - [anon_sym_i16] = ACTIONS(2394), - [anon_sym_u32] = ACTIONS(2394), - [anon_sym_i32] = ACTIONS(2394), - [anon_sym_u64] = ACTIONS(2394), - [anon_sym_i64] = ACTIONS(2394), - [anon_sym_u128] = ACTIONS(2394), - [anon_sym_i128] = ACTIONS(2394), - [anon_sym_isize] = ACTIONS(2394), - [anon_sym_usize] = ACTIONS(2394), - [anon_sym_f32] = ACTIONS(2394), - [anon_sym_f64] = ACTIONS(2394), - [anon_sym_bool] = ACTIONS(2394), - [anon_sym_str] = ACTIONS(2394), - [anon_sym_char] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_impl] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_mod] = ACTIONS(2394), - [anon_sym_pub] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_trait] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_unsafe] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_move] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [sym_integer_literal] = ACTIONS(2392), - [aux_sym_string_literal_token1] = ACTIONS(2392), - [sym_char_literal] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_crate] = ACTIONS(2394), - [sym_metavariable] = ACTIONS(2392), - [sym__raw_string_literal_start] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), - }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_macro_rules_BANG] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_u8] = ACTIONS(2398), - [anon_sym_i8] = ACTIONS(2398), - [anon_sym_u16] = ACTIONS(2398), - [anon_sym_i16] = ACTIONS(2398), - [anon_sym_u32] = ACTIONS(2398), - [anon_sym_i32] = ACTIONS(2398), - [anon_sym_u64] = ACTIONS(2398), - [anon_sym_i64] = ACTIONS(2398), - [anon_sym_u128] = ACTIONS(2398), - [anon_sym_i128] = ACTIONS(2398), - [anon_sym_isize] = ACTIONS(2398), - [anon_sym_usize] = ACTIONS(2398), - [anon_sym_f32] = ACTIONS(2398), - [anon_sym_f64] = ACTIONS(2398), - [anon_sym_bool] = ACTIONS(2398), - [anon_sym_str] = ACTIONS(2398), - [anon_sym_char] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_DOT_DOT] = ACTIONS(2396), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2396), - [anon_sym_SQUOTE] = ACTIONS(2398), - [anon_sym_async] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_mod] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_static] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_trait] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_yield] = ACTIONS(2398), - [anon_sym_move] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [sym_integer_literal] = ACTIONS(2396), - [aux_sym_string_literal_token1] = ACTIONS(2396), - [sym_char_literal] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2398), - [sym_super] = ACTIONS(2398), - [sym_crate] = ACTIONS(2398), - [sym_metavariable] = ACTIONS(2396), - [sym__raw_string_literal_start] = ACTIONS(2396), - [sym_float_literal] = ACTIONS(2396), - }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), - }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_macro_rules_BANG] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_u8] = ACTIONS(2402), - [anon_sym_i8] = ACTIONS(2402), - [anon_sym_u16] = ACTIONS(2402), - [anon_sym_i16] = ACTIONS(2402), - [anon_sym_u32] = ACTIONS(2402), - [anon_sym_i32] = ACTIONS(2402), - [anon_sym_u64] = ACTIONS(2402), - [anon_sym_i64] = ACTIONS(2402), - [anon_sym_u128] = ACTIONS(2402), - [anon_sym_i128] = ACTIONS(2402), - [anon_sym_isize] = ACTIONS(2402), - [anon_sym_usize] = ACTIONS(2402), - [anon_sym_f32] = ACTIONS(2402), - [anon_sym_f64] = ACTIONS(2402), - [anon_sym_bool] = ACTIONS(2402), - [anon_sym_str] = ACTIONS(2402), - [anon_sym_char] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_DOT_DOT] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_fn] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_impl] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_mod] = ACTIONS(2402), - [anon_sym_pub] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_trait] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [anon_sym_unsafe] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_move] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2400), - [aux_sym_string_literal_token1] = ACTIONS(2400), - [sym_char_literal] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - }, - [654] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), - [aux_sym_declaration_list_repeat1] = STATE(646), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), + [STATE(608)] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_macro_rules_BANG] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_u8] = ACTIONS(2380), + [anon_sym_i8] = ACTIONS(2380), + [anon_sym_u16] = ACTIONS(2380), + [anon_sym_i16] = ACTIONS(2380), + [anon_sym_u32] = ACTIONS(2380), + [anon_sym_i32] = ACTIONS(2380), + [anon_sym_u64] = ACTIONS(2380), + [anon_sym_i64] = ACTIONS(2380), + [anon_sym_u128] = ACTIONS(2380), + [anon_sym_i128] = ACTIONS(2380), + [anon_sym_isize] = ACTIONS(2380), + [anon_sym_usize] = ACTIONS(2380), + [anon_sym_f32] = ACTIONS(2380), + [anon_sym_f64] = ACTIONS(2380), + [anon_sym_bool] = ACTIONS(2380), + [anon_sym_str] = ACTIONS(2380), + [anon_sym_char] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_COLON_COLON] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [anon_sym_fn] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_gen] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_impl] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_loop] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_mod] = ACTIONS(2380), + [anon_sym_pub] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_struct] = ACTIONS(2380), + [anon_sym_trait] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_union] = ACTIONS(2380), + [anon_sym_unsafe] = ACTIONS(2380), + [anon_sym_use] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_move] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [sym_integer_literal] = ACTIONS(2378), + [aux_sym_string_literal_token1] = ACTIONS(2378), + [sym_char_literal] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_crate] = ACTIONS(2380), [sym_metavariable] = ACTIONS(2378), + [sym__raw_string_literal_start] = ACTIONS(2378), + [sym_float_literal] = ACTIONS(2378), }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [STATE(609)] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_macro_rules_BANG] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_u8] = ACTIONS(2384), + [anon_sym_i8] = ACTIONS(2384), + [anon_sym_u16] = ACTIONS(2384), + [anon_sym_i16] = ACTIONS(2384), + [anon_sym_u32] = ACTIONS(2384), + [anon_sym_i32] = ACTIONS(2384), + [anon_sym_u64] = ACTIONS(2384), + [anon_sym_i64] = ACTIONS(2384), + [anon_sym_u128] = ACTIONS(2384), + [anon_sym_i128] = ACTIONS(2384), + [anon_sym_isize] = ACTIONS(2384), + [anon_sym_usize] = ACTIONS(2384), + [anon_sym_f32] = ACTIONS(2384), + [anon_sym_f64] = ACTIONS(2384), + [anon_sym_bool] = ACTIONS(2384), + [anon_sym_str] = ACTIONS(2384), + [anon_sym_char] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_BANG] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_DOT_DOT] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(2382), + [anon_sym_POUND] = ACTIONS(2382), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_fn] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_gen] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_impl] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_loop] = ACTIONS(2384), + [anon_sym_match] = ACTIONS(2384), + [anon_sym_mod] = ACTIONS(2384), + [anon_sym_pub] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_trait] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_unsafe] = ACTIONS(2384), + [anon_sym_use] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_move] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [sym_integer_literal] = ACTIONS(2382), + [aux_sym_string_literal_token1] = ACTIONS(2382), + [sym_char_literal] = ACTIONS(2382), + [anon_sym_true] = ACTIONS(2384), + [anon_sym_false] = ACTIONS(2384), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_crate] = ACTIONS(2384), + [sym_metavariable] = ACTIONS(2382), + [sym__raw_string_literal_start] = ACTIONS(2382), + [sym_float_literal] = ACTIONS(2382), + }, + [STATE(610)] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_macro_rules_BANG] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_u8] = ACTIONS(2388), + [anon_sym_i8] = ACTIONS(2388), + [anon_sym_u16] = ACTIONS(2388), + [anon_sym_i16] = ACTIONS(2388), + [anon_sym_u32] = ACTIONS(2388), + [anon_sym_i32] = ACTIONS(2388), + [anon_sym_u64] = ACTIONS(2388), + [anon_sym_i64] = ACTIONS(2388), + [anon_sym_u128] = ACTIONS(2388), + [anon_sym_i128] = ACTIONS(2388), + [anon_sym_isize] = ACTIONS(2388), + [anon_sym_usize] = ACTIONS(2388), + [anon_sym_f32] = ACTIONS(2388), + [anon_sym_f64] = ACTIONS(2388), + [anon_sym_bool] = ACTIONS(2388), + [anon_sym_str] = ACTIONS(2388), + [anon_sym_char] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_DOT_DOT] = ACTIONS(2386), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_POUND] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [anon_sym_fn] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_gen] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_impl] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_loop] = ACTIONS(2388), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_mod] = ACTIONS(2388), + [anon_sym_pub] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_trait] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_union] = ACTIONS(2388), + [anon_sym_unsafe] = ACTIONS(2388), + [anon_sym_use] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_move] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [sym_integer_literal] = ACTIONS(2386), + [aux_sym_string_literal_token1] = ACTIONS(2386), + [sym_char_literal] = ACTIONS(2386), + [anon_sym_true] = ACTIONS(2388), + [anon_sym_false] = ACTIONS(2388), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_crate] = ACTIONS(2388), + [sym_metavariable] = ACTIONS(2386), + [sym__raw_string_literal_start] = ACTIONS(2386), + [sym_float_literal] = ACTIONS(2386), + }, + [STATE(611)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(612)] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), + }, + [STATE(613)] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_macro_rules_BANG] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_u8] = ACTIONS(2392), + [anon_sym_i8] = ACTIONS(2392), + [anon_sym_u16] = ACTIONS(2392), + [anon_sym_i16] = ACTIONS(2392), + [anon_sym_u32] = ACTIONS(2392), + [anon_sym_i32] = ACTIONS(2392), + [anon_sym_u64] = ACTIONS(2392), + [anon_sym_i64] = ACTIONS(2392), + [anon_sym_u128] = ACTIONS(2392), + [anon_sym_i128] = ACTIONS(2392), + [anon_sym_isize] = ACTIONS(2392), + [anon_sym_usize] = ACTIONS(2392), + [anon_sym_f32] = ACTIONS(2392), + [anon_sym_f64] = ACTIONS(2392), + [anon_sym_bool] = ACTIONS(2392), + [anon_sym_str] = ACTIONS(2392), + [anon_sym_char] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_DOT_DOT] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_default] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_gen] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_impl] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_loop] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_mod] = ACTIONS(2392), + [anon_sym_pub] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_trait] = ACTIONS(2392), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_union] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_use] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_extern] = ACTIONS(2392), + [anon_sym_yield] = ACTIONS(2392), + [anon_sym_move] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2392), + [sym_integer_literal] = ACTIONS(2390), + [aux_sym_string_literal_token1] = ACTIONS(2390), + [sym_char_literal] = ACTIONS(2390), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2392), + [sym_super] = ACTIONS(2392), + [sym_crate] = ACTIONS(2392), + [sym_metavariable] = ACTIONS(2390), + [sym__raw_string_literal_start] = ACTIONS(2390), + [sym_float_literal] = ACTIONS(2390), + }, + [STATE(614)] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(615)] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), + [ts_builtin_sym_end] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_macro_rules_BANG] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_u8] = ACTIONS(2396), + [anon_sym_i8] = ACTIONS(2396), + [anon_sym_u16] = ACTIONS(2396), + [anon_sym_i16] = ACTIONS(2396), + [anon_sym_u32] = ACTIONS(2396), + [anon_sym_i32] = ACTIONS(2396), + [anon_sym_u64] = ACTIONS(2396), + [anon_sym_i64] = ACTIONS(2396), + [anon_sym_u128] = ACTIONS(2396), + [anon_sym_i128] = ACTIONS(2396), + [anon_sym_isize] = ACTIONS(2396), + [anon_sym_usize] = ACTIONS(2396), + [anon_sym_f32] = ACTIONS(2396), + [anon_sym_f64] = ACTIONS(2396), + [anon_sym_bool] = ACTIONS(2396), + [anon_sym_str] = ACTIONS(2396), + [anon_sym_char] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2394), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_POUND] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_fn] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_gen] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_impl] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_loop] = ACTIONS(2396), + [anon_sym_match] = ACTIONS(2396), + [anon_sym_mod] = ACTIONS(2396), + [anon_sym_pub] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_trait] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [anon_sym_unsafe] = ACTIONS(2396), + [anon_sym_use] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_move] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [sym_integer_literal] = ACTIONS(2394), + [aux_sym_string_literal_token1] = ACTIONS(2394), + [sym_char_literal] = ACTIONS(2394), + [anon_sym_true] = ACTIONS(2396), + [anon_sym_false] = ACTIONS(2396), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_crate] = ACTIONS(2396), + [sym_metavariable] = ACTIONS(2394), + [sym__raw_string_literal_start] = ACTIONS(2394), + [sym_float_literal] = ACTIONS(2394), + }, + [STATE(616)] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), + }, + [STATE(617)] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_macro_rules_BANG] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_impl] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_mod] = ACTIONS(1443), + [anon_sym_pub] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_struct] = ACTIONS(1443), + [anon_sym_trait] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(618)] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_macro_rules_BANG] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_u8] = ACTIONS(2400), + [anon_sym_i8] = ACTIONS(2400), + [anon_sym_u16] = ACTIONS(2400), + [anon_sym_i16] = ACTIONS(2400), + [anon_sym_u32] = ACTIONS(2400), + [anon_sym_i32] = ACTIONS(2400), + [anon_sym_u64] = ACTIONS(2400), + [anon_sym_i64] = ACTIONS(2400), + [anon_sym_u128] = ACTIONS(2400), + [anon_sym_i128] = ACTIONS(2400), + [anon_sym_isize] = ACTIONS(2400), + [anon_sym_usize] = ACTIONS(2400), + [anon_sym_f32] = ACTIONS(2400), + [anon_sym_f64] = ACTIONS(2400), + [anon_sym_bool] = ACTIONS(2400), + [anon_sym_str] = ACTIONS(2400), + [anon_sym_char] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_DOT_DOT] = ACTIONS(2398), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2400), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_fn] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_gen] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_impl] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_loop] = ACTIONS(2400), + [anon_sym_match] = ACTIONS(2400), + [anon_sym_mod] = ACTIONS(2400), + [anon_sym_pub] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_trait] = ACTIONS(2400), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [anon_sym_unsafe] = ACTIONS(2400), + [anon_sym_use] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_yield] = ACTIONS(2400), + [anon_sym_move] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [sym_integer_literal] = ACTIONS(2398), + [aux_sym_string_literal_token1] = ACTIONS(2398), + [sym_char_literal] = ACTIONS(2398), + [anon_sym_true] = ACTIONS(2400), + [anon_sym_false] = ACTIONS(2400), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2400), + [sym_super] = ACTIONS(2400), + [sym_crate] = ACTIONS(2400), + [sym_metavariable] = ACTIONS(2398), + [sym__raw_string_literal_start] = ACTIONS(2398), + [sym_float_literal] = ACTIONS(2398), + }, + [STATE(619)] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_macro_rules_BANG] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_u8] = ACTIONS(2404), + [anon_sym_i8] = ACTIONS(2404), + [anon_sym_u16] = ACTIONS(2404), + [anon_sym_i16] = ACTIONS(2404), + [anon_sym_u32] = ACTIONS(2404), + [anon_sym_i32] = ACTIONS(2404), + [anon_sym_u64] = ACTIONS(2404), + [anon_sym_i64] = ACTIONS(2404), + [anon_sym_u128] = ACTIONS(2404), + [anon_sym_i128] = ACTIONS(2404), + [anon_sym_isize] = ACTIONS(2404), + [anon_sym_usize] = ACTIONS(2404), + [anon_sym_f32] = ACTIONS(2404), + [anon_sym_f64] = ACTIONS(2404), + [anon_sym_bool] = ACTIONS(2404), + [anon_sym_str] = ACTIONS(2404), + [anon_sym_char] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_fn] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_gen] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_impl] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_loop] = ACTIONS(2404), + [anon_sym_match] = ACTIONS(2404), + [anon_sym_mod] = ACTIONS(2404), + [anon_sym_pub] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_trait] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [anon_sym_unsafe] = ACTIONS(2404), + [anon_sym_use] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_move] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [sym_integer_literal] = ACTIONS(2402), + [aux_sym_string_literal_token1] = ACTIONS(2402), + [sym_char_literal] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2404), + [anon_sym_false] = ACTIONS(2404), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_crate] = ACTIONS(2404), + [sym_metavariable] = ACTIONS(2402), + [sym__raw_string_literal_start] = ACTIONS(2402), + [sym_float_literal] = ACTIONS(2402), + }, + [STATE(620)] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), [ts_builtin_sym_end] = ACTIONS(2406), [sym_identifier] = ACTIONS(2408), [anon_sym_SEMI] = ACTIONS(2406), @@ -82651,6 +82087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2408), [anon_sym_fn] = ACTIONS(2408), [anon_sym_for] = ACTIONS(2408), + [anon_sym_gen] = ACTIONS(2408), [anon_sym_if] = ACTIONS(2408), [anon_sym_impl] = ACTIONS(2408), [anon_sym_let] = ACTIONS(2408), @@ -82676,8 +82113,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2406), [anon_sym_true] = ACTIONS(2408), [anon_sym_false] = ACTIONS(2408), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2408), [sym_super] = ACTIONS(2408), [sym_crate] = ACTIONS(2408), @@ -82685,9 +82122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2406), [sym_float_literal] = ACTIONS(2406), }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [STATE(621)] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2410), [sym_identifier] = ACTIONS(2412), [anon_sym_SEMI] = ACTIONS(2410), @@ -82731,6 +82168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2412), [anon_sym_fn] = ACTIONS(2412), [anon_sym_for] = ACTIONS(2412), + [anon_sym_gen] = ACTIONS(2412), [anon_sym_if] = ACTIONS(2412), [anon_sym_impl] = ACTIONS(2412), [anon_sym_let] = ACTIONS(2412), @@ -82756,8 +82194,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2410), [anon_sym_true] = ACTIONS(2412), [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2412), [sym_super] = ACTIONS(2412), [sym_crate] = ACTIONS(2412), @@ -82765,9 +82203,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2410), [sym_float_literal] = ACTIONS(2410), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [STATE(622)] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), [ts_builtin_sym_end] = ACTIONS(2414), [sym_identifier] = ACTIONS(2416), [anon_sym_SEMI] = ACTIONS(2414), @@ -82811,6 +82249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2416), [anon_sym_fn] = ACTIONS(2416), [anon_sym_for] = ACTIONS(2416), + [anon_sym_gen] = ACTIONS(2416), [anon_sym_if] = ACTIONS(2416), [anon_sym_impl] = ACTIONS(2416), [anon_sym_let] = ACTIONS(2416), @@ -82836,8 +82275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2414), [anon_sym_true] = ACTIONS(2416), [anon_sym_false] = ACTIONS(2416), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2416), [sym_super] = ACTIONS(2416), [sym_crate] = ACTIONS(2416), @@ -82845,9 +82284,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2414), [sym_float_literal] = ACTIONS(2414), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [STATE(623)] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), [ts_builtin_sym_end] = ACTIONS(2418), [sym_identifier] = ACTIONS(2420), [anon_sym_SEMI] = ACTIONS(2418), @@ -82891,6 +82330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2420), [anon_sym_fn] = ACTIONS(2420), [anon_sym_for] = ACTIONS(2420), + [anon_sym_gen] = ACTIONS(2420), [anon_sym_if] = ACTIONS(2420), [anon_sym_impl] = ACTIONS(2420), [anon_sym_let] = ACTIONS(2420), @@ -82916,8 +82356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2418), [anon_sym_true] = ACTIONS(2420), [anon_sym_false] = ACTIONS(2420), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2420), [sym_super] = ACTIONS(2420), [sym_crate] = ACTIONS(2420), @@ -82925,9 +82365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2418), [sym_float_literal] = ACTIONS(2418), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [STATE(624)] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2422), [sym_identifier] = ACTIONS(2424), [anon_sym_SEMI] = ACTIONS(2422), @@ -82971,6 +82411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2424), [anon_sym_fn] = ACTIONS(2424), [anon_sym_for] = ACTIONS(2424), + [anon_sym_gen] = ACTIONS(2424), [anon_sym_if] = ACTIONS(2424), [anon_sym_impl] = ACTIONS(2424), [anon_sym_let] = ACTIONS(2424), @@ -82996,8 +82437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2422), [anon_sym_true] = ACTIONS(2424), [anon_sym_false] = ACTIONS(2424), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2424), [sym_super] = ACTIONS(2424), [sym_crate] = ACTIONS(2424), @@ -83005,9 +82446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2422), [sym_float_literal] = ACTIONS(2422), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [STATE(625)] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2426), [sym_identifier] = ACTIONS(2428), [anon_sym_SEMI] = ACTIONS(2426), @@ -83051,6 +82492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2428), [anon_sym_fn] = ACTIONS(2428), [anon_sym_for] = ACTIONS(2428), + [anon_sym_gen] = ACTIONS(2428), [anon_sym_if] = ACTIONS(2428), [anon_sym_impl] = ACTIONS(2428), [anon_sym_let] = ACTIONS(2428), @@ -83076,8 +82518,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2426), [anon_sym_true] = ACTIONS(2428), [anon_sym_false] = ACTIONS(2428), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2428), [sym_super] = ACTIONS(2428), [sym_crate] = ACTIONS(2428), @@ -83085,9 +82527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2426), [sym_float_literal] = ACTIONS(2426), }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [STATE(626)] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2430), [sym_identifier] = ACTIONS(2432), [anon_sym_SEMI] = ACTIONS(2430), @@ -83131,6 +82573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2432), [anon_sym_fn] = ACTIONS(2432), [anon_sym_for] = ACTIONS(2432), + [anon_sym_gen] = ACTIONS(2432), [anon_sym_if] = ACTIONS(2432), [anon_sym_impl] = ACTIONS(2432), [anon_sym_let] = ACTIONS(2432), @@ -83156,8 +82599,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2430), [anon_sym_true] = ACTIONS(2432), [anon_sym_false] = ACTIONS(2432), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2432), [sym_super] = ACTIONS(2432), [sym_crate] = ACTIONS(2432), @@ -83165,9 +82608,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2430), [sym_float_literal] = ACTIONS(2430), }, - [662] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), + [STATE(627)] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2434), [sym_identifier] = ACTIONS(2436), [anon_sym_SEMI] = ACTIONS(2434), @@ -83211,6 +82654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2436), [anon_sym_fn] = ACTIONS(2436), [anon_sym_for] = ACTIONS(2436), + [anon_sym_gen] = ACTIONS(2436), [anon_sym_if] = ACTIONS(2436), [anon_sym_impl] = ACTIONS(2436), [anon_sym_let] = ACTIONS(2436), @@ -83236,8 +82680,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2434), [anon_sym_true] = ACTIONS(2436), [anon_sym_false] = ACTIONS(2436), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2436), [sym_super] = ACTIONS(2436), [sym_crate] = ACTIONS(2436), @@ -83245,89 +82689,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2434), [sym_float_literal] = ACTIONS(2434), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), - }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), + [STATE(628)] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2438), [sym_identifier] = ACTIONS(2440), [anon_sym_SEMI] = ACTIONS(2438), @@ -83371,6 +82735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2440), [anon_sym_fn] = ACTIONS(2440), [anon_sym_for] = ACTIONS(2440), + [anon_sym_gen] = ACTIONS(2440), [anon_sym_if] = ACTIONS(2440), [anon_sym_impl] = ACTIONS(2440), [anon_sym_let] = ACTIONS(2440), @@ -83396,8 +82761,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2438), [anon_sym_true] = ACTIONS(2440), [anon_sym_false] = ACTIONS(2440), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2440), [sym_super] = ACTIONS(2440), [sym_crate] = ACTIONS(2440), @@ -83405,9 +82770,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2438), [sym_float_literal] = ACTIONS(2438), }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), + [STATE(629)] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2442), [sym_identifier] = ACTIONS(2444), [anon_sym_SEMI] = ACTIONS(2442), @@ -83451,6 +82816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2444), [anon_sym_fn] = ACTIONS(2444), [anon_sym_for] = ACTIONS(2444), + [anon_sym_gen] = ACTIONS(2444), [anon_sym_if] = ACTIONS(2444), [anon_sym_impl] = ACTIONS(2444), [anon_sym_let] = ACTIONS(2444), @@ -83476,8 +82842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2442), [anon_sym_true] = ACTIONS(2444), [anon_sym_false] = ACTIONS(2444), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2444), [sym_super] = ACTIONS(2444), [sym_crate] = ACTIONS(2444), @@ -83485,9 +82851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2442), [sym_float_literal] = ACTIONS(2442), }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [STATE(630)] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2446), [sym_identifier] = ACTIONS(2448), [anon_sym_SEMI] = ACTIONS(2446), @@ -83531,6 +82897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2448), [anon_sym_fn] = ACTIONS(2448), [anon_sym_for] = ACTIONS(2448), + [anon_sym_gen] = ACTIONS(2448), [anon_sym_if] = ACTIONS(2448), [anon_sym_impl] = ACTIONS(2448), [anon_sym_let] = ACTIONS(2448), @@ -83556,8 +82923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2446), [anon_sym_true] = ACTIONS(2448), [anon_sym_false] = ACTIONS(2448), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2448), [sym_super] = ACTIONS(2448), [sym_crate] = ACTIONS(2448), @@ -83565,9 +82932,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2446), [sym_float_literal] = ACTIONS(2446), }, - [667] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), + [STATE(631)] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2450), [sym_identifier] = ACTIONS(2452), [anon_sym_SEMI] = ACTIONS(2450), @@ -83611,6 +82978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2452), [anon_sym_fn] = ACTIONS(2452), [anon_sym_for] = ACTIONS(2452), + [anon_sym_gen] = ACTIONS(2452), [anon_sym_if] = ACTIONS(2452), [anon_sym_impl] = ACTIONS(2452), [anon_sym_let] = ACTIONS(2452), @@ -83636,8 +83004,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2450), [anon_sym_true] = ACTIONS(2452), [anon_sym_false] = ACTIONS(2452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2452), [sym_super] = ACTIONS(2452), [sym_crate] = ACTIONS(2452), @@ -83645,9 +83013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2450), [sym_float_literal] = ACTIONS(2450), }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), + [STATE(632)] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2454), [sym_identifier] = ACTIONS(2456), [anon_sym_SEMI] = ACTIONS(2454), @@ -83691,6 +83059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2456), [anon_sym_fn] = ACTIONS(2456), [anon_sym_for] = ACTIONS(2456), + [anon_sym_gen] = ACTIONS(2456), [anon_sym_if] = ACTIONS(2456), [anon_sym_impl] = ACTIONS(2456), [anon_sym_let] = ACTIONS(2456), @@ -83716,8 +83085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2454), [anon_sym_true] = ACTIONS(2456), [anon_sym_false] = ACTIONS(2456), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2456), [sym_super] = ACTIONS(2456), [sym_crate] = ACTIONS(2456), @@ -83725,329 +83094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2454), [sym_float_literal] = ACTIONS(2454), }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - }, - [671] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, - [672] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), - }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [STATE(633)] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2458), [sym_identifier] = ACTIONS(2460), [anon_sym_SEMI] = ACTIONS(2458), @@ -84091,6 +83140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2460), [anon_sym_fn] = ACTIONS(2460), [anon_sym_for] = ACTIONS(2460), + [anon_sym_gen] = ACTIONS(2460), [anon_sym_if] = ACTIONS(2460), [anon_sym_impl] = ACTIONS(2460), [anon_sym_let] = ACTIONS(2460), @@ -84116,8 +83166,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2458), [anon_sym_true] = ACTIONS(2460), [anon_sym_false] = ACTIONS(2460), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2460), [sym_super] = ACTIONS(2460), [sym_crate] = ACTIONS(2460), @@ -84125,9 +83175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2458), [sym_float_literal] = ACTIONS(2458), }, - [674] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [STATE(634)] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2462), [sym_identifier] = ACTIONS(2464), [anon_sym_SEMI] = ACTIONS(2462), @@ -84171,6 +83221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2464), [anon_sym_fn] = ACTIONS(2464), [anon_sym_for] = ACTIONS(2464), + [anon_sym_gen] = ACTIONS(2464), [anon_sym_if] = ACTIONS(2464), [anon_sym_impl] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), @@ -84196,8 +83247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2462), [anon_sym_true] = ACTIONS(2464), [anon_sym_false] = ACTIONS(2464), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2464), [sym_super] = ACTIONS(2464), [sym_crate] = ACTIONS(2464), @@ -84205,9 +83256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2462), [sym_float_literal] = ACTIONS(2462), }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [STATE(635)] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2466), [sym_identifier] = ACTIONS(2468), [anon_sym_SEMI] = ACTIONS(2466), @@ -84251,6 +83302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2468), [anon_sym_fn] = ACTIONS(2468), [anon_sym_for] = ACTIONS(2468), + [anon_sym_gen] = ACTIONS(2468), [anon_sym_if] = ACTIONS(2468), [anon_sym_impl] = ACTIONS(2468), [anon_sym_let] = ACTIONS(2468), @@ -84276,8 +83328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2466), [anon_sym_true] = ACTIONS(2468), [anon_sym_false] = ACTIONS(2468), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2468), [sym_super] = ACTIONS(2468), [sym_crate] = ACTIONS(2468), @@ -84285,9 +83337,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2466), [sym_float_literal] = ACTIONS(2466), }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), + [STATE(636)] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2470), [sym_identifier] = ACTIONS(2472), [anon_sym_SEMI] = ACTIONS(2470), @@ -84331,6 +83383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2472), [anon_sym_fn] = ACTIONS(2472), [anon_sym_for] = ACTIONS(2472), + [anon_sym_gen] = ACTIONS(2472), [anon_sym_if] = ACTIONS(2472), [anon_sym_impl] = ACTIONS(2472), [anon_sym_let] = ACTIONS(2472), @@ -84356,8 +83409,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2470), [anon_sym_true] = ACTIONS(2472), [anon_sym_false] = ACTIONS(2472), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2472), [sym_super] = ACTIONS(2472), [sym_crate] = ACTIONS(2472), @@ -84365,9 +83418,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2470), [sym_float_literal] = ACTIONS(2470), }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [STATE(637)] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2474), [sym_identifier] = ACTIONS(2476), [anon_sym_SEMI] = ACTIONS(2474), @@ -84411,6 +83464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2476), [anon_sym_fn] = ACTIONS(2476), [anon_sym_for] = ACTIONS(2476), + [anon_sym_gen] = ACTIONS(2476), [anon_sym_if] = ACTIONS(2476), [anon_sym_impl] = ACTIONS(2476), [anon_sym_let] = ACTIONS(2476), @@ -84436,8 +83490,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2474), [anon_sym_true] = ACTIONS(2476), [anon_sym_false] = ACTIONS(2476), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2476), [sym_super] = ACTIONS(2476), [sym_crate] = ACTIONS(2476), @@ -84445,9 +83499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2474), [sym_float_literal] = ACTIONS(2474), }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2478), [sym_identifier] = ACTIONS(2480), [anon_sym_SEMI] = ACTIONS(2478), @@ -84491,6 +83545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2480), [anon_sym_fn] = ACTIONS(2480), [anon_sym_for] = ACTIONS(2480), + [anon_sym_gen] = ACTIONS(2480), [anon_sym_if] = ACTIONS(2480), [anon_sym_impl] = ACTIONS(2480), [anon_sym_let] = ACTIONS(2480), @@ -84516,8 +83571,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2478), [anon_sym_true] = ACTIONS(2480), [anon_sym_false] = ACTIONS(2480), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2480), [sym_super] = ACTIONS(2480), [sym_crate] = ACTIONS(2480), @@ -84525,9 +83580,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2478), [sym_float_literal] = ACTIONS(2478), }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2482), [sym_identifier] = ACTIONS(2484), [anon_sym_SEMI] = ACTIONS(2482), @@ -84571,6 +83626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2484), [anon_sym_fn] = ACTIONS(2484), [anon_sym_for] = ACTIONS(2484), + [anon_sym_gen] = ACTIONS(2484), [anon_sym_if] = ACTIONS(2484), [anon_sym_impl] = ACTIONS(2484), [anon_sym_let] = ACTIONS(2484), @@ -84596,8 +83652,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2482), [anon_sym_true] = ACTIONS(2484), [anon_sym_false] = ACTIONS(2484), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2484), [sym_super] = ACTIONS(2484), [sym_crate] = ACTIONS(2484), @@ -84605,9 +83661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2482), [sym_float_literal] = ACTIONS(2482), }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2486), [sym_identifier] = ACTIONS(2488), [anon_sym_SEMI] = ACTIONS(2486), @@ -84651,6 +83707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2488), [anon_sym_fn] = ACTIONS(2488), [anon_sym_for] = ACTIONS(2488), + [anon_sym_gen] = ACTIONS(2488), [anon_sym_if] = ACTIONS(2488), [anon_sym_impl] = ACTIONS(2488), [anon_sym_let] = ACTIONS(2488), @@ -84676,8 +83733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2486), [anon_sym_true] = ACTIONS(2488), [anon_sym_false] = ACTIONS(2488), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2488), [sym_super] = ACTIONS(2488), [sym_crate] = ACTIONS(2488), @@ -84685,9 +83742,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2486), [sym_float_literal] = ACTIONS(2486), }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2490), [sym_identifier] = ACTIONS(2492), [anon_sym_SEMI] = ACTIONS(2490), @@ -84731,6 +83788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2492), [anon_sym_fn] = ACTIONS(2492), [anon_sym_for] = ACTIONS(2492), + [anon_sym_gen] = ACTIONS(2492), [anon_sym_if] = ACTIONS(2492), [anon_sym_impl] = ACTIONS(2492), [anon_sym_let] = ACTIONS(2492), @@ -84756,8 +83814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2490), [anon_sym_true] = ACTIONS(2492), [anon_sym_false] = ACTIONS(2492), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2492), [sym_super] = ACTIONS(2492), [sym_crate] = ACTIONS(2492), @@ -84765,9 +83823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2490), [sym_float_literal] = ACTIONS(2490), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2494), [sym_identifier] = ACTIONS(2496), [anon_sym_SEMI] = ACTIONS(2494), @@ -84811,6 +83869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2496), [anon_sym_fn] = ACTIONS(2496), [anon_sym_for] = ACTIONS(2496), + [anon_sym_gen] = ACTIONS(2496), [anon_sym_if] = ACTIONS(2496), [anon_sym_impl] = ACTIONS(2496), [anon_sym_let] = ACTIONS(2496), @@ -84836,8 +83895,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2494), [anon_sym_true] = ACTIONS(2496), [anon_sym_false] = ACTIONS(2496), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2496), [sym_super] = ACTIONS(2496), [sym_crate] = ACTIONS(2496), @@ -84845,9 +83904,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2494), [sym_float_literal] = ACTIONS(2494), }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2498), [sym_identifier] = ACTIONS(2500), [anon_sym_SEMI] = ACTIONS(2498), @@ -84891,6 +83950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2500), [anon_sym_fn] = ACTIONS(2500), [anon_sym_for] = ACTIONS(2500), + [anon_sym_gen] = ACTIONS(2500), [anon_sym_if] = ACTIONS(2500), [anon_sym_impl] = ACTIONS(2500), [anon_sym_let] = ACTIONS(2500), @@ -84916,8 +83976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2498), [anon_sym_true] = ACTIONS(2500), [anon_sym_false] = ACTIONS(2500), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2500), [sym_super] = ACTIONS(2500), [sym_crate] = ACTIONS(2500), @@ -84925,23619 +83985,32028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2498), [sym_float_literal] = ACTIONS(2498), }, - [684] = { + [STATE(644)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_pattern] = STATE(3708), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), + [aux_sym_match_arm_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(645)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [aux_sym_declaration_list_repeat1] = STATE(651), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2138), + }, + [STATE(646)] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(2504), + [sym_identifier] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_macro_rules_BANG] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_u8] = ACTIONS(2506), + [anon_sym_i8] = ACTIONS(2506), + [anon_sym_u16] = ACTIONS(2506), + [anon_sym_i16] = ACTIONS(2506), + [anon_sym_u32] = ACTIONS(2506), + [anon_sym_i32] = ACTIONS(2506), + [anon_sym_u64] = ACTIONS(2506), + [anon_sym_i64] = ACTIONS(2506), + [anon_sym_u128] = ACTIONS(2506), + [anon_sym_i128] = ACTIONS(2506), + [anon_sym_isize] = ACTIONS(2506), + [anon_sym_usize] = ACTIONS(2506), + [anon_sym_f32] = ACTIONS(2506), + [anon_sym_f64] = ACTIONS(2506), + [anon_sym_bool] = ACTIONS(2506), + [anon_sym_str] = ACTIONS(2506), + [anon_sym_char] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_DOT_DOT] = ACTIONS(2504), + [anon_sym_COLON_COLON] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2506), + [anon_sym_async] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_default] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [anon_sym_fn] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_gen] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_impl] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_loop] = ACTIONS(2506), + [anon_sym_match] = ACTIONS(2506), + [anon_sym_mod] = ACTIONS(2506), + [anon_sym_pub] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_struct] = ACTIONS(2506), + [anon_sym_trait] = ACTIONS(2506), + [anon_sym_type] = ACTIONS(2506), + [anon_sym_union] = ACTIONS(2506), + [anon_sym_unsafe] = ACTIONS(2506), + [anon_sym_use] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_yield] = ACTIONS(2506), + [anon_sym_move] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2506), + [sym_integer_literal] = ACTIONS(2504), + [aux_sym_string_literal_token1] = ACTIONS(2504), + [sym_char_literal] = ACTIONS(2504), + [anon_sym_true] = ACTIONS(2506), + [anon_sym_false] = ACTIONS(2506), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2506), + [sym_super] = ACTIONS(2506), + [sym_crate] = ACTIONS(2506), + [sym_metavariable] = ACTIONS(2504), + [sym__raw_string_literal_start] = ACTIONS(2504), + [sym_float_literal] = ACTIONS(2504), + }, + [STATE(647)] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(2508), + [sym_identifier] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_macro_rules_BANG] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_u8] = ACTIONS(2510), + [anon_sym_i8] = ACTIONS(2510), + [anon_sym_u16] = ACTIONS(2510), + [anon_sym_i16] = ACTIONS(2510), + [anon_sym_u32] = ACTIONS(2510), + [anon_sym_i32] = ACTIONS(2510), + [anon_sym_u64] = ACTIONS(2510), + [anon_sym_i64] = ACTIONS(2510), + [anon_sym_u128] = ACTIONS(2510), + [anon_sym_i128] = ACTIONS(2510), + [anon_sym_isize] = ACTIONS(2510), + [anon_sym_usize] = ACTIONS(2510), + [anon_sym_f32] = ACTIONS(2510), + [anon_sym_f64] = ACTIONS(2510), + [anon_sym_bool] = ACTIONS(2510), + [anon_sym_str] = ACTIONS(2510), + [anon_sym_char] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_DOT_DOT] = ACTIONS(2508), + [anon_sym_COLON_COLON] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_async] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_default] = ACTIONS(2510), + [anon_sym_enum] = ACTIONS(2510), + [anon_sym_fn] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_gen] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_impl] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_loop] = ACTIONS(2510), + [anon_sym_match] = ACTIONS(2510), + [anon_sym_mod] = ACTIONS(2510), + [anon_sym_pub] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_struct] = ACTIONS(2510), + [anon_sym_trait] = ACTIONS(2510), + [anon_sym_type] = ACTIONS(2510), + [anon_sym_union] = ACTIONS(2510), + [anon_sym_unsafe] = ACTIONS(2510), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_yield] = ACTIONS(2510), + [anon_sym_move] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2510), + [sym_integer_literal] = ACTIONS(2508), + [aux_sym_string_literal_token1] = ACTIONS(2508), + [sym_char_literal] = ACTIONS(2508), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2510), + [sym_super] = ACTIONS(2510), + [sym_crate] = ACTIONS(2510), + [sym_metavariable] = ACTIONS(2508), + [sym__raw_string_literal_start] = ACTIONS(2508), + [sym_float_literal] = ACTIONS(2508), + }, + [STATE(648)] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(2512), + [sym_identifier] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_macro_rules_BANG] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_u8] = ACTIONS(2514), + [anon_sym_i8] = ACTIONS(2514), + [anon_sym_u16] = ACTIONS(2514), + [anon_sym_i16] = ACTIONS(2514), + [anon_sym_u32] = ACTIONS(2514), + [anon_sym_i32] = ACTIONS(2514), + [anon_sym_u64] = ACTIONS(2514), + [anon_sym_i64] = ACTIONS(2514), + [anon_sym_u128] = ACTIONS(2514), + [anon_sym_i128] = ACTIONS(2514), + [anon_sym_isize] = ACTIONS(2514), + [anon_sym_usize] = ACTIONS(2514), + [anon_sym_f32] = ACTIONS(2514), + [anon_sym_f64] = ACTIONS(2514), + [anon_sym_bool] = ACTIONS(2514), + [anon_sym_str] = ACTIONS(2514), + [anon_sym_char] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_DOT_DOT] = ACTIONS(2512), + [anon_sym_COLON_COLON] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_const] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_default] = ACTIONS(2514), + [anon_sym_enum] = ACTIONS(2514), + [anon_sym_fn] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2514), + [anon_sym_gen] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_impl] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2514), + [anon_sym_loop] = ACTIONS(2514), + [anon_sym_match] = ACTIONS(2514), + [anon_sym_mod] = ACTIONS(2514), + [anon_sym_pub] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2514), + [anon_sym_struct] = ACTIONS(2514), + [anon_sym_trait] = ACTIONS(2514), + [anon_sym_type] = ACTIONS(2514), + [anon_sym_union] = ACTIONS(2514), + [anon_sym_unsafe] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2514), + [anon_sym_while] = ACTIONS(2514), + [anon_sym_extern] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2514), + [anon_sym_move] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2514), + [sym_integer_literal] = ACTIONS(2512), + [aux_sym_string_literal_token1] = ACTIONS(2512), + [sym_char_literal] = ACTIONS(2512), + [anon_sym_true] = ACTIONS(2514), + [anon_sym_false] = ACTIONS(2514), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2514), + [sym_super] = ACTIONS(2514), + [sym_crate] = ACTIONS(2514), + [sym_metavariable] = ACTIONS(2512), + [sym__raw_string_literal_start] = ACTIONS(2512), + [sym_float_literal] = ACTIONS(2512), + }, + [STATE(649)] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(2516), + [sym_identifier] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_macro_rules_BANG] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_u8] = ACTIONS(2518), + [anon_sym_i8] = ACTIONS(2518), + [anon_sym_u16] = ACTIONS(2518), + [anon_sym_i16] = ACTIONS(2518), + [anon_sym_u32] = ACTIONS(2518), + [anon_sym_i32] = ACTIONS(2518), + [anon_sym_u64] = ACTIONS(2518), + [anon_sym_i64] = ACTIONS(2518), + [anon_sym_u128] = ACTIONS(2518), + [anon_sym_i128] = ACTIONS(2518), + [anon_sym_isize] = ACTIONS(2518), + [anon_sym_usize] = ACTIONS(2518), + [anon_sym_f32] = ACTIONS(2518), + [anon_sym_f64] = ACTIONS(2518), + [anon_sym_bool] = ACTIONS(2518), + [anon_sym_str] = ACTIONS(2518), + [anon_sym_char] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_COLON_COLON] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_default] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + [anon_sym_fn] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_gen] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_impl] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_loop] = ACTIONS(2518), + [anon_sym_match] = ACTIONS(2518), + [anon_sym_mod] = ACTIONS(2518), + [anon_sym_pub] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_struct] = ACTIONS(2518), + [anon_sym_trait] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_union] = ACTIONS(2518), + [anon_sym_unsafe] = ACTIONS(2518), + [anon_sym_use] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_extern] = ACTIONS(2518), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_move] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [sym_integer_literal] = ACTIONS(2516), + [aux_sym_string_literal_token1] = ACTIONS(2516), + [sym_char_literal] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2518), + [anon_sym_false] = ACTIONS(2518), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_crate] = ACTIONS(2518), + [sym_metavariable] = ACTIONS(2516), + [sym__raw_string_literal_start] = ACTIONS(2516), + [sym_float_literal] = ACTIONS(2516), + }, + [STATE(650)] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_u8] = ACTIONS(2522), + [anon_sym_i8] = ACTIONS(2522), + [anon_sym_u16] = ACTIONS(2522), + [anon_sym_i16] = ACTIONS(2522), + [anon_sym_u32] = ACTIONS(2522), + [anon_sym_i32] = ACTIONS(2522), + [anon_sym_u64] = ACTIONS(2522), + [anon_sym_i64] = ACTIONS(2522), + [anon_sym_u128] = ACTIONS(2522), + [anon_sym_i128] = ACTIONS(2522), + [anon_sym_isize] = ACTIONS(2522), + [anon_sym_usize] = ACTIONS(2522), + [anon_sym_f32] = ACTIONS(2522), + [anon_sym_f64] = ACTIONS(2522), + [anon_sym_bool] = ACTIONS(2522), + [anon_sym_str] = ACTIONS(2522), + [anon_sym_char] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_gen] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_impl] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_loop] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_mod] = ACTIONS(2522), + [anon_sym_pub] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_trait] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_use] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_extern] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_move] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [sym_integer_literal] = ACTIONS(2520), + [aux_sym_string_literal_token1] = ACTIONS(2520), + [sym_char_literal] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_crate] = ACTIONS(2522), + [sym_metavariable] = ACTIONS(2520), + [sym__raw_string_literal_start] = ACTIONS(2520), + [sym_float_literal] = ACTIONS(2520), + }, + [STATE(651)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [aux_sym_declaration_list_repeat1] = STATE(531), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2138), + }, + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_macro_rules_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_u8] = ACTIONS(2528), + [anon_sym_i8] = ACTIONS(2528), + [anon_sym_u16] = ACTIONS(2528), + [anon_sym_i16] = ACTIONS(2528), + [anon_sym_u32] = ACTIONS(2528), + [anon_sym_i32] = ACTIONS(2528), + [anon_sym_u64] = ACTIONS(2528), + [anon_sym_i64] = ACTIONS(2528), + [anon_sym_u128] = ACTIONS(2528), + [anon_sym_i128] = ACTIONS(2528), + [anon_sym_isize] = ACTIONS(2528), + [anon_sym_usize] = ACTIONS(2528), + [anon_sym_f32] = ACTIONS(2528), + [anon_sym_f64] = ACTIONS(2528), + [anon_sym_bool] = ACTIONS(2528), + [anon_sym_str] = ACTIONS(2528), + [anon_sym_char] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_fn] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_gen] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_impl] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_loop] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_mod] = ACTIONS(2528), + [anon_sym_pub] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_trait] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_unsafe] = ACTIONS(2528), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_move] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [sym_integer_literal] = ACTIONS(2526), + [aux_sym_string_literal_token1] = ACTIONS(2526), + [sym_char_literal] = ACTIONS(2526), + [anon_sym_true] = ACTIONS(2528), + [anon_sym_false] = ACTIONS(2528), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2528), + [sym_super] = ACTIONS(2528), + [sym_crate] = ACTIONS(2528), + [sym_metavariable] = ACTIONS(2526), + [sym__raw_string_literal_start] = ACTIONS(2526), + [sym_float_literal] = ACTIONS(2526), + }, + [STATE(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_macro_rules_BANG] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_u8] = ACTIONS(2532), + [anon_sym_i8] = ACTIONS(2532), + [anon_sym_u16] = ACTIONS(2532), + [anon_sym_i16] = ACTIONS(2532), + [anon_sym_u32] = ACTIONS(2532), + [anon_sym_i32] = ACTIONS(2532), + [anon_sym_u64] = ACTIONS(2532), + [anon_sym_i64] = ACTIONS(2532), + [anon_sym_u128] = ACTIONS(2532), + [anon_sym_i128] = ACTIONS(2532), + [anon_sym_isize] = ACTIONS(2532), + [anon_sym_usize] = ACTIONS(2532), + [anon_sym_f32] = ACTIONS(2532), + [anon_sym_f64] = ACTIONS(2532), + [anon_sym_bool] = ACTIONS(2532), + [anon_sym_str] = ACTIONS(2532), + [anon_sym_char] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_DOT_DOT] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_gen] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_impl] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_loop] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_mod] = ACTIONS(2532), + [anon_sym_pub] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_trait] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_use] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_move] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [sym_integer_literal] = ACTIONS(2530), + [aux_sym_string_literal_token1] = ACTIONS(2530), + [sym_char_literal] = ACTIONS(2530), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_crate] = ACTIONS(2532), + [sym_metavariable] = ACTIONS(2530), + [sym__raw_string_literal_start] = ACTIONS(2530), + [sym_float_literal] = ACTIONS(2530), + }, + [STATE(654)] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_macro_rules_BANG] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_u8] = ACTIONS(2536), + [anon_sym_i8] = ACTIONS(2536), + [anon_sym_u16] = ACTIONS(2536), + [anon_sym_i16] = ACTIONS(2536), + [anon_sym_u32] = ACTIONS(2536), + [anon_sym_i32] = ACTIONS(2536), + [anon_sym_u64] = ACTIONS(2536), + [anon_sym_i64] = ACTIONS(2536), + [anon_sym_u128] = ACTIONS(2536), + [anon_sym_i128] = ACTIONS(2536), + [anon_sym_isize] = ACTIONS(2536), + [anon_sym_usize] = ACTIONS(2536), + [anon_sym_f32] = ACTIONS(2536), + [anon_sym_f64] = ACTIONS(2536), + [anon_sym_bool] = ACTIONS(2536), + [anon_sym_str] = ACTIONS(2536), + [anon_sym_char] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_DOT_DOT] = ACTIONS(2534), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_fn] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_gen] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_impl] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_loop] = ACTIONS(2536), + [anon_sym_match] = ACTIONS(2536), + [anon_sym_mod] = ACTIONS(2536), + [anon_sym_pub] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_trait] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_unsafe] = ACTIONS(2536), + [anon_sym_use] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_move] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [sym_integer_literal] = ACTIONS(2534), + [aux_sym_string_literal_token1] = ACTIONS(2534), + [sym_char_literal] = ACTIONS(2534), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_crate] = ACTIONS(2536), + [sym_metavariable] = ACTIONS(2534), + [sym__raw_string_literal_start] = ACTIONS(2534), + [sym_float_literal] = ACTIONS(2534), + }, + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_macro_rules_BANG] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_u8] = ACTIONS(2540), + [anon_sym_i8] = ACTIONS(2540), + [anon_sym_u16] = ACTIONS(2540), + [anon_sym_i16] = ACTIONS(2540), + [anon_sym_u32] = ACTIONS(2540), + [anon_sym_i32] = ACTIONS(2540), + [anon_sym_u64] = ACTIONS(2540), + [anon_sym_i64] = ACTIONS(2540), + [anon_sym_u128] = ACTIONS(2540), + [anon_sym_i128] = ACTIONS(2540), + [anon_sym_isize] = ACTIONS(2540), + [anon_sym_usize] = ACTIONS(2540), + [anon_sym_f32] = ACTIONS(2540), + [anon_sym_f64] = ACTIONS(2540), + [anon_sym_bool] = ACTIONS(2540), + [anon_sym_str] = ACTIONS(2540), + [anon_sym_char] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_DOT_DOT] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_fn] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_gen] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_impl] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_loop] = ACTIONS(2540), + [anon_sym_match] = ACTIONS(2540), + [anon_sym_mod] = ACTIONS(2540), + [anon_sym_pub] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_trait] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_unsafe] = ACTIONS(2540), + [anon_sym_use] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_move] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [sym_integer_literal] = ACTIONS(2538), + [aux_sym_string_literal_token1] = ACTIONS(2538), + [sym_char_literal] = ACTIONS(2538), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_crate] = ACTIONS(2540), + [sym_metavariable] = ACTIONS(2538), + [sym__raw_string_literal_start] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), + }, + [STATE(656)] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_macro_rules_BANG] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_u8] = ACTIONS(2544), + [anon_sym_i8] = ACTIONS(2544), + [anon_sym_u16] = ACTIONS(2544), + [anon_sym_i16] = ACTIONS(2544), + [anon_sym_u32] = ACTIONS(2544), + [anon_sym_i32] = ACTIONS(2544), + [anon_sym_u64] = ACTIONS(2544), + [anon_sym_i64] = ACTIONS(2544), + [anon_sym_u128] = ACTIONS(2544), + [anon_sym_i128] = ACTIONS(2544), + [anon_sym_isize] = ACTIONS(2544), + [anon_sym_usize] = ACTIONS(2544), + [anon_sym_f32] = ACTIONS(2544), + [anon_sym_f64] = ACTIONS(2544), + [anon_sym_bool] = ACTIONS(2544), + [anon_sym_str] = ACTIONS(2544), + [anon_sym_char] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_DOT_DOT] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2544), + [anon_sym_async] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_fn] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_gen] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_impl] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_loop] = ACTIONS(2544), + [anon_sym_match] = ACTIONS(2544), + [anon_sym_mod] = ACTIONS(2544), + [anon_sym_pub] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_trait] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(2544), + [anon_sym_use] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym_yield] = ACTIONS(2544), + [anon_sym_move] = ACTIONS(2544), + [anon_sym_try] = ACTIONS(2544), + [sym_integer_literal] = ACTIONS(2542), + [aux_sym_string_literal_token1] = ACTIONS(2542), + [sym_char_literal] = ACTIONS(2542), + [anon_sym_true] = ACTIONS(2544), + [anon_sym_false] = ACTIONS(2544), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_crate] = ACTIONS(2544), + [sym_metavariable] = ACTIONS(2542), + [sym__raw_string_literal_start] = ACTIONS(2542), + [sym_float_literal] = ACTIONS(2542), + }, + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(2548), + [anon_sym_i8] = ACTIONS(2548), + [anon_sym_u16] = ACTIONS(2548), + [anon_sym_i16] = ACTIONS(2548), + [anon_sym_u32] = ACTIONS(2548), + [anon_sym_i32] = ACTIONS(2548), + [anon_sym_u64] = ACTIONS(2548), + [anon_sym_i64] = ACTIONS(2548), + [anon_sym_u128] = ACTIONS(2548), + [anon_sym_i128] = ACTIONS(2548), + [anon_sym_isize] = ACTIONS(2548), + [anon_sym_usize] = ACTIONS(2548), + [anon_sym_f32] = ACTIONS(2548), + [anon_sym_f64] = ACTIONS(2548), + [anon_sym_bool] = ACTIONS(2548), + [anon_sym_str] = ACTIONS(2548), + [anon_sym_char] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2546), + [anon_sym_COLON_COLON] = ACTIONS(2546), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_gen] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_impl] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_loop] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_mod] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_use] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_move] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [sym_integer_literal] = ACTIONS(2546), + [aux_sym_string_literal_token1] = ACTIONS(2546), + [sym_char_literal] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_crate] = ACTIONS(2548), + [sym_metavariable] = ACTIONS(2546), + [sym__raw_string_literal_start] = ACTIONS(2546), + [sym_float_literal] = ACTIONS(2546), + }, + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_macro_rules_BANG] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_u8] = ACTIONS(2552), + [anon_sym_i8] = ACTIONS(2552), + [anon_sym_u16] = ACTIONS(2552), + [anon_sym_i16] = ACTIONS(2552), + [anon_sym_u32] = ACTIONS(2552), + [anon_sym_i32] = ACTIONS(2552), + [anon_sym_u64] = ACTIONS(2552), + [anon_sym_i64] = ACTIONS(2552), + [anon_sym_u128] = ACTIONS(2552), + [anon_sym_i128] = ACTIONS(2552), + [anon_sym_isize] = ACTIONS(2552), + [anon_sym_usize] = ACTIONS(2552), + [anon_sym_f32] = ACTIONS(2552), + [anon_sym_f64] = ACTIONS(2552), + [anon_sym_bool] = ACTIONS(2552), + [anon_sym_str] = ACTIONS(2552), + [anon_sym_char] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2550), + [anon_sym_DOT_DOT] = ACTIONS(2550), + [anon_sym_COLON_COLON] = ACTIONS(2550), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_fn] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_gen] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_loop] = ACTIONS(2552), + [anon_sym_match] = ACTIONS(2552), + [anon_sym_mod] = ACTIONS(2552), + [anon_sym_pub] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_trait] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_unsafe] = ACTIONS(2552), + [anon_sym_use] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym_yield] = ACTIONS(2552), + [anon_sym_move] = ACTIONS(2552), + [anon_sym_try] = ACTIONS(2552), + [sym_integer_literal] = ACTIONS(2550), + [aux_sym_string_literal_token1] = ACTIONS(2550), + [sym_char_literal] = ACTIONS(2550), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2552), + [sym_super] = ACTIONS(2552), + [sym_crate] = ACTIONS(2552), + [sym_metavariable] = ACTIONS(2550), + [sym__raw_string_literal_start] = ACTIONS(2550), + [sym_float_literal] = ACTIONS(2550), + }, + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_macro_rules_BANG] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_u8] = ACTIONS(2556), + [anon_sym_i8] = ACTIONS(2556), + [anon_sym_u16] = ACTIONS(2556), + [anon_sym_i16] = ACTIONS(2556), + [anon_sym_u32] = ACTIONS(2556), + [anon_sym_i32] = ACTIONS(2556), + [anon_sym_u64] = ACTIONS(2556), + [anon_sym_i64] = ACTIONS(2556), + [anon_sym_u128] = ACTIONS(2556), + [anon_sym_i128] = ACTIONS(2556), + [anon_sym_isize] = ACTIONS(2556), + [anon_sym_usize] = ACTIONS(2556), + [anon_sym_f32] = ACTIONS(2556), + [anon_sym_f64] = ACTIONS(2556), + [anon_sym_bool] = ACTIONS(2556), + [anon_sym_str] = ACTIONS(2556), + [anon_sym_char] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_fn] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_gen] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_impl] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_loop] = ACTIONS(2556), + [anon_sym_match] = ACTIONS(2556), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_trait] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_move] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [sym_integer_literal] = ACTIONS(2554), + [aux_sym_string_literal_token1] = ACTIONS(2554), + [sym_char_literal] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_crate] = ACTIONS(2556), + [sym_metavariable] = ACTIONS(2554), + [sym__raw_string_literal_start] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2554), + }, + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_macro_rules_BANG] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_u8] = ACTIONS(2560), + [anon_sym_i8] = ACTIONS(2560), + [anon_sym_u16] = ACTIONS(2560), + [anon_sym_i16] = ACTIONS(2560), + [anon_sym_u32] = ACTIONS(2560), + [anon_sym_i32] = ACTIONS(2560), + [anon_sym_u64] = ACTIONS(2560), + [anon_sym_i64] = ACTIONS(2560), + [anon_sym_u128] = ACTIONS(2560), + [anon_sym_i128] = ACTIONS(2560), + [anon_sym_isize] = ACTIONS(2560), + [anon_sym_usize] = ACTIONS(2560), + [anon_sym_f32] = ACTIONS(2560), + [anon_sym_f64] = ACTIONS(2560), + [anon_sym_bool] = ACTIONS(2560), + [anon_sym_str] = ACTIONS(2560), + [anon_sym_char] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [anon_sym_COLON_COLON] = ACTIONS(2558), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_fn] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_gen] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_impl] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_loop] = ACTIONS(2560), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_mod] = ACTIONS(2560), + [anon_sym_pub] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_unsafe] = ACTIONS(2560), + [anon_sym_use] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_move] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [sym_integer_literal] = ACTIONS(2558), + [aux_sym_string_literal_token1] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_crate] = ACTIONS(2560), + [sym_metavariable] = ACTIONS(2558), + [sym__raw_string_literal_start] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), + }, + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_macro_rules_BANG] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_u8] = ACTIONS(2564), + [anon_sym_i8] = ACTIONS(2564), + [anon_sym_u16] = ACTIONS(2564), + [anon_sym_i16] = ACTIONS(2564), + [anon_sym_u32] = ACTIONS(2564), + [anon_sym_i32] = ACTIONS(2564), + [anon_sym_u64] = ACTIONS(2564), + [anon_sym_i64] = ACTIONS(2564), + [anon_sym_u128] = ACTIONS(2564), + [anon_sym_i128] = ACTIONS(2564), + [anon_sym_isize] = ACTIONS(2564), + [anon_sym_usize] = ACTIONS(2564), + [anon_sym_f32] = ACTIONS(2564), + [anon_sym_f64] = ACTIONS(2564), + [anon_sym_bool] = ACTIONS(2564), + [anon_sym_str] = ACTIONS(2564), + [anon_sym_char] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_DOT_DOT] = ACTIONS(2562), + [anon_sym_COLON_COLON] = ACTIONS(2562), + [anon_sym_POUND] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_fn] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_gen] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_impl] = ACTIONS(2564), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_loop] = ACTIONS(2564), + [anon_sym_match] = ACTIONS(2564), + [anon_sym_mod] = ACTIONS(2564), + [anon_sym_pub] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_trait] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2564), + [anon_sym_use] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym_yield] = ACTIONS(2564), + [anon_sym_move] = ACTIONS(2564), + [anon_sym_try] = ACTIONS(2564), + [sym_integer_literal] = ACTIONS(2562), + [aux_sym_string_literal_token1] = ACTIONS(2562), + [sym_char_literal] = ACTIONS(2562), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2564), + [sym_super] = ACTIONS(2564), + [sym_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2562), + [sym__raw_string_literal_start] = ACTIONS(2562), + [sym_float_literal] = ACTIONS(2562), + }, + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_macro_rules_BANG] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_u8] = ACTIONS(2568), + [anon_sym_i8] = ACTIONS(2568), + [anon_sym_u16] = ACTIONS(2568), + [anon_sym_i16] = ACTIONS(2568), + [anon_sym_u32] = ACTIONS(2568), + [anon_sym_i32] = ACTIONS(2568), + [anon_sym_u64] = ACTIONS(2568), + [anon_sym_i64] = ACTIONS(2568), + [anon_sym_u128] = ACTIONS(2568), + [anon_sym_i128] = ACTIONS(2568), + [anon_sym_isize] = ACTIONS(2568), + [anon_sym_usize] = ACTIONS(2568), + [anon_sym_f32] = ACTIONS(2568), + [anon_sym_f64] = ACTIONS(2568), + [anon_sym_bool] = ACTIONS(2568), + [anon_sym_str] = ACTIONS(2568), + [anon_sym_char] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_DOT_DOT] = ACTIONS(2566), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_POUND] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_fn] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_gen] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_impl] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_loop] = ACTIONS(2568), + [anon_sym_match] = ACTIONS(2568), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_pub] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_trait] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_unsafe] = ACTIONS(2568), + [anon_sym_use] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_move] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [sym_integer_literal] = ACTIONS(2566), + [aux_sym_string_literal_token1] = ACTIONS(2566), + [sym_char_literal] = ACTIONS(2566), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_crate] = ACTIONS(2568), + [sym_metavariable] = ACTIONS(2566), + [sym__raw_string_literal_start] = ACTIONS(2566), + [sym_float_literal] = ACTIONS(2566), + }, + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_macro_rules_BANG] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_u8] = ACTIONS(2572), + [anon_sym_i8] = ACTIONS(2572), + [anon_sym_u16] = ACTIONS(2572), + [anon_sym_i16] = ACTIONS(2572), + [anon_sym_u32] = ACTIONS(2572), + [anon_sym_i32] = ACTIONS(2572), + [anon_sym_u64] = ACTIONS(2572), + [anon_sym_i64] = ACTIONS(2572), + [anon_sym_u128] = ACTIONS(2572), + [anon_sym_i128] = ACTIONS(2572), + [anon_sym_isize] = ACTIONS(2572), + [anon_sym_usize] = ACTIONS(2572), + [anon_sym_f32] = ACTIONS(2572), + [anon_sym_f64] = ACTIONS(2572), + [anon_sym_bool] = ACTIONS(2572), + [anon_sym_str] = ACTIONS(2572), + [anon_sym_char] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DOT_DOT] = ACTIONS(2570), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2572), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_fn] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_gen] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_impl] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_loop] = ACTIONS(2572), + [anon_sym_match] = ACTIONS(2572), + [anon_sym_mod] = ACTIONS(2572), + [anon_sym_pub] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_trait] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_unsafe] = ACTIONS(2572), + [anon_sym_use] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_yield] = ACTIONS(2572), + [anon_sym_move] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [sym_integer_literal] = ACTIONS(2570), + [aux_sym_string_literal_token1] = ACTIONS(2570), + [sym_char_literal] = ACTIONS(2570), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_crate] = ACTIONS(2572), + [sym_metavariable] = ACTIONS(2570), + [sym__raw_string_literal_start] = ACTIONS(2570), + [sym_float_literal] = ACTIONS(2570), + }, + [STATE(664)] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_macro_rules_BANG] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_u8] = ACTIONS(2576), + [anon_sym_i8] = ACTIONS(2576), + [anon_sym_u16] = ACTIONS(2576), + [anon_sym_i16] = ACTIONS(2576), + [anon_sym_u32] = ACTIONS(2576), + [anon_sym_i32] = ACTIONS(2576), + [anon_sym_u64] = ACTIONS(2576), + [anon_sym_i64] = ACTIONS(2576), + [anon_sym_u128] = ACTIONS(2576), + [anon_sym_i128] = ACTIONS(2576), + [anon_sym_isize] = ACTIONS(2576), + [anon_sym_usize] = ACTIONS(2576), + [anon_sym_f32] = ACTIONS(2576), + [anon_sym_f64] = ACTIONS(2576), + [anon_sym_bool] = ACTIONS(2576), + [anon_sym_str] = ACTIONS(2576), + [anon_sym_char] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_DOT_DOT] = ACTIONS(2574), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2576), + [anon_sym_async] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_fn] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_gen] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_impl] = ACTIONS(2576), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_loop] = ACTIONS(2576), + [anon_sym_match] = ACTIONS(2576), + [anon_sym_mod] = ACTIONS(2576), + [anon_sym_pub] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_struct] = ACTIONS(2576), + [anon_sym_trait] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_unsafe] = ACTIONS(2576), + [anon_sym_use] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym_yield] = ACTIONS(2576), + [anon_sym_move] = ACTIONS(2576), + [anon_sym_try] = ACTIONS(2576), + [sym_integer_literal] = ACTIONS(2574), + [aux_sym_string_literal_token1] = ACTIONS(2574), + [sym_char_literal] = ACTIONS(2574), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2576), + [sym_super] = ACTIONS(2576), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2574), + [sym__raw_string_literal_start] = ACTIONS(2574), + [sym_float_literal] = ACTIONS(2574), + }, + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_macro_rules_BANG] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_u8] = ACTIONS(2580), + [anon_sym_i8] = ACTIONS(2580), + [anon_sym_u16] = ACTIONS(2580), + [anon_sym_i16] = ACTIONS(2580), + [anon_sym_u32] = ACTIONS(2580), + [anon_sym_i32] = ACTIONS(2580), + [anon_sym_u64] = ACTIONS(2580), + [anon_sym_i64] = ACTIONS(2580), + [anon_sym_u128] = ACTIONS(2580), + [anon_sym_i128] = ACTIONS(2580), + [anon_sym_isize] = ACTIONS(2580), + [anon_sym_usize] = ACTIONS(2580), + [anon_sym_f32] = ACTIONS(2580), + [anon_sym_f64] = ACTIONS(2580), + [anon_sym_bool] = ACTIONS(2580), + [anon_sym_str] = ACTIONS(2580), + [anon_sym_char] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2578), + [anon_sym_DOT_DOT] = ACTIONS(2578), + [anon_sym_COLON_COLON] = ACTIONS(2578), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_default] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), + [anon_sym_fn] = ACTIONS(2580), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_gen] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_impl] = ACTIONS(2580), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_loop] = ACTIONS(2580), + [anon_sym_match] = ACTIONS(2580), + [anon_sym_mod] = ACTIONS(2580), + [anon_sym_pub] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2580), + [anon_sym_trait] = ACTIONS(2580), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_union] = ACTIONS(2580), + [anon_sym_unsafe] = ACTIONS(2580), + [anon_sym_use] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_extern] = ACTIONS(2580), + [anon_sym_yield] = ACTIONS(2580), + [anon_sym_move] = ACTIONS(2580), + [anon_sym_try] = ACTIONS(2580), + [sym_integer_literal] = ACTIONS(2578), + [aux_sym_string_literal_token1] = ACTIONS(2578), + [sym_char_literal] = ACTIONS(2578), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2580), + [sym_super] = ACTIONS(2580), + [sym_crate] = ACTIONS(2580), + [sym_metavariable] = ACTIONS(2578), + [sym__raw_string_literal_start] = ACTIONS(2578), + [sym_float_literal] = ACTIONS(2578), + }, + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2582), + [sym_identifier] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_macro_rules_BANG] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2582), + [anon_sym_u8] = ACTIONS(2584), + [anon_sym_i8] = ACTIONS(2584), + [anon_sym_u16] = ACTIONS(2584), + [anon_sym_i16] = ACTIONS(2584), + [anon_sym_u32] = ACTIONS(2584), + [anon_sym_i32] = ACTIONS(2584), + [anon_sym_u64] = ACTIONS(2584), + [anon_sym_i64] = ACTIONS(2584), + [anon_sym_u128] = ACTIONS(2584), + [anon_sym_i128] = ACTIONS(2584), + [anon_sym_isize] = ACTIONS(2584), + [anon_sym_usize] = ACTIONS(2584), + [anon_sym_f32] = ACTIONS(2584), + [anon_sym_f64] = ACTIONS(2584), + [anon_sym_bool] = ACTIONS(2584), + [anon_sym_str] = ACTIONS(2584), + [anon_sym_char] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2582), + [anon_sym_DOT_DOT] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_async] = ACTIONS(2584), + [anon_sym_break] = ACTIONS(2584), + [anon_sym_const] = ACTIONS(2584), + [anon_sym_continue] = ACTIONS(2584), + [anon_sym_default] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2584), + [anon_sym_fn] = ACTIONS(2584), + [anon_sym_for] = ACTIONS(2584), + [anon_sym_gen] = ACTIONS(2584), + [anon_sym_if] = ACTIONS(2584), + [anon_sym_impl] = ACTIONS(2584), + [anon_sym_let] = ACTIONS(2584), + [anon_sym_loop] = ACTIONS(2584), + [anon_sym_match] = ACTIONS(2584), + [anon_sym_mod] = ACTIONS(2584), + [anon_sym_pub] = ACTIONS(2584), + [anon_sym_return] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_struct] = ACTIONS(2584), + [anon_sym_trait] = ACTIONS(2584), + [anon_sym_type] = ACTIONS(2584), + [anon_sym_union] = ACTIONS(2584), + [anon_sym_unsafe] = ACTIONS(2584), + [anon_sym_use] = ACTIONS(2584), + [anon_sym_while] = ACTIONS(2584), + [anon_sym_extern] = ACTIONS(2584), + [anon_sym_yield] = ACTIONS(2584), + [anon_sym_move] = ACTIONS(2584), + [anon_sym_try] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2582), + [aux_sym_string_literal_token1] = ACTIONS(2582), + [sym_char_literal] = ACTIONS(2582), + [anon_sym_true] = ACTIONS(2584), + [anon_sym_false] = ACTIONS(2584), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2584), + [sym_super] = ACTIONS(2584), + [sym_crate] = ACTIONS(2584), + [sym_metavariable] = ACTIONS(2582), + [sym__raw_string_literal_start] = ACTIONS(2582), + [sym_float_literal] = ACTIONS(2582), + }, + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_macro_rules_BANG] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_u8] = ACTIONS(2588), + [anon_sym_i8] = ACTIONS(2588), + [anon_sym_u16] = ACTIONS(2588), + [anon_sym_i16] = ACTIONS(2588), + [anon_sym_u32] = ACTIONS(2588), + [anon_sym_i32] = ACTIONS(2588), + [anon_sym_u64] = ACTIONS(2588), + [anon_sym_i64] = ACTIONS(2588), + [anon_sym_u128] = ACTIONS(2588), + [anon_sym_i128] = ACTIONS(2588), + [anon_sym_isize] = ACTIONS(2588), + [anon_sym_usize] = ACTIONS(2588), + [anon_sym_f32] = ACTIONS(2588), + [anon_sym_f64] = ACTIONS(2588), + [anon_sym_bool] = ACTIONS(2588), + [anon_sym_str] = ACTIONS(2588), + [anon_sym_char] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_DOT_DOT] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [anon_sym_fn] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_gen] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_impl] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_loop] = ACTIONS(2588), + [anon_sym_match] = ACTIONS(2588), + [anon_sym_mod] = ACTIONS(2588), + [anon_sym_pub] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_struct] = ACTIONS(2588), + [anon_sym_trait] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_union] = ACTIONS(2588), + [anon_sym_unsafe] = ACTIONS(2588), + [anon_sym_use] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_extern] = ACTIONS(2588), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_move] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [sym_integer_literal] = ACTIONS(2586), + [aux_sym_string_literal_token1] = ACTIONS(2586), + [sym_char_literal] = ACTIONS(2586), + [anon_sym_true] = ACTIONS(2588), + [anon_sym_false] = ACTIONS(2588), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_crate] = ACTIONS(2588), + [sym_metavariable] = ACTIONS(2586), + [sym__raw_string_literal_start] = ACTIONS(2586), + [sym_float_literal] = ACTIONS(2586), + }, + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_macro_rules_BANG] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_u8] = ACTIONS(2592), + [anon_sym_i8] = ACTIONS(2592), + [anon_sym_u16] = ACTIONS(2592), + [anon_sym_i16] = ACTIONS(2592), + [anon_sym_u32] = ACTIONS(2592), + [anon_sym_i32] = ACTIONS(2592), + [anon_sym_u64] = ACTIONS(2592), + [anon_sym_i64] = ACTIONS(2592), + [anon_sym_u128] = ACTIONS(2592), + [anon_sym_i128] = ACTIONS(2592), + [anon_sym_isize] = ACTIONS(2592), + [anon_sym_usize] = ACTIONS(2592), + [anon_sym_f32] = ACTIONS(2592), + [anon_sym_f64] = ACTIONS(2592), + [anon_sym_bool] = ACTIONS(2592), + [anon_sym_str] = ACTIONS(2592), + [anon_sym_char] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_DOT_DOT] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [anon_sym_fn] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_gen] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_impl] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_loop] = ACTIONS(2592), + [anon_sym_match] = ACTIONS(2592), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_pub] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_struct] = ACTIONS(2592), + [anon_sym_trait] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_union] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(2592), + [anon_sym_use] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_extern] = ACTIONS(2592), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_move] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [sym_integer_literal] = ACTIONS(2590), + [aux_sym_string_literal_token1] = ACTIONS(2590), + [sym_char_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), + [sym_crate] = ACTIONS(2592), + [sym_metavariable] = ACTIONS(2590), + [sym__raw_string_literal_start] = ACTIONS(2590), + [sym_float_literal] = ACTIONS(2590), + }, + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_macro_rules_BANG] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_u8] = ACTIONS(2596), + [anon_sym_i8] = ACTIONS(2596), + [anon_sym_u16] = ACTIONS(2596), + [anon_sym_i16] = ACTIONS(2596), + [anon_sym_u32] = ACTIONS(2596), + [anon_sym_i32] = ACTIONS(2596), + [anon_sym_u64] = ACTIONS(2596), + [anon_sym_i64] = ACTIONS(2596), + [anon_sym_u128] = ACTIONS(2596), + [anon_sym_i128] = ACTIONS(2596), + [anon_sym_isize] = ACTIONS(2596), + [anon_sym_usize] = ACTIONS(2596), + [anon_sym_f32] = ACTIONS(2596), + [anon_sym_f64] = ACTIONS(2596), + [anon_sym_bool] = ACTIONS(2596), + [anon_sym_str] = ACTIONS(2596), + [anon_sym_char] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_DOT_DOT] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_gen] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_impl] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_loop] = ACTIONS(2596), + [anon_sym_match] = ACTIONS(2596), + [anon_sym_mod] = ACTIONS(2596), + [anon_sym_pub] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(2596), + [anon_sym_trait] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_union] = ACTIONS(2596), + [anon_sym_unsafe] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_extern] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_move] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [sym_integer_literal] = ACTIONS(2594), + [aux_sym_string_literal_token1] = ACTIONS(2594), + [sym_char_literal] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_crate] = ACTIONS(2596), + [sym_metavariable] = ACTIONS(2594), + [sym__raw_string_literal_start] = ACTIONS(2594), + [sym_float_literal] = ACTIONS(2594), + }, + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_macro_rules_BANG] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2598), + [anon_sym_u8] = ACTIONS(2600), + [anon_sym_i8] = ACTIONS(2600), + [anon_sym_u16] = ACTIONS(2600), + [anon_sym_i16] = ACTIONS(2600), + [anon_sym_u32] = ACTIONS(2600), + [anon_sym_i32] = ACTIONS(2600), + [anon_sym_u64] = ACTIONS(2600), + [anon_sym_i64] = ACTIONS(2600), + [anon_sym_u128] = ACTIONS(2600), + [anon_sym_i128] = ACTIONS(2600), + [anon_sym_isize] = ACTIONS(2600), + [anon_sym_usize] = ACTIONS(2600), + [anon_sym_f32] = ACTIONS(2600), + [anon_sym_f64] = ACTIONS(2600), + [anon_sym_bool] = ACTIONS(2600), + [anon_sym_str] = ACTIONS(2600), + [anon_sym_char] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_DOT_DOT] = ACTIONS(2598), + [anon_sym_COLON_COLON] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [anon_sym_fn] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_gen] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_impl] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_loop] = ACTIONS(2600), + [anon_sym_match] = ACTIONS(2600), + [anon_sym_mod] = ACTIONS(2600), + [anon_sym_pub] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_struct] = ACTIONS(2600), + [anon_sym_trait] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_union] = ACTIONS(2600), + [anon_sym_unsafe] = ACTIONS(2600), + [anon_sym_use] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_extern] = ACTIONS(2600), + [anon_sym_yield] = ACTIONS(2600), + [anon_sym_move] = ACTIONS(2600), + [anon_sym_try] = ACTIONS(2600), + [sym_integer_literal] = ACTIONS(2598), + [aux_sym_string_literal_token1] = ACTIONS(2598), + [sym_char_literal] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2600), + [anon_sym_false] = ACTIONS(2600), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2600), + [sym_super] = ACTIONS(2600), + [sym_crate] = ACTIONS(2600), + [sym_metavariable] = ACTIONS(2598), + [sym__raw_string_literal_start] = ACTIONS(2598), + [sym_float_literal] = ACTIONS(2598), + }, + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_macro_rules_BANG] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2602), + [anon_sym_u8] = ACTIONS(2604), + [anon_sym_i8] = ACTIONS(2604), + [anon_sym_u16] = ACTIONS(2604), + [anon_sym_i16] = ACTIONS(2604), + [anon_sym_u32] = ACTIONS(2604), + [anon_sym_i32] = ACTIONS(2604), + [anon_sym_u64] = ACTIONS(2604), + [anon_sym_i64] = ACTIONS(2604), + [anon_sym_u128] = ACTIONS(2604), + [anon_sym_i128] = ACTIONS(2604), + [anon_sym_isize] = ACTIONS(2604), + [anon_sym_usize] = ACTIONS(2604), + [anon_sym_f32] = ACTIONS(2604), + [anon_sym_f64] = ACTIONS(2604), + [anon_sym_bool] = ACTIONS(2604), + [anon_sym_str] = ACTIONS(2604), + [anon_sym_char] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_DOT_DOT] = ACTIONS(2602), + [anon_sym_COLON_COLON] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_const] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_fn] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_gen] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_impl] = ACTIONS(2604), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_loop] = ACTIONS(2604), + [anon_sym_match] = ACTIONS(2604), + [anon_sym_mod] = ACTIONS(2604), + [anon_sym_pub] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(2604), + [anon_sym_trait] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_union] = ACTIONS(2604), + [anon_sym_unsafe] = ACTIONS(2604), + [anon_sym_use] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_extern] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2604), + [anon_sym_move] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [sym_integer_literal] = ACTIONS(2602), + [aux_sym_string_literal_token1] = ACTIONS(2602), + [sym_char_literal] = ACTIONS(2602), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2604), + [sym_super] = ACTIONS(2604), + [sym_crate] = ACTIONS(2604), + [sym_metavariable] = ACTIONS(2602), + [sym__raw_string_literal_start] = ACTIONS(2602), + [sym_float_literal] = ACTIONS(2602), + }, + [STATE(672)] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_macro_rules_BANG] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2606), + [anon_sym_u8] = ACTIONS(2608), + [anon_sym_i8] = ACTIONS(2608), + [anon_sym_u16] = ACTIONS(2608), + [anon_sym_i16] = ACTIONS(2608), + [anon_sym_u32] = ACTIONS(2608), + [anon_sym_i32] = ACTIONS(2608), + [anon_sym_u64] = ACTIONS(2608), + [anon_sym_i64] = ACTIONS(2608), + [anon_sym_u128] = ACTIONS(2608), + [anon_sym_i128] = ACTIONS(2608), + [anon_sym_isize] = ACTIONS(2608), + [anon_sym_usize] = ACTIONS(2608), + [anon_sym_f32] = ACTIONS(2608), + [anon_sym_f64] = ACTIONS(2608), + [anon_sym_bool] = ACTIONS(2608), + [anon_sym_str] = ACTIONS(2608), + [anon_sym_char] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_DOT_DOT] = ACTIONS(2606), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [anon_sym_fn] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_gen] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_impl] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_loop] = ACTIONS(2608), + [anon_sym_match] = ACTIONS(2608), + [anon_sym_mod] = ACTIONS(2608), + [anon_sym_pub] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_struct] = ACTIONS(2608), + [anon_sym_trait] = ACTIONS(2608), + [anon_sym_type] = ACTIONS(2608), + [anon_sym_union] = ACTIONS(2608), + [anon_sym_unsafe] = ACTIONS(2608), + [anon_sym_use] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_yield] = ACTIONS(2608), + [anon_sym_move] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [sym_integer_literal] = ACTIONS(2606), + [aux_sym_string_literal_token1] = ACTIONS(2606), + [sym_char_literal] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2608), + [sym_super] = ACTIONS(2608), + [sym_crate] = ACTIONS(2608), + [sym_metavariable] = ACTIONS(2606), + [sym__raw_string_literal_start] = ACTIONS(2606), + [sym_float_literal] = ACTIONS(2606), + }, + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(2610), + [sym_identifier] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym_macro_rules_BANG] = ACTIONS(2610), + [anon_sym_LPAREN] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_RBRACE] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(2610), + [anon_sym_u8] = ACTIONS(2612), + [anon_sym_i8] = ACTIONS(2612), + [anon_sym_u16] = ACTIONS(2612), + [anon_sym_i16] = ACTIONS(2612), + [anon_sym_u32] = ACTIONS(2612), + [anon_sym_i32] = ACTIONS(2612), + [anon_sym_u64] = ACTIONS(2612), + [anon_sym_i64] = ACTIONS(2612), + [anon_sym_u128] = ACTIONS(2612), + [anon_sym_i128] = ACTIONS(2612), + [anon_sym_isize] = ACTIONS(2612), + [anon_sym_usize] = ACTIONS(2612), + [anon_sym_f32] = ACTIONS(2612), + [anon_sym_f64] = ACTIONS(2612), + [anon_sym_bool] = ACTIONS(2612), + [anon_sym_str] = ACTIONS(2612), + [anon_sym_char] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2610), + [anon_sym_AMP] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2610), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_COLON_COLON] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(2610), + [anon_sym_SQUOTE] = ACTIONS(2612), + [anon_sym_async] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_fn] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_gen] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_impl] = ACTIONS(2612), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_loop] = ACTIONS(2612), + [anon_sym_match] = ACTIONS(2612), + [anon_sym_mod] = ACTIONS(2612), + [anon_sym_pub] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_trait] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_unsafe] = ACTIONS(2612), + [anon_sym_use] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_yield] = ACTIONS(2612), + [anon_sym_move] = ACTIONS(2612), + [anon_sym_try] = ACTIONS(2612), + [sym_integer_literal] = ACTIONS(2610), + [aux_sym_string_literal_token1] = ACTIONS(2610), + [sym_char_literal] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2612), + [sym_super] = ACTIONS(2612), + [sym_crate] = ACTIONS(2612), + [sym_metavariable] = ACTIONS(2610), + [sym__raw_string_literal_start] = ACTIONS(2610), + [sym_float_literal] = ACTIONS(2610), + }, + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_macro_rules_BANG] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_u8] = ACTIONS(2616), + [anon_sym_i8] = ACTIONS(2616), + [anon_sym_u16] = ACTIONS(2616), + [anon_sym_i16] = ACTIONS(2616), + [anon_sym_u32] = ACTIONS(2616), + [anon_sym_i32] = ACTIONS(2616), + [anon_sym_u64] = ACTIONS(2616), + [anon_sym_i64] = ACTIONS(2616), + [anon_sym_u128] = ACTIONS(2616), + [anon_sym_i128] = ACTIONS(2616), + [anon_sym_isize] = ACTIONS(2616), + [anon_sym_usize] = ACTIONS(2616), + [anon_sym_f32] = ACTIONS(2616), + [anon_sym_f64] = ACTIONS(2616), + [anon_sym_bool] = ACTIONS(2616), + [anon_sym_str] = ACTIONS(2616), + [anon_sym_char] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2614), + [anon_sym_DOT_DOT] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2614), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2616), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_gen] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_impl] = ACTIONS(2616), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_loop] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_mod] = ACTIONS(2616), + [anon_sym_pub] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_trait] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_use] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym_yield] = ACTIONS(2616), + [anon_sym_move] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [sym_integer_literal] = ACTIONS(2614), + [aux_sym_string_literal_token1] = ACTIONS(2614), + [sym_char_literal] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2616), + [sym_super] = ACTIONS(2616), + [sym_crate] = ACTIONS(2616), + [sym_metavariable] = ACTIONS(2614), + [sym__raw_string_literal_start] = ACTIONS(2614), + [sym_float_literal] = ACTIONS(2614), + }, + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_macro_rules_BANG] = ACTIONS(2618), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_u8] = ACTIONS(2620), + [anon_sym_i8] = ACTIONS(2620), + [anon_sym_u16] = ACTIONS(2620), + [anon_sym_i16] = ACTIONS(2620), + [anon_sym_u32] = ACTIONS(2620), + [anon_sym_i32] = ACTIONS(2620), + [anon_sym_u64] = ACTIONS(2620), + [anon_sym_i64] = ACTIONS(2620), + [anon_sym_u128] = ACTIONS(2620), + [anon_sym_i128] = ACTIONS(2620), + [anon_sym_isize] = ACTIONS(2620), + [anon_sym_usize] = ACTIONS(2620), + [anon_sym_f32] = ACTIONS(2620), + [anon_sym_f64] = ACTIONS(2620), + [anon_sym_bool] = ACTIONS(2620), + [anon_sym_str] = ACTIONS(2620), + [anon_sym_char] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_PIPE] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2618), + [anon_sym_DOT_DOT] = ACTIONS(2618), + [anon_sym_COLON_COLON] = ACTIONS(2618), + [anon_sym_POUND] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_fn] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_gen] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_impl] = ACTIONS(2620), + [anon_sym_let] = ACTIONS(2620), + [anon_sym_loop] = ACTIONS(2620), + [anon_sym_match] = ACTIONS(2620), + [anon_sym_mod] = ACTIONS(2620), + [anon_sym_pub] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_trait] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(2620), + [anon_sym_use] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym_yield] = ACTIONS(2620), + [anon_sym_move] = ACTIONS(2620), + [anon_sym_try] = ACTIONS(2620), + [sym_integer_literal] = ACTIONS(2618), + [aux_sym_string_literal_token1] = ACTIONS(2618), + [sym_char_literal] = ACTIONS(2618), + [anon_sym_true] = ACTIONS(2620), + [anon_sym_false] = ACTIONS(2620), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2620), + [sym_super] = ACTIONS(2620), + [sym_crate] = ACTIONS(2620), + [sym_metavariable] = ACTIONS(2618), + [sym__raw_string_literal_start] = ACTIONS(2618), + [sym_float_literal] = ACTIONS(2618), + }, + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_macro_rules_BANG] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_u8] = ACTIONS(2624), + [anon_sym_i8] = ACTIONS(2624), + [anon_sym_u16] = ACTIONS(2624), + [anon_sym_i16] = ACTIONS(2624), + [anon_sym_u32] = ACTIONS(2624), + [anon_sym_i32] = ACTIONS(2624), + [anon_sym_u64] = ACTIONS(2624), + [anon_sym_i64] = ACTIONS(2624), + [anon_sym_u128] = ACTIONS(2624), + [anon_sym_i128] = ACTIONS(2624), + [anon_sym_isize] = ACTIONS(2624), + [anon_sym_usize] = ACTIONS(2624), + [anon_sym_f32] = ACTIONS(2624), + [anon_sym_f64] = ACTIONS(2624), + [anon_sym_bool] = ACTIONS(2624), + [anon_sym_str] = ACTIONS(2624), + [anon_sym_char] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_DOT_DOT] = ACTIONS(2622), + [anon_sym_COLON_COLON] = ACTIONS(2622), + [anon_sym_POUND] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2624), + [anon_sym_async] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_fn] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_gen] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_impl] = ACTIONS(2624), + [anon_sym_let] = ACTIONS(2624), + [anon_sym_loop] = ACTIONS(2624), + [anon_sym_match] = ACTIONS(2624), + [anon_sym_mod] = ACTIONS(2624), + [anon_sym_pub] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_trait] = ACTIONS(2624), + [anon_sym_type] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_unsafe] = ACTIONS(2624), + [anon_sym_use] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym_yield] = ACTIONS(2624), + [anon_sym_move] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [sym_integer_literal] = ACTIONS(2622), + [aux_sym_string_literal_token1] = ACTIONS(2622), + [sym_char_literal] = ACTIONS(2622), + [anon_sym_true] = ACTIONS(2624), + [anon_sym_false] = ACTIONS(2624), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2624), + [sym_super] = ACTIONS(2624), + [sym_crate] = ACTIONS(2624), + [sym_metavariable] = ACTIONS(2622), + [sym__raw_string_literal_start] = ACTIONS(2622), + [sym_float_literal] = ACTIONS(2622), + }, + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), + [ts_builtin_sym_end] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym_macro_rules_BANG] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_u8] = ACTIONS(2628), + [anon_sym_i8] = ACTIONS(2628), + [anon_sym_u16] = ACTIONS(2628), + [anon_sym_i16] = ACTIONS(2628), + [anon_sym_u32] = ACTIONS(2628), + [anon_sym_i32] = ACTIONS(2628), + [anon_sym_u64] = ACTIONS(2628), + [anon_sym_i64] = ACTIONS(2628), + [anon_sym_u128] = ACTIONS(2628), + [anon_sym_i128] = ACTIONS(2628), + [anon_sym_isize] = ACTIONS(2628), + [anon_sym_usize] = ACTIONS(2628), + [anon_sym_f32] = ACTIONS(2628), + [anon_sym_f64] = ACTIONS(2628), + [anon_sym_bool] = ACTIONS(2628), + [anon_sym_str] = ACTIONS(2628), + [anon_sym_char] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_PIPE] = ACTIONS(2626), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_DOT_DOT] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_POUND] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2628), + [anon_sym_async] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_gen] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_impl] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_loop] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_mod] = ACTIONS(2628), + [anon_sym_pub] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_trait] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_unsafe] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_move] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [sym_integer_literal] = ACTIONS(2626), + [aux_sym_string_literal_token1] = ACTIONS(2626), + [sym_char_literal] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2628), + [sym_super] = ACTIONS(2628), + [sym_crate] = ACTIONS(2628), + [sym_metavariable] = ACTIONS(2626), + [sym__raw_string_literal_start] = ACTIONS(2626), + [sym_float_literal] = ACTIONS(2626), + }, + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2632), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_macro_rules_BANG] = ACTIONS(2630), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_u8] = ACTIONS(2632), + [anon_sym_i8] = ACTIONS(2632), + [anon_sym_u16] = ACTIONS(2632), + [anon_sym_i16] = ACTIONS(2632), + [anon_sym_u32] = ACTIONS(2632), + [anon_sym_i32] = ACTIONS(2632), + [anon_sym_u64] = ACTIONS(2632), + [anon_sym_i64] = ACTIONS(2632), + [anon_sym_u128] = ACTIONS(2632), + [anon_sym_i128] = ACTIONS(2632), + [anon_sym_isize] = ACTIONS(2632), + [anon_sym_usize] = ACTIONS(2632), + [anon_sym_f32] = ACTIONS(2632), + [anon_sym_f64] = ACTIONS(2632), + [anon_sym_bool] = ACTIONS(2632), + [anon_sym_str] = ACTIONS(2632), + [anon_sym_char] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_DOT_DOT] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_POUND] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2632), + [anon_sym_async] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_fn] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_gen] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_impl] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_loop] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_mod] = ACTIONS(2632), + [anon_sym_pub] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2632), + [anon_sym_trait] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2632), + [anon_sym_union] = ACTIONS(2632), + [anon_sym_unsafe] = ACTIONS(2632), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_move] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [sym_integer_literal] = ACTIONS(2630), + [aux_sym_string_literal_token1] = ACTIONS(2630), + [sym_char_literal] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), + [sym_crate] = ACTIONS(2632), + [sym_metavariable] = ACTIONS(2630), + [sym__raw_string_literal_start] = ACTIONS(2630), + [sym_float_literal] = ACTIONS(2630), + }, + [STATE(679)] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym_macro_rules_BANG] = ACTIONS(2634), + [anon_sym_LPAREN] = ACTIONS(2634), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_u8] = ACTIONS(2636), + [anon_sym_i8] = ACTIONS(2636), + [anon_sym_u16] = ACTIONS(2636), + [anon_sym_i16] = ACTIONS(2636), + [anon_sym_u32] = ACTIONS(2636), + [anon_sym_i32] = ACTIONS(2636), + [anon_sym_u64] = ACTIONS(2636), + [anon_sym_i64] = ACTIONS(2636), + [anon_sym_u128] = ACTIONS(2636), + [anon_sym_i128] = ACTIONS(2636), + [anon_sym_isize] = ACTIONS(2636), + [anon_sym_usize] = ACTIONS(2636), + [anon_sym_f32] = ACTIONS(2636), + [anon_sym_f64] = ACTIONS(2636), + [anon_sym_bool] = ACTIONS(2636), + [anon_sym_str] = ACTIONS(2636), + [anon_sym_char] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_PIPE] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_DOT_DOT] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_POUND] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2636), + [anon_sym_async] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_fn] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_gen] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_impl] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_loop] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_mod] = ACTIONS(2636), + [anon_sym_pub] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_trait] = ACTIONS(2636), + [anon_sym_type] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2636), + [anon_sym_unsafe] = ACTIONS(2636), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_move] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [sym_integer_literal] = ACTIONS(2634), + [aux_sym_string_literal_token1] = ACTIONS(2634), + [sym_char_literal] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2636), + [sym_super] = ACTIONS(2636), + [sym_crate] = ACTIONS(2636), + [sym_metavariable] = ACTIONS(2634), + [sym__raw_string_literal_start] = ACTIONS(2634), + [sym_float_literal] = ACTIONS(2634), + }, + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym_macro_rules_BANG] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_u8] = ACTIONS(2640), + [anon_sym_i8] = ACTIONS(2640), + [anon_sym_u16] = ACTIONS(2640), + [anon_sym_i16] = ACTIONS(2640), + [anon_sym_u32] = ACTIONS(2640), + [anon_sym_i32] = ACTIONS(2640), + [anon_sym_u64] = ACTIONS(2640), + [anon_sym_i64] = ACTIONS(2640), + [anon_sym_u128] = ACTIONS(2640), + [anon_sym_i128] = ACTIONS(2640), + [anon_sym_isize] = ACTIONS(2640), + [anon_sym_usize] = ACTIONS(2640), + [anon_sym_f32] = ACTIONS(2640), + [anon_sym_f64] = ACTIONS(2640), + [anon_sym_bool] = ACTIONS(2640), + [anon_sym_str] = ACTIONS(2640), + [anon_sym_char] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2640), + [anon_sym_async] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_fn] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_gen] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_impl] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_loop] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_mod] = ACTIONS(2640), + [anon_sym_pub] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_trait] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_unsafe] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_move] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [sym_integer_literal] = ACTIONS(2638), + [aux_sym_string_literal_token1] = ACTIONS(2638), + [sym_char_literal] = ACTIONS(2638), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2640), + [sym_super] = ACTIONS(2640), + [sym_crate] = ACTIONS(2640), + [sym_metavariable] = ACTIONS(2638), + [sym__raw_string_literal_start] = ACTIONS(2638), + [sym_float_literal] = ACTIONS(2638), + }, + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym_macro_rules_BANG] = ACTIONS(2642), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_u8] = ACTIONS(2644), + [anon_sym_i8] = ACTIONS(2644), + [anon_sym_u16] = ACTIONS(2644), + [anon_sym_i16] = ACTIONS(2644), + [anon_sym_u32] = ACTIONS(2644), + [anon_sym_i32] = ACTIONS(2644), + [anon_sym_u64] = ACTIONS(2644), + [anon_sym_i64] = ACTIONS(2644), + [anon_sym_u128] = ACTIONS(2644), + [anon_sym_i128] = ACTIONS(2644), + [anon_sym_isize] = ACTIONS(2644), + [anon_sym_usize] = ACTIONS(2644), + [anon_sym_f32] = ACTIONS(2644), + [anon_sym_f64] = ACTIONS(2644), + [anon_sym_bool] = ACTIONS(2644), + [anon_sym_str] = ACTIONS(2644), + [anon_sym_char] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_PIPE] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_DOT_DOT] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_async] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_fn] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_gen] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_impl] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_loop] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_mod] = ACTIONS(2644), + [anon_sym_pub] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_struct] = ACTIONS(2644), + [anon_sym_trait] = ACTIONS(2644), + [anon_sym_type] = ACTIONS(2644), + [anon_sym_union] = ACTIONS(2644), + [anon_sym_unsafe] = ACTIONS(2644), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_move] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [sym_integer_literal] = ACTIONS(2642), + [aux_sym_string_literal_token1] = ACTIONS(2642), + [sym_char_literal] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2644), + [sym_super] = ACTIONS(2644), + [sym_crate] = ACTIONS(2644), + [sym_metavariable] = ACTIONS(2642), + [sym__raw_string_literal_start] = ACTIONS(2642), + [sym_float_literal] = ACTIONS(2642), + }, + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym_macro_rules_BANG] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_u8] = ACTIONS(2648), + [anon_sym_i8] = ACTIONS(2648), + [anon_sym_u16] = ACTIONS(2648), + [anon_sym_i16] = ACTIONS(2648), + [anon_sym_u32] = ACTIONS(2648), + [anon_sym_i32] = ACTIONS(2648), + [anon_sym_u64] = ACTIONS(2648), + [anon_sym_i64] = ACTIONS(2648), + [anon_sym_u128] = ACTIONS(2648), + [anon_sym_i128] = ACTIONS(2648), + [anon_sym_isize] = ACTIONS(2648), + [anon_sym_usize] = ACTIONS(2648), + [anon_sym_f32] = ACTIONS(2648), + [anon_sym_f64] = ACTIONS(2648), + [anon_sym_bool] = ACTIONS(2648), + [anon_sym_str] = ACTIONS(2648), + [anon_sym_char] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_DOT_DOT] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2648), + [anon_sym_async] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_fn] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_gen] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_impl] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_loop] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_mod] = ACTIONS(2648), + [anon_sym_pub] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_trait] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_unsafe] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_move] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [sym_integer_literal] = ACTIONS(2646), + [aux_sym_string_literal_token1] = ACTIONS(2646), + [sym_char_literal] = ACTIONS(2646), + [anon_sym_true] = ACTIONS(2648), + [anon_sym_false] = ACTIONS(2648), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2648), + [sym_super] = ACTIONS(2648), + [sym_crate] = ACTIONS(2648), + [sym_metavariable] = ACTIONS(2646), + [sym__raw_string_literal_start] = ACTIONS(2646), + [sym_float_literal] = ACTIONS(2646), + }, + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym_macro_rules_BANG] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_u8] = ACTIONS(2652), + [anon_sym_i8] = ACTIONS(2652), + [anon_sym_u16] = ACTIONS(2652), + [anon_sym_i16] = ACTIONS(2652), + [anon_sym_u32] = ACTIONS(2652), + [anon_sym_i32] = ACTIONS(2652), + [anon_sym_u64] = ACTIONS(2652), + [anon_sym_i64] = ACTIONS(2652), + [anon_sym_u128] = ACTIONS(2652), + [anon_sym_i128] = ACTIONS(2652), + [anon_sym_isize] = ACTIONS(2652), + [anon_sym_usize] = ACTIONS(2652), + [anon_sym_f32] = ACTIONS(2652), + [anon_sym_f64] = ACTIONS(2652), + [anon_sym_bool] = ACTIONS(2652), + [anon_sym_str] = ACTIONS(2652), + [anon_sym_char] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_DOT_DOT] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_fn] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_gen] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_impl] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_loop] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_mod] = ACTIONS(2652), + [anon_sym_pub] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_trait] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_unsafe] = ACTIONS(2652), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_move] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [sym_integer_literal] = ACTIONS(2650), + [aux_sym_string_literal_token1] = ACTIONS(2650), + [sym_char_literal] = ACTIONS(2650), + [anon_sym_true] = ACTIONS(2652), + [anon_sym_false] = ACTIONS(2652), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2652), + [sym_super] = ACTIONS(2652), + [sym_crate] = ACTIONS(2652), + [sym_metavariable] = ACTIONS(2650), + [sym__raw_string_literal_start] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2650), + }, + [STATE(684)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_pattern] = STATE(3647), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_macro_rules_BANG] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_u8] = ACTIONS(2504), - [anon_sym_i8] = ACTIONS(2504), - [anon_sym_u16] = ACTIONS(2504), - [anon_sym_i16] = ACTIONS(2504), - [anon_sym_u32] = ACTIONS(2504), - [anon_sym_i32] = ACTIONS(2504), - [anon_sym_u64] = ACTIONS(2504), - [anon_sym_i64] = ACTIONS(2504), - [anon_sym_u128] = ACTIONS(2504), - [anon_sym_i128] = ACTIONS(2504), - [anon_sym_isize] = ACTIONS(2504), - [anon_sym_usize] = ACTIONS(2504), - [anon_sym_f32] = ACTIONS(2504), - [anon_sym_f64] = ACTIONS(2504), - [anon_sym_bool] = ACTIONS(2504), - [anon_sym_str] = ACTIONS(2504), - [anon_sym_char] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_DOT_DOT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_fn] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_impl] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_mod] = ACTIONS(2504), - [anon_sym_pub] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_trait] = ACTIONS(2504), - [anon_sym_type] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_unsafe] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_yield] = ACTIONS(2504), - [anon_sym_move] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [sym_integer_literal] = ACTIONS(2502), - [aux_sym_string_literal_token1] = ACTIONS(2502), - [sym_char_literal] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2504), - [sym_super] = ACTIONS(2504), - [sym_crate] = ACTIONS(2504), - [sym_metavariable] = ACTIONS(2502), - [sym__raw_string_literal_start] = ACTIONS(2502), - [sym_float_literal] = ACTIONS(2502), - }, - [685] = { + [aux_sym_match_arm_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(685)] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_macro_rules_BANG] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_u8] = ACTIONS(2508), - [anon_sym_i8] = ACTIONS(2508), - [anon_sym_u16] = ACTIONS(2508), - [anon_sym_i16] = ACTIONS(2508), - [anon_sym_u32] = ACTIONS(2508), - [anon_sym_i32] = ACTIONS(2508), - [anon_sym_u64] = ACTIONS(2508), - [anon_sym_i64] = ACTIONS(2508), - [anon_sym_u128] = ACTIONS(2508), - [anon_sym_i128] = ACTIONS(2508), - [anon_sym_isize] = ACTIONS(2508), - [anon_sym_usize] = ACTIONS(2508), - [anon_sym_f32] = ACTIONS(2508), - [anon_sym_f64] = ACTIONS(2508), - [anon_sym_bool] = ACTIONS(2508), - [anon_sym_str] = ACTIONS(2508), - [anon_sym_char] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_DOT_DOT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [anon_sym_fn] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_impl] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_mod] = ACTIONS(2508), - [anon_sym_pub] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_trait] = ACTIONS(2508), - [anon_sym_type] = ACTIONS(2508), - [anon_sym_union] = ACTIONS(2508), - [anon_sym_unsafe] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_move] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [sym_integer_literal] = ACTIONS(2506), - [aux_sym_string_literal_token1] = ACTIONS(2506), - [sym_char_literal] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2508), - [sym_super] = ACTIONS(2508), - [sym_crate] = ACTIONS(2508), - [sym_metavariable] = ACTIONS(2506), - [sym__raw_string_literal_start] = ACTIONS(2506), - [sym_float_literal] = ACTIONS(2506), - }, - [686] = { + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_macro_rules_BANG] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_u8] = ACTIONS(2656), + [anon_sym_i8] = ACTIONS(2656), + [anon_sym_u16] = ACTIONS(2656), + [anon_sym_i16] = ACTIONS(2656), + [anon_sym_u32] = ACTIONS(2656), + [anon_sym_i32] = ACTIONS(2656), + [anon_sym_u64] = ACTIONS(2656), + [anon_sym_i64] = ACTIONS(2656), + [anon_sym_u128] = ACTIONS(2656), + [anon_sym_i128] = ACTIONS(2656), + [anon_sym_isize] = ACTIONS(2656), + [anon_sym_usize] = ACTIONS(2656), + [anon_sym_f32] = ACTIONS(2656), + [anon_sym_f64] = ACTIONS(2656), + [anon_sym_bool] = ACTIONS(2656), + [anon_sym_str] = ACTIONS(2656), + [anon_sym_char] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_DOT_DOT] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_gen] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_impl] = ACTIONS(2656), + [anon_sym_let] = ACTIONS(2656), + [anon_sym_loop] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_mod] = ACTIONS(2656), + [anon_sym_pub] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_struct] = ACTIONS(2656), + [anon_sym_trait] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_union] = ACTIONS(2656), + [anon_sym_unsafe] = ACTIONS(2656), + [anon_sym_use] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_move] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [sym_integer_literal] = ACTIONS(2654), + [aux_sym_string_literal_token1] = ACTIONS(2654), + [sym_char_literal] = ACTIONS(2654), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2656), + [sym_super] = ACTIONS(2656), + [sym_crate] = ACTIONS(2656), + [sym_metavariable] = ACTIONS(2654), + [sym__raw_string_literal_start] = ACTIONS(2654), + [sym_float_literal] = ACTIONS(2654), + }, + [STATE(686)] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_macro_rules_BANG] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_u8] = ACTIONS(2512), - [anon_sym_i8] = ACTIONS(2512), - [anon_sym_u16] = ACTIONS(2512), - [anon_sym_i16] = ACTIONS(2512), - [anon_sym_u32] = ACTIONS(2512), - [anon_sym_i32] = ACTIONS(2512), - [anon_sym_u64] = ACTIONS(2512), - [anon_sym_i64] = ACTIONS(2512), - [anon_sym_u128] = ACTIONS(2512), - [anon_sym_i128] = ACTIONS(2512), - [anon_sym_isize] = ACTIONS(2512), - [anon_sym_usize] = ACTIONS(2512), - [anon_sym_f32] = ACTIONS(2512), - [anon_sym_f64] = ACTIONS(2512), - [anon_sym_bool] = ACTIONS(2512), - [anon_sym_str] = ACTIONS(2512), - [anon_sym_char] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_DOT_DOT] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_async] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), - [anon_sym_fn] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_impl] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_mod] = ACTIONS(2512), - [anon_sym_pub] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(2512), - [anon_sym_trait] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_union] = ACTIONS(2512), - [anon_sym_unsafe] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_yield] = ACTIONS(2512), - [anon_sym_move] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [sym_integer_literal] = ACTIONS(2510), - [aux_sym_string_literal_token1] = ACTIONS(2510), - [sym_char_literal] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(2512), - [sym_crate] = ACTIONS(2512), - [sym_metavariable] = ACTIONS(2510), - [sym__raw_string_literal_start] = ACTIONS(2510), - [sym_float_literal] = ACTIONS(2510), - }, - [687] = { + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_macro_rules_BANG] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_u8] = ACTIONS(2660), + [anon_sym_i8] = ACTIONS(2660), + [anon_sym_u16] = ACTIONS(2660), + [anon_sym_i16] = ACTIONS(2660), + [anon_sym_u32] = ACTIONS(2660), + [anon_sym_i32] = ACTIONS(2660), + [anon_sym_u64] = ACTIONS(2660), + [anon_sym_i64] = ACTIONS(2660), + [anon_sym_u128] = ACTIONS(2660), + [anon_sym_i128] = ACTIONS(2660), + [anon_sym_isize] = ACTIONS(2660), + [anon_sym_usize] = ACTIONS(2660), + [anon_sym_f32] = ACTIONS(2660), + [anon_sym_f64] = ACTIONS(2660), + [anon_sym_bool] = ACTIONS(2660), + [anon_sym_str] = ACTIONS(2660), + [anon_sym_char] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_DOT_DOT] = ACTIONS(2658), + [anon_sym_COLON_COLON] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_fn] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_gen] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_impl] = ACTIONS(2660), + [anon_sym_let] = ACTIONS(2660), + [anon_sym_loop] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_mod] = ACTIONS(2660), + [anon_sym_pub] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_trait] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_move] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [sym_integer_literal] = ACTIONS(2658), + [aux_sym_string_literal_token1] = ACTIONS(2658), + [sym_char_literal] = ACTIONS(2658), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2660), + [sym_super] = ACTIONS(2660), + [sym_crate] = ACTIONS(2660), + [sym_metavariable] = ACTIONS(2658), + [sym__raw_string_literal_start] = ACTIONS(2658), + [sym_float_literal] = ACTIONS(2658), + }, + [STATE(687)] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_macro_rules_BANG] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_u8] = ACTIONS(2516), - [anon_sym_i8] = ACTIONS(2516), - [anon_sym_u16] = ACTIONS(2516), - [anon_sym_i16] = ACTIONS(2516), - [anon_sym_u32] = ACTIONS(2516), - [anon_sym_i32] = ACTIONS(2516), - [anon_sym_u64] = ACTIONS(2516), - [anon_sym_i64] = ACTIONS(2516), - [anon_sym_u128] = ACTIONS(2516), - [anon_sym_i128] = ACTIONS(2516), - [anon_sym_isize] = ACTIONS(2516), - [anon_sym_usize] = ACTIONS(2516), - [anon_sym_f32] = ACTIONS(2516), - [anon_sym_f64] = ACTIONS(2516), - [anon_sym_bool] = ACTIONS(2516), - [anon_sym_str] = ACTIONS(2516), - [anon_sym_char] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_DOT_DOT] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_async] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_default] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), - [anon_sym_fn] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_impl] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_mod] = ACTIONS(2516), - [anon_sym_pub] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(2516), - [anon_sym_trait] = ACTIONS(2516), - [anon_sym_type] = ACTIONS(2516), - [anon_sym_union] = ACTIONS(2516), - [anon_sym_unsafe] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_yield] = ACTIONS(2516), - [anon_sym_move] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [sym_integer_literal] = ACTIONS(2514), - [aux_sym_string_literal_token1] = ACTIONS(2514), - [sym_char_literal] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2516), - [sym_super] = ACTIONS(2516), - [sym_crate] = ACTIONS(2516), - [sym_metavariable] = ACTIONS(2514), - [sym__raw_string_literal_start] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(2514), - }, - [688] = { + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2664), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_macro_rules_BANG] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_RBRACE] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_u8] = ACTIONS(2664), + [anon_sym_i8] = ACTIONS(2664), + [anon_sym_u16] = ACTIONS(2664), + [anon_sym_i16] = ACTIONS(2664), + [anon_sym_u32] = ACTIONS(2664), + [anon_sym_i32] = ACTIONS(2664), + [anon_sym_u64] = ACTIONS(2664), + [anon_sym_i64] = ACTIONS(2664), + [anon_sym_u128] = ACTIONS(2664), + [anon_sym_i128] = ACTIONS(2664), + [anon_sym_isize] = ACTIONS(2664), + [anon_sym_usize] = ACTIONS(2664), + [anon_sym_f32] = ACTIONS(2664), + [anon_sym_f64] = ACTIONS(2664), + [anon_sym_bool] = ACTIONS(2664), + [anon_sym_str] = ACTIONS(2664), + [anon_sym_char] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_DOT_DOT] = ACTIONS(2662), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(2662), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_async] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_continue] = ACTIONS(2664), + [anon_sym_default] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2664), + [anon_sym_gen] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_impl] = ACTIONS(2664), + [anon_sym_let] = ACTIONS(2664), + [anon_sym_loop] = ACTIONS(2664), + [anon_sym_match] = ACTIONS(2664), + [anon_sym_mod] = ACTIONS(2664), + [anon_sym_pub] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_trait] = ACTIONS(2664), + [anon_sym_type] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [anon_sym_unsafe] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2664), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2664), + [anon_sym_move] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2664), + [sym_integer_literal] = ACTIONS(2662), + [aux_sym_string_literal_token1] = ACTIONS(2662), + [sym_char_literal] = ACTIONS(2662), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2664), + [sym_super] = ACTIONS(2664), + [sym_crate] = ACTIONS(2664), + [sym_metavariable] = ACTIONS(2662), + [sym__raw_string_literal_start] = ACTIONS(2662), + [sym_float_literal] = ACTIONS(2662), + }, + [STATE(688)] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), - }, - [689] = { + [ts_builtin_sym_end] = ACTIONS(2666), + [sym_identifier] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_macro_rules_BANG] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_RBRACE] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2668), + [anon_sym_i8] = ACTIONS(2668), + [anon_sym_u16] = ACTIONS(2668), + [anon_sym_i16] = ACTIONS(2668), + [anon_sym_u32] = ACTIONS(2668), + [anon_sym_i32] = ACTIONS(2668), + [anon_sym_u64] = ACTIONS(2668), + [anon_sym_i64] = ACTIONS(2668), + [anon_sym_u128] = ACTIONS(2668), + [anon_sym_i128] = ACTIONS(2668), + [anon_sym_isize] = ACTIONS(2668), + [anon_sym_usize] = ACTIONS(2668), + [anon_sym_f32] = ACTIONS(2668), + [anon_sym_f64] = ACTIONS(2668), + [anon_sym_bool] = ACTIONS(2668), + [anon_sym_str] = ACTIONS(2668), + [anon_sym_char] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_COLON_COLON] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(2666), + [anon_sym_SQUOTE] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_default] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_gen] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_impl] = ACTIONS(2668), + [anon_sym_let] = ACTIONS(2668), + [anon_sym_loop] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_mod] = ACTIONS(2668), + [anon_sym_pub] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_trait] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_use] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_move] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [sym_integer_literal] = ACTIONS(2666), + [aux_sym_string_literal_token1] = ACTIONS(2666), + [sym_char_literal] = ACTIONS(2666), + [anon_sym_true] = ACTIONS(2668), + [anon_sym_false] = ACTIONS(2668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2668), + [sym_super] = ACTIONS(2668), + [sym_crate] = ACTIONS(2668), + [sym_metavariable] = ACTIONS(2666), + [sym__raw_string_literal_start] = ACTIONS(2666), + [sym_float_literal] = ACTIONS(2666), + }, + [STATE(689)] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_u8] = ACTIONS(2524), - [anon_sym_i8] = ACTIONS(2524), - [anon_sym_u16] = ACTIONS(2524), - [anon_sym_i16] = ACTIONS(2524), - [anon_sym_u32] = ACTIONS(2524), - [anon_sym_i32] = ACTIONS(2524), - [anon_sym_u64] = ACTIONS(2524), - [anon_sym_i64] = ACTIONS(2524), - [anon_sym_u128] = ACTIONS(2524), - [anon_sym_i128] = ACTIONS(2524), - [anon_sym_isize] = ACTIONS(2524), - [anon_sym_usize] = ACTIONS(2524), - [anon_sym_f32] = ACTIONS(2524), - [anon_sym_f64] = ACTIONS(2524), - [anon_sym_bool] = ACTIONS(2524), - [anon_sym_str] = ACTIONS(2524), - [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), - }, - [690] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_macro_rules_BANG] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u128] = ACTIONS(2672), + [anon_sym_i128] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_str] = ACTIONS(2672), + [anon_sym_char] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_DOT_DOT] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(2670), + [anon_sym_SQUOTE] = ACTIONS(2672), + [anon_sym_async] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_fn] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_gen] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_impl] = ACTIONS(2672), + [anon_sym_let] = ACTIONS(2672), + [anon_sym_loop] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_mod] = ACTIONS(2672), + [anon_sym_pub] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_trait] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_unsafe] = ACTIONS(2672), + [anon_sym_use] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_move] = ACTIONS(2672), + [anon_sym_try] = ACTIONS(2672), + [sym_integer_literal] = ACTIONS(2670), + [aux_sym_string_literal_token1] = ACTIONS(2670), + [sym_char_literal] = ACTIONS(2670), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2672), + [sym_super] = ACTIONS(2672), + [sym_crate] = ACTIONS(2672), + [sym_metavariable] = ACTIONS(2670), + [sym__raw_string_literal_start] = ACTIONS(2670), + [sym_float_literal] = ACTIONS(2670), + }, + [STATE(690)] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [aux_sym_declaration_list_repeat1] = STATE(698), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), - }, - [691] = { + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_macro_rules_BANG] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_u8] = ACTIONS(2676), + [anon_sym_i8] = ACTIONS(2676), + [anon_sym_u16] = ACTIONS(2676), + [anon_sym_i16] = ACTIONS(2676), + [anon_sym_u32] = ACTIONS(2676), + [anon_sym_i32] = ACTIONS(2676), + [anon_sym_u64] = ACTIONS(2676), + [anon_sym_i64] = ACTIONS(2676), + [anon_sym_u128] = ACTIONS(2676), + [anon_sym_i128] = ACTIONS(2676), + [anon_sym_isize] = ACTIONS(2676), + [anon_sym_usize] = ACTIONS(2676), + [anon_sym_f32] = ACTIONS(2676), + [anon_sym_f64] = ACTIONS(2676), + [anon_sym_bool] = ACTIONS(2676), + [anon_sym_str] = ACTIONS(2676), + [anon_sym_char] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [anon_sym_COLON_COLON] = ACTIONS(2674), + [anon_sym_POUND] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_async] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_gen] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_impl] = ACTIONS(2676), + [anon_sym_let] = ACTIONS(2676), + [anon_sym_loop] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_mod] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_trait] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_use] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_yield] = ACTIONS(2676), + [anon_sym_move] = ACTIONS(2676), + [anon_sym_try] = ACTIONS(2676), + [sym_integer_literal] = ACTIONS(2674), + [aux_sym_string_literal_token1] = ACTIONS(2674), + [sym_char_literal] = ACTIONS(2674), + [anon_sym_true] = ACTIONS(2676), + [anon_sym_false] = ACTIONS(2676), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2676), + [sym_super] = ACTIONS(2676), + [sym_crate] = ACTIONS(2676), + [sym_metavariable] = ACTIONS(2674), + [sym__raw_string_literal_start] = ACTIONS(2674), + [sym_float_literal] = ACTIONS(2674), + }, + [STATE(691)] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_macro_rules_BANG] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_u8] = ACTIONS(2530), - [anon_sym_i8] = ACTIONS(2530), - [anon_sym_u16] = ACTIONS(2530), - [anon_sym_i16] = ACTIONS(2530), - [anon_sym_u32] = ACTIONS(2530), - [anon_sym_i32] = ACTIONS(2530), - [anon_sym_u64] = ACTIONS(2530), - [anon_sym_i64] = ACTIONS(2530), - [anon_sym_u128] = ACTIONS(2530), - [anon_sym_i128] = ACTIONS(2530), - [anon_sym_isize] = ACTIONS(2530), - [anon_sym_usize] = ACTIONS(2530), - [anon_sym_f32] = ACTIONS(2530), - [anon_sym_f64] = ACTIONS(2530), - [anon_sym_bool] = ACTIONS(2530), - [anon_sym_str] = ACTIONS(2530), - [anon_sym_char] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_DOT_DOT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_POUND] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_impl] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_loop] = ACTIONS(2530), - [anon_sym_match] = ACTIONS(2530), - [anon_sym_mod] = ACTIONS(2530), - [anon_sym_pub] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2530), - [anon_sym_trait] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_union] = ACTIONS(2530), - [anon_sym_unsafe] = ACTIONS(2530), - [anon_sym_use] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_extern] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_move] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [sym_integer_literal] = ACTIONS(2528), - [aux_sym_string_literal_token1] = ACTIONS(2528), - [sym_char_literal] = ACTIONS(2528), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_crate] = ACTIONS(2530), - [sym_metavariable] = ACTIONS(2528), - [sym__raw_string_literal_start] = ACTIONS(2528), - [sym_float_literal] = ACTIONS(2528), - }, - [692] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_macro_rules_BANG] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_u8] = ACTIONS(2680), + [anon_sym_i8] = ACTIONS(2680), + [anon_sym_u16] = ACTIONS(2680), + [anon_sym_i16] = ACTIONS(2680), + [anon_sym_u32] = ACTIONS(2680), + [anon_sym_i32] = ACTIONS(2680), + [anon_sym_u64] = ACTIONS(2680), + [anon_sym_i64] = ACTIONS(2680), + [anon_sym_u128] = ACTIONS(2680), + [anon_sym_i128] = ACTIONS(2680), + [anon_sym_isize] = ACTIONS(2680), + [anon_sym_usize] = ACTIONS(2680), + [anon_sym_f32] = ACTIONS(2680), + [anon_sym_f64] = ACTIONS(2680), + [anon_sym_bool] = ACTIONS(2680), + [anon_sym_str] = ACTIONS(2680), + [anon_sym_char] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_DOT_DOT] = ACTIONS(2678), + [anon_sym_COLON_COLON] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_gen] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_impl] = ACTIONS(2680), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_loop] = ACTIONS(2680), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_mod] = ACTIONS(2680), + [anon_sym_pub] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_trait] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_use] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_move] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2678), + [aux_sym_string_literal_token1] = ACTIONS(2678), + [sym_char_literal] = ACTIONS(2678), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2680), + [sym_super] = ACTIONS(2680), + [sym_crate] = ACTIONS(2680), + [sym_metavariable] = ACTIONS(2678), + [sym__raw_string_literal_start] = ACTIONS(2678), + [sym_float_literal] = ACTIONS(2678), + }, + [STATE(692)] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_u8] = ACTIONS(2543), - [anon_sym_i8] = ACTIONS(2543), - [anon_sym_u16] = ACTIONS(2543), - [anon_sym_i16] = ACTIONS(2543), - [anon_sym_u32] = ACTIONS(2543), - [anon_sym_i32] = ACTIONS(2543), - [anon_sym_u64] = ACTIONS(2543), - [anon_sym_i64] = ACTIONS(2543), - [anon_sym_u128] = ACTIONS(2543), - [anon_sym_i128] = ACTIONS(2543), - [anon_sym_isize] = ACTIONS(2543), - [anon_sym_usize] = ACTIONS(2543), - [anon_sym_f32] = ACTIONS(2543), - [anon_sym_f64] = ACTIONS(2543), - [anon_sym_bool] = ACTIONS(2543), - [anon_sym_str] = ACTIONS(2543), - [anon_sym_char] = ACTIONS(2543), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_async] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2567), - [anon_sym_impl] = ACTIONS(2570), - [anon_sym_let] = ACTIONS(2573), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_unsafe] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_crate] = ACTIONS(2609), - [sym_metavariable] = ACTIONS(2612), - }, - [693] = { + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym_macro_rules_BANG] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_u8] = ACTIONS(2684), + [anon_sym_i8] = ACTIONS(2684), + [anon_sym_u16] = ACTIONS(2684), + [anon_sym_i16] = ACTIONS(2684), + [anon_sym_u32] = ACTIONS(2684), + [anon_sym_i32] = ACTIONS(2684), + [anon_sym_u64] = ACTIONS(2684), + [anon_sym_i64] = ACTIONS(2684), + [anon_sym_u128] = ACTIONS(2684), + [anon_sym_i128] = ACTIONS(2684), + [anon_sym_isize] = ACTIONS(2684), + [anon_sym_usize] = ACTIONS(2684), + [anon_sym_f32] = ACTIONS(2684), + [anon_sym_f64] = ACTIONS(2684), + [anon_sym_bool] = ACTIONS(2684), + [anon_sym_str] = ACTIONS(2684), + [anon_sym_char] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2682), + [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_async] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_gen] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_impl] = ACTIONS(2684), + [anon_sym_let] = ACTIONS(2684), + [anon_sym_loop] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_mod] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_trait] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_use] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym_yield] = ACTIONS(2684), + [anon_sym_move] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [sym_integer_literal] = ACTIONS(2682), + [aux_sym_string_literal_token1] = ACTIONS(2682), + [sym_char_literal] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2684), + [sym_super] = ACTIONS(2684), + [sym_crate] = ACTIONS(2684), + [sym_metavariable] = ACTIONS(2682), + [sym__raw_string_literal_start] = ACTIONS(2682), + [sym_float_literal] = ACTIONS(2682), + }, + [STATE(693)] = { [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_macro_rules_BANG] = ACTIONS(2615), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_u8] = ACTIONS(2617), - [anon_sym_i8] = ACTIONS(2617), - [anon_sym_u16] = ACTIONS(2617), - [anon_sym_i16] = ACTIONS(2617), - [anon_sym_u32] = ACTIONS(2617), - [anon_sym_i32] = ACTIONS(2617), - [anon_sym_u64] = ACTIONS(2617), - [anon_sym_i64] = ACTIONS(2617), - [anon_sym_u128] = ACTIONS(2617), - [anon_sym_i128] = ACTIONS(2617), - [anon_sym_isize] = ACTIONS(2617), - [anon_sym_usize] = ACTIONS(2617), - [anon_sym_f32] = ACTIONS(2617), - [anon_sym_f64] = ACTIONS(2617), - [anon_sym_bool] = ACTIONS(2617), - [anon_sym_str] = ACTIONS(2617), - [anon_sym_char] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_POUND] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_async] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_impl] = ACTIONS(2617), - [anon_sym_let] = ACTIONS(2617), - [anon_sym_loop] = ACTIONS(2617), - [anon_sym_match] = ACTIONS(2617), - [anon_sym_mod] = ACTIONS(2617), - [anon_sym_pub] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_struct] = ACTIONS(2617), - [anon_sym_trait] = ACTIONS(2617), - [anon_sym_type] = ACTIONS(2617), - [anon_sym_union] = ACTIONS(2617), - [anon_sym_unsafe] = ACTIONS(2617), - [anon_sym_use] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_extern] = ACTIONS(2617), - [anon_sym_yield] = ACTIONS(2617), - [anon_sym_move] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [sym_integer_literal] = ACTIONS(2615), - [aux_sym_string_literal_token1] = ACTIONS(2615), - [sym_char_literal] = ACTIONS(2615), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2617), - [sym_super] = ACTIONS(2617), - [sym_crate] = ACTIONS(2617), - [sym_metavariable] = ACTIONS(2615), - [sym__raw_string_literal_start] = ACTIONS(2615), - [sym_float_literal] = ACTIONS(2615), - }, - [694] = { + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_macro_rules_BANG] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_u8] = ACTIONS(2688), + [anon_sym_i8] = ACTIONS(2688), + [anon_sym_u16] = ACTIONS(2688), + [anon_sym_i16] = ACTIONS(2688), + [anon_sym_u32] = ACTIONS(2688), + [anon_sym_i32] = ACTIONS(2688), + [anon_sym_u64] = ACTIONS(2688), + [anon_sym_i64] = ACTIONS(2688), + [anon_sym_u128] = ACTIONS(2688), + [anon_sym_i128] = ACTIONS(2688), + [anon_sym_isize] = ACTIONS(2688), + [anon_sym_usize] = ACTIONS(2688), + [anon_sym_f32] = ACTIONS(2688), + [anon_sym_f64] = ACTIONS(2688), + [anon_sym_bool] = ACTIONS(2688), + [anon_sym_str] = ACTIONS(2688), + [anon_sym_char] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_DOT_DOT] = ACTIONS(2686), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_gen] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_impl] = ACTIONS(2688), + [anon_sym_let] = ACTIONS(2688), + [anon_sym_loop] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_mod] = ACTIONS(2688), + [anon_sym_pub] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_trait] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_use] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_move] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [sym_integer_literal] = ACTIONS(2686), + [aux_sym_string_literal_token1] = ACTIONS(2686), + [sym_char_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2688), + [anon_sym_false] = ACTIONS(2688), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2688), + [sym_super] = ACTIONS(2688), + [sym_crate] = ACTIONS(2688), + [sym_metavariable] = ACTIONS(2686), + [sym__raw_string_literal_start] = ACTIONS(2686), + [sym_float_literal] = ACTIONS(2686), + }, + [STATE(694)] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(2619), - [sym_identifier] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_macro_rules_BANG] = ACTIONS(2619), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(2619), - [anon_sym_u8] = ACTIONS(2621), - [anon_sym_i8] = ACTIONS(2621), - [anon_sym_u16] = ACTIONS(2621), - [anon_sym_i16] = ACTIONS(2621), - [anon_sym_u32] = ACTIONS(2621), - [anon_sym_i32] = ACTIONS(2621), - [anon_sym_u64] = ACTIONS(2621), - [anon_sym_i64] = ACTIONS(2621), - [anon_sym_u128] = ACTIONS(2621), - [anon_sym_i128] = ACTIONS(2621), - [anon_sym_isize] = ACTIONS(2621), - [anon_sym_usize] = ACTIONS(2621), - [anon_sym_f32] = ACTIONS(2621), - [anon_sym_f64] = ACTIONS(2621), - [anon_sym_bool] = ACTIONS(2621), - [anon_sym_str] = ACTIONS(2621), - [anon_sym_char] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_AMP] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2619), - [anon_sym_LT] = ACTIONS(2619), - [anon_sym_DOT_DOT] = ACTIONS(2619), - [anon_sym_COLON_COLON] = ACTIONS(2619), - [anon_sym_POUND] = ACTIONS(2619), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_async] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_impl] = ACTIONS(2621), - [anon_sym_let] = ACTIONS(2621), - [anon_sym_loop] = ACTIONS(2621), - [anon_sym_match] = ACTIONS(2621), - [anon_sym_mod] = ACTIONS(2621), - [anon_sym_pub] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_trait] = ACTIONS(2621), - [anon_sym_type] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_unsafe] = ACTIONS(2621), - [anon_sym_use] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym_yield] = ACTIONS(2621), - [anon_sym_move] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [sym_integer_literal] = ACTIONS(2619), - [aux_sym_string_literal_token1] = ACTIONS(2619), - [sym_char_literal] = ACTIONS(2619), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2621), - [sym_super] = ACTIONS(2621), - [sym_crate] = ACTIONS(2621), - [sym_metavariable] = ACTIONS(2619), - [sym__raw_string_literal_start] = ACTIONS(2619), - [sym_float_literal] = ACTIONS(2619), - }, - [695] = { + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_macro_rules_BANG] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u128] = ACTIONS(2692), + [anon_sym_i128] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_str] = ACTIONS(2692), + [anon_sym_char] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2690), + [anon_sym_DOT_DOT] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_POUND] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2692), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_gen] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_impl] = ACTIONS(2692), + [anon_sym_let] = ACTIONS(2692), + [anon_sym_loop] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_mod] = ACTIONS(2692), + [anon_sym_pub] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_trait] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_use] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_move] = ACTIONS(2692), + [anon_sym_try] = ACTIONS(2692), + [sym_integer_literal] = ACTIONS(2690), + [aux_sym_string_literal_token1] = ACTIONS(2690), + [sym_char_literal] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2692), + [sym_super] = ACTIONS(2692), + [sym_crate] = ACTIONS(2692), + [sym_metavariable] = ACTIONS(2690), + [sym__raw_string_literal_start] = ACTIONS(2690), + [sym_float_literal] = ACTIONS(2690), + }, + [STATE(695)] = { [sym_line_comment] = STATE(695), [sym_block_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(2623), - [sym_identifier] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_macro_rules_BANG] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_u8] = ACTIONS(2625), - [anon_sym_i8] = ACTIONS(2625), - [anon_sym_u16] = ACTIONS(2625), - [anon_sym_i16] = ACTIONS(2625), - [anon_sym_u32] = ACTIONS(2625), - [anon_sym_i32] = ACTIONS(2625), - [anon_sym_u64] = ACTIONS(2625), - [anon_sym_i64] = ACTIONS(2625), - [anon_sym_u128] = ACTIONS(2625), - [anon_sym_i128] = ACTIONS(2625), - [anon_sym_isize] = ACTIONS(2625), - [anon_sym_usize] = ACTIONS(2625), - [anon_sym_f32] = ACTIONS(2625), - [anon_sym_f64] = ACTIONS(2625), - [anon_sym_bool] = ACTIONS(2625), - [anon_sym_str] = ACTIONS(2625), - [anon_sym_char] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2623), - [anon_sym_LT] = ACTIONS(2623), - [anon_sym_DOT_DOT] = ACTIONS(2623), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_POUND] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_async] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_impl] = ACTIONS(2625), - [anon_sym_let] = ACTIONS(2625), - [anon_sym_loop] = ACTIONS(2625), - [anon_sym_match] = ACTIONS(2625), - [anon_sym_mod] = ACTIONS(2625), - [anon_sym_pub] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_trait] = ACTIONS(2625), - [anon_sym_type] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_unsafe] = ACTIONS(2625), - [anon_sym_use] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym_yield] = ACTIONS(2625), - [anon_sym_move] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [sym_integer_literal] = ACTIONS(2623), - [aux_sym_string_literal_token1] = ACTIONS(2623), - [sym_char_literal] = ACTIONS(2623), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2625), - [sym_super] = ACTIONS(2625), - [sym_crate] = ACTIONS(2625), - [sym_metavariable] = ACTIONS(2623), - [sym__raw_string_literal_start] = ACTIONS(2623), - [sym_float_literal] = ACTIONS(2623), - }, - [696] = { + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_macro_rules_BANG] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u128] = ACTIONS(2696), + [anon_sym_i128] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_str] = ACTIONS(2696), + [anon_sym_char] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_DOT_DOT] = ACTIONS(2694), + [anon_sym_COLON_COLON] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2696), + [anon_sym_async] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_fn] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_gen] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_impl] = ACTIONS(2696), + [anon_sym_let] = ACTIONS(2696), + [anon_sym_loop] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_mod] = ACTIONS(2696), + [anon_sym_pub] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_trait] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_unsafe] = ACTIONS(2696), + [anon_sym_use] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_move] = ACTIONS(2696), + [anon_sym_try] = ACTIONS(2696), + [sym_integer_literal] = ACTIONS(2694), + [aux_sym_string_literal_token1] = ACTIONS(2694), + [sym_char_literal] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2696), + [sym_super] = ACTIONS(2696), + [sym_crate] = ACTIONS(2696), + [sym_metavariable] = ACTIONS(2694), + [sym__raw_string_literal_start] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + }, + [STATE(696)] = { [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(2627), - [sym_identifier] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_macro_rules_BANG] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_u8] = ACTIONS(2629), - [anon_sym_i8] = ACTIONS(2629), - [anon_sym_u16] = ACTIONS(2629), - [anon_sym_i16] = ACTIONS(2629), - [anon_sym_u32] = ACTIONS(2629), - [anon_sym_i32] = ACTIONS(2629), - [anon_sym_u64] = ACTIONS(2629), - [anon_sym_i64] = ACTIONS(2629), - [anon_sym_u128] = ACTIONS(2629), - [anon_sym_i128] = ACTIONS(2629), - [anon_sym_isize] = ACTIONS(2629), - [anon_sym_usize] = ACTIONS(2629), - [anon_sym_f32] = ACTIONS(2629), - [anon_sym_f64] = ACTIONS(2629), - [anon_sym_bool] = ACTIONS(2629), - [anon_sym_str] = ACTIONS(2629), - [anon_sym_char] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_LT] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_POUND] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_async] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_impl] = ACTIONS(2629), - [anon_sym_let] = ACTIONS(2629), - [anon_sym_loop] = ACTIONS(2629), - [anon_sym_match] = ACTIONS(2629), - [anon_sym_mod] = ACTIONS(2629), - [anon_sym_pub] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_trait] = ACTIONS(2629), - [anon_sym_type] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_unsafe] = ACTIONS(2629), - [anon_sym_use] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym_yield] = ACTIONS(2629), - [anon_sym_move] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [sym_integer_literal] = ACTIONS(2627), - [aux_sym_string_literal_token1] = ACTIONS(2627), - [sym_char_literal] = ACTIONS(2627), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2629), - [sym_super] = ACTIONS(2629), - [sym_crate] = ACTIONS(2629), - [sym_metavariable] = ACTIONS(2627), - [sym__raw_string_literal_start] = ACTIONS(2627), - [sym_float_literal] = ACTIONS(2627), - }, - [697] = { + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_macro_rules_BANG] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_u8] = ACTIONS(2700), + [anon_sym_i8] = ACTIONS(2700), + [anon_sym_u16] = ACTIONS(2700), + [anon_sym_i16] = ACTIONS(2700), + [anon_sym_u32] = ACTIONS(2700), + [anon_sym_i32] = ACTIONS(2700), + [anon_sym_u64] = ACTIONS(2700), + [anon_sym_i64] = ACTIONS(2700), + [anon_sym_u128] = ACTIONS(2700), + [anon_sym_i128] = ACTIONS(2700), + [anon_sym_isize] = ACTIONS(2700), + [anon_sym_usize] = ACTIONS(2700), + [anon_sym_f32] = ACTIONS(2700), + [anon_sym_f64] = ACTIONS(2700), + [anon_sym_bool] = ACTIONS(2700), + [anon_sym_str] = ACTIONS(2700), + [anon_sym_char] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2698), + [anon_sym_COLON_COLON] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_gen] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_impl] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_loop] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_mod] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_trait] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_use] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_move] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [sym_integer_literal] = ACTIONS(2698), + [aux_sym_string_literal_token1] = ACTIONS(2698), + [sym_char_literal] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_crate] = ACTIONS(2700), + [sym_metavariable] = ACTIONS(2698), + [sym__raw_string_literal_start] = ACTIONS(2698), + [sym_float_literal] = ACTIONS(2698), + }, + [STATE(697)] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(2631), - [sym_identifier] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_macro_rules_BANG] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_u8] = ACTIONS(2633), - [anon_sym_i8] = ACTIONS(2633), - [anon_sym_u16] = ACTIONS(2633), - [anon_sym_i16] = ACTIONS(2633), - [anon_sym_u32] = ACTIONS(2633), - [anon_sym_i32] = ACTIONS(2633), - [anon_sym_u64] = ACTIONS(2633), - [anon_sym_i64] = ACTIONS(2633), - [anon_sym_u128] = ACTIONS(2633), - [anon_sym_i128] = ACTIONS(2633), - [anon_sym_isize] = ACTIONS(2633), - [anon_sym_usize] = ACTIONS(2633), - [anon_sym_f32] = ACTIONS(2633), - [anon_sym_f64] = ACTIONS(2633), - [anon_sym_bool] = ACTIONS(2633), - [anon_sym_str] = ACTIONS(2633), - [anon_sym_char] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_LT] = ACTIONS(2631), - [anon_sym_DOT_DOT] = ACTIONS(2631), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_POUND] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_async] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_impl] = ACTIONS(2633), - [anon_sym_let] = ACTIONS(2633), - [anon_sym_loop] = ACTIONS(2633), - [anon_sym_match] = ACTIONS(2633), - [anon_sym_mod] = ACTIONS(2633), - [anon_sym_pub] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_trait] = ACTIONS(2633), - [anon_sym_type] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_unsafe] = ACTIONS(2633), - [anon_sym_use] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym_yield] = ACTIONS(2633), - [anon_sym_move] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [sym_integer_literal] = ACTIONS(2631), - [aux_sym_string_literal_token1] = ACTIONS(2631), - [sym_char_literal] = ACTIONS(2631), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2633), - [sym_super] = ACTIONS(2633), - [sym_crate] = ACTIONS(2633), - [sym_metavariable] = ACTIONS(2631), - [sym__raw_string_literal_start] = ACTIONS(2631), - [sym_float_literal] = ACTIONS(2631), - }, - [698] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_macro_rules_BANG] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u128] = ACTIONS(2704), + [anon_sym_i128] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_str] = ACTIONS(2704), + [anon_sym_char] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2702), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_COLON_COLON] = ACTIONS(2702), + [anon_sym_POUND] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2704), + [anon_sym_async] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_gen] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_impl] = ACTIONS(2704), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_loop] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_mod] = ACTIONS(2704), + [anon_sym_pub] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_trait] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_use] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_move] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [sym_integer_literal] = ACTIONS(2702), + [aux_sym_string_literal_token1] = ACTIONS(2702), + [sym_char_literal] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2704), + [sym_super] = ACTIONS(2704), + [sym_crate] = ACTIONS(2704), + [sym_metavariable] = ACTIONS(2702), + [sym__raw_string_literal_start] = ACTIONS(2702), + [sym_float_literal] = ACTIONS(2702), + }, + [STATE(698)] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), - }, - [699] = { + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_macro_rules_BANG] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u128] = ACTIONS(2708), + [anon_sym_i128] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_str] = ACTIONS(2708), + [anon_sym_char] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_DOT_DOT] = ACTIONS(2706), + [anon_sym_COLON_COLON] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2708), + [anon_sym_async] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_fn] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_gen] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_impl] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_loop] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_mod] = ACTIONS(2708), + [anon_sym_pub] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_trait] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_unsafe] = ACTIONS(2708), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_move] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [sym_integer_literal] = ACTIONS(2706), + [aux_sym_string_literal_token1] = ACTIONS(2706), + [sym_char_literal] = ACTIONS(2706), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2708), + [sym_super] = ACTIONS(2708), + [sym_crate] = ACTIONS(2708), + [sym_metavariable] = ACTIONS(2706), + [sym__raw_string_literal_start] = ACTIONS(2706), + [sym_float_literal] = ACTIONS(2706), + }, + [STATE(699)] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2637), - [sym_identifier] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_macro_rules_BANG] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_u8] = ACTIONS(2639), - [anon_sym_i8] = ACTIONS(2639), - [anon_sym_u16] = ACTIONS(2639), - [anon_sym_i16] = ACTIONS(2639), - [anon_sym_u32] = ACTIONS(2639), - [anon_sym_i32] = ACTIONS(2639), - [anon_sym_u64] = ACTIONS(2639), - [anon_sym_i64] = ACTIONS(2639), - [anon_sym_u128] = ACTIONS(2639), - [anon_sym_i128] = ACTIONS(2639), - [anon_sym_isize] = ACTIONS(2639), - [anon_sym_usize] = ACTIONS(2639), - [anon_sym_f32] = ACTIONS(2639), - [anon_sym_f64] = ACTIONS(2639), - [anon_sym_bool] = ACTIONS(2639), - [anon_sym_str] = ACTIONS(2639), - [anon_sym_char] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_async] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_fn] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_impl] = ACTIONS(2639), - [anon_sym_let] = ACTIONS(2639), - [anon_sym_loop] = ACTIONS(2639), - [anon_sym_match] = ACTIONS(2639), - [anon_sym_mod] = ACTIONS(2639), - [anon_sym_pub] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_trait] = ACTIONS(2639), - [anon_sym_type] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_unsafe] = ACTIONS(2639), - [anon_sym_use] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym_yield] = ACTIONS(2639), - [anon_sym_move] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2637), - [aux_sym_string_literal_token1] = ACTIONS(2637), - [sym_char_literal] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2639), - [anon_sym_false] = ACTIONS(2639), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2639), - [sym_super] = ACTIONS(2639), - [sym_crate] = ACTIONS(2639), - [sym_metavariable] = ACTIONS(2637), - [sym__raw_string_literal_start] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - }, - [700] = { + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_macro_rules_BANG] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u128] = ACTIONS(2712), + [anon_sym_i128] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_str] = ACTIONS(2712), + [anon_sym_char] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_fn] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_gen] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_impl] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_loop] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_mod] = ACTIONS(2712), + [anon_sym_pub] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_trait] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(2712), + [anon_sym_use] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_move] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [sym_integer_literal] = ACTIONS(2710), + [aux_sym_string_literal_token1] = ACTIONS(2710), + [sym_char_literal] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2712), + [sym_super] = ACTIONS(2712), + [sym_crate] = ACTIONS(2712), + [sym_metavariable] = ACTIONS(2710), + [sym__raw_string_literal_start] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), + }, + [STATE(700)] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_macro_rules_BANG] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_u8] = ACTIONS(2643), - [anon_sym_i8] = ACTIONS(2643), - [anon_sym_u16] = ACTIONS(2643), - [anon_sym_i16] = ACTIONS(2643), - [anon_sym_u32] = ACTIONS(2643), - [anon_sym_i32] = ACTIONS(2643), - [anon_sym_u64] = ACTIONS(2643), - [anon_sym_i64] = ACTIONS(2643), - [anon_sym_u128] = ACTIONS(2643), - [anon_sym_i128] = ACTIONS(2643), - [anon_sym_isize] = ACTIONS(2643), - [anon_sym_usize] = ACTIONS(2643), - [anon_sym_f32] = ACTIONS(2643), - [anon_sym_f64] = ACTIONS(2643), - [anon_sym_bool] = ACTIONS(2643), - [anon_sym_str] = ACTIONS(2643), - [anon_sym_char] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_async] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_impl] = ACTIONS(2643), - [anon_sym_let] = ACTIONS(2643), - [anon_sym_loop] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_mod] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_trait] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_use] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym_yield] = ACTIONS(2643), - [anon_sym_move] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [sym_integer_literal] = ACTIONS(2641), - [aux_sym_string_literal_token1] = ACTIONS(2641), - [sym_char_literal] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2643), - [sym_super] = ACTIONS(2643), - [sym_crate] = ACTIONS(2643), - [sym_metavariable] = ACTIONS(2641), - [sym__raw_string_literal_start] = ACTIONS(2641), - [sym_float_literal] = ACTIONS(2641), - }, - [701] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_macro_rules_BANG] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u128] = ACTIONS(2716), + [anon_sym_i128] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_str] = ACTIONS(2716), + [anon_sym_char] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_DOT_DOT] = ACTIONS(2714), + [anon_sym_COLON_COLON] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_async] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_fn] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_gen] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_impl] = ACTIONS(2716), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_loop] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_mod] = ACTIONS(2716), + [anon_sym_pub] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_trait] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_use] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_move] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [sym_integer_literal] = ACTIONS(2714), + [aux_sym_string_literal_token1] = ACTIONS(2714), + [sym_char_literal] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2716), + [sym_super] = ACTIONS(2716), + [sym_crate] = ACTIONS(2716), + [sym_metavariable] = ACTIONS(2714), + [sym__raw_string_literal_start] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), + }, + [STATE(701)] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_macro_rules_BANG] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_u8] = ACTIONS(2647), - [anon_sym_i8] = ACTIONS(2647), - [anon_sym_u16] = ACTIONS(2647), - [anon_sym_i16] = ACTIONS(2647), - [anon_sym_u32] = ACTIONS(2647), - [anon_sym_i32] = ACTIONS(2647), - [anon_sym_u64] = ACTIONS(2647), - [anon_sym_i64] = ACTIONS(2647), - [anon_sym_u128] = ACTIONS(2647), - [anon_sym_i128] = ACTIONS(2647), - [anon_sym_isize] = ACTIONS(2647), - [anon_sym_usize] = ACTIONS(2647), - [anon_sym_f32] = ACTIONS(2647), - [anon_sym_f64] = ACTIONS(2647), - [anon_sym_bool] = ACTIONS(2647), - [anon_sym_str] = ACTIONS(2647), - [anon_sym_char] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_DOT_DOT] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_POUND] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_async] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_impl] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_loop] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_mod] = ACTIONS(2647), - [anon_sym_pub] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_trait] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_move] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [sym_integer_literal] = ACTIONS(2645), - [aux_sym_string_literal_token1] = ACTIONS(2645), - [sym_char_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2647), - [anon_sym_false] = ACTIONS(2647), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2647), - [sym_super] = ACTIONS(2647), - [sym_crate] = ACTIONS(2647), - [sym_metavariable] = ACTIONS(2645), - [sym__raw_string_literal_start] = ACTIONS(2645), - [sym_float_literal] = ACTIONS(2645), - }, - [702] = { + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_macro_rules_BANG] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_u8] = ACTIONS(2720), + [anon_sym_i8] = ACTIONS(2720), + [anon_sym_u16] = ACTIONS(2720), + [anon_sym_i16] = ACTIONS(2720), + [anon_sym_u32] = ACTIONS(2720), + [anon_sym_i32] = ACTIONS(2720), + [anon_sym_u64] = ACTIONS(2720), + [anon_sym_i64] = ACTIONS(2720), + [anon_sym_u128] = ACTIONS(2720), + [anon_sym_i128] = ACTIONS(2720), + [anon_sym_isize] = ACTIONS(2720), + [anon_sym_usize] = ACTIONS(2720), + [anon_sym_f32] = ACTIONS(2720), + [anon_sym_f64] = ACTIONS(2720), + [anon_sym_bool] = ACTIONS(2720), + [anon_sym_str] = ACTIONS(2720), + [anon_sym_char] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(2718), + [anon_sym_COLON_COLON] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_async] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_fn] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_gen] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_impl] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_loop] = ACTIONS(2720), + [anon_sym_match] = ACTIONS(2720), + [anon_sym_mod] = ACTIONS(2720), + [anon_sym_pub] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_trait] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_unsafe] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2720), + [anon_sym_move] = ACTIONS(2720), + [anon_sym_try] = ACTIONS(2720), + [sym_integer_literal] = ACTIONS(2718), + [aux_sym_string_literal_token1] = ACTIONS(2718), + [sym_char_literal] = ACTIONS(2718), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2720), + [sym_super] = ACTIONS(2720), + [sym_crate] = ACTIONS(2720), + [sym_metavariable] = ACTIONS(2718), + [sym__raw_string_literal_start] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2718), + }, + [STATE(702)] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_macro_rules_BANG] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_u8] = ACTIONS(2651), - [anon_sym_i8] = ACTIONS(2651), - [anon_sym_u16] = ACTIONS(2651), - [anon_sym_i16] = ACTIONS(2651), - [anon_sym_u32] = ACTIONS(2651), - [anon_sym_i32] = ACTIONS(2651), - [anon_sym_u64] = ACTIONS(2651), - [anon_sym_i64] = ACTIONS(2651), - [anon_sym_u128] = ACTIONS(2651), - [anon_sym_i128] = ACTIONS(2651), - [anon_sym_isize] = ACTIONS(2651), - [anon_sym_usize] = ACTIONS(2651), - [anon_sym_f32] = ACTIONS(2651), - [anon_sym_f64] = ACTIONS(2651), - [anon_sym_bool] = ACTIONS(2651), - [anon_sym_str] = ACTIONS(2651), - [anon_sym_char] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_async] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_impl] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_loop] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_mod] = ACTIONS(2651), - [anon_sym_pub] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_trait] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_move] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [sym_integer_literal] = ACTIONS(2649), - [aux_sym_string_literal_token1] = ACTIONS(2649), - [sym_char_literal] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2651), - [anon_sym_false] = ACTIONS(2651), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2651), - [sym_super] = ACTIONS(2651), - [sym_crate] = ACTIONS(2651), - [sym_metavariable] = ACTIONS(2649), - [sym__raw_string_literal_start] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - }, - [703] = { + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_macro_rules_BANG] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_u8] = ACTIONS(2724), + [anon_sym_i8] = ACTIONS(2724), + [anon_sym_u16] = ACTIONS(2724), + [anon_sym_i16] = ACTIONS(2724), + [anon_sym_u32] = ACTIONS(2724), + [anon_sym_i32] = ACTIONS(2724), + [anon_sym_u64] = ACTIONS(2724), + [anon_sym_i64] = ACTIONS(2724), + [anon_sym_u128] = ACTIONS(2724), + [anon_sym_i128] = ACTIONS(2724), + [anon_sym_isize] = ACTIONS(2724), + [anon_sym_usize] = ACTIONS(2724), + [anon_sym_f32] = ACTIONS(2724), + [anon_sym_f64] = ACTIONS(2724), + [anon_sym_bool] = ACTIONS(2724), + [anon_sym_str] = ACTIONS(2724), + [anon_sym_char] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2722), + [anon_sym_DOT_DOT] = ACTIONS(2722), + [anon_sym_COLON_COLON] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2724), + [anon_sym_async] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_gen] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_impl] = ACTIONS(2724), + [anon_sym_let] = ACTIONS(2724), + [anon_sym_loop] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_mod] = ACTIONS(2724), + [anon_sym_pub] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_trait] = ACTIONS(2724), + [anon_sym_type] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_use] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_yield] = ACTIONS(2724), + [anon_sym_move] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2724), + [sym_integer_literal] = ACTIONS(2722), + [aux_sym_string_literal_token1] = ACTIONS(2722), + [sym_char_literal] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2724), + [sym_super] = ACTIONS(2724), + [sym_crate] = ACTIONS(2724), + [sym_metavariable] = ACTIONS(2722), + [sym__raw_string_literal_start] = ACTIONS(2722), + [sym_float_literal] = ACTIONS(2722), + }, + [STATE(703)] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_macro_rules_BANG] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_u8] = ACTIONS(2655), - [anon_sym_i8] = ACTIONS(2655), - [anon_sym_u16] = ACTIONS(2655), - [anon_sym_i16] = ACTIONS(2655), - [anon_sym_u32] = ACTIONS(2655), - [anon_sym_i32] = ACTIONS(2655), - [anon_sym_u64] = ACTIONS(2655), - [anon_sym_i64] = ACTIONS(2655), - [anon_sym_u128] = ACTIONS(2655), - [anon_sym_i128] = ACTIONS(2655), - [anon_sym_isize] = ACTIONS(2655), - [anon_sym_usize] = ACTIONS(2655), - [anon_sym_f32] = ACTIONS(2655), - [anon_sym_f64] = ACTIONS(2655), - [anon_sym_bool] = ACTIONS(2655), - [anon_sym_str] = ACTIONS(2655), - [anon_sym_char] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_POUND] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_impl] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2655), - [anon_sym_loop] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_mod] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_trait] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_use] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym_yield] = ACTIONS(2655), - [anon_sym_move] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [aux_sym_string_literal_token1] = ACTIONS(2653), - [sym_char_literal] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2655), - [anon_sym_false] = ACTIONS(2655), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2655), - [sym_super] = ACTIONS(2655), - [sym_crate] = ACTIONS(2655), - [sym_metavariable] = ACTIONS(2653), - [sym__raw_string_literal_start] = ACTIONS(2653), - [sym_float_literal] = ACTIONS(2653), - }, - [704] = { + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_macro_rules_BANG] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2728), + [anon_sym_i8] = ACTIONS(2728), + [anon_sym_u16] = ACTIONS(2728), + [anon_sym_i16] = ACTIONS(2728), + [anon_sym_u32] = ACTIONS(2728), + [anon_sym_i32] = ACTIONS(2728), + [anon_sym_u64] = ACTIONS(2728), + [anon_sym_i64] = ACTIONS(2728), + [anon_sym_u128] = ACTIONS(2728), + [anon_sym_i128] = ACTIONS(2728), + [anon_sym_isize] = ACTIONS(2728), + [anon_sym_usize] = ACTIONS(2728), + [anon_sym_f32] = ACTIONS(2728), + [anon_sym_f64] = ACTIONS(2728), + [anon_sym_bool] = ACTIONS(2728), + [anon_sym_str] = ACTIONS(2728), + [anon_sym_char] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_COLON_COLON] = ACTIONS(2726), + [anon_sym_POUND] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_gen] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_impl] = ACTIONS(2728), + [anon_sym_let] = ACTIONS(2728), + [anon_sym_loop] = ACTIONS(2728), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_mod] = ACTIONS(2728), + [anon_sym_pub] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_trait] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_use] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym_yield] = ACTIONS(2728), + [anon_sym_move] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2728), + [sym_integer_literal] = ACTIONS(2726), + [aux_sym_string_literal_token1] = ACTIONS(2726), + [sym_char_literal] = ACTIONS(2726), + [anon_sym_true] = ACTIONS(2728), + [anon_sym_false] = ACTIONS(2728), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2728), + [sym_super] = ACTIONS(2728), + [sym_crate] = ACTIONS(2728), + [sym_metavariable] = ACTIONS(2726), + [sym__raw_string_literal_start] = ACTIONS(2726), + [sym_float_literal] = ACTIONS(2726), + }, + [STATE(704)] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_macro_rules_BANG] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_u8] = ACTIONS(2659), - [anon_sym_i8] = ACTIONS(2659), - [anon_sym_u16] = ACTIONS(2659), - [anon_sym_i16] = ACTIONS(2659), - [anon_sym_u32] = ACTIONS(2659), - [anon_sym_i32] = ACTIONS(2659), - [anon_sym_u64] = ACTIONS(2659), - [anon_sym_i64] = ACTIONS(2659), - [anon_sym_u128] = ACTIONS(2659), - [anon_sym_i128] = ACTIONS(2659), - [anon_sym_isize] = ACTIONS(2659), - [anon_sym_usize] = ACTIONS(2659), - [anon_sym_f32] = ACTIONS(2659), - [anon_sym_f64] = ACTIONS(2659), - [anon_sym_bool] = ACTIONS(2659), - [anon_sym_str] = ACTIONS(2659), - [anon_sym_char] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_POUND] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_async] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_impl] = ACTIONS(2659), - [anon_sym_let] = ACTIONS(2659), - [anon_sym_loop] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_mod] = ACTIONS(2659), - [anon_sym_pub] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_trait] = ACTIONS(2659), - [anon_sym_type] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_use] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym_yield] = ACTIONS(2659), - [anon_sym_move] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [aux_sym_string_literal_token1] = ACTIONS(2657), - [sym_char_literal] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2659), - [sym_super] = ACTIONS(2659), - [sym_crate] = ACTIONS(2659), - [sym_metavariable] = ACTIONS(2657), - [sym__raw_string_literal_start] = ACTIONS(2657), - [sym_float_literal] = ACTIONS(2657), - }, - [705] = { + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_macro_rules_BANG] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_u8] = ACTIONS(2732), + [anon_sym_i8] = ACTIONS(2732), + [anon_sym_u16] = ACTIONS(2732), + [anon_sym_i16] = ACTIONS(2732), + [anon_sym_u32] = ACTIONS(2732), + [anon_sym_i32] = ACTIONS(2732), + [anon_sym_u64] = ACTIONS(2732), + [anon_sym_i64] = ACTIONS(2732), + [anon_sym_u128] = ACTIONS(2732), + [anon_sym_i128] = ACTIONS(2732), + [anon_sym_isize] = ACTIONS(2732), + [anon_sym_usize] = ACTIONS(2732), + [anon_sym_f32] = ACTIONS(2732), + [anon_sym_f64] = ACTIONS(2732), + [anon_sym_bool] = ACTIONS(2732), + [anon_sym_str] = ACTIONS(2732), + [anon_sym_char] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_DOT_DOT] = ACTIONS(2730), + [anon_sym_COLON_COLON] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2732), + [anon_sym_async] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_fn] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_gen] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_impl] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_loop] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_mod] = ACTIONS(2732), + [anon_sym_pub] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_trait] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_unsafe] = ACTIONS(2732), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_move] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [sym_integer_literal] = ACTIONS(2730), + [aux_sym_string_literal_token1] = ACTIONS(2730), + [sym_char_literal] = ACTIONS(2730), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2732), + [sym_super] = ACTIONS(2732), + [sym_crate] = ACTIONS(2732), + [sym_metavariable] = ACTIONS(2730), + [sym__raw_string_literal_start] = ACTIONS(2730), + [sym_float_literal] = ACTIONS(2730), + }, + [STATE(705)] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_macro_rules_BANG] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_u8] = ACTIONS(2663), - [anon_sym_i8] = ACTIONS(2663), - [anon_sym_u16] = ACTIONS(2663), - [anon_sym_i16] = ACTIONS(2663), - [anon_sym_u32] = ACTIONS(2663), - [anon_sym_i32] = ACTIONS(2663), - [anon_sym_u64] = ACTIONS(2663), - [anon_sym_i64] = ACTIONS(2663), - [anon_sym_u128] = ACTIONS(2663), - [anon_sym_i128] = ACTIONS(2663), - [anon_sym_isize] = ACTIONS(2663), - [anon_sym_usize] = ACTIONS(2663), - [anon_sym_f32] = ACTIONS(2663), - [anon_sym_f64] = ACTIONS(2663), - [anon_sym_bool] = ACTIONS(2663), - [anon_sym_str] = ACTIONS(2663), - [anon_sym_char] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_POUND] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_async] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_impl] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_loop] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_mod] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_trait] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_use] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_yield] = ACTIONS(2663), - [anon_sym_move] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [sym_integer_literal] = ACTIONS(2661), - [aux_sym_string_literal_token1] = ACTIONS(2661), - [sym_char_literal] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2663), - [sym_super] = ACTIONS(2663), - [sym_crate] = ACTIONS(2663), - [sym_metavariable] = ACTIONS(2661), - [sym__raw_string_literal_start] = ACTIONS(2661), - [sym_float_literal] = ACTIONS(2661), - }, - [706] = { + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_macro_rules_BANG] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_u8] = ACTIONS(2736), + [anon_sym_i8] = ACTIONS(2736), + [anon_sym_u16] = ACTIONS(2736), + [anon_sym_i16] = ACTIONS(2736), + [anon_sym_u32] = ACTIONS(2736), + [anon_sym_i32] = ACTIONS(2736), + [anon_sym_u64] = ACTIONS(2736), + [anon_sym_i64] = ACTIONS(2736), + [anon_sym_u128] = ACTIONS(2736), + [anon_sym_i128] = ACTIONS(2736), + [anon_sym_isize] = ACTIONS(2736), + [anon_sym_usize] = ACTIONS(2736), + [anon_sym_f32] = ACTIONS(2736), + [anon_sym_f64] = ACTIONS(2736), + [anon_sym_bool] = ACTIONS(2736), + [anon_sym_str] = ACTIONS(2736), + [anon_sym_char] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2736), + [anon_sym_async] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_gen] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_impl] = ACTIONS(2736), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_loop] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_mod] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_trait] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_use] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_yield] = ACTIONS(2736), + [anon_sym_move] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2736), + [sym_integer_literal] = ACTIONS(2734), + [aux_sym_string_literal_token1] = ACTIONS(2734), + [sym_char_literal] = ACTIONS(2734), + [anon_sym_true] = ACTIONS(2736), + [anon_sym_false] = ACTIONS(2736), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2736), + [sym_super] = ACTIONS(2736), + [sym_crate] = ACTIONS(2736), + [sym_metavariable] = ACTIONS(2734), + [sym__raw_string_literal_start] = ACTIONS(2734), + [sym_float_literal] = ACTIONS(2734), + }, + [STATE(706)] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_macro_rules_BANG] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_u8] = ACTIONS(2667), - [anon_sym_i8] = ACTIONS(2667), - [anon_sym_u16] = ACTIONS(2667), - [anon_sym_i16] = ACTIONS(2667), - [anon_sym_u32] = ACTIONS(2667), - [anon_sym_i32] = ACTIONS(2667), - [anon_sym_u64] = ACTIONS(2667), - [anon_sym_i64] = ACTIONS(2667), - [anon_sym_u128] = ACTIONS(2667), - [anon_sym_i128] = ACTIONS(2667), - [anon_sym_isize] = ACTIONS(2667), - [anon_sym_usize] = ACTIONS(2667), - [anon_sym_f32] = ACTIONS(2667), - [anon_sym_f64] = ACTIONS(2667), - [anon_sym_bool] = ACTIONS(2667), - [anon_sym_str] = ACTIONS(2667), - [anon_sym_char] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_DOT_DOT] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_POUND] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_async] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_impl] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_loop] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_mod] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_trait] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_move] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [aux_sym_string_literal_token1] = ACTIONS(2665), - [sym_char_literal] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2667), - [sym_super] = ACTIONS(2667), - [sym_crate] = ACTIONS(2667), - [sym_metavariable] = ACTIONS(2665), - [sym__raw_string_literal_start] = ACTIONS(2665), - [sym_float_literal] = ACTIONS(2665), - }, - [707] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_macro_rules_BANG] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_u8] = ACTIONS(2740), + [anon_sym_i8] = ACTIONS(2740), + [anon_sym_u16] = ACTIONS(2740), + [anon_sym_i16] = ACTIONS(2740), + [anon_sym_u32] = ACTIONS(2740), + [anon_sym_i32] = ACTIONS(2740), + [anon_sym_u64] = ACTIONS(2740), + [anon_sym_i64] = ACTIONS(2740), + [anon_sym_u128] = ACTIONS(2740), + [anon_sym_i128] = ACTIONS(2740), + [anon_sym_isize] = ACTIONS(2740), + [anon_sym_usize] = ACTIONS(2740), + [anon_sym_f32] = ACTIONS(2740), + [anon_sym_f64] = ACTIONS(2740), + [anon_sym_bool] = ACTIONS(2740), + [anon_sym_str] = ACTIONS(2740), + [anon_sym_char] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_DOT_DOT] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_gen] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_impl] = ACTIONS(2740), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_loop] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_mod] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_trait] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_use] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym_yield] = ACTIONS(2740), + [anon_sym_move] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [sym_integer_literal] = ACTIONS(2738), + [aux_sym_string_literal_token1] = ACTIONS(2738), + [sym_char_literal] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2740), + [sym_super] = ACTIONS(2740), + [sym_crate] = ACTIONS(2740), + [sym_metavariable] = ACTIONS(2738), + [sym__raw_string_literal_start] = ACTIONS(2738), + [sym_float_literal] = ACTIONS(2738), + }, + [STATE(707)] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_macro_rules_BANG] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_u8] = ACTIONS(2671), - [anon_sym_i8] = ACTIONS(2671), - [anon_sym_u16] = ACTIONS(2671), - [anon_sym_i16] = ACTIONS(2671), - [anon_sym_u32] = ACTIONS(2671), - [anon_sym_i32] = ACTIONS(2671), - [anon_sym_u64] = ACTIONS(2671), - [anon_sym_i64] = ACTIONS(2671), - [anon_sym_u128] = ACTIONS(2671), - [anon_sym_i128] = ACTIONS(2671), - [anon_sym_isize] = ACTIONS(2671), - [anon_sym_usize] = ACTIONS(2671), - [anon_sym_f32] = ACTIONS(2671), - [anon_sym_f64] = ACTIONS(2671), - [anon_sym_bool] = ACTIONS(2671), - [anon_sym_str] = ACTIONS(2671), - [anon_sym_char] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_impl] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2671), - [anon_sym_loop] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_mod] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_trait] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym_yield] = ACTIONS(2671), - [anon_sym_move] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [sym_integer_literal] = ACTIONS(2669), - [aux_sym_string_literal_token1] = ACTIONS(2669), - [sym_char_literal] = ACTIONS(2669), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2671), - [sym_super] = ACTIONS(2671), - [sym_crate] = ACTIONS(2671), - [sym_metavariable] = ACTIONS(2669), - [sym__raw_string_literal_start] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - }, - [708] = { + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_macro_rules_BANG] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_u8] = ACTIONS(2744), + [anon_sym_i8] = ACTIONS(2744), + [anon_sym_u16] = ACTIONS(2744), + [anon_sym_i16] = ACTIONS(2744), + [anon_sym_u32] = ACTIONS(2744), + [anon_sym_i32] = ACTIONS(2744), + [anon_sym_u64] = ACTIONS(2744), + [anon_sym_i64] = ACTIONS(2744), + [anon_sym_u128] = ACTIONS(2744), + [anon_sym_i128] = ACTIONS(2744), + [anon_sym_isize] = ACTIONS(2744), + [anon_sym_usize] = ACTIONS(2744), + [anon_sym_f32] = ACTIONS(2744), + [anon_sym_f64] = ACTIONS(2744), + [anon_sym_bool] = ACTIONS(2744), + [anon_sym_str] = ACTIONS(2744), + [anon_sym_char] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_DOT_DOT] = ACTIONS(2742), + [anon_sym_COLON_COLON] = ACTIONS(2742), + [anon_sym_POUND] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_gen] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_impl] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_loop] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_mod] = ACTIONS(2744), + [anon_sym_pub] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_trait] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_move] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [sym_integer_literal] = ACTIONS(2742), + [aux_sym_string_literal_token1] = ACTIONS(2742), + [sym_char_literal] = ACTIONS(2742), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_crate] = ACTIONS(2744), + [sym_metavariable] = ACTIONS(2742), + [sym__raw_string_literal_start] = ACTIONS(2742), + [sym_float_literal] = ACTIONS(2742), + }, + [STATE(708)] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2673), - [sym_identifier] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_macro_rules_BANG] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_u8] = ACTIONS(2675), - [anon_sym_i8] = ACTIONS(2675), - [anon_sym_u16] = ACTIONS(2675), - [anon_sym_i16] = ACTIONS(2675), - [anon_sym_u32] = ACTIONS(2675), - [anon_sym_i32] = ACTIONS(2675), - [anon_sym_u64] = ACTIONS(2675), - [anon_sym_i64] = ACTIONS(2675), - [anon_sym_u128] = ACTIONS(2675), - [anon_sym_i128] = ACTIONS(2675), - [anon_sym_isize] = ACTIONS(2675), - [anon_sym_usize] = ACTIONS(2675), - [anon_sym_f32] = ACTIONS(2675), - [anon_sym_f64] = ACTIONS(2675), - [anon_sym_bool] = ACTIONS(2675), - [anon_sym_str] = ACTIONS(2675), - [anon_sym_char] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_DOT_DOT] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_POUND] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_async] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_fn] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_impl] = ACTIONS(2675), - [anon_sym_let] = ACTIONS(2675), - [anon_sym_loop] = ACTIONS(2675), - [anon_sym_match] = ACTIONS(2675), - [anon_sym_mod] = ACTIONS(2675), - [anon_sym_pub] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_trait] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_unsafe] = ACTIONS(2675), - [anon_sym_use] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym_yield] = ACTIONS(2675), - [anon_sym_move] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [sym_integer_literal] = ACTIONS(2673), - [aux_sym_string_literal_token1] = ACTIONS(2673), - [sym_char_literal] = ACTIONS(2673), - [anon_sym_true] = ACTIONS(2675), - [anon_sym_false] = ACTIONS(2675), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2675), - [sym_super] = ACTIONS(2675), - [sym_crate] = ACTIONS(2675), - [sym_metavariable] = ACTIONS(2673), - [sym__raw_string_literal_start] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), - }, - [709] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_macro_rules_BANG] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_u8] = ACTIONS(2748), + [anon_sym_i8] = ACTIONS(2748), + [anon_sym_u16] = ACTIONS(2748), + [anon_sym_i16] = ACTIONS(2748), + [anon_sym_u32] = ACTIONS(2748), + [anon_sym_i32] = ACTIONS(2748), + [anon_sym_u64] = ACTIONS(2748), + [anon_sym_i64] = ACTIONS(2748), + [anon_sym_u128] = ACTIONS(2748), + [anon_sym_i128] = ACTIONS(2748), + [anon_sym_isize] = ACTIONS(2748), + [anon_sym_usize] = ACTIONS(2748), + [anon_sym_f32] = ACTIONS(2748), + [anon_sym_f64] = ACTIONS(2748), + [anon_sym_bool] = ACTIONS(2748), + [anon_sym_str] = ACTIONS(2748), + [anon_sym_char] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2746), + [anon_sym_COLON_COLON] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2748), + [anon_sym_async] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_gen] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_impl] = ACTIONS(2748), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_loop] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_mod] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_trait] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_use] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym_yield] = ACTIONS(2748), + [anon_sym_move] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [sym_integer_literal] = ACTIONS(2746), + [aux_sym_string_literal_token1] = ACTIONS(2746), + [sym_char_literal] = ACTIONS(2746), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2748), + [sym_super] = ACTIONS(2748), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(2746), + [sym__raw_string_literal_start] = ACTIONS(2746), + [sym_float_literal] = ACTIONS(2746), + }, + [STATE(709)] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2677), - [sym_identifier] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_macro_rules_BANG] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_u8] = ACTIONS(2679), - [anon_sym_i8] = ACTIONS(2679), - [anon_sym_u16] = ACTIONS(2679), - [anon_sym_i16] = ACTIONS(2679), - [anon_sym_u32] = ACTIONS(2679), - [anon_sym_i32] = ACTIONS(2679), - [anon_sym_u64] = ACTIONS(2679), - [anon_sym_i64] = ACTIONS(2679), - [anon_sym_u128] = ACTIONS(2679), - [anon_sym_i128] = ACTIONS(2679), - [anon_sym_isize] = ACTIONS(2679), - [anon_sym_usize] = ACTIONS(2679), - [anon_sym_f32] = ACTIONS(2679), - [anon_sym_f64] = ACTIONS(2679), - [anon_sym_bool] = ACTIONS(2679), - [anon_sym_str] = ACTIONS(2679), - [anon_sym_char] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_DOT_DOT] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_POUND] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_async] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_fn] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_impl] = ACTIONS(2679), - [anon_sym_let] = ACTIONS(2679), - [anon_sym_loop] = ACTIONS(2679), - [anon_sym_match] = ACTIONS(2679), - [anon_sym_mod] = ACTIONS(2679), - [anon_sym_pub] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_trait] = ACTIONS(2679), - [anon_sym_type] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_unsafe] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2679), - [anon_sym_move] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [sym_integer_literal] = ACTIONS(2677), - [aux_sym_string_literal_token1] = ACTIONS(2677), - [sym_char_literal] = ACTIONS(2677), - [anon_sym_true] = ACTIONS(2679), - [anon_sym_false] = ACTIONS(2679), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2679), - [sym_super] = ACTIONS(2679), - [sym_crate] = ACTIONS(2679), - [sym_metavariable] = ACTIONS(2677), - [sym__raw_string_literal_start] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), - }, - [710] = { + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_macro_rules_BANG] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_u8] = ACTIONS(2752), + [anon_sym_i8] = ACTIONS(2752), + [anon_sym_u16] = ACTIONS(2752), + [anon_sym_i16] = ACTIONS(2752), + [anon_sym_u32] = ACTIONS(2752), + [anon_sym_i32] = ACTIONS(2752), + [anon_sym_u64] = ACTIONS(2752), + [anon_sym_i64] = ACTIONS(2752), + [anon_sym_u128] = ACTIONS(2752), + [anon_sym_i128] = ACTIONS(2752), + [anon_sym_isize] = ACTIONS(2752), + [anon_sym_usize] = ACTIONS(2752), + [anon_sym_f32] = ACTIONS(2752), + [anon_sym_f64] = ACTIONS(2752), + [anon_sym_bool] = ACTIONS(2752), + [anon_sym_str] = ACTIONS(2752), + [anon_sym_char] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_DOT_DOT] = ACTIONS(2750), + [anon_sym_COLON_COLON] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_fn] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_gen] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_impl] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_loop] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_mod] = ACTIONS(2752), + [anon_sym_pub] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_trait] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_unsafe] = ACTIONS(2752), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_move] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [sym_integer_literal] = ACTIONS(2750), + [aux_sym_string_literal_token1] = ACTIONS(2750), + [sym_char_literal] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2752), + [sym_super] = ACTIONS(2752), + [sym_crate] = ACTIONS(2752), + [sym_metavariable] = ACTIONS(2750), + [sym__raw_string_literal_start] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + }, + [STATE(710)] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_macro_rules_BANG] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_u8] = ACTIONS(2683), - [anon_sym_i8] = ACTIONS(2683), - [anon_sym_u16] = ACTIONS(2683), - [anon_sym_i16] = ACTIONS(2683), - [anon_sym_u32] = ACTIONS(2683), - [anon_sym_i32] = ACTIONS(2683), - [anon_sym_u64] = ACTIONS(2683), - [anon_sym_i64] = ACTIONS(2683), - [anon_sym_u128] = ACTIONS(2683), - [anon_sym_i128] = ACTIONS(2683), - [anon_sym_isize] = ACTIONS(2683), - [anon_sym_usize] = ACTIONS(2683), - [anon_sym_f32] = ACTIONS(2683), - [anon_sym_f64] = ACTIONS(2683), - [anon_sym_bool] = ACTIONS(2683), - [anon_sym_str] = ACTIONS(2683), - [anon_sym_char] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_fn] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_impl] = ACTIONS(2683), - [anon_sym_let] = ACTIONS(2683), - [anon_sym_loop] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2683), - [anon_sym_mod] = ACTIONS(2683), - [anon_sym_pub] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_trait] = ACTIONS(2683), - [anon_sym_type] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_unsafe] = ACTIONS(2683), - [anon_sym_use] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2683), - [anon_sym_move] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2681), - [aux_sym_string_literal_token1] = ACTIONS(2681), - [sym_char_literal] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2683), - [anon_sym_false] = ACTIONS(2683), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2683), - [sym_super] = ACTIONS(2683), - [sym_crate] = ACTIONS(2683), - [sym_metavariable] = ACTIONS(2681), - [sym__raw_string_literal_start] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), - }, - [711] = { + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_macro_rules_BANG] = ACTIONS(2754), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_u8] = ACTIONS(2756), + [anon_sym_i8] = ACTIONS(2756), + [anon_sym_u16] = ACTIONS(2756), + [anon_sym_i16] = ACTIONS(2756), + [anon_sym_u32] = ACTIONS(2756), + [anon_sym_i32] = ACTIONS(2756), + [anon_sym_u64] = ACTIONS(2756), + [anon_sym_i64] = ACTIONS(2756), + [anon_sym_u128] = ACTIONS(2756), + [anon_sym_i128] = ACTIONS(2756), + [anon_sym_isize] = ACTIONS(2756), + [anon_sym_usize] = ACTIONS(2756), + [anon_sym_f32] = ACTIONS(2756), + [anon_sym_f64] = ACTIONS(2756), + [anon_sym_bool] = ACTIONS(2756), + [anon_sym_str] = ACTIONS(2756), + [anon_sym_char] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_async] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_gen] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_impl] = ACTIONS(2756), + [anon_sym_let] = ACTIONS(2756), + [anon_sym_loop] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_mod] = ACTIONS(2756), + [anon_sym_pub] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_trait] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_use] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym_yield] = ACTIONS(2756), + [anon_sym_move] = ACTIONS(2756), + [anon_sym_try] = ACTIONS(2756), + [sym_integer_literal] = ACTIONS(2754), + [aux_sym_string_literal_token1] = ACTIONS(2754), + [sym_char_literal] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2756), + [anon_sym_false] = ACTIONS(2756), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2756), + [sym_super] = ACTIONS(2756), + [sym_crate] = ACTIONS(2756), + [sym_metavariable] = ACTIONS(2754), + [sym__raw_string_literal_start] = ACTIONS(2754), + [sym_float_literal] = ACTIONS(2754), + }, + [STATE(711)] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_macro_rules_BANG] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_u8] = ACTIONS(2687), - [anon_sym_i8] = ACTIONS(2687), - [anon_sym_u16] = ACTIONS(2687), - [anon_sym_i16] = ACTIONS(2687), - [anon_sym_u32] = ACTIONS(2687), - [anon_sym_i32] = ACTIONS(2687), - [anon_sym_u64] = ACTIONS(2687), - [anon_sym_i64] = ACTIONS(2687), - [anon_sym_u128] = ACTIONS(2687), - [anon_sym_i128] = ACTIONS(2687), - [anon_sym_isize] = ACTIONS(2687), - [anon_sym_usize] = ACTIONS(2687), - [anon_sym_f32] = ACTIONS(2687), - [anon_sym_f64] = ACTIONS(2687), - [anon_sym_bool] = ACTIONS(2687), - [anon_sym_str] = ACTIONS(2687), - [anon_sym_char] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_DOT_DOT] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_impl] = ACTIONS(2687), - [anon_sym_let] = ACTIONS(2687), - [anon_sym_loop] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_mod] = ACTIONS(2687), - [anon_sym_pub] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_trait] = ACTIONS(2687), - [anon_sym_type] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_use] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym_yield] = ACTIONS(2687), - [anon_sym_move] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [sym_integer_literal] = ACTIONS(2685), - [aux_sym_string_literal_token1] = ACTIONS(2685), - [sym_char_literal] = ACTIONS(2685), - [anon_sym_true] = ACTIONS(2687), - [anon_sym_false] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2687), - [sym_super] = ACTIONS(2687), - [sym_crate] = ACTIONS(2687), - [sym_metavariable] = ACTIONS(2685), - [sym__raw_string_literal_start] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - }, - [712] = { + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_macro_rules_BANG] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_u8] = ACTIONS(2760), + [anon_sym_i8] = ACTIONS(2760), + [anon_sym_u16] = ACTIONS(2760), + [anon_sym_i16] = ACTIONS(2760), + [anon_sym_u32] = ACTIONS(2760), + [anon_sym_i32] = ACTIONS(2760), + [anon_sym_u64] = ACTIONS(2760), + [anon_sym_i64] = ACTIONS(2760), + [anon_sym_u128] = ACTIONS(2760), + [anon_sym_i128] = ACTIONS(2760), + [anon_sym_isize] = ACTIONS(2760), + [anon_sym_usize] = ACTIONS(2760), + [anon_sym_f32] = ACTIONS(2760), + [anon_sym_f64] = ACTIONS(2760), + [anon_sym_bool] = ACTIONS(2760), + [anon_sym_str] = ACTIONS(2760), + [anon_sym_char] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_fn] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_gen] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_impl] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_loop] = ACTIONS(2760), + [anon_sym_match] = ACTIONS(2760), + [anon_sym_mod] = ACTIONS(2760), + [anon_sym_pub] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_trait] = ACTIONS(2760), + [anon_sym_type] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_unsafe] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2760), + [anon_sym_move] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2760), + [sym_integer_literal] = ACTIONS(2758), + [aux_sym_string_literal_token1] = ACTIONS(2758), + [sym_char_literal] = ACTIONS(2758), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2760), + [sym_super] = ACTIONS(2760), + [sym_crate] = ACTIONS(2760), + [sym_metavariable] = ACTIONS(2758), + [sym__raw_string_literal_start] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2758), + }, + [STATE(712)] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_macro_rules_BANG] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_u8] = ACTIONS(2691), - [anon_sym_i8] = ACTIONS(2691), - [anon_sym_u16] = ACTIONS(2691), - [anon_sym_i16] = ACTIONS(2691), - [anon_sym_u32] = ACTIONS(2691), - [anon_sym_i32] = ACTIONS(2691), - [anon_sym_u64] = ACTIONS(2691), - [anon_sym_i64] = ACTIONS(2691), - [anon_sym_u128] = ACTIONS(2691), - [anon_sym_i128] = ACTIONS(2691), - [anon_sym_isize] = ACTIONS(2691), - [anon_sym_usize] = ACTIONS(2691), - [anon_sym_f32] = ACTIONS(2691), - [anon_sym_f64] = ACTIONS(2691), - [anon_sym_bool] = ACTIONS(2691), - [anon_sym_str] = ACTIONS(2691), - [anon_sym_char] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_DOT_DOT] = ACTIONS(2689), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_async] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_impl] = ACTIONS(2691), - [anon_sym_let] = ACTIONS(2691), - [anon_sym_loop] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_trait] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_use] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym_yield] = ACTIONS(2691), - [anon_sym_move] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2689), - [aux_sym_string_literal_token1] = ACTIONS(2689), - [sym_char_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2691), - [anon_sym_false] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2691), - [sym_super] = ACTIONS(2691), - [sym_crate] = ACTIONS(2691), - [sym_metavariable] = ACTIONS(2689), - [sym__raw_string_literal_start] = ACTIONS(2689), - [sym_float_literal] = ACTIONS(2689), - }, - [713] = { + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_macro_rules_BANG] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_u8] = ACTIONS(2764), + [anon_sym_i8] = ACTIONS(2764), + [anon_sym_u16] = ACTIONS(2764), + [anon_sym_i16] = ACTIONS(2764), + [anon_sym_u32] = ACTIONS(2764), + [anon_sym_i32] = ACTIONS(2764), + [anon_sym_u64] = ACTIONS(2764), + [anon_sym_i64] = ACTIONS(2764), + [anon_sym_u128] = ACTIONS(2764), + [anon_sym_i128] = ACTIONS(2764), + [anon_sym_isize] = ACTIONS(2764), + [anon_sym_usize] = ACTIONS(2764), + [anon_sym_f32] = ACTIONS(2764), + [anon_sym_f64] = ACTIONS(2764), + [anon_sym_bool] = ACTIONS(2764), + [anon_sym_str] = ACTIONS(2764), + [anon_sym_char] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2762), + [anon_sym_DOT_DOT] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_async] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_gen] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_impl] = ACTIONS(2764), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_loop] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_mod] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_trait] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_use] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym_yield] = ACTIONS(2764), + [anon_sym_move] = ACTIONS(2764), + [anon_sym_try] = ACTIONS(2764), + [sym_integer_literal] = ACTIONS(2762), + [aux_sym_string_literal_token1] = ACTIONS(2762), + [sym_char_literal] = ACTIONS(2762), + [anon_sym_true] = ACTIONS(2764), + [anon_sym_false] = ACTIONS(2764), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2764), + [sym_super] = ACTIONS(2764), + [sym_crate] = ACTIONS(2764), + [sym_metavariable] = ACTIONS(2762), + [sym__raw_string_literal_start] = ACTIONS(2762), + [sym_float_literal] = ACTIONS(2762), + }, + [STATE(713)] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_macro_rules_BANG] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_u8] = ACTIONS(2695), - [anon_sym_i8] = ACTIONS(2695), - [anon_sym_u16] = ACTIONS(2695), - [anon_sym_i16] = ACTIONS(2695), - [anon_sym_u32] = ACTIONS(2695), - [anon_sym_i32] = ACTIONS(2695), - [anon_sym_u64] = ACTIONS(2695), - [anon_sym_i64] = ACTIONS(2695), - [anon_sym_u128] = ACTIONS(2695), - [anon_sym_i128] = ACTIONS(2695), - [anon_sym_isize] = ACTIONS(2695), - [anon_sym_usize] = ACTIONS(2695), - [anon_sym_f32] = ACTIONS(2695), - [anon_sym_f64] = ACTIONS(2695), - [anon_sym_bool] = ACTIONS(2695), - [anon_sym_str] = ACTIONS(2695), - [anon_sym_char] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_async] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_fn] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_impl] = ACTIONS(2695), - [anon_sym_let] = ACTIONS(2695), - [anon_sym_loop] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2695), - [anon_sym_mod] = ACTIONS(2695), - [anon_sym_pub] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_trait] = ACTIONS(2695), - [anon_sym_type] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_unsafe] = ACTIONS(2695), - [anon_sym_use] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym_yield] = ACTIONS(2695), - [anon_sym_move] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [aux_sym_string_literal_token1] = ACTIONS(2693), - [sym_char_literal] = ACTIONS(2693), - [anon_sym_true] = ACTIONS(2695), - [anon_sym_false] = ACTIONS(2695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2695), - [sym_super] = ACTIONS(2695), - [sym_crate] = ACTIONS(2695), - [sym_metavariable] = ACTIONS(2693), - [sym__raw_string_literal_start] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - }, - [714] = { + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_macro_rules_BANG] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_u8] = ACTIONS(2768), + [anon_sym_i8] = ACTIONS(2768), + [anon_sym_u16] = ACTIONS(2768), + [anon_sym_i16] = ACTIONS(2768), + [anon_sym_u32] = ACTIONS(2768), + [anon_sym_i32] = ACTIONS(2768), + [anon_sym_u64] = ACTIONS(2768), + [anon_sym_i64] = ACTIONS(2768), + [anon_sym_u128] = ACTIONS(2768), + [anon_sym_i128] = ACTIONS(2768), + [anon_sym_isize] = ACTIONS(2768), + [anon_sym_usize] = ACTIONS(2768), + [anon_sym_f32] = ACTIONS(2768), + [anon_sym_f64] = ACTIONS(2768), + [anon_sym_bool] = ACTIONS(2768), + [anon_sym_str] = ACTIONS(2768), + [anon_sym_char] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_DOT_DOT] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2766), + [anon_sym_POUND] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_async] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_fn] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_gen] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_impl] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_loop] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_mod] = ACTIONS(2768), + [anon_sym_pub] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_trait] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_unsafe] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_move] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [sym_integer_literal] = ACTIONS(2766), + [aux_sym_string_literal_token1] = ACTIONS(2766), + [sym_char_literal] = ACTIONS(2766), + [anon_sym_true] = ACTIONS(2768), + [anon_sym_false] = ACTIONS(2768), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2768), + [sym_super] = ACTIONS(2768), + [sym_crate] = ACTIONS(2768), + [sym_metavariable] = ACTIONS(2766), + [sym__raw_string_literal_start] = ACTIONS(2766), + [sym_float_literal] = ACTIONS(2766), + }, + [STATE(714)] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_macro_rules_BANG] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_u8] = ACTIONS(2699), - [anon_sym_i8] = ACTIONS(2699), - [anon_sym_u16] = ACTIONS(2699), - [anon_sym_i16] = ACTIONS(2699), - [anon_sym_u32] = ACTIONS(2699), - [anon_sym_i32] = ACTIONS(2699), - [anon_sym_u64] = ACTIONS(2699), - [anon_sym_i64] = ACTIONS(2699), - [anon_sym_u128] = ACTIONS(2699), - [anon_sym_i128] = ACTIONS(2699), - [anon_sym_isize] = ACTIONS(2699), - [anon_sym_usize] = ACTIONS(2699), - [anon_sym_f32] = ACTIONS(2699), - [anon_sym_f64] = ACTIONS(2699), - [anon_sym_bool] = ACTIONS(2699), - [anon_sym_str] = ACTIONS(2699), - [anon_sym_char] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_DOT_DOT] = ACTIONS(2697), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_POUND] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_async] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_impl] = ACTIONS(2699), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_loop] = ACTIONS(2699), - [anon_sym_match] = ACTIONS(2699), - [anon_sym_mod] = ACTIONS(2699), - [anon_sym_pub] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_trait] = ACTIONS(2699), - [anon_sym_type] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_unsafe] = ACTIONS(2699), - [anon_sym_use] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym_yield] = ACTIONS(2699), - [anon_sym_move] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [sym_integer_literal] = ACTIONS(2697), - [aux_sym_string_literal_token1] = ACTIONS(2697), - [sym_char_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2699), - [anon_sym_false] = ACTIONS(2699), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2699), - [sym_super] = ACTIONS(2699), - [sym_crate] = ACTIONS(2699), - [sym_metavariable] = ACTIONS(2697), - [sym__raw_string_literal_start] = ACTIONS(2697), - [sym_float_literal] = ACTIONS(2697), - }, - [715] = { + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_macro_rules_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_u8] = ACTIONS(2772), + [anon_sym_i8] = ACTIONS(2772), + [anon_sym_u16] = ACTIONS(2772), + [anon_sym_i16] = ACTIONS(2772), + [anon_sym_u32] = ACTIONS(2772), + [anon_sym_i32] = ACTIONS(2772), + [anon_sym_u64] = ACTIONS(2772), + [anon_sym_i64] = ACTIONS(2772), + [anon_sym_u128] = ACTIONS(2772), + [anon_sym_i128] = ACTIONS(2772), + [anon_sym_isize] = ACTIONS(2772), + [anon_sym_usize] = ACTIONS(2772), + [anon_sym_f32] = ACTIONS(2772), + [anon_sym_f64] = ACTIONS(2772), + [anon_sym_bool] = ACTIONS(2772), + [anon_sym_str] = ACTIONS(2772), + [anon_sym_char] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_POUND] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_fn] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_gen] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_impl] = ACTIONS(2772), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_loop] = ACTIONS(2772), + [anon_sym_match] = ACTIONS(2772), + [anon_sym_mod] = ACTIONS(2772), + [anon_sym_pub] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_trait] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_use] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym_yield] = ACTIONS(2772), + [anon_sym_move] = ACTIONS(2772), + [anon_sym_try] = ACTIONS(2772), + [sym_integer_literal] = ACTIONS(2770), + [aux_sym_string_literal_token1] = ACTIONS(2770), + [sym_char_literal] = ACTIONS(2770), + [anon_sym_true] = ACTIONS(2772), + [anon_sym_false] = ACTIONS(2772), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2772), + [sym_super] = ACTIONS(2772), + [sym_crate] = ACTIONS(2772), + [sym_metavariable] = ACTIONS(2770), + [sym__raw_string_literal_start] = ACTIONS(2770), + [sym_float_literal] = ACTIONS(2770), + }, + [STATE(715)] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_macro_rules_BANG] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_u8] = ACTIONS(2703), - [anon_sym_i8] = ACTIONS(2703), - [anon_sym_u16] = ACTIONS(2703), - [anon_sym_i16] = ACTIONS(2703), - [anon_sym_u32] = ACTIONS(2703), - [anon_sym_i32] = ACTIONS(2703), - [anon_sym_u64] = ACTIONS(2703), - [anon_sym_i64] = ACTIONS(2703), - [anon_sym_u128] = ACTIONS(2703), - [anon_sym_i128] = ACTIONS(2703), - [anon_sym_isize] = ACTIONS(2703), - [anon_sym_usize] = ACTIONS(2703), - [anon_sym_f32] = ACTIONS(2703), - [anon_sym_f64] = ACTIONS(2703), - [anon_sym_bool] = ACTIONS(2703), - [anon_sym_str] = ACTIONS(2703), - [anon_sym_char] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_DOT_DOT] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_async] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_fn] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_impl] = ACTIONS(2703), - [anon_sym_let] = ACTIONS(2703), - [anon_sym_loop] = ACTIONS(2703), - [anon_sym_match] = ACTIONS(2703), - [anon_sym_mod] = ACTIONS(2703), - [anon_sym_pub] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_trait] = ACTIONS(2703), - [anon_sym_type] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2703), - [anon_sym_move] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [sym_integer_literal] = ACTIONS(2701), - [aux_sym_string_literal_token1] = ACTIONS(2701), - [sym_char_literal] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2703), - [sym_super] = ACTIONS(2703), - [sym_crate] = ACTIONS(2703), - [sym_metavariable] = ACTIONS(2701), - [sym__raw_string_literal_start] = ACTIONS(2701), - [sym_float_literal] = ACTIONS(2701), - }, - [716] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_macro_rules_BANG] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_u8] = ACTIONS(2776), + [anon_sym_i8] = ACTIONS(2776), + [anon_sym_u16] = ACTIONS(2776), + [anon_sym_i16] = ACTIONS(2776), + [anon_sym_u32] = ACTIONS(2776), + [anon_sym_i32] = ACTIONS(2776), + [anon_sym_u64] = ACTIONS(2776), + [anon_sym_i64] = ACTIONS(2776), + [anon_sym_u128] = ACTIONS(2776), + [anon_sym_i128] = ACTIONS(2776), + [anon_sym_isize] = ACTIONS(2776), + [anon_sym_usize] = ACTIONS(2776), + [anon_sym_f32] = ACTIONS(2776), + [anon_sym_f64] = ACTIONS(2776), + [anon_sym_bool] = ACTIONS(2776), + [anon_sym_str] = ACTIONS(2776), + [anon_sym_char] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2774), + [anon_sym_DOT_DOT] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_async] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_fn] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_gen] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_impl] = ACTIONS(2776), + [anon_sym_let] = ACTIONS(2776), + [anon_sym_loop] = ACTIONS(2776), + [anon_sym_match] = ACTIONS(2776), + [anon_sym_mod] = ACTIONS(2776), + [anon_sym_pub] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_trait] = ACTIONS(2776), + [anon_sym_type] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_unsafe] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2776), + [anon_sym_move] = ACTIONS(2776), + [anon_sym_try] = ACTIONS(2776), + [sym_integer_literal] = ACTIONS(2774), + [aux_sym_string_literal_token1] = ACTIONS(2774), + [sym_char_literal] = ACTIONS(2774), + [anon_sym_true] = ACTIONS(2776), + [anon_sym_false] = ACTIONS(2776), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2776), + [sym_super] = ACTIONS(2776), + [sym_crate] = ACTIONS(2776), + [sym_metavariable] = ACTIONS(2774), + [sym__raw_string_literal_start] = ACTIONS(2774), + [sym_float_literal] = ACTIONS(2774), + }, + [STATE(716)] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym_macro_rules_BANG] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_u8] = ACTIONS(2707), - [anon_sym_i8] = ACTIONS(2707), - [anon_sym_u16] = ACTIONS(2707), - [anon_sym_i16] = ACTIONS(2707), - [anon_sym_u32] = ACTIONS(2707), - [anon_sym_i32] = ACTIONS(2707), - [anon_sym_u64] = ACTIONS(2707), - [anon_sym_i64] = ACTIONS(2707), - [anon_sym_u128] = ACTIONS(2707), - [anon_sym_i128] = ACTIONS(2707), - [anon_sym_isize] = ACTIONS(2707), - [anon_sym_usize] = ACTIONS(2707), - [anon_sym_f32] = ACTIONS(2707), - [anon_sym_f64] = ACTIONS(2707), - [anon_sym_bool] = ACTIONS(2707), - [anon_sym_str] = ACTIONS(2707), - [anon_sym_char] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_POUND] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_async] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_impl] = ACTIONS(2707), - [anon_sym_let] = ACTIONS(2707), - [anon_sym_loop] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_mod] = ACTIONS(2707), - [anon_sym_pub] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_trait] = ACTIONS(2707), - [anon_sym_type] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2707), - [anon_sym_move] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [sym_integer_literal] = ACTIONS(2705), - [aux_sym_string_literal_token1] = ACTIONS(2705), - [sym_char_literal] = ACTIONS(2705), - [anon_sym_true] = ACTIONS(2707), - [anon_sym_false] = ACTIONS(2707), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2707), - [sym_super] = ACTIONS(2707), - [sym_crate] = ACTIONS(2707), - [sym_metavariable] = ACTIONS(2705), - [sym__raw_string_literal_start] = ACTIONS(2705), - [sym_float_literal] = ACTIONS(2705), - }, - [717] = { + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_macro_rules_BANG] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_u8] = ACTIONS(2780), + [anon_sym_i8] = ACTIONS(2780), + [anon_sym_u16] = ACTIONS(2780), + [anon_sym_i16] = ACTIONS(2780), + [anon_sym_u32] = ACTIONS(2780), + [anon_sym_i32] = ACTIONS(2780), + [anon_sym_u64] = ACTIONS(2780), + [anon_sym_i64] = ACTIONS(2780), + [anon_sym_u128] = ACTIONS(2780), + [anon_sym_i128] = ACTIONS(2780), + [anon_sym_isize] = ACTIONS(2780), + [anon_sym_usize] = ACTIONS(2780), + [anon_sym_f32] = ACTIONS(2780), + [anon_sym_f64] = ACTIONS(2780), + [anon_sym_bool] = ACTIONS(2780), + [anon_sym_str] = ACTIONS(2780), + [anon_sym_char] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_DOT_DOT] = ACTIONS(2778), + [anon_sym_COLON_COLON] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_fn] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_gen] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_impl] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_loop] = ACTIONS(2780), + [anon_sym_match] = ACTIONS(2780), + [anon_sym_mod] = ACTIONS(2780), + [anon_sym_pub] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_trait] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_unsafe] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_move] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [sym_integer_literal] = ACTIONS(2778), + [aux_sym_string_literal_token1] = ACTIONS(2778), + [sym_char_literal] = ACTIONS(2778), + [anon_sym_true] = ACTIONS(2780), + [anon_sym_false] = ACTIONS(2780), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_crate] = ACTIONS(2780), + [sym_metavariable] = ACTIONS(2778), + [sym__raw_string_literal_start] = ACTIONS(2778), + [sym_float_literal] = ACTIONS(2778), + }, + [STATE(717)] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_macro_rules_BANG] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_u8] = ACTIONS(2711), - [anon_sym_i8] = ACTIONS(2711), - [anon_sym_u16] = ACTIONS(2711), - [anon_sym_i16] = ACTIONS(2711), - [anon_sym_u32] = ACTIONS(2711), - [anon_sym_i32] = ACTIONS(2711), - [anon_sym_u64] = ACTIONS(2711), - [anon_sym_i64] = ACTIONS(2711), - [anon_sym_u128] = ACTIONS(2711), - [anon_sym_i128] = ACTIONS(2711), - [anon_sym_isize] = ACTIONS(2711), - [anon_sym_usize] = ACTIONS(2711), - [anon_sym_f32] = ACTIONS(2711), - [anon_sym_f64] = ACTIONS(2711), - [anon_sym_bool] = ACTIONS(2711), - [anon_sym_str] = ACTIONS(2711), - [anon_sym_char] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_DOT_DOT] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_POUND] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_fn] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_impl] = ACTIONS(2711), - [anon_sym_let] = ACTIONS(2711), - [anon_sym_loop] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_mod] = ACTIONS(2711), - [anon_sym_pub] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_trait] = ACTIONS(2711), - [anon_sym_type] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_unsafe] = ACTIONS(2711), - [anon_sym_use] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym_yield] = ACTIONS(2711), - [anon_sym_move] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [sym_integer_literal] = ACTIONS(2709), - [aux_sym_string_literal_token1] = ACTIONS(2709), - [sym_char_literal] = ACTIONS(2709), - [anon_sym_true] = ACTIONS(2711), - [anon_sym_false] = ACTIONS(2711), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2711), - [sym_super] = ACTIONS(2711), - [sym_crate] = ACTIONS(2711), - [sym_metavariable] = ACTIONS(2709), - [sym__raw_string_literal_start] = ACTIONS(2709), - [sym_float_literal] = ACTIONS(2709), - }, - [718] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_macro_rules_BANG] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_u8] = ACTIONS(2784), + [anon_sym_i8] = ACTIONS(2784), + [anon_sym_u16] = ACTIONS(2784), + [anon_sym_i16] = ACTIONS(2784), + [anon_sym_u32] = ACTIONS(2784), + [anon_sym_i32] = ACTIONS(2784), + [anon_sym_u64] = ACTIONS(2784), + [anon_sym_i64] = ACTIONS(2784), + [anon_sym_u128] = ACTIONS(2784), + [anon_sym_i128] = ACTIONS(2784), + [anon_sym_isize] = ACTIONS(2784), + [anon_sym_usize] = ACTIONS(2784), + [anon_sym_f32] = ACTIONS(2784), + [anon_sym_f64] = ACTIONS(2784), + [anon_sym_bool] = ACTIONS(2784), + [anon_sym_str] = ACTIONS(2784), + [anon_sym_char] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2782), + [anon_sym_COLON_COLON] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_async] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_fn] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_gen] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_impl] = ACTIONS(2784), + [anon_sym_let] = ACTIONS(2784), + [anon_sym_loop] = ACTIONS(2784), + [anon_sym_match] = ACTIONS(2784), + [anon_sym_mod] = ACTIONS(2784), + [anon_sym_pub] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_trait] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_unsafe] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2784), + [anon_sym_move] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2784), + [sym_integer_literal] = ACTIONS(2782), + [aux_sym_string_literal_token1] = ACTIONS(2782), + [sym_char_literal] = ACTIONS(2782), + [anon_sym_true] = ACTIONS(2784), + [anon_sym_false] = ACTIONS(2784), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2784), + [sym_super] = ACTIONS(2784), + [sym_crate] = ACTIONS(2784), + [sym_metavariable] = ACTIONS(2782), + [sym__raw_string_literal_start] = ACTIONS(2782), + [sym_float_literal] = ACTIONS(2782), + }, + [STATE(718)] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym_macro_rules_BANG] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_u8] = ACTIONS(2715), - [anon_sym_i8] = ACTIONS(2715), - [anon_sym_u16] = ACTIONS(2715), - [anon_sym_i16] = ACTIONS(2715), - [anon_sym_u32] = ACTIONS(2715), - [anon_sym_i32] = ACTIONS(2715), - [anon_sym_u64] = ACTIONS(2715), - [anon_sym_i64] = ACTIONS(2715), - [anon_sym_u128] = ACTIONS(2715), - [anon_sym_i128] = ACTIONS(2715), - [anon_sym_isize] = ACTIONS(2715), - [anon_sym_usize] = ACTIONS(2715), - [anon_sym_f32] = ACTIONS(2715), - [anon_sym_f64] = ACTIONS(2715), - [anon_sym_bool] = ACTIONS(2715), - [anon_sym_str] = ACTIONS(2715), - [anon_sym_char] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2713), - [anon_sym_DOT_DOT] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_POUND] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_async] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_impl] = ACTIONS(2715), - [anon_sym_let] = ACTIONS(2715), - [anon_sym_loop] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_mod] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_trait] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_use] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym_yield] = ACTIONS(2715), - [anon_sym_move] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [sym_integer_literal] = ACTIONS(2713), - [aux_sym_string_literal_token1] = ACTIONS(2713), - [sym_char_literal] = ACTIONS(2713), - [anon_sym_true] = ACTIONS(2715), - [anon_sym_false] = ACTIONS(2715), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2715), - [sym_super] = ACTIONS(2715), - [sym_crate] = ACTIONS(2715), - [sym_metavariable] = ACTIONS(2713), - [sym__raw_string_literal_start] = ACTIONS(2713), - [sym_float_literal] = ACTIONS(2713), - }, - [719] = { + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_macro_rules_BANG] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_u8] = ACTIONS(2788), + [anon_sym_i8] = ACTIONS(2788), + [anon_sym_u16] = ACTIONS(2788), + [anon_sym_i16] = ACTIONS(2788), + [anon_sym_u32] = ACTIONS(2788), + [anon_sym_i32] = ACTIONS(2788), + [anon_sym_u64] = ACTIONS(2788), + [anon_sym_i64] = ACTIONS(2788), + [anon_sym_u128] = ACTIONS(2788), + [anon_sym_i128] = ACTIONS(2788), + [anon_sym_isize] = ACTIONS(2788), + [anon_sym_usize] = ACTIONS(2788), + [anon_sym_f32] = ACTIONS(2788), + [anon_sym_f64] = ACTIONS(2788), + [anon_sym_bool] = ACTIONS(2788), + [anon_sym_str] = ACTIONS(2788), + [anon_sym_char] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2786), + [anon_sym_DOT_DOT] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2786), + [anon_sym_POUND] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_async] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_fn] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_gen] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_impl] = ACTIONS(2788), + [anon_sym_let] = ACTIONS(2788), + [anon_sym_loop] = ACTIONS(2788), + [anon_sym_match] = ACTIONS(2788), + [anon_sym_mod] = ACTIONS(2788), + [anon_sym_pub] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_trait] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(2788), + [anon_sym_use] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym_yield] = ACTIONS(2788), + [anon_sym_move] = ACTIONS(2788), + [anon_sym_try] = ACTIONS(2788), + [sym_integer_literal] = ACTIONS(2786), + [aux_sym_string_literal_token1] = ACTIONS(2786), + [sym_char_literal] = ACTIONS(2786), + [anon_sym_true] = ACTIONS(2788), + [anon_sym_false] = ACTIONS(2788), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2788), + [sym_super] = ACTIONS(2788), + [sym_crate] = ACTIONS(2788), + [sym_metavariable] = ACTIONS(2786), + [sym__raw_string_literal_start] = ACTIONS(2786), + [sym_float_literal] = ACTIONS(2786), + }, + [STATE(719)] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym_macro_rules_BANG] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_u8] = ACTIONS(2719), - [anon_sym_i8] = ACTIONS(2719), - [anon_sym_u16] = ACTIONS(2719), - [anon_sym_i16] = ACTIONS(2719), - [anon_sym_u32] = ACTIONS(2719), - [anon_sym_i32] = ACTIONS(2719), - [anon_sym_u64] = ACTIONS(2719), - [anon_sym_i64] = ACTIONS(2719), - [anon_sym_u128] = ACTIONS(2719), - [anon_sym_i128] = ACTIONS(2719), - [anon_sym_isize] = ACTIONS(2719), - [anon_sym_usize] = ACTIONS(2719), - [anon_sym_f32] = ACTIONS(2719), - [anon_sym_f64] = ACTIONS(2719), - [anon_sym_bool] = ACTIONS(2719), - [anon_sym_str] = ACTIONS(2719), - [anon_sym_char] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_DOT_DOT] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_POUND] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_async] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_impl] = ACTIONS(2719), - [anon_sym_let] = ACTIONS(2719), - [anon_sym_loop] = ACTIONS(2719), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_mod] = ACTIONS(2719), - [anon_sym_pub] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_trait] = ACTIONS(2719), - [anon_sym_type] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_unsafe] = ACTIONS(2719), - [anon_sym_use] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_move] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [sym_integer_literal] = ACTIONS(2717), - [aux_sym_string_literal_token1] = ACTIONS(2717), - [sym_char_literal] = ACTIONS(2717), - [anon_sym_true] = ACTIONS(2719), - [anon_sym_false] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2719), - [sym_super] = ACTIONS(2719), - [sym_crate] = ACTIONS(2719), - [sym_metavariable] = ACTIONS(2717), - [sym__raw_string_literal_start] = ACTIONS(2717), - [sym_float_literal] = ACTIONS(2717), - }, - [720] = { + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_macro_rules_BANG] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_u8] = ACTIONS(2792), + [anon_sym_i8] = ACTIONS(2792), + [anon_sym_u16] = ACTIONS(2792), + [anon_sym_i16] = ACTIONS(2792), + [anon_sym_u32] = ACTIONS(2792), + [anon_sym_i32] = ACTIONS(2792), + [anon_sym_u64] = ACTIONS(2792), + [anon_sym_i64] = ACTIONS(2792), + [anon_sym_u128] = ACTIONS(2792), + [anon_sym_i128] = ACTIONS(2792), + [anon_sym_isize] = ACTIONS(2792), + [anon_sym_usize] = ACTIONS(2792), + [anon_sym_f32] = ACTIONS(2792), + [anon_sym_f64] = ACTIONS(2792), + [anon_sym_bool] = ACTIONS(2792), + [anon_sym_str] = ACTIONS(2792), + [anon_sym_char] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_DOT_DOT] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2790), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_async] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_fn] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_gen] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_impl] = ACTIONS(2792), + [anon_sym_let] = ACTIONS(2792), + [anon_sym_loop] = ACTIONS(2792), + [anon_sym_match] = ACTIONS(2792), + [anon_sym_mod] = ACTIONS(2792), + [anon_sym_pub] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_trait] = ACTIONS(2792), + [anon_sym_type] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_unsafe] = ACTIONS(2792), + [anon_sym_use] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym_yield] = ACTIONS(2792), + [anon_sym_move] = ACTIONS(2792), + [anon_sym_try] = ACTIONS(2792), + [sym_integer_literal] = ACTIONS(2790), + [aux_sym_string_literal_token1] = ACTIONS(2790), + [sym_char_literal] = ACTIONS(2790), + [anon_sym_true] = ACTIONS(2792), + [anon_sym_false] = ACTIONS(2792), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2792), + [sym_super] = ACTIONS(2792), + [sym_crate] = ACTIONS(2792), + [sym_metavariable] = ACTIONS(2790), + [sym__raw_string_literal_start] = ACTIONS(2790), + [sym_float_literal] = ACTIONS(2790), + }, + [STATE(720)] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_identifier] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym_macro_rules_BANG] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_u8] = ACTIONS(2723), - [anon_sym_i8] = ACTIONS(2723), - [anon_sym_u16] = ACTIONS(2723), - [anon_sym_i16] = ACTIONS(2723), - [anon_sym_u32] = ACTIONS(2723), - [anon_sym_i32] = ACTIONS(2723), - [anon_sym_u64] = ACTIONS(2723), - [anon_sym_i64] = ACTIONS(2723), - [anon_sym_u128] = ACTIONS(2723), - [anon_sym_i128] = ACTIONS(2723), - [anon_sym_isize] = ACTIONS(2723), - [anon_sym_usize] = ACTIONS(2723), - [anon_sym_f32] = ACTIONS(2723), - [anon_sym_f64] = ACTIONS(2723), - [anon_sym_bool] = ACTIONS(2723), - [anon_sym_str] = ACTIONS(2723), - [anon_sym_char] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2721), - [anon_sym_DOT_DOT] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_POUND] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_async] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_fn] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_impl] = ACTIONS(2723), - [anon_sym_let] = ACTIONS(2723), - [anon_sym_loop] = ACTIONS(2723), - [anon_sym_match] = ACTIONS(2723), - [anon_sym_mod] = ACTIONS(2723), - [anon_sym_pub] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_trait] = ACTIONS(2723), - [anon_sym_type] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_unsafe] = ACTIONS(2723), - [anon_sym_use] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym_yield] = ACTIONS(2723), - [anon_sym_move] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [sym_integer_literal] = ACTIONS(2721), - [aux_sym_string_literal_token1] = ACTIONS(2721), - [sym_char_literal] = ACTIONS(2721), - [anon_sym_true] = ACTIONS(2723), - [anon_sym_false] = ACTIONS(2723), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2723), - [sym_super] = ACTIONS(2723), - [sym_crate] = ACTIONS(2723), - [sym_metavariable] = ACTIONS(2721), - [sym__raw_string_literal_start] = ACTIONS(2721), - [sym_float_literal] = ACTIONS(2721), - }, - [721] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_match_pattern] = STATE(3605), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [ts_builtin_sym_end] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_macro_rules_BANG] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_u8] = ACTIONS(2796), + [anon_sym_i8] = ACTIONS(2796), + [anon_sym_u16] = ACTIONS(2796), + [anon_sym_i16] = ACTIONS(2796), + [anon_sym_u32] = ACTIONS(2796), + [anon_sym_i32] = ACTIONS(2796), + [anon_sym_u64] = ACTIONS(2796), + [anon_sym_i64] = ACTIONS(2796), + [anon_sym_u128] = ACTIONS(2796), + [anon_sym_i128] = ACTIONS(2796), + [anon_sym_isize] = ACTIONS(2796), + [anon_sym_usize] = ACTIONS(2796), + [anon_sym_f32] = ACTIONS(2796), + [anon_sym_f64] = ACTIONS(2796), + [anon_sym_bool] = ACTIONS(2796), + [anon_sym_str] = ACTIONS(2796), + [anon_sym_char] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2794), + [anon_sym_COLON_COLON] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2796), + [anon_sym_async] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_fn] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_gen] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_impl] = ACTIONS(2796), + [anon_sym_let] = ACTIONS(2796), + [anon_sym_loop] = ACTIONS(2796), + [anon_sym_match] = ACTIONS(2796), + [anon_sym_mod] = ACTIONS(2796), + [anon_sym_pub] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_trait] = ACTIONS(2796), + [anon_sym_type] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_unsafe] = ACTIONS(2796), + [anon_sym_use] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym_yield] = ACTIONS(2796), + [anon_sym_move] = ACTIONS(2796), + [anon_sym_try] = ACTIONS(2796), + [sym_integer_literal] = ACTIONS(2794), + [aux_sym_string_literal_token1] = ACTIONS(2794), + [sym_char_literal] = ACTIONS(2794), + [anon_sym_true] = ACTIONS(2796), + [anon_sym_false] = ACTIONS(2796), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2796), + [sym_super] = ACTIONS(2796), + [sym_crate] = ACTIONS(2796), + [sym_metavariable] = ACTIONS(2794), + [sym__raw_string_literal_start] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), + }, + [STATE(721)] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(758), - [sym_identifier] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_u8] = ACTIONS(2734), - [anon_sym_i8] = ACTIONS(2734), - [anon_sym_u16] = ACTIONS(2734), - [anon_sym_i16] = ACTIONS(2734), - [anon_sym_u32] = ACTIONS(2734), - [anon_sym_i32] = ACTIONS(2734), - [anon_sym_u64] = ACTIONS(2734), - [anon_sym_i64] = ACTIONS(2734), - [anon_sym_u128] = ACTIONS(2734), - [anon_sym_i128] = ACTIONS(2734), - [anon_sym_isize] = ACTIONS(2734), - [anon_sym_usize] = ACTIONS(2734), - [anon_sym_f32] = ACTIONS(2734), - [anon_sym_f64] = ACTIONS(2734), - [anon_sym_bool] = ACTIONS(2734), - [anon_sym_str] = ACTIONS(2734), - [anon_sym_char] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym__] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2752), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_ref] = ACTIONS(2767), - [sym_mutable_specifier] = ACTIONS(2770), - [sym_integer_literal] = ACTIONS(2773), - [aux_sym_string_literal_token1] = ACTIONS(2776), - [sym_char_literal] = ACTIONS(2773), - [anon_sym_true] = ACTIONS(2779), - [anon_sym_false] = ACTIONS(2779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_crate] = ACTIONS(2782), - [sym_metavariable] = ACTIONS(2785), - [sym__raw_string_literal_start] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2773), - }, - [722] = { + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_macro_rules_BANG] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_u8] = ACTIONS(2800), + [anon_sym_i8] = ACTIONS(2800), + [anon_sym_u16] = ACTIONS(2800), + [anon_sym_i16] = ACTIONS(2800), + [anon_sym_u32] = ACTIONS(2800), + [anon_sym_i32] = ACTIONS(2800), + [anon_sym_u64] = ACTIONS(2800), + [anon_sym_i64] = ACTIONS(2800), + [anon_sym_u128] = ACTIONS(2800), + [anon_sym_i128] = ACTIONS(2800), + [anon_sym_isize] = ACTIONS(2800), + [anon_sym_usize] = ACTIONS(2800), + [anon_sym_f32] = ACTIONS(2800), + [anon_sym_f64] = ACTIONS(2800), + [anon_sym_bool] = ACTIONS(2800), + [anon_sym_str] = ACTIONS(2800), + [anon_sym_char] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_DOT_DOT] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2800), + [anon_sym_async] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_fn] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_gen] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_impl] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2800), + [anon_sym_loop] = ACTIONS(2800), + [anon_sym_match] = ACTIONS(2800), + [anon_sym_mod] = ACTIONS(2800), + [anon_sym_pub] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_trait] = ACTIONS(2800), + [anon_sym_type] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_unsafe] = ACTIONS(2800), + [anon_sym_use] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym_yield] = ACTIONS(2800), + [anon_sym_move] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [sym_integer_literal] = ACTIONS(2798), + [aux_sym_string_literal_token1] = ACTIONS(2798), + [sym_char_literal] = ACTIONS(2798), + [anon_sym_true] = ACTIONS(2800), + [anon_sym_false] = ACTIONS(2800), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2800), + [sym_super] = ACTIONS(2800), + [sym_crate] = ACTIONS(2800), + [sym_metavariable] = ACTIONS(2798), + [sym__raw_string_literal_start] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + }, + [STATE(722)] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_macro_rules_BANG] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_u8] = ACTIONS(2793), - [anon_sym_i8] = ACTIONS(2793), - [anon_sym_u16] = ACTIONS(2793), - [anon_sym_i16] = ACTIONS(2793), - [anon_sym_u32] = ACTIONS(2793), - [anon_sym_i32] = ACTIONS(2793), - [anon_sym_u64] = ACTIONS(2793), - [anon_sym_i64] = ACTIONS(2793), - [anon_sym_u128] = ACTIONS(2793), - [anon_sym_i128] = ACTIONS(2793), - [anon_sym_isize] = ACTIONS(2793), - [anon_sym_usize] = ACTIONS(2793), - [anon_sym_f32] = ACTIONS(2793), - [anon_sym_f64] = ACTIONS(2793), - [anon_sym_bool] = ACTIONS(2793), - [anon_sym_str] = ACTIONS(2793), - [anon_sym_char] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_LT] = ACTIONS(2791), - [anon_sym_DOT_DOT] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_POUND] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_async] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_impl] = ACTIONS(2793), - [anon_sym_let] = ACTIONS(2793), - [anon_sym_loop] = ACTIONS(2793), - [anon_sym_match] = ACTIONS(2793), - [anon_sym_mod] = ACTIONS(2793), - [anon_sym_pub] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_trait] = ACTIONS(2793), - [anon_sym_type] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_unsafe] = ACTIONS(2793), - [anon_sym_use] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym_yield] = ACTIONS(2793), - [anon_sym_move] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [sym_integer_literal] = ACTIONS(2791), - [aux_sym_string_literal_token1] = ACTIONS(2791), - [sym_char_literal] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(2793), - [anon_sym_false] = ACTIONS(2793), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2793), - [sym_super] = ACTIONS(2793), - [sym_crate] = ACTIONS(2793), - [sym_metavariable] = ACTIONS(2791), - [sym__raw_string_literal_start] = ACTIONS(2791), - [sym_float_literal] = ACTIONS(2791), - }, - [723] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_macro_rules_BANG] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_u8] = ACTIONS(2804), + [anon_sym_i8] = ACTIONS(2804), + [anon_sym_u16] = ACTIONS(2804), + [anon_sym_i16] = ACTIONS(2804), + [anon_sym_u32] = ACTIONS(2804), + [anon_sym_i32] = ACTIONS(2804), + [anon_sym_u64] = ACTIONS(2804), + [anon_sym_i64] = ACTIONS(2804), + [anon_sym_u128] = ACTIONS(2804), + [anon_sym_i128] = ACTIONS(2804), + [anon_sym_isize] = ACTIONS(2804), + [anon_sym_usize] = ACTIONS(2804), + [anon_sym_f32] = ACTIONS(2804), + [anon_sym_f64] = ACTIONS(2804), + [anon_sym_bool] = ACTIONS(2804), + [anon_sym_str] = ACTIONS(2804), + [anon_sym_char] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_DOT_DOT] = ACTIONS(2802), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_fn] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_gen] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_impl] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_loop] = ACTIONS(2804), + [anon_sym_match] = ACTIONS(2804), + [anon_sym_mod] = ACTIONS(2804), + [anon_sym_pub] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_trait] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_unsafe] = ACTIONS(2804), + [anon_sym_use] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_move] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [sym_integer_literal] = ACTIONS(2802), + [aux_sym_string_literal_token1] = ACTIONS(2802), + [sym_char_literal] = ACTIONS(2802), + [anon_sym_true] = ACTIONS(2804), + [anon_sym_false] = ACTIONS(2804), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_crate] = ACTIONS(2804), + [sym_metavariable] = ACTIONS(2802), + [sym__raw_string_literal_start] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2802), + }, + [STATE(723)] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_macro_rules_BANG] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_u8] = ACTIONS(2797), - [anon_sym_i8] = ACTIONS(2797), - [anon_sym_u16] = ACTIONS(2797), - [anon_sym_i16] = ACTIONS(2797), - [anon_sym_u32] = ACTIONS(2797), - [anon_sym_i32] = ACTIONS(2797), - [anon_sym_u64] = ACTIONS(2797), - [anon_sym_i64] = ACTIONS(2797), - [anon_sym_u128] = ACTIONS(2797), - [anon_sym_i128] = ACTIONS(2797), - [anon_sym_isize] = ACTIONS(2797), - [anon_sym_usize] = ACTIONS(2797), - [anon_sym_f32] = ACTIONS(2797), - [anon_sym_f64] = ACTIONS(2797), - [anon_sym_bool] = ACTIONS(2797), - [anon_sym_str] = ACTIONS(2797), - [anon_sym_char] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2795), - [anon_sym_DOT_DOT] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_POUND] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_impl] = ACTIONS(2797), - [anon_sym_let] = ACTIONS(2797), - [anon_sym_loop] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_mod] = ACTIONS(2797), - [anon_sym_pub] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_trait] = ACTIONS(2797), - [anon_sym_type] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_unsafe] = ACTIONS(2797), - [anon_sym_use] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym_yield] = ACTIONS(2797), - [anon_sym_move] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [sym_integer_literal] = ACTIONS(2795), - [aux_sym_string_literal_token1] = ACTIONS(2795), - [sym_char_literal] = ACTIONS(2795), - [anon_sym_true] = ACTIONS(2797), - [anon_sym_false] = ACTIONS(2797), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2797), - [sym_super] = ACTIONS(2797), - [sym_crate] = ACTIONS(2797), - [sym_metavariable] = ACTIONS(2795), - [sym__raw_string_literal_start] = ACTIONS(2795), - [sym_float_literal] = ACTIONS(2795), - }, - [724] = { + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_macro_rules_BANG] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_u8] = ACTIONS(2808), + [anon_sym_i8] = ACTIONS(2808), + [anon_sym_u16] = ACTIONS(2808), + [anon_sym_i16] = ACTIONS(2808), + [anon_sym_u32] = ACTIONS(2808), + [anon_sym_i32] = ACTIONS(2808), + [anon_sym_u64] = ACTIONS(2808), + [anon_sym_i64] = ACTIONS(2808), + [anon_sym_u128] = ACTIONS(2808), + [anon_sym_i128] = ACTIONS(2808), + [anon_sym_isize] = ACTIONS(2808), + [anon_sym_usize] = ACTIONS(2808), + [anon_sym_f32] = ACTIONS(2808), + [anon_sym_f64] = ACTIONS(2808), + [anon_sym_bool] = ACTIONS(2808), + [anon_sym_str] = ACTIONS(2808), + [anon_sym_char] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_DOT_DOT] = ACTIONS(2806), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_gen] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_impl] = ACTIONS(2808), + [anon_sym_let] = ACTIONS(2808), + [anon_sym_loop] = ACTIONS(2808), + [anon_sym_match] = ACTIONS(2808), + [anon_sym_mod] = ACTIONS(2808), + [anon_sym_pub] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_trait] = ACTIONS(2808), + [anon_sym_type] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_unsafe] = ACTIONS(2808), + [anon_sym_use] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym_yield] = ACTIONS(2808), + [anon_sym_move] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [sym_integer_literal] = ACTIONS(2806), + [aux_sym_string_literal_token1] = ACTIONS(2806), + [sym_char_literal] = ACTIONS(2806), + [anon_sym_true] = ACTIONS(2808), + [anon_sym_false] = ACTIONS(2808), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2808), + [sym_super] = ACTIONS(2808), + [sym_crate] = ACTIONS(2808), + [sym_metavariable] = ACTIONS(2806), + [sym__raw_string_literal_start] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), + }, + [STATE(724)] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_macro_rules_BANG] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_u8] = ACTIONS(2801), - [anon_sym_i8] = ACTIONS(2801), - [anon_sym_u16] = ACTIONS(2801), - [anon_sym_i16] = ACTIONS(2801), - [anon_sym_u32] = ACTIONS(2801), - [anon_sym_i32] = ACTIONS(2801), - [anon_sym_u64] = ACTIONS(2801), - [anon_sym_i64] = ACTIONS(2801), - [anon_sym_u128] = ACTIONS(2801), - [anon_sym_i128] = ACTIONS(2801), - [anon_sym_isize] = ACTIONS(2801), - [anon_sym_usize] = ACTIONS(2801), - [anon_sym_f32] = ACTIONS(2801), - [anon_sym_f64] = ACTIONS(2801), - [anon_sym_bool] = ACTIONS(2801), - [anon_sym_str] = ACTIONS(2801), - [anon_sym_char] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_DOT_DOT] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_POUND] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_impl] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_loop] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_pub] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_trait] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_use] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_move] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [sym_integer_literal] = ACTIONS(2799), - [aux_sym_string_literal_token1] = ACTIONS(2799), - [sym_char_literal] = ACTIONS(2799), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_crate] = ACTIONS(2801), - [sym_metavariable] = ACTIONS(2799), - [sym__raw_string_literal_start] = ACTIONS(2799), - [sym_float_literal] = ACTIONS(2799), - }, - [725] = { + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_macro_rules_BANG] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_u8] = ACTIONS(2812), + [anon_sym_i8] = ACTIONS(2812), + [anon_sym_u16] = ACTIONS(2812), + [anon_sym_i16] = ACTIONS(2812), + [anon_sym_u32] = ACTIONS(2812), + [anon_sym_i32] = ACTIONS(2812), + [anon_sym_u64] = ACTIONS(2812), + [anon_sym_i64] = ACTIONS(2812), + [anon_sym_u128] = ACTIONS(2812), + [anon_sym_i128] = ACTIONS(2812), + [anon_sym_isize] = ACTIONS(2812), + [anon_sym_usize] = ACTIONS(2812), + [anon_sym_f32] = ACTIONS(2812), + [anon_sym_f64] = ACTIONS(2812), + [anon_sym_bool] = ACTIONS(2812), + [anon_sym_str] = ACTIONS(2812), + [anon_sym_char] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_DOT_DOT] = ACTIONS(2810), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2812), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_gen] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_impl] = ACTIONS(2812), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_loop] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_mod] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_trait] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_use] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym_yield] = ACTIONS(2812), + [anon_sym_move] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [sym_integer_literal] = ACTIONS(2810), + [aux_sym_string_literal_token1] = ACTIONS(2810), + [sym_char_literal] = ACTIONS(2810), + [anon_sym_true] = ACTIONS(2812), + [anon_sym_false] = ACTIONS(2812), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2812), + [sym_super] = ACTIONS(2812), + [sym_crate] = ACTIONS(2812), + [sym_metavariable] = ACTIONS(2810), + [sym__raw_string_literal_start] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2810), + }, + [STATE(725)] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_macro_rules_BANG] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_u8] = ACTIONS(2805), - [anon_sym_i8] = ACTIONS(2805), - [anon_sym_u16] = ACTIONS(2805), - [anon_sym_i16] = ACTIONS(2805), - [anon_sym_u32] = ACTIONS(2805), - [anon_sym_i32] = ACTIONS(2805), - [anon_sym_u64] = ACTIONS(2805), - [anon_sym_i64] = ACTIONS(2805), - [anon_sym_u128] = ACTIONS(2805), - [anon_sym_i128] = ACTIONS(2805), - [anon_sym_isize] = ACTIONS(2805), - [anon_sym_usize] = ACTIONS(2805), - [anon_sym_f32] = ACTIONS(2805), - [anon_sym_f64] = ACTIONS(2805), - [anon_sym_bool] = ACTIONS(2805), - [anon_sym_str] = ACTIONS(2805), - [anon_sym_char] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2803), - [anon_sym_LT] = ACTIONS(2803), - [anon_sym_DOT_DOT] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_POUND] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_fn] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_impl] = ACTIONS(2805), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_loop] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_mod] = ACTIONS(2805), - [anon_sym_pub] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_trait] = ACTIONS(2805), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_unsafe] = ACTIONS(2805), - [anon_sym_use] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_extern] = ACTIONS(2805), - [anon_sym_yield] = ACTIONS(2805), - [anon_sym_move] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [sym_integer_literal] = ACTIONS(2803), - [aux_sym_string_literal_token1] = ACTIONS(2803), - [sym_char_literal] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2805), - [anon_sym_false] = ACTIONS(2805), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2805), - [sym_super] = ACTIONS(2805), - [sym_crate] = ACTIONS(2805), - [sym_metavariable] = ACTIONS(2803), - [sym__raw_string_literal_start] = ACTIONS(2803), - [sym_float_literal] = ACTIONS(2803), - }, - [726] = { + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_macro_rules_BANG] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_u8] = ACTIONS(2816), + [anon_sym_i8] = ACTIONS(2816), + [anon_sym_u16] = ACTIONS(2816), + [anon_sym_i16] = ACTIONS(2816), + [anon_sym_u32] = ACTIONS(2816), + [anon_sym_i32] = ACTIONS(2816), + [anon_sym_u64] = ACTIONS(2816), + [anon_sym_i64] = ACTIONS(2816), + [anon_sym_u128] = ACTIONS(2816), + [anon_sym_i128] = ACTIONS(2816), + [anon_sym_isize] = ACTIONS(2816), + [anon_sym_usize] = ACTIONS(2816), + [anon_sym_f32] = ACTIONS(2816), + [anon_sym_f64] = ACTIONS(2816), + [anon_sym_bool] = ACTIONS(2816), + [anon_sym_str] = ACTIONS(2816), + [anon_sym_char] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_DOT_DOT] = ACTIONS(2814), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_fn] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_gen] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_impl] = ACTIONS(2816), + [anon_sym_let] = ACTIONS(2816), + [anon_sym_loop] = ACTIONS(2816), + [anon_sym_match] = ACTIONS(2816), + [anon_sym_mod] = ACTIONS(2816), + [anon_sym_pub] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_trait] = ACTIONS(2816), + [anon_sym_type] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_unsafe] = ACTIONS(2816), + [anon_sym_use] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym_yield] = ACTIONS(2816), + [anon_sym_move] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [sym_integer_literal] = ACTIONS(2814), + [aux_sym_string_literal_token1] = ACTIONS(2814), + [sym_char_literal] = ACTIONS(2814), + [anon_sym_true] = ACTIONS(2816), + [anon_sym_false] = ACTIONS(2816), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2816), + [sym_super] = ACTIONS(2816), + [sym_crate] = ACTIONS(2816), + [sym_metavariable] = ACTIONS(2814), + [sym__raw_string_literal_start] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), + }, + [STATE(726)] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_macro_rules_BANG] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_u8] = ACTIONS(2809), - [anon_sym_i8] = ACTIONS(2809), - [anon_sym_u16] = ACTIONS(2809), - [anon_sym_i16] = ACTIONS(2809), - [anon_sym_u32] = ACTIONS(2809), - [anon_sym_i32] = ACTIONS(2809), - [anon_sym_u64] = ACTIONS(2809), - [anon_sym_i64] = ACTIONS(2809), - [anon_sym_u128] = ACTIONS(2809), - [anon_sym_i128] = ACTIONS(2809), - [anon_sym_isize] = ACTIONS(2809), - [anon_sym_usize] = ACTIONS(2809), - [anon_sym_f32] = ACTIONS(2809), - [anon_sym_f64] = ACTIONS(2809), - [anon_sym_bool] = ACTIONS(2809), - [anon_sym_str] = ACTIONS(2809), - [anon_sym_char] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_LT] = ACTIONS(2807), - [anon_sym_DOT_DOT] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_async] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_fn] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_impl] = ACTIONS(2809), - [anon_sym_let] = ACTIONS(2809), - [anon_sym_loop] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_mod] = ACTIONS(2809), - [anon_sym_pub] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_trait] = ACTIONS(2809), - [anon_sym_type] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_unsafe] = ACTIONS(2809), - [anon_sym_use] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym_yield] = ACTIONS(2809), - [anon_sym_move] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [sym_integer_literal] = ACTIONS(2807), - [aux_sym_string_literal_token1] = ACTIONS(2807), - [sym_char_literal] = ACTIONS(2807), - [anon_sym_true] = ACTIONS(2809), - [anon_sym_false] = ACTIONS(2809), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2809), - [sym_super] = ACTIONS(2809), - [sym_crate] = ACTIONS(2809), - [sym_metavariable] = ACTIONS(2807), - [sym__raw_string_literal_start] = ACTIONS(2807), - [sym_float_literal] = ACTIONS(2807), - }, - [727] = { + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_macro_rules_BANG] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_u8] = ACTIONS(2820), + [anon_sym_i8] = ACTIONS(2820), + [anon_sym_u16] = ACTIONS(2820), + [anon_sym_i16] = ACTIONS(2820), + [anon_sym_u32] = ACTIONS(2820), + [anon_sym_i32] = ACTIONS(2820), + [anon_sym_u64] = ACTIONS(2820), + [anon_sym_i64] = ACTIONS(2820), + [anon_sym_u128] = ACTIONS(2820), + [anon_sym_i128] = ACTIONS(2820), + [anon_sym_isize] = ACTIONS(2820), + [anon_sym_usize] = ACTIONS(2820), + [anon_sym_f32] = ACTIONS(2820), + [anon_sym_f64] = ACTIONS(2820), + [anon_sym_bool] = ACTIONS(2820), + [anon_sym_str] = ACTIONS(2820), + [anon_sym_char] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_DOT_DOT] = ACTIONS(2818), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2820), + [anon_sym_async] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_fn] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_gen] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_impl] = ACTIONS(2820), + [anon_sym_let] = ACTIONS(2820), + [anon_sym_loop] = ACTIONS(2820), + [anon_sym_match] = ACTIONS(2820), + [anon_sym_mod] = ACTIONS(2820), + [anon_sym_pub] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_trait] = ACTIONS(2820), + [anon_sym_type] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_unsafe] = ACTIONS(2820), + [anon_sym_use] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_yield] = ACTIONS(2820), + [anon_sym_move] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [sym_integer_literal] = ACTIONS(2818), + [aux_sym_string_literal_token1] = ACTIONS(2818), + [sym_char_literal] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2820), + [anon_sym_false] = ACTIONS(2820), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2820), + [sym_super] = ACTIONS(2820), + [sym_crate] = ACTIONS(2820), + [sym_metavariable] = ACTIONS(2818), + [sym__raw_string_literal_start] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2818), + }, + [STATE(727)] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_macro_rules_BANG] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_u8] = ACTIONS(2813), - [anon_sym_i8] = ACTIONS(2813), - [anon_sym_u16] = ACTIONS(2813), - [anon_sym_i16] = ACTIONS(2813), - [anon_sym_u32] = ACTIONS(2813), - [anon_sym_i32] = ACTIONS(2813), - [anon_sym_u64] = ACTIONS(2813), - [anon_sym_i64] = ACTIONS(2813), - [anon_sym_u128] = ACTIONS(2813), - [anon_sym_i128] = ACTIONS(2813), - [anon_sym_isize] = ACTIONS(2813), - [anon_sym_usize] = ACTIONS(2813), - [anon_sym_f32] = ACTIONS(2813), - [anon_sym_f64] = ACTIONS(2813), - [anon_sym_bool] = ACTIONS(2813), - [anon_sym_str] = ACTIONS(2813), - [anon_sym_char] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LT] = ACTIONS(2811), - [anon_sym_DOT_DOT] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_impl] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2813), - [anon_sym_loop] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_mod] = ACTIONS(2813), - [anon_sym_pub] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_trait] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_use] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym_yield] = ACTIONS(2813), - [anon_sym_move] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [sym_integer_literal] = ACTIONS(2811), - [aux_sym_string_literal_token1] = ACTIONS(2811), - [sym_char_literal] = ACTIONS(2811), - [anon_sym_true] = ACTIONS(2813), - [anon_sym_false] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2813), - [sym_super] = ACTIONS(2813), - [sym_crate] = ACTIONS(2813), - [sym_metavariable] = ACTIONS(2811), - [sym__raw_string_literal_start] = ACTIONS(2811), - [sym_float_literal] = ACTIONS(2811), - }, - [728] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_macro_rules_BANG] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_u8] = ACTIONS(2824), + [anon_sym_i8] = ACTIONS(2824), + [anon_sym_u16] = ACTIONS(2824), + [anon_sym_i16] = ACTIONS(2824), + [anon_sym_u32] = ACTIONS(2824), + [anon_sym_i32] = ACTIONS(2824), + [anon_sym_u64] = ACTIONS(2824), + [anon_sym_i64] = ACTIONS(2824), + [anon_sym_u128] = ACTIONS(2824), + [anon_sym_i128] = ACTIONS(2824), + [anon_sym_isize] = ACTIONS(2824), + [anon_sym_usize] = ACTIONS(2824), + [anon_sym_f32] = ACTIONS(2824), + [anon_sym_f64] = ACTIONS(2824), + [anon_sym_bool] = ACTIONS(2824), + [anon_sym_str] = ACTIONS(2824), + [anon_sym_char] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_DOT_DOT] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_fn] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_gen] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_impl] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_loop] = ACTIONS(2824), + [anon_sym_match] = ACTIONS(2824), + [anon_sym_mod] = ACTIONS(2824), + [anon_sym_pub] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_trait] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_unsafe] = ACTIONS(2824), + [anon_sym_use] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(2824), + [anon_sym_move] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [sym_integer_literal] = ACTIONS(2822), + [aux_sym_string_literal_token1] = ACTIONS(2822), + [sym_char_literal] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_crate] = ACTIONS(2824), + [sym_metavariable] = ACTIONS(2822), + [sym__raw_string_literal_start] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), + }, + [STATE(728)] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_macro_rules_BANG] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_u8] = ACTIONS(2817), - [anon_sym_i8] = ACTIONS(2817), - [anon_sym_u16] = ACTIONS(2817), - [anon_sym_i16] = ACTIONS(2817), - [anon_sym_u32] = ACTIONS(2817), - [anon_sym_i32] = ACTIONS(2817), - [anon_sym_u64] = ACTIONS(2817), - [anon_sym_i64] = ACTIONS(2817), - [anon_sym_u128] = ACTIONS(2817), - [anon_sym_i128] = ACTIONS(2817), - [anon_sym_isize] = ACTIONS(2817), - [anon_sym_usize] = ACTIONS(2817), - [anon_sym_f32] = ACTIONS(2817), - [anon_sym_f64] = ACTIONS(2817), - [anon_sym_bool] = ACTIONS(2817), - [anon_sym_str] = ACTIONS(2817), - [anon_sym_char] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_DOT_DOT] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_async] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_impl] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2817), - [anon_sym_loop] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_mod] = ACTIONS(2817), - [anon_sym_pub] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_trait] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_use] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym_yield] = ACTIONS(2817), - [anon_sym_move] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [sym_integer_literal] = ACTIONS(2815), - [aux_sym_string_literal_token1] = ACTIONS(2815), - [sym_char_literal] = ACTIONS(2815), - [anon_sym_true] = ACTIONS(2817), - [anon_sym_false] = ACTIONS(2817), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2817), - [sym_super] = ACTIONS(2817), - [sym_crate] = ACTIONS(2817), - [sym_metavariable] = ACTIONS(2815), - [sym__raw_string_literal_start] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - }, - [729] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_macro_rules_BANG] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_u8] = ACTIONS(2828), + [anon_sym_i8] = ACTIONS(2828), + [anon_sym_u16] = ACTIONS(2828), + [anon_sym_i16] = ACTIONS(2828), + [anon_sym_u32] = ACTIONS(2828), + [anon_sym_i32] = ACTIONS(2828), + [anon_sym_u64] = ACTIONS(2828), + [anon_sym_i64] = ACTIONS(2828), + [anon_sym_u128] = ACTIONS(2828), + [anon_sym_i128] = ACTIONS(2828), + [anon_sym_isize] = ACTIONS(2828), + [anon_sym_usize] = ACTIONS(2828), + [anon_sym_f32] = ACTIONS(2828), + [anon_sym_f64] = ACTIONS(2828), + [anon_sym_bool] = ACTIONS(2828), + [anon_sym_str] = ACTIONS(2828), + [anon_sym_char] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_DOT_DOT] = ACTIONS(2826), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_fn] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_gen] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_impl] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_loop] = ACTIONS(2828), + [anon_sym_match] = ACTIONS(2828), + [anon_sym_mod] = ACTIONS(2828), + [anon_sym_pub] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_trait] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_unsafe] = ACTIONS(2828), + [anon_sym_use] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_move] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [sym_integer_literal] = ACTIONS(2826), + [aux_sym_string_literal_token1] = ACTIONS(2826), + [sym_char_literal] = ACTIONS(2826), + [anon_sym_true] = ACTIONS(2828), + [anon_sym_false] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_crate] = ACTIONS(2828), + [sym_metavariable] = ACTIONS(2826), + [sym__raw_string_literal_start] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2826), + }, + [STATE(729)] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_identifier] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_macro_rules_BANG] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_u8] = ACTIONS(2821), - [anon_sym_i8] = ACTIONS(2821), - [anon_sym_u16] = ACTIONS(2821), - [anon_sym_i16] = ACTIONS(2821), - [anon_sym_u32] = ACTIONS(2821), - [anon_sym_i32] = ACTIONS(2821), - [anon_sym_u64] = ACTIONS(2821), - [anon_sym_i64] = ACTIONS(2821), - [anon_sym_u128] = ACTIONS(2821), - [anon_sym_i128] = ACTIONS(2821), - [anon_sym_isize] = ACTIONS(2821), - [anon_sym_usize] = ACTIONS(2821), - [anon_sym_f32] = ACTIONS(2821), - [anon_sym_f64] = ACTIONS(2821), - [anon_sym_bool] = ACTIONS(2821), - [anon_sym_str] = ACTIONS(2821), - [anon_sym_char] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_DOT_DOT] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_fn] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_impl] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2821), - [anon_sym_loop] = ACTIONS(2821), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_mod] = ACTIONS(2821), - [anon_sym_pub] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_trait] = ACTIONS(2821), - [anon_sym_type] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_unsafe] = ACTIONS(2821), - [anon_sym_use] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_move] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [sym_integer_literal] = ACTIONS(2819), - [aux_sym_string_literal_token1] = ACTIONS(2819), - [sym_char_literal] = ACTIONS(2819), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2821), - [sym_super] = ACTIONS(2821), - [sym_crate] = ACTIONS(2821), - [sym_metavariable] = ACTIONS(2819), - [sym__raw_string_literal_start] = ACTIONS(2819), - [sym_float_literal] = ACTIONS(2819), - }, - [730] = { + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_macro_rules_BANG] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_u8] = ACTIONS(2832), + [anon_sym_i8] = ACTIONS(2832), + [anon_sym_u16] = ACTIONS(2832), + [anon_sym_i16] = ACTIONS(2832), + [anon_sym_u32] = ACTIONS(2832), + [anon_sym_i32] = ACTIONS(2832), + [anon_sym_u64] = ACTIONS(2832), + [anon_sym_i64] = ACTIONS(2832), + [anon_sym_u128] = ACTIONS(2832), + [anon_sym_i128] = ACTIONS(2832), + [anon_sym_isize] = ACTIONS(2832), + [anon_sym_usize] = ACTIONS(2832), + [anon_sym_f32] = ACTIONS(2832), + [anon_sym_f64] = ACTIONS(2832), + [anon_sym_bool] = ACTIONS(2832), + [anon_sym_str] = ACTIONS(2832), + [anon_sym_char] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_DOT_DOT] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_async] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_fn] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_gen] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_impl] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_mod] = ACTIONS(2832), + [anon_sym_pub] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_trait] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_unsafe] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_yield] = ACTIONS(2832), + [anon_sym_move] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [sym_integer_literal] = ACTIONS(2830), + [aux_sym_string_literal_token1] = ACTIONS(2830), + [sym_char_literal] = ACTIONS(2830), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2832), + [sym_super] = ACTIONS(2832), + [sym_crate] = ACTIONS(2832), + [sym_metavariable] = ACTIONS(2830), + [sym__raw_string_literal_start] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2830), + }, + [STATE(730)] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_macro_rules_BANG] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_u8] = ACTIONS(2825), - [anon_sym_i8] = ACTIONS(2825), - [anon_sym_u16] = ACTIONS(2825), - [anon_sym_i16] = ACTIONS(2825), - [anon_sym_u32] = ACTIONS(2825), - [anon_sym_i32] = ACTIONS(2825), - [anon_sym_u64] = ACTIONS(2825), - [anon_sym_i64] = ACTIONS(2825), - [anon_sym_u128] = ACTIONS(2825), - [anon_sym_i128] = ACTIONS(2825), - [anon_sym_isize] = ACTIONS(2825), - [anon_sym_usize] = ACTIONS(2825), - [anon_sym_f32] = ACTIONS(2825), - [anon_sym_f64] = ACTIONS(2825), - [anon_sym_bool] = ACTIONS(2825), - [anon_sym_str] = ACTIONS(2825), - [anon_sym_char] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_DOT_DOT] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_async] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_fn] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_impl] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2825), - [anon_sym_loop] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2825), - [anon_sym_mod] = ACTIONS(2825), - [anon_sym_pub] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_trait] = ACTIONS(2825), - [anon_sym_type] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2825), - [anon_sym_use] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym_yield] = ACTIONS(2825), - [anon_sym_move] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [sym_integer_literal] = ACTIONS(2823), - [aux_sym_string_literal_token1] = ACTIONS(2823), - [sym_char_literal] = ACTIONS(2823), - [anon_sym_true] = ACTIONS(2825), - [anon_sym_false] = ACTIONS(2825), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2825), - [sym_super] = ACTIONS(2825), - [sym_crate] = ACTIONS(2825), - [sym_metavariable] = ACTIONS(2823), - [sym__raw_string_literal_start] = ACTIONS(2823), - [sym_float_literal] = ACTIONS(2823), - }, - [731] = { + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_macro_rules_BANG] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_u8] = ACTIONS(2836), + [anon_sym_i8] = ACTIONS(2836), + [anon_sym_u16] = ACTIONS(2836), + [anon_sym_i16] = ACTIONS(2836), + [anon_sym_u32] = ACTIONS(2836), + [anon_sym_i32] = ACTIONS(2836), + [anon_sym_u64] = ACTIONS(2836), + [anon_sym_i64] = ACTIONS(2836), + [anon_sym_u128] = ACTIONS(2836), + [anon_sym_i128] = ACTIONS(2836), + [anon_sym_isize] = ACTIONS(2836), + [anon_sym_usize] = ACTIONS(2836), + [anon_sym_f32] = ACTIONS(2836), + [anon_sym_f64] = ACTIONS(2836), + [anon_sym_bool] = ACTIONS(2836), + [anon_sym_str] = ACTIONS(2836), + [anon_sym_char] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_DOT_DOT] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_async] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_fn] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_gen] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_impl] = ACTIONS(2836), + [anon_sym_let] = ACTIONS(2836), + [anon_sym_loop] = ACTIONS(2836), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_mod] = ACTIONS(2836), + [anon_sym_pub] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_trait] = ACTIONS(2836), + [anon_sym_type] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_unsafe] = ACTIONS(2836), + [anon_sym_use] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym_yield] = ACTIONS(2836), + [anon_sym_move] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [sym_integer_literal] = ACTIONS(2834), + [aux_sym_string_literal_token1] = ACTIONS(2834), + [sym_char_literal] = ACTIONS(2834), + [anon_sym_true] = ACTIONS(2836), + [anon_sym_false] = ACTIONS(2836), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2836), + [sym_super] = ACTIONS(2836), + [sym_crate] = ACTIONS(2836), + [sym_metavariable] = ACTIONS(2834), + [sym__raw_string_literal_start] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2834), + }, + [STATE(731)] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_macro_rules_BANG] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_u8] = ACTIONS(2829), - [anon_sym_i8] = ACTIONS(2829), - [anon_sym_u16] = ACTIONS(2829), - [anon_sym_i16] = ACTIONS(2829), - [anon_sym_u32] = ACTIONS(2829), - [anon_sym_i32] = ACTIONS(2829), - [anon_sym_u64] = ACTIONS(2829), - [anon_sym_i64] = ACTIONS(2829), - [anon_sym_u128] = ACTIONS(2829), - [anon_sym_i128] = ACTIONS(2829), - [anon_sym_isize] = ACTIONS(2829), - [anon_sym_usize] = ACTIONS(2829), - [anon_sym_f32] = ACTIONS(2829), - [anon_sym_f64] = ACTIONS(2829), - [anon_sym_bool] = ACTIONS(2829), - [anon_sym_str] = ACTIONS(2829), - [anon_sym_char] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_DOT_DOT] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_async] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_fn] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_impl] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2829), - [anon_sym_loop] = ACTIONS(2829), - [anon_sym_match] = ACTIONS(2829), - [anon_sym_mod] = ACTIONS(2829), - [anon_sym_pub] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_trait] = ACTIONS(2829), - [anon_sym_type] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(2829), - [anon_sym_use] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym_yield] = ACTIONS(2829), - [anon_sym_move] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [sym_integer_literal] = ACTIONS(2827), - [aux_sym_string_literal_token1] = ACTIONS(2827), - [sym_char_literal] = ACTIONS(2827), - [anon_sym_true] = ACTIONS(2829), - [anon_sym_false] = ACTIONS(2829), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2829), - [sym_super] = ACTIONS(2829), - [sym_crate] = ACTIONS(2829), - [sym_metavariable] = ACTIONS(2827), - [sym__raw_string_literal_start] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), - }, - [732] = { + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym_macro_rules_BANG] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_u8] = ACTIONS(2840), + [anon_sym_i8] = ACTIONS(2840), + [anon_sym_u16] = ACTIONS(2840), + [anon_sym_i16] = ACTIONS(2840), + [anon_sym_u32] = ACTIONS(2840), + [anon_sym_i32] = ACTIONS(2840), + [anon_sym_u64] = ACTIONS(2840), + [anon_sym_i64] = ACTIONS(2840), + [anon_sym_u128] = ACTIONS(2840), + [anon_sym_i128] = ACTIONS(2840), + [anon_sym_isize] = ACTIONS(2840), + [anon_sym_usize] = ACTIONS(2840), + [anon_sym_f32] = ACTIONS(2840), + [anon_sym_f64] = ACTIONS(2840), + [anon_sym_bool] = ACTIONS(2840), + [anon_sym_str] = ACTIONS(2840), + [anon_sym_char] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_DOT_DOT] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_async] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_fn] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_gen] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_impl] = ACTIONS(2840), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_loop] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2840), + [anon_sym_mod] = ACTIONS(2840), + [anon_sym_pub] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_trait] = ACTIONS(2840), + [anon_sym_type] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2840), + [anon_sym_use] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym_yield] = ACTIONS(2840), + [anon_sym_move] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [sym_integer_literal] = ACTIONS(2838), + [aux_sym_string_literal_token1] = ACTIONS(2838), + [sym_char_literal] = ACTIONS(2838), + [anon_sym_true] = ACTIONS(2840), + [anon_sym_false] = ACTIONS(2840), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2840), + [sym_super] = ACTIONS(2840), + [sym_crate] = ACTIONS(2840), + [sym_metavariable] = ACTIONS(2838), + [sym__raw_string_literal_start] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2838), + }, + [STATE(732)] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_macro_rules_BANG] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_u8] = ACTIONS(2833), - [anon_sym_i8] = ACTIONS(2833), - [anon_sym_u16] = ACTIONS(2833), - [anon_sym_i16] = ACTIONS(2833), - [anon_sym_u32] = ACTIONS(2833), - [anon_sym_i32] = ACTIONS(2833), - [anon_sym_u64] = ACTIONS(2833), - [anon_sym_i64] = ACTIONS(2833), - [anon_sym_u128] = ACTIONS(2833), - [anon_sym_i128] = ACTIONS(2833), - [anon_sym_isize] = ACTIONS(2833), - [anon_sym_usize] = ACTIONS(2833), - [anon_sym_f32] = ACTIONS(2833), - [anon_sym_f64] = ACTIONS(2833), - [anon_sym_bool] = ACTIONS(2833), - [anon_sym_str] = ACTIONS(2833), - [anon_sym_char] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_DOT_DOT] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_async] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), - [anon_sym_fn] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_impl] = ACTIONS(2833), - [anon_sym_let] = ACTIONS(2833), - [anon_sym_loop] = ACTIONS(2833), - [anon_sym_match] = ACTIONS(2833), - [anon_sym_mod] = ACTIONS(2833), - [anon_sym_pub] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_trait] = ACTIONS(2833), - [anon_sym_type] = ACTIONS(2833), - [anon_sym_union] = ACTIONS(2833), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_use] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_extern] = ACTIONS(2833), - [anon_sym_yield] = ACTIONS(2833), - [anon_sym_move] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [sym_integer_literal] = ACTIONS(2831), - [aux_sym_string_literal_token1] = ACTIONS(2831), - [sym_char_literal] = ACTIONS(2831), - [anon_sym_true] = ACTIONS(2833), - [anon_sym_false] = ACTIONS(2833), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2833), - [sym_super] = ACTIONS(2833), - [sym_crate] = ACTIONS(2833), - [sym_metavariable] = ACTIONS(2831), - [sym__raw_string_literal_start] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), - }, - [733] = { + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_macro_rules_BANG] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_u8] = ACTIONS(2844), + [anon_sym_i8] = ACTIONS(2844), + [anon_sym_u16] = ACTIONS(2844), + [anon_sym_i16] = ACTIONS(2844), + [anon_sym_u32] = ACTIONS(2844), + [anon_sym_i32] = ACTIONS(2844), + [anon_sym_u64] = ACTIONS(2844), + [anon_sym_i64] = ACTIONS(2844), + [anon_sym_u128] = ACTIONS(2844), + [anon_sym_i128] = ACTIONS(2844), + [anon_sym_isize] = ACTIONS(2844), + [anon_sym_usize] = ACTIONS(2844), + [anon_sym_f32] = ACTIONS(2844), + [anon_sym_f64] = ACTIONS(2844), + [anon_sym_bool] = ACTIONS(2844), + [anon_sym_str] = ACTIONS(2844), + [anon_sym_char] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_DOT_DOT] = ACTIONS(2842), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2844), + [anon_sym_async] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_gen] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_impl] = ACTIONS(2844), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_loop] = ACTIONS(2844), + [anon_sym_match] = ACTIONS(2844), + [anon_sym_mod] = ACTIONS(2844), + [anon_sym_pub] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_trait] = ACTIONS(2844), + [anon_sym_type] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_unsafe] = ACTIONS(2844), + [anon_sym_use] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym_yield] = ACTIONS(2844), + [anon_sym_move] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [sym_integer_literal] = ACTIONS(2842), + [aux_sym_string_literal_token1] = ACTIONS(2842), + [sym_char_literal] = ACTIONS(2842), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2844), + [sym_super] = ACTIONS(2844), + [sym_crate] = ACTIONS(2844), + [sym_metavariable] = ACTIONS(2842), + [sym__raw_string_literal_start] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2842), + }, + [STATE(733)] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_macro_rules_BANG] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_u8] = ACTIONS(2837), - [anon_sym_i8] = ACTIONS(2837), - [anon_sym_u16] = ACTIONS(2837), - [anon_sym_i16] = ACTIONS(2837), - [anon_sym_u32] = ACTIONS(2837), - [anon_sym_i32] = ACTIONS(2837), - [anon_sym_u64] = ACTIONS(2837), - [anon_sym_i64] = ACTIONS(2837), - [anon_sym_u128] = ACTIONS(2837), - [anon_sym_i128] = ACTIONS(2837), - [anon_sym_isize] = ACTIONS(2837), - [anon_sym_usize] = ACTIONS(2837), - [anon_sym_f32] = ACTIONS(2837), - [anon_sym_f64] = ACTIONS(2837), - [anon_sym_bool] = ACTIONS(2837), - [anon_sym_str] = ACTIONS(2837), - [anon_sym_char] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LT] = ACTIONS(2835), - [anon_sym_DOT_DOT] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_async] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_impl] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2837), - [anon_sym_loop] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_mod] = ACTIONS(2837), - [anon_sym_pub] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_trait] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_use] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_extern] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_move] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [sym_integer_literal] = ACTIONS(2835), - [aux_sym_string_literal_token1] = ACTIONS(2835), - [sym_char_literal] = ACTIONS(2835), - [anon_sym_true] = ACTIONS(2837), - [anon_sym_false] = ACTIONS(2837), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2837), - [sym_super] = ACTIONS(2837), - [sym_crate] = ACTIONS(2837), - [sym_metavariable] = ACTIONS(2835), - [sym__raw_string_literal_start] = ACTIONS(2835), - [sym_float_literal] = ACTIONS(2835), - }, - [734] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_macro_rules_BANG] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_u8] = ACTIONS(2848), + [anon_sym_i8] = ACTIONS(2848), + [anon_sym_u16] = ACTIONS(2848), + [anon_sym_i16] = ACTIONS(2848), + [anon_sym_u32] = ACTIONS(2848), + [anon_sym_i32] = ACTIONS(2848), + [anon_sym_u64] = ACTIONS(2848), + [anon_sym_i64] = ACTIONS(2848), + [anon_sym_u128] = ACTIONS(2848), + [anon_sym_i128] = ACTIONS(2848), + [anon_sym_isize] = ACTIONS(2848), + [anon_sym_usize] = ACTIONS(2848), + [anon_sym_f32] = ACTIONS(2848), + [anon_sym_f64] = ACTIONS(2848), + [anon_sym_bool] = ACTIONS(2848), + [anon_sym_str] = ACTIONS(2848), + [anon_sym_char] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_DOT_DOT] = ACTIONS(2846), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2848), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_fn] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_gen] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_impl] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_loop] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_mod] = ACTIONS(2848), + [anon_sym_pub] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_trait] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(2848), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_move] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [sym_integer_literal] = ACTIONS(2846), + [aux_sym_string_literal_token1] = ACTIONS(2846), + [sym_char_literal] = ACTIONS(2846), + [anon_sym_true] = ACTIONS(2848), + [anon_sym_false] = ACTIONS(2848), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2848), + [sym_super] = ACTIONS(2848), + [sym_crate] = ACTIONS(2848), + [sym_metavariable] = ACTIONS(2846), + [sym__raw_string_literal_start] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + }, + [STATE(734)] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_macro_rules_BANG] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_u8] = ACTIONS(2841), - [anon_sym_i8] = ACTIONS(2841), - [anon_sym_u16] = ACTIONS(2841), - [anon_sym_i16] = ACTIONS(2841), - [anon_sym_u32] = ACTIONS(2841), - [anon_sym_i32] = ACTIONS(2841), - [anon_sym_u64] = ACTIONS(2841), - [anon_sym_i64] = ACTIONS(2841), - [anon_sym_u128] = ACTIONS(2841), - [anon_sym_i128] = ACTIONS(2841), - [anon_sym_isize] = ACTIONS(2841), - [anon_sym_usize] = ACTIONS(2841), - [anon_sym_f32] = ACTIONS(2841), - [anon_sym_f64] = ACTIONS(2841), - [anon_sym_bool] = ACTIONS(2841), - [anon_sym_str] = ACTIONS(2841), - [anon_sym_char] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_PIPE] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_DOT_DOT] = ACTIONS(2839), - [anon_sym_COLON_COLON] = ACTIONS(2839), - [anon_sym_POUND] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [anon_sym_fn] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_impl] = ACTIONS(2841), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_loop] = ACTIONS(2841), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_mod] = ACTIONS(2841), - [anon_sym_pub] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_trait] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_union] = ACTIONS(2841), - [anon_sym_unsafe] = ACTIONS(2841), - [anon_sym_use] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_extern] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_move] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [sym_integer_literal] = ACTIONS(2839), - [aux_sym_string_literal_token1] = ACTIONS(2839), - [sym_char_literal] = ACTIONS(2839), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2841), - [sym_super] = ACTIONS(2841), - [sym_crate] = ACTIONS(2841), - [sym_metavariable] = ACTIONS(2839), - [sym__raw_string_literal_start] = ACTIONS(2839), - [sym_float_literal] = ACTIONS(2839), - }, - [735] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_macro_rules_BANG] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_u8] = ACTIONS(2852), + [anon_sym_i8] = ACTIONS(2852), + [anon_sym_u16] = ACTIONS(2852), + [anon_sym_i16] = ACTIONS(2852), + [anon_sym_u32] = ACTIONS(2852), + [anon_sym_i32] = ACTIONS(2852), + [anon_sym_u64] = ACTIONS(2852), + [anon_sym_i64] = ACTIONS(2852), + [anon_sym_u128] = ACTIONS(2852), + [anon_sym_i128] = ACTIONS(2852), + [anon_sym_isize] = ACTIONS(2852), + [anon_sym_usize] = ACTIONS(2852), + [anon_sym_f32] = ACTIONS(2852), + [anon_sym_f64] = ACTIONS(2852), + [anon_sym_bool] = ACTIONS(2852), + [anon_sym_str] = ACTIONS(2852), + [anon_sym_char] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2852), + [anon_sym_async] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_fn] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_gen] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_impl] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_loop] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_mod] = ACTIONS(2852), + [anon_sym_pub] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_trait] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_unsafe] = ACTIONS(2852), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_move] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [sym_integer_literal] = ACTIONS(2850), + [aux_sym_string_literal_token1] = ACTIONS(2850), + [sym_char_literal] = ACTIONS(2850), + [anon_sym_true] = ACTIONS(2852), + [anon_sym_false] = ACTIONS(2852), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2852), + [sym_super] = ACTIONS(2852), + [sym_crate] = ACTIONS(2852), + [sym_metavariable] = ACTIONS(2850), + [sym__raw_string_literal_start] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2850), + }, + [STATE(735)] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_macro_rules_BANG] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_u8] = ACTIONS(2845), - [anon_sym_i8] = ACTIONS(2845), - [anon_sym_u16] = ACTIONS(2845), - [anon_sym_i16] = ACTIONS(2845), - [anon_sym_u32] = ACTIONS(2845), - [anon_sym_i32] = ACTIONS(2845), - [anon_sym_u64] = ACTIONS(2845), - [anon_sym_i64] = ACTIONS(2845), - [anon_sym_u128] = ACTIONS(2845), - [anon_sym_i128] = ACTIONS(2845), - [anon_sym_isize] = ACTIONS(2845), - [anon_sym_usize] = ACTIONS(2845), - [anon_sym_f32] = ACTIONS(2845), - [anon_sym_f64] = ACTIONS(2845), - [anon_sym_bool] = ACTIONS(2845), - [anon_sym_str] = ACTIONS(2845), - [anon_sym_char] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_impl] = ACTIONS(2845), - [anon_sym_let] = ACTIONS(2845), - [anon_sym_loop] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_mod] = ACTIONS(2845), - [anon_sym_pub] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_trait] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_unsafe] = ACTIONS(2845), - [anon_sym_use] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_extern] = ACTIONS(2845), - [anon_sym_yield] = ACTIONS(2845), - [anon_sym_move] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [sym_integer_literal] = ACTIONS(2843), - [aux_sym_string_literal_token1] = ACTIONS(2843), - [sym_char_literal] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2845), - [sym_super] = ACTIONS(2845), - [sym_crate] = ACTIONS(2845), - [sym_metavariable] = ACTIONS(2843), - [sym__raw_string_literal_start] = ACTIONS(2843), - [sym_float_literal] = ACTIONS(2843), - }, - [736] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_macro_rules_BANG] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_u8] = ACTIONS(2856), + [anon_sym_i8] = ACTIONS(2856), + [anon_sym_u16] = ACTIONS(2856), + [anon_sym_i16] = ACTIONS(2856), + [anon_sym_u32] = ACTIONS(2856), + [anon_sym_i32] = ACTIONS(2856), + [anon_sym_u64] = ACTIONS(2856), + [anon_sym_i64] = ACTIONS(2856), + [anon_sym_u128] = ACTIONS(2856), + [anon_sym_i128] = ACTIONS(2856), + [anon_sym_isize] = ACTIONS(2856), + [anon_sym_usize] = ACTIONS(2856), + [anon_sym_f32] = ACTIONS(2856), + [anon_sym_f64] = ACTIONS(2856), + [anon_sym_bool] = ACTIONS(2856), + [anon_sym_str] = ACTIONS(2856), + [anon_sym_char] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_DOT_DOT] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2856), + [anon_sym_async] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_fn] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_gen] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_impl] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_loop] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_mod] = ACTIONS(2856), + [anon_sym_pub] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_trait] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_unsafe] = ACTIONS(2856), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_move] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [sym_integer_literal] = ACTIONS(2854), + [aux_sym_string_literal_token1] = ACTIONS(2854), + [sym_char_literal] = ACTIONS(2854), + [anon_sym_true] = ACTIONS(2856), + [anon_sym_false] = ACTIONS(2856), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_crate] = ACTIONS(2856), + [sym_metavariable] = ACTIONS(2854), + [sym__raw_string_literal_start] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + }, + [STATE(736)] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2847), - [sym_identifier] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_macro_rules_BANG] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_u8] = ACTIONS(2849), - [anon_sym_i8] = ACTIONS(2849), - [anon_sym_u16] = ACTIONS(2849), - [anon_sym_i16] = ACTIONS(2849), - [anon_sym_u32] = ACTIONS(2849), - [anon_sym_i32] = ACTIONS(2849), - [anon_sym_u64] = ACTIONS(2849), - [anon_sym_i64] = ACTIONS(2849), - [anon_sym_u128] = ACTIONS(2849), - [anon_sym_i128] = ACTIONS(2849), - [anon_sym_isize] = ACTIONS(2849), - [anon_sym_usize] = ACTIONS(2849), - [anon_sym_f32] = ACTIONS(2849), - [anon_sym_f64] = ACTIONS(2849), - [anon_sym_bool] = ACTIONS(2849), - [anon_sym_str] = ACTIONS(2849), - [anon_sym_char] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_DOT_DOT] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_POUND] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_async] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_fn] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_impl] = ACTIONS(2849), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_loop] = ACTIONS(2849), - [anon_sym_match] = ACTIONS(2849), - [anon_sym_mod] = ACTIONS(2849), - [anon_sym_pub] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_trait] = ACTIONS(2849), - [anon_sym_type] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(2849), - [anon_sym_use] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym_yield] = ACTIONS(2849), - [anon_sym_move] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [sym_integer_literal] = ACTIONS(2847), - [aux_sym_string_literal_token1] = ACTIONS(2847), - [sym_char_literal] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2849), - [anon_sym_false] = ACTIONS(2849), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2849), - [sym_super] = ACTIONS(2849), - [sym_crate] = ACTIONS(2849), - [sym_metavariable] = ACTIONS(2847), - [sym__raw_string_literal_start] = ACTIONS(2847), - [sym_float_literal] = ACTIONS(2847), - }, - [737] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_macro_rules_BANG] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_u8] = ACTIONS(2860), + [anon_sym_i8] = ACTIONS(2860), + [anon_sym_u16] = ACTIONS(2860), + [anon_sym_i16] = ACTIONS(2860), + [anon_sym_u32] = ACTIONS(2860), + [anon_sym_i32] = ACTIONS(2860), + [anon_sym_u64] = ACTIONS(2860), + [anon_sym_i64] = ACTIONS(2860), + [anon_sym_u128] = ACTIONS(2860), + [anon_sym_i128] = ACTIONS(2860), + [anon_sym_isize] = ACTIONS(2860), + [anon_sym_usize] = ACTIONS(2860), + [anon_sym_f32] = ACTIONS(2860), + [anon_sym_f64] = ACTIONS(2860), + [anon_sym_bool] = ACTIONS(2860), + [anon_sym_str] = ACTIONS(2860), + [anon_sym_char] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_DOT_DOT] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2860), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_fn] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_gen] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_impl] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_loop] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_mod] = ACTIONS(2860), + [anon_sym_pub] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_trait] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_unsafe] = ACTIONS(2860), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_move] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [sym_integer_literal] = ACTIONS(2858), + [aux_sym_string_literal_token1] = ACTIONS(2858), + [sym_char_literal] = ACTIONS(2858), + [anon_sym_true] = ACTIONS(2860), + [anon_sym_false] = ACTIONS(2860), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_crate] = ACTIONS(2860), + [sym_metavariable] = ACTIONS(2858), + [sym__raw_string_literal_start] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + }, + [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2851), - [sym_identifier] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_macro_rules_BANG] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_u8] = ACTIONS(2853), - [anon_sym_i8] = ACTIONS(2853), - [anon_sym_u16] = ACTIONS(2853), - [anon_sym_i16] = ACTIONS(2853), - [anon_sym_u32] = ACTIONS(2853), - [anon_sym_i32] = ACTIONS(2853), - [anon_sym_u64] = ACTIONS(2853), - [anon_sym_i64] = ACTIONS(2853), - [anon_sym_u128] = ACTIONS(2853), - [anon_sym_i128] = ACTIONS(2853), - [anon_sym_isize] = ACTIONS(2853), - [anon_sym_usize] = ACTIONS(2853), - [anon_sym_f32] = ACTIONS(2853), - [anon_sym_f64] = ACTIONS(2853), - [anon_sym_bool] = ACTIONS(2853), - [anon_sym_str] = ACTIONS(2853), - [anon_sym_char] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_DOT_DOT] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_async] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_fn] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_impl] = ACTIONS(2853), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_loop] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2853), - [anon_sym_mod] = ACTIONS(2853), - [anon_sym_pub] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_trait] = ACTIONS(2853), - [anon_sym_type] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_unsafe] = ACTIONS(2853), - [anon_sym_use] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_yield] = ACTIONS(2853), - [anon_sym_move] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [sym_integer_literal] = ACTIONS(2851), - [aux_sym_string_literal_token1] = ACTIONS(2851), - [sym_char_literal] = ACTIONS(2851), - [anon_sym_true] = ACTIONS(2853), - [anon_sym_false] = ACTIONS(2853), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2853), - [sym_super] = ACTIONS(2853), - [sym_crate] = ACTIONS(2853), - [sym_metavariable] = ACTIONS(2851), - [sym__raw_string_literal_start] = ACTIONS(2851), - [sym_float_literal] = ACTIONS(2851), - }, - [738] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_macro_rules_BANG] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_u8] = ACTIONS(2864), + [anon_sym_i8] = ACTIONS(2864), + [anon_sym_u16] = ACTIONS(2864), + [anon_sym_i16] = ACTIONS(2864), + [anon_sym_u32] = ACTIONS(2864), + [anon_sym_i32] = ACTIONS(2864), + [anon_sym_u64] = ACTIONS(2864), + [anon_sym_i64] = ACTIONS(2864), + [anon_sym_u128] = ACTIONS(2864), + [anon_sym_i128] = ACTIONS(2864), + [anon_sym_isize] = ACTIONS(2864), + [anon_sym_usize] = ACTIONS(2864), + [anon_sym_f32] = ACTIONS(2864), + [anon_sym_f64] = ACTIONS(2864), + [anon_sym_bool] = ACTIONS(2864), + [anon_sym_str] = ACTIONS(2864), + [anon_sym_char] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2864), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_fn] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_gen] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_impl] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_loop] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_mod] = ACTIONS(2864), + [anon_sym_pub] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_trait] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_unsafe] = ACTIONS(2864), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_move] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [sym_integer_literal] = ACTIONS(2862), + [aux_sym_string_literal_token1] = ACTIONS(2862), + [sym_char_literal] = ACTIONS(2862), + [anon_sym_true] = ACTIONS(2864), + [anon_sym_false] = ACTIONS(2864), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2864), + [sym_super] = ACTIONS(2864), + [sym_crate] = ACTIONS(2864), + [sym_metavariable] = ACTIONS(2862), + [sym__raw_string_literal_start] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), + }, + [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2855), - [sym_identifier] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_macro_rules_BANG] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_u8] = ACTIONS(2857), - [anon_sym_i8] = ACTIONS(2857), - [anon_sym_u16] = ACTIONS(2857), - [anon_sym_i16] = ACTIONS(2857), - [anon_sym_u32] = ACTIONS(2857), - [anon_sym_i32] = ACTIONS(2857), - [anon_sym_u64] = ACTIONS(2857), - [anon_sym_i64] = ACTIONS(2857), - [anon_sym_u128] = ACTIONS(2857), - [anon_sym_i128] = ACTIONS(2857), - [anon_sym_isize] = ACTIONS(2857), - [anon_sym_usize] = ACTIONS(2857), - [anon_sym_f32] = ACTIONS(2857), - [anon_sym_f64] = ACTIONS(2857), - [anon_sym_bool] = ACTIONS(2857), - [anon_sym_str] = ACTIONS(2857), - [anon_sym_char] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_DOT_DOT] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_break] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2857), - [anon_sym_continue] = ACTIONS(2857), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2857), - [anon_sym_fn] = ACTIONS(2857), - [anon_sym_for] = ACTIONS(2857), - [anon_sym_if] = ACTIONS(2857), - [anon_sym_impl] = ACTIONS(2857), - [anon_sym_let] = ACTIONS(2857), - [anon_sym_loop] = ACTIONS(2857), - [anon_sym_match] = ACTIONS(2857), - [anon_sym_mod] = ACTIONS(2857), - [anon_sym_pub] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2857), - [anon_sym_static] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2857), - [anon_sym_trait] = ACTIONS(2857), - [anon_sym_type] = ACTIONS(2857), - [anon_sym_union] = ACTIONS(2857), - [anon_sym_unsafe] = ACTIONS(2857), - [anon_sym_use] = ACTIONS(2857), - [anon_sym_while] = ACTIONS(2857), - [anon_sym_extern] = ACTIONS(2857), - [anon_sym_yield] = ACTIONS(2857), - [anon_sym_move] = ACTIONS(2857), - [anon_sym_try] = ACTIONS(2857), - [sym_integer_literal] = ACTIONS(2855), - [aux_sym_string_literal_token1] = ACTIONS(2855), - [sym_char_literal] = ACTIONS(2855), - [anon_sym_true] = ACTIONS(2857), - [anon_sym_false] = ACTIONS(2857), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2857), - [sym_super] = ACTIONS(2857), - [sym_crate] = ACTIONS(2857), - [sym_metavariable] = ACTIONS(2855), - [sym__raw_string_literal_start] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - }, - [739] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_macro_rules_BANG] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_u8] = ACTIONS(2868), + [anon_sym_i8] = ACTIONS(2868), + [anon_sym_u16] = ACTIONS(2868), + [anon_sym_i16] = ACTIONS(2868), + [anon_sym_u32] = ACTIONS(2868), + [anon_sym_i32] = ACTIONS(2868), + [anon_sym_u64] = ACTIONS(2868), + [anon_sym_i64] = ACTIONS(2868), + [anon_sym_u128] = ACTIONS(2868), + [anon_sym_i128] = ACTIONS(2868), + [anon_sym_isize] = ACTIONS(2868), + [anon_sym_usize] = ACTIONS(2868), + [anon_sym_f32] = ACTIONS(2868), + [anon_sym_f64] = ACTIONS(2868), + [anon_sym_bool] = ACTIONS(2868), + [anon_sym_str] = ACTIONS(2868), + [anon_sym_char] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_DOT_DOT] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_fn] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_gen] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_impl] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_loop] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_mod] = ACTIONS(2868), + [anon_sym_pub] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_trait] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_unsafe] = ACTIONS(2868), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_move] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [sym_integer_literal] = ACTIONS(2866), + [aux_sym_string_literal_token1] = ACTIONS(2866), + [sym_char_literal] = ACTIONS(2866), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_crate] = ACTIONS(2868), + [sym_metavariable] = ACTIONS(2866), + [sym__raw_string_literal_start] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2866), + }, + [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2859), - [anon_sym_macro_rules_BANG] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_u8] = ACTIONS(2861), - [anon_sym_i8] = ACTIONS(2861), - [anon_sym_u16] = ACTIONS(2861), - [anon_sym_i16] = ACTIONS(2861), - [anon_sym_u32] = ACTIONS(2861), - [anon_sym_i32] = ACTIONS(2861), - [anon_sym_u64] = ACTIONS(2861), - [anon_sym_i64] = ACTIONS(2861), - [anon_sym_u128] = ACTIONS(2861), - [anon_sym_i128] = ACTIONS(2861), - [anon_sym_isize] = ACTIONS(2861), - [anon_sym_usize] = ACTIONS(2861), - [anon_sym_f32] = ACTIONS(2861), - [anon_sym_f64] = ACTIONS(2861), - [anon_sym_bool] = ACTIONS(2861), - [anon_sym_str] = ACTIONS(2861), - [anon_sym_char] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2859), - [anon_sym_DOT_DOT] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2859), - [anon_sym_POUND] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_const] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_default] = ACTIONS(2861), - [anon_sym_enum] = ACTIONS(2861), - [anon_sym_fn] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_impl] = ACTIONS(2861), - [anon_sym_let] = ACTIONS(2861), - [anon_sym_loop] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_mod] = ACTIONS(2861), - [anon_sym_pub] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_static] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_trait] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_union] = ACTIONS(2861), - [anon_sym_unsafe] = ACTIONS(2861), - [anon_sym_use] = ACTIONS(2861), - [anon_sym_while] = ACTIONS(2861), - [anon_sym_extern] = ACTIONS(2861), - [anon_sym_yield] = ACTIONS(2861), - [anon_sym_move] = ACTIONS(2861), - [anon_sym_try] = ACTIONS(2861), - [sym_integer_literal] = ACTIONS(2859), - [aux_sym_string_literal_token1] = ACTIONS(2859), - [sym_char_literal] = ACTIONS(2859), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2861), - [sym_super] = ACTIONS(2861), - [sym_crate] = ACTIONS(2861), - [sym_metavariable] = ACTIONS(2859), - [sym__raw_string_literal_start] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(2859), - }, - [740] = { + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_macro_rules_BANG] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_u8] = ACTIONS(2872), + [anon_sym_i8] = ACTIONS(2872), + [anon_sym_u16] = ACTIONS(2872), + [anon_sym_i16] = ACTIONS(2872), + [anon_sym_u32] = ACTIONS(2872), + [anon_sym_i32] = ACTIONS(2872), + [anon_sym_u64] = ACTIONS(2872), + [anon_sym_i64] = ACTIONS(2872), + [anon_sym_u128] = ACTIONS(2872), + [anon_sym_i128] = ACTIONS(2872), + [anon_sym_isize] = ACTIONS(2872), + [anon_sym_usize] = ACTIONS(2872), + [anon_sym_f32] = ACTIONS(2872), + [anon_sym_f64] = ACTIONS(2872), + [anon_sym_bool] = ACTIONS(2872), + [anon_sym_str] = ACTIONS(2872), + [anon_sym_char] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2872), + [anon_sym_async] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_fn] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_gen] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_impl] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_loop] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_mod] = ACTIONS(2872), + [anon_sym_pub] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_trait] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_unsafe] = ACTIONS(2872), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_move] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [sym_integer_literal] = ACTIONS(2870), + [aux_sym_string_literal_token1] = ACTIONS(2870), + [sym_char_literal] = ACTIONS(2870), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2872), + [sym_super] = ACTIONS(2872), + [sym_crate] = ACTIONS(2872), + [sym_metavariable] = ACTIONS(2870), + [sym__raw_string_literal_start] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + }, + [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_macro_rules_BANG] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_u8] = ACTIONS(2865), - [anon_sym_i8] = ACTIONS(2865), - [anon_sym_u16] = ACTIONS(2865), - [anon_sym_i16] = ACTIONS(2865), - [anon_sym_u32] = ACTIONS(2865), - [anon_sym_i32] = ACTIONS(2865), - [anon_sym_u64] = ACTIONS(2865), - [anon_sym_i64] = ACTIONS(2865), - [anon_sym_u128] = ACTIONS(2865), - [anon_sym_i128] = ACTIONS(2865), - [anon_sym_isize] = ACTIONS(2865), - [anon_sym_usize] = ACTIONS(2865), - [anon_sym_f32] = ACTIONS(2865), - [anon_sym_f64] = ACTIONS(2865), - [anon_sym_bool] = ACTIONS(2865), - [anon_sym_str] = ACTIONS(2865), - [anon_sym_char] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_DOT_DOT] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2863), - [anon_sym_POUND] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_async] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_default] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_impl] = ACTIONS(2865), - [anon_sym_let] = ACTIONS(2865), - [anon_sym_loop] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_mod] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_static] = ACTIONS(2865), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_trait] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_use] = ACTIONS(2865), - [anon_sym_while] = ACTIONS(2865), - [anon_sym_extern] = ACTIONS(2865), - [anon_sym_yield] = ACTIONS(2865), - [anon_sym_move] = ACTIONS(2865), - [anon_sym_try] = ACTIONS(2865), - [sym_integer_literal] = ACTIONS(2863), - [aux_sym_string_literal_token1] = ACTIONS(2863), - [sym_char_literal] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2865), - [sym_super] = ACTIONS(2865), - [sym_crate] = ACTIONS(2865), - [sym_metavariable] = ACTIONS(2863), - [sym__raw_string_literal_start] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2863), - }, - [741] = { + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_macro_rules_BANG] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_u8] = ACTIONS(2876), + [anon_sym_i8] = ACTIONS(2876), + [anon_sym_u16] = ACTIONS(2876), + [anon_sym_i16] = ACTIONS(2876), + [anon_sym_u32] = ACTIONS(2876), + [anon_sym_i32] = ACTIONS(2876), + [anon_sym_u64] = ACTIONS(2876), + [anon_sym_i64] = ACTIONS(2876), + [anon_sym_u128] = ACTIONS(2876), + [anon_sym_i128] = ACTIONS(2876), + [anon_sym_isize] = ACTIONS(2876), + [anon_sym_usize] = ACTIONS(2876), + [anon_sym_f32] = ACTIONS(2876), + [anon_sym_f64] = ACTIONS(2876), + [anon_sym_bool] = ACTIONS(2876), + [anon_sym_str] = ACTIONS(2876), + [anon_sym_char] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_DOT_DOT] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2876), + [anon_sym_async] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_fn] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_gen] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_impl] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_loop] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_mod] = ACTIONS(2876), + [anon_sym_pub] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_trait] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_unsafe] = ACTIONS(2876), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_move] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [sym_integer_literal] = ACTIONS(2874), + [aux_sym_string_literal_token1] = ACTIONS(2874), + [sym_char_literal] = ACTIONS(2874), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2876), + [sym_super] = ACTIONS(2876), + [sym_crate] = ACTIONS(2876), + [sym_metavariable] = ACTIONS(2874), + [sym__raw_string_literal_start] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + }, + [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_macro_rules_BANG] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_u8] = ACTIONS(2869), - [anon_sym_i8] = ACTIONS(2869), - [anon_sym_u16] = ACTIONS(2869), - [anon_sym_i16] = ACTIONS(2869), - [anon_sym_u32] = ACTIONS(2869), - [anon_sym_i32] = ACTIONS(2869), - [anon_sym_u64] = ACTIONS(2869), - [anon_sym_i64] = ACTIONS(2869), - [anon_sym_u128] = ACTIONS(2869), - [anon_sym_i128] = ACTIONS(2869), - [anon_sym_isize] = ACTIONS(2869), - [anon_sym_usize] = ACTIONS(2869), - [anon_sym_f32] = ACTIONS(2869), - [anon_sym_f64] = ACTIONS(2869), - [anon_sym_bool] = ACTIONS(2869), - [anon_sym_str] = ACTIONS(2869), - [anon_sym_char] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_DOT_DOT] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_POUND] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_async] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_impl] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_loop] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_mod] = ACTIONS(2869), - [anon_sym_pub] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_trait] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_use] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym_yield] = ACTIONS(2869), - [anon_sym_move] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [sym_integer_literal] = ACTIONS(2867), - [aux_sym_string_literal_token1] = ACTIONS(2867), - [sym_char_literal] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2869), - [sym_super] = ACTIONS(2869), - [sym_crate] = ACTIONS(2869), - [sym_metavariable] = ACTIONS(2867), - [sym__raw_string_literal_start] = ACTIONS(2867), - [sym_float_literal] = ACTIONS(2867), - }, - [742] = { + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_macro_rules_BANG] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_u8] = ACTIONS(2880), + [anon_sym_i8] = ACTIONS(2880), + [anon_sym_u16] = ACTIONS(2880), + [anon_sym_i16] = ACTIONS(2880), + [anon_sym_u32] = ACTIONS(2880), + [anon_sym_i32] = ACTIONS(2880), + [anon_sym_u64] = ACTIONS(2880), + [anon_sym_i64] = ACTIONS(2880), + [anon_sym_u128] = ACTIONS(2880), + [anon_sym_i128] = ACTIONS(2880), + [anon_sym_isize] = ACTIONS(2880), + [anon_sym_usize] = ACTIONS(2880), + [anon_sym_f32] = ACTIONS(2880), + [anon_sym_f64] = ACTIONS(2880), + [anon_sym_bool] = ACTIONS(2880), + [anon_sym_str] = ACTIONS(2880), + [anon_sym_char] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_DOT_DOT] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_POUND] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2880), + [anon_sym_async] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_gen] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_impl] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_loop] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_mod] = ACTIONS(2880), + [anon_sym_pub] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_trait] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_move] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [sym_integer_literal] = ACTIONS(2878), + [aux_sym_string_literal_token1] = ACTIONS(2878), + [sym_char_literal] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2880), + [sym_super] = ACTIONS(2880), + [sym_crate] = ACTIONS(2880), + [sym_metavariable] = ACTIONS(2878), + [sym__raw_string_literal_start] = ACTIONS(2878), + [sym_float_literal] = ACTIONS(2878), + }, + [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_macro_rules_BANG] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_u8] = ACTIONS(2873), - [anon_sym_i8] = ACTIONS(2873), - [anon_sym_u16] = ACTIONS(2873), - [anon_sym_i16] = ACTIONS(2873), - [anon_sym_u32] = ACTIONS(2873), - [anon_sym_i32] = ACTIONS(2873), - [anon_sym_u64] = ACTIONS(2873), - [anon_sym_i64] = ACTIONS(2873), - [anon_sym_u128] = ACTIONS(2873), - [anon_sym_i128] = ACTIONS(2873), - [anon_sym_isize] = ACTIONS(2873), - [anon_sym_usize] = ACTIONS(2873), - [anon_sym_f32] = ACTIONS(2873), - [anon_sym_f64] = ACTIONS(2873), - [anon_sym_bool] = ACTIONS(2873), - [anon_sym_str] = ACTIONS(2873), - [anon_sym_char] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2871), - [anon_sym_LT] = ACTIONS(2871), - [anon_sym_DOT_DOT] = ACTIONS(2871), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_POUND] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_fn] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_impl] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_loop] = ACTIONS(2873), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_mod] = ACTIONS(2873), - [anon_sym_pub] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_trait] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_unsafe] = ACTIONS(2873), - [anon_sym_use] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_move] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [sym_integer_literal] = ACTIONS(2871), - [aux_sym_string_literal_token1] = ACTIONS(2871), - [sym_char_literal] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2873), - [sym_super] = ACTIONS(2873), - [sym_crate] = ACTIONS(2873), - [sym_metavariable] = ACTIONS(2871), - [sym__raw_string_literal_start] = ACTIONS(2871), - [sym_float_literal] = ACTIONS(2871), - }, - [743] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_macro_rules_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_u8] = ACTIONS(2884), + [anon_sym_i8] = ACTIONS(2884), + [anon_sym_u16] = ACTIONS(2884), + [anon_sym_i16] = ACTIONS(2884), + [anon_sym_u32] = ACTIONS(2884), + [anon_sym_i32] = ACTIONS(2884), + [anon_sym_u64] = ACTIONS(2884), + [anon_sym_i64] = ACTIONS(2884), + [anon_sym_u128] = ACTIONS(2884), + [anon_sym_i128] = ACTIONS(2884), + [anon_sym_isize] = ACTIONS(2884), + [anon_sym_usize] = ACTIONS(2884), + [anon_sym_f32] = ACTIONS(2884), + [anon_sym_f64] = ACTIONS(2884), + [anon_sym_bool] = ACTIONS(2884), + [anon_sym_str] = ACTIONS(2884), + [anon_sym_char] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_fn] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_gen] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_impl] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_loop] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_mod] = ACTIONS(2884), + [anon_sym_pub] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_trait] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_unsafe] = ACTIONS(2884), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_move] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [sym_integer_literal] = ACTIONS(2882), + [aux_sym_string_literal_token1] = ACTIONS(2882), + [sym_char_literal] = ACTIONS(2882), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_crate] = ACTIONS(2884), + [sym_metavariable] = ACTIONS(2882), + [sym__raw_string_literal_start] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2882), + }, + [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_macro_rules_BANG] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_u8] = ACTIONS(2877), - [anon_sym_i8] = ACTIONS(2877), - [anon_sym_u16] = ACTIONS(2877), - [anon_sym_i16] = ACTIONS(2877), - [anon_sym_u32] = ACTIONS(2877), - [anon_sym_i32] = ACTIONS(2877), - [anon_sym_u64] = ACTIONS(2877), - [anon_sym_i64] = ACTIONS(2877), - [anon_sym_u128] = ACTIONS(2877), - [anon_sym_i128] = ACTIONS(2877), - [anon_sym_isize] = ACTIONS(2877), - [anon_sym_usize] = ACTIONS(2877), - [anon_sym_f32] = ACTIONS(2877), - [anon_sym_f64] = ACTIONS(2877), - [anon_sym_bool] = ACTIONS(2877), - [anon_sym_str] = ACTIONS(2877), - [anon_sym_char] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_DOT_DOT] = ACTIONS(2875), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_POUND] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_async] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_impl] = ACTIONS(2877), - [anon_sym_let] = ACTIONS(2877), - [anon_sym_loop] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_mod] = ACTIONS(2877), - [anon_sym_pub] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_trait] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_use] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym_yield] = ACTIONS(2877), - [anon_sym_move] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [sym_integer_literal] = ACTIONS(2875), - [aux_sym_string_literal_token1] = ACTIONS(2875), - [sym_char_literal] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2877), - [anon_sym_false] = ACTIONS(2877), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2877), - [sym_super] = ACTIONS(2877), - [sym_crate] = ACTIONS(2877), - [sym_metavariable] = ACTIONS(2875), - [sym__raw_string_literal_start] = ACTIONS(2875), - [sym_float_literal] = ACTIONS(2875), - }, - [744] = { + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_macro_rules_BANG] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_u8] = ACTIONS(2888), + [anon_sym_i8] = ACTIONS(2888), + [anon_sym_u16] = ACTIONS(2888), + [anon_sym_i16] = ACTIONS(2888), + [anon_sym_u32] = ACTIONS(2888), + [anon_sym_i32] = ACTIONS(2888), + [anon_sym_u64] = ACTIONS(2888), + [anon_sym_i64] = ACTIONS(2888), + [anon_sym_u128] = ACTIONS(2888), + [anon_sym_i128] = ACTIONS(2888), + [anon_sym_isize] = ACTIONS(2888), + [anon_sym_usize] = ACTIONS(2888), + [anon_sym_f32] = ACTIONS(2888), + [anon_sym_f64] = ACTIONS(2888), + [anon_sym_bool] = ACTIONS(2888), + [anon_sym_str] = ACTIONS(2888), + [anon_sym_char] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_DOT_DOT] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2888), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_const] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_enum] = ACTIONS(2888), + [anon_sym_fn] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_gen] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_impl] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_loop] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_mod] = ACTIONS(2888), + [anon_sym_pub] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2888), + [anon_sym_trait] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_union] = ACTIONS(2888), + [anon_sym_unsafe] = ACTIONS(2888), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_extern] = ACTIONS(2888), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_move] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [sym_integer_literal] = ACTIONS(2886), + [aux_sym_string_literal_token1] = ACTIONS(2886), + [sym_char_literal] = ACTIONS(2886), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2888), + [sym_super] = ACTIONS(2888), + [sym_crate] = ACTIONS(2888), + [sym_metavariable] = ACTIONS(2886), + [sym__raw_string_literal_start] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + }, + [STATE(744)] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2879), - [sym_identifier] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_macro_rules_BANG] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_u8] = ACTIONS(2881), - [anon_sym_i8] = ACTIONS(2881), - [anon_sym_u16] = ACTIONS(2881), - [anon_sym_i16] = ACTIONS(2881), - [anon_sym_u32] = ACTIONS(2881), - [anon_sym_i32] = ACTIONS(2881), - [anon_sym_u64] = ACTIONS(2881), - [anon_sym_i64] = ACTIONS(2881), - [anon_sym_u128] = ACTIONS(2881), - [anon_sym_i128] = ACTIONS(2881), - [anon_sym_isize] = ACTIONS(2881), - [anon_sym_usize] = ACTIONS(2881), - [anon_sym_f32] = ACTIONS(2881), - [anon_sym_f64] = ACTIONS(2881), - [anon_sym_bool] = ACTIONS(2881), - [anon_sym_str] = ACTIONS(2881), - [anon_sym_char] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2879), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_DOT_DOT] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_POUND] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_async] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_fn] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_impl] = ACTIONS(2881), - [anon_sym_let] = ACTIONS(2881), - [anon_sym_loop] = ACTIONS(2881), - [anon_sym_match] = ACTIONS(2881), - [anon_sym_mod] = ACTIONS(2881), - [anon_sym_pub] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_trait] = ACTIONS(2881), - [anon_sym_type] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_unsafe] = ACTIONS(2881), - [anon_sym_use] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym_yield] = ACTIONS(2881), - [anon_sym_move] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [sym_integer_literal] = ACTIONS(2879), - [aux_sym_string_literal_token1] = ACTIONS(2879), - [sym_char_literal] = ACTIONS(2879), - [anon_sym_true] = ACTIONS(2881), - [anon_sym_false] = ACTIONS(2881), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2881), - [sym_super] = ACTIONS(2881), - [sym_crate] = ACTIONS(2881), - [sym_metavariable] = ACTIONS(2879), - [sym__raw_string_literal_start] = ACTIONS(2879), - [sym_float_literal] = ACTIONS(2879), - }, - [745] = { + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_macro_rules_BANG] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_u8] = ACTIONS(2892), + [anon_sym_i8] = ACTIONS(2892), + [anon_sym_u16] = ACTIONS(2892), + [anon_sym_i16] = ACTIONS(2892), + [anon_sym_u32] = ACTIONS(2892), + [anon_sym_i32] = ACTIONS(2892), + [anon_sym_u64] = ACTIONS(2892), + [anon_sym_i64] = ACTIONS(2892), + [anon_sym_u128] = ACTIONS(2892), + [anon_sym_i128] = ACTIONS(2892), + [anon_sym_isize] = ACTIONS(2892), + [anon_sym_usize] = ACTIONS(2892), + [anon_sym_f32] = ACTIONS(2892), + [anon_sym_f64] = ACTIONS(2892), + [anon_sym_bool] = ACTIONS(2892), + [anon_sym_str] = ACTIONS(2892), + [anon_sym_char] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2892), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_const] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_enum] = ACTIONS(2892), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_gen] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_impl] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_loop] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_mod] = ACTIONS(2892), + [anon_sym_pub] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2892), + [anon_sym_trait] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_union] = ACTIONS(2892), + [anon_sym_unsafe] = ACTIONS(2892), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_extern] = ACTIONS(2892), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_move] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [sym_integer_literal] = ACTIONS(2890), + [aux_sym_string_literal_token1] = ACTIONS(2890), + [sym_char_literal] = ACTIONS(2890), + [anon_sym_true] = ACTIONS(2892), + [anon_sym_false] = ACTIONS(2892), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2892), + [sym_super] = ACTIONS(2892), + [sym_crate] = ACTIONS(2892), + [sym_metavariable] = ACTIONS(2890), + [sym__raw_string_literal_start] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + }, + [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_macro_rules_BANG] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_u8] = ACTIONS(2885), - [anon_sym_i8] = ACTIONS(2885), - [anon_sym_u16] = ACTIONS(2885), - [anon_sym_i16] = ACTIONS(2885), - [anon_sym_u32] = ACTIONS(2885), - [anon_sym_i32] = ACTIONS(2885), - [anon_sym_u64] = ACTIONS(2885), - [anon_sym_i64] = ACTIONS(2885), - [anon_sym_u128] = ACTIONS(2885), - [anon_sym_i128] = ACTIONS(2885), - [anon_sym_isize] = ACTIONS(2885), - [anon_sym_usize] = ACTIONS(2885), - [anon_sym_f32] = ACTIONS(2885), - [anon_sym_f64] = ACTIONS(2885), - [anon_sym_bool] = ACTIONS(2885), - [anon_sym_str] = ACTIONS(2885), - [anon_sym_char] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_DOT_DOT] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_async] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_fn] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_impl] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2885), - [anon_sym_loop] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2885), - [anon_sym_mod] = ACTIONS(2885), - [anon_sym_pub] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_trait] = ACTIONS(2885), - [anon_sym_type] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_unsafe] = ACTIONS(2885), - [anon_sym_use] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym_yield] = ACTIONS(2885), - [anon_sym_move] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [sym_integer_literal] = ACTIONS(2883), - [aux_sym_string_literal_token1] = ACTIONS(2883), - [sym_char_literal] = ACTIONS(2883), - [anon_sym_true] = ACTIONS(2885), - [anon_sym_false] = ACTIONS(2885), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2885), - [sym_super] = ACTIONS(2885), - [sym_crate] = ACTIONS(2885), - [sym_metavariable] = ACTIONS(2883), - [sym__raw_string_literal_start] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), - }, - [746] = { + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_macro_rules_BANG] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_u8] = ACTIONS(2896), + [anon_sym_i8] = ACTIONS(2896), + [anon_sym_u16] = ACTIONS(2896), + [anon_sym_i16] = ACTIONS(2896), + [anon_sym_u32] = ACTIONS(2896), + [anon_sym_i32] = ACTIONS(2896), + [anon_sym_u64] = ACTIONS(2896), + [anon_sym_i64] = ACTIONS(2896), + [anon_sym_u128] = ACTIONS(2896), + [anon_sym_i128] = ACTIONS(2896), + [anon_sym_isize] = ACTIONS(2896), + [anon_sym_usize] = ACTIONS(2896), + [anon_sym_f32] = ACTIONS(2896), + [anon_sym_f64] = ACTIONS(2896), + [anon_sym_bool] = ACTIONS(2896), + [anon_sym_str] = ACTIONS(2896), + [anon_sym_char] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2896), + [anon_sym_fn] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_gen] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_impl] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_loop] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_mod] = ACTIONS(2896), + [anon_sym_pub] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2896), + [anon_sym_trait] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_unsafe] = ACTIONS(2896), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_extern] = ACTIONS(2896), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_move] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [sym_integer_literal] = ACTIONS(2894), + [aux_sym_string_literal_token1] = ACTIONS(2894), + [sym_char_literal] = ACTIONS(2894), + [anon_sym_true] = ACTIONS(2896), + [anon_sym_false] = ACTIONS(2896), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2896), + [sym_super] = ACTIONS(2896), + [sym_crate] = ACTIONS(2896), + [sym_metavariable] = ACTIONS(2894), + [sym__raw_string_literal_start] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + }, + [STATE(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_macro_rules_BANG] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_u8] = ACTIONS(2889), - [anon_sym_i8] = ACTIONS(2889), - [anon_sym_u16] = ACTIONS(2889), - [anon_sym_i16] = ACTIONS(2889), - [anon_sym_u32] = ACTIONS(2889), - [anon_sym_i32] = ACTIONS(2889), - [anon_sym_u64] = ACTIONS(2889), - [anon_sym_i64] = ACTIONS(2889), - [anon_sym_u128] = ACTIONS(2889), - [anon_sym_i128] = ACTIONS(2889), - [anon_sym_isize] = ACTIONS(2889), - [anon_sym_usize] = ACTIONS(2889), - [anon_sym_f32] = ACTIONS(2889), - [anon_sym_f64] = ACTIONS(2889), - [anon_sym_bool] = ACTIONS(2889), - [anon_sym_str] = ACTIONS(2889), - [anon_sym_char] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_fn] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_impl] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_loop] = ACTIONS(2889), - [anon_sym_match] = ACTIONS(2889), - [anon_sym_mod] = ACTIONS(2889), - [anon_sym_pub] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_trait] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_unsafe] = ACTIONS(2889), - [anon_sym_use] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_move] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [sym_integer_literal] = ACTIONS(2887), - [aux_sym_string_literal_token1] = ACTIONS(2887), - [sym_char_literal] = ACTIONS(2887), - [anon_sym_true] = ACTIONS(2889), - [anon_sym_false] = ACTIONS(2889), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_crate] = ACTIONS(2889), - [sym_metavariable] = ACTIONS(2887), - [sym__raw_string_literal_start] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - }, - [747] = { + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_macro_rules_BANG] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(2900), + [anon_sym_i8] = ACTIONS(2900), + [anon_sym_u16] = ACTIONS(2900), + [anon_sym_i16] = ACTIONS(2900), + [anon_sym_u32] = ACTIONS(2900), + [anon_sym_i32] = ACTIONS(2900), + [anon_sym_u64] = ACTIONS(2900), + [anon_sym_i64] = ACTIONS(2900), + [anon_sym_u128] = ACTIONS(2900), + [anon_sym_i128] = ACTIONS(2900), + [anon_sym_isize] = ACTIONS(2900), + [anon_sym_usize] = ACTIONS(2900), + [anon_sym_f32] = ACTIONS(2900), + [anon_sym_f64] = ACTIONS(2900), + [anon_sym_bool] = ACTIONS(2900), + [anon_sym_str] = ACTIONS(2900), + [anon_sym_char] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_DOT_DOT] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_fn] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_gen] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_impl] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_loop] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_mod] = ACTIONS(2900), + [anon_sym_pub] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_trait] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_unsafe] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_move] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [sym_integer_literal] = ACTIONS(2898), + [aux_sym_string_literal_token1] = ACTIONS(2898), + [sym_char_literal] = ACTIONS(2898), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2900), + [sym_super] = ACTIONS(2900), + [sym_crate] = ACTIONS(2900), + [sym_metavariable] = ACTIONS(2898), + [sym__raw_string_literal_start] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + }, + [STATE(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2891), - [sym_identifier] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_macro_rules_BANG] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_u8] = ACTIONS(2893), - [anon_sym_i8] = ACTIONS(2893), - [anon_sym_u16] = ACTIONS(2893), - [anon_sym_i16] = ACTIONS(2893), - [anon_sym_u32] = ACTIONS(2893), - [anon_sym_i32] = ACTIONS(2893), - [anon_sym_u64] = ACTIONS(2893), - [anon_sym_i64] = ACTIONS(2893), - [anon_sym_u128] = ACTIONS(2893), - [anon_sym_i128] = ACTIONS(2893), - [anon_sym_isize] = ACTIONS(2893), - [anon_sym_usize] = ACTIONS(2893), - [anon_sym_f32] = ACTIONS(2893), - [anon_sym_f64] = ACTIONS(2893), - [anon_sym_bool] = ACTIONS(2893), - [anon_sym_str] = ACTIONS(2893), - [anon_sym_char] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_fn] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_impl] = ACTIONS(2893), - [anon_sym_let] = ACTIONS(2893), - [anon_sym_loop] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2893), - [anon_sym_mod] = ACTIONS(2893), - [anon_sym_pub] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_trait] = ACTIONS(2893), - [anon_sym_type] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_unsafe] = ACTIONS(2893), - [anon_sym_use] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym_yield] = ACTIONS(2893), - [anon_sym_move] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [sym_integer_literal] = ACTIONS(2891), - [aux_sym_string_literal_token1] = ACTIONS(2891), - [sym_char_literal] = ACTIONS(2891), - [anon_sym_true] = ACTIONS(2893), - [anon_sym_false] = ACTIONS(2893), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2893), - [sym_super] = ACTIONS(2893), - [sym_crate] = ACTIONS(2893), - [sym_metavariable] = ACTIONS(2891), - [sym__raw_string_literal_start] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - }, - [748] = { + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_macro_rules_BANG] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_u8] = ACTIONS(2904), + [anon_sym_i8] = ACTIONS(2904), + [anon_sym_u16] = ACTIONS(2904), + [anon_sym_i16] = ACTIONS(2904), + [anon_sym_u32] = ACTIONS(2904), + [anon_sym_i32] = ACTIONS(2904), + [anon_sym_u64] = ACTIONS(2904), + [anon_sym_i64] = ACTIONS(2904), + [anon_sym_u128] = ACTIONS(2904), + [anon_sym_i128] = ACTIONS(2904), + [anon_sym_isize] = ACTIONS(2904), + [anon_sym_usize] = ACTIONS(2904), + [anon_sym_f32] = ACTIONS(2904), + [anon_sym_f64] = ACTIONS(2904), + [anon_sym_bool] = ACTIONS(2904), + [anon_sym_str] = ACTIONS(2904), + [anon_sym_char] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_DOT_DOT] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2904), + [anon_sym_async] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_fn] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_gen] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_impl] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_loop] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_mod] = ACTIONS(2904), + [anon_sym_pub] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2904), + [anon_sym_trait] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_union] = ACTIONS(2904), + [anon_sym_unsafe] = ACTIONS(2904), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_extern] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_move] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [sym_integer_literal] = ACTIONS(2902), + [aux_sym_string_literal_token1] = ACTIONS(2902), + [sym_char_literal] = ACTIONS(2902), + [anon_sym_true] = ACTIONS(2904), + [anon_sym_false] = ACTIONS(2904), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2904), + [sym_super] = ACTIONS(2904), + [sym_crate] = ACTIONS(2904), + [sym_metavariable] = ACTIONS(2902), + [sym__raw_string_literal_start] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + }, + [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2895), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym_macro_rules_BANG] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_u8] = ACTIONS(2897), - [anon_sym_i8] = ACTIONS(2897), - [anon_sym_u16] = ACTIONS(2897), - [anon_sym_i16] = ACTIONS(2897), - [anon_sym_u32] = ACTIONS(2897), - [anon_sym_i32] = ACTIONS(2897), - [anon_sym_u64] = ACTIONS(2897), - [anon_sym_i64] = ACTIONS(2897), - [anon_sym_u128] = ACTIONS(2897), - [anon_sym_i128] = ACTIONS(2897), - [anon_sym_isize] = ACTIONS(2897), - [anon_sym_usize] = ACTIONS(2897), - [anon_sym_f32] = ACTIONS(2897), - [anon_sym_f64] = ACTIONS(2897), - [anon_sym_bool] = ACTIONS(2897), - [anon_sym_str] = ACTIONS(2897), - [anon_sym_char] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_DOT_DOT] = ACTIONS(2895), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_fn] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_impl] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_loop] = ACTIONS(2897), - [anon_sym_match] = ACTIONS(2897), - [anon_sym_mod] = ACTIONS(2897), - [anon_sym_pub] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_trait] = ACTIONS(2897), - [anon_sym_type] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_unsafe] = ACTIONS(2897), - [anon_sym_use] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym_yield] = ACTIONS(2897), - [anon_sym_move] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [sym_integer_literal] = ACTIONS(2895), - [aux_sym_string_literal_token1] = ACTIONS(2895), - [sym_char_literal] = ACTIONS(2895), - [anon_sym_true] = ACTIONS(2897), - [anon_sym_false] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2897), - [sym_super] = ACTIONS(2897), - [sym_crate] = ACTIONS(2897), - [sym_metavariable] = ACTIONS(2895), - [sym__raw_string_literal_start] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - }, - [749] = { + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_macro_rules_BANG] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_u8] = ACTIONS(2908), + [anon_sym_i8] = ACTIONS(2908), + [anon_sym_u16] = ACTIONS(2908), + [anon_sym_i16] = ACTIONS(2908), + [anon_sym_u32] = ACTIONS(2908), + [anon_sym_i32] = ACTIONS(2908), + [anon_sym_u64] = ACTIONS(2908), + [anon_sym_i64] = ACTIONS(2908), + [anon_sym_u128] = ACTIONS(2908), + [anon_sym_i128] = ACTIONS(2908), + [anon_sym_isize] = ACTIONS(2908), + [anon_sym_usize] = ACTIONS(2908), + [anon_sym_f32] = ACTIONS(2908), + [anon_sym_f64] = ACTIONS(2908), + [anon_sym_bool] = ACTIONS(2908), + [anon_sym_str] = ACTIONS(2908), + [anon_sym_char] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2908), + [anon_sym_async] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_fn] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_gen] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_impl] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_loop] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_mod] = ACTIONS(2908), + [anon_sym_pub] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_trait] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_move] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [sym_integer_literal] = ACTIONS(2906), + [aux_sym_string_literal_token1] = ACTIONS(2906), + [sym_char_literal] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2908), + [anon_sym_false] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2908), + [sym_super] = ACTIONS(2908), + [sym_crate] = ACTIONS(2908), + [sym_metavariable] = ACTIONS(2906), + [sym__raw_string_literal_start] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + }, + [STATE(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2899), - [sym_identifier] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_macro_rules_BANG] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_u8] = ACTIONS(2901), - [anon_sym_i8] = ACTIONS(2901), - [anon_sym_u16] = ACTIONS(2901), - [anon_sym_i16] = ACTIONS(2901), - [anon_sym_u32] = ACTIONS(2901), - [anon_sym_i32] = ACTIONS(2901), - [anon_sym_u64] = ACTIONS(2901), - [anon_sym_i64] = ACTIONS(2901), - [anon_sym_u128] = ACTIONS(2901), - [anon_sym_i128] = ACTIONS(2901), - [anon_sym_isize] = ACTIONS(2901), - [anon_sym_usize] = ACTIONS(2901), - [anon_sym_f32] = ACTIONS(2901), - [anon_sym_f64] = ACTIONS(2901), - [anon_sym_bool] = ACTIONS(2901), - [anon_sym_str] = ACTIONS(2901), - [anon_sym_char] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_DOT_DOT] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_fn] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_impl] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_loop] = ACTIONS(2901), - [anon_sym_match] = ACTIONS(2901), - [anon_sym_mod] = ACTIONS(2901), - [anon_sym_pub] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_trait] = ACTIONS(2901), - [anon_sym_type] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_use] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_move] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [sym_integer_literal] = ACTIONS(2899), - [aux_sym_string_literal_token1] = ACTIONS(2899), - [sym_char_literal] = ACTIONS(2899), - [anon_sym_true] = ACTIONS(2901), - [anon_sym_false] = ACTIONS(2901), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2901), - [sym_super] = ACTIONS(2901), - [sym_crate] = ACTIONS(2901), - [sym_metavariable] = ACTIONS(2899), - [sym__raw_string_literal_start] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - }, - [750] = { + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_macro_rules_BANG] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_u8] = ACTIONS(2912), + [anon_sym_i8] = ACTIONS(2912), + [anon_sym_u16] = ACTIONS(2912), + [anon_sym_i16] = ACTIONS(2912), + [anon_sym_u32] = ACTIONS(2912), + [anon_sym_i32] = ACTIONS(2912), + [anon_sym_u64] = ACTIONS(2912), + [anon_sym_i64] = ACTIONS(2912), + [anon_sym_u128] = ACTIONS(2912), + [anon_sym_i128] = ACTIONS(2912), + [anon_sym_isize] = ACTIONS(2912), + [anon_sym_usize] = ACTIONS(2912), + [anon_sym_f32] = ACTIONS(2912), + [anon_sym_f64] = ACTIONS(2912), + [anon_sym_bool] = ACTIONS(2912), + [anon_sym_str] = ACTIONS(2912), + [anon_sym_char] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_DOT_DOT] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2912), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [anon_sym_fn] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_gen] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_impl] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_loop] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_mod] = ACTIONS(2912), + [anon_sym_pub] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2912), + [anon_sym_trait] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_union] = ACTIONS(2912), + [anon_sym_unsafe] = ACTIONS(2912), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2912), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_move] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [sym_integer_literal] = ACTIONS(2910), + [aux_sym_string_literal_token1] = ACTIONS(2910), + [sym_char_literal] = ACTIONS(2910), + [anon_sym_true] = ACTIONS(2912), + [anon_sym_false] = ACTIONS(2912), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2912), + [sym_super] = ACTIONS(2912), + [sym_crate] = ACTIONS(2912), + [sym_metavariable] = ACTIONS(2910), + [sym__raw_string_literal_start] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + }, + [STATE(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2903), - [sym_identifier] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_macro_rules_BANG] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_u8] = ACTIONS(2905), - [anon_sym_i8] = ACTIONS(2905), - [anon_sym_u16] = ACTIONS(2905), - [anon_sym_i16] = ACTIONS(2905), - [anon_sym_u32] = ACTIONS(2905), - [anon_sym_i32] = ACTIONS(2905), - [anon_sym_u64] = ACTIONS(2905), - [anon_sym_i64] = ACTIONS(2905), - [anon_sym_u128] = ACTIONS(2905), - [anon_sym_i128] = ACTIONS(2905), - [anon_sym_isize] = ACTIONS(2905), - [anon_sym_usize] = ACTIONS(2905), - [anon_sym_f32] = ACTIONS(2905), - [anon_sym_f64] = ACTIONS(2905), - [anon_sym_bool] = ACTIONS(2905), - [anon_sym_str] = ACTIONS(2905), - [anon_sym_char] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_DOT_DOT] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_async] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_impl] = ACTIONS(2905), - [anon_sym_let] = ACTIONS(2905), - [anon_sym_loop] = ACTIONS(2905), - [anon_sym_match] = ACTIONS(2905), - [anon_sym_mod] = ACTIONS(2905), - [anon_sym_pub] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_trait] = ACTIONS(2905), - [anon_sym_type] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_unsafe] = ACTIONS(2905), - [anon_sym_use] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym_yield] = ACTIONS(2905), - [anon_sym_move] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [sym_integer_literal] = ACTIONS(2903), - [aux_sym_string_literal_token1] = ACTIONS(2903), - [sym_char_literal] = ACTIONS(2903), - [anon_sym_true] = ACTIONS(2905), - [anon_sym_false] = ACTIONS(2905), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), - [sym_crate] = ACTIONS(2905), - [sym_metavariable] = ACTIONS(2903), - [sym__raw_string_literal_start] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - }, - [751] = { + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_macro_rules_BANG] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_u8] = ACTIONS(2916), + [anon_sym_i8] = ACTIONS(2916), + [anon_sym_u16] = ACTIONS(2916), + [anon_sym_i16] = ACTIONS(2916), + [anon_sym_u32] = ACTIONS(2916), + [anon_sym_i32] = ACTIONS(2916), + [anon_sym_u64] = ACTIONS(2916), + [anon_sym_i64] = ACTIONS(2916), + [anon_sym_u128] = ACTIONS(2916), + [anon_sym_i128] = ACTIONS(2916), + [anon_sym_isize] = ACTIONS(2916), + [anon_sym_usize] = ACTIONS(2916), + [anon_sym_f32] = ACTIONS(2916), + [anon_sym_f64] = ACTIONS(2916), + [anon_sym_bool] = ACTIONS(2916), + [anon_sym_str] = ACTIONS(2916), + [anon_sym_char] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2916), + [anon_sym_async] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_fn] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_gen] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_impl] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_loop] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_mod] = ACTIONS(2916), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_trait] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_unsafe] = ACTIONS(2916), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_move] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [sym_integer_literal] = ACTIONS(2914), + [aux_sym_string_literal_token1] = ACTIONS(2914), + [sym_char_literal] = ACTIONS(2914), + [anon_sym_true] = ACTIONS(2916), + [anon_sym_false] = ACTIONS(2916), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2916), + [sym_super] = ACTIONS(2916), + [sym_crate] = ACTIONS(2916), + [sym_metavariable] = ACTIONS(2914), + [sym__raw_string_literal_start] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + }, + [STATE(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_macro_rules_BANG] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_u8] = ACTIONS(2909), - [anon_sym_i8] = ACTIONS(2909), - [anon_sym_u16] = ACTIONS(2909), - [anon_sym_i16] = ACTIONS(2909), - [anon_sym_u32] = ACTIONS(2909), - [anon_sym_i32] = ACTIONS(2909), - [anon_sym_u64] = ACTIONS(2909), - [anon_sym_i64] = ACTIONS(2909), - [anon_sym_u128] = ACTIONS(2909), - [anon_sym_i128] = ACTIONS(2909), - [anon_sym_isize] = ACTIONS(2909), - [anon_sym_usize] = ACTIONS(2909), - [anon_sym_f32] = ACTIONS(2909), - [anon_sym_f64] = ACTIONS(2909), - [anon_sym_bool] = ACTIONS(2909), - [anon_sym_str] = ACTIONS(2909), - [anon_sym_char] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_DOT_DOT] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_impl] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_loop] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_mod] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_trait] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_use] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_move] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [sym_integer_literal] = ACTIONS(2907), - [aux_sym_string_literal_token1] = ACTIONS(2907), - [sym_char_literal] = ACTIONS(2907), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2909), - [sym_super] = ACTIONS(2909), - [sym_crate] = ACTIONS(2909), - [sym_metavariable] = ACTIONS(2907), - [sym__raw_string_literal_start] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - }, - [752] = { + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_macro_rules_BANG] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_u8] = ACTIONS(2920), + [anon_sym_i8] = ACTIONS(2920), + [anon_sym_u16] = ACTIONS(2920), + [anon_sym_i16] = ACTIONS(2920), + [anon_sym_u32] = ACTIONS(2920), + [anon_sym_i32] = ACTIONS(2920), + [anon_sym_u64] = ACTIONS(2920), + [anon_sym_i64] = ACTIONS(2920), + [anon_sym_u128] = ACTIONS(2920), + [anon_sym_i128] = ACTIONS(2920), + [anon_sym_isize] = ACTIONS(2920), + [anon_sym_usize] = ACTIONS(2920), + [anon_sym_f32] = ACTIONS(2920), + [anon_sym_f64] = ACTIONS(2920), + [anon_sym_bool] = ACTIONS(2920), + [anon_sym_str] = ACTIONS(2920), + [anon_sym_char] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_fn] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_gen] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_impl] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_loop] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_mod] = ACTIONS(2920), + [anon_sym_pub] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_trait] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_unsafe] = ACTIONS(2920), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_move] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [sym_integer_literal] = ACTIONS(2918), + [aux_sym_string_literal_token1] = ACTIONS(2918), + [sym_char_literal] = ACTIONS(2918), + [anon_sym_true] = ACTIONS(2920), + [anon_sym_false] = ACTIONS(2920), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2920), + [sym_super] = ACTIONS(2920), + [sym_crate] = ACTIONS(2920), + [sym_metavariable] = ACTIONS(2918), + [sym__raw_string_literal_start] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + }, + [STATE(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_macro_rules_BANG] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_u8] = ACTIONS(2913), - [anon_sym_i8] = ACTIONS(2913), - [anon_sym_u16] = ACTIONS(2913), - [anon_sym_i16] = ACTIONS(2913), - [anon_sym_u32] = ACTIONS(2913), - [anon_sym_i32] = ACTIONS(2913), - [anon_sym_u64] = ACTIONS(2913), - [anon_sym_i64] = ACTIONS(2913), - [anon_sym_u128] = ACTIONS(2913), - [anon_sym_i128] = ACTIONS(2913), - [anon_sym_isize] = ACTIONS(2913), - [anon_sym_usize] = ACTIONS(2913), - [anon_sym_f32] = ACTIONS(2913), - [anon_sym_f64] = ACTIONS(2913), - [anon_sym_bool] = ACTIONS(2913), - [anon_sym_str] = ACTIONS(2913), - [anon_sym_char] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_async] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_impl] = ACTIONS(2913), - [anon_sym_let] = ACTIONS(2913), - [anon_sym_loop] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_mod] = ACTIONS(2913), - [anon_sym_pub] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_trait] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_use] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym_yield] = ACTIONS(2913), - [anon_sym_move] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [sym_integer_literal] = ACTIONS(2911), - [aux_sym_string_literal_token1] = ACTIONS(2911), - [sym_char_literal] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2913), - [anon_sym_false] = ACTIONS(2913), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2913), - [sym_super] = ACTIONS(2913), - [sym_crate] = ACTIONS(2913), - [sym_metavariable] = ACTIONS(2911), - [sym__raw_string_literal_start] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - }, - [753] = { + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_macro_rules_BANG] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_u8] = ACTIONS(2924), + [anon_sym_i8] = ACTIONS(2924), + [anon_sym_u16] = ACTIONS(2924), + [anon_sym_i16] = ACTIONS(2924), + [anon_sym_u32] = ACTIONS(2924), + [anon_sym_i32] = ACTIONS(2924), + [anon_sym_u64] = ACTIONS(2924), + [anon_sym_i64] = ACTIONS(2924), + [anon_sym_u128] = ACTIONS(2924), + [anon_sym_i128] = ACTIONS(2924), + [anon_sym_isize] = ACTIONS(2924), + [anon_sym_usize] = ACTIONS(2924), + [anon_sym_f32] = ACTIONS(2924), + [anon_sym_f64] = ACTIONS(2924), + [anon_sym_bool] = ACTIONS(2924), + [anon_sym_str] = ACTIONS(2924), + [anon_sym_char] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_DOT_DOT] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_POUND] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2924), + [anon_sym_async] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_fn] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_gen] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_impl] = ACTIONS(2924), + [anon_sym_let] = ACTIONS(2924), + [anon_sym_loop] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_mod] = ACTIONS(2924), + [anon_sym_pub] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_trait] = ACTIONS(2924), + [anon_sym_type] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_unsafe] = ACTIONS(2924), + [anon_sym_use] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_move] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [sym_integer_literal] = ACTIONS(2922), + [aux_sym_string_literal_token1] = ACTIONS(2922), + [sym_char_literal] = ACTIONS(2922), + [anon_sym_true] = ACTIONS(2924), + [anon_sym_false] = ACTIONS(2924), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2924), + [sym_super] = ACTIONS(2924), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(2922), + [sym__raw_string_literal_start] = ACTIONS(2922), + [sym_float_literal] = ACTIONS(2922), + }, + [STATE(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_identifier] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_macro_rules_BANG] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_u8] = ACTIONS(2917), - [anon_sym_i8] = ACTIONS(2917), - [anon_sym_u16] = ACTIONS(2917), - [anon_sym_i16] = ACTIONS(2917), - [anon_sym_u32] = ACTIONS(2917), - [anon_sym_i32] = ACTIONS(2917), - [anon_sym_u64] = ACTIONS(2917), - [anon_sym_i64] = ACTIONS(2917), - [anon_sym_u128] = ACTIONS(2917), - [anon_sym_i128] = ACTIONS(2917), - [anon_sym_isize] = ACTIONS(2917), - [anon_sym_usize] = ACTIONS(2917), - [anon_sym_f32] = ACTIONS(2917), - [anon_sym_f64] = ACTIONS(2917), - [anon_sym_bool] = ACTIONS(2917), - [anon_sym_str] = ACTIONS(2917), - [anon_sym_char] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_async] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_impl] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_loop] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_mod] = ACTIONS(2917), - [anon_sym_pub] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_trait] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_move] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [sym_integer_literal] = ACTIONS(2915), - [aux_sym_string_literal_token1] = ACTIONS(2915), - [sym_char_literal] = ACTIONS(2915), - [anon_sym_true] = ACTIONS(2917), - [anon_sym_false] = ACTIONS(2917), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2917), - [sym_super] = ACTIONS(2917), - [sym_crate] = ACTIONS(2917), - [sym_metavariable] = ACTIONS(2915), - [sym__raw_string_literal_start] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - }, - [754] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2828), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2500), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_macro_rules_BANG] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_u8] = ACTIONS(2928), + [anon_sym_i8] = ACTIONS(2928), + [anon_sym_u16] = ACTIONS(2928), + [anon_sym_i16] = ACTIONS(2928), + [anon_sym_u32] = ACTIONS(2928), + [anon_sym_i32] = ACTIONS(2928), + [anon_sym_u64] = ACTIONS(2928), + [anon_sym_i64] = ACTIONS(2928), + [anon_sym_u128] = ACTIONS(2928), + [anon_sym_i128] = ACTIONS(2928), + [anon_sym_isize] = ACTIONS(2928), + [anon_sym_usize] = ACTIONS(2928), + [anon_sym_f32] = ACTIONS(2928), + [anon_sym_f64] = ACTIONS(2928), + [anon_sym_bool] = ACTIONS(2928), + [anon_sym_str] = ACTIONS(2928), + [anon_sym_char] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_DOT_DOT] = ACTIONS(2926), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2928), + [anon_sym_async] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_fn] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_gen] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_impl] = ACTIONS(2928), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_loop] = ACTIONS(2928), + [anon_sym_match] = ACTIONS(2928), + [anon_sym_mod] = ACTIONS(2928), + [anon_sym_pub] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_trait] = ACTIONS(2928), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_unsafe] = ACTIONS(2928), + [anon_sym_use] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym_yield] = ACTIONS(2928), + [anon_sym_move] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [sym_integer_literal] = ACTIONS(2926), + [aux_sym_string_literal_token1] = ACTIONS(2926), + [sym_char_literal] = ACTIONS(2926), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2928), + [sym_super] = ACTIONS(2928), + [sym_crate] = ACTIONS(2928), + [sym_metavariable] = ACTIONS(2926), + [sym__raw_string_literal_start] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + }, + [STATE(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [755] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_macro_rules_BANG] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_u8] = ACTIONS(2932), + [anon_sym_i8] = ACTIONS(2932), + [anon_sym_u16] = ACTIONS(2932), + [anon_sym_i16] = ACTIONS(2932), + [anon_sym_u32] = ACTIONS(2932), + [anon_sym_i32] = ACTIONS(2932), + [anon_sym_u64] = ACTIONS(2932), + [anon_sym_i64] = ACTIONS(2932), + [anon_sym_u128] = ACTIONS(2932), + [anon_sym_i128] = ACTIONS(2932), + [anon_sym_isize] = ACTIONS(2932), + [anon_sym_usize] = ACTIONS(2932), + [anon_sym_f32] = ACTIONS(2932), + [anon_sym_f64] = ACTIONS(2932), + [anon_sym_bool] = ACTIONS(2932), + [anon_sym_str] = ACTIONS(2932), + [anon_sym_char] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_DOT_DOT] = ACTIONS(2930), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_POUND] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2932), + [anon_sym_async] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_fn] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_gen] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_impl] = ACTIONS(2932), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_loop] = ACTIONS(2932), + [anon_sym_match] = ACTIONS(2932), + [anon_sym_mod] = ACTIONS(2932), + [anon_sym_pub] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_trait] = ACTIONS(2932), + [anon_sym_type] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_unsafe] = ACTIONS(2932), + [anon_sym_use] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2932), + [anon_sym_move] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [sym_integer_literal] = ACTIONS(2930), + [aux_sym_string_literal_token1] = ACTIONS(2930), + [sym_char_literal] = ACTIONS(2930), + [anon_sym_true] = ACTIONS(2932), + [anon_sym_false] = ACTIONS(2932), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_crate] = ACTIONS(2932), + [sym_metavariable] = ACTIONS(2930), + [sym__raw_string_literal_start] = ACTIONS(2930), + [sym_float_literal] = ACTIONS(2930), + }, + [STATE(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [756] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_macro_rules_BANG] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_u8] = ACTIONS(2936), + [anon_sym_i8] = ACTIONS(2936), + [anon_sym_u16] = ACTIONS(2936), + [anon_sym_i16] = ACTIONS(2936), + [anon_sym_u32] = ACTIONS(2936), + [anon_sym_i32] = ACTIONS(2936), + [anon_sym_u64] = ACTIONS(2936), + [anon_sym_i64] = ACTIONS(2936), + [anon_sym_u128] = ACTIONS(2936), + [anon_sym_i128] = ACTIONS(2936), + [anon_sym_isize] = ACTIONS(2936), + [anon_sym_usize] = ACTIONS(2936), + [anon_sym_f32] = ACTIONS(2936), + [anon_sym_f64] = ACTIONS(2936), + [anon_sym_bool] = ACTIONS(2936), + [anon_sym_str] = ACTIONS(2936), + [anon_sym_char] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_DOT_DOT] = ACTIONS(2934), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_async] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_fn] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_gen] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_impl] = ACTIONS(2936), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_loop] = ACTIONS(2936), + [anon_sym_match] = ACTIONS(2936), + [anon_sym_mod] = ACTIONS(2936), + [anon_sym_pub] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_trait] = ACTIONS(2936), + [anon_sym_type] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_unsafe] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2936), + [anon_sym_move] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [sym_integer_literal] = ACTIONS(2934), + [aux_sym_string_literal_token1] = ACTIONS(2934), + [sym_char_literal] = ACTIONS(2934), + [anon_sym_true] = ACTIONS(2936), + [anon_sym_false] = ACTIONS(2936), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2936), + [sym_super] = ACTIONS(2936), + [sym_crate] = ACTIONS(2936), + [sym_metavariable] = ACTIONS(2934), + [sym__raw_string_literal_start] = ACTIONS(2934), + [sym_float_literal] = ACTIONS(2934), + }, + [STATE(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [757] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_macro_rules_BANG] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_u8] = ACTIONS(2940), + [anon_sym_i8] = ACTIONS(2940), + [anon_sym_u16] = ACTIONS(2940), + [anon_sym_i16] = ACTIONS(2940), + [anon_sym_u32] = ACTIONS(2940), + [anon_sym_i32] = ACTIONS(2940), + [anon_sym_u64] = ACTIONS(2940), + [anon_sym_i64] = ACTIONS(2940), + [anon_sym_u128] = ACTIONS(2940), + [anon_sym_i128] = ACTIONS(2940), + [anon_sym_isize] = ACTIONS(2940), + [anon_sym_usize] = ACTIONS(2940), + [anon_sym_f32] = ACTIONS(2940), + [anon_sym_f64] = ACTIONS(2940), + [anon_sym_bool] = ACTIONS(2940), + [anon_sym_str] = ACTIONS(2940), + [anon_sym_char] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_DOT_DOT] = ACTIONS(2938), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_POUND] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_async] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_fn] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_gen] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_impl] = ACTIONS(2940), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_loop] = ACTIONS(2940), + [anon_sym_match] = ACTIONS(2940), + [anon_sym_mod] = ACTIONS(2940), + [anon_sym_pub] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_trait] = ACTIONS(2940), + [anon_sym_type] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_unsafe] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2940), + [anon_sym_move] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [sym_integer_literal] = ACTIONS(2938), + [aux_sym_string_literal_token1] = ACTIONS(2938), + [sym_char_literal] = ACTIONS(2938), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2940), + [sym_super] = ACTIONS(2940), + [sym_crate] = ACTIONS(2940), + [sym_metavariable] = ACTIONS(2938), + [sym__raw_string_literal_start] = ACTIONS(2938), + [sym_float_literal] = ACTIONS(2938), + }, + [STATE(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [758] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3423), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_identifier] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_macro_rules_BANG] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_u8] = ACTIONS(2944), + [anon_sym_i8] = ACTIONS(2944), + [anon_sym_u16] = ACTIONS(2944), + [anon_sym_i16] = ACTIONS(2944), + [anon_sym_u32] = ACTIONS(2944), + [anon_sym_i32] = ACTIONS(2944), + [anon_sym_u64] = ACTIONS(2944), + [anon_sym_i64] = ACTIONS(2944), + [anon_sym_u128] = ACTIONS(2944), + [anon_sym_i128] = ACTIONS(2944), + [anon_sym_isize] = ACTIONS(2944), + [anon_sym_usize] = ACTIONS(2944), + [anon_sym_f32] = ACTIONS(2944), + [anon_sym_f64] = ACTIONS(2944), + [anon_sym_bool] = ACTIONS(2944), + [anon_sym_str] = ACTIONS(2944), + [anon_sym_char] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_DOT_DOT] = ACTIONS(2942), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_POUND] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_fn] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_gen] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_impl] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_loop] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_mod] = ACTIONS(2944), + [anon_sym_pub] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_trait] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_unsafe] = ACTIONS(2944), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_move] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [sym_integer_literal] = ACTIONS(2942), + [aux_sym_string_literal_token1] = ACTIONS(2942), + [sym_char_literal] = ACTIONS(2942), + [anon_sym_true] = ACTIONS(2944), + [anon_sym_false] = ACTIONS(2944), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2944), + [sym_super] = ACTIONS(2944), + [sym_crate] = ACTIONS(2944), + [sym_metavariable] = ACTIONS(2942), + [sym__raw_string_literal_start] = ACTIONS(2942), + [sym_float_literal] = ACTIONS(2942), + }, + [STATE(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [759] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3410), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_macro_rules_BANG] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_u8] = ACTIONS(2948), + [anon_sym_i8] = ACTIONS(2948), + [anon_sym_u16] = ACTIONS(2948), + [anon_sym_i16] = ACTIONS(2948), + [anon_sym_u32] = ACTIONS(2948), + [anon_sym_i32] = ACTIONS(2948), + [anon_sym_u64] = ACTIONS(2948), + [anon_sym_i64] = ACTIONS(2948), + [anon_sym_u128] = ACTIONS(2948), + [anon_sym_i128] = ACTIONS(2948), + [anon_sym_isize] = ACTIONS(2948), + [anon_sym_usize] = ACTIONS(2948), + [anon_sym_f32] = ACTIONS(2948), + [anon_sym_f64] = ACTIONS(2948), + [anon_sym_bool] = ACTIONS(2948), + [anon_sym_str] = ACTIONS(2948), + [anon_sym_char] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_POUND] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2948), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_fn] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_gen] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_impl] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_loop] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_mod] = ACTIONS(2948), + [anon_sym_pub] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_trait] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_unsafe] = ACTIONS(2948), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_move] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [sym_integer_literal] = ACTIONS(2946), + [aux_sym_string_literal_token1] = ACTIONS(2946), + [sym_char_literal] = ACTIONS(2946), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2948), + [sym_super] = ACTIONS(2948), + [sym_crate] = ACTIONS(2948), + [sym_metavariable] = ACTIONS(2946), + [sym__raw_string_literal_start] = ACTIONS(2946), + [sym_float_literal] = ACTIONS(2946), + }, + [STATE(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [760] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_macro_rules_BANG] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_u8] = ACTIONS(2952), + [anon_sym_i8] = ACTIONS(2952), + [anon_sym_u16] = ACTIONS(2952), + [anon_sym_i16] = ACTIONS(2952), + [anon_sym_u32] = ACTIONS(2952), + [anon_sym_i32] = ACTIONS(2952), + [anon_sym_u64] = ACTIONS(2952), + [anon_sym_i64] = ACTIONS(2952), + [anon_sym_u128] = ACTIONS(2952), + [anon_sym_i128] = ACTIONS(2952), + [anon_sym_isize] = ACTIONS(2952), + [anon_sym_usize] = ACTIONS(2952), + [anon_sym_f32] = ACTIONS(2952), + [anon_sym_f64] = ACTIONS(2952), + [anon_sym_bool] = ACTIONS(2952), + [anon_sym_str] = ACTIONS(2952), + [anon_sym_char] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_DOT_DOT] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2952), + [anon_sym_async] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_fn] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_gen] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_impl] = ACTIONS(2952), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_loop] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_mod] = ACTIONS(2952), + [anon_sym_pub] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_trait] = ACTIONS(2952), + [anon_sym_type] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_unsafe] = ACTIONS(2952), + [anon_sym_use] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym_yield] = ACTIONS(2952), + [anon_sym_move] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [sym_integer_literal] = ACTIONS(2950), + [aux_sym_string_literal_token1] = ACTIONS(2950), + [sym_char_literal] = ACTIONS(2950), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2952), + [sym_super] = ACTIONS(2952), + [sym_crate] = ACTIONS(2952), + [sym_metavariable] = ACTIONS(2950), + [sym__raw_string_literal_start] = ACTIONS(2950), + [sym_float_literal] = ACTIONS(2950), + }, + [STATE(760)] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [761] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_macro_rules_BANG] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_u8] = ACTIONS(2956), + [anon_sym_i8] = ACTIONS(2956), + [anon_sym_u16] = ACTIONS(2956), + [anon_sym_i16] = ACTIONS(2956), + [anon_sym_u32] = ACTIONS(2956), + [anon_sym_i32] = ACTIONS(2956), + [anon_sym_u64] = ACTIONS(2956), + [anon_sym_i64] = ACTIONS(2956), + [anon_sym_u128] = ACTIONS(2956), + [anon_sym_i128] = ACTIONS(2956), + [anon_sym_isize] = ACTIONS(2956), + [anon_sym_usize] = ACTIONS(2956), + [anon_sym_f32] = ACTIONS(2956), + [anon_sym_f64] = ACTIONS(2956), + [anon_sym_bool] = ACTIONS(2956), + [anon_sym_str] = ACTIONS(2956), + [anon_sym_char] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_DOT_DOT] = ACTIONS(2954), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2956), + [anon_sym_async] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_fn] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_gen] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_impl] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_loop] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_mod] = ACTIONS(2956), + [anon_sym_pub] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_trait] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_unsafe] = ACTIONS(2956), + [anon_sym_use] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_move] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [sym_integer_literal] = ACTIONS(2954), + [aux_sym_string_literal_token1] = ACTIONS(2954), + [sym_char_literal] = ACTIONS(2954), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2956), + [sym_super] = ACTIONS(2956), + [sym_crate] = ACTIONS(2956), + [sym_metavariable] = ACTIONS(2954), + [sym__raw_string_literal_start] = ACTIONS(2954), + [sym_float_literal] = ACTIONS(2954), + }, + [STATE(761)] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [762] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_macro_rules_BANG] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_DOT_DOT] = ACTIONS(2958), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2960), + [anon_sym_async] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2960), + [anon_sym_fn] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_gen] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_impl] = ACTIONS(2960), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_loop] = ACTIONS(2960), + [anon_sym_match] = ACTIONS(2960), + [anon_sym_mod] = ACTIONS(2960), + [anon_sym_pub] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_struct] = ACTIONS(2960), + [anon_sym_trait] = ACTIONS(2960), + [anon_sym_type] = ACTIONS(2960), + [anon_sym_union] = ACTIONS(2960), + [anon_sym_unsafe] = ACTIONS(2960), + [anon_sym_use] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_extern] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2960), + [anon_sym_move] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2960), + [sym_integer_literal] = ACTIONS(2958), + [aux_sym_string_literal_token1] = ACTIONS(2958), + [sym_char_literal] = ACTIONS(2958), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2960), + [sym_super] = ACTIONS(2960), + [sym_crate] = ACTIONS(2960), + [sym_metavariable] = ACTIONS(2958), + [sym__raw_string_literal_start] = ACTIONS(2958), + [sym_float_literal] = ACTIONS(2958), + }, + [STATE(762)] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [763] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_const_parameter] = STATE(2959), - [sym_constrained_type_parameter] = STATE(2693), - [sym_optional_type_parameter] = STATE(2959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(2373), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_macro_rules_BANG] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_u8] = ACTIONS(2964), + [anon_sym_i8] = ACTIONS(2964), + [anon_sym_u16] = ACTIONS(2964), + [anon_sym_i16] = ACTIONS(2964), + [anon_sym_u32] = ACTIONS(2964), + [anon_sym_i32] = ACTIONS(2964), + [anon_sym_u64] = ACTIONS(2964), + [anon_sym_i64] = ACTIONS(2964), + [anon_sym_u128] = ACTIONS(2964), + [anon_sym_i128] = ACTIONS(2964), + [anon_sym_isize] = ACTIONS(2964), + [anon_sym_usize] = ACTIONS(2964), + [anon_sym_f32] = ACTIONS(2964), + [anon_sym_f64] = ACTIONS(2964), + [anon_sym_bool] = ACTIONS(2964), + [anon_sym_str] = ACTIONS(2964), + [anon_sym_char] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_DOT_DOT] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(2962), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_async] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_const] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_default] = ACTIONS(2964), + [anon_sym_enum] = ACTIONS(2964), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_gen] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_impl] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_loop] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_mod] = ACTIONS(2964), + [anon_sym_pub] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_struct] = ACTIONS(2964), + [anon_sym_trait] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_union] = ACTIONS(2964), + [anon_sym_unsafe] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_extern] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_move] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [sym_integer_literal] = ACTIONS(2962), + [aux_sym_string_literal_token1] = ACTIONS(2962), + [sym_char_literal] = ACTIONS(2962), + [anon_sym_true] = ACTIONS(2964), + [anon_sym_false] = ACTIONS(2964), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_crate] = ACTIONS(2964), + [sym_metavariable] = ACTIONS(2962), + [sym__raw_string_literal_start] = ACTIONS(2962), + [sym_float_literal] = ACTIONS(2962), + }, + [STATE(763)] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [aux_sym_enum_variant_list_repeat1] = STATE(2055), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(2961), - }, - [764] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(885), - [sym__type] = STATE(2579), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_macro_rules_BANG] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_u8] = ACTIONS(2968), + [anon_sym_i8] = ACTIONS(2968), + [anon_sym_u16] = ACTIONS(2968), + [anon_sym_i16] = ACTIONS(2968), + [anon_sym_u32] = ACTIONS(2968), + [anon_sym_i32] = ACTIONS(2968), + [anon_sym_u64] = ACTIONS(2968), + [anon_sym_i64] = ACTIONS(2968), + [anon_sym_u128] = ACTIONS(2968), + [anon_sym_i128] = ACTIONS(2968), + [anon_sym_isize] = ACTIONS(2968), + [anon_sym_usize] = ACTIONS(2968), + [anon_sym_f32] = ACTIONS(2968), + [anon_sym_f64] = ACTIONS(2968), + [anon_sym_bool] = ACTIONS(2968), + [anon_sym_str] = ACTIONS(2968), + [anon_sym_char] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_DOT_DOT] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2968), + [anon_sym_enum] = ACTIONS(2968), + [anon_sym_fn] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_gen] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_impl] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2968), + [anon_sym_loop] = ACTIONS(2968), + [anon_sym_match] = ACTIONS(2968), + [anon_sym_mod] = ACTIONS(2968), + [anon_sym_pub] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2968), + [anon_sym_trait] = ACTIONS(2968), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_union] = ACTIONS(2968), + [anon_sym_unsafe] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2968), + [anon_sym_while] = ACTIONS(2968), + [anon_sym_extern] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2968), + [anon_sym_move] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2968), + [sym_integer_literal] = ACTIONS(2966), + [aux_sym_string_literal_token1] = ACTIONS(2966), + [sym_char_literal] = ACTIONS(2966), + [anon_sym_true] = ACTIONS(2968), + [anon_sym_false] = ACTIONS(2968), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2968), + [sym_super] = ACTIONS(2968), + [sym_crate] = ACTIONS(2968), + [sym_metavariable] = ACTIONS(2966), + [sym__raw_string_literal_start] = ACTIONS(2966), + [sym_float_literal] = ACTIONS(2966), + }, + [STATE(764)] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [aux_sym_enum_variant_list_repeat1] = STATE(772), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [765] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2970), + [anon_sym_macro_rules_BANG] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2970), + [anon_sym_u8] = ACTIONS(2972), + [anon_sym_i8] = ACTIONS(2972), + [anon_sym_u16] = ACTIONS(2972), + [anon_sym_i16] = ACTIONS(2972), + [anon_sym_u32] = ACTIONS(2972), + [anon_sym_i32] = ACTIONS(2972), + [anon_sym_u64] = ACTIONS(2972), + [anon_sym_i64] = ACTIONS(2972), + [anon_sym_u128] = ACTIONS(2972), + [anon_sym_i128] = ACTIONS(2972), + [anon_sym_isize] = ACTIONS(2972), + [anon_sym_usize] = ACTIONS(2972), + [anon_sym_f32] = ACTIONS(2972), + [anon_sym_f64] = ACTIONS(2972), + [anon_sym_bool] = ACTIONS(2972), + [anon_sym_str] = ACTIONS(2972), + [anon_sym_char] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_DOT_DOT] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_async] = ACTIONS(2972), + [anon_sym_break] = ACTIONS(2972), + [anon_sym_const] = ACTIONS(2972), + [anon_sym_continue] = ACTIONS(2972), + [anon_sym_default] = ACTIONS(2972), + [anon_sym_enum] = ACTIONS(2972), + [anon_sym_fn] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2972), + [anon_sym_gen] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_impl] = ACTIONS(2972), + [anon_sym_let] = ACTIONS(2972), + [anon_sym_loop] = ACTIONS(2972), + [anon_sym_match] = ACTIONS(2972), + [anon_sym_mod] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(2972), + [anon_sym_return] = ACTIONS(2972), + [anon_sym_static] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2972), + [anon_sym_trait] = ACTIONS(2972), + [anon_sym_type] = ACTIONS(2972), + [anon_sym_union] = ACTIONS(2972), + [anon_sym_unsafe] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2972), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_extern] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2972), + [anon_sym_move] = ACTIONS(2972), + [anon_sym_try] = ACTIONS(2972), + [sym_integer_literal] = ACTIONS(2970), + [aux_sym_string_literal_token1] = ACTIONS(2970), + [sym_char_literal] = ACTIONS(2970), + [anon_sym_true] = ACTIONS(2972), + [anon_sym_false] = ACTIONS(2972), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2970), + [sym__raw_string_literal_start] = ACTIONS(2970), + [sym_float_literal] = ACTIONS(2970), + }, + [STATE(765)] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [766] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_macro_rules_BANG] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_RBRACE] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_u8] = ACTIONS(2976), + [anon_sym_i8] = ACTIONS(2976), + [anon_sym_u16] = ACTIONS(2976), + [anon_sym_i16] = ACTIONS(2976), + [anon_sym_u32] = ACTIONS(2976), + [anon_sym_i32] = ACTIONS(2976), + [anon_sym_u64] = ACTIONS(2976), + [anon_sym_i64] = ACTIONS(2976), + [anon_sym_u128] = ACTIONS(2976), + [anon_sym_i128] = ACTIONS(2976), + [anon_sym_isize] = ACTIONS(2976), + [anon_sym_usize] = ACTIONS(2976), + [anon_sym_f32] = ACTIONS(2976), + [anon_sym_f64] = ACTIONS(2976), + [anon_sym_bool] = ACTIONS(2976), + [anon_sym_str] = ACTIONS(2976), + [anon_sym_char] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_DOT_DOT] = ACTIONS(2974), + [anon_sym_COLON_COLON] = ACTIONS(2974), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_async] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_fn] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_gen] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_impl] = ACTIONS(2976), + [anon_sym_let] = ACTIONS(2976), + [anon_sym_loop] = ACTIONS(2976), + [anon_sym_match] = ACTIONS(2976), + [anon_sym_mod] = ACTIONS(2976), + [anon_sym_pub] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_trait] = ACTIONS(2976), + [anon_sym_type] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_unsafe] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2976), + [anon_sym_move] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [sym_integer_literal] = ACTIONS(2974), + [aux_sym_string_literal_token1] = ACTIONS(2974), + [sym_char_literal] = ACTIONS(2974), + [anon_sym_true] = ACTIONS(2976), + [anon_sym_false] = ACTIONS(2976), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2976), + [sym_super] = ACTIONS(2976), + [sym_crate] = ACTIONS(2976), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(2974), + [sym_float_literal] = ACTIONS(2974), + }, + [STATE(766)] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [767] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_macro_rules_BANG] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_u8] = ACTIONS(2980), + [anon_sym_i8] = ACTIONS(2980), + [anon_sym_u16] = ACTIONS(2980), + [anon_sym_i16] = ACTIONS(2980), + [anon_sym_u32] = ACTIONS(2980), + [anon_sym_i32] = ACTIONS(2980), + [anon_sym_u64] = ACTIONS(2980), + [anon_sym_i64] = ACTIONS(2980), + [anon_sym_u128] = ACTIONS(2980), + [anon_sym_i128] = ACTIONS(2980), + [anon_sym_isize] = ACTIONS(2980), + [anon_sym_usize] = ACTIONS(2980), + [anon_sym_f32] = ACTIONS(2980), + [anon_sym_f64] = ACTIONS(2980), + [anon_sym_bool] = ACTIONS(2980), + [anon_sym_str] = ACTIONS(2980), + [anon_sym_char] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_DOT_DOT] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_gen] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_impl] = ACTIONS(2980), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_loop] = ACTIONS(2980), + [anon_sym_match] = ACTIONS(2980), + [anon_sym_mod] = ACTIONS(2980), + [anon_sym_pub] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_trait] = ACTIONS(2980), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_unsafe] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2980), + [anon_sym_move] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [sym_integer_literal] = ACTIONS(2978), + [aux_sym_string_literal_token1] = ACTIONS(2978), + [sym_char_literal] = ACTIONS(2978), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2980), + [sym_super] = ACTIONS(2980), + [sym_crate] = ACTIONS(2980), + [sym_metavariable] = ACTIONS(2978), + [sym__raw_string_literal_start] = ACTIONS(2978), + [sym_float_literal] = ACTIONS(2978), + }, + [STATE(767)] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [768] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_identifier] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_macro_rules_BANG] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_u8] = ACTIONS(2984), + [anon_sym_i8] = ACTIONS(2984), + [anon_sym_u16] = ACTIONS(2984), + [anon_sym_i16] = ACTIONS(2984), + [anon_sym_u32] = ACTIONS(2984), + [anon_sym_i32] = ACTIONS(2984), + [anon_sym_u64] = ACTIONS(2984), + [anon_sym_i64] = ACTIONS(2984), + [anon_sym_u128] = ACTIONS(2984), + [anon_sym_i128] = ACTIONS(2984), + [anon_sym_isize] = ACTIONS(2984), + [anon_sym_usize] = ACTIONS(2984), + [anon_sym_f32] = ACTIONS(2984), + [anon_sym_f64] = ACTIONS(2984), + [anon_sym_bool] = ACTIONS(2984), + [anon_sym_str] = ACTIONS(2984), + [anon_sym_char] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_DOT_DOT] = ACTIONS(2982), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_POUND] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_async] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_gen] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_impl] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_loop] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_mod] = ACTIONS(2984), + [anon_sym_pub] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_trait] = ACTIONS(2984), + [anon_sym_type] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2984), + [anon_sym_move] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [sym_integer_literal] = ACTIONS(2982), + [aux_sym_string_literal_token1] = ACTIONS(2982), + [sym_char_literal] = ACTIONS(2982), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2984), + [sym_super] = ACTIONS(2984), + [sym_crate] = ACTIONS(2984), + [sym_metavariable] = ACTIONS(2982), + [sym__raw_string_literal_start] = ACTIONS(2982), + [sym_float_literal] = ACTIONS(2982), + }, + [STATE(768)] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [769] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_macro_rules_BANG] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_u8] = ACTIONS(2988), + [anon_sym_i8] = ACTIONS(2988), + [anon_sym_u16] = ACTIONS(2988), + [anon_sym_i16] = ACTIONS(2988), + [anon_sym_u32] = ACTIONS(2988), + [anon_sym_i32] = ACTIONS(2988), + [anon_sym_u64] = ACTIONS(2988), + [anon_sym_i64] = ACTIONS(2988), + [anon_sym_u128] = ACTIONS(2988), + [anon_sym_i128] = ACTIONS(2988), + [anon_sym_isize] = ACTIONS(2988), + [anon_sym_usize] = ACTIONS(2988), + [anon_sym_f32] = ACTIONS(2988), + [anon_sym_f64] = ACTIONS(2988), + [anon_sym_bool] = ACTIONS(2988), + [anon_sym_str] = ACTIONS(2988), + [anon_sym_char] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2986), + [anon_sym_PIPE] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_DOT_DOT] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_POUND] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_async] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_fn] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_gen] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_impl] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_loop] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_mod] = ACTIONS(2988), + [anon_sym_pub] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_trait] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_unsafe] = ACTIONS(2988), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_move] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [sym_integer_literal] = ACTIONS(2986), + [aux_sym_string_literal_token1] = ACTIONS(2986), + [sym_char_literal] = ACTIONS(2986), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2988), + [sym_super] = ACTIONS(2988), + [sym_crate] = ACTIONS(2988), + [sym_metavariable] = ACTIONS(2986), + [sym__raw_string_literal_start] = ACTIONS(2986), + [sym_float_literal] = ACTIONS(2986), + }, + [STATE(769)] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [770] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_macro_rules_BANG] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_u8] = ACTIONS(2992), + [anon_sym_i8] = ACTIONS(2992), + [anon_sym_u16] = ACTIONS(2992), + [anon_sym_i16] = ACTIONS(2992), + [anon_sym_u32] = ACTIONS(2992), + [anon_sym_i32] = ACTIONS(2992), + [anon_sym_u64] = ACTIONS(2992), + [anon_sym_i64] = ACTIONS(2992), + [anon_sym_u128] = ACTIONS(2992), + [anon_sym_i128] = ACTIONS(2992), + [anon_sym_isize] = ACTIONS(2992), + [anon_sym_usize] = ACTIONS(2992), + [anon_sym_f32] = ACTIONS(2992), + [anon_sym_f64] = ACTIONS(2992), + [anon_sym_bool] = ACTIONS(2992), + [anon_sym_str] = ACTIONS(2992), + [anon_sym_char] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2990), + [anon_sym_PIPE] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2990), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_POUND] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2992), + [anon_sym_async] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_gen] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_impl] = ACTIONS(2992), + [anon_sym_let] = ACTIONS(2992), + [anon_sym_loop] = ACTIONS(2992), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_mod] = ACTIONS(2992), + [anon_sym_pub] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_trait] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_use] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym_yield] = ACTIONS(2992), + [anon_sym_move] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [sym_integer_literal] = ACTIONS(2990), + [aux_sym_string_literal_token1] = ACTIONS(2990), + [sym_char_literal] = ACTIONS(2990), + [anon_sym_true] = ACTIONS(2992), + [anon_sym_false] = ACTIONS(2992), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2992), + [sym_super] = ACTIONS(2992), + [sym_crate] = ACTIONS(2992), + [sym_metavariable] = ACTIONS(2990), + [sym__raw_string_literal_start] = ACTIONS(2990), + [sym_float_literal] = ACTIONS(2990), + }, + [STATE(770)] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [771] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2674), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(2994), + [sym_identifier] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_macro_rules_BANG] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_u8] = ACTIONS(2996), + [anon_sym_i8] = ACTIONS(2996), + [anon_sym_u16] = ACTIONS(2996), + [anon_sym_i16] = ACTIONS(2996), + [anon_sym_u32] = ACTIONS(2996), + [anon_sym_i32] = ACTIONS(2996), + [anon_sym_u64] = ACTIONS(2996), + [anon_sym_i64] = ACTIONS(2996), + [anon_sym_u128] = ACTIONS(2996), + [anon_sym_i128] = ACTIONS(2996), + [anon_sym_isize] = ACTIONS(2996), + [anon_sym_usize] = ACTIONS(2996), + [anon_sym_f32] = ACTIONS(2996), + [anon_sym_f64] = ACTIONS(2996), + [anon_sym_bool] = ACTIONS(2996), + [anon_sym_str] = ACTIONS(2996), + [anon_sym_char] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_DOT_DOT] = ACTIONS(2994), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_POUND] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2996), + [anon_sym_async] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_fn] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_gen] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_impl] = ACTIONS(2996), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_loop] = ACTIONS(2996), + [anon_sym_match] = ACTIONS(2996), + [anon_sym_mod] = ACTIONS(2996), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_trait] = ACTIONS(2996), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_unsafe] = ACTIONS(2996), + [anon_sym_use] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym_yield] = ACTIONS(2996), + [anon_sym_move] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [sym_integer_literal] = ACTIONS(2994), + [aux_sym_string_literal_token1] = ACTIONS(2994), + [sym_char_literal] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2996), + [anon_sym_false] = ACTIONS(2996), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2996), + [sym_super] = ACTIONS(2996), + [sym_crate] = ACTIONS(2996), + [sym_metavariable] = ACTIONS(2994), + [sym__raw_string_literal_start] = ACTIONS(2994), + [sym_float_literal] = ACTIONS(2994), + }, + [STATE(771)] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [772] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(942), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(2998), + [sym_identifier] = ACTIONS(3000), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_macro_rules_BANG] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_u8] = ACTIONS(3000), + [anon_sym_i8] = ACTIONS(3000), + [anon_sym_u16] = ACTIONS(3000), + [anon_sym_i16] = ACTIONS(3000), + [anon_sym_u32] = ACTIONS(3000), + [anon_sym_i32] = ACTIONS(3000), + [anon_sym_u64] = ACTIONS(3000), + [anon_sym_i64] = ACTIONS(3000), + [anon_sym_u128] = ACTIONS(3000), + [anon_sym_i128] = ACTIONS(3000), + [anon_sym_isize] = ACTIONS(3000), + [anon_sym_usize] = ACTIONS(3000), + [anon_sym_f32] = ACTIONS(3000), + [anon_sym_f64] = ACTIONS(3000), + [anon_sym_bool] = ACTIONS(3000), + [anon_sym_str] = ACTIONS(3000), + [anon_sym_char] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_LT] = ACTIONS(2998), + [anon_sym_DOT_DOT] = ACTIONS(2998), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_async] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_default] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_fn] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_gen] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_impl] = ACTIONS(3000), + [anon_sym_let] = ACTIONS(3000), + [anon_sym_loop] = ACTIONS(3000), + [anon_sym_match] = ACTIONS(3000), + [anon_sym_mod] = ACTIONS(3000), + [anon_sym_pub] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_trait] = ACTIONS(3000), + [anon_sym_type] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_unsafe] = ACTIONS(3000), + [anon_sym_use] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(3000), + [anon_sym_move] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [sym_integer_literal] = ACTIONS(2998), + [aux_sym_string_literal_token1] = ACTIONS(2998), + [sym_char_literal] = ACTIONS(2998), + [anon_sym_true] = ACTIONS(3000), + [anon_sym_false] = ACTIONS(3000), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3000), + [sym_super] = ACTIONS(3000), + [sym_crate] = ACTIONS(3000), + [sym_metavariable] = ACTIONS(2998), + [sym__raw_string_literal_start] = ACTIONS(2998), + [sym_float_literal] = ACTIONS(2998), + }, + [STATE(772)] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [773] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2524), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_macro_rules_BANG] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_RBRACE] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_u8] = ACTIONS(3004), + [anon_sym_i8] = ACTIONS(3004), + [anon_sym_u16] = ACTIONS(3004), + [anon_sym_i16] = ACTIONS(3004), + [anon_sym_u32] = ACTIONS(3004), + [anon_sym_i32] = ACTIONS(3004), + [anon_sym_u64] = ACTIONS(3004), + [anon_sym_i64] = ACTIONS(3004), + [anon_sym_u128] = ACTIONS(3004), + [anon_sym_i128] = ACTIONS(3004), + [anon_sym_isize] = ACTIONS(3004), + [anon_sym_usize] = ACTIONS(3004), + [anon_sym_f32] = ACTIONS(3004), + [anon_sym_f64] = ACTIONS(3004), + [anon_sym_bool] = ACTIONS(3004), + [anon_sym_str] = ACTIONS(3004), + [anon_sym_char] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_DOT_DOT] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3004), + [anon_sym_async] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_fn] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_gen] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_impl] = ACTIONS(3004), + [anon_sym_let] = ACTIONS(3004), + [anon_sym_loop] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_mod] = ACTIONS(3004), + [anon_sym_pub] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_trait] = ACTIONS(3004), + [anon_sym_type] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_unsafe] = ACTIONS(3004), + [anon_sym_use] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym_yield] = ACTIONS(3004), + [anon_sym_move] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [sym_integer_literal] = ACTIONS(3002), + [aux_sym_string_literal_token1] = ACTIONS(3002), + [sym_char_literal] = ACTIONS(3002), + [anon_sym_true] = ACTIONS(3004), + [anon_sym_false] = ACTIONS(3004), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3004), + [sym_super] = ACTIONS(3004), + [sym_crate] = ACTIONS(3004), + [sym_metavariable] = ACTIONS(3002), + [sym__raw_string_literal_start] = ACTIONS(3002), + [sym_float_literal] = ACTIONS(3002), + }, + [STATE(773)] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [774] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(910), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_macro_rules_BANG] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_u8] = ACTIONS(3008), + [anon_sym_i8] = ACTIONS(3008), + [anon_sym_u16] = ACTIONS(3008), + [anon_sym_i16] = ACTIONS(3008), + [anon_sym_u32] = ACTIONS(3008), + [anon_sym_i32] = ACTIONS(3008), + [anon_sym_u64] = ACTIONS(3008), + [anon_sym_i64] = ACTIONS(3008), + [anon_sym_u128] = ACTIONS(3008), + [anon_sym_i128] = ACTIONS(3008), + [anon_sym_isize] = ACTIONS(3008), + [anon_sym_usize] = ACTIONS(3008), + [anon_sym_f32] = ACTIONS(3008), + [anon_sym_f64] = ACTIONS(3008), + [anon_sym_bool] = ACTIONS(3008), + [anon_sym_str] = ACTIONS(3008), + [anon_sym_char] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_DOT_DOT] = ACTIONS(3006), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_POUND] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_fn] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_gen] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_impl] = ACTIONS(3008), + [anon_sym_let] = ACTIONS(3008), + [anon_sym_loop] = ACTIONS(3008), + [anon_sym_match] = ACTIONS(3008), + [anon_sym_mod] = ACTIONS(3008), + [anon_sym_pub] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_trait] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_unsafe] = ACTIONS(3008), + [anon_sym_use] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym_yield] = ACTIONS(3008), + [anon_sym_move] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [sym_integer_literal] = ACTIONS(3006), + [aux_sym_string_literal_token1] = ACTIONS(3006), + [sym_char_literal] = ACTIONS(3006), + [anon_sym_true] = ACTIONS(3008), + [anon_sym_false] = ACTIONS(3008), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3008), + [sym_super] = ACTIONS(3008), + [sym_crate] = ACTIONS(3008), + [sym_metavariable] = ACTIONS(3006), + [sym__raw_string_literal_start] = ACTIONS(3006), + [sym_float_literal] = ACTIONS(3006), + }, + [STATE(774)] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [775] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2525), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_macro_rules_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_u8] = ACTIONS(3012), + [anon_sym_i8] = ACTIONS(3012), + [anon_sym_u16] = ACTIONS(3012), + [anon_sym_i16] = ACTIONS(3012), + [anon_sym_u32] = ACTIONS(3012), + [anon_sym_i32] = ACTIONS(3012), + [anon_sym_u64] = ACTIONS(3012), + [anon_sym_i64] = ACTIONS(3012), + [anon_sym_u128] = ACTIONS(3012), + [anon_sym_i128] = ACTIONS(3012), + [anon_sym_isize] = ACTIONS(3012), + [anon_sym_usize] = ACTIONS(3012), + [anon_sym_f32] = ACTIONS(3012), + [anon_sym_f64] = ACTIONS(3012), + [anon_sym_bool] = ACTIONS(3012), + [anon_sym_str] = ACTIONS(3012), + [anon_sym_char] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_DOT_DOT] = ACTIONS(3010), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3012), + [anon_sym_async] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_gen] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_impl] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_loop] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_mod] = ACTIONS(3012), + [anon_sym_pub] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_trait] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_unsafe] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_move] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [sym_integer_literal] = ACTIONS(3010), + [aux_sym_string_literal_token1] = ACTIONS(3010), + [sym_char_literal] = ACTIONS(3010), + [anon_sym_true] = ACTIONS(3012), + [anon_sym_false] = ACTIONS(3012), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3012), + [sym_super] = ACTIONS(3012), + [sym_crate] = ACTIONS(3012), + [sym_metavariable] = ACTIONS(3010), + [sym__raw_string_literal_start] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3010), + }, + [STATE(775)] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [776] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2501), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_macro_rules_BANG] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_u8] = ACTIONS(3016), + [anon_sym_i8] = ACTIONS(3016), + [anon_sym_u16] = ACTIONS(3016), + [anon_sym_i16] = ACTIONS(3016), + [anon_sym_u32] = ACTIONS(3016), + [anon_sym_i32] = ACTIONS(3016), + [anon_sym_u64] = ACTIONS(3016), + [anon_sym_i64] = ACTIONS(3016), + [anon_sym_u128] = ACTIONS(3016), + [anon_sym_i128] = ACTIONS(3016), + [anon_sym_isize] = ACTIONS(3016), + [anon_sym_usize] = ACTIONS(3016), + [anon_sym_f32] = ACTIONS(3016), + [anon_sym_f64] = ACTIONS(3016), + [anon_sym_bool] = ACTIONS(3016), + [anon_sym_str] = ACTIONS(3016), + [anon_sym_char] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_DOT_DOT] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3016), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_fn] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_gen] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_impl] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), + [anon_sym_loop] = ACTIONS(3016), + [anon_sym_match] = ACTIONS(3016), + [anon_sym_mod] = ACTIONS(3016), + [anon_sym_pub] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_trait] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(3016), + [anon_sym_use] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym_yield] = ACTIONS(3016), + [anon_sym_move] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [sym_integer_literal] = ACTIONS(3014), + [aux_sym_string_literal_token1] = ACTIONS(3014), + [sym_char_literal] = ACTIONS(3014), + [anon_sym_true] = ACTIONS(3016), + [anon_sym_false] = ACTIONS(3016), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3016), + [sym_super] = ACTIONS(3016), + [sym_crate] = ACTIONS(3016), + [sym_metavariable] = ACTIONS(3014), + [sym__raw_string_literal_start] = ACTIONS(3014), + [sym_float_literal] = ACTIONS(3014), + }, + [STATE(776)] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [777] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_macro_rules_BANG] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_u8] = ACTIONS(3020), + [anon_sym_i8] = ACTIONS(3020), + [anon_sym_u16] = ACTIONS(3020), + [anon_sym_i16] = ACTIONS(3020), + [anon_sym_u32] = ACTIONS(3020), + [anon_sym_i32] = ACTIONS(3020), + [anon_sym_u64] = ACTIONS(3020), + [anon_sym_i64] = ACTIONS(3020), + [anon_sym_u128] = ACTIONS(3020), + [anon_sym_i128] = ACTIONS(3020), + [anon_sym_isize] = ACTIONS(3020), + [anon_sym_usize] = ACTIONS(3020), + [anon_sym_f32] = ACTIONS(3020), + [anon_sym_f64] = ACTIONS(3020), + [anon_sym_bool] = ACTIONS(3020), + [anon_sym_str] = ACTIONS(3020), + [anon_sym_char] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_DOT_DOT] = ACTIONS(3018), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_POUND] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3020), + [anon_sym_async] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_gen] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_impl] = ACTIONS(3020), + [anon_sym_let] = ACTIONS(3020), + [anon_sym_loop] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_mod] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_trait] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_use] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym_yield] = ACTIONS(3020), + [anon_sym_move] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [sym_integer_literal] = ACTIONS(3018), + [aux_sym_string_literal_token1] = ACTIONS(3018), + [sym_char_literal] = ACTIONS(3018), + [anon_sym_true] = ACTIONS(3020), + [anon_sym_false] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3020), + [sym_super] = ACTIONS(3020), + [sym_crate] = ACTIONS(3020), + [sym_metavariable] = ACTIONS(3018), + [sym__raw_string_literal_start] = ACTIONS(3018), + [sym_float_literal] = ACTIONS(3018), + }, + [STATE(777)] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [778] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_macro_rules_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_u8] = ACTIONS(3024), + [anon_sym_i8] = ACTIONS(3024), + [anon_sym_u16] = ACTIONS(3024), + [anon_sym_i16] = ACTIONS(3024), + [anon_sym_u32] = ACTIONS(3024), + [anon_sym_i32] = ACTIONS(3024), + [anon_sym_u64] = ACTIONS(3024), + [anon_sym_i64] = ACTIONS(3024), + [anon_sym_u128] = ACTIONS(3024), + [anon_sym_i128] = ACTIONS(3024), + [anon_sym_isize] = ACTIONS(3024), + [anon_sym_usize] = ACTIONS(3024), + [anon_sym_f32] = ACTIONS(3024), + [anon_sym_f64] = ACTIONS(3024), + [anon_sym_bool] = ACTIONS(3024), + [anon_sym_str] = ACTIONS(3024), + [anon_sym_char] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_DOT_DOT] = ACTIONS(3022), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_async] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_gen] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_impl] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_loop] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_mod] = ACTIONS(3024), + [anon_sym_pub] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_trait] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_move] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [sym_integer_literal] = ACTIONS(3022), + [aux_sym_string_literal_token1] = ACTIONS(3022), + [sym_char_literal] = ACTIONS(3022), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3024), + [sym_super] = ACTIONS(3024), + [sym_crate] = ACTIONS(3024), + [sym_metavariable] = ACTIONS(3022), + [sym__raw_string_literal_start] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3022), + }, + [STATE(778)] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [779] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2639), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_macro_rules_BANG] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_u8] = ACTIONS(3028), + [anon_sym_i8] = ACTIONS(3028), + [anon_sym_u16] = ACTIONS(3028), + [anon_sym_i16] = ACTIONS(3028), + [anon_sym_u32] = ACTIONS(3028), + [anon_sym_i32] = ACTIONS(3028), + [anon_sym_u64] = ACTIONS(3028), + [anon_sym_i64] = ACTIONS(3028), + [anon_sym_u128] = ACTIONS(3028), + [anon_sym_i128] = ACTIONS(3028), + [anon_sym_isize] = ACTIONS(3028), + [anon_sym_usize] = ACTIONS(3028), + [anon_sym_f32] = ACTIONS(3028), + [anon_sym_f64] = ACTIONS(3028), + [anon_sym_bool] = ACTIONS(3028), + [anon_sym_str] = ACTIONS(3028), + [anon_sym_char] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(3026), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3028), + [anon_sym_async] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_gen] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_impl] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3028), + [anon_sym_loop] = ACTIONS(3028), + [anon_sym_match] = ACTIONS(3028), + [anon_sym_mod] = ACTIONS(3028), + [anon_sym_pub] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_trait] = ACTIONS(3028), + [anon_sym_type] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_unsafe] = ACTIONS(3028), + [anon_sym_use] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym_yield] = ACTIONS(3028), + [anon_sym_move] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [sym_integer_literal] = ACTIONS(3026), + [aux_sym_string_literal_token1] = ACTIONS(3026), + [sym_char_literal] = ACTIONS(3026), + [anon_sym_true] = ACTIONS(3028), + [anon_sym_false] = ACTIONS(3028), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3028), + [sym_super] = ACTIONS(3028), + [sym_crate] = ACTIONS(3028), + [sym_metavariable] = ACTIONS(3026), + [sym__raw_string_literal_start] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3026), + }, + [STATE(779)] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [780] = { - [sym_parameter] = STATE(3201), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2915), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_macro_rules_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_u8] = ACTIONS(3032), + [anon_sym_i8] = ACTIONS(3032), + [anon_sym_u16] = ACTIONS(3032), + [anon_sym_i16] = ACTIONS(3032), + [anon_sym_u32] = ACTIONS(3032), + [anon_sym_i32] = ACTIONS(3032), + [anon_sym_u64] = ACTIONS(3032), + [anon_sym_i64] = ACTIONS(3032), + [anon_sym_u128] = ACTIONS(3032), + [anon_sym_i128] = ACTIONS(3032), + [anon_sym_isize] = ACTIONS(3032), + [anon_sym_usize] = ACTIONS(3032), + [anon_sym_f32] = ACTIONS(3032), + [anon_sym_f64] = ACTIONS(3032), + [anon_sym_bool] = ACTIONS(3032), + [anon_sym_str] = ACTIONS(3032), + [anon_sym_char] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_DOT_DOT] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3032), + [anon_sym_async] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_fn] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_gen] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_loop] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_mod] = ACTIONS(3032), + [anon_sym_pub] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_trait] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_unsafe] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_move] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [sym_integer_literal] = ACTIONS(3030), + [aux_sym_string_literal_token1] = ACTIONS(3030), + [sym_char_literal] = ACTIONS(3030), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3032), + [sym_super] = ACTIONS(3032), + [sym_crate] = ACTIONS(3032), + [sym_metavariable] = ACTIONS(3030), + [sym__raw_string_literal_start] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3030), + }, + [STATE(780)] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [781] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2549), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_macro_rules_BANG] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_u8] = ACTIONS(3036), + [anon_sym_i8] = ACTIONS(3036), + [anon_sym_u16] = ACTIONS(3036), + [anon_sym_i16] = ACTIONS(3036), + [anon_sym_u32] = ACTIONS(3036), + [anon_sym_i32] = ACTIONS(3036), + [anon_sym_u64] = ACTIONS(3036), + [anon_sym_i64] = ACTIONS(3036), + [anon_sym_u128] = ACTIONS(3036), + [anon_sym_i128] = ACTIONS(3036), + [anon_sym_isize] = ACTIONS(3036), + [anon_sym_usize] = ACTIONS(3036), + [anon_sym_f32] = ACTIONS(3036), + [anon_sym_f64] = ACTIONS(3036), + [anon_sym_bool] = ACTIONS(3036), + [anon_sym_str] = ACTIONS(3036), + [anon_sym_char] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_DOT_DOT] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3036), + [anon_sym_async] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_fn] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_gen] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_impl] = ACTIONS(3036), + [anon_sym_let] = ACTIONS(3036), + [anon_sym_loop] = ACTIONS(3036), + [anon_sym_match] = ACTIONS(3036), + [anon_sym_mod] = ACTIONS(3036), + [anon_sym_pub] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_trait] = ACTIONS(3036), + [anon_sym_type] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_unsafe] = ACTIONS(3036), + [anon_sym_use] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym_yield] = ACTIONS(3036), + [anon_sym_move] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [sym_integer_literal] = ACTIONS(3034), + [aux_sym_string_literal_token1] = ACTIONS(3034), + [sym_char_literal] = ACTIONS(3034), + [anon_sym_true] = ACTIONS(3036), + [anon_sym_false] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3036), + [sym_super] = ACTIONS(3036), + [sym_crate] = ACTIONS(3036), + [sym_metavariable] = ACTIONS(3034), + [sym__raw_string_literal_start] = ACTIONS(3034), + [sym_float_literal] = ACTIONS(3034), + }, + [STATE(781)] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3013), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [782] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_macro_rules_BANG] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_u8] = ACTIONS(3040), + [anon_sym_i8] = ACTIONS(3040), + [anon_sym_u16] = ACTIONS(3040), + [anon_sym_i16] = ACTIONS(3040), + [anon_sym_u32] = ACTIONS(3040), + [anon_sym_i32] = ACTIONS(3040), + [anon_sym_u64] = ACTIONS(3040), + [anon_sym_i64] = ACTIONS(3040), + [anon_sym_u128] = ACTIONS(3040), + [anon_sym_i128] = ACTIONS(3040), + [anon_sym_isize] = ACTIONS(3040), + [anon_sym_usize] = ACTIONS(3040), + [anon_sym_f32] = ACTIONS(3040), + [anon_sym_f64] = ACTIONS(3040), + [anon_sym_bool] = ACTIONS(3040), + [anon_sym_str] = ACTIONS(3040), + [anon_sym_char] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_DOT_DOT] = ACTIONS(3038), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3040), + [anon_sym_async] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_gen] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_impl] = ACTIONS(3040), + [anon_sym_let] = ACTIONS(3040), + [anon_sym_loop] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3040), + [anon_sym_pub] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_trait] = ACTIONS(3040), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3040), + [anon_sym_move] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [sym_integer_literal] = ACTIONS(3038), + [aux_sym_string_literal_token1] = ACTIONS(3038), + [sym_char_literal] = ACTIONS(3038), + [anon_sym_true] = ACTIONS(3040), + [anon_sym_false] = ACTIONS(3040), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3038), + [sym__raw_string_literal_start] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3038), + }, + [STATE(782)] = { [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [783] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2532), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_macro_rules_BANG] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_u8] = ACTIONS(3044), + [anon_sym_i8] = ACTIONS(3044), + [anon_sym_u16] = ACTIONS(3044), + [anon_sym_i16] = ACTIONS(3044), + [anon_sym_u32] = ACTIONS(3044), + [anon_sym_i32] = ACTIONS(3044), + [anon_sym_u64] = ACTIONS(3044), + [anon_sym_i64] = ACTIONS(3044), + [anon_sym_u128] = ACTIONS(3044), + [anon_sym_i128] = ACTIONS(3044), + [anon_sym_isize] = ACTIONS(3044), + [anon_sym_usize] = ACTIONS(3044), + [anon_sym_f32] = ACTIONS(3044), + [anon_sym_f64] = ACTIONS(3044), + [anon_sym_bool] = ACTIONS(3044), + [anon_sym_str] = ACTIONS(3044), + [anon_sym_char] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_DOT_DOT] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_async] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_gen] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_impl] = ACTIONS(3044), + [anon_sym_let] = ACTIONS(3044), + [anon_sym_loop] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_mod] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_trait] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3044), + [anon_sym_move] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [sym_integer_literal] = ACTIONS(3042), + [aux_sym_string_literal_token1] = ACTIONS(3042), + [sym_char_literal] = ACTIONS(3042), + [anon_sym_true] = ACTIONS(3044), + [anon_sym_false] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3044), + [sym_super] = ACTIONS(3044), + [sym_crate] = ACTIONS(3044), + [sym_metavariable] = ACTIONS(3042), + [sym__raw_string_literal_start] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3042), + }, + [STATE(783)] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [784] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_macro_rules_BANG] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_u8] = ACTIONS(3048), + [anon_sym_i8] = ACTIONS(3048), + [anon_sym_u16] = ACTIONS(3048), + [anon_sym_i16] = ACTIONS(3048), + [anon_sym_u32] = ACTIONS(3048), + [anon_sym_i32] = ACTIONS(3048), + [anon_sym_u64] = ACTIONS(3048), + [anon_sym_i64] = ACTIONS(3048), + [anon_sym_u128] = ACTIONS(3048), + [anon_sym_i128] = ACTIONS(3048), + [anon_sym_isize] = ACTIONS(3048), + [anon_sym_usize] = ACTIONS(3048), + [anon_sym_f32] = ACTIONS(3048), + [anon_sym_f64] = ACTIONS(3048), + [anon_sym_bool] = ACTIONS(3048), + [anon_sym_str] = ACTIONS(3048), + [anon_sym_char] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_POUND] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_async] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_fn] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_gen] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_impl] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_loop] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_mod] = ACTIONS(3048), + [anon_sym_pub] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_trait] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_unsafe] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_move] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [sym_integer_literal] = ACTIONS(3046), + [aux_sym_string_literal_token1] = ACTIONS(3046), + [sym_char_literal] = ACTIONS(3046), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3048), + [sym_super] = ACTIONS(3048), + [sym_crate] = ACTIONS(3048), + [sym_metavariable] = ACTIONS(3046), + [sym__raw_string_literal_start] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3046), + }, + [STATE(784)] = { [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [785] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_macro_rules_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_u8] = ACTIONS(3052), + [anon_sym_i8] = ACTIONS(3052), + [anon_sym_u16] = ACTIONS(3052), + [anon_sym_i16] = ACTIONS(3052), + [anon_sym_u32] = ACTIONS(3052), + [anon_sym_i32] = ACTIONS(3052), + [anon_sym_u64] = ACTIONS(3052), + [anon_sym_i64] = ACTIONS(3052), + [anon_sym_u128] = ACTIONS(3052), + [anon_sym_i128] = ACTIONS(3052), + [anon_sym_isize] = ACTIONS(3052), + [anon_sym_usize] = ACTIONS(3052), + [anon_sym_f32] = ACTIONS(3052), + [anon_sym_f64] = ACTIONS(3052), + [anon_sym_bool] = ACTIONS(3052), + [anon_sym_str] = ACTIONS(3052), + [anon_sym_char] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_gen] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_impl] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_loop] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_mod] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_trait] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_move] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [aux_sym_string_literal_token1] = ACTIONS(3050), + [sym_char_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3052), + [anon_sym_false] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_crate] = ACTIONS(3052), + [sym_metavariable] = ACTIONS(3050), + [sym__raw_string_literal_start] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + }, + [STATE(785)] = { [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3021), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [786] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_macro_rules_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_u8] = ACTIONS(3056), + [anon_sym_i8] = ACTIONS(3056), + [anon_sym_u16] = ACTIONS(3056), + [anon_sym_i16] = ACTIONS(3056), + [anon_sym_u32] = ACTIONS(3056), + [anon_sym_i32] = ACTIONS(3056), + [anon_sym_u64] = ACTIONS(3056), + [anon_sym_i64] = ACTIONS(3056), + [anon_sym_u128] = ACTIONS(3056), + [anon_sym_i128] = ACTIONS(3056), + [anon_sym_isize] = ACTIONS(3056), + [anon_sym_usize] = ACTIONS(3056), + [anon_sym_f32] = ACTIONS(3056), + [anon_sym_f64] = ACTIONS(3056), + [anon_sym_bool] = ACTIONS(3056), + [anon_sym_str] = ACTIONS(3056), + [anon_sym_char] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_async] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_gen] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_impl] = ACTIONS(3056), + [anon_sym_let] = ACTIONS(3056), + [anon_sym_loop] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_pub] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_trait] = ACTIONS(3056), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3056), + [anon_sym_move] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [aux_sym_string_literal_token1] = ACTIONS(3054), + [sym_char_literal] = ACTIONS(3054), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3056), + [sym_super] = ACTIONS(3056), + [sym_crate] = ACTIONS(3056), + [sym_metavariable] = ACTIONS(3054), + [sym__raw_string_literal_start] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), + }, + [STATE(786)] = { [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [787] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_macro_rules_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u128] = ACTIONS(3060), + [anon_sym_i128] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_str] = ACTIONS(3060), + [anon_sym_char] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_gen] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_impl] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_loop] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_mod] = ACTIONS(3060), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_trait] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_move] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [aux_sym_string_literal_token1] = ACTIONS(3058), + [sym_char_literal] = ACTIONS(3058), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_crate] = ACTIONS(3060), + [sym_metavariable] = ACTIONS(3058), + [sym__raw_string_literal_start] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + }, + [STATE(787)] = { [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [788] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_macro_rules_BANG] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_u8] = ACTIONS(3064), + [anon_sym_i8] = ACTIONS(3064), + [anon_sym_u16] = ACTIONS(3064), + [anon_sym_i16] = ACTIONS(3064), + [anon_sym_u32] = ACTIONS(3064), + [anon_sym_i32] = ACTIONS(3064), + [anon_sym_u64] = ACTIONS(3064), + [anon_sym_i64] = ACTIONS(3064), + [anon_sym_u128] = ACTIONS(3064), + [anon_sym_i128] = ACTIONS(3064), + [anon_sym_isize] = ACTIONS(3064), + [anon_sym_usize] = ACTIONS(3064), + [anon_sym_f32] = ACTIONS(3064), + [anon_sym_f64] = ACTIONS(3064), + [anon_sym_bool] = ACTIONS(3064), + [anon_sym_str] = ACTIONS(3064), + [anon_sym_char] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_DOT_DOT] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_gen] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_impl] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_loop] = ACTIONS(3064), + [anon_sym_match] = ACTIONS(3064), + [anon_sym_mod] = ACTIONS(3064), + [anon_sym_pub] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_trait] = ACTIONS(3064), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3064), + [anon_sym_move] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [sym_integer_literal] = ACTIONS(3062), + [aux_sym_string_literal_token1] = ACTIONS(3062), + [sym_char_literal] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3064), + [anon_sym_false] = ACTIONS(3064), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3064), + [sym_super] = ACTIONS(3064), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(3062), + [sym__raw_string_literal_start] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + }, + [STATE(788)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_const_parameter] = STATE(2971), + [sym_type_parameter] = STATE(2971), + [sym_lifetime_parameter] = STATE(2971), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2926), + [sym_bracketed_type] = STATE(3752), + [sym_qualified_type] = STATE(3704), + [sym_lifetime] = STATE(2612), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [789] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(2169), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(3074), + }, + [STATE(789)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(900), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [790] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(790)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [791] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(791)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [792] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(792)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [793] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(793)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [794] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(794)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [795] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2429), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(795)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [796] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3301), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(796)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2708), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [797] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(797)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(904), + [sym__type] = STATE(3063), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [798] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3188), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(1093), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(798)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2707), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [799] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3212), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(799)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2776), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [800] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2485), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(800)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [801] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(801)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2626), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [802] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2978), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(802)] = { + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(1012), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [803] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3014), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [aux_sym_enum_variant_list_repeat1] = STATE(1093), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(803)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2828), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [804] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3267), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(804)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2671), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [805] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(805)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [806] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2965), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(806)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [807] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2434), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(807)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [808] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(808)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [809] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2761), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(809)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [810] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(810)] = { + [sym_parameter] = STATE(3217), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3053), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [811] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2516), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3134), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(811)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3043), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [812] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2101), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(812)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [813] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(813)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [814] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(814)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2674), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [815] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2122), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(815)] = { + [sym_parameter] = STATE(3002), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2576), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [816] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2086), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3134), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(816)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [817] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2466), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(817)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3047), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [818] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3272), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(818)] = { + [sym_parameter] = STATE(3002), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2687), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [819] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2393), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3134), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(819)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [820] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2912), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(820)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [821] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2949), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(821)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2194), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [822] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3302), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(822)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3478), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [823] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2926), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(823)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2589), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [824] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2878), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(824)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3260), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [825] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3283), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(825)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2608), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [826] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3296), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(826)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3490), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [827] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3299), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(827)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3430), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [828] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3300), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(828)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2549), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [829] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(829)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2213), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3053), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [830] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(830)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2603), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3057), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [831] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(831)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2214), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3089), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [832] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(832)] = { + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3068), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [sym_mutable_specifier] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [833] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(3160), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(833)] = { + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3072), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [834] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(834)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2751), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [835] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(835)] = { + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3183), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [836] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(836)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [837] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1747), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(831), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3164), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(837)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3423), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [838] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(838)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3141), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [839] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(839)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2182), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [840] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2177), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(840)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [841] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(950), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2382), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2165), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(841)] = { + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [842] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(842)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3101), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [843] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2223), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(843)] = { + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3000), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [844] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(844)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3135), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [845] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(935), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2341), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2147), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(845)] = { + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3014), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [846] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2173), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2146), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2153), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(846)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3071), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [847] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3069), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(830), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(847)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3479), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3159), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [848] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(938), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2319), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2140), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(848)] = { + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3096), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [849] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(849)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3449), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [850] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1228), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(832), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(850)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3471), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [sym_mutable_specifier] = ACTIONS(3165), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [851] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(851)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3476), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [852] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(852)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3477), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [853] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2385), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2170), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(853)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2035), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2230), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2108), + [sym_negative_literal] = STATE(2110), + [sym_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [854] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(854)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [855] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(3168), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3170), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(855)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [856] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(856)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3359), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [857] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3212), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(857)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1838), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [858] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [sym_mutable_specifier] = ACTIONS(3244), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(858)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [859] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1996), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(859)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [860] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3252), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(860)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [861] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(861)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2732), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [862] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(862)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1508), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [863] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3258), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(863)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [864] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1729), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(864)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(1011), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2486), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2280), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [865] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(865)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2732), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [866] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(866)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [867] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1732), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(867)] = { + [sym_function_modifiers] = STATE(3812), + [sym_higher_ranked_trait_bound] = STATE(2263), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2264), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2264), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [868] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1736), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(868)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [869] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1737), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(869)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [870] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1738), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(870)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2926), + [sym_bracketed_type] = STATE(3752), + [sym_qualified_type] = STATE(3704), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [871] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(871)] = { + [sym_function_modifiers] = STATE(3812), + [sym_higher_ranked_trait_bound] = STATE(2301), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2302), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [872] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2184), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(872)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [873] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(873)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [874] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2351), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(874)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [875] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2837), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(875)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [876] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2863), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(876)] = { + [sym_function_modifiers] = STATE(3812), + [sym_higher_ranked_trait_bound] = STATE(2301), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2303), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2091), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [877] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2355), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(877)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(903), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2499), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2506), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2252), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [878] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(878)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [879] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2357), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(879)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3467), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(856), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [880] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1223), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3290), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(880)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1818), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(857), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [881] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2668), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [sym_mutable_specifier] = ACTIONS(3292), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(881)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [882] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(882)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [883] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2952), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3296), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(883)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [884] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2467), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(884)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(998), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2423), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2477), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2277), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [885] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(885)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(959), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2434), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2439), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2270), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [886] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(886)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3018), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [887] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(887)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3037), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [888] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2359), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(888)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1461), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [889] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(889)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1462), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [890] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(890)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1473), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [891] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(891)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2458), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [892] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(892)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3024), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [893] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1292), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(893)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1499), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [894] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2565), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(894)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2815), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [895] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1294), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(895)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2640), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [896] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1225), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(896)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [897] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1210), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(897)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2476), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [898] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1667), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(898)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2479), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [899] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3018), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(899)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3109), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [900] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1298), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(900)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [901] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3059), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(901)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2487), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [902] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(902)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2668), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [903] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3015), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(903)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2505), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2403), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2267), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [904] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(904)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [905] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(905)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [906] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3277), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(906)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2760), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [907] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1305), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(907)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [908] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(908)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1838), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [sym_identifier] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_RBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2412), - [anon_sym_i8] = ACTIONS(2412), - [anon_sym_u16] = ACTIONS(2412), - [anon_sym_i16] = ACTIONS(2412), - [anon_sym_u32] = ACTIONS(2412), - [anon_sym_i32] = ACTIONS(2412), - [anon_sym_u64] = ACTIONS(2412), - [anon_sym_i64] = ACTIONS(2412), - [anon_sym_u128] = ACTIONS(2412), - [anon_sym_i128] = ACTIONS(2412), - [anon_sym_isize] = ACTIONS(2412), - [anon_sym_usize] = ACTIONS(2412), - [anon_sym_f32] = ACTIONS(2412), - [anon_sym_f64] = ACTIONS(2412), - [anon_sym_bool] = ACTIONS(2412), - [anon_sym_str] = ACTIONS(2412), - [anon_sym_char] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym__] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_COLON_COLON] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_ref] = ACTIONS(2412), - [sym_mutable_specifier] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_move] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [aux_sym_string_literal_token1] = ACTIONS(2410), - [sym_char_literal] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2410), - [sym__raw_string_literal_start] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(2410), - }, - [909] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(909)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [910] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(910)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1786), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(1786), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(1786), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [911] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3166), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(911)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2706), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [912] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3048), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(912)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2710), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [913] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(913)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1843), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [914] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(914)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [915] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(915)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1844), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [916] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(916)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [917] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1388), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(917)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1797), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [918] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1389), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(918)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1804), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [919] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(919)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1805), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [920] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(920)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [921] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2569), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(921)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2921), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [922] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1449), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(922)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1809), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [923] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(923)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2312), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3183), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [924] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(924)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [925] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(925)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2755), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [926] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(926)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [927] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(927)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [928] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1972), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(928)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2088), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [929] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3314), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(929)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [930] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(930)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [931] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2189), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(931)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [932] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(932)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [933] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2185), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(933)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [934] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2930), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(934)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2062), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3531), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2062), + [sym_tuple_type] = STATE(2062), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2042), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2062), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2234), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [935] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2379), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2174), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(935)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [936] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(936)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2091), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2091), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2091), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [937] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(937)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3396), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [938] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2328), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2380), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2131), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(938)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2813), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [939] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2347), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(939)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [940] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(940)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2088), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [941] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2829), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(941)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2525), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [942] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(942)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2945), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [943] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2927), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(943)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [944] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2183), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(944)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3063), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [945] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1212), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(945)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [946] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(946)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2078), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [947] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(947)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2079), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [948] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2997), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(948)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [949] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(949)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2072), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3531), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2072), + [sym_tuple_type] = STATE(2072), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2032), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2072), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [950] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2291), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2384), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2168), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(950)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [951] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(951)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [952] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2758), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(952)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [953] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(953)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1505), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [954] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2308), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(954)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2443), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [955] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2538), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(955)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1515), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3522), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1515), + [sym_tuple_type] = STATE(1515), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1296), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1515), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3420), + [sym_scoped_type_identifier] = STATE(1091), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [956] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3326), + [anon_sym_i8] = ACTIONS(3326), + [anon_sym_u16] = ACTIONS(3326), + [anon_sym_i16] = ACTIONS(3326), + [anon_sym_u32] = ACTIONS(3326), + [anon_sym_i32] = ACTIONS(3326), + [anon_sym_u64] = ACTIONS(3326), + [anon_sym_i64] = ACTIONS(3326), + [anon_sym_u128] = ACTIONS(3326), + [anon_sym_i128] = ACTIONS(3326), + [anon_sym_isize] = ACTIONS(3326), + [anon_sym_usize] = ACTIONS(3326), + [anon_sym_f32] = ACTIONS(3326), + [anon_sym_f64] = ACTIONS(3326), + [anon_sym_bool] = ACTIONS(3326), + [anon_sym_str] = ACTIONS(3326), + [anon_sym_char] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_gen] = ACTIONS(3332), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3334), + }, + [STATE(956)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [957] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2450), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(957)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1872), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [958] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(958)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2520), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [959] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2309), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2386), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2172), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(959)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2446), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2467), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2282), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [960] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2366), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(960)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3359), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [961] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2367), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(961)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [962] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2370), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(962)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2091), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2091), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2091), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [963] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2192), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(963)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2305), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [964] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(964)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2309), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [965] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2290), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(965)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2756), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [966] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(966)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2981), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [967] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(967)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2910), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [968] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2557), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(968)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3202), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [969] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(969)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1511), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3522), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1511), + [sym_tuple_type] = STATE(1511), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1150), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1511), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3420), + [sym_scoped_type_identifier] = STATE(1089), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [970] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3326), + [anon_sym_i8] = ACTIONS(3326), + [anon_sym_u16] = ACTIONS(3326), + [anon_sym_i16] = ACTIONS(3326), + [anon_sym_u32] = ACTIONS(3326), + [anon_sym_i32] = ACTIONS(3326), + [anon_sym_u64] = ACTIONS(3326), + [anon_sym_i64] = ACTIONS(3326), + [anon_sym_u128] = ACTIONS(3326), + [anon_sym_i128] = ACTIONS(3326), + [anon_sym_isize] = ACTIONS(3326), + [anon_sym_usize] = ACTIONS(3326), + [anon_sym_f32] = ACTIONS(3326), + [anon_sym_f64] = ACTIONS(3326), + [anon_sym_bool] = ACTIONS(3326), + [anon_sym_str] = ACTIONS(3326), + [anon_sym_char] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3332), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3334), + }, + [STATE(970)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3405), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [971] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(971)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2648), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [972] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2932), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(972)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2455), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [973] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2560), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(973)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2507), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [974] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(974)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2502), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [975] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2218), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(975)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2335), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [976] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(976)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [977] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(977)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1486), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [978] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2986), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(978)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [979] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(979)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [980] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(980)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2508), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [981] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2333), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(981)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [982] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(982)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2447), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [983] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2224), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(983)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1756), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [984] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2570), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), + }, + [STATE(984)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3813), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1668), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1759), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3440), + [sym_scoped_type_identifier] = STATE(1609), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [985] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2338), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3346), + [anon_sym_i8] = ACTIONS(3346), + [anon_sym_u16] = ACTIONS(3346), + [anon_sym_i16] = ACTIONS(3346), + [anon_sym_u32] = ACTIONS(3346), + [anon_sym_i32] = ACTIONS(3346), + [anon_sym_u64] = ACTIONS(3346), + [anon_sym_i64] = ACTIONS(3346), + [anon_sym_u128] = ACTIONS(3346), + [anon_sym_i128] = ACTIONS(3346), + [anon_sym_isize] = ACTIONS(3346), + [anon_sym_usize] = ACTIONS(3346), + [anon_sym_f32] = ACTIONS(3346), + [anon_sym_f64] = ACTIONS(3346), + [anon_sym_bool] = ACTIONS(3346), + [anon_sym_str] = ACTIONS(3346), + [anon_sym_char] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_gen] = ACTIONS(3352), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3354), + }, + [STATE(985)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [986] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(986)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2732), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [987] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2186), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(987)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1436), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [988] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2739), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(988)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [989] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2190), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(989)] = { + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1792), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3813), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1792), + [sym_tuple_type] = STATE(1792), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1656), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1792), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3440), + [sym_scoped_type_identifier] = STATE(1615), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [990] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3346), + [anon_sym_i8] = ACTIONS(3346), + [anon_sym_u16] = ACTIONS(3346), + [anon_sym_i16] = ACTIONS(3346), + [anon_sym_u32] = ACTIONS(3346), + [anon_sym_i32] = ACTIONS(3346), + [anon_sym_u64] = ACTIONS(3346), + [anon_sym_i64] = ACTIONS(3346), + [anon_sym_u128] = ACTIONS(3346), + [anon_sym_i128] = ACTIONS(3346), + [anon_sym_isize] = ACTIONS(3346), + [anon_sym_usize] = ACTIONS(3346), + [anon_sym_f32] = ACTIONS(3346), + [anon_sym_f64] = ACTIONS(3346), + [anon_sym_bool] = ACTIONS(3346), + [anon_sym_str] = ACTIONS(3346), + [anon_sym_char] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3352), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3354), + }, + [STATE(990)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1450), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(1450), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(1450), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [991] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2193), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(991)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [992] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(992)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3073), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [993] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2780), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(993)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1554), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [994] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(994)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1457), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [995] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(995)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1538), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [996] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2947), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(996)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1523), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [997] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(997)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3150), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [998] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1764), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(998)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2440), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2483), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2278), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [999] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(999)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [1000] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1725), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1000)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [1001] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(1001)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2438), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [1002] = { - [sym_attribute_item] = STATE(1003), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1002)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_u8] = ACTIONS(3201), - [anon_sym_i8] = ACTIONS(3201), - [anon_sym_u16] = ACTIONS(3201), - [anon_sym_i16] = ACTIONS(3201), - [anon_sym_u32] = ACTIONS(3201), - [anon_sym_i32] = ACTIONS(3201), - [anon_sym_u64] = ACTIONS(3201), - [anon_sym_i64] = ACTIONS(3201), - [anon_sym_u128] = ACTIONS(3201), - [anon_sym_i128] = ACTIONS(3201), - [anon_sym_isize] = ACTIONS(3201), - [anon_sym_usize] = ACTIONS(3201), - [anon_sym_f32] = ACTIONS(3201), - [anon_sym_f64] = ACTIONS(3201), - [anon_sym_bool] = ACTIONS(3201), - [anon_sym_str] = ACTIONS(3201), - [anon_sym_char] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(796), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_loop] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_move] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(796), - [aux_sym_string_literal_token1] = ACTIONS(796), - [sym_char_literal] = ACTIONS(796), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3201), - [sym_super] = ACTIONS(3201), - [sym_crate] = ACTIONS(3201), - [sym_metavariable] = ACTIONS(796), - [sym__raw_string_literal_start] = ACTIONS(796), - [sym_float_literal] = ACTIONS(796), - }, - [1003] = { + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1003)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_u8] = ACTIONS(3203), - [anon_sym_i8] = ACTIONS(3203), - [anon_sym_u16] = ACTIONS(3203), - [anon_sym_i16] = ACTIONS(3203), - [anon_sym_u32] = ACTIONS(3203), - [anon_sym_i32] = ACTIONS(3203), - [anon_sym_u64] = ACTIONS(3203), - [anon_sym_i64] = ACTIONS(3203), - [anon_sym_u128] = ACTIONS(3203), - [anon_sym_i128] = ACTIONS(3203), - [anon_sym_isize] = ACTIONS(3203), - [anon_sym_usize] = ACTIONS(3203), - [anon_sym_f32] = ACTIONS(3203), - [anon_sym_f64] = ACTIONS(3203), - [anon_sym_bool] = ACTIONS(3203), - [anon_sym_str] = ACTIONS(3203), - [anon_sym_char] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_POUND] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_async] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_loop] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_move] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3205), - [aux_sym_string_literal_token1] = ACTIONS(3205), - [sym_char_literal] = ACTIONS(3205), - [anon_sym_true] = ACTIONS(3203), - [anon_sym_false] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3203), - [sym_super] = ACTIONS(3203), - [sym_crate] = ACTIONS(3203), - [sym_metavariable] = ACTIONS(3205), - [sym__raw_string_literal_start] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3205), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1004)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1005)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2887), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1006)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1007)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2430), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1008)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1009)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2897), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1010)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2741), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1011)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2432), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2233), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1012)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2802), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1013)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2088), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1014)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1015)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2072), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3775), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2072), + [sym_tuple_type] = STATE(2072), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2032), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2072), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2030), + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1016)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1017)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1018)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1019)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2593), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1020)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1021)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2478), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1022)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2480), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1023)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2484), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1024)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1025)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1025), + [sym_block_comment] = STATE(1025), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1026)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2934), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1026), + [sym_block_comment] = STATE(1026), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1027)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2831), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1027), + [sym_block_comment] = STATE(1027), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1028)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2832), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1028), + [sym_block_comment] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1029)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2942), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1029), + [sym_block_comment] = STATE(1029), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1030)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2840), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1030), + [sym_block_comment] = STATE(1030), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1031)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1031), + [sym_block_comment] = STATE(1031), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1032)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2078), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1033)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2079), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1034)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2286), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1035)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2412), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1036)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2413), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1037)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1038)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2964), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1039)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1040)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1041)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2417), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1042)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1042), + [sym_block_comment] = STATE(1042), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1043)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1043), + [sym_block_comment] = STATE(1043), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1044)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2289), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1044), + [sym_block_comment] = STATE(1044), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1045)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2837), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1045), + [sym_block_comment] = STATE(1045), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1046)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2844), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1046), + [sym_block_comment] = STATE(1046), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1047)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1047), + [sym_block_comment] = STATE(1047), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1048)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2428), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1048), + [sym_block_comment] = STATE(1048), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1049)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2429), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1049), + [sym_block_comment] = STATE(1049), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1050)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2293), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1050), + [sym_block_comment] = STATE(1050), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1051)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2988), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1051), + [sym_block_comment] = STATE(1051), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1052)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2791), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1052), + [sym_block_comment] = STATE(1052), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1053)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2294), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1053), + [sym_block_comment] = STATE(1053), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1054)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1055)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2028), + [sym_line_comment] = STATE(1055), + [sym_block_comment] = STATE(1055), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1056)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2062), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3775), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2062), + [sym_tuple_type] = STATE(2062), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2042), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2062), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), + [sym_line_comment] = STATE(1056), + [sym_block_comment] = STATE(1056), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1057)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3358), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2040), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_line_comment] = STATE(1057), + [sym_block_comment] = STATE(1057), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1058)] = { + [sym_attribute_item] = STATE(1059), + [sym_line_comment] = STATE(1058), + [sym_block_comment] = STATE(1058), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(763), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_u8] = ACTIONS(3376), + [anon_sym_i8] = ACTIONS(3376), + [anon_sym_u16] = ACTIONS(3376), + [anon_sym_i16] = ACTIONS(3376), + [anon_sym_u32] = ACTIONS(3376), + [anon_sym_i32] = ACTIONS(3376), + [anon_sym_u64] = ACTIONS(3376), + [anon_sym_i64] = ACTIONS(3376), + [anon_sym_u128] = ACTIONS(3376), + [anon_sym_i128] = ACTIONS(3376), + [anon_sym_isize] = ACTIONS(3376), + [anon_sym_usize] = ACTIONS(3376), + [anon_sym_f32] = ACTIONS(3376), + [anon_sym_f64] = ACTIONS(3376), + [anon_sym_bool] = ACTIONS(3376), + [anon_sym_str] = ACTIONS(3376), + [anon_sym_char] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_DOT_DOT] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COLON_COLON] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(789), + [anon_sym_SQUOTE] = ACTIONS(3376), + [anon_sym_async] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_gen] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_loop] = ACTIONS(3376), + [anon_sym_match] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_unsafe] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_yield] = ACTIONS(3376), + [anon_sym_move] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [sym_integer_literal] = ACTIONS(763), + [aux_sym_string_literal_token1] = ACTIONS(763), + [sym_char_literal] = ACTIONS(763), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3376), + [sym_super] = ACTIONS(3376), + [sym_crate] = ACTIONS(3376), + [sym_metavariable] = ACTIONS(763), + [sym__raw_string_literal_start] = ACTIONS(763), + [sym_float_literal] = ACTIONS(763), + }, + [STATE(1059)] = { + [sym_line_comment] = STATE(1059), + [sym_block_comment] = STATE(1059), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_RBRACK] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_u8] = ACTIONS(3378), + [anon_sym_i8] = ACTIONS(3378), + [anon_sym_u16] = ACTIONS(3378), + [anon_sym_i16] = ACTIONS(3378), + [anon_sym_u32] = ACTIONS(3378), + [anon_sym_i32] = ACTIONS(3378), + [anon_sym_u64] = ACTIONS(3378), + [anon_sym_i64] = ACTIONS(3378), + [anon_sym_u128] = ACTIONS(3378), + [anon_sym_i128] = ACTIONS(3378), + [anon_sym_isize] = ACTIONS(3378), + [anon_sym_usize] = ACTIONS(3378), + [anon_sym_f32] = ACTIONS(3378), + [anon_sym_f64] = ACTIONS(3378), + [anon_sym_bool] = ACTIONS(3378), + [anon_sym_str] = ACTIONS(3378), + [anon_sym_char] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3380), + [anon_sym_POUND] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_gen] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_loop] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_move] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [sym_integer_literal] = ACTIONS(3380), + [aux_sym_string_literal_token1] = ACTIONS(3380), + [sym_char_literal] = ACTIONS(3380), + [anon_sym_true] = ACTIONS(3378), + [anon_sym_false] = ACTIONS(3378), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3378), + [sym_super] = ACTIONS(3378), + [sym_crate] = ACTIONS(3378), + [sym_metavariable] = ACTIONS(3380), + [sym__raw_string_literal_start] = ACTIONS(3380), + [sym_float_literal] = ACTIONS(3380), + }, + [STATE(1060)] = { + [sym_line_comment] = STATE(1060), + [sym_block_comment] = STATE(1060), + [sym_identifier] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_RBRACK] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_u8] = ACTIONS(2380), + [anon_sym_i8] = ACTIONS(2380), + [anon_sym_u16] = ACTIONS(2380), + [anon_sym_i16] = ACTIONS(2380), + [anon_sym_u32] = ACTIONS(2380), + [anon_sym_i32] = ACTIONS(2380), + [anon_sym_u64] = ACTIONS(2380), + [anon_sym_i64] = ACTIONS(2380), + [anon_sym_u128] = ACTIONS(2380), + [anon_sym_i128] = ACTIONS(2380), + [anon_sym_isize] = ACTIONS(2380), + [anon_sym_usize] = ACTIONS(2380), + [anon_sym_f32] = ACTIONS(2380), + [anon_sym_f64] = ACTIONS(2380), + [anon_sym_bool] = ACTIONS(2380), + [anon_sym_str] = ACTIONS(2380), + [anon_sym_char] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_COLON_COLON] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_gen] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_loop] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_union] = ACTIONS(2380), + [anon_sym_unsafe] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_move] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [sym_integer_literal] = ACTIONS(2378), + [aux_sym_string_literal_token1] = ACTIONS(2378), + [sym_char_literal] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_crate] = ACTIONS(2380), + [sym_metavariable] = ACTIONS(2378), + [sym__raw_string_literal_start] = ACTIONS(2378), + [sym_float_literal] = ACTIONS(2378), + }, + [STATE(1061)] = { + [sym_line_comment] = STATE(1061), + [sym_block_comment] = STATE(1061), + [sym_identifier] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_u8] = ACTIONS(3382), + [anon_sym_i8] = ACTIONS(3382), + [anon_sym_u16] = ACTIONS(3382), + [anon_sym_i16] = ACTIONS(3382), + [anon_sym_u32] = ACTIONS(3382), + [anon_sym_i32] = ACTIONS(3382), + [anon_sym_u64] = ACTIONS(3382), + [anon_sym_i64] = ACTIONS(3382), + [anon_sym_u128] = ACTIONS(3382), + [anon_sym_i128] = ACTIONS(3382), + [anon_sym_isize] = ACTIONS(3382), + [anon_sym_usize] = ACTIONS(3382), + [anon_sym_f32] = ACTIONS(3382), + [anon_sym_f64] = ACTIONS(3382), + [anon_sym_bool] = ACTIONS(3382), + [anon_sym_str] = ACTIONS(3382), + [anon_sym_char] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_PIPE] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym__] = ACTIONS(3382), + [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3384), + [anon_sym_DASH_GT] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_async] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_gen] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_loop] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_yield] = ACTIONS(3382), + [anon_sym_move] = ACTIONS(3382), + [anon_sym_try] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3384), + [aux_sym_string_literal_token1] = ACTIONS(3384), + [sym_char_literal] = ACTIONS(3384), + [anon_sym_true] = ACTIONS(3382), + [anon_sym_false] = ACTIONS(3382), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3382), + [sym_super] = ACTIONS(3382), + [sym_crate] = ACTIONS(3382), + [sym_metavariable] = ACTIONS(3384), + [sym__raw_string_literal_start] = ACTIONS(3384), + [sym_float_literal] = ACTIONS(3384), + }, + [STATE(1062)] = { + [sym_line_comment] = STATE(1062), + [sym_block_comment] = STATE(1062), + [sym_identifier] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym__] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_DASH_GT] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_async] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_gen] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1603), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_move] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1603), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1605), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1603), + [sym_super] = ACTIONS(1603), + [sym_crate] = ACTIONS(1603), + [sym_metavariable] = ACTIONS(1605), + [sym__raw_string_literal_start] = ACTIONS(1605), + [sym_float_literal] = ACTIONS(1605), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1556), 17, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1554), 43, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_DASH, - anon_sym__, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [75] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1005), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3209), 17, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3207), 43, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_DASH, - anon_sym__, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [150] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1006), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 18, + ACTIONS(1227), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108556,7 +116025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3211), 41, + ACTIONS(3386), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108581,6 +116050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_default, anon_sym_for, + anon_sym_gen, anon_sym_if, anon_sym_loop, anon_sym_match, @@ -108598,15 +116068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [224] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1007), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 17, + ACTIONS(2378), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108619,12 +116089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(2380), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108650,9 +116121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_for, + anon_sym_gen, anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, anon_sym_ref, anon_sym_dyn, @@ -108663,15 +116136,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [294] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [148] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1008), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 20, + ACTIONS(3390), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108692,7 +116165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3213), 34, + ACTIONS(3388), 36, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108715,9 +116188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_for, + anon_sym_gen, anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_where, anon_sym_extern, anon_sym_else, @@ -108727,57 +116202,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [363] = 21, + [219] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1117), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1177), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(3217), 1, + ACTIONS(3392), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3402), 1, sym_metavariable, - STATE(2048), 1, + STATE(2129), 1, sym_scoped_identifier, - STATE(2091), 1, + STATE(2204), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1169), 2, anon_sym_true, anon_sym_false, - STATE(1009), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1165), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3221), 3, + ACTIONS(3396), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3225), 3, + ACTIONS(3400), 3, sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2110), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3219), 7, + ACTIONS(3394), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -108785,7 +116260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3223), 19, + ACTIONS(3398), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108804,58 +116279,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [462] = 21, + [319] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1117), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1177), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(3229), 1, + ACTIONS(3404), 1, sym_identifier, - ACTIONS(3239), 1, + ACTIONS(3414), 1, sym_metavariable, - STATE(2036), 1, + STATE(2154), 1, sym_scoped_identifier, - STATE(2080), 1, + STATE(2216), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1169), 2, anon_sym_true, anon_sym_false, - STATE(1010), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1165), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3233), 3, + ACTIONS(3408), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3237), 3, + ACTIONS(3412), 3, sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2110), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3231), 7, + ACTIONS(3406), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -108863,7 +116339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3235), 19, + ACTIONS(3410), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108882,28 +116358,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [561] = 11, - ACTIONS(101), 1, + [419] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(2098), 1, + anon_sym_COLON_COLON, + ACTIONS(3416), 1, + sym_identifier, + ACTIONS(3426), 1, + sym_metavariable, + STATE(2166), 1, + sym_scoped_identifier, + STATE(2179), 1, + sym__literal_pattern, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(1068), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1165), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3420), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3424), 3, + sym_self, + sym_super, + sym_crate, + STATE(2110), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3418), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3422), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [519] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + ACTIONS(3434), 1, anon_sym_BANG, - ACTIONS(3249), 1, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1071), 1, + STATE(1288), 1, sym_type_arguments, - STATE(1087), 1, + STATE(1301), 1, sym_parameters, - STATE(1011), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, + ACTIONS(3432), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -108921,7 +116477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3241), 27, + ACTIONS(3428), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -108949,25 +116505,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [638] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [596] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3446), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, - sym_parameters, - STATE(1012), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3450), 1, + anon_sym_move, + STATE(1468), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 17, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -108978,19 +116538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3253), 27, + ACTIONS(3440), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -109003,35 +116561,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [712] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [675] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - STATE(1071), 1, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3456), 1, + anon_sym_BANG, + STATE(1288), 1, sym_type_arguments, - STATE(1087), 1, + STATE(1301), 1, sym_parameters, - STATE(1013), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 17, + ACTIONS(3454), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109049,7 +116610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3259), 27, + ACTIONS(3452), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109077,25 +116638,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [786] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [752] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(3434), 1, + anon_sym_BANG, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - STATE(1071), 1, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1288), 1, sym_type_arguments, - STATE(1087), 1, + STATE(1301), 1, sym_parameters, - STATE(1014), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, + ACTIONS(3460), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109113,7 +116676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 27, + ACTIONS(3458), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109141,15 +116704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [829] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1015), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 9, + ACTIONS(1467), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109159,7 +116722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1238), 39, + ACTIONS(1469), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109182,6 +116745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109199,135 +116763,74 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [923] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [893] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_BANG, - ACTIONS(3273), 1, - anon_sym_COLON_COLON, - STATE(1016), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3267), 29, + ACTIONS(1449), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [990] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_BANG, - ACTIONS(3281), 1, - anon_sym_COLON_COLON, - STATE(1017), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3277), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3275), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1057] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1451), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [957] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1018), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1206), 9, + ACTIONS(1433), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109337,7 +116840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1208), 39, + ACTIONS(1435), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109360,6 +116863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109377,15 +116881,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1021] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1019), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 9, + ACTIONS(1441), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109395,7 +116899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(985), 39, + ACTIONS(1443), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109418,6 +116922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109435,15 +116940,76 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1183] = 5, - ACTIONS(101), 1, + [1085] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3466), 1, + anon_sym_POUND, + STATE(1145), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1077), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3464), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3462), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1153] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1020), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 9, + ACTIONS(1047), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109453,7 +117019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1234), 39, + ACTIONS(1045), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109476,6 +117042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109493,85 +117060,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1246] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1217] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1021), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1317] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1075), 1, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + STATE(1288), 1, sym_type_arguments, - STATE(1086), 1, + STATE(1301), 1, sym_parameters, - STATE(1022), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 17, + ACTIONS(3471), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109589,7 +117096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 27, + ACTIONS(3469), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109617,15 +117124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1388] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1023), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 9, + ACTIONS(1531), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109635,7 +117142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(989), 39, + ACTIONS(1533), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109658,6 +117165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109675,75 +117183,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1451] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1355] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - STATE(1024), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3293), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3291), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1518] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1025), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 9, + ACTIONS(1055), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109753,7 +117201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1444), 39, + ACTIONS(1053), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109776,6 +117224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109793,15 +117242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1581] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1419] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 9, + ACTIONS(1437), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109811,7 +117260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1322), 39, + ACTIONS(1439), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109834,6 +117283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109851,15 +117301,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1644] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1483] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 9, + ACTIONS(1445), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109869,7 +117319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1246), 39, + ACTIONS(1447), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109892,6 +117342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_if, anon_sym_impl, anon_sym_let, @@ -109909,23 +117360,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1707] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1547] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1075), 1, + STATE(1289), 1, sym_type_arguments, - STATE(1086), 1, + STATE(1303), 1, sym_parameters, - STATE(1028), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 17, + ACTIONS(3477), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109943,7 +117394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 27, + ACTIONS(3475), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109971,87 +117422,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1778] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1618] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1029), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 27, + ACTIONS(2250), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_EQ, + anon_sym_LT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1849] = 5, - ACTIONS(101), 1, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2252), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1681] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, + anon_sym_STAR, + ACTIONS(3489), 1, + anon_sym_AMP, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3495), 1, + anon_sym_for, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2559), 1, + sym_where_predicate, + STATE(2796), 1, + sym_scoped_type_identifier, + STATE(3036), 1, + sym_generic_type, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(1086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3481), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3493), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(3215), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3487), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1782] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1030), 2, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(1240), 9, + ACTIONS(2512), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1242), 39, + ACTIONS(2514), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110074,7 +117598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, - anon_sym_if, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110091,19 +117615,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1912] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1845] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3505), 1, anon_sym_BANG, - ACTIONS(3313), 1, + ACTIONS(3507), 1, anon_sym_COLON_COLON, - STATE(1031), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3503), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110121,7 +117645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 29, + ACTIONS(3501), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110151,26 +117675,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1979] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1912] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_BANG, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - STATE(1032), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1289), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3317), 16, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110181,16 +117702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3315), 23, + ACTIONS(3509), 27, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110203,42 +117727,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [2047] = 5, - ACTIONS(101), 1, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1983] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2974), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2976), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2046] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1033), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1289), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3515), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 31, + ACTIONS(3513), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -110255,47 +117847,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2109] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2117] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1034), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1289), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3519), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 31, + ACTIONS(3517), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -110312,38 +117909,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2171] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2188] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + ACTIONS(3521), 1, + anon_sym_POUND, + STATE(1254), 1, + sym_attribute_item, + STATE(1093), 3, sym_line_comment, sym_block_comment, - ACTIONS(2795), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + aux_sym_enum_variant_list_repeat1, + ACTIONS(763), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2797), 38, + ACTIONS(3376), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110364,50 +117965,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, + anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [2233] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2255] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3279), 16, - anon_sym_PLUS, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3489), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3495), 1, + anon_sym_for, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2559), 1, + sym_where_predicate, + STATE(2796), 1, + sym_scoped_type_identifier, + STATE(3036), 1, + sym_generic_type, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(1094), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3493), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3524), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3215), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3487), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [2356] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3530), 1, + anon_sym_BANG, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + STATE(1095), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3528), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 31, + ACTIONS(3526), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110426,28 +118105,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2295] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [2423] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1037), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(1762), 9, + ACTIONS(2658), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110457,7 +118134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(2660), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110480,6 +118157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110496,15 +118174,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2357] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2486] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1038), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(2458), 9, + ACTIONS(2794), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110514,7 +118192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2460), 38, + ACTIONS(2796), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110537,6 +118215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110553,80 +118232,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2549] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + ACTIONS(3538), 1, + anon_sym_BANG, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3536), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3534), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1996), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2481] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2616] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, + ACTIONS(3546), 1, anon_sym_BANG, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, + ACTIONS(3548), 1, anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1040), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3544), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110637,17 +118315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(3542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110660,32 +118341,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2551] = 7, - ACTIONS(101), 1, + anon_sym_LT2, + [2683] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, + anon_sym_STAR, + ACTIONS(3489), 1, + anon_sym_AMP, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3495), 1, + anon_sym_for, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2425), 1, + sym_where_predicate, + STATE(2796), 1, + sym_scoped_type_identifier, + STATE(3036), 1, + sym_generic_type, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(1100), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3493), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3550), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3215), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3487), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [2784] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_POUND, - STATE(1479), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1041), 3, + ACTIONS(3556), 1, + anon_sym_RBRACE, + STATE(1101), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3331), 14, + ACTIONS(3554), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -110694,13 +118448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_POUND, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3329), 29, + ACTIONS(3552), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110719,8 +118474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, + anon_sym_gen, anon_sym_union, anon_sym_ref, sym_mutable_specifier, @@ -110730,82 +118487,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2617] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2848] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + ACTIONS(3562), 1, + anon_sym_RBRACE, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3560), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3273), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2679] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1043), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2146), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2148), 38, + ACTIONS(3558), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110823,42 +118531,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [2741] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2912] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 15, + ACTIONS(3530), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -110868,7 +118570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3336), 31, + ACTIONS(3532), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110896,23 +118598,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2802] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2974] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1386), 1, - sym_label, - STATE(1045), 2, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + ACTIONS(3564), 1, + anon_sym_BANG, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3442), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110928,13 +118637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 29, + anon_sym_as, + ACTIONS(3440), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110955,20 +118662,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [2867] = 6, - ACTIONS(101), 1, + [3042] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3570), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3568), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3104] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, + STATE(1106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(1046), 2, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3572), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3166] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3505), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110985,12 +118801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 29, + ACTIONS(3507), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111013,17 +118830,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2930] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3228] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1047), 2, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + STATE(1481), 1, + sym_field_initializer_list, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111039,13 +118865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 31, + ACTIONS(1457), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111067,25 +118892,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3298] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 15, + ACTIONS(3538), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111095,7 +118919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3352), 31, + ACTIONS(3540), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111127,23 +118951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3052] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3360] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3360), 1, - anon_sym_DASH_GT, - STATE(1049), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 15, + ACTIONS(3546), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111153,7 +118976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3356), 30, + ACTIONS(3548), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111181,297 +119004,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3115] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3422] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_else, - STATE(1239), 1, - sym_else_clause, - STATE(1050), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 15, - anon_sym_PLUS, + ACTIONS(3582), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1194), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - [3180] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_metavariable, + ACTIONS(3580), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3484] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1051), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 30, + ACTIONS(3586), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3243] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1052), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3368), 15, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3366), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_metavariable, + ACTIONS(3584), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3546] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1053), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3370), 31, + ACTIONS(2060), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3365] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, anon_sym_COLON_COLON, - ACTIONS(3382), 1, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2062), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3384), 1, - anon_sym_for, - ACTIONS(3386), 1, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - STATE(1530), 1, - sym_scoped_type_identifier, - STATE(1597), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1054), 2, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3607] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1838), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1840), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(3388), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1708), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 17, + [3668] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1115), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3030), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111489,463 +119268,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3470] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3729] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3394), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_arguments, - STATE(1055), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3392), 29, + ACTIONS(3034), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3535] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3036), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3790] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1056), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3281), 29, + ACTIONS(3038), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [3598] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3402), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3400), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3404), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1059), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3410), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3408), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3781] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3040), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3851] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_DASH_GT, - STATE(1060), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3844] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1061), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3418), 31, + ACTIONS(3042), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3905] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3422), 1, - sym_identifier, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3428), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3432), 1, - anon_sym_for, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, + anon_sym_POUND, sym_metavariable, - STATE(1022), 1, - sym_scoped_type_identifier, - STATE(1088), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1062), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - STATE(1293), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 17, + ACTIONS(3044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111963,144 +119436,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4010] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3912] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1546), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1548), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4071] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3307), 29, + ACTIONS(3046), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [4132] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_POUND, - STATE(1476), 1, - sym_attribute_item, - STATE(1065), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(796), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3201), 32, + ACTIONS(3048), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112121,192 +119495,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, + anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [4197] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3973] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3443), 31, + ACTIONS(3054), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4258] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3451), 1, - anon_sym_DASH_GT, - STATE(1067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3447), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4321] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3453), 1, - sym_identifier, - STATE(1520), 1, - sym_scoped_type_identifier, - STATE(1613), 1, - sym_for_lifetimes, - STATE(1633), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - STATE(1730), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 17, + ACTIONS(3056), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112324,350 +119548,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4426] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4034] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1069), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3271), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3273), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4489] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1070), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 30, + ACTIONS(3058), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4552] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3457), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4613] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3060), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4095] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3463), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3461), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4674] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3465), 1, - anon_sym_COLON_COLON, - STATE(1073), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(1842), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4737] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3428), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3467), 1, - sym_identifier, - STATE(1021), 1, - sym_scoped_type_identifier, - STATE(1070), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1074), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - STATE(1296), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 17, + ACTIONS(1844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112685,177 +119660,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4842] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4156] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3469), 31, + ACTIONS(1846), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4903] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - STATE(1076), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4966] = 24, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, + anon_sym_POUND, sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3477), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1077), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, + ACTIONS(1848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112873,124 +119716,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5065] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4217] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(1850), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5128] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3499), 1, - sym_identifier, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3505), 1, - anon_sym_for, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1914), 1, - sym_scoped_type_identifier, - STATE(1951), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(1966), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 17, + ACTIONS(1852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113008,176 +119772,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5233] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4278] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1080), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3213), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3215), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5294] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3507), 31, + ACTIONS(1854), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5355] = 24, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, + anon_sym_POUND, sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3511), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, + ACTIONS(1856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113195,124 +119828,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5454] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4339] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3517), 1, - anon_sym_DASH_GT, - STATE(1083), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(1858), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5517] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3519), 1, - sym_identifier, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1916), 1, - sym_scoped_type_identifier, - STATE(1940), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1084), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(1979), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 17, + ACTIONS(1860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113330,412 +119884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5622] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_DASH_GT, - STATE(1085), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3523), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3521), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5685] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3531), 1, - anon_sym_DASH_GT, - STATE(1086), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3529), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3527), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5748] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3537), 1, - anon_sym_DASH_GT, - STATE(1087), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3535), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3533), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5811] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5874] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3297), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [5937] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4400] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - STATE(1090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6000] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1366), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1092), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113743,7 +119922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113766,6 +119945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -113782,15 +119962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4461] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113798,7 +119978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(1876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113821,6 +120001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -113837,15 +120018,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4522] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113853,7 +120034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113876,6 +120057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -113892,15 +120074,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4583] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113908,7 +120090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113931,6 +120113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -113947,15 +120130,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4644] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113963,7 +120146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113986,6 +120169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114002,15 +120186,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6360] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4705] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114018,7 +120202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114041,6 +120225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114057,15 +120242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4766] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114073,7 +120258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114096,6 +120281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114112,15 +120298,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4827] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114128,7 +120314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114151,6 +120337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114167,15 +120354,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4888] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114183,7 +120370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114206,6 +120393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114222,15 +120410,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4949] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114238,7 +120426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114261,6 +120449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114277,15 +120466,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5010] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114293,7 +120482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114316,6 +120505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114332,15 +120522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5071] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114348,7 +120538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(1916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114371,6 +120561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114387,15 +120578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6780] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5132] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(3062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114403,7 +120594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(3064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114426,6 +120617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114442,15 +120634,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5193] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114458,7 +120650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(1924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114481,6 +120673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114497,15 +120690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5254] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114513,7 +120706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(1932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114536,6 +120729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114552,15 +120746,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5315] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114568,7 +120762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 38, + ACTIONS(1936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114591,6 +120785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114607,15 +120802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5376] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114623,7 +120818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 38, + ACTIONS(1940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114646,6 +120841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114662,15 +120858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5437] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114678,7 +120874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 38, + ACTIONS(1944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114701,6 +120897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114717,23 +120914,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5498] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3590), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2032), 38, + ACTIONS(3588), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114751,44 +120956,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [7200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5559] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3594), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2036), 38, + ACTIONS(3592), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114806,36 +121012,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [7260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5620] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114843,7 +121042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 38, + ACTIONS(2168), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114866,6 +121065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114882,70 +121082,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5681] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3564), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_move, + STATE(413), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(3442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3440), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2044), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [5756] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(2170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114953,7 +121161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 38, + ACTIONS(2172), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114976,6 +121184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -114992,15 +121201,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7440] = 5, - ACTIONS(101), 1, + [5817] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + STATE(1150), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3509), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5880] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(2178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115008,7 +121274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 38, + ACTIONS(2180), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115031,6 +121297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115047,15 +121314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5941] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(2182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115063,7 +121330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 38, + ACTIONS(2184), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115086,6 +121353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115102,15 +121370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6002] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(2186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115118,7 +121386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 38, + ACTIONS(2188), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115141,6 +121409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115157,15 +121426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6063] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(2190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115173,7 +121442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2064), 38, + ACTIONS(2192), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115196,6 +121465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115212,15 +121482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6124] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(2194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115228,7 +121498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 38, + ACTIONS(2196), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115251,6 +121521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115267,15 +121538,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7740] = 5, - ACTIONS(101), 1, + [6185] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3600), 1, + anon_sym_COLON_COLON, + STATE(1156), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6248] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(2198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115283,7 +121611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2072), 38, + ACTIONS(2200), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115306,6 +121634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115322,15 +121651,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7800] = 5, - ACTIONS(101), 1, + [6309] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3602), 1, + anon_sym_LBRACE, + STATE(1158), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [6372] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(2206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115338,7 +121724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 38, + ACTIONS(2208), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115361,6 +121747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115377,15 +121764,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6433] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, + ACTIONS(2210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115393,7 +121780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2080), 38, + ACTIONS(2212), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115416,6 +121803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115432,15 +121820,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7920] = 5, - ACTIONS(101), 1, + [6494] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3604), 1, + anon_sym_LBRACE, + STATE(1161), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3507), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [6557] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(2214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115448,7 +121893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 38, + ACTIONS(2216), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115471,6 +121916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115487,15 +121933,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6618] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(2218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115503,7 +121949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 38, + ACTIONS(2220), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115526,6 +121972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115542,15 +121989,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6679] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(2222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115558,7 +122005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 38, + ACTIONS(2224), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115581,6 +122028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115597,15 +122045,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6740] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115613,7 +122061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 38, + ACTIONS(2228), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115636,6 +122084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115652,70 +122101,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6801] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1127), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1430), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1428), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8220] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115723,7 +122117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(2232), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115746,6 +122140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115762,15 +122157,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6862] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115778,7 +122173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(2236), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115801,6 +122196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115817,70 +122213,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6923] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1400), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1398), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8400] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115888,7 +122229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 38, + ACTIONS(2240), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115911,6 +122252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115927,15 +122269,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6984] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115943,7 +122285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 38, + ACTIONS(2244), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115966,6 +122308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -115982,15 +122325,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7045] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(3608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115998,7 +122341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 38, + ACTIONS(3606), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116021,6 +122364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116037,15 +122381,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8580] = 5, - ACTIONS(101), 1, + [7106] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1171), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3612), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3610), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7167] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116053,7 +122453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 38, + ACTIONS(2256), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116076,6 +122476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116092,15 +122493,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7228] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(2258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116108,7 +122509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 38, + ACTIONS(2260), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116131,6 +122532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116147,15 +122549,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7289] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116163,7 +122565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 38, + ACTIONS(2264), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116186,6 +122588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116202,15 +122605,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7350] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116218,7 +122621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 38, + ACTIONS(2268), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116241,6 +122644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116257,15 +122661,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7411] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116273,7 +122677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 38, + ACTIONS(2272), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116296,6 +122700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116312,15 +122717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7472] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116328,7 +122733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 38, + ACTIONS(2276), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116351,6 +122756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116367,15 +122773,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8940] = 5, - ACTIONS(101), 1, + [7533] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2278), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2280), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7594] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116383,7 +122845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 38, + ACTIONS(2284), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116406,6 +122868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116422,15 +122885,128 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9000] = 5, - ACTIONS(101), 1, + [7655] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1180), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2378), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(2380), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7716] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3614), 1, + anon_sym_LBRACE, + STATE(1181), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3548), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [7779] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116438,7 +123014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 38, + ACTIONS(2288), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116461,6 +123037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116477,15 +123054,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7840] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116493,7 +123070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(2292), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116516,6 +123093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116532,15 +123110,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7901] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116548,7 +123126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 38, + ACTIONS(2296), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116571,6 +123149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116587,15 +123166,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7962] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116603,7 +123182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 38, + ACTIONS(2300), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116626,6 +123205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116642,15 +123222,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9240] = 5, - ACTIONS(101), 1, + [8023] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2166), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2168), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8084] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116658,7 +123294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 38, + ACTIONS(2304), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116681,6 +123317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116697,15 +123334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8145] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116713,7 +123350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 38, + ACTIONS(2308), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116736,6 +123373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116752,15 +123390,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9360] = 5, - ACTIONS(101), 1, + [8206] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1189), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3618), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3616), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8267] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(3622), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3620), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8328] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1191), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116768,7 +123518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 38, + ACTIONS(2312), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116791,6 +123541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116807,15 +123558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8389] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116823,7 +123574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 38, + ACTIONS(2316), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116846,6 +123597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116862,15 +123614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8450] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116878,7 +123630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 38, + ACTIONS(2320), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116901,6 +123653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116917,15 +123670,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8511] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116933,7 +123686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 38, + ACTIONS(2324), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116956,6 +123709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116972,15 +123726,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8572] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116988,7 +123742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 38, + ACTIONS(2328), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117011,6 +123765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117027,15 +123782,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9660] = 5, - ACTIONS(101), 1, + [8633] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2330), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2332), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8694] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117043,7 +123854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 38, + ACTIONS(2336), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117066,6 +123877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117082,70 +123894,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8755] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1153), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2190), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2192), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [9780] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(2338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117153,7 +123910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 38, + ACTIONS(2340), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117176,6 +123933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117192,70 +123950,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8816] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1155), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2198), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2200), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [9900] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(2342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117263,7 +123966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2204), 38, + ACTIONS(2344), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117286,6 +123989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117302,70 +124006,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8877] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1157), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2206), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2208), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10020] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117373,7 +124022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 38, + ACTIONS(2348), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117396,6 +124045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117412,70 +124062,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8938] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1159), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2214), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2216), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10140] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117483,7 +124078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 38, + ACTIONS(2352), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117506,6 +124101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117522,15 +124118,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8999] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117538,7 +124134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 38, + ACTIONS(2356), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117561,6 +124157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117577,15 +124174,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9060] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117593,7 +124190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 38, + ACTIONS(2360), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117616,6 +124213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117632,15 +124230,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9121] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117648,7 +124246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 38, + ACTIONS(2364), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117671,6 +124269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117687,15 +124286,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9182] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117703,7 +124302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 38, + ACTIONS(2368), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117726,6 +124325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117742,15 +124342,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9243] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117758,7 +124358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 38, + ACTIONS(2372), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117781,6 +124381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117797,15 +124398,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9304] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117813,7 +124414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 38, + ACTIONS(2380), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117836,6 +124437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117852,15 +124454,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9365] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(2382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117868,7 +124470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 38, + ACTIONS(2384), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117891,6 +124493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117907,15 +124510,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9426] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(2386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117923,7 +124526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2256), 38, + ACTIONS(2388), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117946,6 +124549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117962,23 +124566,178 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10680] = 5, - ACTIONS(101), 1, + [9487] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1210), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3626), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3624), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [9548] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(3630), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3628), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [9609] = 26, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(1635), 1, + anon_sym_fn, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(2260), 38, + ACTIONS(3632), 1, + sym_identifier, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(3638), 1, + anon_sym_for, + STATE(1632), 1, + sym_for_lifetimes, + STATE(2047), 1, + sym_generic_type, + STATE(2239), 1, + sym_scoped_type_identifier, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3583), 1, + sym_function_modifiers, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(2063), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3634), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117996,36 +124755,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10740] = 5, - ACTIONS(101), 1, + [9712] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3640), 1, + anon_sym_LBRACE, + STATE(1213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3538), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3540), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [9775] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118033,7 +124828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 38, + ACTIONS(2412), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118056,6 +124851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118072,23 +124868,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9836] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2378), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2268), 38, + ACTIONS(2380), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118106,36 +124910,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [10860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9897] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(2418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118143,7 +124940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2917), 38, + ACTIONS(2420), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118166,6 +124963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118182,15 +124980,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9958] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118198,7 +124996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 38, + ACTIONS(2424), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118221,6 +125019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118237,15 +125036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10019] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118253,7 +125052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 38, + ACTIONS(2428), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118276,6 +125075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118292,15 +125092,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10080] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118308,7 +125108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 38, + ACTIONS(2432), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118331,6 +125131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118347,15 +125148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10141] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118363,7 +125164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 38, + ACTIONS(2436), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118386,6 +125187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118402,15 +125204,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10202] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118418,7 +125220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 38, + ACTIONS(2440), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118441,6 +125243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118457,15 +125260,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10263] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118473,7 +125276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 38, + ACTIONS(2444), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118496,6 +125299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118512,15 +125316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10324] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118528,7 +125332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 38, + ACTIONS(2448), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118551,6 +125355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118567,23 +125372,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10385] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3554), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2308), 38, + ACTIONS(3552), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118601,36 +125414,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [11400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10446] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118638,7 +125444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 38, + ACTIONS(2452), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118661,6 +125467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118677,15 +125484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10507] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118693,7 +125500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 38, + ACTIONS(2456), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118716,6 +125523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118732,70 +125540,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10568] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1183), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11580] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118803,7 +125556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(2460), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118826,6 +125579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118842,15 +125596,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10629] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(2462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118858,7 +125612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 38, + ACTIONS(2464), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118881,6 +125635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118897,70 +125652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10690] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3547), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11760] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 7, + ACTIONS(2466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118968,7 +125668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(2468), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118991,6 +125691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119007,15 +125708,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10751] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 7, + ACTIONS(2470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119023,7 +125724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2248), 38, + ACTIONS(2472), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119046,6 +125747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119062,70 +125764,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10812] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1189), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3553), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3551), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11940] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119133,7 +125780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 38, + ACTIONS(2476), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119156,6 +125803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119172,15 +125820,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10873] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119188,7 +125836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 38, + ACTIONS(2480), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119211,6 +125859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119227,125 +125876,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1192), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10934] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1193), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3557), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3555), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12180] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(2482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119353,7 +125892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 38, + ACTIONS(2484), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119376,6 +125915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119392,125 +125932,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1195), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1452), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1450), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10995] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1196), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1322), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1320), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12360] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(2490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119518,7 +125948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 38, + ACTIONS(2492), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119541,6 +125971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119557,125 +125988,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1198), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(753), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(755), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11056] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1199), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3561), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3559), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12540] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119683,7 +126004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 38, + ACTIONS(2496), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119706,6 +126027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119722,15 +126044,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11117] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119738,7 +126060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 38, + ACTIONS(2506), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119761,6 +126083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119777,20 +126100,97 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11178] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3565), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3194), 1, + anon_sym_fn, + ACTIONS(3642), 1, + sym_identifier, + ACTIONS(3644), 1, + anon_sym_LPAREN, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, + ACTIONS(3650), 1, + anon_sym_default, + ACTIONS(3652), 1, + anon_sym_for, + ACTIONS(3658), 1, + sym_metavariable, + STATE(1092), 1, + sym_scoped_type_identifier, + STATE(1299), 1, + sym_generic_type, + STATE(1647), 1, + sym_for_lifetimes, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3651), 1, + sym_scoped_identifier, + STATE(3686), 1, + sym_generic_type_with_turbofish, + STATE(3698), 1, + sym_bracketed_type, + STATE(3772), 1, + sym_function_modifiers, + ACTIONS(3654), 2, + anon_sym_gen, + anon_sym_union, + STATE(1237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3656), 3, + sym_self, + sym_super, + sym_crate, + STATE(1519), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3646), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [11281] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1599), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -119801,7 +126201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 30, + ACTIONS(1601), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119809,6 +126209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119832,15 +126233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11342] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119848,7 +126249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 38, + ACTIONS(2518), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119871,6 +126272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119887,15 +126289,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12780] = 5, - ACTIONS(101), 1, + [11403] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1240), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3560), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3558), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11464] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119903,7 +126361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 38, + ACTIONS(2522), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119926,6 +126384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -119942,510 +126401,523 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11525] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1206), 30, + ACTIONS(2526), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2528), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11586] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1382), 30, + ACTIONS(2530), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2532), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 30, + ACTIONS(2534), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2536), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11708] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3571), 30, + ACTIONS(2538), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2540), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11769] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3575), 30, + ACTIONS(2542), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2544), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11830] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 30, + ACTIONS(1918), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1920), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11891] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3583), 30, + ACTIONS(2546), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2548), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11952] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3587), 30, + ACTIONS(2550), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2552), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12013] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 30, + ACTIONS(2554), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2556), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12074] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1496), 1, + sym_label, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120461,7 +126933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(3660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120489,116 +126961,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12139] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3392), 30, + ACTIONS(2558), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13500] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3221), 1, - anon_sym_if, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3603), 1, + anon_sym_POUND, sym_metavariable, - STATE(2726), 1, - sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3219), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1216), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 19, + ACTIONS(2560), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120616,17 +126997,559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_union, - [13592] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1217), 2, - sym_line_comment, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12200] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1253), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2562), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2564), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12261] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1254), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3378), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12322] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2566), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2568), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12383] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2570), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2572), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12444] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3420), 1, + anon_sym_if, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3668), 1, + anon_sym_COLON_COLON, + ACTIONS(3672), 1, + sym_metavariable, + STATE(2830), 1, + sym_scoped_identifier, + STATE(3090), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3418), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1257), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3670), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3666), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [12537] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2574), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2576), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12598] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2578), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2580), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12659] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1260), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, + ACTIONS(3026), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3028), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12720] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2590), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2592), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12781] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + STATE(1262), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120642,7 +127565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3605), 30, + ACTIONS(3475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120673,290 +127596,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13652] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12844] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(1422), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1420), 30, + ACTIONS(2594), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13712] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1219), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3611), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3609), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13772] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1220), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3615), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3613), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1221), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3619), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3617), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13892] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2596), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12905] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1222), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3623), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3621), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13952] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + ACTIONS(3676), 1, + anon_sym_COLON_COLON, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120972,7 +127678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 30, + ACTIONS(3475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121003,70 +127709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14012] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12968] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1224), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3627), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3625), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14072] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121082,7 +127735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 30, + ACTIONS(3475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121113,70 +127766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14132] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13031] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1226), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3635), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3633), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14192] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(2598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121184,7 +127782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 38, + ACTIONS(2600), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121207,6 +127805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -121223,15 +127822,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14252] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13092] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + ACTIONS(3680), 1, + anon_sym_LPAREN, + STATE(1552), 1, + sym_arguments, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121247,9 +127850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 30, + ACTIONS(3678), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -121278,29 +127880,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14312] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13157] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 13, + ACTIONS(2602), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3641), 32, + ACTIONS(2604), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121321,41 +127917,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, + anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14372] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13218] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 13, + ACTIONS(2606), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3645), 32, + ACTIONS(2608), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121376,82 +127973,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, + anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14432] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13279] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1231), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(985), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(987), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14492] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 7, + ACTIONS(2610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121459,7 +128008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2420), 38, + ACTIONS(2612), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121482,6 +128031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -121498,15 +128048,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14552] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13340] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2422), 7, + ACTIONS(2152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121514,7 +128064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2424), 38, + ACTIONS(2154), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121537,6 +128087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -121553,15 +128104,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14612] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13401] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2426), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121569,7 +128120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2428), 38, + ACTIONS(2160), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121592,6 +128143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -121608,15 +128160,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13462] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 7, + ACTIONS(2614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121624,7 +128176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2432), 38, + ACTIONS(2616), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121647,6 +128199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -121663,15 +128216,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14732] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13523] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 7, + ACTIONS(2618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121679,7 +128232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2436), 38, + ACTIONS(2620), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121702,6 +128255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -121718,182 +128272,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14792] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1237), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3651), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3649), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14852] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - ACTIONS(3653), 1, - anon_sym_BANG, - STATE(1238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3317), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3315), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [14916] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13584] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1239), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1388), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1386), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14976] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2438), 7, + ACTIONS(2622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121901,7 +128288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2440), 38, + ACTIONS(2624), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121924,6 +128311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -121940,70 +128328,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15036] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13645] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1241), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15096] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 7, + ACTIONS(2626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122011,7 +128344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2444), 38, + ACTIONS(2628), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122034,6 +128367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -122050,71 +128384,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15156] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13706] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - anon_sym_RBRACE, - STATE(1243), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3657), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3655), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15218] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122122,7 +128400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(2632), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122145,6 +128423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -122161,70 +128440,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13767] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1245), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2446), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2448), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15338] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 7, + ACTIONS(2662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122232,7 +128456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2452), 38, + ACTIONS(2664), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122255,6 +128479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -122271,15 +128496,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15398] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13828] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 7, + ACTIONS(2666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122287,7 +128512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2456), 38, + ACTIONS(2668), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122310,6 +128535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -122326,15 +128552,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15458] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13889] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1396), 15, + ACTIONS(3686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122350,7 +128576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 30, + ACTIONS(3684), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122378,18 +128604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15518] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13950] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3663), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122405,7 +128632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3661), 30, + ACTIONS(3688), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122433,18 +128660,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15578] = 5, - ACTIONS(101), 1, + [14011] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3408), 1, + anon_sym_if, + ACTIONS(3668), 1, + anon_sym_COLON_COLON, + ACTIONS(3692), 1, + sym_identifier, + ACTIONS(3698), 1, + sym_metavariable, + STATE(2752), 1, + sym_scoped_identifier, + STATE(2987), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3406), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1282), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3696), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3694), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [14104] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3700), 1, + anon_sym_move, + STATE(486), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122460,13 +128774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, + ACTIONS(3440), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -122488,26 +128798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [15638] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14179] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1251), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3669), 14, + ACTIONS(3704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122521,14 +128821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 27, + ACTIONS(3702), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -122548,25 +128851,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [15706] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14240] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2462), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3236), 1, + anon_sym_fn, + ACTIONS(3706), 1, + sym_identifier, + ACTIONS(3708), 1, + anon_sym_LPAREN, + ACTIONS(3712), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3714), 1, + anon_sym_default, + ACTIONS(3716), 1, + anon_sym_for, + ACTIONS(3722), 1, sym_metavariable, - ACTIONS(2464), 38, + STATE(1611), 1, + sym_scoped_type_identifier, + STATE(1625), 1, + sym_for_lifetimes, + STATE(1683), 1, + sym_generic_type, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3641), 1, + sym_function_modifiers, + STATE(3678), 1, + sym_scoped_identifier, + STATE(3696), 1, + sym_generic_type_with_turbofish, + STATE(3702), 1, + sym_bracketed_type, + ACTIONS(3718), 2, + anon_sym_gen, + anon_sym_union, + STATE(1285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3720), 3, + sym_self, + sym_super, + sym_crate, + STATE(1762), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3710), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122584,36 +128932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14343] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2466), 7, + ACTIONS(2686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122621,7 +128948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2468), 38, + ACTIONS(2688), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122644,6 +128971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -122660,78 +128988,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15826] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14404] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2470), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3396), 1, + anon_sym_if, + ACTIONS(3668), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3730), 1, sym_metavariable, - ACTIONS(2472), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + STATE(2827), 1, + sym_scoped_identifier, + STATE(3007), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3394), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1287), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3728), 3, sym_self, sym_super, sym_crate, - [15886] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1255), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2474), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2476), 38, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3726), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122749,91 +129057,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15946] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14497] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 7, + ACTIONS(3734), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3732), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2480), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14558] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 15, + ACTIONS(3738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122849,7 +129140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 30, + ACTIONS(3736), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122877,18 +129168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14619] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2482), 7, + ACTIONS(2690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122896,7 +129188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2484), 38, + ACTIONS(2692), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122919,6 +129211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -122935,15 +129228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14680] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2486), 7, + ACTIONS(2698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122951,7 +129244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2488), 38, + ACTIONS(2700), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122974,6 +129267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -122990,29 +129284,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16186] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14741] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 13, + ACTIONS(2702), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3681), 32, + ACTIONS(2704), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123033,82 +129321,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, + anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14802] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 13, + ACTIONS(3388), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3390), 31, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3685), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [14863] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + ACTIONS(3744), 1, + anon_sym_DASH_GT, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123124,7 +129422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3689), 30, + ACTIONS(3740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123155,15 +129453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16366] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14926] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(2706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123171,7 +129469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 38, + ACTIONS(2708), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123194,6 +129492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123210,15 +129509,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14987] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123234,7 +129535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 30, + ACTIONS(3513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123265,15 +129566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16486] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15050] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(2710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123281,7 +129582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 38, + ACTIONS(2712), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123304,6 +129605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123320,15 +129622,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15111] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, + ACTIONS(2714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123336,7 +129638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2500), 38, + ACTIONS(2716), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123359,6 +129661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123375,15 +129678,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16606] = 5, - ACTIONS(101), 1, + [15172] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + STATE(1299), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3519), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3517), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15235] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 7, + ACTIONS(2718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123391,7 +129751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2504), 38, + ACTIONS(2720), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123414,6 +129774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123430,15 +129791,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16666] = 5, - ACTIONS(101), 1, + [15296] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_DASH_GT, + STATE(1301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3746), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15359] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 7, + ACTIONS(2722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123446,7 +129864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2508), 38, + ACTIONS(2724), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123469,6 +129887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123485,15 +129904,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15420] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + ACTIONS(3756), 1, + anon_sym_DASH_GT, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(1376), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123509,7 +129930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1374), 30, + ACTIONS(3752), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123540,15 +129961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15483] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2514), 7, + ACTIONS(2374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123556,7 +129977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2516), 38, + ACTIONS(2376), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123579,6 +130000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123595,15 +130017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15544] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123611,7 +130033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 38, + ACTIONS(2728), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123634,6 +130056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123650,84 +130073,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15605] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1272), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3699), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3697), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16966] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 13, + ACTIONS(2730), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3701), 32, + ACTIONS(2732), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123748,27 +130110,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, + anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17026] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15666] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + ACTIONS(3758), 1, + anon_sym_else, + STATE(1475), 1, + sym_else_clause, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(1407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123784,7 +130157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 30, + ACTIONS(1405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123814,30 +130187,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [17086] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15731] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 13, + ACTIONS(2390), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3709), 32, + ACTIONS(2392), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123858,27 +130224,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, + anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15792] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123886,7 +130259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 38, + ACTIONS(2396), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123909,6 +130282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123925,15 +130299,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15853] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 7, + ACTIONS(2398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123941,7 +130315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2530), 38, + ACTIONS(2400), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123964,6 +130338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -123980,70 +130355,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15914] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3713), 30, + ACTIONS(2646), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17326] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2648), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15975] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2615), 7, + ACTIONS(2650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124051,7 +130427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2617), 38, + ACTIONS(2652), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124074,6 +130450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124090,15 +130467,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17386] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16036] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2619), 7, + ACTIONS(2654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124106,7 +130483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2621), 38, + ACTIONS(2656), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124129,6 +130506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124145,15 +130523,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17446] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16097] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2623), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124161,7 +130539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2625), 38, + ACTIONS(1928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124184,6 +130562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124200,15 +130579,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17506] = 5, - ACTIONS(101), 1, + [16158] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1315), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2064), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2066), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16219] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 7, + ACTIONS(2068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124216,7 +130651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2629), 38, + ACTIONS(2070), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124239,6 +130674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124255,15 +130691,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17566] = 5, - ACTIONS(101), 1, + [16280] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2072), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2074), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16341] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2631), 7, + ACTIONS(2076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124271,7 +130763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2633), 38, + ACTIONS(2078), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124294,6 +130786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124310,15 +130803,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17626] = 5, - ACTIONS(101), 1, + [16402] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1319), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2084), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2086), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16463] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(2144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124326,7 +130875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 38, + ACTIONS(2146), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124349,6 +130898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124365,15 +130915,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17686] = 5, - ACTIONS(101), 1, + [16524] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1321), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2148), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2150), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16585] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(2162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124381,7 +130987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2643), 38, + ACTIONS(2164), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124404,6 +131010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124420,15 +131027,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17746] = 5, - ACTIONS(101), 1, + [16646] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1323), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2174), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2176), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16707] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3503), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124439,12 +131102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 30, + ACTIONS(3501), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124463,27 +131128,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17806] = 5, - ACTIONS(101), 1, + anon_sym_LT2, + [16768] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1325), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2734), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2736), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16829] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(1426), 15, + ACTIONS(3762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124499,7 +131219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1424), 30, + ACTIONS(3760), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124527,36 +131247,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17866] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16890] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3725), 1, - anon_sym_RBRACE, - STATE(1288), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2738), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3721), 29, + ACTIONS(2740), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124574,27 +131285,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [17928] = 5, - ACTIONS(101), 1, + [16951] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1328), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2742), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2744), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17012] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124602,7 +131379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 38, + ACTIONS(2748), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124625,6 +131402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124641,15 +131419,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17988] = 5, - ACTIONS(101), 1, + [17073] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1330), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2750), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2752), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17134] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124657,7 +131491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2655), 38, + ACTIONS(2756), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124680,6 +131514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -124696,15 +131531,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18048] = 5, - ACTIONS(101), 1, + [17195] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1332), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2758), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2760), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17256] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + ACTIONS(3768), 1, + anon_sym_DASH_GT, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(3766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124720,7 +131613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 30, + ACTIONS(3764), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124751,180 +131644,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17319] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3731), 30, + ACTIONS(2762), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18168] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1293), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18228] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2764), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17380] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1294), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3737), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3735), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18288] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + ACTIONS(3774), 1, + anon_sym_DASH_GT, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124940,7 +131726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 30, + ACTIONS(3770), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124971,70 +131757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18348] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17443] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1296), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18408] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + ACTIONS(3780), 1, + anon_sym_DASH_GT, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125050,7 +131783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 30, + ACTIONS(3776), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125081,180 +131814,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18468] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17506] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1298), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3745), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3743), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18528] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3747), 30, + ACTIONS(2766), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18588] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1300), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3753), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3751), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18648] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2768), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17567] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125262,7 +131886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2408), 38, + ACTIONS(2772), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125285,6 +131909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -125301,113 +131926,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18708] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17628] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1240), 30, + ACTIONS(2782), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18768] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3233), 1, - anon_sym_if, - ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, + anon_sym_POUND, sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3231), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, + ACTIONS(2784), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125425,127 +131960,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [18860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17689] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3763), 30, + ACTIONS(2790), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1305), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3769), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3767), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2792), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17750] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(2798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125553,7 +132054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2659), 38, + ACTIONS(2800), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125576,6 +132077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -125592,15 +132094,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17811] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(2802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125608,7 +132110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2663), 38, + ACTIONS(2804), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125631,6 +132133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -125647,235 +132150,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17872] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1308), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3773), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3771), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19160] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3775), 30, + ACTIONS(2806), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1310), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2808), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17933] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1311), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(989), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(991), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19340] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 7, + ACTIONS(2402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125883,7 +132222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2667), 38, + ACTIONS(2404), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125906,6 +132245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -125922,70 +132262,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17994] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(767), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(769), 30, + ACTIONS(2810), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2812), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18055] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(2814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125993,7 +132334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2671), 38, + ACTIONS(2816), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126016,6 +132357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126032,15 +132374,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18116] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 7, + ACTIONS(2818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126048,7 +132390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2675), 38, + ACTIONS(2820), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126071,6 +132413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126087,15 +132430,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19580] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18177] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 7, + ACTIONS(2406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126103,7 +132446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2679), 38, + ACTIONS(2408), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126126,6 +132469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126142,15 +132486,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18238] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 7, + ACTIONS(2822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126158,7 +132502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2683), 38, + ACTIONS(2824), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126181,6 +132525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126197,15 +132542,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18299] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2685), 7, + ACTIONS(2826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126213,7 +132558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2687), 38, + ACTIONS(2828), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126236,6 +132581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126252,403 +132598,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18360] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1350), 30, + ACTIONS(2830), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1320), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3781), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3779), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1321), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1354), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19940] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2832), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18421] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1322), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3785), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3783), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20000] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1323), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3787), 28, + ACTIONS(2414), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1324), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3793), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3791), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2416), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18482] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1325), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3797), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3795), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20186] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2689), 7, + ACTIONS(2486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126656,7 +132726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2691), 38, + ACTIONS(2488), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126679,6 +132749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126695,70 +132766,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18543] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1327), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3801), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3799), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20306] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 7, + ACTIONS(2498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126766,7 +132782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2695), 38, + ACTIONS(2500), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126789,6 +132805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126805,15 +132822,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20366] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18604] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2697), 7, + ACTIONS(2834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126821,7 +132838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2699), 38, + ACTIONS(2836), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126844,6 +132861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126860,15 +132878,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18665] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 7, + ACTIONS(2838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126876,7 +132894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2703), 38, + ACTIONS(2840), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126899,6 +132917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126915,15 +132934,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20486] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18726] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2705), 7, + ACTIONS(2842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126931,7 +132950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2707), 38, + ACTIONS(2844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126954,6 +132973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -126970,15 +132990,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18787] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 7, + ACTIONS(2846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126986,7 +133006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2711), 38, + ACTIONS(2848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127009,6 +133029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127025,15 +133046,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18848] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2713), 7, + ACTIONS(2850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127041,7 +133062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2715), 38, + ACTIONS(2852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127064,6 +133085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127080,15 +133102,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18909] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2717), 7, + ACTIONS(2854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127096,7 +133118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2719), 38, + ACTIONS(2856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127119,6 +133141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127135,15 +133158,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18970] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 7, + ACTIONS(2858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127151,7 +133174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2723), 38, + ACTIONS(2860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127174,6 +133197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127190,128 +133214,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19031] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(1364), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1362), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20846] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1337), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3805), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3803), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20912] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1338), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2791), 7, + ACTIONS(2862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127319,7 +133230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2793), 38, + ACTIONS(2864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127342,6 +133253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127358,15 +133270,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20972] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19092] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2799), 7, + ACTIONS(2866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127374,7 +133286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2801), 38, + ACTIONS(2868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127397,6 +133309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127413,15 +133326,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19153] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2803), 7, + ACTIONS(2870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +133342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2805), 38, + ACTIONS(2872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127452,6 +133365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127468,15 +133382,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21092] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19214] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2807), 7, + ACTIONS(2874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127484,7 +133398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2809), 38, + ACTIONS(2876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127507,6 +133421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127523,15 +133438,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21152] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19275] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(2878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127539,7 +133454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 38, + ACTIONS(2880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127562,6 +133477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127578,15 +133494,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21212] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19336] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(2882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127594,7 +133510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2817), 38, + ACTIONS(2884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127617,6 +133533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127633,15 +133550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21272] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19397] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 7, + ACTIONS(2886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127649,7 +133566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2821), 38, + ACTIONS(2888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127672,6 +133589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127688,15 +133606,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21332] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19458] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, + ACTIONS(2508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127704,7 +133622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2825), 38, + ACTIONS(2510), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127727,6 +133645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127743,15 +133662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21392] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19519] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(2586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127759,7 +133678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2829), 38, + ACTIONS(2588), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127782,6 +133701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127798,15 +133718,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21452] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19580] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(2890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127814,7 +133734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 38, + ACTIONS(2892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127837,6 +133757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127853,15 +133774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21512] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19641] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(2894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127869,7 +133790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2837), 38, + ACTIONS(2896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127892,6 +133813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127908,15 +133830,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21572] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19702] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 7, + ACTIONS(2898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127924,7 +133846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2841), 38, + ACTIONS(2900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127947,6 +133869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -127963,15 +133886,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21632] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19763] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(2902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127979,7 +133902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 38, + ACTIONS(2904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128002,6 +133925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128018,15 +133942,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21692] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19824] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(2906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128034,7 +133958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2849), 38, + ACTIONS(2908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128057,6 +133981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128073,15 +133998,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21752] = 5, - ACTIONS(101), 1, + [19885] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3784), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3782), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19946] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(2634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128089,7 +134070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 38, + ACTIONS(2636), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128112,6 +134093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128128,21 +134110,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21812] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20007] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1353), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 14, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128156,14 +134132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3807), 28, + ACTIONS(3786), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128183,18 +134162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [21878] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20068] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128202,7 +134182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 38, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128225,6 +134205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128241,15 +134222,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21938] = 5, - ACTIONS(101), 1, + [20129] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2930), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2932), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20190] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(2638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128257,7 +134294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 38, + ACTIONS(2640), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128280,6 +134317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128296,15 +134334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21998] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20251] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(2934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128312,7 +134350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 38, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128335,6 +134373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128351,15 +134390,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22058] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20312] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(2938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128367,7 +134406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2869), 38, + ACTIONS(2940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128390,6 +134429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128406,15 +134446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22118] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20373] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(2642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128422,7 +134462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2873), 38, + ACTIONS(2644), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128445,6 +134485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128461,15 +134502,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22178] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20434] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(2942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128477,7 +134518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2877), 38, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128500,6 +134541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128516,15 +134558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22238] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20495] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128532,7 +134574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2881), 38, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128555,6 +134597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128571,15 +134614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22298] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20556] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 7, + ACTIONS(2950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128587,7 +134630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2885), 38, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128610,6 +134653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128626,15 +134670,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22358] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20617] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 7, + ACTIONS(2954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128642,7 +134686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2889), 38, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128665,6 +134709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128681,15 +134726,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22418] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20678] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128697,7 +134742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2893), 38, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128720,6 +134765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128736,15 +134782,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22478] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20739] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2895), 7, + ACTIONS(2962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128752,7 +134798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2897), 38, + ACTIONS(2964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128775,6 +134821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -128791,180 +134838,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22538] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1365), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3813), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3811), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22598] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1366), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3817), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3815), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22658] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20800] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1367), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3821), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3819), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22718] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2899), 7, + ACTIONS(2970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128972,7 +134854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2901), 38, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128995,6 +134877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -129011,15 +134894,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22778] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20861] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + ACTIONS(3794), 1, + anon_sym_DASH_GT, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129035,7 +134920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3823), 30, + ACTIONS(3790), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129066,70 +134951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22838] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20924] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1370), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2903), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2905), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22898] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129137,7 +134967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2909), 38, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129160,6 +134990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -129176,15 +135007,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22958] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20985] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 7, + ACTIONS(2982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129192,7 +135023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2913), 38, + ACTIONS(2984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129215,6 +135046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -129231,15 +135063,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23018] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21046] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(2986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129247,7 +135079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 38, + ACTIONS(2988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129270,6 +135102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -129286,15 +135119,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23078] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21107] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(2990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129302,7 +135135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2651), 38, + ACTIONS(2992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129325,6 +135158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -129341,181 +135175,183 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23138] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21168] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1232), 30, + ACTIONS(2994), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23198] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2996), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21229] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1378), 30, + ACTIONS(2670), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23258] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2672), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21290] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1377), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 28, + ACTIONS(2998), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [23320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3000), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21351] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 7, + ACTIONS(3002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129523,7 +135359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(3004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129546,6 +135382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -129562,15 +135399,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21412] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 7, + ACTIONS(3006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129578,7 +135415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(3008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129601,6 +135438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -129617,573 +135455,135 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21473] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(771), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(773), 30, + ACTIONS(2674), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2676), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21534] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1370), 30, + ACTIONS(3010), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3012), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21595] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(2678), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1383), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3835), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3833), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1384), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3839), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3837), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1385), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3843), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3841), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1386), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3847), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3845), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1387), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1444), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1442), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1388), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3851), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3849), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1389), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3855), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3853), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1390), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1758), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(2680), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130206,6 +135606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130222,70 +135623,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21656] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1391), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3859), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3857), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24160] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 7, + ACTIONS(2682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130293,7 +135639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(2684), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130316,6 +135662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130332,72 +135679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24220] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21717] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - STATE(1393), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [24284] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 7, + ACTIONS(2694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130405,7 +135695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(2696), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130428,6 +135718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130444,15 +135735,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24344] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21778] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 7, + ACTIONS(2774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130460,7 +135751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(2776), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130483,6 +135774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130499,15 +135791,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24404] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21839] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 7, + ACTIONS(2778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130515,7 +135807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(2780), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130538,6 +135830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130554,15 +135847,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24464] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21900] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 7, + ACTIONS(2786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130570,7 +135863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(2788), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130593,6 +135886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130609,15 +135903,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24524] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21961] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 7, + ACTIONS(2910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130625,7 +135919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(2912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130648,6 +135942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130664,15 +135959,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24584] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22022] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 7, + ACTIONS(2914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130680,7 +135975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(2916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130703,6 +135998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130719,15 +136015,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24644] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22083] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(1702), 7, + ACTIONS(2918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130735,7 +136031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(2920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130758,6 +136054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130774,15 +136071,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24704] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22144] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(1706), 7, + ACTIONS(2922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130790,7 +136087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(2924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130813,6 +136110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130829,15 +136127,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24764] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22205] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 7, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130845,7 +136143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130868,6 +136166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130884,15 +136183,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24824] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22266] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(1714), 7, + ACTIONS(3050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130900,7 +136199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(3052), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130923,6 +136222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130939,15 +136239,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24884] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22327] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1718), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130955,7 +136255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(1868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130978,6 +136278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -130994,15 +136295,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24944] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22388] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(1722), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131010,7 +136311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(1872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131033,6 +136334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131049,15 +136351,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25004] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22449] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1726), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131065,7 +136367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131088,6 +136390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131104,15 +136407,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25064] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22510] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1730), 7, + ACTIONS(2036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131120,7 +136423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(2038), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131143,6 +136446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131159,15 +136463,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25124] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22571] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1734), 7, + ACTIONS(2040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131175,7 +136479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(2042), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131198,6 +136502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131214,15 +136519,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25184] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22632] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 7, + ACTIONS(2044), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131230,7 +136535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(2046), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131253,6 +136558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131269,15 +136575,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25244] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22693] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(1742), 7, + ACTIONS(2048), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131285,7 +136591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(2050), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131308,6 +136614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131324,15 +136631,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22754] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(1746), 7, + ACTIONS(2052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131340,7 +136647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(2054), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131363,6 +136670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131379,15 +136687,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25364] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22815] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(1750), 7, + ACTIONS(2056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131395,7 +136703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(2058), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131418,6 +136726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131434,70 +136743,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25424] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22876] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1413), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1390), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25484] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1754), 7, + ACTIONS(3014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131505,7 +136759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(3016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131528,6 +136782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131544,15 +136799,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25544] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22937] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1766), 7, + ACTIONS(3018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131560,7 +136815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(3020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131583,6 +136838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131599,15 +136855,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25604] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22998] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(1770), 7, + ACTIONS(3022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131615,7 +136871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(3024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131638,6 +136894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131654,23 +136911,66 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25664] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23059] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1774), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1147), 1, + anon_sym_fn, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3272), 1, + anon_sym_for, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(3796), 1, + sym_identifier, + STATE(1652), 1, + sym_for_lifetimes, + STATE(2031), 1, + sym_scoped_type_identifier, + STATE(2047), 1, + sym_generic_type, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(3812), 1, + sym_function_modifiers, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(2063), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3634), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131688,147 +136988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25724] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23162] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1418), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1246), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1244), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25784] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1419), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [25846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(1778), 7, + ACTIONS(2080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131836,7 +137004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(2082), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131859,6 +137027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131875,15 +137044,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23223] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1782), 7, + ACTIONS(2140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131891,7 +137060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(2142), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131914,6 +137083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -131930,70 +137100,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23284] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1786), 7, + ACTIONS(3800), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3798), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1788), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26026] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23345] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1790), 7, + ACTIONS(2582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132001,7 +137172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(2584), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132024,6 +137195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_gen, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -132040,78 +137212,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26086] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23406] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1794), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, + anon_sym_STAR, + ACTIONS(3489), 1, + anon_sym_AMP, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3495), 1, + anon_sym_for, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(1796), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + STATE(2559), 1, + sym_where_predicate, + STATE(2796), 1, + sym_scoped_type_identifier, + STATE(3036), 1, + sym_generic_type, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(1433), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3493), 3, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - [26146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1425), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1798), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1800), 38, + STATE(3215), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3487), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132129,751 +137285,6259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23502] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, + ACTIONS(3804), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3802), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1804), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23562] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(3808), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3806), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1808), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26326] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23622] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 7, + ACTIONS(3812), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3810), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1812), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26386] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23682] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(3816), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3814), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1816), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26446] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23742] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(3820), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3818), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1820), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23802] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(955), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(957), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1824), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26566] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23862] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(1439), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1437), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1828), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26626] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23922] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(1477), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1475), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1832), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23982] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(3824), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3822), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1836), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26746] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24042] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(3828), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3826), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24102] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3832), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3830), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24162] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(3834), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1840), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26806] = 5, - ACTIONS(101), 1, + STATE(1445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [24226] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1446), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3838), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3836), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24286] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3842), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3840), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24346] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3846), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3844), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24406] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1449), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3852), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3848), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24472] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1450), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3860), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3858), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24532] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3864), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3862), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24592] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3868), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3866), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24652] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1453), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24712] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3872), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3870), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24772] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + STATE(1455), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3876), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_else, + [24840] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3477), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3475), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24900] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1457), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3882), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3880), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24960] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1458), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3886), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3884), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25020] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1459), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1053), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1055), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25080] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1460), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3890), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3888), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25140] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3892), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25200] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1462), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3898), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3896), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25260] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1463), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1495), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1493), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25320] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3902), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3900), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25380] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1503), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1501), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25440] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1013), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1015), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25500] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3906), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3904), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25566] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1509), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25626] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1515), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1513), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25686] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1470), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1523), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1521), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25746] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1549), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1547), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25806] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1472), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(951), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(953), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25866] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3910), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3908), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25926] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3914), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3912), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25986] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1485), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26046] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1476), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3918), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3916), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26106] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3922), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3920), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26172] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3926), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3924), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26232] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1479), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3930), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3928), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26292] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1480), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26352] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1481), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3932), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26412] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1482), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1443), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1441), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26472] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1483), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3938), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3936), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26532] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3942), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3940), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26592] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1485), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3682), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3678), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26652] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1486), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3946), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3944), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26712] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3948), 1, + anon_sym_BANG, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + ACTIONS(3952), 1, + anon_sym_move, + STATE(1812), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(1487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3440), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [26786] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1488), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1447), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1445), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26846] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1489), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3956), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3954), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26906] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3960), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3958), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26966] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1491), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3964), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3962), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27026] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3968), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3966), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27086] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1493), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3972), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3970), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27146] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1494), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1541), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1539), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27206] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27266] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3976), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3974), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27326] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1497), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3980), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3978), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27386] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3984), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3986), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3982), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [27448] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1499), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3990), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3988), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27508] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1500), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(975), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(977), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27568] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + STATE(1501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3440), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [27632] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3994), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3992), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27698] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1503), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3998), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3996), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27758] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1504), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4002), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4000), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27818] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4006), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4004), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27878] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4008), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27938] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1507), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4014), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4012), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27998] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1508), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4018), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4016), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28058] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1509), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28118] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4022), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4020), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28178] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1511), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3509), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28238] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1491), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1489), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28298] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4026), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4024), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28358] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28418] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1515), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3515), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3513), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28478] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4028), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3986), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3982), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [28540] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1517), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4032), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4030), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28600] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1518), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3986), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3982), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28660] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3519), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3517), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28720] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1520), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1483), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1481), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28780] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1521), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4036), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4034), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28840] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1522), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1045), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1047), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28900] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1523), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4040), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4038), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28960] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1524), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4044), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4042), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29020] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1525), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4048), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4046), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29080] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1526), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1507), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1505), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29140] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1527), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1533), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1531), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29200] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1528), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1465), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1463), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29260] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1529), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4052), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4050), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29320] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1530), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1529), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1527), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29380] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1531), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29440] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4056), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4054), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29500] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1533), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4060), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4058), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29560] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4064), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4062), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29620] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4068), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4066), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29680] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1536), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4072), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4070), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29740] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1537), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1471), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29800] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1538), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4076), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4074), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29860] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1844), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26866] = 5, - ACTIONS(101), 1, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29920] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4080), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4078), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29980] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(4084), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4082), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30040] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4088), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1848), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26926] = 5, - ACTIONS(101), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4086), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30100] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1435), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1433), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30160] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(1553), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1551), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30220] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1545), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1021), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1852), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26986] = 5, - ACTIONS(101), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1023), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30280] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1546), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1545), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1543), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30340] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132889,7 +143553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 30, + ACTIONS(1497), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132920,235 +143584,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27046] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30400] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1440), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1854), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1856), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27106] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1469), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1860), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1442), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1862), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1467), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1864), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27226] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30460] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1443), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1866), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1868), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27286] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(4092), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133164,7 +143663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 30, + ACTIONS(4090), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133195,70 +143694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27346] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30520] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1445), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1870), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1872), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27406] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133274,7 +143718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 30, + ACTIONS(1517), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133305,125 +143749,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27466] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30580] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(4096), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4094), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1888), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27526] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30640] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(4100), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4098), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1892), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27586] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30700] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(4104), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133439,7 +143883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 30, + ACTIONS(4102), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133470,70 +143914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27646] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30760] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1450), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1898), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1900), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27706] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(4108), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133549,7 +143938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(4106), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133580,125 +143969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1452), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1902), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1904), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27826] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30820] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1453), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1910), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1912), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27886] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, + ACTIONS(4112), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133714,7 +143993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1402), 30, + ACTIONS(4110), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133745,290 +144024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27946] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1455), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1914), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1916), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1456), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3879), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(3877), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1457), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1918), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1920), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30880] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1458), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1922), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1924), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28186] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1926), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(4114), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1928), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3883), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134044,13 +144050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3881), 30, + ACTIONS(1457), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -134072,73 +144077,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30941] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(3442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3440), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1932), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28366] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [31002] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3450), 1, + anon_sym_move, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + STATE(1468), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134154,14 +144170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(937), 30, - anon_sym_SEMI, + ACTIONS(3440), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134181,19 +144193,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31073] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3450), 1, + anon_sym_move, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + STATE(1468), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134209,14 +144228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(969), 30, - anon_sym_SEMI, + ACTIONS(3440), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134236,27 +144251,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28486] = 5, - ACTIONS(101), 1, + [31142] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4118), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [31232] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4148), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4146), 17, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [31322] = 19, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3668), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3672), 1, sym_metavariable, - ACTIONS(1936), 38, + STATE(2830), 1, + sym_scoped_identifier, + STATE(3090), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3670), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3666), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134274,44 +144455,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31408] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4058), 7, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31500] = 19, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3668), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3692), 1, + sym_identifier, + ACTIONS(3698), 1, sym_metavariable, - ACTIONS(1940), 38, + STATE(2752), 1, + sym_scoped_identifier, + STATE(2987), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3696), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3694), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134329,44 +144592,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31586] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1942), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3668), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3730), 1, sym_metavariable, - ACTIONS(1944), 38, + STATE(2827), 1, + sym_scoped_identifier, + STATE(3007), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3728), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3726), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134384,44 +144659,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31672] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + ACTIONS(4158), 1, + anon_sym_COLON_COLON, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4156), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1948), 38, + ACTIONS(4154), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134442,41 +144703,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, + anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [28726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31732] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3936), 7, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31824] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4163), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(4161), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134497,41 +144826,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, + anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [28786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31882] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(4165), 1, + anon_sym_BANG, + STATE(1481), 1, + sym_field_initializer_list, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31948] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4169), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(4167), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134552,41 +144936,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, + anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [28846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32006] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(2510), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4173), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2512), 38, + ACTIONS(4171), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134607,49 +144989,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, + anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [28906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32064] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(2098), 1, + anon_sym_COLON_COLON, + ACTIONS(3416), 1, + sym_identifier, + ACTIONS(3426), 1, + sym_metavariable, + STATE(2166), 1, + sym_scoped_identifier, + STATE(2179), 1, + sym__literal_pattern, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(3887), 15, - sym__raw_string_literal_start, + ACTIONS(1165), 3, sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, sym_integer_literal, - aux_sym_string_literal_token1, sym_char_literal, - sym_metavariable, - ACTIONS(3885), 29, + ACTIONS(3424), 3, + sym_self, + sym_super, + sym_crate, + STATE(2110), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3422), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134667,40 +145066,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_const, anon_sym_default, + anon_sym_gen, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28965] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32150] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(2098), 1, + anon_sym_COLON_COLON, + ACTIONS(3404), 1, + sym_identifier, + ACTIONS(3414), 1, + sym_metavariable, + STATE(2154), 1, + sym_scoped_identifier, + STATE(2216), 1, + sym__literal_pattern, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, + ACTIONS(1165), 3, + sym_float_literal, sym_integer_literal, - sym_metavariable, - ACTIONS(2412), 32, + sym_char_literal, + ACTIONS(3412), 3, + sym_self, + sym_super, + sym_crate, + STATE(2110), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3410), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134718,46 +145133,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29024] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32236] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(2098), 1, + anon_sym_COLON_COLON, + ACTIONS(3392), 1, + sym_identifier, + ACTIONS(3402), 1, + sym_metavariable, + STATE(2129), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym__literal_pattern, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3657), 15, - sym__raw_string_literal_start, + ACTIONS(1165), 3, sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, sym_integer_literal, - aux_sym_string_literal_token1, sym_char_literal, - sym_metavariable, - ACTIONS(3655), 29, + ACTIONS(3400), 3, + sym_self, + sym_super, + sym_crate, + STATE(2110), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3398), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134775,43 +145200,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_const, anon_sym_default, + anon_sym_gen, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29083] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32322] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + ACTIONS(4175), 1, + anon_sym_LPAREN, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, + ACTIONS(4156), 9, anon_sym_LBRACK, - anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2659), 29, + ACTIONS(4154), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134829,34 +145241,497 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [29142] = 6, - ACTIONS(101), 1, + [32382] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4180), 1, + anon_sym_BANG, + ACTIONS(4182), 1, + anon_sym_COLON_COLON, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1661), 1, + sym_type_arguments, + STATE(1688), 1, + sym_parameters, + STATE(1576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3454), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3452), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32452] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1577), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3912), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32544] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4186), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [32634] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + anon_sym_BANG, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_COLON_COLON, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1661), 1, + sym_type_arguments, + STATE(1688), 1, + sym_parameters, + STATE(1579), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3432), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3428), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32704] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + anon_sym_BANG, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_COLON_COLON, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1661), 1, + sym_type_arguments, + STATE(1688), 1, + sym_parameters, + STATE(1580), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3460), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3458), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32774] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(399), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1581), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [32860] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1582), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [32950] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, - STATE(1475), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -134865,16 +145740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(3874), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -134894,150 +145766,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_as, anon_sym_else, - [29203] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33018] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3205), 12, - anon_sym_LPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3854), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4126), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3203), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29262] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1477), 2, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3876), 6, + anon_sym_CARET, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3721), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29321] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3874), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33092] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - STATE(1478), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 28, + ACTIONS(3874), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135057,254 +145887,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_as, anon_sym_else, - [29382] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33164] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3876), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 25, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33240] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(3876), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3891), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29441] = 23, - ACTIONS(29), 1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(1587), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33322] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1480), 2, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(3876), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [29536] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33406] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2438), 1, - sym_where_predicate, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1481), 2, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [29631] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3876), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33476] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3897), 2, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4192), 1, + anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - STATE(1482), 2, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 19, + ACTIONS(4190), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135320,62 +146207,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29717] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33566] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(3923), 1, + ACTIONS(4142), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + ACTIONS(4144), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1483), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 17, + ACTIONS(4194), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135393,99 +146278,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [29807] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33656] = 15, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1484), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [29873] = 13, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3903), 1, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3897), 2, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1485), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3876), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3874), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135511,48 +146341,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29947] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33734] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3897), 2, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1486), 2, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4200), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135563,66 +146404,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30019] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33820] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, + ACTIONS(4142), 1, anon_sym_DOT_DOT, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + ACTIONS(4144), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1487), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3661), 7, + ACTIONS(3966), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135630,7 +146467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135641,48 +146478,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30111] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33912] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1488), 2, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(4202), 1, + anon_sym_COLON_COLON, + STATE(1481), 1, + sym_field_initializer_list, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1459), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, - anon_sym_SEMI, + ACTIONS(1457), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135701,65 +146531,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30187] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + [33975] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + ACTIONS(3564), 1, + anon_sym_BANG, + ACTIONS(4204), 1, + sym_identifier, + STATE(1596), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1489), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_as, + ACTIONS(3440), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135770,57 +146582,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30277] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [34038] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4180), 1, + anon_sym_BANG, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4208), 1, + anon_sym_COLON_COLON, + STATE(1751), 1, + sym_field_initializer_list, + STATE(1597), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1490), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 21, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135833,104 +146637,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30359] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [34103] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3145), 1, - anon_sym_for, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3937), 1, - sym_identifier, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1917), 1, - sym_scoped_type_identifier, - STATE(1944), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1491), 2, - sym_line_comment, - sym_block_comment, - STATE(1984), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30457] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(3943), 1, - anon_sym_COLON_COLON, - ACTIONS(3945), 1, + ACTIONS(4184), 1, anon_sym_LT2, - STATE(1582), 1, + ACTIONS(4210), 1, + anon_sym_COLON_COLON, + STATE(1661), 1, sym_type_arguments, - STATE(1602), 1, + STATE(1688), 1, sym_parameters, - STATE(1492), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, + ACTIONS(3471), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135948,7 +146680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3241), 20, + ACTIONS(3469), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -135969,59 +146701,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [30527] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34170] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3602), 1, + anon_sym_LBRACE, + STATE(1599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1493), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [34228] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3530), 1, + anon_sym_BANG, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3528), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_EQ, - ACTIONS(368), 19, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3526), 22, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136030,69 +146798,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30613] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_LT2, + [34288] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3505), 1, + anon_sym_BANG, + ACTIONS(3507), 1, + anon_sym_COLON_COLON, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3503), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3501), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(3897), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [34348] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3546), 1, + anon_sym_BANG, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + STATE(1602), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3544), 17, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(3911), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3542), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1494), 2, + anon_sym_as, + anon_sym_LT2, + [34408] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3530), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3947), 17, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136103,31 +146954,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30703] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34464] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1495), 2, + ACTIONS(3834), 1, + anon_sym_COLON_COLON, + ACTIONS(4165), 1, + anon_sym_BANG, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1459), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -136136,13 +146989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(1457), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136161,68 +147015,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30771] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [34524] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1496), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3771), 7, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3440), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136233,49 +147061,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30863] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [34584] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1497), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3538), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, - anon_sym_SEMI, + ACTIONS(3540), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136294,138 +147117,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30941] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34640] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(4212), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, - sym_metavariable, - ACTIONS(3951), 1, - sym_identifier, - ACTIONS(3953), 1, - anon_sym_for, - STATE(1029), 1, - sym_scoped_type_identifier, - STATE(1051), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1297), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1498), 2, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3426), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [31039] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1499), 2, + anon_sym_SQUOTE, + anon_sym_as, + [34700] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3505), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 17, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3507), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136436,59 +147215,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31129] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34756] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1663), 1, + sym_type_arguments, + STATE(1690), 1, + sym_parameters, + STATE(1609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3515), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1500), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3513), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136498,37 +147272,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31213] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [34820] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1501), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3546), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -136536,13 +147302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, - anon_sym_SEMI, + ACTIONS(3548), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136561,65 +147327,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31283] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34876] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1663), 1, + sym_type_arguments, + STATE(1690), 1, + sym_parameters, + STATE(1611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3519), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1502), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3517), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136628,67 +147378,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31373] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34940] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3604), 1, + anon_sym_LBRACE, + STATE(1612), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1503), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3507), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136699,141 +147429,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31463] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - ACTIONS(3963), 1, - sym_identifier, - ACTIONS(3965), 1, - anon_sym_for, - STATE(1532), 1, - sym_scoped_type_identifier, - STATE(1600), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1504), 2, - sym_line_comment, - sym_block_comment, - STATE(1709), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3378), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [31561] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [34998] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + STATE(1613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3548), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1505), 2, + anon_sym_COLON_COLON, + anon_sym_as, + [35056] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1663), 1, + sym_type_arguments, + STATE(1690), 1, + sym_parameters, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3477), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_EQ, - ACTIONS(3739), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3475), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136842,27 +147537,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31653] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35120] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(4184), 1, anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, + STATE(1663), 1, sym_type_arguments, - STATE(1602), 1, + STATE(1690), 1, sym_parameters, - STATE(1506), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 17, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136880,7 +147578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3259), 20, + ACTIONS(3509), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -136901,29 +147599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31720] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35184] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(3969), 1, + ACTIONS(3640), 1, anon_sym_LBRACE, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1650), 1, - sym_field_initializer_list, - STATE(1507), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3538), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -136933,7 +147626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -136956,26 +147649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [31785] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35242] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, + ACTIONS(3538), 1, + anon_sym_BANG, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1508), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, + ACTIONS(3536), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136993,7 +147681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 20, + ACTIONS(3534), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -137014,21 +147703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31852] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [35302] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_BANG, - ACTIONS(3321), 1, + ACTIONS(4028), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(3973), 1, - sym_identifier, - STATE(1509), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 16, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137044,12 +147731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3315), 23, - anon_sym_SEMI, + ACTIONS(3982), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137069,87 +147754,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [31915] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [35359] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(887), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4214), 1, + anon_sym_SEMI, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4220), 1, + anon_sym_COMMA, + STATE(3163), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, - sym__raw_string_literal_start, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(3229), 1, - sym_identifier, - ACTIONS(3239), 1, - sym_metavariable, - STATE(2036), 1, - sym_scoped_identifier, - STATE(2080), 1, - sym__literal_pattern, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(1510), 2, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3237), 3, - sym_self, - sym_super, - sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3235), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32000] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35454] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3975), 1, + ACTIONS(4028), 1, anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1511), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137165,7 +147851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(3982), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -137190,109 +147876,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [32063] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35511] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, - sym__raw_string_literal_start, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3227), 1, - sym_metavariable, - STATE(2048), 1, - sym_scoped_identifier, - STATE(2091), 1, - sym__literal_pattern, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(1512), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3225), 3, - sym_self, - sym_super, - sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3223), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32148] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1513), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 17, + ACTIONS(3538), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3253), 20, + ACTIONS(3540), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -137306,161 +147916,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [32215] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35566] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, - sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32300] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, + ACTIONS(3948), 1, + anon_sym_BANG, + ACTIONS(3950), 1, anon_sym_COLON_COLON, - ACTIONS(3603), 1, - sym_metavariable, - STATE(2726), 1, - sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1515), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32385] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137470,10 +147954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 25, + ACTIONS(3440), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137493,72 +147977,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32441] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35625] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - STATE(1517), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3530), 16, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_BANG, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3977), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [35680] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1518), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3505), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137575,7 +148053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(3507), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137600,37 +148078,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [32557] = 7, - ACTIONS(101), 1, + [35735] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(4222), 1, + sym_identifier, + ACTIONS(4224), 1, + anon_sym_fn, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2758), 1, + sym_scoped_type_identifier, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3652), 1, + sym_function_modifiers, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3634), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [35824] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - STATE(1519), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3293), 17, + ACTIONS(3546), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3291), 22, + ACTIONS(3548), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137645,31 +148185,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [32617] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35879] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1520), 2, + ACTIONS(3984), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 17, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137680,14 +148217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 20, + ACTIONS(3982), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -137701,29 +148237,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32681] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35936] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137733,10 +148270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 25, + ACTIONS(3798), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137757,26 +148295,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32737] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35991] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1522), 2, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137786,9 +148320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 24, + ACTIONS(3624), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137811,22 +148346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [32795] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36046] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137836,10 +148370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 25, + ACTIONS(3684), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137860,26 +148395,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32851] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36101] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1524), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137889,9 +148420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(3782), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137914,22 +148446,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [32909] = 5, - ACTIONS(101), 1, + [36156] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(4226), 1, + sym_identifier, + ACTIONS(4228), 1, + anon_sym_fn, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2686), 1, + sym_scoped_type_identifier, + STATE(3509), 1, + sym_function_modifiers, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3634), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [36245] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + ACTIONS(4230), 1, + anon_sym_else, + STATE(1840), 1, + sym_else_clause, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(1407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137939,10 +148541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 25, + ACTIONS(1405), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137962,26 +148564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32965] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36304] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1526), 2, + ACTIONS(4180), 1, + anon_sym_BANG, + ACTIONS(4232), 1, + anon_sym_COLON_COLON, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 17, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137992,14 +148588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 20, + ACTIONS(1457), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138013,26 +148608,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33029] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36363] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_BANG, - ACTIONS(3273), 1, + ACTIONS(3984), 1, anon_sym_COLON_COLON, - STATE(1527), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138043,17 +148638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 22, + ACTIONS(3982), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138065,102 +148658,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [33089] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36420] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3817), 10, - anon_sym_LPAREN, + ACTIONS(871), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3854), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4234), 1, + anon_sym_SEMI, + ACTIONS(4236), 1, + anon_sym_COMMA, + STATE(3143), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3815), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33145] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_BANG, - ACTIONS(3313), 1, - anon_sym_COLON_COLON, - STATE(1529), 2, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36515] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4238), 1, + anon_sym_SEMI, + ACTIONS(4240), 1, + anon_sym_COMMA, + STATE(3184), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3307), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138169,31 +148806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33205] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36610] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1530), 2, + STATE(1496), 1, + sym_label, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 17, + ACTIONS(3662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138204,16 +148829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 20, + ACTIONS(3660), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138225,105 +148849,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [33269] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36667] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_LPAREN, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 9, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3854), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1528), 1, + sym_block, + STATE(3714), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3977), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33327] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1532), 2, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 17, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36762] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1494), 1, + sym_block, + STATE(3714), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138332,50 +148997,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33391] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36857] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_BANG, - ACTIONS(3281), 1, - anon_sym_COLON_COLON, - STATE(1533), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3277), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(480), 1, + sym_block, + STATE(3778), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3275), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138384,50 +149067,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33451] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36952] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1534), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(498), 1, + sym_block, + STATE(3778), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37047] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1845), 1, + sym_block, + STATE(3779), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1643), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138438,48 +149209,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33511] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37142] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3987), 1, - anon_sym_COLON_COLON, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1851), 1, + sym_block, + STATE(3779), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138490,78 +149279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33571] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37237] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3647), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3645), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33627] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3653), 1, - anon_sym_BANG, - ACTIONS(3989), 1, + ACTIONS(4116), 1, anon_sym_COLON_COLON, - STATE(1537), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138577,7 +149305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 24, + ACTIONS(3440), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -138602,24 +149330,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [33687] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37294] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1538), 2, + ACTIONS(4270), 1, + anon_sym_COLON_COLON, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -138629,10 +149356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 24, + ACTIONS(1457), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138652,130 +149379,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [33745] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37351] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3993), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(3991), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3636), 1, anon_sym_default, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, anon_sym_fn, - anon_sym_for, - anon_sym_impl, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2872), 1, + sym_scoped_type_identifier, + STATE(3514), 1, + sym_function_modifiers, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33801] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1540), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3997), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3995), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(1141), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - [33857] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4001), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3999), 31, + ACTIONS(3634), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138793,53 +149448,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33913] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37440] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 1, - sym_label, - STATE(1542), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(422), 1, + sym_block, + STATE(3621), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3340), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1648), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138850,74 +149518,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33970] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37535] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, + ACTIONS(1011), 1, anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4003), 1, - anon_sym_SEMI, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4009), 1, + ACTIONS(4276), 1, + anon_sym_SEMI, + ACTIONS(4278), 1, anon_sym_COMMA, - STATE(2960), 1, + STATE(3147), 1, aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1543), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138928,90 +149588,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34065] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37630] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1647), 1, - sym_label, - STATE(1544), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(401), 1, + sym_block, + STATE(3621), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3340), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4268), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34124] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1545), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3281), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139022,27 +149658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [34179] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37725] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - STATE(1546), 2, + ACTIONS(4280), 1, + anon_sym_SQUOTE, + STATE(1747), 1, + sym_label, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139058,7 +149686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3660), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139082,22 +149710,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34238] = 5, - ACTIONS(101), 1, + [37784] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(4282), 1, + sym_identifier, + ACTIONS(4284), 1, + anon_sym_fn, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2868), 1, + sym_scoped_type_identifier, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(3814), 1, + sym_function_modifiers, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3634), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [37873] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139107,7 +149801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(1441), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139130,21 +149824,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34293] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [37927] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, - anon_sym_BANG, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - STATE(1548), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3612), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139160,7 +149850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 23, + ACTIONS(3610), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139183,67 +149873,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [34352] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37981] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4019), 1, - anon_sym_SEMI, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1549), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4194), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139254,15 +149939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34447] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [38067] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3463), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139278,10 +149966,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3461), 25, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139302,68 +149989,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34502] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38123] = 15, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(469), 1, - sym_block, - STATE(3590), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1551), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3876), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139374,18 +150042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34597] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38197] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1552), 2, + ACTIONS(4292), 1, + anon_sym_DASH_GT, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139401,7 +150075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(3790), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139425,17 +150099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34654] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38253] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_COLON_COLON, - STATE(1553), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139451,10 +150123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 24, + ACTIONS(3702), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139474,21 +150146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [34711] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38307] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4051), 1, - anon_sym_else, - STATE(1766), 1, - sym_else_clause, - STATE(1554), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 15, + ACTIONS(3630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139504,7 +150172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1194), 23, + ACTIONS(3628), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139527,67 +150195,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [34770] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38361] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3734), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4053), 1, - anon_sym_SEMI, - ACTIONS(4055), 1, - anon_sym_COMMA, - STATE(2777), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1555), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3732), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139598,15 +150238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34865] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [38415] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139622,10 +150270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 25, + ACTIONS(3688), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139646,17 +150293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_as, - [34920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38469] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1557), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139672,10 +150319,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3404), 25, + ACTIONS(3736), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139698,17 +150344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34975] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38523] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, - STATE(1558), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139724,10 +150368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(3786), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139747,17 +150391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - [35032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38577] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1559), 2, + ACTIONS(4294), 1, + anon_sym_DASH_GT, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139773,10 +150419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3408), 25, + ACTIONS(3740), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139797,68 +150442,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35087] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38633] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(376), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3876), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139869,22 +150492,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35182] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38701] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1561), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139894,7 +150523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(3616), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139919,136 +150548,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35237] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38755] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1127), 1, - sym_block, - STATE(3539), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1562), 2, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3515), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35332] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1777), 1, - sym_block, - STATE(3591), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3513), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140059,22 +150591,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35427] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [38811] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1564), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140084,7 +150622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 24, + ACTIONS(1437), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140107,19 +150645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35482] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [38865] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, - STATE(1565), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(1447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140135,10 +150671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(1445), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140158,138 +150694,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35539] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [38919] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1772), 1, - sym_block, - STATE(3591), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1566), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(1451), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35634] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(394), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140300,18 +150737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [38973] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1568), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140327,7 +150769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(1433), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140351,66 +150793,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35786] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [39027] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4059), 1, - anon_sym_SEMI, - ACTIONS(4061), 1, - anon_sym_COMMA, - STATE(2788), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1569), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4296), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140421,17 +150860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35881] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39115] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 1, - anon_sym_COLON_COLON, - STATE(1570), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140447,10 +150884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(3620), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140470,68 +150907,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [35938] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39169] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4200), 2, anon_sym_EQ, - ACTIONS(4047), 1, anon_sym_DOT_DOT, - STATE(1319), 1, - sym_block, - STATE(3539), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1571), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4198), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140542,132 +150969,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36033] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39251] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(453), 1, - sym_block, - STATE(3590), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1572), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36128] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3876), 5, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1573), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3771), 3, + anon_sym_DOT_DOT, + ACTIONS(3874), 21, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140678,197 +151023,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36216] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2790), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + anon_sym_SQUOTE, + [39323] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3442), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36308] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3440), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [36394] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140879,129 +151073,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36486] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3955), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [36572] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39379] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3876), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1578), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3874), 17, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141012,54 +151138,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36664] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39457] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, + ACTIONS(399), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - STATE(1579), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 15, + ACTIONS(397), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -141075,191 +151204,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [36746] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39539] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1580), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 7, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4252), 1, anon_sym_AMP_AMP, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [36814] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3354), 15, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3352), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36868] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1582), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 15, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3457), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36922] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1583), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3471), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3469), 24, + ACTIONS(341), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141270,23 +151268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36976] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [39625] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1584), 2, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141302,7 +151295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3336), 24, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141325,64 +151318,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [37030] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39681] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1585), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4118), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141393,15 +151383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37118] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [39767] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1586), 2, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141412,14 +151405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 22, + ACTIONS(3517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141434,45 +151425,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [37172] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39823] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1242), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1240), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4130), 1, anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4300), 1, + anon_sym_RPAREN, + ACTIONS(4302), 1, + anon_sym_COMMA, + STATE(2907), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141483,54 +151502,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [37226] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39915] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4023), 2, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(3876), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1588), 2, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 16, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141542,71 +151561,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37298] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39995] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4073), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1589), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4058), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141617,54 +151630,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37390] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40083] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(959), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3669), 2, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - STATE(1590), 2, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141675,20 +151698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37468] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40175] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - STATE(1591), 2, + ACTIONS(4306), 1, + anon_sym_DASH_GT, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141704,7 +151724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 23, + ACTIONS(3746), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141728,121 +151748,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37524] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40231] = 24, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4075), 1, - sym_identifier, - ACTIONS(4077), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2509), 1, - sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3370), 1, - sym_function_modifiers, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(1592), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [37612] = 18, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(965), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3669), 2, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4308), 1, + anon_sym_COMMA, + STATE(2946), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - STATE(1593), 2, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141853,20 +151816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37692] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40323] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4079), 1, + ACTIONS(4310), 1, anon_sym_DASH_GT, - STATE(1594), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141882,7 +151842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(3752), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141906,20 +151866,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37748] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40379] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1595), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -141928,13 +151898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1206), 24, + ACTIONS(3874), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141953,19 +151920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [37802] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40445] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, + ACTIONS(4290), 1, anon_sym_COLON_COLON, - STATE(1596), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141981,7 +151947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142005,17 +151971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37858] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40501] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, + ACTIONS(4312), 1, anon_sym_COLON_COLON, - STATE(1597), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142031,7 +151997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142055,22 +152021,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37914] = 6, - ACTIONS(101), 1, + [40557] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4192), 1, + anon_sym_EQ, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4190), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [40643] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4085), 1, - anon_sym_DASH_GT, - STATE(1598), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142079,13 +152117,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3521), 23, + ACTIONS(3874), 21, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40707] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3854), 1, anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3876), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142104,16 +152196,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [37970] = 5, - ACTIONS(101), 1, + anon_sym_SQUOTE, + [40777] = 18, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4318), 1, + anon_sym_RBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4324), 1, + anon_sym_COMMA, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(2954), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [40857] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3402), 15, + ACTIONS(3503), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142124,12 +152278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3400), 24, + ACTIONS(3501), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142144,27 +152300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38024] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [40911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1600), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142180,7 +152332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 23, + ACTIONS(3760), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142203,61 +152355,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [38080] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40965] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4332), 1, + anon_sym_RPAREN, + ACTIONS(4334), 1, + anon_sym_COMMA, + STATE(2891), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1601), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142268,40 +152425,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38166] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41057] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4087), 1, - anon_sym_DASH_GT, - STATE(1602), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3535), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3533), 23, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3936), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142312,22 +152491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38222] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41145] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + ACTIONS(4336), 1, + anon_sym_DASH_GT, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, + ACTIONS(3766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142343,7 +152517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1232), 24, + ACTIONS(3764), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142367,89 +152541,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38276] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41201] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_LPAREN, - STATE(1652), 1, - sym_arguments, - STATE(1604), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4338), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3392), 22, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1605), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3443), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142460,38 +152609,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [38388] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41293] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1606), 2, + ACTIONS(4340), 1, + anon_sym_COLON_COLON, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(1459), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142500,10 +152633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(1457), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142522,63 +152658,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38454] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [41349] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1607), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3966), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4091), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3915), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142589,17 +152725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38542] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41437] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1608), 2, + ACTIONS(4342), 1, + anon_sym_LPAREN, + STATE(1753), 1, + sym_arguments, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142615,8 +152753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, - anon_sym_LPAREN, + ACTIONS(3678), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142639,15 +152776,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38598] = 5, - ACTIONS(101), 1, + [41495] = 24, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(931), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4344), 1, + anon_sym_COMMA, + STATE(2986), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41587] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1609), 2, + ACTIONS(4346), 1, + anon_sym_DASH_GT, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142663,7 +152870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 24, + ACTIONS(3770), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142687,63 +152894,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38652] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41643] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1610), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4093), 3, + ACTIONS(4348), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142754,37 +152960,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41731] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, + ACTIONS(3912), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41819] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3370), 24, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4186), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142795,25 +153090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [38794] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41905] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4095), 1, - anon_sym_COLON_COLON, - STATE(1612), 2, + ACTIONS(4350), 1, + anon_sym_DASH_GT, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142829,7 +153117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3776), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142853,83 +153141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38850] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41961] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4097), 1, - sym_identifier, - ACTIONS(4099), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2603), 1, - sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(3484), 1, - sym_function_modifiers, - STATE(1613), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [38938] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4101), 1, - anon_sym_DASH_GT, - STATE(1614), 2, + ACTIONS(4352), 1, + anon_sym_COLON_COLON, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142945,7 +153167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3527), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142969,58 +153191,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38994] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42017] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3949), 1, + ACTIONS(4148), 1, anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1615), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 13, + ACTIONS(4146), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -143034,100 +153256,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [39080] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42103] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1616), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1617), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143146,116 +153311,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [39220] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42170] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2578), 1, - sym_scoped_type_identifier, - STATE(3330), 1, - sym_function_modifiers, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(1618), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [39308] = 15, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4023), 2, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4368), 1, + anon_sym_RBRACE, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1619), 2, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143266,94 +153377,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39382] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42259] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(287), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39438] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1621), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3366), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143364,25 +153443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [39492] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42348] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4109), 1, - anon_sym_DASH_GT, - STATE(1622), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143398,7 +153467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(3678), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143422,17 +153491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39548] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42401] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - anon_sym_DASH_GT, - STATE(1623), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143448,7 +153515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3356), 23, + ACTIONS(3966), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143472,15 +153539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39604] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42454] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1624), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143496,7 +153563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3418), 24, + ACTIONS(3830), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143519,84 +153586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [39658] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42507] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39744] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, - anon_sym_DASH_GT, - STATE(1626), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143612,7 +153611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3447), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143636,56 +153635,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39800] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42560] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1627), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143696,67 +153676,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39882] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [42613] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4115), 1, - anon_sym_RPAREN, - ACTIONS(4117), 1, - anon_sym_COMMA, - STATE(2830), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1628), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143767,29 +153749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39974] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42702] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1629), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4096), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143798,10 +153771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(4094), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143820,45 +153796,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40038] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [42755] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1630), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4088), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(4086), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143877,16 +153844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [42808] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1631), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(4044), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143902,7 +153869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 24, + ACTIONS(4042), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143926,65 +153893,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40162] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42861] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1331), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4119), 1, - anon_sym_RPAREN, - ACTIONS(4121), 1, + ACTIONS(4374), 1, anon_sym_COMMA, - STATE(3004), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1632), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143995,17 +153959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40254] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42950] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144021,7 +153983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3954), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144045,83 +154007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40310] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43003] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3661), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40398] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144137,7 +154031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3958), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144161,81 +154055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40454] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43056] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4127), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1636), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40543] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1637), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144251,7 +154079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3970), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144275,60 +154103,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40596] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43109] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + STATE(1731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3906), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1638), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4129), 3, - anon_sym_LBRACE, + anon_sym_DOT_DOT, + ACTIONS(3904), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144339,15 +154147,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40681] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43168] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(4056), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144363,7 +154178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 23, + ACTIONS(4054), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144387,15 +154202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40734] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43221] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, + ACTIONS(4080), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144411,7 +154226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3633), 23, + ACTIONS(4078), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144435,15 +154250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40787] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43274] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3922), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144457,13 +154278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3920), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144483,15 +154301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43333] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144507,7 +154325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 23, + ACTIONS(3924), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144531,21 +154349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40893] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43386] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1643), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 14, + ACTIONS(4048), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144559,10 +154371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3787), 21, + ACTIONS(4046), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144582,21 +154397,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40952] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43439] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1644), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 14, + ACTIONS(4052), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144610,10 +154419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3803), 21, + ACTIONS(4050), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144633,56 +154445,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41011] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43492] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4036), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1645), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4034), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144693,62 +154486,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41092] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [43545] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4268), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1646), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4376), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144759,15 +154557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41177] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43630] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144783,7 +154581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 23, + ACTIONS(3962), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144807,60 +154605,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41230] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43683] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4378), 1, + anon_sym_SEMI, + ACTIONS(4380), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3933), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144871,60 +154671,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41315] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43772] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + ACTIONS(4382), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3955), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144935,85 +154736,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43859] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3561), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(399), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3559), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3571), 23, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145024,22 +154796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43940] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 15, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145055,7 +154822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3575), 23, + ACTIONS(3866), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145079,15 +154846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43993] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145103,7 +154870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3605), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145127,103 +154894,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41612] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44046] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4398), 1, anon_sym_DOT_DOT, - ACTIONS(4163), 1, - anon_sym_SEMI, - ACTIONS(4165), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4400), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1654), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41701] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1655), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3773), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3771), 23, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145234,22 +154958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41754] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44131] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1656), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145265,7 +154982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3974), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145289,15 +155006,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41807] = 5, - ACTIONS(101), 1, + [44184] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4148), 1, + anon_sym_EQ, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4396), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4146), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44269] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1657), 2, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4396), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4118), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44354] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4406), 1, + anon_sym_CARET, + ACTIONS(4408), 1, + anon_sym_AMP, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(4414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(4426), 1, + anon_sym_DOT_DOT, + ACTIONS(3936), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4428), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1750), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4422), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4418), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44441] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 15, + ACTIONS(3934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145313,7 +155223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3783), 23, + ACTIONS(3932), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145337,15 +155247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44494] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1658), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(4068), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145361,7 +155271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 23, + ACTIONS(4066), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145385,21 +155295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41913] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44547] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1659), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 14, + ACTIONS(4100), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145413,10 +155317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3807), 21, + ACTIONS(4098), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145436,62 +155343,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41972] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44600] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(286), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4032), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1660), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4030), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145502,15 +155384,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42061] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44653] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(3998), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145526,7 +155415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 23, + ACTIONS(3996), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145550,15 +155439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42114] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44706] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1662), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(4006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145574,7 +155463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(4004), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145598,15 +155487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42167] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44759] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3388), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145622,7 +155511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 23, + ACTIONS(3390), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145646,15 +155535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44812] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(3938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145670,7 +155559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3617), 23, + ACTIONS(3936), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145694,23 +155583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42273] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44865] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - STATE(1665), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(3669), 14, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145724,10 +155605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3513), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145746,15 +155630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [44918] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1666), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145770,7 +155655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3649), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145794,15 +155679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, + ACTIONS(3942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145818,7 +155703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3775), 23, + ACTIONS(3940), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145842,15 +155727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45024] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1668), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145866,7 +155751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(3517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145890,15 +155775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45077] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 15, + ACTIONS(4072), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145914,7 +155799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3547), 23, + ACTIONS(4070), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145938,15 +155823,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42546] = 5, - ACTIONS(101), 1, + [45130] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + ACTIONS(4430), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3468), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [45207] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 15, + ACTIONS(3994), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145960,13 +155911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 23, + ACTIONS(3992), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145986,61 +155934,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42599] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45266] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4426), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(3912), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4428), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4167), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1671), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4418), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146051,37 +155999,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45353] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3663), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(4406), 1, anon_sym_CARET, + ACTIONS(4408), 1, anon_sym_AMP, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(4414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_DOT_DOT, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3661), 23, + ACTIONS(4428), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1767), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4422), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4186), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146092,44 +156063,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42739] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45438] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4432), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146140,69 +156128,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42792] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45525] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(288), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + ACTIONS(4434), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146213,20 +156193,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45612] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146235,13 +156224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146260,36 +156246,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42934] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45675] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4408), 1, + anon_sym_AMP, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3747), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146308,36 +156302,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42987] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45744] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1677), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 15, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3751), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146356,36 +156357,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45811] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1678), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4406), 1, + anon_sym_CARET, + ACTIONS(4408), 1, + anon_sym_AMP, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3876), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3763), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146404,36 +156414,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43093] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45882] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1679), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3781), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4406), 1, anon_sym_CARET, + ACTIONS(4408), 1, anon_sym_AMP, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(3876), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3779), 23, + STATE(1774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4422), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146446,43 +156472,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45959] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3793), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4406), 1, anon_sym_CARET, + ACTIONS(4408), 1, anon_sym_AMP, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(3876), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3791), 23, + STATE(1775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4422), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -146494,27 +156533,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43199] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46038] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146523,13 +156567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146548,63 +156589,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43252] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46103] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1174), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4192), 1, + anon_sym_EQ, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4426), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4428), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1682), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4190), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146615,35 +156653,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43341] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46188] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4406), 1, + anon_sym_CARET, + ACTIONS(4408), 1, + anon_sym_AMP, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(4414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_DOT_DOT, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4428), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4422), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4194), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46273] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4406), 1, anon_sym_CARET, + ACTIONS(4408), 1, anon_sym_AMP, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3876), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146662,16 +156775,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + [46346] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, anon_sym_as, - [43394] = 5, - ACTIONS(101), 1, + ACTIONS(4406), 1, + anon_sym_CARET, + ACTIONS(4408), 1, + anon_sym_AMP, + ACTIONS(4410), 1, + anon_sym_PIPE, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(4414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4424), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4422), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [46427] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4436), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46512] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(3804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146687,7 +156925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 23, + ACTIONS(3802), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146711,15 +156949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43447] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46565] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3883), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146735,7 +156973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3881), 23, + ACTIONS(3806), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146759,15 +156997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46618] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146783,7 +157021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 23, + ACTIONS(3912), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146807,15 +157045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46671] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1687), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146831,7 +157069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3689), 23, + ACTIONS(3822), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146855,15 +157093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46724] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(3860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146879,7 +157117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 23, + ACTIONS(3858), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146903,15 +157141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46777] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146927,7 +157165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3555), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146951,60 +157189,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43712] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46830] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4426), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4058), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4428), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4171), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4418), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147015,37 +157254,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43797] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46917] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3707), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4438), 1, + anon_sym_RPAREN, + ACTIONS(4440), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3705), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147056,22 +157320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43850] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47006] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, + ACTIONS(4104), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147087,7 +157344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3823), 23, + ACTIONS(4102), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147111,15 +157368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43903] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47059] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, + ACTIONS(3882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147135,7 +157392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3609), 23, + ACTIONS(3880), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147159,15 +157416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43956] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47112] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3615), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147183,7 +157440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3613), 23, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147207,62 +157464,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44009] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47165] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4173), 1, + ACTIONS(4442), 1, anon_sym_SEMI, - ACTIONS(4175), 1, + ACTIONS(4444), 1, anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1695), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147273,15 +157530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44098] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47254] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1696), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147297,7 +157554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 23, + ACTIONS(3870), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147321,61 +157578,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44151] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47307] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3902), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4177), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1697), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3900), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147386,61 +157619,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44238] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47360] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4040), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4038), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4179), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1698), 2, + anon_sym_as, + [47413] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4010), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4008), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147451,61 +157715,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44325] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47466] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4426), 1, anon_sym_DOT_DOT, - ACTIONS(4183), 1, - anon_sym_AMP_AMP, - ACTIONS(4023), 2, + ACTIONS(3966), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4428), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1699), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4418), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147516,15 +157787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44412] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47553] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(3846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147540,7 +157811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 23, + ACTIONS(3844), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147564,15 +157835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44465] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47606] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147588,7 +157859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3862), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147612,127 +157883,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44518] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47659] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4185), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3930), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44607] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4203), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3928), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147743,62 +157924,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44694] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47712] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3886), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1704), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3884), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147809,15 +157972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44783] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47765] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147833,7 +158003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3621), 23, + ACTIONS(3888), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147857,15 +158027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44836] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47818] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(3894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147881,7 +158051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 23, + ACTIONS(3892), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147905,15 +158075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44889] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47871] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(3898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147929,7 +158099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 23, + ACTIONS(3896), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147953,15 +158123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44942] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47924] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(3910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147977,7 +158147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(3908), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148001,15 +158171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44995] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47977] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(4112), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148025,7 +158195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 23, + ACTIONS(4110), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148049,125 +158219,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45048] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48030] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4209), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3980), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45133] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(3739), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1711), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4203), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3978), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148178,29 +158260,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45220] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48083] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1712), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3990), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148209,10 +158289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3988), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148231,44 +158314,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45283] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48136] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1713), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1599), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1601), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148287,43 +158362,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45352] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48189] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1714), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1495), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1493), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148342,45 +158410,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45419] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48242] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1715), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1511), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1509), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148399,52 +158458,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45490] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48295] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1515), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1716), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1513), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148457,56 +158500,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45567] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48348] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1523), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1717), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1521), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -148518,32 +158548,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45646] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48401] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1718), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1549), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148552,10 +158577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1547), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148574,60 +158602,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45711] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48454] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4446), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1719), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148638,60 +158669,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45796] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48543] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(3936), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1720), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 12, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48630] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4018), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4016), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148702,46 +158775,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45881] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48683] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1721), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1507), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1505), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148760,56 +158829,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45954] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [48736] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, + ACTIONS(4152), 1, anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(3912), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - STATE(1722), 2, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148820,39 +158895,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [46035] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48823] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 23, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4186), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148863,22 +158959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46088] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48908] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, + ACTIONS(1529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148894,7 +158983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 23, + ACTIONS(1527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148918,15 +159007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46141] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48961] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148942,7 +159031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(1471), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148966,15 +159055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46194] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49014] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(1545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148990,7 +159079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(1543), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149014,61 +159103,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46247] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49067] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4211), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3661), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4448), 1, + anon_sym_RPAREN, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1727), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149079,15 +159169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49156] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149103,7 +159193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 23, + ACTIONS(3826), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149127,20 +159217,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49209] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149149,13 +159248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3735), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149174,36 +159270,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49272] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149222,36 +159326,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49341] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3876), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3743), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149270,36 +159383,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49412] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3769), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(3876), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3767), 23, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 16, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149312,68 +159441,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46599] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49489] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3876), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4217), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1733), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3874), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149384,20 +159502,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49568] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149406,13 +159536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149431,36 +159558,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46739] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49633] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + ACTIONS(4192), 1, + anon_sym_EQ, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4396), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4190), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49718] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4396), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4194), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49803] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3876), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149479,16 +159744,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46792] = 5, - ACTIONS(101), 1, + [49876] = 19, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4396), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49957] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149504,7 +159830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 23, + ACTIONS(3810), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149528,15 +159854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46845] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50010] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149552,7 +159878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 23, + ACTIONS(3814), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149576,15 +159902,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46898] = 5, - ACTIONS(101), 1, + [50063] = 22, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4058), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50150] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149600,7 +159991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 23, + ACTIONS(1485), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149624,15 +160015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46951] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50203] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149648,7 +160039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149672,81 +160063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47004] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50256] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, - anon_sym_DOT_DOT, - STATE(388), 1, - sym_match_block, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4209), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1740), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4203), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47093] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(1546), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149762,7 +160087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1548), 23, + ACTIONS(1497), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149786,15 +160111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50309] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1742), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, + ACTIONS(4108), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149810,7 +160135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1402), 23, + ACTIONS(4106), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149834,15 +160159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47199] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50362] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(1376), 15, + ACTIONS(4076), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149858,7 +160183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1374), 23, + ACTIONS(4074), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149882,15 +160207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47252] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50415] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 15, + ACTIONS(1465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149906,7 +160231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1382), 23, + ACTIONS(1463), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149930,15 +160255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47305] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50468] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(1422), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149954,7 +160279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1420), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149978,80 +160303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47358] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50521] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1746), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47445] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150067,7 +160327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 23, + ACTIONS(1517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150091,62 +160351,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47498] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50574] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3966), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150157,60 +160416,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47587] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50661] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4022), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1749), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4020), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150221,15 +160457,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50714] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(1400), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150245,7 +160488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1398), 23, + ACTIONS(1481), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150269,80 +160512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47725] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50767] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3739), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1751), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47812] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150358,7 +160536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 23, + ACTIONS(1539), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150382,29 +160560,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47865] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50820] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - STATE(1753), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(1021), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150413,10 +160582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1023), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150435,44 +160607,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47928] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [50873] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1754), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(975), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(977), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150491,43 +160655,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47997] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [50926] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1755), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(1503), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1501), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150546,45 +160703,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48064] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [50979] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1756), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(951), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(953), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150603,52 +160751,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48135] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51032] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, - anon_sym_EQ, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4452), 1, + anon_sym_EQ, + ACTIONS(3936), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - STATE(1757), 2, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 16, + ACTIONS(4450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [51119] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1857), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(955), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(957), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150661,57 +160858,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48212] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51172] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, - anon_sym_EQ, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4452), 1, + anon_sym_EQ, + ACTIONS(3912), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - STATE(1758), 2, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + ACTIONS(4450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150722,32 +160930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48291] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51259] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1759), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(1533), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150756,10 +160952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1531), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150778,60 +160977,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48356] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51312] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1013), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1760), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3947), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1015), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150842,60 +161019,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48441] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51365] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1469), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1761), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1467), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150906,48 +161067,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48526] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51418] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4398), 1, + anon_sym_DOT_DOT, + ACTIONS(4452), 1, + anon_sym_EQ, + ACTIONS(4058), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1762), 2, + ACTIONS(4396), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4394), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150958,62 +161139,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48599] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51505] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3913), 2, - anon_sym_EQ, + ACTIONS(4398), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4452), 1, + anon_sym_EQ, + ACTIONS(3966), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - STATE(1763), 2, + ACTIONS(4400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151024,17 +161204,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51592] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1764), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 15, + ACTIONS(3876), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151048,13 +161234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3587), 23, + ACTIONS(3874), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151073,16 +161256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48733] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51653] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, + ACTIONS(1053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151098,7 +161280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3591), 23, + ACTIONS(1055), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151122,15 +161304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51706] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(1388), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151146,7 +161328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1386), 23, + ACTIONS(1047), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151170,37 +161352,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48839] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51759] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1179), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151211,68 +161418,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48892] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51848] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3661), 2, + ACTIONS(4454), 1, anon_sym_RPAREN, + ACTIONS(4456), 1, anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1768), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151283,37 +161484,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48979] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51937] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(293), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1424), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151324,22 +161550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52026] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151355,7 +161574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 23, + ACTIONS(3916), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151379,37 +161598,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52079] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4406), 1, anon_sym_CARET, + ACTIONS(4408), 1, anon_sym_AMP, + ACTIONS(4410), 1, anon_sym_PIPE, + ACTIONS(4412), 1, + anon_sym_AMP_AMP, + ACTIONS(4414), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(4458), 1, + anon_sym_LBRACE, + ACTIONS(4460), 1, + anon_sym_DOT_DOT, + STATE(1537), 1, + sym_match_block, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4462), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4422), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4418), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151420,22 +161664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49138] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52168] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151451,7 +161688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1350), 23, + ACTIONS(3944), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151475,37 +161712,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49191] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52221] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1354), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151516,44 +161778,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49244] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52310] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1364), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1362), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4464), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151564,22 +161843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49297] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52397] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 15, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151595,7 +161867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1378), 23, + ACTIONS(3982), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151619,37 +161891,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49350] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52450] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1087), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1390), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1876), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151660,22 +161957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49403] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52539] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(1430), 15, + ACTIONS(4084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151691,7 +161981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1428), 23, + ACTIONS(4082), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151715,15 +162005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49456] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52592] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, + ACTIONS(4092), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151739,7 +162029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(937), 23, + ACTIONS(4090), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151763,15 +162053,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49509] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52645] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 15, + ACTIONS(3852), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151785,13 +162081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(969), 23, + ACTIONS(3848), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151811,37 +162104,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49562] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52704] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4466), 1, + anon_sym_SEMI, + ACTIONS(4468), 1, + anon_sym_else, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1366), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151852,44 +162170,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49615] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52793] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(753), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [52882] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1347), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(755), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151900,69 +162302,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49668] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52971] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4225), 1, + ACTIONS(4470), 1, anon_sym_SEMI, - ACTIONS(4227), 1, + ACTIONS(4472), 1, anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1782), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151973,61 +162368,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49757] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53060] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4474), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152038,158 +162434,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49844] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53149] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1784), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(767), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(769), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49897] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1444), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1442), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49950] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4233), 1, - anon_sym_RBRACE, - ACTIONS(4235), 1, + ACTIONS(4374), 1, anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4476), 1, + anon_sym_RPAREN, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152200,102 +162500,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50039] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53238] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(3739), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4478), 1, + anon_sym_SEMI, + ACTIONS(4480), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1787), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1788), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(771), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(773), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152306,116 +162566,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50179] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53327] = 23, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1789), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1322), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1320), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50232] = 22, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(3661), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4482), 1, + anon_sym_SEMI, + ACTIONS(4484), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1790), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152426,85 +162632,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50319] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53416] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(985), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4486), 1, + anon_sym_RBRACE, + ACTIONS(4488), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(987), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50372] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(991), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152515,69 +162698,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50425] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53505] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4237), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4490), 1, + anon_sym_SEMI, + ACTIONS(4492), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152588,62 +162764,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50514] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53594] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(292), 1, + ACTIONS(301), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1794), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152654,123 +162830,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50603] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53683] = 19, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4245), 1, - anon_sym_RBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(2852), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [50682] = 23, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(399), 2, anon_sym_EQ, - ACTIONS(4221), 1, anon_sym_DOT_DOT, - ACTIONS(4259), 1, - anon_sym_LBRACE, - STATE(1130), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(397), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152781,62 +162890,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50771] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53764] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(294), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4426), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4428), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1797), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152847,61 +162956,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50860] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53849] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4460), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4494), 1, + anon_sym_LBRACE, + STATE(477), 1, + sym_match_block, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4261), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1798), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4418), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152912,61 +163022,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50947] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53938] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4148), 1, + anon_sym_EQ, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4426), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4428), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4263), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1799), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4146), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152977,62 +163086,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51034] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54023] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1051), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4426), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4428), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4118), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153043,62 +163150,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51123] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54108] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(337), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4265), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(4267), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153109,62 +163216,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51212] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54197] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(296), 1, + ACTIONS(305), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153175,62 +163282,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51301] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54286] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1168), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4496), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1803), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153241,62 +163348,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51390] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54375] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(309), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4269), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(4271), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153307,62 +163414,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51479] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54464] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4460), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4273), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4498), 1, + anon_sym_LBRACE, + STATE(1823), 1, + sym_match_block, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4418), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153373,62 +163480,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51568] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54553] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1806), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153439,62 +163546,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51657] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54642] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(4275), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1807), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153505,62 +163612,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51746] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54731] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4277), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(4279), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153571,62 +163678,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51835] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54820] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4500), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153637,62 +163744,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51924] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54909] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(300), 1, + ACTIONS(317), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1810), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153703,56 +163810,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52013] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54998] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(370), 2, + ACTIONS(4152), 1, anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - STATE(1811), 2, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(368), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153763,62 +163876,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [52094] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55087] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4504), 1, + anon_sym_AMP_AMP, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4268), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1812), 2, + ACTIONS(4502), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153829,62 +163941,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52179] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55174] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4285), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153895,60 +164007,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52268] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55263] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4506), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1814), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3933), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153959,60 +164073,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52353] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55352] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(325), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3955), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154023,62 +164139,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52438] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55441] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(302), 1, + ACTIONS(327), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1816), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154089,61 +164205,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52527] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55530] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4287), 2, + ACTIONS(4508), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1817), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154154,61 +164270,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52614] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55617] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4289), 2, + ACTIONS(4510), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1818), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154219,62 +164335,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52701] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55704] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(304), 1, + ACTIONS(329), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154285,62 +164401,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52790] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55793] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(4291), 1, + ACTIONS(4512), 1, anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154351,62 +164467,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52879] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55882] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(308), 1, + ACTIONS(333), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1821), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154417,62 +164533,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52968] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55971] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4293), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4372), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1822), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154483,62 +164599,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53057] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56060] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1823), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154549,62 +164665,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53146] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56149] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(312), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4514), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154615,128 +164731,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53235] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56238] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4295), 1, - anon_sym_SEMI, - ACTIONS(4297), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4060), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53324] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(316), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1826), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4058), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154747,62 +164772,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53413] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(318), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1827), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154813,62 +164820,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53502] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(320), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + anon_sym_as, + [56344] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1459), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154879,62 +164868,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53591] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56397] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4064), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(4301), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1829), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4062), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154945,62 +164916,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53680] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56450] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1924), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4002), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4303), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1830), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4000), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155011,62 +164964,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53769] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56503] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(324), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4014), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4012), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155077,62 +165012,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53858] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56556] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(326), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1926), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4026), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1832), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4024), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155143,62 +165060,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53947] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56609] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(328), 1, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + ACTIONS(4516), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3468), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [56686] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1928), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1833), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3818), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155209,62 +165168,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54036] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56739] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4305), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + ACTIONS(4518), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155275,62 +165240,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54125] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56826] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(332), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1930), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3838), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1835), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3836), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155341,62 +165281,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54214] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56879] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1836), 2, + ACTIONS(4520), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155407,62 +165353,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54303] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56966] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(117), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1932), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3842), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1837), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3840), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155473,62 +165394,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54392] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [57019] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4406), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4412), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4414), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4460), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4307), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4522), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_match_block, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4424), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4462), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1838), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4422), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4418), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155539,61 +165467,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54481] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57108] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4309), 2, + ACTIONS(4524), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1839), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155604,62 +165532,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54568] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57195] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4311), 1, - anon_sym_RPAREN, - ACTIONS(4313), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4526), 1, + anon_sym_SEMI, + ACTIONS(4528), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1840), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155670,15 +165598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54657] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57284] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, + ACTIONS(1553), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155694,7 +165622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1370), 23, + ACTIONS(1551), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155718,60 +165646,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54710] = 22, - ACTIONS(101), 1, + [57337] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(3744), 1, + sym__use_clause, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [57411] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4315), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4530), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155782,60 +165768,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54796] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57497] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4317), 1, + ACTIONS(4532), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155846,60 +165832,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54882] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57583] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4319), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4534), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1844), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155910,60 +165896,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54968] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57669] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4536), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155974,118 +165960,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55054] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57755] = 22, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - ACTIONS(4321), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1846), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [55130] = 21, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4129), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + ACTIONS(4538), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156096,60 +166024,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55214] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57841] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156160,60 +166088,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55300] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57927] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4327), 1, + ACTIONS(4542), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156224,60 +166152,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55386] = 22, - ACTIONS(101), 1, + [58013] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3521), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58087] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4329), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4544), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156288,60 +166274,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55472] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58173] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4331), 1, + ACTIONS(4546), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156352,60 +166338,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55558] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58259] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4333), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4548), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156416,60 +166402,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55644] = 22, - ACTIONS(101), 1, + [58345] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3551), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1949), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58419] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4335), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4550), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156480,60 +166524,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55730] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58505] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, + ACTIONS(4552), 1, anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156544,60 +166588,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55816] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58591] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4452), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4554), 1, anon_sym_DOT_DOT, - ACTIONS(4339), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4376), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4556), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156608,60 +166651,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55902] = 22, - ACTIONS(101), 1, + [58675] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3468), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1953), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58749] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, + ACTIONS(4558), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156672,60 +166773,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55988] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58835] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4452), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4554), 1, anon_sym_DOT_DOT, - ACTIONS(4343), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4436), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4556), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156736,60 +166836,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56074] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58919] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4345), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4560), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156800,60 +166900,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56160] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59005] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4452), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4502), 1, + anon_sym_EQ_GT, + ACTIONS(4554), 1, anon_sym_DOT_DOT, - ACTIONS(4347), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4562), 1, + anon_sym_AMP_AMP, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4396), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4556), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156864,60 +166964,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56246] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59091] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4564), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156928,60 +167028,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56332] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59177] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4351), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4566), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156992,60 +167092,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56418] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59263] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4353), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157056,60 +167156,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56504] = 22, - ACTIONS(101), 1, + [59349] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3501), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1961), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [59423] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4355), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4568), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157120,60 +167278,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56590] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59509] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4357), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4570), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157184,59 +167342,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56676] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59595] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4572), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4325), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157247,60 +167406,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56760] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59681] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, + ACTIONS(4574), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157311,60 +167470,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56846] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59767] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4361), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4576), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157375,60 +167534,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56932] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59853] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4363), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157439,60 +167598,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57018] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59939] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4365), 1, + ACTIONS(4578), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157503,60 +167662,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57104] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60025] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4367), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4580), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157567,60 +167726,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57190] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60111] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4582), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157631,60 +167790,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57276] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60197] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4371), 1, + ACTIONS(4584), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157695,60 +167854,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57362] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60283] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4373), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4586), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157759,119 +167918,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57448] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60369] = 22, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - ACTIONS(4375), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1874), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [57524] = 22, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(4231), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 1, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + ACTIONS(4588), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157882,215 +167982,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57610] = 16, + [60455] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3487), 1, - sym__use_clause, - STATE(3495), 1, - sym_bracketed_type, - STATE(1876), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [57683] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(3868), 1, + anon_sym_where, + ACTIONS(4590), 1, sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4600), 1, sym_metavariable, - STATE(2488), 1, + STATE(2953), 1, + sym_scoped_type_identifier, + STATE(3239), 1, + sym_generic_type, + STATE(3513), 1, sym_scoped_identifier, - STATE(3348), 1, - sym__use_clause, - STATE(3374), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1877), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [57756] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, + ACTIONS(3866), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(3597), 1, - sym__use_clause, - STATE(1878), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + anon_sym_PLUS, + ACTIONS(4596), 3, anon_sym_default, + anon_sym_gen, anon_sym_union, - [57829] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1879), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158108,105 +168040,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_union, - [57902] = 16, + [60530] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3328), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1880), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [57975] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4379), 1, - sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4600), 1, sym_metavariable, - STATE(3025), 1, + ACTIONS(4602), 1, + sym_identifier, + STATE(3178), 1, sym_scoped_type_identifier, - STATE(3297), 1, + STATE(3474), 1, sym_generic_type, - STATE(3369), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3670), 1, sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1881), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4596), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158224,46 +168098,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58049] = 17, + [60605] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4391), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(3029), 1, + STATE(3094), 1, sym_scoped_type_identifier, - STATE(3306), 1, + STATE(3289), 1, sym_generic_type, - STATE(3369), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3670), 1, sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1882), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4596), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158281,46 +168156,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58123] = 17, + [60680] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4393), 1, + ACTIONS(4606), 1, sym_identifier, - STATE(2865), 1, + STATE(3165), 1, sym_scoped_type_identifier, - STATE(3043), 1, + STATE(3429), 1, sym_generic_type, - STATE(3369), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3670), 1, sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1883), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4596), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158338,46 +168214,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58197] = 17, + [60755] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4395), 1, + ACTIONS(4608), 1, sym_identifier, - STATE(2942), 1, + STATE(3155), 1, sym_scoped_type_identifier, - STATE(3227), 1, + STATE(3410), 1, sym_generic_type, - STATE(3369), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3670), 1, sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1884), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4596), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158395,46 +168272,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58271] = 17, + [60830] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4397), 1, + ACTIONS(4610), 1, sym_identifier, - STATE(2979), 1, + STATE(3168), 1, sym_scoped_type_identifier, - STATE(3095), 1, + STATE(3458), 1, sym_generic_type, - STATE(3369), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3670), 1, sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1885), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4596), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158452,46 +168330,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58345] = 17, + [60905] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4399), 1, + ACTIONS(4612), 1, sym_identifier, - STATE(3013), 1, + STATE(3172), 1, sym_scoped_type_identifier, - STATE(3287), 1, + STATE(3464), 1, sym_generic_type, - STATE(3369), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3670), 1, sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1886), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4596), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158509,46 +168388,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58419] = 17, + [60980] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4401), 1, + ACTIONS(4614), 1, sym_identifier, - STATE(3019), 1, + STATE(3174), 1, sym_scoped_type_identifier, - STATE(3292), 1, + STATE(3466), 1, sym_generic_type, - STATE(3369), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3670), 1, sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1887), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4596), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158566,46 +168446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58493] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61055] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4383), 1, - anon_sym_COLON_COLON, - ACTIONS(4389), 1, - sym_metavariable, - ACTIONS(4403), 1, - sym_identifier, - STATE(3021), 1, - sym_scoped_type_identifier, - STATE(3294), 1, - sym_generic_type, - STATE(3369), 1, - sym_scoped_identifier, - STATE(3475), 1, - sym_generic_type_with_turbofish, - STATE(3501), 1, - sym_bracketed_type, - ACTIONS(4385), 2, - anon_sym_default, - anon_sym_union, - STATE(1888), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4387), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4381), 17, + ACTIONS(4618), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(4616), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158623,19 +168476,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58567] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_gen, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [61102] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1889), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4407), 3, + ACTIONS(4622), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4405), 28, + ACTIONS(4620), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158657,6 +168522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_gen, anon_sym_union, anon_sym_unsafe, anon_sym_extern, @@ -158664,19 +168530,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58613] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61149] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1890), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4626), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4409), 28, + ACTIONS(4624), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158698,6 +168564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, + anon_sym_gen, anon_sym_union, anon_sym_unsafe, anon_sym_extern, @@ -158705,19 +168572,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1891), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4415), 3, + [61196] = 13, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2098), 1, anon_sym_COLON_COLON, + ACTIONS(4628), 1, + sym_identifier, + ACTIONS(4634), 1, sym_metavariable, - ACTIONS(4413), 28, + STATE(2374), 1, + sym_scoped_identifier, + STATE(3536), 1, + sym_attribute, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + STATE(1985), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4632), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158735,46 +168618,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, + anon_sym_gen, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [58705] = 13, + [61258] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3324), 1, - sym_bracketed_type, - STATE(3336), 1, + STATE(3645), 1, sym_attribute, - STATE(3350), 1, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1892), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158793,36 +168668,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [58766] = 13, + [61320] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3547), 1, + sym_attribute, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(3468), 1, - sym_attribute, - STATE(1893), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158841,36 +168717,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [58827] = 13, + [61382] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - STATE(3401), 1, + STATE(3742), 1, sym_attribute, - STATE(1894), 2, + STATE(3800), 1, + sym_generic_type_with_turbofish, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158889,36 +168766,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [58888] = 13, + [61444] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3660), 1, + sym_attribute, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(3408), 1, - sym_attribute, - STATE(1895), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158937,36 +168815,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [58949] = 13, + [61506] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3688), 1, + sym_attribute, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(3392), 1, - sym_attribute, - STATE(1896), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158985,36 +168864,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [59010] = 13, + [61568] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3321), 1, + STATE(3602), 1, sym_attribute, - STATE(3324), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1897), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159033,36 +168913,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [59071] = 13, + [61630] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3557), 1, + sym_attribute, + STATE(3732), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_attribute, - STATE(1898), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159081,36 +168962,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [59132] = 13, + [61692] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2271), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3324), 1, - sym_bracketed_type, - STATE(3326), 1, + STATE(3626), 1, sym_attribute, - STATE(3350), 1, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1899), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159129,34 +169011,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [59193] = 12, + [61754] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4425), 1, + ACTIONS(4636), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(4640), 1, anon_sym_COLON_COLON, - ACTIONS(4433), 1, + ACTIONS(4644), 1, sym_metavariable, - STATE(3107), 1, + STATE(3197), 1, sym_scoped_identifier, - STATE(3374), 1, + STATE(3653), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3666), 1, sym_bracketed_type, - STATE(1900), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(4431), 3, + ACTIONS(4642), 3, sym_self, sym_super, sym_crate, - ACTIONS(4427), 19, + ACTIONS(4638), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159175,34 +169058,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [59251] = 12, + [61813] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4429), 1, + ACTIONS(4640), 1, anon_sym_COLON_COLON, - ACTIONS(4435), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4441), 1, + ACTIONS(4652), 1, sym_metavariable, - STATE(3209), 1, + STATE(3306), 1, sym_scoped_identifier, - STATE(3374), 1, + STATE(3653), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3666), 1, sym_bracketed_type, - STATE(1901), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4439), 3, + ACTIONS(4650), 3, sym_self, sym_super, sym_crate, - ACTIONS(4437), 19, + ACTIONS(4648), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159221,18 +169105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_default, + anon_sym_gen, anon_sym_union, - [59309] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61872] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(771), 1, + ACTIONS(951), 1, anon_sym_DOT_DOT, - STATE(1902), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(773), 20, + ACTIONS(953), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159253,54 +169138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59345] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61908] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3245), 1, - anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(1903), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [59393] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, + ACTIONS(1013), 1, anon_sym_DOT_DOT, - STATE(1904), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(755), 20, + ACTIONS(1015), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159321,28 +169169,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59429] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61944] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3261), 1, + ACTIONS(3544), 1, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(3548), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(1905), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3259), 14, + ACTIONS(3542), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159354,22 +169196,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59474] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [61981] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3528), 1, anon_sym_COLON, - ACTIONS(3273), 2, + ACTIONS(3532), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1906), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 17, + ACTIONS(3526), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159387,55 +169231,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59511] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62018] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3255), 1, - anon_sym_COLON, - ACTIONS(4443), 1, + ACTIONS(4656), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(4670), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(2027), 1, sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(1907), 2, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3253), 14, + ACTIONS(4654), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [59556] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62071] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, + ACTIONS(3536), 1, anon_sym_COLON, - ACTIONS(3297), 2, + ACTIONS(3540), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1908), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 17, + ACTIONS(3534), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159453,20 +169301,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59593] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62108] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + ACTIONS(3503), 1, anon_sym_COLON, - ACTIONS(3313), 2, + ACTIONS(3507), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1909), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 17, + ACTIONS(3501), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159484,67 +169332,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59630] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62145] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4455), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4467), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(2097), 1, + sym_parameters, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, + ACTIONS(3458), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [59683] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62189] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, + ACTIONS(3530), 2, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + anon_sym_DOT_DOT, + STATE(2004), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3526), 3, + anon_sym_LBRACE, + anon_sym_for, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(3532), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(1911), 2, + anon_sym_else, + anon_sym_in, + [62225] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3686), 1, + anon_sym_COLON, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 14, + ACTIONS(3684), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159554,24 +169418,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59728] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62259] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3277), 1, + ACTIONS(3784), 1, anon_sym_COLON, - ACTIONS(3281), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1912), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 17, + ACTIONS(3782), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159583,28 +169447,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59765] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62293] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3505), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1913), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3501), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3297), 14, + ACTIONS(3507), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159619,54 +169484,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59801] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62329] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(1914), 2, + ACTIONS(3538), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3534), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3540), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [59841] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62365] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1915), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3542), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3273), 14, + ACTIONS(3548), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159681,90 +169544,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59877] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62401] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3800), 1, + anon_sym_COLON, + STATE(2010), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3798), 18, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4449), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [62435] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(1933), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2097), 1, sym_parameters, - STATE(1916), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3428), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [59917] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62479] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(1933), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2097), 1, sym_parameters, - STATE(1917), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3452), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [62523] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3626), 1, anon_sym_COLON, + STATE(2013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3624), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59957] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62557] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1918), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3281), 14, + ACTIONS(3548), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_BANG, anon_sym_PIPE, @@ -159775,26 +169698,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59993] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62590] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1919), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(3501), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_for, + anon_sym_where, + anon_sym_else, anon_sym_LT2, - ACTIONS(3313), 14, + [62621] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3530), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2016), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_BANG, anon_sym_PIPE, @@ -159805,107 +169753,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60029] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62654] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(1933), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2097), 1, sym_parameters, - STATE(1920), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3469), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [60069] = 5, - ACTIONS(101), 1, + [62695] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(1617), 1, + anon_sym_LBRACE, + ACTIONS(4680), 1, + sym_identifier, + STATE(3770), 1, + sym_label, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(2018), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1643), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(3039), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3417), 3, + sym_block, + sym__literal, + sym_negative_literal, + [62746] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3538), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3540), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [62779] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3505), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2020), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [62812] = 19, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4684), 1, + anon_sym_const, + ACTIONS(4686), 1, + anon_sym_enum, + ACTIONS(4688), 1, + anon_sym_fn, + ACTIONS(4690), 1, + anon_sym_mod, + ACTIONS(4692), 1, + anon_sym_static, + ACTIONS(4694), 1, + anon_sym_struct, + ACTIONS(4696), 1, + anon_sym_trait, + ACTIONS(4698), 1, + anon_sym_type, + ACTIONS(4700), 1, + anon_sym_union, + ACTIONS(4702), 1, + anon_sym_unsafe, + ACTIONS(4704), 1, + anon_sym_use, + ACTIONS(4706), 1, + anon_sym_extern, + STATE(2240), 1, + sym_extern_modifier, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(3792), 1, + sym_function_modifiers, + ACTIONS(4682), 2, + anon_sym_async, + anon_sym_default, + STATE(2021), 2, + sym_line_comment, + sym_block_comment, + [62872] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4710), 1, anon_sym_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - STATE(1921), 2, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 16, + ACTIONS(4708), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62916] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, - anon_sym_COLON, - STATE(1922), 2, + ACTIONS(4720), 1, + anon_sym_const, + ACTIONS(4722), 1, + anon_sym_enum, + ACTIONS(4724), 1, + anon_sym_fn, + ACTIONS(4726), 1, + anon_sym_mod, + ACTIONS(4728), 1, + anon_sym_static, + ACTIONS(4730), 1, + anon_sym_struct, + ACTIONS(4732), 1, + anon_sym_trait, + ACTIONS(4734), 1, + anon_sym_type, + ACTIONS(4736), 1, + anon_sym_union, + ACTIONS(4738), 1, + anon_sym_unsafe, + ACTIONS(4740), 1, + anon_sym_use, + ACTIONS(4742), 1, + anon_sym_extern, + STATE(2281), 1, + sym_extern_modifier, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(3675), 1, + sym_function_modifiers, + ACTIONS(4682), 2, + anon_sym_async, + anon_sym_default, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3404), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [60135] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62976] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3410), 1, + ACTIONS(3704), 1, anon_sym_COLON, - STATE(1923), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3408), 17, + ACTIONS(3702), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159921,102 +170020,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60168] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63008] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4710), 1, anon_sym_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - STATE(1924), 2, + ACTIONS(4744), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 16, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(4708), 3, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [60201] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63054] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, + ACTIONS(3738), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1925), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 16, + ACTIONS(3736), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60234] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63086] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + ACTIONS(3734), 1, + anon_sym_COLON, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 18, + ACTIONS(3732), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60265] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63118] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3350), 1, - anon_sym_COLON, - STATE(1927), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3348), 17, + ACTIONS(3475), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -160026,25 +170135,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60298] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63156] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_COLON, - STATE(1928), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3461), 17, + ACTIONS(3513), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -160054,51 +170165,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60331] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63194] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1929), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 16, + ACTIONS(3509), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60364] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63232] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_COLON, - STATE(1930), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 16, + ACTIONS(3517), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160109,23 +170225,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60396] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63270] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3511), 1, anon_sym_COLON, - STATE(1931), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3509), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160136,145 +170251,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60428] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63303] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4471), 1, - anon_sym_const, - ACTIONS(4473), 1, - anon_sym_enum, - ACTIONS(4475), 1, - anon_sym_fn, - ACTIONS(4477), 1, - anon_sym_mod, - ACTIONS(4479), 1, - anon_sym_static, - ACTIONS(4481), 1, - anon_sym_struct, - ACTIONS(4483), 1, - anon_sym_trait, - ACTIONS(4485), 1, - anon_sym_type, - ACTIONS(4487), 1, - anon_sym_union, - ACTIONS(4489), 1, - anon_sym_unsafe, - ACTIONS(4491), 1, - anon_sym_use, - ACTIONS(4493), 1, - anon_sym_extern, - STATE(2133), 1, - sym_extern_modifier, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(3407), 1, - sym_function_modifiers, - ACTIONS(4469), 2, - anon_sym_async, - anon_sym_default, - STATE(1932), 2, - sym_line_comment, - sym_block_comment, - [60488] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, - anon_sym_COLON, - STATE(1933), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 16, + ACTIONS(1531), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60520] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63332] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4495), 1, + ACTIONS(4748), 1, + anon_sym_LPAREN, + STATE(2034), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4154), 15, + anon_sym_async, anon_sym_const, - ACTIONS(4497), 1, + anon_sym_default, anon_sym_enum, - ACTIONS(4499), 1, anon_sym_fn, - ACTIONS(4501), 1, anon_sym_mod, - ACTIONS(4503), 1, anon_sym_static, - ACTIONS(4505), 1, anon_sym_struct, - ACTIONS(4507), 1, anon_sym_trait, - ACTIONS(4509), 1, anon_sym_type, - ACTIONS(4511), 1, anon_sym_union, - ACTIONS(4513), 1, anon_sym_unsafe, - ACTIONS(4515), 1, anon_sym_use, - ACTIONS(4517), 1, anon_sym_extern, - STATE(2175), 1, - sym_extern_modifier, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(3600), 1, - sym_function_modifiers, - ACTIONS(4469), 2, - anon_sym_async, - anon_sym_default, - STATE(1934), 2, - sym_line_comment, - sym_block_comment, - [60580] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + [63363] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4660), 1, anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4529), 1, + ACTIONS(4750), 1, anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 9, + ACTIONS(4654), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160284,90 +170337,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [60624] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63404] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4712), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - ACTIONS(4531), 1, + ACTIONS(4752), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(2024), 1, sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1936), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RPAREN, + ACTIONS(4708), 3, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [60670] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63447] = 16, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4533), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4754), 1, + anon_sym_LPAREN, + ACTIONS(4756), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(2027), 1, sym_type_arguments, - ACTIONS(4527), 2, + STATE(2097), 1, + sym_parameters, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(3452), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60713] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63500] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_COLON, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - STATE(1938), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(1055), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160377,21 +170430,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60746] = 4, - ACTIONS(101), 1, + anon_sym_in, + [63529] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(186), 1, + sym_fragment_specifier, + ACTIONS(4760), 2, + anon_sym_expr, + anon_sym_pat, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4758), 13, + anon_sym_block, + anon_sym_expr_2021, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_pat_param, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [63562] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1939), 2, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 16, + ACTIONS(3475), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160401,51 +170485,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [60775] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63595] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1940), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 14, + ACTIONS(3628), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60808] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63624] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4539), 1, - anon_sym_DASH_GT, - STATE(1941), 2, + ACTIONS(3515), 1, + anon_sym_COLON, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3521), 15, + ACTIONS(3513), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160455,53 +170537,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60839] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63657] = 16, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3241), 1, - anon_sym_PLUS, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, + ACTIONS(4658), 1, anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4463), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4541), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4762), 1, anon_sym_LPAREN, - ACTIONS(4546), 1, + ACTIONS(4764), 1, + anon_sym_RBRACK, + ACTIONS(4767), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - STATE(1945), 1, + STATE(2097), 1, sym_parameters, - ACTIONS(4465), 2, + ACTIONS(3452), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4654), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4543), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1942), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - [60894] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63710] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1943), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 16, + ACTIONS(1467), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160518,19 +170599,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [60923] = 6, - ACTIONS(101), 1, + [63739] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2045), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3610), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [63768] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3760), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [63797] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, + ACTIONS(3519), 1, anon_sym_COLON, - ACTIONS(4537), 1, + ACTIONS(4746), 1, anon_sym_COLON_COLON, - STATE(1944), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 14, + ACTIONS(3517), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160545,17 +170676,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60956] = 5, - ACTIONS(101), 1, + [63830] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2048), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1047), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [63859] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - STATE(1945), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3786), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160567,19 +170721,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [63888] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(4769), 1, + anon_sym_COLON_COLON, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60987] = 4, - ACTIONS(101), 1, + [63921] = 17, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3452), 1, + anon_sym_PLUS, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4771), 1, + anon_sym_LPAREN, + ACTIONS(4773), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, + sym_type_arguments, + STATE(2097), 1, + sym_parameters, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4764), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2051), 2, + sym_line_comment, + sym_block_comment, + [63976] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1946), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 16, + ACTIONS(3688), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160596,23 +170816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61016] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64005] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4550), 1, - anon_sym_DASH_GT, - STATE(1947), 2, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(4775), 1, + anon_sym_COLON_COLON, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3527), 15, + ACTIONS(3475), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160622,17 +170843,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61047] = 5, - ACTIONS(101), 1, + [64038] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_PIPE, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2054), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64082] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4552), 1, - anon_sym_DASH_GT, - STATE(1948), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 15, + ACTIONS(4004), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160648,24 +170899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61078] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64110] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1949), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(4016), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160675,15 +170923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61111] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64138] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 16, + ACTIONS(3802), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160695,29 +170943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61140] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64166] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1951), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 14, + ACTIONS(3806), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160727,24 +170971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61173] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64194] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_COLON, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1952), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3880), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160754,15 +170995,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61206] = 4, - ACTIONS(101), 1, + [64222] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2060), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4161), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [64250] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1953), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(3814), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160774,20 +171039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61235] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64278] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1954), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 16, + ACTIONS(3513), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160799,57 +171063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61264] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64306] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_RBRACK, - ACTIONS(4556), 1, - anon_sym_LPAREN, - ACTIONS(4558), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(3241), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1955), 2, - sym_line_comment, - sym_block_comment, - [61317] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1956), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 16, + ACTIONS(3517), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160861,20 +171087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61346] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64334] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1957), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 16, + ACTIONS(3844), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160890,53 +171115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61375] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64362] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_LPAREN, - ACTIONS(4562), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1958), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [61428] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1959), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 16, + ACTIONS(3862), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160952,18 +171139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61457] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64390] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4564), 1, - anon_sym_DASH_GT, - STATE(1960), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(4102), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160979,48 +171163,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61488] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64418] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1961), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [61529] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4167), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [64446] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_DASH_GT, - STATE(1962), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 15, + ACTIONS(3822), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161036,17 +171211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64474] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_DASH_GT, - STATE(1963), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 15, + ACTIONS(3475), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161062,17 +171235,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61591] = 5, - ACTIONS(101), 1, + [64502] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + STATE(2070), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [64532] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4572), 1, - anon_sym_LPAREN, - STATE(1964), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3977), 15, + ACTIONS(4171), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161088,15 +171284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [61622] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64560] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 15, + ACTIONS(3509), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161112,15 +171308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61650] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64588] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1966), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3866), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161136,15 +171332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61678] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64616] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1967), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3841), 15, + ACTIONS(3884), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161160,15 +171356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61706] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64644] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3888), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161184,15 +171380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61734] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64672] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 15, + ACTIONS(3810), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161208,15 +171404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61762] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64700] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1970), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3727), 15, + ACTIONS(3892), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161232,15 +171428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61790] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64728] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, + ACTIONS(3896), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161256,15 +171452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61818] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64756] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1972), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(3908), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161280,15 +171476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61846] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64784] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 15, + ACTIONS(3870), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161304,39 +171500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64812] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1974), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3995), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [61902] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1975), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 15, + ACTIONS(4110), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161352,15 +171524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61930] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64840] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, + ACTIONS(3978), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161376,39 +171548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61958] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64868] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1977), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3991), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [61986] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3988), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161424,15 +171572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62014] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64896] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3900), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161448,96 +171596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62042] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1980), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3999), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [62070] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1981), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62114] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64924] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - STATE(1982), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [62144] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 15, + ACTIONS(4074), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161553,15 +171620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62172] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64952] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(4038), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161577,15 +171644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62200] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64980] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(4008), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161601,15 +171668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62228] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65008] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3829), 15, + ACTIONS(4106), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161625,17 +171692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62256] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65036] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, + ACTIONS(4114), 1, anon_sym_COLON_COLON, - STATE(1987), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 14, + ACTIONS(4156), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161650,15 +171717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [62286] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65066] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(3996), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161674,15 +171741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62314] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65094] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3735), 15, + ACTIONS(3858), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161698,548 +171765,458 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62342] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65122] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + ACTIONS(4783), 1, + anon_sym_DOT_DOT, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(4781), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62370] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [65151] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + ACTIONS(955), 1, + anon_sym_DOT_DOT, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(957), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62398] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [65180] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + ACTIONS(975), 1, + anon_sym_DOT_DOT, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 15, + ACTIONS(977), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62426] = 4, - ACTIONS(101), 1, + anon_sym_in, + [65209] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2095), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4708), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65244] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + ACTIONS(4785), 1, + anon_sym_DASH_GT, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3849), 15, + ACTIONS(3740), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [62454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65273] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + ACTIONS(4787), 1, + anon_sym_DASH_GT, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 15, + ACTIONS(3746), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [62482] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65302] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + ACTIONS(4789), 1, + anon_sym_DASH_GT, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, + ACTIONS(3752), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [62510] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65331] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + ACTIONS(4791), 1, + anon_sym_DASH_GT, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 15, + ACTIONS(3764), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [62538] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65360] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_DOT_DOT, - STATE(1997), 2, + ACTIONS(4793), 1, + anon_sym_DASH_GT, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 13, + ACTIONS(3770), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62567] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65389] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_pat, - STATE(144), 1, - sym_fragment_specifier, - STATE(1998), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4578), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [62598] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4529), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1999), 2, + ACTIONS(4795), 1, + anon_sym_DASH_GT, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 9, + ACTIONS(3776), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62633] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65418] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4586), 1, - anon_sym_GT, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2746), 1, - sym_trait_bounds, - STATE(2907), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3241), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2000), 2, - sym_line_comment, - sym_block_comment, - [62684] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(767), 1, - anon_sym_DOT_DOT, - STATE(2001), 2, + ACTIONS(4797), 1, + anon_sym_DASH_GT, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 13, + ACTIONS(3790), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62713] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65447] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_DOT_DOT, - ACTIONS(4590), 2, + ACTIONS(4799), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2002), 2, + ACTIONS(3538), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 4, - anon_sym_SEMI, + ACTIONS(3534), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3313), 6, + ACTIONS(3540), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62745] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65479] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(3546), 1, anon_sym_DOT_DOT, - ACTIONS(4593), 2, + ACTIONS(4802), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2003), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 4, + ACTIONS(3542), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3273), 6, + ACTIONS(3548), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [62777] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65511] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4596), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62805] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(3530), 1, anon_sym_DOT_DOT, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2005), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62835] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4600), 1, + ACTIONS(4805), 2, anon_sym_LPAREN, - ACTIONS(3295), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2006), 2, + anon_sym_RBRACK, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 5, - anon_sym_RPAREN, + ACTIONS(3526), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3297), 5, + ACTIONS(3532), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [62867] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65543] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACE, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4609), 1, - anon_sym_AT, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4615), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2007), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [62911] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3505), 1, anon_sym_DOT_DOT, - ACTIONS(4617), 2, + ACTIONS(4808), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2008), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 4, + ACTIONS(3501), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3281), 6, + ACTIONS(3507), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [62943] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65575] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4590), 1, + ACTIONS(4808), 1, anon_sym_LPAREN, - ACTIONS(3311), 2, + ACTIONS(3505), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2009), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 5, + ACTIONS(3501), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3313), 5, + ACTIONS(3507), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62975] = 7, - ACTIONS(101), 1, + [65607] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4654), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65637] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4617), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(3279), 2, + ACTIONS(3530), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2010), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 5, + ACTIONS(3526), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3281), 5, + ACTIONS(3532), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63007] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65669] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, + ACTIONS(4813), 1, anon_sym_DOT_DOT, - STATE(2011), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 12, + ACTIONS(4811), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162252,688 +172229,492 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63035] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65697] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(4802), 1, + anon_sym_LPAREN, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2012), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3542), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4600), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3297), 5, + anon_sym_LT2, + ACTIONS(3548), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63067] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65729] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3505), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2013), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3501), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4593), 3, + ACTIONS(4808), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3273), 5, + ACTIONS(3507), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63099] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65761] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2014), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(3542), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4590), 3, + ACTIONS(4802), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3313), 5, + ACTIONS(3548), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63131] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65793] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2015), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(3534), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4617), 3, + ACTIONS(4799), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3281), 5, + ACTIONS(3540), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63163] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65825] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3538), 1, anon_sym_DOT_DOT, - ACTIONS(4600), 2, + ACTIONS(4799), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2016), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 4, + ACTIONS(3534), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3297), 6, + ACTIONS(3540), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [63195] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65857] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4815), 1, anon_sym_LPAREN, - ACTIONS(3271), 2, - anon_sym_COLON, + ACTIONS(4817), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_BANG, + ACTIONS(4821), 1, + anon_sym_AT, + ACTIONS(4823), 1, anon_sym_DOT_DOT, - STATE(2017), 2, + ACTIONS(4827), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, + sym_type_arguments, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 5, - anon_sym_RPAREN, + ACTIONS(4654), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [65901] = 11, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3273), 5, - anon_sym_BANG, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63227] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4626), 1, - anon_sym_GT, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2605), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2018), 2, + ACTIONS(4829), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(409), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2117), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63272] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65941] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4632), 1, - anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2019), 2, + ACTIONS(3530), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2118), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63317] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3526), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4805), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3532), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [65973] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4634), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_COLON, + ACTIONS(4833), 1, + anon_sym_EQ, + STATE(2027), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(3144), 1, + sym_trait_bounds, + ACTIONS(3452), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4835), 2, anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2020), 2, + anon_sym_COMMA, + STATE(2119), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63362] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66019] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4839), 1, + anon_sym_GT, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4636), 1, - anon_sym_GT, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2725), 1, sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2021), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3273), 3, sym_const_parameter, - sym_optional_type_parameter, - [63407] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_type_parameter, + sym_lifetime_parameter, + [66062] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4638), 1, - anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2022), 2, + ACTIONS(4847), 1, + anon_sym_COLON, + ACTIONS(4028), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2121), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63452] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4845), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66091] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4640), 1, + ACTIONS(4849), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2725), 1, sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2023), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3273), 3, sym_const_parameter, - sym_optional_type_parameter, - [63497] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_type_parameter, + sym_lifetime_parameter, + [66134] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4642), 1, + ACTIONS(4851), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2725), 1, sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2024), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3273), 3, sym_const_parameter, - sym_optional_type_parameter, - [63542] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_type_parameter, + sym_lifetime_parameter, + [66177] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4644), 1, + ACTIONS(4853), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2725), 1, sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2025), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3273), 3, sym_const_parameter, - sym_optional_type_parameter, - [63587] = 10, + sym_type_parameter, + sym_lifetime_parameter, + [66220] = 10, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4483), 1, + ACTIONS(4732), 1, anon_sym_trait, - ACTIONS(4646), 1, + ACTIONS(4855), 1, anon_sym_impl, - STATE(384), 1, + STATE(416), 1, sym_block, - STATE(3510), 1, + STATE(3621), 1, sym_label, - STATE(2026), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63624] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4648), 1, - anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2027), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63669] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4650), 1, - anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2028), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63714] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4652), 1, - anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2029), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63759] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4654), 1, - anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2030), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63804] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - ACTIONS(4656), 1, - anon_sym_GT, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2031), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63849] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66257] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4658), 1, + ACTIONS(4857), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2725), 1, sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2032), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3273), 3, sym_const_parameter, - sym_optional_type_parameter, - [63894] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_type_parameter, + sym_lifetime_parameter, + [66300] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4660), 1, + ACTIONS(4859), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2725), 1, sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2033), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3273), 3, sym_const_parameter, - sym_optional_type_parameter, - [63939] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_type_parameter, + sym_lifetime_parameter, + [66343] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4662), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [63977] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 1, + ACTIONS(4847), 1, anon_sym_COLON, - STATE(2035), 2, + ACTIONS(3984), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(4845), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162943,19 +172724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64005] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66372] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4863), 1, anon_sym_COLON, - ACTIONS(4668), 1, + ACTIONS(4865), 1, anon_sym_COLON_COLON, - STATE(2036), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(4861), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162965,116 +172746,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64033] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66400] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + ACTIONS(3534), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2130), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3540), 8, anon_sym_LPAREN, - ACTIONS(4445), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4447), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4670), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2037), 2, + anon_sym_if, + [66428] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(1437), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64071] = 12, - ACTIONS(101), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66452] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4867), 1, + sym_metavariable, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(2725), 1, + sym_lifetime, + STATE(2132), 2, + sym_line_comment, + sym_block_comment, + STATE(3299), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66492] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3245), 1, + ACTIONS(3454), 1, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4869), 1, anon_sym_EQ, - STATE(1945), 1, + STATE(2409), 1, sym_parameters, - STATE(2365), 1, + STATE(2435), 1, sym_type_arguments, - STATE(2038), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 3, + ACTIONS(3452), 3, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - [64111] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66532] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + ACTIONS(4873), 1, + anon_sym_COLON, + ACTIONS(4875), 1, + anon_sym_COLON_COLON, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(1240), 11, + ACTIONS(4871), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64135] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66560] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3267), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2040), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4877), 1, + sym_metavariable, + STATE(1254), 1, + sym_attribute_item, + STATE(2137), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2725), 1, + sym_lifetime, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [64163] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3161), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66600] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, + ACTIONS(4881), 1, anon_sym_COLON, - ACTIONS(4678), 1, + ACTIONS(4883), 1, anon_sym_COLON_COLON, - STATE(2041), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 9, + ACTIONS(4879), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163084,47 +172916,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64191] = 12, - ACTIONS(101), 1, + [66628] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4885), 1, + sym_metavariable, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(2725), 1, + sym_lifetime, + STATE(2137), 2, + sym_line_comment, + sym_block_comment, + STATE(2894), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66668] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4889), 1, anon_sym_RBRACE, - ACTIONS(4684), 1, + ACTIONS(4891), 1, anon_sym_DOT_DOT, - ACTIONS(4686), 1, + ACTIONS(4893), 1, anon_sym_COMMA, - ACTIONS(4688), 1, + ACTIONS(4895), 1, sym_integer_literal, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2552), 1, aux_sym_enum_variant_list_repeat1, - STATE(2042), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - STATE(2851), 3, + STATE(3080), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [64231] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66708] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4692), 1, - anon_sym_COLON, - ACTIONS(4694), 1, + ACTIONS(4883), 1, anon_sym_COLON_COLON, - STATE(2043), 2, + ACTIONS(4899), 1, + anon_sym_COLON, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(4897), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163134,47 +172994,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64259] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66736] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4712), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4744), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4696), 1, - anon_sym_for, - STATE(1931), 1, + STATE(2024), 1, sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2044), 2, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64297] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4708), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [66774] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3530), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 2, + ACTIONS(3526), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2045), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 8, + ACTIONS(3532), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -163183,113 +173043,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [64325] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(4692), 1, - anon_sym_COLON, - STATE(2046), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4690), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64353] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66802] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2047), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1236), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64377] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4692), 1, - anon_sym_COLON, - STATE(2048), 2, + ACTIONS(4901), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2097), 1, + sym_parameters, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(3452), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64405] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66840] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4698), 1, - anon_sym_RBRACE, - ACTIONS(4700), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2049), 2, - sym_line_comment, - sym_block_comment, - STATE(2770), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64445] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(4704), 1, + ACTIONS(4905), 1, sym_crate, - STATE(2179), 1, + STATE(2327), 1, sym_string_literal, - STATE(2050), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4903), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163298,73 +173093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64475] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4706), 1, - sym_identifier, - ACTIONS(4708), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2436), 1, - sym_lifetime, - STATE(2512), 1, - sym_constrained_type_parameter, - STATE(2051), 2, - sym_line_comment, - sym_block_comment, - STATE(2778), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64517] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66870] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4710), 1, - sym_identifier, - ACTIONS(4712), 1, - sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2447), 1, - sym_lifetime, - STATE(2534), 1, - sym_constrained_type_parameter, - STATE(2052), 2, - sym_line_comment, - sym_block_comment, - STATE(2775), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64559] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 11, + ACTIONS(1433), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163376,19 +173113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64583] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66894] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4863), 1, anon_sym_COLON, - ACTIONS(4694), 1, + ACTIONS(4875), 1, anon_sym_COLON_COLON, - STATE(2054), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(4861), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163398,120 +173135,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64611] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66922] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4714), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4716), 1, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4843), 1, sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2390), 1, + STATE(2132), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2725), 1, sym_lifetime, - STATE(2531), 1, - sym_constrained_type_parameter, - STATE(2055), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - STATE(3011), 2, + STATE(3273), 3, sym_const_parameter, - sym_optional_type_parameter, - [64653] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + sym_type_parameter, + sym_lifetime_parameter, + [66962] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + anon_sym_COLON, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 11, + ACTIONS(4907), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64677] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66990] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4718), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4720), 1, - sym_metavariable, - STATE(1476), 1, + ACTIONS(4891), 1, + anon_sym_DOT_DOT, + ACTIONS(4895), 1, + sym_integer_literal, + ACTIONS(4911), 1, + anon_sym_RBRACE, + ACTIONS(4913), 1, + anon_sym_COMMA, + STATE(1254), 1, sym_attribute_item, - STATE(2055), 1, + STATE(2552), 1, aux_sym_enum_variant_list_repeat1, - STATE(2401), 1, - sym_lifetime, - STATE(2693), 1, - sym_constrained_type_parameter, - STATE(2057), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - STATE(2959), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64719] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3169), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67030] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [64757] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(1206), 11, + ACTIONS(1445), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163523,223 +173233,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64781] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2060), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64823] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4722), 1, - sym_identifier, - STATE(380), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64857] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4718), 1, - sym_identifier, - ACTIONS(4720), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2055), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2326), 1, - sym_lifetime, - STATE(2693), 1, - sym_constrained_type_parameter, - STATE(2062), 2, - sym_line_comment, - sym_block_comment, - STATE(2959), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64899] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67054] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_move, - STATE(389), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64933] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4728), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2064), 2, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(4863), 1, + anon_sym_COLON, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64963] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4861), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67082] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4730), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4915), 1, anon_sym_for, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - STATE(1945), 1, + STATE(2097), 1, sym_parameters, - STATE(2065), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65001] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_DOT_DOT, - ACTIONS(3307), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65029] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67120] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_DOT_DOT, - ACTIONS(3275), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3281), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65057] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(4732), 1, + ACTIONS(4917), 1, sym_crate, - STATE(2179), 1, + STATE(2327), 1, sym_string_literal, - STATE(2068), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4903), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163748,19 +173305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65087] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67150] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, + ACTIONS(4779), 1, anon_sym_COLON_COLON, - ACTIONS(4736), 1, + ACTIONS(4921), 1, anon_sym_COLON, - STATE(2069), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + ACTIONS(4919), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163770,232 +173327,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65115] = 11, - ACTIONS(101), 1, + [67178] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_COLON, + STATE(2154), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4919), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67206] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(3432), 1, + anon_sym_COLON, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + STATE(2027), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3428), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67244] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4738), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4923), 1, anon_sym_for, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - STATE(1945), 1, + STATE(2097), 1, sym_parameters, - STATE(2070), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65153] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67282] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4740), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2071), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4925), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2097), 1, + sym_parameters, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65183] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_where, + [67320] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4742), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4927), 1, anon_sym_for, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - STATE(1945), 1, + STATE(2097), 1, sym_parameters, - STATE(2072), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65221] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67358] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3505), 1, + anon_sym_DOT_DOT, + ACTIONS(3501), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2159), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 8, anon_sym_LPAREN, - ACTIONS(4445), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4447), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + anon_sym_if, + [67386] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4744), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4929), 1, anon_sym_for, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - STATE(1945), 1, + STATE(2097), 1, sym_parameters, - STATE(2073), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65259] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67424] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4931), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2097), 1, + sym_parameters, + STATE(2161), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3452), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67462] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4746), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4933), 1, anon_sym_for, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - STATE(1945), 1, + STATE(2097), 1, sym_parameters, - STATE(2074), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65297] = 13, - ACTIONS(101), 1, + [67500] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3546), 1, + anon_sym_DOT_DOT, + ACTIONS(3542), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3548), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67528] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4748), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4750), 1, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4935), 1, sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2564), 1, + STATE(2169), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2579), 1, sym_lifetime, - STATE(2945), 1, - sym_constrained_type_parameter, - STATE(2075), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - STATE(3089), 2, + STATE(2971), 3, sym_const_parameter, - sym_optional_type_parameter, - [65339] = 4, - ACTIONS(101), 1, + sym_type_parameter, + sym_lifetime_parameter, + [67568] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3452), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67606] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, + ACTIONS(4873), 1, + anon_sym_COLON, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 10, + ACTIONS(4871), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65362] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67634] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + ACTIONS(4875), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_COLON, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(4754), 10, + ACTIONS(4919), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65385] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67662] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(4873), 1, + anon_sym_COLON, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 10, + ACTIONS(4871), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65408] = 4, - ACTIONS(101), 1, + [67690] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4937), 1, + sym_metavariable, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(2725), 1, + sym_lifetime, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + STATE(3157), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67730] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 10, + ACTIONS(1449), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164003,18 +173747,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65431] = 4, - ACTIONS(101), 1, + [67754] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(4939), 1, + sym_crate, + STATE(2327), 1, + sym_string_literal, + STATE(2171), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4903), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67784] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 10, + ACTIONS(1441), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164022,18 +173790,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65454] = 4, - ACTIONS(101), 1, + [67808] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(2173), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3458), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67846] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(4941), 1, + sym_identifier, + STATE(411), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2174), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4943), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67880] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4935), 1, + sym_metavariable, + STATE(1254), 1, + sym_attribute_item, + STATE(2169), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2725), 1, + sym_lifetime, + STATE(2175), 2, + sym_line_comment, + sym_block_comment, + STATE(2971), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67920] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(4945), 1, + sym_crate, + STATE(2327), 1, + sym_string_literal, + STATE(2176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4903), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67950] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_RBRACE, + ACTIONS(4951), 1, + anon_sym_COMMA, + ACTIONS(4953), 1, + sym_crate, + STATE(1254), 1, + sym_attribute_item, + STATE(2300), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3044), 1, + sym_field_declaration, + STATE(3506), 1, + sym_visibility_modifier, + STATE(2177), 2, + sym_line_comment, + sym_block_comment, + [67991] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 10, + ACTIONS(4955), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164044,15 +173944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65477] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68014] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4760), 10, + ACTIONS(4871), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164063,15 +173963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65500] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68037] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 10, + ACTIONS(4957), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164082,15 +173982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65523] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68060] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 10, + ACTIONS(4959), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164101,15 +174001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65546] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68083] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 10, + ACTIONS(4961), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164120,15 +174020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65569] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68106] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 10, + ACTIONS(4963), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164139,41 +174039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65592] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68129] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4770), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2087), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65629] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 10, + ACTIONS(4965), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164184,71 +174058,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65652] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68152] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4776), 1, - anon_sym_RBRACE, - ACTIONS(4778), 1, - anon_sym_COMMA, - ACTIONS(4780), 1, - sym_crate, - STATE(1476), 1, - sym_attribute_item, - STATE(2181), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2762), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2089), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - [65693] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4784), 1, + ACTIONS(4967), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4786), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2187), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2791), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2090), 2, + anon_sym_else, + anon_sym_in, + [68175] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4969), 1, + anon_sym_LBRACE, + STATE(2026), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2186), 2, sym_line_comment, sym_block_comment, - [65734] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [68208] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 10, + ACTIONS(4971), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164259,15 +174120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65757] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68231] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 10, + ACTIONS(4973), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164278,15 +174139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65780] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68254] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 10, + ACTIONS(4975), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164297,15 +174158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65803] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68277] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 10, + ACTIONS(4977), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164316,15 +174177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65826] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68300] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 10, + ACTIONS(4979), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164335,15 +174196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65849] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68323] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 10, + ACTIONS(4981), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164354,15 +174215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65872] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68346] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2097), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 10, + ACTIONS(4983), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164373,15 +174234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65895] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68369] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 10, + ACTIONS(4985), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164392,15 +174253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65918] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68392] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 10, + ACTIONS(4987), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164411,15 +174272,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65941] = 4, - ACTIONS(101), 1, + [68415] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + ACTIONS(4989), 1, + anon_sym_BANG, + STATE(1284), 1, + sym_type_arguments, + STATE(2196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68446] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + ACTIONS(3471), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 10, + ACTIONS(3469), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68481] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4991), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164430,15 +174339,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65964] = 4, - ACTIONS(101), 1, + [68504] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4993), 1, + anon_sym_BANG, + ACTIONS(4995), 1, + anon_sym_DOT_DOT, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4997), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4708), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [68539] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5003), 1, + anon_sym_RBRACE, + ACTIONS(5005), 1, + anon_sym_COMMA, + STATE(1254), 1, + sym_attribute_item, + STATE(2321), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2890), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + [68580] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 10, + ACTIONS(5007), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164449,15 +174411,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65987] = 4, - ACTIONS(101), 1, + [68603] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4891), 1, + anon_sym_DOT_DOT, + ACTIONS(4895), 1, + sym_integer_literal, + ACTIONS(5009), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2202), 2, + sym_line_comment, + sym_block_comment, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68640] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4891), 1, + anon_sym_DOT_DOT, + ACTIONS(4895), 1, + sym_integer_literal, + ACTIONS(5011), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68677] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2102), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 10, + ACTIONS(4861), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164468,15 +174482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66010] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68700] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 10, + ACTIONS(5013), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164487,15 +174501,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66033] = 4, - ACTIONS(101), 1, + [68723] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4775), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + STATE(2206), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68754] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 10, + ACTIONS(1501), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164506,41 +174543,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66056] = 11, - ACTIONS(101), 1, + [68777] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + ACTIONS(5015), 1, + anon_sym_BANG, + STATE(1659), 1, + sym_type_arguments, + STATE(2208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68808] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4812), 1, + ACTIONS(5017), 1, anon_sym_RBRACE, - STATE(1476), 1, + ACTIONS(5019), 1, + anon_sym_COMMA, + STATE(1254), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2313), 1, aux_sym_enum_variant_list_repeat1, - STATE(2105), 2, + STATE(3003), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2209), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66093] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68849] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 10, + ACTIONS(5021), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164551,15 +174613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66116] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68872] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 10, + ACTIONS(5023), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164570,66 +174632,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66139] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68895] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4818), 1, + ACTIONS(4891), 1, + anon_sym_DOT_DOT, + ACTIONS(4895), 1, + sym_integer_literal, + ACTIONS(5025), 1, anon_sym_RBRACE, - ACTIONS(4820), 1, - anon_sym_COMMA, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2188), 1, + STATE(2552), 1, aux_sym_enum_variant_list_repeat1, - STATE(3012), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2108), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - [66180] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68932] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(2100), 1, - sym_block, - STATE(3582), 1, - sym_label, - STATE(2109), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66211] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5027), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68955] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 10, + ACTIONS(5029), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164640,41 +174696,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66234] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68978] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4684), 1, + ACTIONS(4891), 1, anon_sym_DOT_DOT, - ACTIONS(4688), 1, + ACTIONS(4895), 1, sym_integer_literal, - ACTIONS(4824), 1, + ACTIONS(5031), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2552), 1, aux_sym_enum_variant_list_repeat1, - STATE(2111), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, + STATE(3408), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66271] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69015] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 10, + ACTIONS(4919), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164685,64 +174741,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66294] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69038] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4828), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2113), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, + ACTIONS(5033), 10, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [66329] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [69061] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2114), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 5, + ACTIONS(5035), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [66362] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [69084] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 10, + ACTIONS(5037), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164753,139 +174798,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66385] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69107] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4834), 1, - anon_sym_RBRACE, - ACTIONS(4836), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2226), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2814), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2116), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - [66426] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5039), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69130] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4838), 1, - anon_sym_BANG, - ACTIONS(4840), 1, - anon_sym_DOT_DOT, - ACTIONS(4844), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4842), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2117), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_EQ_GT, + ACTIONS(4654), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_if, - [66461] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69153] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(4095), 1, + ACTIONS(3674), 1, anon_sym_COLON_COLON, - ACTIONS(4846), 1, + ACTIONS(4712), 1, anon_sym_BANG, - STATE(1581), 1, + STATE(1284), 1, sym_type_arguments, - STATE(2118), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66492] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69184] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4184), 1, anon_sym_LT2, - ACTIONS(3541), 1, + ACTIONS(4298), 1, anon_sym_COLON_COLON, - ACTIONS(4848), 1, + ACTIONS(4712), 1, anon_sym_BANG, - STATE(1048), 1, + STATE(1659), 1, sym_type_arguments, - STATE(2119), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66523] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69215] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4533), 1, + ACTIONS(5041), 1, anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2120), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RBRACK, + ACTIONS(4654), 3, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [66558] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69250] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2121), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 10, + ACTIONS(5043), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164896,15 +174926,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66581] = 4, - ACTIONS(101), 1, + [69273] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4752), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4708), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [69308] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2122), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 10, + ACTIONS(5045), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164915,83 +174970,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66604] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69331] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4854), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2123), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66641] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - STATE(2124), 2, + ACTIONS(1617), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(2207), 1, + sym_block, + STATE(3770), 1, + sym_label, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66672] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69362] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2125), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66695] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2126), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 10, + ACTIONS(5047), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165002,15 +175012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66718] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69385] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2127), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 10, + ACTIONS(5049), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165021,153 +175031,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66741] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69408] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(2128), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3273), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66765] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - STATE(1476), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5051), 1, + anon_sym_RBRACE, + ACTIONS(5053), 1, + anon_sym_COMMA, + STATE(1254), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(2129), 2, + STATE(2898), 1, + sym_field_declaration, + STATE(3506), 1, + sym_visibility_modifier, + STATE(2231), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66799] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69449] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4611), 1, + ACTIONS(3505), 1, anon_sym_DOT_DOT, - ACTIONS(4862), 1, - anon_sym_COLON_COLON, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2130), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, + ACTIONS(3507), 8, + anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_if, - [66831] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69473] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4864), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5055), 1, anon_sym_for, - STATE(1933), 1, + STATE(2026), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2098), 1, sym_parameters, - STATE(2131), 2, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66863] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69505] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4866), 1, - anon_sym_SEMI, - ACTIONS(4868), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(697), 1, - sym_field_declaration_list, - STATE(2239), 1, - sym_type_parameters, - STATE(2875), 1, - sym_ordered_field_declaration_list, - STATE(3060), 1, - sym_where_clause, - STATE(2132), 2, + STATE(2026), 1, + sym_type_arguments, + STATE(2405), 1, + sym_parameters, + STATE(2234), 2, sym_line_comment, sym_block_comment, - [66901] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3513), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69535] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4876), 1, + ACTIONS(5057), 1, anon_sym_SEMI, - ACTIONS(4878), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(648), 1, + STATE(1272), 1, sym_declaration_list, - STATE(2133), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66929] = 5, - ACTIONS(101), 1, + [69563] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5061), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + STATE(2236), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69591] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3538), 1, anon_sym_DOT_DOT, - STATE(2134), 2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 8, + ACTIONS(3540), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -165176,442 +175184,584 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [66953] = 10, - ACTIONS(101), 1, + [69615] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5063), 1, + anon_sym_SEMI, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1314), 1, + sym_field_declaration_list, + STATE(2366), 1, + sym_type_parameters, + STATE(3164), 1, + sym_ordered_field_declaration_list, + STATE(3445), 1, + sym_where_clause, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + [69653] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_PLUS, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2405), 1, + sym_parameters, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3517), 5, anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4880), 2, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - STATE(2135), 2, + anon_sym_as, + [69683] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_SEMI, + STATE(1321), 1, + sym_declaration_list, + STATE(2240), 2, sym_line_comment, sym_block_comment, - [66987] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69711] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, + ACTIONS(4815), 1, + anon_sym_LPAREN, + ACTIONS(4819), 1, + anon_sym_BANG, + ACTIONS(4823), 1, anon_sym_DOT_DOT, - ACTIONS(4574), 1, + ACTIONS(5075), 1, anon_sym_COLON_COLON, - ACTIONS(4527), 2, + ACTIONS(4825), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2136), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [67019] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4654), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69743] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(4883), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - STATE(1048), 1, + STATE(1284), 1, sym_type_arguments, - STATE(2137), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67047] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69771] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_DOT_DOT, - STATE(2138), 2, + ACTIONS(5079), 1, + anon_sym_move, + STATE(233), 1, + sym_closure_parameters, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67071] = 12, - ACTIONS(67), 1, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69799] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(4885), 1, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5081), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3425), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3794), 1, sym_visibility_modifier, - STATE(2139), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - [67109] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69837] = 12, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4887), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2140), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67141] = 12, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4889), 1, + ACTIONS(5083), 1, anon_sym_SEMI, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1283), 1, + STATE(1423), 1, sym_field_declaration_list, - STATE(2255), 1, + STATE(2363), 1, sym_type_parameters, - STATE(2826), 1, + STATE(2905), 1, sym_ordered_field_declaration_list, - STATE(3136), 1, + STATE(3257), 1, sym_where_clause, - STATE(2141), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - [67179] = 12, - ACTIONS(67), 1, + [69875] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(4893), 1, + ACTIONS(5085), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2142), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - [67217] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, + [69913] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5089), 1, + anon_sym_PLUS, + STATE(2262), 1, + aux_sym_trait_bounds_repeat1, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5087), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69939] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4895), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2143), 2, + ACTIONS(5091), 1, + anon_sym_SEMI, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(551), 1, + sym_declaration_list, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [67255] = 12, - ACTIONS(67), 1, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69967] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(5001), 1, sym_identifier, - ACTIONS(4897), 1, + ACTIONS(5095), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, sym_visibility_modifier, - STATE(2144), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [67293] = 12, - ACTIONS(67), 1, + [70005] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4899), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5097), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3225), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2145), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [67331] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70043] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4903), 1, - anon_sym_PLUS, - STATE(2163), 1, - aux_sym_trait_bounds_repeat1, - STATE(2146), 2, + ACTIONS(3530), 1, + anon_sym_DOT_DOT, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67357] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3532), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [70067] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4905), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5099), 1, anon_sym_for, - STATE(1933), 1, + STATE(2026), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2098), 1, sym_parameters, - STATE(2147), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67389] = 12, - ACTIONS(67), 1, + [70099] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2292), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2253), 2, + sym_line_comment, + sym_block_comment, + [70137] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4907), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5103), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3225), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2148), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [67427] = 5, - ACTIONS(101), 1, + [70175] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2405), 1, + sym_parameters, + STATE(2255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70205] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - STATE(2149), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5105), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2292), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67451] = 11, - ACTIONS(101), 1, + [70243] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5107), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, + sym_visibility_modifier, + STATE(2257), 2, + sym_line_comment, + sym_block_comment, + [70281] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4519), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2405), 1, + sym_parameters, + STATE(2258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3509), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70311] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(4708), 1, anon_sym_PIPE, - ACTIONS(4521), 1, + ACTIONS(4710), 1, anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - ACTIONS(4574), 1, + ACTIONS(4744), 1, anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2150), 2, + ACTIONS(5109), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [67487] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70345] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4184), 1, anon_sym_LT2, - ACTIONS(4909), 1, + ACTIONS(5112), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1659), 1, sym_type_arguments, - STATE(2151), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67515] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70373] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4519), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2152), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5114), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, + sym_visibility_modifier, + STATE(2261), 2, sym_line_comment, sym_block_comment, - [67547] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70411] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, + ACTIONS(5118), 1, anon_sym_PLUS, - STATE(2163), 1, - aux_sym_trait_bounds_repeat1, - STATE(2153), 2, + STATE(2262), 3, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, + aux_sym_trait_bounds_repeat1, + ACTIONS(5116), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -165619,62 +175769,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67573] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70435] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4913), 1, - anon_sym_SEMI, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1301), 1, - sym_declaration_list, - STATE(2154), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67601] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4917), 1, - anon_sym_LPAREN, - ACTIONS(4922), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_LBRACE, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(3418), 1, - sym_macro_rule, - ACTIONS(4920), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2155), 3, + ACTIONS(5089), 1, + anon_sym_PLUS, + STATE(2247), 1, + aux_sym_trait_bounds_repeat1, + STATE(2263), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [67633] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5121), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70461] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(5123), 1, anon_sym_PLUS, - STATE(2156), 3, + STATE(2247), 1, + aux_sym_trait_bounds_repeat1, + STATE(2264), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4928), 7, + ACTIONS(5121), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -165682,26760 +175809,28390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67657] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70487] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4463), 1, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4887), 1, + sym_identifier, + ACTIONS(4891), 1, anon_sym_DOT_DOT, - ACTIONS(4933), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2157), 2, + ACTIONS(4895), 1, + sym_integer_literal, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2265), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [67689] = 12, - ACTIONS(67), 1, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70521] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(4935), 1, + ACTIONS(5125), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2158), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [67727] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70559] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4937), 1, - anon_sym_SEMI, - STATE(479), 1, - sym_field_declaration_list, - STATE(2260), 1, - sym_type_parameters, - STATE(3009), 1, - sym_ordered_field_declaration_list, - STATE(3128), 1, - sym_where_clause, - STATE(2159), 2, + ACTIONS(5127), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2267), 2, sym_line_comment, sym_block_comment, - [67765] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70591] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4939), 1, - anon_sym_SEMI, - STATE(655), 1, - sym_declaration_list, - STATE(2160), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_PIPE, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67793] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70627] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, + ACTIONS(5129), 1, anon_sym_SEMI, - STATE(1187), 1, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(536), 1, sym_field_declaration_list, - STATE(2251), 1, + STATE(2370), 1, sym_type_parameters, - STATE(2813), 1, + STATE(3170), 1, sym_ordered_field_declaration_list, - STATE(3290), 1, + STATE(3463), 1, sym_where_clause, - STATE(2161), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - [67831] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70665] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, - STATE(1581), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5133), 1, + anon_sym_for, + STATE(2026), 1, sym_type_arguments, - STATE(2162), 2, + STATE(2098), 1, + sym_parameters, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67859] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70697] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4752), 1, + anon_sym_COLON_COLON, + ACTIONS(5109), 1, + anon_sym_RBRACK, + ACTIONS(3475), 2, + anon_sym_SEMI, anon_sym_PLUS, - STATE(2156), 1, - aux_sym_trait_bounds_repeat1, - STATE(2163), 2, + ACTIONS(4708), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67885] = 12, - ACTIONS(67), 1, + [70729] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(5001), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5135), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, sym_visibility_modifier, - STATE(2164), 2, - sym_line_comment, - sym_block_comment, - [67923] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4951), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2165), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67955] = 12, - ACTIONS(67), 1, + [70767] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5137), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3425), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3794), 1, sym_visibility_modifier, - STATE(2166), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [67993] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70805] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4955), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2167), 2, + ACTIONS(4708), 1, + anon_sym_PIPE, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2274), 2, sym_line_comment, sym_block_comment, - [68031] = 9, - ACTIONS(101), 1, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70837] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2275), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4654), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [70869] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + ACTIONS(5141), 1, + anon_sym_SEMI, + STATE(525), 1, + sym_field_declaration_list, + STATE(2361), 1, + sym_type_parameters, + STATE(3152), 1, + sym_ordered_field_declaration_list, + STATE(3421), 1, + sym_where_clause, + STATE(2276), 2, + sym_line_comment, + sym_block_comment, + [70907] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4957), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5143), 1, anon_sym_for, - STATE(1933), 1, + STATE(2026), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2098), 1, sym_parameters, - STATE(2168), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68063] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70939] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4959), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2169), 2, - sym_line_comment, - sym_block_comment, - [68101] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4961), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, anon_sym_for, - STATE(1933), 1, + STATE(2026), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2098), 1, sym_parameters, - STATE(2170), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68133] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70971] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4963), 1, + ACTIONS(5147), 1, + anon_sym_LPAREN, + ACTIONS(5152), 1, + anon_sym_LBRACK, + ACTIONS(5155), 1, + anon_sym_LBRACE, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(3785), 1, + sym_macro_rule, + ACTIONS(5150), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2171), 2, + STATE(2279), 3, sym_line_comment, sym_block_comment, - [68171] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_macro_definition_repeat1, + [71003] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4965), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, anon_sym_for, - STATE(1933), 1, + STATE(2026), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2098), 1, sym_parameters, - STATE(2172), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68203] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71035] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PLUS, - STATE(2163), 1, - aux_sym_trait_bounds_repeat1, - STATE(2173), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + anon_sym_SEMI, + STATE(548), 1, + sym_declaration_list, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68229] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71063] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4967), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5162), 1, anon_sym_for, - STATE(1933), 1, + STATE(2026), 1, sym_type_arguments, - STATE(1947), 1, + STATE(2098), 1, sym_parameters, - STATE(2174), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68261] = 7, - ACTIONS(101), 1, + [71095] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3546), 1, + anon_sym_DOT_DOT, + STATE(2283), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3548), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [71119] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4969), 1, - anon_sym_SEMI, - STATE(1201), 1, - sym_declaration_list, - STATE(2175), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4993), 1, + anon_sym_BANG, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68289] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71144] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5166), 1, anon_sym_LT, - STATE(688), 1, + STATE(510), 1, sym_declaration_list, - STATE(2327), 1, + STATE(2410), 1, sym_type_parameters, - STATE(2544), 1, + STATE(2698), 1, sym_trait_bounds, - STATE(3257), 1, + STATE(3338), 1, sym_where_clause, - STATE(2176), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - [68324] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71179] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4928), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3166), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3448), 1, anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - [68345] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5168), 1, + anon_sym_SEMI, + ACTIONS(5170), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_block, + STATE(2514), 1, + sym_where_clause, + STATE(3777), 1, + sym_label, + STATE(2286), 2, + sym_line_comment, + sym_block_comment, + [71214] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4953), 1, + sym_crate, + STATE(1254), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, + sym_visibility_modifier, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + [71249] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + ACTIONS(5172), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5174), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + STATE(2460), 1, + sym_type_parameters, + STATE(3167), 1, + sym_trait_bounds, + STATE(3450), 1, + sym_where_clause, + STATE(2288), 2, + sym_line_comment, + sym_block_comment, + [71284] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - [68366] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5176), 1, + anon_sym_SEMI, + STATE(1361), 1, + sym_block, + STATE(2516), 1, + sym_where_clause, + STATE(3777), 1, + sym_label, + STATE(2289), 2, + sym_line_comment, + sym_block_comment, + [71319] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5178), 1, + anon_sym_SEMI, + ACTIONS(5180), 1, + anon_sym_DASH_GT, + STATE(1373), 1, + sym_block, + STATE(2517), 1, + sym_where_clause, + STATE(3777), 1, + sym_label, + STATE(2290), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68387] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71354] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4977), 1, - anon_sym_SEMI, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(4981), 1, + ACTIONS(5182), 1, + anon_sym_SEMI, + ACTIONS(5184), 1, anon_sym_DASH_GT, - STATE(709), 1, + STATE(1354), 1, sym_block, - STATE(2431), 1, + STATE(2570), 1, sym_where_clause, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2180), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - [68422] = 11, - ACTIONS(67), 1, + [71389] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - STATE(1065), 1, + ACTIONS(5001), 1, + sym_identifier, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2885), 1, + STATE(3399), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3794), 1, sym_visibility_modifier, - STATE(2181), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [68457] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71424] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - ACTIONS(4983), 1, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, anon_sym_SEMI, - ACTIONS(4985), 1, - anon_sym_EQ, - STATE(2383), 1, - sym_type_parameters, - STATE(2976), 1, - sym_trait_bounds, - STATE(3375), 1, + STATE(1115), 1, + sym_block, + STATE(2519), 1, sym_where_clause, - STATE(2182), 2, + STATE(3777), 1, + sym_label, + STATE(2293), 2, sym_line_comment, sym_block_comment, - [68492] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71459] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, + ACTIONS(5188), 1, anon_sym_SEMI, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(635), 1, + STATE(1127), 1, sym_block, - STATE(2419), 1, + STATE(2521), 1, sym_where_clause, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2183), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - [68527] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71494] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4991), 1, + ACTIONS(5190), 1, anon_sym_SEMI, - STATE(486), 1, + STATE(1138), 1, sym_block, - STATE(2420), 1, + STATE(2523), 1, sym_where_clause, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2184), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - [68562] = 11, - ACTIONS(101), 1, + [71529] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + STATE(2327), 1, + sym_string_literal, + STATE(2296), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4903), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71554] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4993), 1, - anon_sym_SEMI, - STATE(624), 1, - sym_block, - STATE(2411), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(1416), 1, + sym_declaration_list, + STATE(2433), 1, + sym_type_parameters, + STATE(2743), 1, + sym_trait_bounds, + STATE(3234), 1, sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2185), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [68597] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71589] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4995), 1, - anon_sym_SEMI, - ACTIONS(4997), 1, - anon_sym_LBRACE, - STATE(1156), 1, - sym_block, - STATE(2410), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2186), 2, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5194), 1, + anon_sym_RBRACE, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5198), 1, + anon_sym_COMMA, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [68632] = 11, - ACTIONS(67), 1, + STATE(2941), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71622] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4947), 1, sym_identifier, - STATE(1065), 1, + ACTIONS(4953), 1, + sym_crate, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2917), 1, + STATE(3237), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2187), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [68667] = 11, - ACTIONS(67), 1, + [71657] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - STATE(1065), 1, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2783), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3122), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2188), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [68702] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71692] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5116), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4979), 1, + [71713] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5116), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(4999), 1, - anon_sym_SEMI, - STATE(542), 1, - sym_block, - STATE(2432), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2189), 2, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [71734] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2303), 2, sym_line_comment, sym_block_comment, - [68737] = 11, - ACTIONS(101), 1, + ACTIONS(5116), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [71755] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5207), 1, + anon_sym_fn, + ACTIONS(5209), 1, + anon_sym_extern, + STATE(2461), 1, + sym_extern_modifier, + STATE(2304), 3, + sym_line_comment, + sym_block_comment, + aux_sym_function_modifiers_repeat1, + ACTIONS(5204), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [71782] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(5212), 1, anon_sym_SEMI, - STATE(1166), 1, + ACTIONS(5214), 1, + anon_sym_LBRACE, + STATE(697), 1, sym_block, - STATE(2412), 1, + STATE(2590), 1, sym_where_clause, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2190), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [68772] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71817] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5003), 1, + ACTIONS(5216), 1, anon_sym_SEMI, - ACTIONS(5005), 1, + ACTIONS(5218), 1, anon_sym_DASH_GT, - STATE(743), 1, + STATE(1154), 1, sym_block, - STATE(2490), 1, + STATE(2595), 1, sym_where_clause, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2191), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - [68807] = 11, - ACTIONS(101), 1, + [71852] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5220), 1, + anon_sym_RBRACE, + ACTIONS(5222), 1, + anon_sym_COMMA, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + STATE(2880), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71885] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5007), 1, - anon_sym_SEMI, - STATE(1397), 1, - sym_block, - STATE(2445), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(1315), 1, + sym_declaration_list, + STATE(2457), 1, + sym_type_parameters, + STATE(2651), 1, + sym_trait_bounds, + STATE(3448), 1, sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2192), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [68842] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71920] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5009), 1, + ACTIONS(5224), 1, anon_sym_SEMI, - STATE(1176), 1, + STATE(779), 1, sym_block, - STATE(2413), 1, + STATE(2545), 1, sym_where_clause, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2193), 2, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [68877] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71955] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5011), 1, - anon_sym_SEMI, - ACTIONS(5013), 1, - anon_sym_DASH_GT, - STATE(517), 1, - sym_block, - STATE(2492), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2194), 2, + ACTIONS(4696), 1, + anon_sym_trait, + ACTIONS(5226), 1, + anon_sym_impl, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [68912] = 11, - ACTIONS(101), 1, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71980] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2311), 2, + sym_line_comment, + sym_block_comment, + [72013] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5015), 1, + ACTIONS(5230), 1, anon_sym_SEMI, - STATE(576), 1, + STATE(522), 1, sym_block, - STATE(2457), 1, + STATE(2548), 1, sym_where_clause, - STATE(3586), 1, + STATE(3774), 1, sym_label, - STATE(2195), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [68947] = 11, - ACTIONS(101), 1, + [72048] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(3059), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + [72083] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5017), 1, + ACTIONS(5232), 1, anon_sym_SEMI, - ACTIONS(5019), 1, + ACTIONS(5234), 1, anon_sym_DASH_GT, - STATE(662), 1, + STATE(746), 1, sym_block, - STATE(2398), 1, + STATE(2586), 1, sym_where_clause, - STATE(3586), 1, + STATE(3774), 1, sym_label, - STATE(2196), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [68982] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72118] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5236), 1, anon_sym_SEMI, - ACTIONS(5023), 1, + ACTIONS(5238), 1, anon_sym_DASH_GT, - STATE(1236), 1, + STATE(643), 1, sym_block, - STATE(2437), 1, + STATE(2606), 1, sym_where_clause, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2197), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - [69017] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72153] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1188), 1, - sym_declaration_list, - STATE(2293), 1, - sym_type_parameters, - STATE(2513), 1, - sym_trait_bounds, - STATE(3293), 1, - sym_where_clause, - STATE(2198), 2, - sym_line_comment, - sym_block_comment, - [69052] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5166), 1, anon_sym_LT, - STATE(1271), 1, - sym_declaration_list, - STATE(2310), 1, + ACTIONS(5240), 1, + anon_sym_SEMI, + ACTIONS(5242), 1, + anon_sym_EQ, + STATE(2442), 1, sym_type_parameters, - STATE(2542), 1, + STATE(2889), 1, sym_trait_bounds, - STATE(3123), 1, + STATE(3253), 1, sym_where_clause, - STATE(2199), 2, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [69087] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72188] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(625), 1, - sym_declaration_list, - STATE(2313), 1, - sym_type_parameters, - STATE(2562), 1, - sym_trait_bounds, - STATE(3208), 1, - sym_where_clause, - STATE(2200), 2, - sym_line_comment, - sym_block_comment, - [69122] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - STATE(2201), 2, + ACTIONS(5244), 1, + anon_sym_fn, + ACTIONS(5246), 1, + anon_sym_extern, + STATE(2304), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(4682), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [69147] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72217] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5025), 1, + ACTIONS(5248), 1, anon_sym_SEMI, - ACTIONS(5027), 1, + ACTIONS(5250), 1, anon_sym_DASH_GT, - STATE(1429), 1, + STATE(595), 1, sym_block, - STATE(2397), 1, + STATE(2583), 1, sym_where_clause, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2202), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - [69182] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72252] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4507), 1, - anon_sym_trait, - ACTIONS(5029), 1, - anon_sym_impl, - STATE(2203), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69207] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5252), 1, anon_sym_SEMI, - ACTIONS(5033), 1, + ACTIONS(5254), 1, anon_sym_DASH_GT, - STATE(1445), 1, + STATE(663), 1, sym_block, - STATE(2399), 1, + STATE(2557), 1, sym_where_clause, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2204), 2, - sym_line_comment, - sym_block_comment, - [69242] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(3189), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2205), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [69277] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72287] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_fn, - ACTIONS(5037), 1, - anon_sym_extern, - STATE(2220), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2206), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4469), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69306] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4928), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3448), 1, anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - [69327] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2208), 2, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5256), 1, + anon_sym_SEMI, + ACTIONS(5258), 1, + anon_sym_DASH_GT, + STATE(1196), 1, + sym_block, + STATE(2600), 1, + sym_where_clause, + STATE(3777), 1, + sym_label, + STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69348] = 11, - ACTIONS(67), 1, + [72322] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(5001), 1, sym_identifier, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2209), 2, - sym_line_comment, - sym_block_comment, - [69383] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(2925), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3794), 1, sym_visibility_modifier, - STATE(2210), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [69418] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72357] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(5043), 1, - anon_sym_COMMA, - ACTIONS(5045), 1, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - STATE(2211), 2, + ACTIONS(5260), 1, + anon_sym_RBRACE, + ACTIONS(5262), 1, + anon_sym_COMMA, + STATE(2322), 2, sym_line_comment, sym_block_comment, - STATE(2937), 2, + STATE(3117), 2, sym_field_pattern, sym_remaining_field_pattern, - [69451] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, + [72390] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(1205), 1, + sym_declaration_list, + STATE(2495), 1, + sym_type_parameters, + STATE(2841), 1, + sym_trait_bounds, + STATE(3233), 1, + sym_where_clause, + STATE(2323), 2, + sym_line_comment, + sym_block_comment, + [72425] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4953), 1, sym_crate, - STATE(1065), 1, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1254), 1, sym_attribute_item, - STATE(3084), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(2937), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2212), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [69486] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72460] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - STATE(2179), 1, - sym_string_literal, - STATE(2213), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4702), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69511] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5166), 1, anon_sym_LT, - STATE(752), 1, + STATE(605), 1, sym_declaration_list, - STATE(2388), 1, + STATE(2504), 1, sym_type_parameters, - STATE(2660), 1, + STATE(2870), 1, sym_trait_bounds, - STATE(3038), 1, + STATE(3344), 1, sym_where_clause, - STATE(2214), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - [69546] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72495] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5049), 1, - anon_sym_SEMI, - ACTIONS(5051), 1, - anon_sym_DASH_GT, - STATE(1316), 1, - sym_block, - STATE(2389), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2215), 2, - sym_line_comment, - sym_block_comment, - [69581] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5053), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2216), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + STATE(1254), 1, + sym_attribute_item, + STATE(2292), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2326), 2, sym_line_comment, sym_block_comment, - [69614] = 11, - ACTIONS(101), 1, + [72530] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5264), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72551] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5266), 1, anon_sym_SEMI, - ACTIONS(5057), 1, + ACTIONS(5268), 1, anon_sym_DASH_GT, - STATE(531), 1, + STATE(559), 1, sym_block, - STATE(2459), 1, + STATE(2558), 1, sym_where_clause, - STATE(3586), 1, + STATE(3774), 1, sym_label, - STATE(2217), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [69649] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72586] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5059), 1, - anon_sym_SEMI, - STATE(1455), 1, - sym_block, - STATE(2404), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(539), 1, + sym_declaration_list, + STATE(2414), 1, + sym_type_parameters, + STATE(2711), 1, + sym_trait_bounds, + STATE(3495), 1, sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2218), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - [69684] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72621] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, + ACTIONS(5270), 1, anon_sym_SEMI, - ACTIONS(5063), 1, - anon_sym_DASH_GT, - STATE(585), 1, + STATE(1219), 1, sym_block, - STATE(2465), 1, + STATE(2609), 1, sym_where_clause, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2219), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [69719] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72656] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_fn, - ACTIONS(5070), 1, - anon_sym_extern, - STATE(2320), 1, - sym_extern_modifier, - STATE(2220), 3, - sym_line_comment, - sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5065), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69746] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(5075), 1, - anon_sym_COMMA, - STATE(2221), 2, - sym_line_comment, - sym_block_comment, - STATE(3022), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69779] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(5196), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5077), 1, + ACTIONS(5272), 1, anon_sym_RBRACE, - ACTIONS(5079), 1, + ACTIONS(5274), 1, anon_sym_COMMA, - STATE(2222), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - STATE(2738), 2, + STATE(2879), 2, sym_field_pattern, sym_remaining_field_pattern, - [69812] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72689] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2223), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4928), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69833] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(5276), 1, anon_sym_SEMI, - STATE(1115), 1, + ACTIONS(5278), 1, + anon_sym_DASH_GT, + STATE(1256), 1, sym_block, - STATE(2408), 1, + STATE(2510), 1, sym_where_clause, - STATE(3589), 1, + STATE(3777), 1, sym_label, - STATE(2224), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [69868] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72724] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - STATE(614), 1, + ACTIONS(5282), 1, + anon_sym_DASH_GT, + STATE(1277), 1, sym_block, - STATE(2474), 1, + STATE(2512), 1, sym_where_clause, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2225), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - [69903] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72759] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2994), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2226), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5284), 1, + anon_sym_SEMI, + STATE(626), 1, + sym_block, + STATE(2565), 1, + sym_where_clause, + STATE(3774), 1, + sym_label, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [69938] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72794] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5085), 1, + ACTIONS(5286), 1, anon_sym_SEMI, - ACTIONS(5087), 1, - anon_sym_DASH_GT, - STATE(1124), 1, + STATE(509), 1, sym_block, - STATE(2409), 1, + STATE(2582), 1, sym_where_clause, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2227), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - [69973] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72829] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5089), 1, + ACTIONS(5288), 1, anon_sym_SEMI, - ACTIONS(5091), 1, + ACTIONS(5290), 1, anon_sym_DASH_GT, - STATE(1359), 1, + STATE(678), 1, sym_block, - STATE(2486), 1, + STATE(2571), 1, sym_where_clause, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2228), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [70008] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72864] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1372), 1, - sym_declaration_list, - STATE(2325), 1, - sym_type_parameters, - STATE(2561), 1, - sym_trait_bounds, - STATE(3234), 1, + ACTIONS(5292), 1, + anon_sym_SEMI, + STATE(736), 1, + sym_block, + STATE(2578), 1, sym_where_clause, - STATE(2229), 2, + STATE(3774), 1, + sym_label, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [70043] = 10, - ACTIONS(101), 1, + [72899] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5296), 1, + anon_sym_RPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + STATE(2352), 1, + aux_sym_macro_definition_repeat1, + STATE(3364), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2338), 2, + sym_line_comment, + sym_block_comment, + [72931] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5093), 1, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5304), 1, + anon_sym_EQ, + ACTIONS(5302), 2, anon_sym_RBRACE, - ACTIONS(5095), 1, anon_sym_COMMA, - STATE(2230), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - STATE(2870), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70076] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3056), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [72959] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - ACTIONS(5097), 1, - anon_sym_SEMI, - ACTIONS(5099), 1, - anon_sym_EQ, - STATE(2294), 1, - sym_type_parameters, - STATE(2833), 1, - sym_trait_bounds, - STATE(3576), 1, - sym_where_clause, - STATE(2231), 2, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5308), 1, + anon_sym_STAR, + STATE(3139), 1, + sym_use_list, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [70111] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72989] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5101), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2232), 2, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + ACTIONS(5310), 1, + anon_sym_RBRACE, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3355), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [70137] = 7, - ACTIONS(101), 1, + [73021] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + ACTIONS(5312), 1, + anon_sym_RBRACE, + STATE(2385), 1, + aux_sym_macro_definition_repeat1, + STATE(3483), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2342), 2, + sym_line_comment, + sym_block_comment, + [73053] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4840), 1, + ACTIONS(4995), 1, anon_sym_DOT_DOT, - ACTIONS(4844), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4842), 2, + ACTIONS(4997), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2233), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(4708), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [70163] = 9, - ACTIONS(101), 1, + [73079] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5296), 1, + anon_sym_RBRACK, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + STATE(2353), 1, + aux_sym_macro_definition_repeat1, + STATE(3366), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2344), 2, + sym_line_comment, + sym_block_comment, + [73111] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(2234), 2, + ACTIONS(5314), 1, + anon_sym_RPAREN, + STATE(2354), 1, + aux_sym_macro_definition_repeat1, + STATE(3367), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [70193] = 9, - ACTIONS(101), 1, + [73143] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + ACTIONS(5314), 1, + anon_sym_RBRACK, + STATE(2355), 1, + aux_sym_macro_definition_repeat1, + STATE(3368), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2346), 2, + sym_line_comment, + sym_block_comment, + [73175] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5316), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(484), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2347), 2, + sym_line_comment, + sym_block_comment, + [73207] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5107), 1, + ACTIONS(5318), 1, anon_sym_RBRACE, - STATE(2235), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [70223] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73237] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5103), 2, + ACTIONS(5320), 1, sym_identifier, - sym_super, - STATE(2236), 2, + ACTIONS(5322), 1, + anon_sym_async, + ACTIONS(5324), 1, + anon_sym_ref, + ACTIONS(5326), 1, + sym_mutable_specifier, + ACTIONS(5328), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [70253] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73269] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5109), 1, + ACTIONS(5330), 1, anon_sym_RBRACE, - STATE(2237), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [70283] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73299] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(4891), 1, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_RBRACK, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5113), 1, + ACTIONS(5340), 1, anon_sym_EQ, - ACTIONS(5111), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2238), 2, + STATE(3534), 1, + sym_delim_token_tree, + STATE(2351), 2, sym_line_comment, sym_block_comment, - STATE(2769), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70311] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73331] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5115), 1, - anon_sym_SEMI, - STATE(749), 1, - sym_field_declaration_list, - STATE(3002), 1, - sym_ordered_field_declaration_list, - STATE(3251), 1, - sym_where_clause, - STATE(2239), 2, + ACTIONS(5342), 1, + anon_sym_RPAREN, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3388), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2352), 2, sym_line_comment, sym_block_comment, - [70343] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73363] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5117), 1, - sym_identifier, - STATE(2240), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70365] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - STATE(2254), 1, + ACTIONS(5342), 1, + anon_sym_RBRACK, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3074), 1, + STATE(3389), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2241), 2, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [70397] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73395] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RBRACK, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - STATE(2256), 1, + ACTIONS(5344), 1, + anon_sym_RPAREN, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3141), 1, + STATE(3390), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2242), 2, + STATE(2354), 2, sym_line_comment, sym_block_comment, - [70429] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73427] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5127), 1, - anon_sym_RBRACE, - STATE(2258), 1, + ACTIONS(5344), 1, + anon_sym_RBRACK, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3150), 1, + STATE(3391), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2243), 2, + STATE(2355), 2, + sym_line_comment, + sym_block_comment, + [73459] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5346), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2356), 2, + sym_line_comment, + sym_block_comment, + [73487] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5346), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2357), 2, + sym_line_comment, + sym_block_comment, + [73515] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2358), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73541] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2359), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73567] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5354), 1, + anon_sym_move, + STATE(220), 1, + sym_closure_parameters, + STATE(1811), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2360), 2, + sym_line_comment, + sym_block_comment, + [73599] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + ACTIONS(5356), 1, + anon_sym_SEMI, + STATE(692), 1, + sym_field_declaration_list, + STATE(3061), 1, + sym_ordered_field_declaration_list, + STATE(3247), 1, + sym_where_clause, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [70461] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73631] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5358), 1, anon_sym_RPAREN, - STATE(2259), 1, + STATE(2378), 1, aux_sym_macro_definition_repeat1, - STATE(3162), 1, + STATE(3427), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2244), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [70493] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73663] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - anon_sym_RBRACK, - STATE(2289), 1, - aux_sym_macro_definition_repeat1, - STATE(3169), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2245), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5360), 1, + anon_sym_SEMI, + STATE(1202), 1, + sym_field_declaration_list, + STATE(2943), 1, + sym_ordered_field_declaration_list, + STATE(3230), 1, + sym_where_clause, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [70525] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73695] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5131), 1, - anon_sym_RBRACE, - STATE(2263), 1, + ACTIONS(5358), 1, + anon_sym_RBRACK, + STATE(2380), 1, aux_sym_macro_definition_repeat1, - STATE(3192), 1, + STATE(3436), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2246), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - [70557] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73727] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5133), 1, + ACTIONS(5362), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2382), 1, aux_sym_macro_definition_repeat1, - STATE(3047), 1, + STATE(3438), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2247), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [70589] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73759] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, - anon_sym_RBRACE, - STATE(2253), 1, - aux_sym_macro_definition_repeat1, - STATE(3053), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2248), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5364), 1, + anon_sym_SEMI, + STATE(1405), 1, + sym_field_declaration_list, + STATE(2899), 1, + sym_ordered_field_declaration_list, + STATE(3206), 1, + sym_where_clause, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [70621] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73791] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5308), 1, + anon_sym_STAR, + STATE(3139), 1, + sym_use_list, + STATE(3591), 1, + sym_type_arguments, + ACTIONS(5306), 2, sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5137), 1, - anon_sym_RBRACE, - STATE(2249), 2, + sym_super, + STATE(2367), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70651] = 9, - ACTIONS(101), 1, + [73821] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + anon_sym_EQ, + ACTIONS(5366), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2368), 2, + sym_line_comment, + sym_block_comment, + STATE(3177), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73849] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5139), 1, + ACTIONS(5370), 1, anon_sym_RBRACE, - STATE(2250), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [70681] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73879] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - ACTIONS(5141), 1, + ACTIONS(5372), 1, anon_sym_SEMI, - STATE(1255), 1, + STATE(602), 1, sym_field_declaration_list, - STATE(2793), 1, + STATE(2949), 1, sym_ordered_field_declaration_list, - STATE(3115), 1, + STATE(3245), 1, sym_where_clause, - STATE(2251), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [70713] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73911] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5374), 1, anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3151), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2252), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [70745] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73941] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5145), 1, - anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3155), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2253), 2, + ACTIONS(5376), 1, + anon_sym_trait, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [70777] = 10, - ACTIONS(101), 1, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73963] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5378), 1, + sym_identifier, + STATE(2373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4943), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73985] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5334), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5147), 1, - anon_sym_RPAREN, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3224), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2254), 2, + ACTIONS(5380), 1, + anon_sym_RBRACK, + ACTIONS(5382), 1, + anon_sym_EQ, + STATE(3595), 1, + sym_delim_token_tree, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [70809] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74017] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_SEMI, - STATE(1368), 1, - sym_field_declaration_list, - STATE(2933), 1, - sym_ordered_field_declaration_list, - STATE(3231), 1, - sym_where_clause, - STATE(2255), 2, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5384), 1, + anon_sym_RBRACE, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [70841] = 10, - ACTIONS(101), 1, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74047] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5147), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3245), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2256), 2, + ACTIONS(5386), 1, + aux_sym_line_comment_token1, + ACTIONS(5388), 1, + aux_sym_line_comment_token3, + ACTIONS(5390), 1, + anon_sym_BANG2, + ACTIONS(5392), 1, + anon_sym_SLASH2, + STATE(3567), 1, + sym__inner_line_doc_comment_marker, + STATE(3677), 1, + sym__line_doc_comment_marker, + STATE(3789), 1, + sym__outer_line_doc_comment_marker, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [70873] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74079] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(5153), 1, - anon_sym_COLON, - ACTIONS(5155), 1, + ACTIONS(5394), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2257), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - [70901] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [74105] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5157), 1, - anon_sym_RBRACE, - STATE(2155), 1, + ACTIONS(5396), 1, + anon_sym_RPAREN, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3248), 1, + STATE(3295), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2258), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [70933] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74137] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(2155), 1, + ACTIONS(5398), 1, + anon_sym_RBRACE, + STATE(2341), 1, aux_sym_macro_definition_repeat1, - STATE(3279), 1, + STATE(3485), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2259), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [70965] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74169] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5161), 1, - anon_sym_SEMI, - STATE(677), 1, - sym_field_declaration_list, - STATE(2862), 1, - sym_ordered_field_declaration_list, - STATE(3144), 1, - sym_where_clause, - STATE(2260), 2, + ACTIONS(5396), 1, + anon_sym_RBRACK, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3363), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2380), 2, sym_line_comment, sym_block_comment, - [70997] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74201] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5163), 1, - anon_sym_RBRACE, - STATE(2261), 2, - sym_line_comment, - sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71027] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5165), 1, + ACTIONS(5400), 1, anon_sym_RBRACE, - STATE(2262), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [71057] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74231] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5167), 1, + ACTIONS(5402), 1, anon_sym_RBRACE, - STATE(2155), 1, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3288), 1, + STATE(3371), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2263), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [71089] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74263] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5169), 1, - anon_sym_RBRACE, - STATE(2264), 2, - sym_line_comment, - sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71119] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5171), 1, + ACTIONS(5404), 1, anon_sym_RBRACE, - STATE(2265), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [71149] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74293] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5173), 1, - sym_identifier, - STATE(2266), 2, + ACTIONS(5406), 1, + anon_sym_trait, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71171] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74315] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_RBRACK, - ACTIONS(5181), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5183), 1, - anon_sym_EQ, - STATE(3490), 1, - sym_delim_token_tree, - STATE(2267), 2, + ACTIONS(5408), 1, + anon_sym_RBRACE, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3334), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [71203] = 10, - ACTIONS(101), 1, + [74347] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5410), 1, + sym_identifier, + STATE(2386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4943), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74369] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4694), 1, + ACTIONS(4875), 1, anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5334), 1, anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, + ACTIONS(5380), 1, anon_sym_RBRACK, - ACTIONS(5187), 1, + ACTIONS(5382), 1, anon_sym_EQ, - STATE(3415), 1, + STATE(3595), 1, sym_delim_token_tree, - STATE(2268), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - [71235] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74401] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2269), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5412), 1, + anon_sym_move, + STATE(215), 1, + sym_closure_parameters, + STATE(1463), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2388), 2, sym_line_comment, sym_block_comment, - [71267] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74433] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(5191), 1, - anon_sym_EQ, - ACTIONS(5189), 2, - anon_sym_RBRACE, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5416), 1, + anon_sym_COLON, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5414), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2270), 2, + STATE(2389), 2, sym_line_comment, sym_block_comment, - STATE(2831), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [71295] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74461] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2271), 2, + ACTIONS(5420), 1, + anon_sym_RPAREN, + STATE(2396), 1, + aux_sym_macro_definition_repeat1, + STATE(3480), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [71327] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74493] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5193), 1, - anon_sym_trait, - STATE(2272), 2, + ACTIONS(5422), 1, + sym_identifier, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(4943), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71349] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74515] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(2277), 1, - aux_sym_macro_definition_repeat1, - STATE(3222), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2273), 2, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5424), 1, + anon_sym_RBRACE, + STATE(2392), 2, sym_line_comment, sym_block_comment, - [71381] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74545] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5195), 1, + ACTIONS(5420), 1, anon_sym_RBRACK, - STATE(2278), 1, + STATE(2399), 1, aux_sym_macro_definition_repeat1, - STATE(3223), 1, + STATE(3494), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2274), 2, + STATE(2393), 2, sym_line_comment, sym_block_comment, - [71413] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74577] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_RPAREN, - STATE(2279), 1, + ACTIONS(5426), 1, + anon_sym_RBRACE, + STATE(2395), 1, aux_sym_macro_definition_repeat1, - STATE(3225), 1, + STATE(3329), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2275), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [71445] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74609] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_RBRACK, - STATE(2280), 1, + ACTIONS(5428), 1, + anon_sym_RBRACE, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3226), 1, + STATE(3400), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2276), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - [71477] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74641] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, + ACTIONS(5430), 1, anon_sym_RPAREN, - STATE(2155), 1, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3241), 1, + STATE(3382), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2277), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - [71509] = 10, - ACTIONS(101), 1, + [74673] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5432), 1, + sym_identifier, + STATE(2397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4943), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74695] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3242), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2278), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5434), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(1463), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2398), 2, sym_line_comment, sym_block_comment, - [71541] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74727] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(2155), 1, + ACTIONS(5430), 1, + anon_sym_RBRACK, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3243), 1, + STATE(3387), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2279), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [71573] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74759] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5334), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, + ACTIONS(5380), 1, anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3244), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2280), 2, + ACTIONS(5382), 1, + anon_sym_EQ, + STATE(3595), 1, + sym_delim_token_tree, + STATE(2400), 2, sym_line_comment, sym_block_comment, - [71605] = 8, - ACTIONS(101), 1, + [74791] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5436), 1, + anon_sym_move, + STATE(255), 1, + sym_closure_parameters, + STATE(1463), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2401), 2, + sym_line_comment, + sym_block_comment, + [74823] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5205), 1, + ACTIONS(5438), 1, + anon_sym_DASH_GT, + STATE(2402), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3770), 5, anon_sym_COLON, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - STATE(2281), 2, + anon_sym_as, + [74844] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5127), 1, + anon_sym_for, + STATE(2403), 2, sym_line_comment, sym_block_comment, - [71633] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74867] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2282), 2, + ACTIONS(5440), 1, + anon_sym_DASH_GT, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, + ACTIONS(3790), 5, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [71659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [74888] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - sym_identifier, - STATE(2283), 2, + ACTIONS(5442), 1, + anon_sym_DASH_GT, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71681] = 8, - ACTIONS(101), 1, + ACTIONS(3752), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74909] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(232), 1, + sym_closure_parameters, + STATE(412), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2406), 2, + sym_line_comment, + sym_block_comment, + [74938] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5205), 1, - anon_sym_COLON, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, - anon_sym_RPAREN, + ACTIONS(5446), 1, anon_sym_COMMA, - STATE(2284), 2, + STATE(2407), 3, sym_line_comment, sym_block_comment, - [71709] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_where_clause_repeat1, + ACTIONS(5444), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [74959] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4813), 1, anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, + STATE(2408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4811), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2285), 2, + anon_sym_if, + [74980] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5449), 1, + anon_sym_DASH_GT, + STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, + ACTIONS(3746), 5, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [71735] = 10, - ACTIONS(3), 1, + anon_sym_as, + [75001] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5213), 1, - aux_sym_line_comment_token1, - ACTIONS(5215), 1, - aux_sym_line_comment_token3, - ACTIONS(5217), 1, - anon_sym_BANG2, - ACTIONS(5219), 1, - anon_sym_SLASH2, - STATE(3319), 1, - sym__inner_line_doc_comment_marker, - STATE(3333), 1, - sym__line_doc_comment_marker, - STATE(3341), 1, - sym__outer_line_doc_comment_marker, - STATE(2286), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(592), 1, + sym_declaration_list, + STATE(2620), 1, + sym_trait_bounds, + STATE(3456), 1, + sym_where_clause, + STATE(2410), 2, sym_line_comment, sym_block_comment, - [71767] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75030] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5221), 1, - anon_sym_trait, - STATE(2287), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5451), 1, + anon_sym_GT, + ACTIONS(5453), 1, + anon_sym_COMMA, + STATE(2912), 1, + sym_trait_bounds, + STATE(2913), 1, + aux_sym_type_arguments_repeat1, + STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71789] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75059] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5223), 1, - sym_identifier, - STATE(2288), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5455), 1, + anon_sym_SEMI, + STATE(1325), 1, + sym_declaration_list, + STATE(2975), 1, + sym_where_clause, + STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71811] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75088] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3284), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2289), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5457), 1, + anon_sym_SEMI, + STATE(1328), 1, + sym_declaration_list, + STATE(2976), 1, + sym_where_clause, + STATE(2413), 2, sym_line_comment, sym_block_comment, - [71843] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75117] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5225), 1, - anon_sym_SEMI, - STATE(1401), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(716), 1, sym_declaration_list, - STATE(2969), 1, + STATE(2667), 1, + sym_trait_bounds, + STATE(3263), 1, sym_where_clause, - STATE(2290), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - [71872] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75146] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5227), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5459), 1, anon_sym_SEMI, - STATE(1242), 1, + STATE(1346), 1, sym_declaration_list, - STATE(2781), 1, + STATE(2979), 1, sym_where_clause, - STATE(2291), 2, + STATE(2415), 2, sym_line_comment, sym_block_comment, - [71901] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75175] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2292), 2, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_enum_variant_list, + STATE(2877), 1, + sym_type_parameters, + STATE(3442), 1, + sym_where_clause, + STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [71922] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75204] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1259), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5463), 1, + anon_sym_SEMI, + STATE(1349), 1, sym_declaration_list, - STATE(2540), 1, - sym_trait_bounds, - STATE(3117), 1, + STATE(2980), 1, sym_where_clause, - STATE(2293), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - [71951] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75233] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5229), 1, + ACTIONS(5465), 1, anon_sym_SEMI, - ACTIONS(5231), 1, - anon_sym_EQ, - STATE(2801), 1, - sym_trait_bounds, - STATE(3359), 1, + STATE(1351), 1, + sym_declaration_list, + STATE(2983), 1, sym_where_clause, - STATE(2294), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - [71980] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75262] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5233), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5467), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1356), 1, sym_declaration_list, - STATE(2811), 1, + STATE(2984), 1, sym_where_clause, - STATE(2295), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - [72009] = 9, - ACTIONS(101), 1, + [75291] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(232), 1, + sym_closure_parameters, + STATE(1526), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2420), 2, + sym_line_comment, + sym_block_comment, + [75320] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5235), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(1279), 1, + STATE(1304), 1, sym_enum_variant_list, - STATE(2543), 1, + STATE(2638), 1, sym_type_parameters, - STATE(3129), 1, + STATE(3428), 1, sym_where_clause, - STATE(2296), 2, + STATE(2421), 2, + sym_line_comment, + sym_block_comment, + [75349] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5471), 1, + anon_sym_if, + STATE(3714), 1, + sym_label, + STATE(1441), 2, + sym_if_expression, + sym_block, + STATE(2422), 2, sym_line_comment, sym_block_comment, - [72038] = 9, - ACTIONS(101), 1, + [75376] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5473), 1, + anon_sym_SEMI, + STATE(1309), 1, + sym_declaration_list, + STATE(3162), 1, + sym_where_clause, + STATE(2423), 2, + sym_line_comment, + sym_block_comment, + [75405] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - STATE(1284), 1, + STATE(537), 1, sym_field_declaration_list, - STATE(2545), 1, + STATE(2780), 1, sym_type_parameters, - STATE(3137), 1, + STATE(3486), 1, sym_where_clause, - STATE(2297), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [72067] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75434] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5237), 1, - anon_sym_GT, - ACTIONS(5239), 1, + ACTIONS(5477), 1, anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2869), 1, - aux_sym_type_parameters_repeat1, - STATE(2298), 2, + STATE(2471), 1, + aux_sym_where_clause_repeat1, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [72096] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [75457] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - STATE(2299), 2, + ACTIONS(3610), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4959), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5479), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [72117] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75480] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2300), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5482), 1, + anon_sym_SEMI, + STATE(1160), 1, + sym_declaration_list, + STATE(2929), 1, + sym_where_clause, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [72146] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75509] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2301), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5484), 1, + anon_sym_SEMI, + STATE(1400), 1, + sym_declaration_list, + STATE(2992), 1, + sym_where_clause, + STATE(2428), 2, sym_line_comment, sym_block_comment, - [72175] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75538] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5247), 1, - anon_sym_RBRACK, - ACTIONS(4760), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2302), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5486), 1, + anon_sym_SEMI, + STATE(1403), 1, + sym_declaration_list, + STATE(2993), 1, + sym_where_clause, + STATE(2429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [72198] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75567] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5250), 1, - anon_sym_GT, - ACTIONS(5252), 1, - anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2772), 1, - aux_sym_type_parameters_repeat1, - STATE(2303), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5488), 1, + anon_sym_SEMI, + STATE(1165), 1, + sym_declaration_list, + STATE(2931), 1, + sym_where_clause, + STATE(2430), 2, sym_line_comment, sym_block_comment, - [72227] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75596] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2304), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + anon_sym_SEMI, + STATE(628), 1, + sym_declaration_list, + STATE(2888), 1, + sym_where_clause, + STATE(2431), 2, sym_line_comment, sym_block_comment, - [72252] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75625] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5254), 1, - anon_sym_if, - STATE(3539), 1, - sym_label, - STATE(1321), 2, - sym_if_expression, - sym_block, - STATE(2305), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5492), 1, + anon_sym_SEMI, + STATE(1187), 1, + sym_declaration_list, + STATE(2940), 1, + sym_where_clause, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [72279] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75654] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5256), 1, - anon_sym_GT, - ACTIONS(5258), 1, - anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2890), 1, - aux_sym_type_parameters_repeat1, - STATE(2306), 2, + STATE(1194), 1, + sym_declaration_list, + STATE(2833), 1, + sym_trait_bounds, + STATE(3219), 1, + sym_where_clause, + STATE(2433), 2, sym_line_comment, sym_block_comment, - [72308] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75683] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5260), 1, + ACTIONS(5494), 1, anon_sym_SEMI, - STATE(1328), 1, + STATE(615), 1, sym_declaration_list, - STATE(2892), 1, + STATE(3001), 1, sym_where_clause, - STATE(2307), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [72337] = 9, - ACTIONS(101), 1, + [75712] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3734), 1, + anon_sym_COLON, + ACTIONS(5496), 1, + anon_sym_EQ, + STATE(2435), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3732), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [75735] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5262), 1, + ACTIONS(5498), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(568), 1, sym_declaration_list, - STATE(2901), 1, + STATE(3089), 1, sym_where_clause, - STATE(2308), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - [72366] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75764] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(5264), 1, - anon_sym_SEMI, - STATE(1351), 1, - sym_declaration_list, - STATE(2921), 1, - sym_where_clause, - STATE(2309), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5500), 1, + anon_sym_GT, + ACTIONS(5502), 1, + anon_sym_COMMA, + STATE(2966), 1, + sym_trait_bounds, + STATE(2967), 1, + aux_sym_type_arguments_repeat1, + STATE(2437), 2, sym_line_comment, sym_block_comment, - [72395] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75793] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1357), 1, + ACTIONS(5504), 1, + anon_sym_SEMI, + STATE(634), 1, sym_declaration_list, - STATE(2559), 1, - sym_trait_bounds, - STATE(3220), 1, + STATE(2918), 1, sym_where_clause, - STATE(2310), 2, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [72424] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75822] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_RBRACK, - ACTIONS(4816), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2311), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5133), 1, + anon_sym_for, + STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 3, + ACTIONS(3475), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [72447] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [75845] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5269), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5506), 1, anon_sym_SEMI, - STATE(713), 1, + STATE(1370), 1, sym_declaration_list, - STATE(2876), 1, + STATE(2895), 1, sym_where_clause, - STATE(2312), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [72476] = 9, - ACTIONS(101), 1, + [75874] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(219), 1, + sym_closure_parameters, + STATE(1526), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2441), 2, + sym_line_comment, + sym_block_comment, + [75903] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - STATE(680), 1, - sym_declaration_list, - STATE(2683), 1, + ACTIONS(5508), 1, + anon_sym_SEMI, + ACTIONS(5510), 1, + anon_sym_EQ, + STATE(3086), 1, sym_trait_bounds, - STATE(3218), 1, + STATE(3282), 1, sym_where_clause, - STATE(2313), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - [72505] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75932] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5271), 1, + ACTIONS(5512), 1, anon_sym_SEMI, - STATE(533), 1, + STATE(772), 1, sym_declaration_list, - STATE(3003), 1, + STATE(3049), 1, sym_where_clause, - STATE(2314), 2, + STATE(2443), 2, sym_line_comment, sym_block_comment, - [72534] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75961] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, - anon_sym_DOT_DOT, - STATE(2315), 2, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_enum_variant_list, + STATE(2807), 1, + sym_type_parameters, + STATE(3434), 1, + sym_where_clause, + STATE(2444), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [72555] = 9, - ACTIONS(101), 1, + [75990] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5514), 1, + anon_sym_GT, + ACTIONS(5516), 1, + anon_sym_COMMA, + STATE(3040), 1, + sym_trait_bounds, + STATE(3041), 1, + aux_sym_type_arguments_repeat1, + STATE(2445), 2, + sym_line_comment, + sym_block_comment, + [76019] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5273), 1, + ACTIONS(5518), 1, anon_sym_SEMI, - STATE(550), 1, + STATE(667), 1, sym_declaration_list, - STATE(2838), 1, + STATE(3187), 1, sym_where_clause, - STATE(2316), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - [72584] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76048] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5275), 1, + ACTIONS(5520), 1, anon_sym_SEMI, - STATE(687), 1, + STATE(630), 1, sym_declaration_list, - STATE(2767), 1, + STATE(2908), 1, sym_where_clause, - STATE(2317), 2, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [72613] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76077] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5277), 1, - anon_sym_SEMI, - STATE(552), 1, - sym_declaration_list, - STATE(2840), 1, - sym_where_clause, - STATE(2318), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5522), 1, + anon_sym_if, + STATE(3778), 1, + sym_label, + STATE(485), 2, + sym_if_expression, + sym_block, + STATE(2448), 2, + sym_line_comment, + sym_block_comment, + [76104] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4823), 1, + anon_sym_DOT_DOT, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [72642] = 6, - ACTIONS(101), 1, + ACTIONS(4654), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76127] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + STATE(2450), 2, + sym_line_comment, + sym_block_comment, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [76154] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, - STATE(2319), 2, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5414), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [72665] = 4, - ACTIONS(101), 1, + [76179] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5524), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + [76204] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2320), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5414), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72684] = 9, - ACTIONS(101), 1, + [76229] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4959), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3610), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [76250] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5279), 1, + ACTIONS(5526), 1, anon_sym_SEMI, - STATE(1399), 1, + STATE(705), 1, sym_declaration_list, - STATE(2967), 1, + STATE(3158), 1, sym_where_clause, - STATE(2321), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - [72713] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76279] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(503), 1, - sym_enum_variant_list, - STATE(2647), 1, - sym_type_parameters, - STATE(3154), 1, - sym_where_clause, - STATE(2322), 2, + ACTIONS(5528), 1, + anon_sym_DASH_GT, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [72742] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3764), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [76300] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5283), 1, - anon_sym_SEMI, - STATE(1405), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(1408), 1, sym_declaration_list, - STATE(2980), 1, + STATE(2740), 1, + sym_trait_bounds, + STATE(3209), 1, sym_where_clause, - STATE(2323), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [72771] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76329] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5285), 1, + ACTIONS(5530), 1, anon_sym_SEMI, - STATE(1407), 1, + STATE(636), 1, sym_declaration_list, - STATE(2982), 1, + STATE(2947), 1, sym_where_clause, - STATE(2324), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [72800] = 9, - ACTIONS(101), 1, + [76358] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5524), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2459), 2, + sym_line_comment, + sym_block_comment, + [76383] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - STATE(1442), 1, - sym_declaration_list, - STATE(2571), 1, + ACTIONS(5532), 1, + anon_sym_SEMI, + ACTIONS(5534), 1, + anon_sym_EQ, + STATE(2900), 1, sym_trait_bounds, - STATE(3275), 1, + STATE(3189), 1, sym_where_clause, - STATE(2325), 2, + STATE(2460), 2, sym_line_comment, sym_block_comment, - [72829] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76412] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5287), 1, - anon_sym_GT, - ACTIONS(5289), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2326), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - [72858] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76431] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(741), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5536), 1, + anon_sym_SEMI, + STATE(1415), 1, sym_declaration_list, - STATE(2577), 1, - sym_trait_bounds, - STATE(3276), 1, + STATE(2902), 1, sym_where_clause, - STATE(2327), 2, + STATE(2462), 2, sym_line_comment, sym_block_comment, - [72887] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76460] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5291), 1, + ACTIONS(5538), 1, anon_sym_SEMI, - STATE(736), 1, + STATE(774), 1, sym_declaration_list, - STATE(2825), 1, + STATE(3077), 1, sym_where_clause, - STATE(2328), 2, + STATE(2463), 2, sym_line_comment, sym_block_comment, - [72916] = 9, - ACTIONS(101), 1, + [76489] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(975), 1, + anon_sym_DOT_DOT, + STATE(2464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(977), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76510] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_enum_variant_list, - STATE(2536), 1, - sym_type_parameters, - STATE(3255), 1, - sym_where_clause, - STATE(2329), 2, + ACTIONS(951), 1, + anon_sym_DOT_DOT, + STATE(2465), 2, sym_line_comment, sym_block_comment, - [72945] = 9, - ACTIONS(101), 1, + ACTIONS(953), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76531] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4783), 1, + anon_sym_DOT_DOT, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4781), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76552] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5162), 1, + anon_sym_for, + STATE(2467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5293), 1, - anon_sym_SEMI, - STATE(1467), 1, - sym_declaration_list, - STATE(3023), 1, - sym_where_clause, - STATE(2330), 2, + anon_sym_where, + [76575] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(955), 1, + anon_sym_DOT_DOT, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [72974] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(957), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76596] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(234), 1, + sym_closure_parameters, + STATE(1526), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2469), 2, + sym_line_comment, + sym_block_comment, + [76625] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(5295), 1, - anon_sym_SEMI, - STATE(1469), 1, - sym_declaration_list, - STATE(3024), 1, - sym_where_clause, - STATE(2331), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5540), 1, + anon_sym_GT, + ACTIONS(5542), 1, + anon_sym_COMMA, + STATE(3075), 1, + sym_trait_bounds, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [73003] = 9, - ACTIONS(101), 1, + [76654] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5544), 1, + anon_sym_COMMA, + STATE(2407), 1, + aux_sym_where_clause_repeat1, + STATE(2471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3524), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [76677] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5297), 1, - anon_sym_SEMI, - STATE(1104), 1, - sym_declaration_list, - STATE(2732), 1, - sym_where_clause, - STATE(2332), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5546), 1, + anon_sym_if, + STATE(3779), 1, + sym_label, + STATE(1846), 2, + sym_if_expression, + sym_block, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [73032] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76704] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5299), 1, - anon_sym_SEMI, - STATE(1106), 1, - sym_declaration_list, - STATE(2733), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1317), 1, + sym_field_declaration_list, + STATE(2666), 1, + sym_type_parameters, + STATE(3453), 1, sym_where_clause, - STATE(2333), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [73061] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76733] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5301), 1, + ACTIONS(5548), 1, anon_sym_SEMI, - STATE(1108), 1, + STATE(725), 1, sym_declaration_list, - STATE(2736), 1, + STATE(2944), 1, sym_where_clause, - STATE(2334), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [73090] = 9, - ACTIONS(101), 1, + [76762] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1013), 1, + anon_sym_DOT_DOT, + STATE(2475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1015), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76783] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5303), 1, + ACTIONS(5550), 1, anon_sym_SEMI, - STATE(1110), 1, + STATE(727), 1, sym_declaration_list, - STATE(2737), 1, + STATE(2968), 1, sym_where_clause, - STATE(2335), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [73119] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76812] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5247), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2336), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5143), 1, + anon_sym_for, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [73142] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76835] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - STATE(2337), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5552), 1, + anon_sym_SEMI, + STATE(1221), 1, + sym_declaration_list, + STATE(2959), 1, + sym_where_clause, + STATE(2478), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73169] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76864] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5305), 1, + ACTIONS(5554), 1, anon_sym_SEMI, - STATE(1148), 1, + STATE(729), 1, sym_declaration_list, - STATE(2743), 1, + STATE(3095), 1, sym_where_clause, - STATE(2338), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [73198] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76893] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5307), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5556), 1, anon_sym_SEMI, - STATE(1150), 1, + STATE(1223), 1, sym_declaration_list, - STATE(2744), 1, + STATE(2960), 1, sym_where_clause, - STATE(2339), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [73227] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76922] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2340), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(4920), 6, + ACTIONS(5150), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - [73246] = 6, - ACTIONS(101), 1, + [76941] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5558), 1, + anon_sym_RBRACK, + ACTIONS(4975), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2482), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3760), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76964] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4746), 1, anon_sym_COLON_COLON, - ACTIONS(4905), 1, + ACTIONS(5145), 1, anon_sym_for, - STATE(2341), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [73269] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76987] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2342), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5561), 1, + anon_sym_SEMI, + STATE(1228), 1, + sym_declaration_list, + STATE(2962), 1, + sym_where_clause, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [73294] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77016] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4586), 1, - anon_sym_GT, - ACTIONS(4588), 1, - anon_sym_COMMA, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - STATE(2907), 1, - aux_sym_type_parameters_repeat1, - STATE(2343), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(232), 1, + sym_closure_parameters, + STATE(495), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [73323] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77045] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4816), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2344), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, + anon_sym_for, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 4, - anon_sym_RPAREN, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [73344] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [77068] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, - STATE(2345), 2, - sym_line_comment, - sym_block_comment, - [73373] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, - STATE(2346), 2, - sym_line_comment, - sym_block_comment, - [73402] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5315), 1, + ACTIONS(5563), 1, anon_sym_SEMI, - STATE(717), 1, + STATE(731), 1, sym_declaration_list, - STATE(2916), 1, + STATE(3180), 1, sym_where_clause, - STATE(2347), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [73431] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77097] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5317), 1, - anon_sym_if, - STATE(3590), 1, - sym_label, - STATE(457), 2, - sym_if_expression, - sym_block, - STATE(2348), 2, - sym_line_comment, - sym_block_comment, - [73458] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - STATE(699), 1, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(541), 1, sym_field_declaration_list, - STATE(2566), 1, + STATE(2766), 1, sym_type_parameters, - STATE(3097), 1, + STATE(3372), 1, sym_where_clause, - STATE(2349), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - [73487] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77126] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5319), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5565), 1, anon_sym_SEMI, - STATE(488), 1, + STATE(1230), 1, sym_declaration_list, - STATE(2886), 1, + STATE(2963), 1, sym_where_clause, - STATE(2350), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [73516] = 9, - ACTIONS(101), 1, + [77155] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4975), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3760), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [77176] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5321), 1, - anon_sym_SEMI, - STATE(490), 1, - sym_declaration_list, - STATE(2910), 1, + STATE(1419), 1, + sym_enum_variant_list, + STATE(2747), 1, + sym_type_parameters, + STATE(3246), 1, sym_where_clause, - STATE(2351), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - [73545] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77205] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, - anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, - STATE(2352), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5055), 1, + anon_sym_for, + STATE(2492), 2, sym_line_comment, sym_block_comment, - [73574] = 9, - ACTIONS(101), 1, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77228] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(256), 1, + sym_closure_parameters, + STATE(1819), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2493), 2, + sym_line_comment, + sym_block_comment, + [77257] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(5567), 1, + anon_sym_DASH_GT, + STATE(2494), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3740), 5, anon_sym_COLON, - ACTIONS(5323), 1, + anon_sym_PLUS, anon_sym_GT, - ACTIONS(5325), 1, anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, - STATE(2353), 2, - sym_line_comment, - sym_block_comment, - [73603] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [77278] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5327), 1, - anon_sym_if, - STATE(3591), 1, - sym_label, - STATE(1773), 2, - sym_if_expression, - sym_block, - STATE(2354), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(1275), 1, + sym_declaration_list, + STATE(2854), 1, + sym_trait_bounds, + STATE(3331), 1, + sym_where_clause, + STATE(2495), 2, sym_line_comment, sym_block_comment, - [73630] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77307] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5329), 1, - anon_sym_SEMI, - STATE(494), 1, - sym_declaration_list, - STATE(3010), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1424), 1, + sym_field_declaration_list, + STATE(2749), 1, + sym_type_parameters, + STATE(3267), 1, sym_where_clause, - STATE(2355), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [73659] = 6, - ACTIONS(101), 1, + [77336] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5479), 1, + anon_sym_RBRACK, + ACTIONS(4959), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2497), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3610), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [77359] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(4816), 2, + ACTIONS(4975), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5266), 2, + ACTIONS(5558), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2356), 2, + STATE(2498), 2, sym_line_comment, sym_block_comment, - [73682] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77382] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5331), 1, - anon_sym_SEMI, - STATE(496), 1, - sym_declaration_list, - STATE(2745), 1, - sym_where_clause, - STATE(2357), 2, - sym_line_comment, - sym_block_comment, - [73711] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5333), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_declaration_list, - STATE(2999), 1, - sym_where_clause, - STATE(2358), 2, - sym_line_comment, - sym_block_comment, - [73740] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5335), 1, + ACTIONS(5569), 1, anon_sym_SEMI, - STATE(608), 1, + STATE(784), 1, sym_declaration_list, - STATE(3005), 1, + STATE(3108), 1, sym_where_clause, - STATE(2359), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [73769] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77411] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_DOT_DOT, - STATE(2360), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(969), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73790] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, - anon_sym_DOT_DOT, - STATE(2361), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5571), 1, anon_sym_if, - [73811] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(767), 1, - anon_sym_DOT_DOT, - STATE(2362), 2, + STATE(3621), 1, + sym_label, + STATE(404), 2, + sym_if_expression, + sym_block, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77438] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(771), 1, - anon_sym_DOT_DOT, - STATE(2363), 2, + ACTIONS(5573), 1, + anon_sym_DASH_GT, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(773), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73853] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3776), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77459] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - STATE(643), 1, - sym_field_declaration_list, - STATE(2514), 1, - sym_type_parameters, - STATE(3114), 1, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5575), 1, + anon_sym_SEMI, + STATE(564), 1, + sym_declaration_list, + STATE(3085), 1, sym_where_clause, - STATE(2364), 2, + STATE(2502), 2, sym_line_comment, sym_block_comment, - [73882] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77488] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_EQ, - STATE(2365), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3457), 4, - anon_sym_PLUS, + ACTIONS(4769), 1, + anon_sym_COLON_COLON, + ACTIONS(5577), 1, anon_sym_GT, + ACTIONS(5579), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - [73905] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3148), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2503), 2, + sym_line_comment, + sym_block_comment, + [77515] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5339), 1, - anon_sym_SEMI, - STATE(565), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(676), 1, sym_declaration_list, - STATE(2905), 1, + STATE(2722), 1, + sym_trait_bounds, + STATE(3352), 1, sym_where_clause, - STATE(2366), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - [73934] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77544] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5341), 1, + ACTIONS(5581), 1, anon_sym_SEMI, - STATE(567), 1, + STATE(587), 1, sym_declaration_list, - STATE(2911), 1, + STATE(3159), 1, sym_where_clause, - STATE(2367), 2, + STATE(2505), 2, sym_line_comment, sym_block_comment, - [73963] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77573] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1390), 1, - sym_enum_variant_list, - STATE(2511), 1, - sym_type_parameters, - STATE(3269), 1, - sym_where_clause, - STATE(2368), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5099), 1, + anon_sym_for, + STATE(2506), 2, sym_line_comment, sym_block_comment, - [73992] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77596] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5343), 1, + ACTIONS(5583), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(707), 1, sym_declaration_list, - STATE(2787), 1, + STATE(3160), 1, sym_where_clause, - STATE(2369), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - [74021] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77625] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5345), 1, - anon_sym_SEMI, - STATE(569), 1, - sym_declaration_list, - STATE(2918), 1, - sym_where_clause, - STATE(2370), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1513), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2508), 2, sym_line_comment, sym_block_comment, - [74050] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77651] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3299), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2371), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [74077] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3586), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77669] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2372), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5585), 1, + anon_sym_SEMI, + STATE(1359), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2510), 2, sym_line_comment, sym_block_comment, - [74102] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77695] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5347), 1, + ACTIONS(5500), 1, anon_sym_GT, - ACTIONS(5349), 1, + ACTIONS(5502), 1, anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, + STATE(2966), 1, sym_trait_bounds, - STATE(2373), 2, + STATE(2967), 1, + aux_sym_type_arguments_repeat1, + STATE(2511), 2, sym_line_comment, sym_block_comment, - [74131] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77721] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2374), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5587), 1, + anon_sym_SEMI, + STATE(1375), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2512), 2, sym_line_comment, sym_block_comment, - [74156] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77747] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - STATE(1191), 1, - sym_field_declaration_list, - STATE(2515), 1, - sym_type_parameters, - STATE(3305), 1, - sym_where_clause, - STATE(2375), 2, + ACTIONS(5591), 1, + anon_sym_STAR, + STATE(3129), 1, + sym_use_list, + ACTIONS(5589), 2, + sym_identifier, + sym_super, + STATE(2513), 2, sym_line_comment, sym_block_comment, - [74185] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77771] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5351), 1, + ACTIONS(5593), 1, anon_sym_SEMI, - STATE(571), 1, - sym_declaration_list, - STATE(2925), 1, - sym_where_clause, - STATE(2376), 2, + STATE(1382), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2514), 2, sym_line_comment, sym_block_comment, - [74214] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, + [77797] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2515), 2, + sym_line_comment, + sym_block_comment, + [77821] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5353), 1, - anon_sym_if, - STATE(3510), 1, - sym_label, - STATE(377), 2, - sym_if_expression, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5595), 1, + anon_sym_SEMI, + STATE(1117), 1, sym_block, - STATE(2377), 2, + STATE(3777), 1, + sym_label, + STATE(2516), 2, sym_line_comment, sym_block_comment, - [74241] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77847] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5355), 1, + ACTIONS(5597), 1, anon_sym_SEMI, - STATE(665), 1, - sym_declaration_list, - STATE(2735), 1, - sym_where_clause, - STATE(2378), 2, + STATE(1125), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [74270] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77873] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4967), 1, - anon_sym_for, - STATE(2379), 2, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5599), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [74293] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77891] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4864), 1, - anon_sym_for, - STATE(2380), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5601), 1, + anon_sym_SEMI, + STATE(1135), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, + [77917] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, anon_sym_LBRACE, + ACTIONS(3166), 1, anon_sym_PLUS, - anon_sym_where, - [74316] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1532), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2520), 2, + sym_line_comment, + sym_block_comment, + [77943] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5357), 1, - sym_identifier, - ACTIONS(5359), 1, - anon_sym_ref, - ACTIONS(5361), 1, - sym_mutable_specifier, - ACTIONS(5363), 1, - anon_sym_move, - STATE(228), 1, - sym_closure_parameters, - STATE(2381), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5603), 1, + anon_sym_SEMI, + STATE(1140), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2521), 2, sym_line_comment, sym_block_comment, - [74345] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77969] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4951), 1, - anon_sym_for, - STATE(2382), 2, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5605), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [74368] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77987] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5365), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5607), 1, anon_sym_SEMI, - ACTIONS(5367), 1, - anon_sym_EQ, - STATE(3031), 1, - sym_trait_bounds, - STATE(3505), 1, - sym_where_clause, - STATE(2383), 2, + STATE(1144), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2523), 2, sym_line_comment, sym_block_comment, - [74397] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78013] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4957), 1, - anon_sym_for, - STATE(2384), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1521), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, + [78039] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, anon_sym_LBRACE, + ACTIONS(3166), 1, anon_sym_PLUS, - anon_sym_where, - [74420] = 6, - ACTIONS(101), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1510), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2525), 2, + sym_line_comment, + sym_block_comment, + [78065] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5609), 1, + anon_sym_RPAREN, + ACTIONS(5612), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2526), 2, + sym_line_comment, + sym_block_comment, + [78089] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(5617), 1, anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_for, - STATE(2385), 2, + ACTIONS(5619), 1, + anon_sym_as, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5615), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74443] = 6, - ACTIONS(101), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + [78111] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5621), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2528), 2, + sym_line_comment, + sym_block_comment, + [78133] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_for, - STATE(2386), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5624), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [74466] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78151] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2387), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5626), 1, + sym_identifier, + ACTIONS(5628), 1, + anon_sym_GT, + ACTIONS(5630), 1, + anon_sym_COMMA, + STATE(3035), 1, + sym_lifetime, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74489] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78177] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(529), 1, - sym_declaration_list, - STATE(2530), 1, - sym_trait_bounds, - STATE(3087), 1, - sym_where_clause, - STATE(2388), 2, + ACTIONS(5308), 1, + anon_sym_STAR, + STATE(3139), 1, + sym_use_list, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(2531), 2, sym_line_comment, sym_block_comment, - [74518] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78201] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5369), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2389), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + STATE(1708), 1, + sym_parameters, + STATE(2027), 1, + sym_type_arguments, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [74544] = 8, - ACTIONS(101), 1, + [78227] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2533), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5632), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78245] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5371), 1, + ACTIONS(5514), 1, + anon_sym_GT, + ACTIONS(5516), 1, anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, + STATE(3040), 1, sym_trait_bounds, - STATE(2390), 2, + STATE(3041), 1, + aux_sym_type_arguments_repeat1, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [74570] = 7, - ACTIONS(101), 1, + [78271] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5634), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78289] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5636), 1, + anon_sym_RPAREN, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(3043), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, + anon_sym_PIPE, + STATE(2536), 2, + sym_line_comment, + sym_block_comment, + [78313] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5640), 1, + sym_identifier, + ACTIONS(5642), 1, anon_sym_GT, + ACTIONS(5644), 1, anon_sym_COMMA, - STATE(2391), 2, + STATE(2886), 1, + sym_lifetime, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [74594] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78339] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4678), 1, anon_sym_COLON_COLON, - ACTIONS(5205), 1, - anon_sym_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2392), 2, + STATE(2027), 1, + sym_type_arguments, + STATE(2402), 1, + sym_parameters, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [74618] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78365] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5375), 1, - anon_sym_SEMI, - ACTIONS(5377), 1, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(5646), 1, + anon_sym_COMMA, + STATE(3052), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, anon_sym_COLON, - ACTIONS(5379), 1, - anon_sym_EQ, - ACTIONS(5381), 1, - anon_sym_else, - STATE(2393), 2, + anon_sym_PIPE, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [74644] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78389] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1304), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2394), 2, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2540), 2, sym_line_comment, sym_block_comment, - [74670] = 8, - ACTIONS(101), 1, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [78409] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2541), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5648), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78427] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5385), 1, - sym_integer_literal, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + STATE(1335), 1, + sym_parameters, + STATE(2027), 1, + sym_type_arguments, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [74696] = 7, - ACTIONS(101), 1, + [78453] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5652), 1, + anon_sym_COLON_COLON, + ACTIONS(5654), 1, + anon_sym_as, + STATE(2543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5650), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78475] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(5043), 2, anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2396), 2, + anon_sym_PIPE, + STATE(2544), 2, sym_line_comment, sym_block_comment, - [74720] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3996), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [78495] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5387), 1, + ACTIONS(5656), 1, anon_sym_SEMI, - STATE(1113), 1, + STATE(519), 1, sym_block, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2397), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [74746] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78521] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5389), 1, - anon_sym_SEMI, - STATE(711), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2398), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5540), 1, + anon_sym_GT, + ACTIONS(5542), 1, + anon_sym_COMMA, + STATE(3075), 1, + sym_trait_bounds, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, + STATE(2546), 2, + sym_line_comment, + sym_block_comment, + [78547] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [74772] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3390), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [78565] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5658), 1, anon_sym_SEMI, - STATE(1126), 1, + STATE(529), 1, sym_block, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2399), 2, + STATE(2548), 2, sym_line_comment, sym_block_comment, - [74798] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78591] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(2400), 2, - sym_line_comment, - sym_block_comment, - [74822] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5660), 1, + anon_sym_SEMI, + ACTIONS(5662), 1, anon_sym_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2401), 2, + ACTIONS(5664), 1, + anon_sym_EQ, + ACTIONS(5666), 1, + anon_sym_else, + STATE(2549), 2, sym_line_comment, sym_block_comment, - [74848] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78617] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1384), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2402), 2, + STATE(2550), 2, sym_line_comment, sym_block_comment, - [74874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5668), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78635] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2403), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(5393), 5, + ACTIONS(5670), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [74892] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [78653] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5395), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2404), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(5672), 1, + sym_identifier, + ACTIONS(5674), 1, + sym_integer_literal, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [74918] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78679] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1962), 1, - sym_parameters, - STATE(2405), 2, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [74944] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3570), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78697] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5399), 1, - anon_sym_COMMA, - ACTIONS(5397), 3, - anon_sym_SEMI, + ACTIONS(4316), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2406), 3, + ACTIONS(5678), 1, + anon_sym_STAR, + STATE(2999), 1, + sym_use_list, + ACTIONS(5676), 2, + sym_identifier, + sym_super, + STATE(2554), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [74964] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78721] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3621), 1, - anon_sym_PLUS, - ACTIONS(4756), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5402), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2407), 2, + STATE(2555), 2, sym_line_comment, sym_block_comment, - [74986] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5680), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78739] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, - anon_sym_SEMI, - STATE(1158), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1926), 1, sym_block, - STATE(3589), 1, + STATE(3779), 1, sym_label, - STATE(2408), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [75012] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78765] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5407), 1, + ACTIONS(5682), 1, anon_sym_SEMI, - STATE(1164), 1, + STATE(734), 1, sym_block, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2409), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [75038] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78791] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5409), 1, + ACTIONS(5684), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(624), 1, sym_block, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2410), 2, + STATE(2558), 2, sym_line_comment, sym_block_comment, - [75064] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78817] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5411), 1, + STATE(2559), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5444), 5, anon_sym_SEMI, - STATE(637), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2411), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78835] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(5686), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2560), 2, sym_line_comment, sym_block_comment, - [75090] = 8, - ACTIONS(101), 1, + [78859] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5688), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78877] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5413), 1, + ACTIONS(5619), 1, + anon_sym_as, + ACTIONS(5690), 1, + anon_sym_COLON_COLON, + STATE(2562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5615), 3, anon_sym_SEMI, - STATE(1178), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2412), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [78899] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [75116] = 8, - ACTIONS(101), 1, + ACTIONS(5692), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78917] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3984), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4845), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78937] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5415), 1, + ACTIONS(5694), 1, anon_sym_SEMI, - STATE(1182), 1, + STATE(699), 1, sym_block, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2413), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [75142] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78963] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1678), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2414), 2, + ACTIONS(5696), 1, + anon_sym_RPAREN, + ACTIONS(5698), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2566), 2, sym_line_comment, sym_block_comment, - [75168] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78987] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5417), 1, - anon_sym_move, - STATE(1742), 1, + STATE(1849), 1, sym_block, - STATE(3591), 1, + STATE(3779), 1, sym_label, - STATE(2415), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - [75194] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79013] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2416), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3699), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75212] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2417), 2, + ACTIONS(4833), 1, + anon_sym_EQ, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3144), 1, + sym_trait_bounds, + ACTIONS(4835), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75230] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79037] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2418), 2, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5700), 1, + anon_sym_EQ, + STATE(3182), 1, + sym_type_parameters, + STATE(3793), 1, + sym_where_clause, + STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75248] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79063] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5419), 1, + ACTIONS(5702), 1, anon_sym_SEMI, - STATE(642), 1, + STATE(1157), 1, sym_block, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2419), 2, + STATE(2570), 2, sym_line_comment, sym_block_comment, - [75274] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79089] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5421), 1, + ACTIONS(5704), 1, anon_sym_SEMI, - STATE(544), 1, + STATE(748), 1, sym_block, - STATE(3586), 1, + STATE(3774), 1, sym_label, - STATE(2420), 2, + STATE(2571), 2, sym_line_comment, sym_block_comment, - [75300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79115] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4756), 2, + ACTIONS(3996), 1, + anon_sym_PLUS, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2421), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 3, + ACTIONS(5706), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [75320] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1623), 1, - sym_parameters, - STATE(1931), 1, - sym_type_arguments, - STATE(2422), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - [75346] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79137] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4678), 1, anon_sym_COLON_COLON, - ACTIONS(4582), 1, + ACTIONS(4831), 1, anon_sym_COLON, - STATE(1931), 1, + STATE(2027), 1, sym_type_arguments, - STATE(2606), 1, + STATE(2551), 1, sym_trait_bounds, - STATE(2423), 2, + STATE(2573), 2, sym_line_comment, sym_block_comment, - [75372] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79163] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5423), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, + STATE(2574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5709), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - STATE(2424), 2, + anon_sym_where, + [79181] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2575), 2, sym_line_comment, sym_block_comment, - [75394] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3798), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79199] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5049), 1, + anon_sym_RPAREN, + ACTIONS(5711), 1, anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, + ACTIONS(5713), 1, + anon_sym_PIPE, + ACTIONS(5715), 1, anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, - STATE(2425), 2, + STATE(3047), 1, + aux_sym_closure_parameters_repeat1, + STATE(2576), 2, sym_line_comment, sym_block_comment, - [75420] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79225] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5416), 1, anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2426), 2, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [75446] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79249] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2427), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5717), 1, + anon_sym_SEMI, + STATE(781), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2578), 2, sym_line_comment, sym_block_comment, - [75470] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79275] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3021), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3402), 1, + sym_trait_bounds, + ACTIONS(5719), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2406), 1, - aux_sym_where_clause_repeat1, - STATE(2428), 2, + STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [75492] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79299] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4826), 1, - anon_sym_RPAREN, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5721), 1, + sym_identifier, + ACTIONS(5723), 1, + anon_sym_GT, + ACTIONS(5725), 1, anon_sym_COMMA, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, - STATE(2429), 2, + STATE(2878), 1, + sym_lifetime, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [75518] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79325] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, + ACTIONS(5621), 1, + anon_sym_RBRACK, + ACTIONS(3475), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4654), 2, anon_sym_PIPE, - STATE(2430), 2, + anon_sym_COMMA, + STATE(2581), 2, sym_line_comment, sym_block_comment, - [75542] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79347] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5442), 1, + ACTIONS(5727), 1, anon_sym_SEMI, - STATE(484), 1, + STATE(524), 1, sym_block, - STATE(3586), 1, + STATE(3774), 1, sym_label, - STATE(2431), 2, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [75568] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79373] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5444), 1, + ACTIONS(5729), 1, anon_sym_SEMI, - STATE(591), 1, + STATE(665), 1, sym_block, - STATE(3586), 1, + STATE(3774), 1, sym_label, - STATE(2432), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [75594] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79399] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2433), 2, - sym_line_comment, - sym_block_comment, - [75618] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5448), 1, - anon_sym_SEMI, - ACTIONS(5450), 1, - anon_sym_COLON, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, - anon_sym_EQ, - ACTIONS(5456), 1, - anon_sym_else, - STATE(2434), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [75644] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3624), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79417] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2435), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(5458), 5, + ACTIONS(3574), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [75662] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79435] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2436), 2, - sym_line_comment, - sym_block_comment, - [75688] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5731), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(507), 1, sym_block, - STATE(3589), 1, + STATE(3774), 1, sym_label, - STATE(2437), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - [75714] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79461] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5468), 1, - anon_sym_COMMA, - STATE(2428), 1, - aux_sym_where_clause_repeat1, - STATE(2438), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5466), 3, + ACTIONS(3582), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_SQUOTE, - [75736] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [79479] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2439), 2, + ACTIONS(5706), 1, + anon_sym_RBRACK, + ACTIONS(3996), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5043), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(5470), 5, + [79501] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5733), 1, anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5735), 1, + anon_sym_COLON, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75754] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5741), 1, + anon_sym_else, + STATE(2589), 2, + sym_line_comment, + sym_block_comment, + [79527] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - ACTIONS(5472), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2440), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5743), 1, + anon_sym_SEMI, + STATE(755), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [75778] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79553] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(5745), 1, anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, - STATE(2441), 2, + STATE(2955), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [75804] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79577] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2442), 2, + STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(5474), 5, + ACTIONS(5747), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75822] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79595] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2443), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1732), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2593), 2, sym_line_comment, sym_block_comment, - ACTIONS(5476), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75840] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79621] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2444), 2, + STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(5478), 5, + ACTIONS(5749), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75858] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79639] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5480), 1, + ACTIONS(5751), 1, anon_sym_SEMI, - STATE(1458), 1, + STATE(1217), 1, sym_block, - STATE(3589), 1, + STATE(3777), 1, sym_label, - STATE(2445), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [75884] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79665] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2446), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5482), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75902] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(4971), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5753), 1, + anon_sym_RPAREN, + ACTIONS(5755), 1, anon_sym_COLON, - ACTIONS(5484), 1, + ACTIONS(5757), 1, anon_sym_COMMA, - STATE(2888), 1, - sym_trait_bounds, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, - STATE(2447), 2, + STATE(2969), 1, + aux_sym_slice_pattern_repeat1, + STATE(2596), 2, sym_line_comment, sym_block_comment, - [75928] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79691] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2448), 2, + ACTIONS(5759), 1, + anon_sym_RPAREN, + ACTIONS(5761), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75946] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79715] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2449), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75964] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3684), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79733] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1683), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2450), 2, + ACTIONS(5763), 1, + anon_sym_STAR_SLASH, + ACTIONS(5765), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5767), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5769), 1, + sym__block_comment_content, + STATE(3248), 1, + sym__block_doc_comment_marker, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [75990] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79759] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5486), 1, - anon_sym_move, - STATE(463), 1, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5771), 1, + anon_sym_SEMI, + STATE(1259), 1, sym_block, - STATE(3590), 1, + STATE(3777), 1, sym_label, - STATE(2451), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - [76016] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79785] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2452), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76034] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3782), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79803] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2453), 2, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5773), 1, + anon_sym_EQ, + STATE(3176), 1, + sym_type_parameters, + STATE(3755), 1, + sym_where_clause, + STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76052] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79829] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2454), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3821), 5, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5775), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5777), 1, anon_sym_COLON, + ACTIONS(5779), 1, anon_sym_EQ, - anon_sym_where, - [76070] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5781), 1, + anon_sym_else, + STATE(2603), 2, + sym_line_comment, + sym_block_comment, + [79855] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2455), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1738), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76088] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79881] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2456), 2, + ACTIONS(4028), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76106] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4845), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79901] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, + ACTIONS(5783), 1, anon_sym_SEMI, - STATE(616), 1, + STATE(561), 1, sym_block, - STATE(3586), 1, + STATE(3774), 1, sym_label, - STATE(2457), 2, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [76132] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79927] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5492), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, + ACTIONS(5619), 1, anon_sym_as, - STATE(2458), 2, + ACTIONS(5785), 1, + anon_sym_COLON_COLON, + STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(5490), 3, + ACTIONS(5615), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [76154] = 8, - ACTIONS(101), 1, + [79949] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5787), 1, + anon_sym_SEMI, + ACTIONS(5789), 1, + anon_sym_COLON, + ACTIONS(5791), 1, + anon_sym_EQ, + ACTIONS(5793), 1, + anon_sym_else, + STATE(2608), 2, + sym_line_comment, + sym_block_comment, + [79975] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5496), 1, + ACTIONS(5795), 1, anon_sym_SEMI, - STATE(587), 1, + STATE(1297), 1, sym_block, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2459), 2, + STATE(2609), 2, sym_line_comment, sym_block_comment, - [76180] = 7, - ACTIONS(101), 1, + [80001] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, + sym_type_arguments, + STATE(2100), 1, + sym_parameters, + STATE(2610), 2, + sym_line_comment, + sym_block_comment, + [80027] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(5164), 1, anon_sym_COLON, - STATE(2746), 1, + STATE(3376), 1, sym_trait_bounds, - ACTIONS(5498), 2, + ACTIONS(5797), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2460), 2, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [76204] = 4, - ACTIONS(101), 1, + [80051] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3402), 1, + sym_trait_bounds, + ACTIONS(5719), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2612), 2, + sym_line_comment, + sym_block_comment, + [80075] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2461), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(5500), 5, + ACTIONS(5799), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76222] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80093] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_as, - STATE(2462), 2, + STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, + ACTIONS(5801), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [76244] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [80111] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2463), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3215), 5, + ACTIONS(5164), 1, anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(5451), 1, anon_sym_GT, + ACTIONS(5453), 1, anon_sym_COMMA, - anon_sym_as, - [76262] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2912), 1, + sym_trait_bounds, + STATE(2913), 1, + aux_sym_type_arguments_repeat1, + STATE(2615), 2, + sym_line_comment, + sym_block_comment, + [80137] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, - anon_sym_RPAREN, - ACTIONS(5510), 1, - anon_sym_COLON, - ACTIONS(5512), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, - STATE(2464), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(5805), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2616), 2, sym_line_comment, sym_block_comment, - [76288] = 8, - ACTIONS(101), 1, + [80160] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3591), 1, + sym_type_arguments, + STATE(2617), 2, + sym_line_comment, + sym_block_comment, + [80183] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, - anon_sym_SEMI, - STATE(622), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(482), 1, sym_block, - STATE(3586), 1, + STATE(3778), 1, sym_label, - STATE(2465), 2, + STATE(2618), 2, sym_line_comment, sym_block_comment, - [76314] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80206] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5516), 1, - anon_sym_SEMI, - ACTIONS(5518), 1, - anon_sym_COLON, - ACTIONS(5520), 1, - anon_sym_EQ, - ACTIONS(5522), 1, - anon_sym_else, - STATE(2466), 2, + ACTIONS(5079), 1, + anon_sym_move, + ACTIONS(5809), 1, + anon_sym_async, + STATE(233), 1, + sym_closure_parameters, + STATE(2619), 2, sym_line_comment, sym_block_comment, - [76340] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80229] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1193), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2467), 2, + STATE(660), 1, + sym_declaration_list, + STATE(3284), 1, + sym_where_clause, + STATE(2620), 2, sym_line_comment, sym_block_comment, - [76366] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80252] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2468), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5811), 1, + sym_identifier, + STATE(1620), 1, + sym_type_arguments, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [76390] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80275] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5153), 1, - anon_sym_COLON, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2469), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5813), 1, + anon_sym_SEMI, + STATE(3753), 1, + sym_where_clause, + STATE(2622), 2, sym_line_comment, sym_block_comment, - [76414] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80298] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2470), 2, + ACTIONS(5815), 1, + anon_sym_LPAREN, + ACTIONS(5817), 1, + anon_sym_LBRACK, + ACTIONS(5819), 1, + anon_sym_LBRACE, + STATE(1080), 1, + sym_delim_token_tree, + STATE(2623), 2, sym_line_comment, sym_block_comment, - ACTIONS(5526), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76432] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80321] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2471), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1822), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [76456] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80344] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2472), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1633), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(5532), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76474] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80367] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(5823), 1, anon_sym_COMMA, - STATE(2961), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2473), 2, + STATE(2978), 1, + aux_sym_slice_pattern_repeat1, + STATE(2626), 2, sym_line_comment, sym_block_comment, - [76498] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80390] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5536), 1, - anon_sym_SEMI, - STATE(633), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1824), 1, sym_block, - STATE(3586), 1, + STATE(3779), 1, sym_label, - STATE(2474), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - [76524] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80413] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACK, - ACTIONS(3621), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4756), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2475), 2, + ACTIONS(5825), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [76546] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80434] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5538), 1, - anon_sym_COLON_COLON, - STATE(2476), 2, + ACTIONS(5815), 1, + anon_sym_LPAREN, + ACTIONS(5817), 1, + anon_sym_LBRACK, + ACTIONS(5819), 1, + anon_sym_LBRACE, + STATE(1073), 1, + sym_delim_token_tree, + STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76568] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80457] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2477), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(487), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2630), 2, sym_line_comment, sym_block_comment, - ACTIONS(5540), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76586] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80480] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2478), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5829), 1, + sym_identifier, + ACTIONS(5831), 1, + sym_super, + STATE(2121), 1, + sym_type_arguments, + STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(5542), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76604] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80503] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2479), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5829), 1, + sym_identifier, + ACTIONS(5831), 1, + sym_super, + STATE(2128), 1, + sym_type_arguments, + STATE(2632), 2, sym_line_comment, sym_block_comment, - ACTIONS(5544), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76622] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80526] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2480), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [76642] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80549] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(5548), 1, - anon_sym_STAR, - STATE(3000), 1, - sym_use_list, - ACTIONS(5546), 2, - sym_identifier, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, sym_super, - STATE(2481), 2, + ACTIONS(5833), 1, + sym_identifier, + STATE(3591), 1, + sym_type_arguments, + STATE(2634), 2, sym_line_comment, sym_block_comment, - [76666] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80572] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, - anon_sym_RPAREN, - ACTIONS(5553), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2482), 2, + ACTIONS(5835), 1, + anon_sym_DQUOTE, + ACTIONS(5837), 2, + sym_string_content, + sym_escape_sequence, + STATE(2635), 3, sym_line_comment, sym_block_comment, - [76690] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_string_literal_repeat1, + [80591] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_STAR_SLASH, - ACTIONS(5558), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5560), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5562), 1, - sym__block_comment_content, - STATE(3265), 1, - sym__block_doc_comment_marker, - STATE(2483), 2, + ACTIONS(5840), 1, + anon_sym_LBRACE, + ACTIONS(5842), 1, + anon_sym_for, + ACTIONS(5844), 1, + anon_sym_loop, + ACTIONS(5846), 1, + anon_sym_while, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [76716] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80614] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1689), 1, + STATE(1842), 1, sym_block, - STATE(3591), 1, + STATE(3779), 1, sym_label, - STATE(2484), 2, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [76742] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80637] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5564), 1, - anon_sym_SEMI, - ACTIONS(5566), 1, - anon_sym_COLON, - ACTIONS(5568), 1, - anon_sym_EQ, - ACTIONS(5570), 1, - anon_sym_else, - STATE(2485), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_enum_variant_list, + STATE(3297), 1, + sym_where_clause, + STATE(2638), 2, sym_line_comment, sym_block_comment, - [76768] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80660] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(5572), 1, - anon_sym_SEMI, - STATE(1431), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(492), 1, sym_block, - STATE(3589), 1, + STATE(3778), 1, sym_label, - STATE(2486), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [76794] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80683] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5423), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2487), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5848), 1, + anon_sym_SEMI, + STATE(3566), 1, + sym_where_clause, + STATE(2640), 2, sym_line_comment, sym_block_comment, - [76816] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80706] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - STATE(2488), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(424), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76838] = 8, - ACTIONS(101), 1, + [80729] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5850), 1, + anon_sym_DQUOTE, + STATE(2720), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2642), 2, + sym_line_comment, + sym_block_comment, + [80750] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5576), 1, + ACTIONS(5852), 1, + anon_sym_async, + ACTIONS(5854), 1, anon_sym_move, - STATE(1454), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2489), 2, + STATE(224), 1, + sym_closure_parameters, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [76864] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80773] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5578), 1, - anon_sym_SEMI, - STATE(519), 1, + STATE(3081), 1, sym_block, - STATE(3586), 1, + STATE(3777), 1, sym_label, - STATE(2490), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - [76890] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80796] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1049), 1, - sym_parameters, - STATE(1931), 1, - sym_type_arguments, - STATE(2491), 2, - sym_line_comment, - sym_block_comment, - [76916] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5580), 1, - anon_sym_SEMI, - STATE(574), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1936), 1, sym_block, - STATE(3586), 1, + STATE(3779), 1, sym_label, - STATE(2492), 2, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [76942] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80819] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + ACTIONS(5856), 1, + anon_sym_async, + ACTIONS(5858), 1, + anon_sym_move, + STATE(215), 1, + sym_closure_parameters, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76960] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80842] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(5418), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2494), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [76981] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80863] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1195), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2495), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5860), 1, + anon_sym_SEMI, + STATE(3743), 1, + sym_where_clause, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [77004] = 6, - ACTIONS(101), 1, + [80886] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + STATE(2649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5862), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80905] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5584), 1, + ACTIONS(5864), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2658), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, - STATE(2496), 2, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [77025] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80926] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(1196), 1, - sym_delim_token_tree, - STATE(2497), 2, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1407), 1, + sym_declaration_list, + STATE(3207), 1, + sym_where_clause, + STATE(2651), 2, sym_line_comment, sym_block_comment, - [77048] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80949] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1565), 1, - sym_type_arguments, - STATE(2498), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1854), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2652), 2, sym_line_comment, sym_block_comment, - [77071] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80972] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1570), 1, - sym_type_arguments, - STATE(2499), 2, + ACTIONS(5866), 1, + anon_sym_async, + ACTIONS(5868), 1, + anon_sym_move, + STATE(220), 1, + sym_closure_parameters, + STATE(2653), 2, sym_line_comment, sym_block_comment, - [77094] = 7, - ACTIONS(101), 1, + [80995] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1814), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2654), 2, + sym_line_comment, + sym_block_comment, + [81018] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5590), 1, + ACTIONS(5870), 1, anon_sym_RPAREN, - ACTIONS(5592), 1, + ACTIONS(5872), 1, anon_sym_COMMA, - STATE(2989), 1, + STATE(3185), 1, aux_sym_tuple_pattern_repeat1, - STATE(2500), 2, + STATE(2655), 2, sym_line_comment, sym_block_comment, - [77117] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81041] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5594), 1, + STATE(2656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5874), 3, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(5596), 1, anon_sym_COMMA, - STATE(3007), 1, - aux_sym_slice_pattern_repeat1, - STATE(2501), 2, + [81060] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5876), 1, + anon_sym_LPAREN, + ACTIONS(5878), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_LBRACE, + STATE(1859), 1, + sym_delim_token_tree, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [77140] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81083] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2502), 2, + ACTIONS(5882), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2658), 2, sym_line_comment, sym_block_comment, - [77163] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81104] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, - sym_super, - STATE(3195), 1, - sym_type_arguments, - STATE(2503), 2, + ACTIONS(5876), 1, + anon_sym_LPAREN, + ACTIONS(5878), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_LBRACE, + STATE(1861), 1, + sym_delim_token_tree, + STATE(2659), 2, sym_line_comment, sym_block_comment, - [77186] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81127] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(399), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2504), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + STATE(2660), 2, sym_line_comment, sym_block_comment, - [77209] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5884), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81146] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, + ACTIONS(5831), 1, sym_super, - STATE(3217), 1, + ACTIONS(5886), 1, + sym_identifier, + STATE(2121), 1, sym_type_arguments, - STATE(2505), 2, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [77232] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81169] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5606), 1, - anon_sym_RPAREN, - ACTIONS(5608), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_tuple_type_repeat1, - STATE(2506), 2, - sym_line_comment, - sym_block_comment, - [77255] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1933), 1, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5886), 1, + sym_identifier, + STATE(2128), 1, sym_type_arguments, - STATE(2604), 1, - sym_trait_bounds, - STATE(2507), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [77278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81192] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2508), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [77297] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81215] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(1067), 1, - sym_parameters, - STATE(1933), 1, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3591), 1, sym_type_arguments, - STATE(2509), 2, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [77320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81238] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_DQUOTE, - ACTIONS(5614), 2, - sym_string_content, - sym_escape_sequence, - STATE(2510), 3, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2665), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [77339] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81261] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, - STATE(3090), 1, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1413), 1, + sym_field_declaration_list, + STATE(3226), 1, sym_where_clause, - STATE(2511), 2, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [77362] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81284] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2512), 2, - sym_line_comment, - sym_block_comment, - [77385] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(1258), 1, + STATE(580), 1, sym_declaration_list, - STATE(3116), 1, + STATE(3374), 1, sym_where_clause, - STATE(2513), 2, + STATE(2667), 2, sym_line_comment, sym_block_comment, - [77408] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81307] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - STATE(685), 1, - sym_field_declaration_list, - STATE(3190), 1, + ACTIONS(5888), 1, + anon_sym_SEMI, + STATE(3572), 1, sym_where_clause, - STATE(2514), 2, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [77431] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81330] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym_field_declaration_list, - STATE(3119), 1, - sym_where_clause, - STATE(2515), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3591), 1, + sym_type_arguments, + ACTIONS(5831), 2, + sym_identifier, + sym_super, + STATE(2669), 2, sym_line_comment, sym_block_comment, - [77454] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81351] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_COLON, - STATE(2516), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5759), 1, + anon_sym_RPAREN, + ACTIONS(5761), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_RPAREN, + [81374] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5737), 1, anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_RBRACK, + ACTIONS(5892), 1, anon_sym_COMMA, - [77473] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3186), 1, + aux_sym_slice_pattern_repeat1, + STATE(2671), 2, + sym_line_comment, + sym_block_comment, + [81397] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + ACTIONS(5069), 1, anon_sym_LT, - STATE(2196), 1, + STATE(2318), 1, sym_parameters, - STATE(3163), 1, + STATE(3409), 1, sym_type_parameters, - STATE(2517), 2, + STATE(2672), 2, sym_line_comment, sym_block_comment, - [77496] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81420] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(393), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2518), 2, + ACTIONS(5894), 1, + anon_sym_DQUOTE, + STATE(2676), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2673), 2, sym_line_comment, sym_block_comment, - [77519] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81441] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1287), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2519), 2, + ACTIONS(5896), 1, + anon_sym_COLON, + STATE(2674), 2, sym_line_comment, sym_block_comment, - [77542] = 6, - ACTIONS(101), 1, + ACTIONS(5029), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81460] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5898), 1, + sym_identifier, + STATE(2121), 1, + sym_type_arguments, + STATE(2675), 2, + sym_line_comment, + sym_block_comment, + [81483] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5621), 1, + ACTIONS(5900), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2635), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, - STATE(2520), 2, + STATE(2676), 2, sym_line_comment, sym_block_comment, - [77563] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81504] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACK, - ACTIONS(5627), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_delim_token_tree, - STATE(2521), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(5902), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2677), 2, sym_line_comment, sym_block_comment, - [77586] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81527] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5831), 1, sym_super, - ACTIONS(5629), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(1419), 1, + STATE(3553), 1, sym_type_arguments, - STATE(2522), 2, + STATE(2678), 2, sym_line_comment, sym_block_comment, - [77609] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81550] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5631), 1, - anon_sym_SEMI, - STATE(3400), 1, - sym_where_clause, - STATE(2523), 2, - sym_line_comment, - sym_block_comment, - [77632] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5633), 1, - anon_sym_RPAREN, - ACTIONS(5635), 1, - anon_sym_COMMA, - STATE(2857), 1, - aux_sym_slice_pattern_repeat1, - STATE(2524), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(3591), 1, + sym_type_arguments, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [77655] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81573] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5637), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5906), 1, anon_sym_RPAREN, - ACTIONS(5639), 1, + ACTIONS(5908), 1, anon_sym_COMMA, - STATE(2864), 1, - aux_sym_slice_pattern_repeat1, - STATE(2525), 2, + STATE(3166), 1, + aux_sym_tuple_type_repeat1, + STATE(2680), 2, sym_line_comment, sym_block_comment, - [77678] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81596] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5438), 1, + ACTIONS(5910), 1, anon_sym_RPAREN, - ACTIONS(5440), 1, + ACTIONS(5912), 1, anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, - STATE(2526), 2, + STATE(3025), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2681), 2, sym_line_comment, sym_block_comment, - [77701] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81619] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5604), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, sym_identifier, - sym_super, - STATE(2527), 2, + ACTIONS(5916), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [77722] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81642] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4184), 1, anon_sym_LT2, - STATE(3195), 1, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + ACTIONS(5015), 1, + anon_sym_BANG, + STATE(1659), 1, sym_type_arguments, - ACTIONS(5641), 2, - sym_identifier, - sym_super, - STATE(2528), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [77743] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81665] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5641), 2, - sym_identifier, - sym_super, - STATE(2529), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3530), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2684), 2, sym_line_comment, sym_block_comment, - [77764] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81688] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(582), 1, - sym_declaration_list, - STATE(3230), 1, - sym_where_clause, - STATE(2530), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1547), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2685), 2, sym_line_comment, sym_block_comment, - [77787] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81711] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(2531), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_type_arguments, + STATE(2501), 1, + sym_parameters, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [77810] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81734] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, + ACTIONS(5711), 1, anon_sym_COLON, - ACTIONS(5434), 1, + ACTIONS(5713), 1, anon_sym_PIPE, - ACTIONS(5436), 1, + ACTIONS(5715), 1, anon_sym_COMMA, - STATE(3001), 1, + STATE(3047), 1, aux_sym_closure_parameters_repeat1, - STATE(2532), 2, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [77833] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81757] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2533), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5643), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [77850] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, - STATE(2534), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5918), 1, + sym_identifier, + STATE(2121), 1, + sym_type_arguments, + STATE(2688), 2, sym_line_comment, sym_block_comment, - [77873] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81780] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5103), 2, + ACTIONS(5807), 1, sym_identifier, + ACTIONS(5831), 1, sym_super, - STATE(2535), 2, + STATE(3591), 1, + sym_type_arguments, + STATE(2689), 2, sym_line_comment, sym_block_comment, - [77894] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81803] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(745), 1, - sym_enum_variant_list, - STATE(3159), 1, - sym_where_clause, - STATE(2536), 2, + ACTIONS(5920), 1, + anon_sym_COLON_COLON, + STATE(2690), 2, sym_line_comment, sym_block_comment, - [77917] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4907), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81822] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, + ACTIONS(5306), 1, sym_super, - STATE(2537), 2, + ACTIONS(5904), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [77938] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81845] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5645), 1, - anon_sym_SEMI, - ACTIONS(5647), 1, - anon_sym_EQ, - ACTIONS(5649), 1, - anon_sym_else, - STATE(2538), 2, - sym_line_comment, - sym_block_comment, - [77961] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(5651), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(3195), 1, + STATE(3591), 1, sym_type_arguments, - STATE(2539), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - [77984] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81868] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, - STATE(3215), 1, - sym_where_clause, - STATE(2540), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1470), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2693), 2, sym_line_comment, sym_block_comment, - [78007] = 7, - ACTIONS(101), 1, + [81891] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3714), 1, + sym_label, + STATE(3738), 1, + sym_block, + STATE(2694), 2, + sym_line_comment, + sym_block_comment, + [81914] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5653), 1, - anon_sym_SEMI, - STATE(3381), 1, - sym_where_clause, - STATE(2541), 2, + ACTIONS(5686), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_parameters_repeat1, + STATE(2695), 2, sym_line_comment, sym_block_comment, - [78030] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81937] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5922), 1, + anon_sym_LPAREN, + ACTIONS(5924), 1, + anon_sym_LBRACK, + ACTIONS(5926), 1, anon_sym_LBRACE, - STATE(1356), 1, - sym_declaration_list, - STATE(3219), 1, - sym_where_clause, - STATE(2542), 2, + STATE(2033), 1, + sym_delim_token_tree, + STATE(2696), 2, sym_line_comment, sym_block_comment, - [78053] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81960] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_enum_variant_list, - STATE(3229), 1, - sym_where_clause, - STATE(2543), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(5928), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2697), 2, sym_line_comment, sym_block_comment, - [78076] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81983] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(740), 1, + STATE(591), 1, sym_declaration_list, - STATE(3099), 1, + STATE(3437), 1, sym_where_clause, - STATE(2544), 2, + STATE(2698), 2, sym_line_comment, sym_block_comment, - [78099] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82006] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1371), 1, - sym_field_declaration_list, - STATE(3233), 1, - sym_where_clause, - STATE(2545), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(290), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2699), 2, sym_line_comment, sym_block_comment, - [78122] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82029] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2546), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5930), 2, + sym_identifier, + sym_super, + STATE(2700), 2, sym_line_comment, sym_block_comment, - ACTIONS(5397), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78139] = 7, - ACTIONS(101), 1, + [82050] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3591), 1, + sym_type_arguments, + ACTIONS(5930), 2, + sym_identifier, + sym_super, + STATE(2701), 2, + sym_line_comment, + sym_block_comment, + [82071] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1376), 1, + STATE(488), 1, sym_block, - STATE(3539), 1, + STATE(3778), 1, sym_label, - STATE(2547), 2, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [78162] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82094] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(244), 1, + STATE(463), 1, sym_block, - STATE(3510), 1, + STATE(3778), 1, sym_label, - STATE(2548), 2, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [78185] = 5, - ACTIONS(101), 1, + [82117] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2704), 2, + sym_line_comment, + sym_block_comment, + [82138] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5655), 1, - anon_sym_COLON, - STATE(2549), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5807), 1, + sym_identifier, + ACTIONS(5831), 1, + sym_super, + STATE(3553), 1, + sym_type_arguments, + STATE(2705), 2, + sym_line_comment, + sym_block_comment, + [82161] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5932), 1, + anon_sym_SEMI, + STATE(3571), 1, + sym_where_clause, + STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, + [82184] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5934), 1, anon_sym_RPAREN, + ACTIONS(5936), 1, + anon_sym_COMMA, + STATE(2914), 1, + aux_sym_slice_pattern_repeat1, + STATE(2707), 2, + sym_line_comment, + sym_block_comment, + [82207] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5737), 1, anon_sym_PIPE, + ACTIONS(5938), 1, + anon_sym_RPAREN, + ACTIONS(5940), 1, anon_sym_COMMA, - [78204] = 5, - ACTIONS(3), 1, + STATE(2916), 1, + aux_sym_slice_pattern_repeat1, + STATE(2708), 2, + sym_line_comment, + sym_block_comment, + [82230] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5657), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2550), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2291), 1, + sym_parameters, + STATE(3356), 1, + sym_type_parameters, + STATE(2709), 2, sym_line_comment, sym_block_comment, - ACTIONS(5659), 3, + [82253] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78223] = 5, - ACTIONS(101), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5942), 1, + anon_sym_SEMI, + STATE(3658), 1, + sym_where_clause, + STATE(2710), 2, + sym_line_comment, + sym_block_comment, + [82276] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_declaration_list, + STATE(3258), 1, + sym_where_clause, + STATE(2711), 2, + sym_line_comment, + sym_block_comment, + [82299] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5661), 1, + ACTIONS(5944), 1, anon_sym_in, - STATE(2551), 2, + STATE(2712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5946), 3, + sym_self, + sym_super, + sym_crate, + [82318] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3575), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2713), 2, + sym_line_comment, + sym_block_comment, + [82341] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5948), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(5663), 3, - sym_self, - sym_super, - sym_crate, - [78242] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82362] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2552), 2, + ACTIONS(5950), 1, + anon_sym_LBRACE, + ACTIONS(5952), 1, + anon_sym_for, + ACTIONS(5954), 1, + anon_sym_loop, + ACTIONS(5956), 1, + anon_sym_while, + STATE(2715), 2, sym_line_comment, sym_block_comment, - ACTIONS(759), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78259] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82385] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2191), 1, - sym_parameters, - STATE(3228), 1, - sym_type_parameters, - STATE(2553), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(478), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [78282] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82408] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5534), 1, + ACTIONS(5696), 1, + anon_sym_RPAREN, + ACTIONS(5698), 1, anon_sym_COMMA, - STATE(2961), 1, + STATE(2919), 1, aux_sym_parameters_repeat1, - STATE(2554), 2, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [78305] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82431] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - STATE(2555), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5958), 1, + anon_sym_SEMI, + STATE(3552), 1, + sym_where_clause, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [78328] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82454] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2556), 2, - sym_line_comment, - sym_block_comment, - [78351] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5667), 1, + ACTIONS(5960), 1, anon_sym_SEMI, - ACTIONS(5669), 1, + ACTIONS(5962), 1, anon_sym_EQ, - ACTIONS(5671), 1, + ACTIONS(5964), 1, anon_sym_else, - STATE(2557), 2, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [78374] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82477] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5673), 1, - anon_sym_SEMI, - STATE(3479), 1, - sym_where_clause, - STATE(2558), 2, + ACTIONS(5966), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2720), 2, sym_line_comment, sym_block_comment, - [78397] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82498] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5922), 1, + anon_sym_LPAREN, + ACTIONS(5924), 1, + anon_sym_LBRACK, + ACTIONS(5926), 1, anon_sym_LBRACE, - STATE(1426), 1, - sym_declaration_list, - STATE(3271), 1, - sym_where_clause, - STATE(2559), 2, + STATE(2044), 1, + sym_delim_token_tree, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [78420] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82521] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5675), 1, - anon_sym_SEMI, - STATE(3500), 1, - sym_where_clause, - STATE(2560), 2, - sym_line_comment, - sym_block_comment, - [78443] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(1441), 1, + STATE(743), 1, sym_declaration_list, - STATE(3274), 1, + STATE(3489), 1, sym_where_clause, - STATE(2561), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - [78466] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82544] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(679), 1, - sym_declaration_list, - STATE(3210), 1, - sym_where_clause, - STATE(2562), 2, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(5968), 1, + sym_identifier, + ACTIONS(5970), 1, + sym_super, + STATE(1618), 1, + sym_type_arguments, + STATE(2723), 2, sym_line_comment, sym_block_comment, - [78489] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82567] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5677), 1, + ACTIONS(5972), 1, anon_sym_DQUOTE, - STATE(2520), 1, + STATE(2635), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, - STATE(2563), 2, + STATE(2724), 2, sym_line_comment, sym_block_comment, - [78510] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82588] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5164), 1, anon_sym_COLON, - STATE(2888), 1, + STATE(3402), 1, sym_trait_bounds, - ACTIONS(5679), 2, + ACTIONS(5719), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2564), 2, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [78531] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82609] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(2565), 2, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(5968), 1, + sym_identifier, + ACTIONS(5970), 1, + sym_super, + STATE(1627), 1, + sym_type_arguments, + STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(5681), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78550] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82632] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - STATE(751), 1, - sym_field_declaration_list, - STATE(3286), 1, - sym_where_clause, - STATE(2566), 2, + ACTIONS(5974), 1, + sym_identifier, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [78573] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5976), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [82651] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(382), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2567), 2, + ACTIONS(5978), 1, + anon_sym_DQUOTE, + STATE(2724), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2728), 2, sym_line_comment, sym_block_comment, - [78596] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82672] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2217), 1, - sym_parameters, - STATE(3083), 1, - sym_type_parameters, - STATE(2568), 2, + ACTIONS(5930), 1, + sym_super, + ACTIONS(5980), 1, + sym_identifier, + ACTIONS(5982), 1, + anon_sym_LT2, + STATE(2605), 1, + sym_type_arguments, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [78619] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82695] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(2569), 2, + ACTIONS(5930), 1, + sym_super, + ACTIONS(5980), 1, + sym_identifier, + ACTIONS(5982), 1, + anon_sym_LT2, + STATE(2564), 1, + sym_type_arguments, + STATE(2730), 2, sym_line_comment, sym_block_comment, - ACTIONS(5683), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78638] = 7, - ACTIONS(101), 1, + [82718] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3714), 1, + sym_label, + STATE(3751), 1, + sym_block, + STATE(2731), 2, + sym_line_comment, + sym_block_comment, + [82741] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5685), 1, - anon_sym_SEMI, - STATE(3598), 1, - sym_where_clause, - STATE(2570), 2, + ACTIONS(5984), 1, + anon_sym_RPAREN, + ACTIONS(5986), 1, + anon_sym_COMMA, + STATE(3030), 1, + aux_sym_tuple_type_repeat1, + STATE(2732), 2, sym_line_comment, sym_block_comment, - [78661] = 7, - ACTIONS(101), 1, + [82764] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_declaration_list, - STATE(3035), 1, - sym_where_clause, - STATE(2571), 2, + ACTIONS(5988), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [78684] = 7, - ACTIONS(101), 1, + ACTIONS(5990), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82783] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5992), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5994), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82802] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(5651), 1, + ACTIONS(5996), 1, sym_identifier, - STATE(3217), 1, + STATE(1498), 1, sym_type_arguments, - STATE(2572), 2, + STATE(2735), 2, sym_line_comment, sym_block_comment, - [78707] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82825] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(383), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2573), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2320), 1, + sym_parameters, + STATE(3386), 1, + sym_type_parameters, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [78730] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82848] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5687), 1, + ACTIONS(5998), 1, anon_sym_SEMI, - STATE(3413), 1, - sym_where_clause, - STATE(2574), 2, + ACTIONS(6000), 1, + anon_sym_EQ, + ACTIONS(6002), 1, + anon_sym_else, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [78753] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82871] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2575), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - [78774] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1005), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [82888] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5689), 1, - anon_sym_RPAREN, - ACTIONS(5691), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_tuple_type_repeat1, - STATE(2576), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5811), 1, + sym_identifier, + STATE(1635), 1, + sym_type_arguments, + STATE(2739), 2, sym_line_comment, sym_block_comment, - [78797] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82911] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(514), 1, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1177), 1, sym_declaration_list, - STATE(3221), 1, + STATE(3214), 1, sym_where_clause, - STATE(2577), 2, + STATE(2740), 2, sym_line_comment, sym_block_comment, - [78820] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82934] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, - STATE(2578), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6004), 1, + anon_sym_SEMI, + STATE(3578), 1, + sym_where_clause, + STATE(2741), 2, sym_line_comment, sym_block_comment, - [78843] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82957] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5693), 1, - anon_sym_RPAREN, - ACTIONS(5695), 1, + ACTIONS(6006), 1, anon_sym_COMMA, - STATE(2975), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2579), 2, + ACTIONS(5874), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2742), 3, sym_line_comment, sym_block_comment, - [78866] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_slice_pattern_repeat1, + [82976] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5697), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, - anon_sym_LBRACK, - ACTIONS(5701), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(2533), 1, - sym_token_tree, - STATE(2580), 2, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1193), 1, + sym_declaration_list, + STATE(3218), 1, + sym_where_clause, + STATE(2743), 2, sym_line_comment, sym_block_comment, - [78889] = 5, - ACTIONS(101), 1, + [82999] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6009), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2744), 2, + sym_line_comment, + sym_block_comment, + [83022] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, + ACTIONS(4654), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5703), 2, + ACTIONS(6011), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2581), 2, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [78908] = 7, - ACTIONS(101), 1, + [83041] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2746), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1009), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83058] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5469), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(473), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2582), 2, + STATE(1198), 1, + sym_enum_variant_list, + STATE(3227), 1, + sym_where_clause, + STATE(2747), 2, sym_line_comment, sym_block_comment, - [78931] = 7, - ACTIONS(101), 1, + [83081] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6013), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83098] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(466), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2583), 2, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1204), 1, + sym_field_declaration_list, + STATE(3232), 1, + sym_where_clause, + STATE(2749), 2, sym_line_comment, sym_block_comment, - [78954] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83121] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_DQUOTE, - STATE(2595), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2584), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5918), 1, + sym_identifier, + STATE(2128), 1, + sym_type_arguments, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [78975] = 7, - ACTIONS(101), 1, + [83144] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6015), 1, + anon_sym_COLON, + STATE(2751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5029), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [83163] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - STATE(2841), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2585), 2, + ACTIONS(6017), 1, + anon_sym_COLON_COLON, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [78998] = 7, - ACTIONS(101), 1, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83182] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5898), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2753), 2, + sym_line_comment, + sym_block_comment, + [83205] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1744), 1, + STATE(1544), 1, sym_block, - STATE(3591), 1, + STATE(3714), 1, sym_label, - STATE(2586), 2, + STATE(2754), 2, + sym_line_comment, + sym_block_comment, + [83228] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, + anon_sym_PLUS, + STATE(2755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6019), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [83247] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6021), 1, + anon_sym_EQ, + ACTIONS(6023), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [79021] = 5, + [83268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5707), 1, + ACTIONS(6025), 1, aux_sym_token_repetition_pattern_token1, - STATE(2587), 2, + STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(5709), 3, + ACTIONS(6027), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [79040] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83287] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(3195), 1, + STATE(1712), 1, + sym_parameters, + STATE(2026), 1, sym_type_arguments, - ACTIONS(5604), 2, - sym_identifier, - sym_super, - STATE(2588), 2, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [79061] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83310] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, + ACTIONS(6029), 1, anon_sym_COMMA, - ACTIONS(4091), 2, + ACTIONS(4296), 2, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2589), 3, + STATE(2759), 3, sym_line_comment, sym_block_comment, aux_sym_arguments_repeat1, - [79080] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4095), 1, - anon_sym_COLON_COLON, - ACTIONS(4846), 1, - anon_sym_BANG, - STATE(1581), 1, - sym_type_arguments, - STATE(2590), 2, - sym_line_comment, - sym_block_comment, - [79103] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(454), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2591), 2, - sym_line_comment, - sym_block_comment, - [79126] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83329] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_LBRACE, - STATE(1957), 1, - sym_delim_token_tree, - STATE(2592), 2, - sym_line_comment, - sym_block_comment, - [79149] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(446), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2593), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6032), 1, + anon_sym_SEMI, + STATE(3726), 1, + sym_where_clause, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [79172] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83352] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(467), 1, + STATE(3634), 1, sym_block, - STATE(3590), 1, + STATE(3714), 1, sym_label, - STATE(2594), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [79195] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83375] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5720), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2595), 2, - sym_line_comment, - sym_block_comment, - [79216] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5714), 1, + ACTIONS(6034), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(6036), 1, anon_sym_LBRACK, - ACTIONS(5718), 1, + ACTIONS(6038), 1, anon_sym_LBRACE, - STATE(1959), 1, + STATE(402), 1, sym_delim_token_tree, - STATE(2596), 2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [79239] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83398] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, - sym_super, - STATE(1568), 1, - sym_type_arguments, - STATE(2597), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1469), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [79262] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83421] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5722), 1, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5306), 2, sym_identifier, - ACTIONS(5724), 1, sym_super, - STATE(1552), 1, - sym_type_arguments, - STATE(2598), 2, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [79285] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83442] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, - STATE(3195), 1, + STATE(3591), 1, sym_type_arguments, - STATE(2599), 2, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(2765), 2, sym_line_comment, sym_block_comment, - [79308] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83463] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2600), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_field_declaration_list, + STATE(3285), 1, + sym_where_clause, + STATE(2766), 2, sym_line_comment, sym_block_comment, - [79331] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83486] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5726), 1, - anon_sym_RPAREN, - ACTIONS(5728), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_tuple_type_repeat1, - STATE(2601), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2333), 1, + sym_parameters, + STATE(3401), 1, + sym_type_parameters, + STATE(2767), 2, sym_line_comment, sym_block_comment, - [79354] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83509] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3373), 1, + STATE(1471), 1, sym_block, - STATE(3539), 1, + STATE(3714), 1, sym_label, - STATE(2602), 2, + STATE(2768), 2, sym_line_comment, sym_block_comment, - [79377] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83532] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1626), 1, - sym_parameters, - STATE(1933), 1, - sym_type_arguments, - STATE(2603), 2, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6040), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [79400] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83551] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2604), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5898), 1, + sym_identifier, + STATE(3591), 1, + sym_type_arguments, + STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(5730), 4, - anon_sym_SEMI, + [83574] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79417] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5732), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2605), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(423), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [79438] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83597] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2606), 2, + ACTIONS(6042), 1, + anon_sym_DQUOTE, + STATE(2714), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2772), 2, sym_line_comment, sym_block_comment, - ACTIONS(5735), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79455] = 7, - ACTIONS(101), 1, + [83618] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2607), 2, + ACTIONS(6044), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [79478] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6046), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83637] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3388), 1, + STATE(3556), 1, sym_block, - STATE(3539), 1, + STATE(3714), 1, sym_label, - STATE(2608), 2, + STATE(2774), 2, sym_line_comment, sym_block_comment, - [79501] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83660] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(392), 1, + STATE(3558), 1, sym_block, - STATE(3510), 1, + STATE(3714), 1, sym_label, - STATE(2609), 2, + STATE(2775), 2, sym_line_comment, sym_block_comment, - [79524] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83683] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5426), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5753), 1, anon_sym_RPAREN, - ACTIONS(5428), 1, + ACTIONS(5757), 1, anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - STATE(2610), 2, + STATE(2969), 1, + aux_sym_slice_pattern_repeat1, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [79547] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83706] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_LBRACE, - ACTIONS(5739), 1, - anon_sym_for, - ACTIONS(5741), 1, - anon_sym_loop, - ACTIONS(5743), 1, - anon_sym_while, - STATE(2611), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5898), 1, + sym_identifier, + STATE(2128), 1, + sym_type_arguments, + STATE(2777), 2, sym_line_comment, sym_block_comment, - [79570] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83729] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(468), 1, + STATE(494), 1, sym_block, - STATE(3590), 1, + STATE(3778), 1, sym_label, - STATE(2612), 2, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [79593] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83752] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - STATE(2613), 2, - sym_line_comment, - sym_block_comment, - [79616] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5446), 1, + ACTIONS(6048), 1, + anon_sym_RPAREN, + ACTIONS(6050), 1, anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - STATE(2614), 2, + STATE(2882), 1, + aux_sym_tuple_type_repeat1, + STATE(2779), 2, sym_line_comment, sym_block_comment, - [79639] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83775] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1743), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2615), 2, + STATE(604), 1, + sym_field_declaration_list, + STATE(3340), 1, + sym_where_clause, + STATE(2780), 2, sym_line_comment, sym_block_comment, - [79662] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83798] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1617), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1745), 1, + STATE(2207), 1, sym_block, - STATE(3591), 1, + STATE(3770), 1, sym_label, - STATE(2616), 2, + STATE(2781), 2, sym_line_comment, sym_block_comment, - [79685] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83821] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5745), 1, - anon_sym_DQUOTE, - STATE(2623), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2617), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2336), 1, + sym_parameters, + STATE(3360), 1, + sym_type_parameters, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [79706] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83844] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(462), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2618), 2, + ACTIONS(5920), 1, + anon_sym_COLON_COLON, + STATE(2783), 2, sym_line_comment, sym_block_comment, - [79729] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4897), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83863] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1841), 1, + STATE(1465), 1, sym_block, - STATE(3591), 1, + STATE(3714), 1, sym_label, - STATE(2619), 2, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [79752] = 7, - ACTIONS(101), 1, + [83886] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6052), 1, + anon_sym_COLON_COLON, + STATE(2785), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4861), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83905] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, + ACTIONS(6034), 1, anon_sym_LPAREN, - ACTIONS(5749), 1, + ACTIONS(6036), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(6038), 1, anon_sym_LBRACE, - STATE(1025), 1, + STATE(419), 1, sym_delim_token_tree, - STATE(2620), 2, + STATE(2786), 2, sym_line_comment, sym_block_comment, - [79775] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83928] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1554), 1, + STATE(3540), 1, sym_block, - STATE(3591), 1, + STATE(3714), 1, sym_label, - STATE(2621), 2, - sym_line_comment, - sym_block_comment, - [79798] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(2622), 2, + STATE(2787), 2, sym_line_comment, sym_block_comment, - ACTIONS(5753), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [79817] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83951] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5755), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2623), 2, - sym_line_comment, - sym_block_comment, - [79838] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, - anon_sym_LPAREN, - ACTIONS(5749), 1, - anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1026), 1, - sym_delim_token_tree, - STATE(2624), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3544), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2788), 2, sym_line_comment, sym_block_comment, - [79861] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83974] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, - sym_identifier, - STATE(1377), 1, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4775), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, sym_type_arguments, - STATE(2625), 2, + STATE(2789), 2, sym_line_comment, sym_block_comment, - [79884] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83997] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2626), 2, + ACTIONS(6052), 1, + anon_sym_COLON_COLON, + STATE(2790), 2, sym_line_comment, sym_block_comment, - [79907] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84016] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2627), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6054), 1, + anon_sym_SEMI, + STATE(3613), 1, + sym_where_clause, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [79930] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84039] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1769), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2628), 2, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5745), 1, + anon_sym_COMMA, + STATE(2955), 1, + aux_sym_parameters_repeat1, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [79953] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84062] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1775), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2629), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5636), 1, + anon_sym_RPAREN, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(3043), 1, + aux_sym_parameters_repeat1, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [79976] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84085] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5757), 1, - anon_sym_DQUOTE, - STATE(2634), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2630), 2, + ACTIONS(6056), 1, + anon_sym_in, + STATE(2794), 2, sym_line_comment, sym_block_comment, - [79997] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6058), 3, + sym_self, + sym_super, + sym_crate, + [84104] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1780), 1, + STATE(3593), 1, sym_block, - STATE(3591), 1, + STATE(3714), 1, sym_label, - STATE(2631), 2, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [80020] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84127] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5164), 1, anon_sym_COLON, - STATE(2888), 1, + STATE(2026), 1, + sym_type_arguments, + STATE(2550), 1, sym_trait_bounds, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2632), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - [80041] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5761), 1, - anon_sym_LPAREN, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(5765), 1, + [84150] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - STATE(1785), 1, - sym_delim_token_tree, - STATE(2633), 2, - sym_line_comment, - sym_block_comment, - [80064] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2634), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(410), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2797), 2, sym_line_comment, sym_block_comment, - [80085] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84173] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5761), 1, - anon_sym_LPAREN, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(5765), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1789), 1, - sym_delim_token_tree, - STATE(2635), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [80108] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84196] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2636), 2, - sym_line_comment, - sym_block_comment, - [80131] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5769), 1, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2637), 2, + ACTIONS(6060), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [80154] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84219] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - STATE(3456), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2638), 2, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6062), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [80177] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84242] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, - anon_sym_RPAREN, - ACTIONS(5512), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, - STATE(2639), 2, - sym_line_comment, - sym_block_comment, - [80200] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5771), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, - anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2640), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + STATE(1284), 1, + sym_type_arguments, + STATE(2801), 2, sym_line_comment, sym_block_comment, - [80223] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84265] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_DQUOTE, - STATE(2642), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2641), 2, - sym_line_comment, - sym_block_comment, - [80244] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2642), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6064), 1, + anon_sym_RPAREN, + ACTIONS(6066), 1, + anon_sym_COMMA, + STATE(2977), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [80265] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84288] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4184), 1, anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, - STATE(3195), 1, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + STATE(1659), 1, sym_type_arguments, - STATE(2643), 2, + STATE(2803), 2, sym_line_comment, sym_block_comment, - [80288] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84311] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2644), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2315), 1, + sym_parameters, + STATE(3381), 1, + sym_type_parameters, + STATE(2804), 2, sym_line_comment, sym_block_comment, - [80311] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84334] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3365), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2645), 2, + ACTIONS(6068), 1, + anon_sym_async, + ACTIONS(6070), 1, + anon_sym_move, + STATE(255), 1, + sym_closure_parameters, + STATE(2805), 2, sym_line_comment, sym_block_comment, - [80334] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84357] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5781), 1, - anon_sym_SEMI, - ACTIONS(5783), 1, - anon_sym_EQ, - ACTIONS(5785), 1, - anon_sym_else, - STATE(2646), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2806), 2, sym_line_comment, sym_block_comment, - [80357] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84378] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5281), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - STATE(660), 1, + STATE(622), 1, sym_enum_variant_list, - STATE(3046), 1, + STATE(3294), 1, sym_where_clause, - STATE(2647), 2, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [80380] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84401] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2648), 2, + ACTIONS(5920), 1, + anon_sym_COLON_COLON, + STATE(2808), 2, sym_line_comment, sym_block_comment, - [80403] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4879), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84420] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2649), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(491), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2809), 2, sym_line_comment, sym_block_comment, - [80426] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84443] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2650), 2, + ACTIONS(6072), 1, + anon_sym_LBRACE, + ACTIONS(6074), 1, + anon_sym_for, + ACTIONS(6076), 1, + anon_sym_loop, + ACTIONS(6078), 1, + anon_sym_while, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [80449] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84466] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2651), 2, + ACTIONS(6052), 1, + anon_sym_COLON_COLON, + STATE(2811), 2, sym_line_comment, sym_block_comment, - [80472] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84485] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2652), 2, + ACTIONS(6080), 1, + anon_sym_COLON_COLON, + STATE(2812), 2, sym_line_comment, sym_block_comment, - [80495] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84504] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2653), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [80518] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6082), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84523] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3195), 1, + ACTIONS(4933), 1, + anon_sym_for, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, sym_type_arguments, - STATE(2654), 2, + STATE(2814), 2, sym_line_comment, sym_block_comment, - [80541] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84546] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2655), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6084), 1, + anon_sym_SEMI, + ACTIONS(6086), 1, + anon_sym_EQ, + ACTIONS(6088), 1, + anon_sym_else, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [80564] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84569] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2656), 2, + ACTIONS(6080), 1, + anon_sym_COLON_COLON, + STATE(2816), 2, sym_line_comment, sym_block_comment, - [80587] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4861), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84588] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2657), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5394), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2817), 2, sym_line_comment, sym_block_comment, - [80610] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84609] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(5793), 1, + ACTIONS(5996), 1, sym_identifier, - STATE(3195), 1, + STATE(1516), 1, sym_type_arguments, - STATE(2658), 2, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [80633] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84632] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2659), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2819), 2, sym_line_comment, sym_block_comment, - [80656] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84655] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(6090), 1, anon_sym_LBRACE, - STATE(528), 1, - sym_declaration_list, - STATE(3080), 1, - sym_where_clause, - STATE(2660), 2, + ACTIONS(6092), 1, + anon_sym_for, + ACTIONS(6094), 1, + anon_sym_loop, + ACTIONS(6096), 1, + anon_sym_while, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [80679] = 5, - ACTIONS(3), 1, + [84678] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5795), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2661), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3714), 1, + sym_label, + STATE(3798), 1, + sym_block, + STATE(2821), 2, sym_line_comment, sym_block_comment, - ACTIONS(5797), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80698] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84701] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2662), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(414), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4129), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [80715] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84724] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2663), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6098), 1, + anon_sym_SEMI, + ACTIONS(6100), 1, + anon_sym_EQ, + ACTIONS(6102), 1, + anon_sym_else, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [80736] = 5, - ACTIONS(101), 1, + [84747] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6104), 1, + anon_sym_RPAREN, + ACTIONS(6106), 1, + anon_sym_COMMA, + STATE(3023), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2824), 2, + sym_line_comment, + sym_block_comment, + [84770] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - STATE(2664), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6108), 1, + anon_sym_SEMI, + STATE(3757), 1, + sym_where_clause, + STATE(2825), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80755] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84793] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2197), 1, - sym_parameters, - STATE(3214), 1, - sym_type_parameters, - STATE(2665), 2, + ACTIONS(6110), 1, + sym_identifier, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [80778] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6112), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [84812] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, + ACTIONS(6017), 1, anon_sym_COLON_COLON, - STATE(2666), 2, + STATE(2827), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, + ACTIONS(4861), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [80797] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84831] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5803), 1, - anon_sym_in, - STATE(2667), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5805), 3, - sym_self, - sym_super, - sym_crate, - [80816] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5807), 1, - anon_sym_SEMI, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5811), 1, - anon_sym_else, - STATE(2668), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6114), 1, + anon_sym_RBRACK, + ACTIONS(6116), 1, + anon_sym_COMMA, + STATE(3111), 1, + aux_sym_slice_pattern_repeat1, + STATE(2828), 2, sym_line_comment, sym_block_comment, - [80839] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84854] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LBRACE, - ACTIONS(5815), 1, - anon_sym_for, - ACTIONS(5817), 1, - anon_sym_loop, - ACTIONS(5819), 1, - anon_sym_while, - STATE(2669), 2, + ACTIONS(4823), 1, + anon_sym_DOT_DOT, + ACTIONS(6118), 1, + anon_sym_COLON_COLON, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [80862] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84875] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, + ACTIONS(6017), 1, anon_sym_COLON_COLON, - STATE(2670), 2, + STATE(2830), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, + ACTIONS(4871), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [80881] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84894] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5823), 1, - anon_sym_RPAREN, - ACTIONS(5825), 1, - anon_sym_COMMA, - STATE(2893), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2671), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6120), 1, + anon_sym_SEMI, + STATE(3598), 1, + sym_where_clause, + STATE(2831), 2, sym_line_comment, sym_block_comment, - [80904] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84917] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5827), 1, - anon_sym_RBRACK, - ACTIONS(5829), 1, - anon_sym_COMMA, - STATE(2818), 1, - aux_sym_slice_pattern_repeat1, - STATE(2672), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6122), 1, + anon_sym_SEMI, + STATE(3599), 1, + sym_where_clause, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [80927] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84940] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3488), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2673), 2, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1252), 1, + sym_declaration_list, + STATE(3305), 1, + sym_where_clause, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [80950] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84963] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6124), 1, anon_sym_RPAREN, - ACTIONS(5833), 1, + ACTIONS(6126), 1, anon_sym_COMMA, - STATE(2752), 1, - aux_sym_slice_pattern_repeat1, - STATE(2674), 2, + STATE(3114), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [80973] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84986] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3567), 1, - sym_block, - STATE(2675), 2, - sym_line_comment, - sym_block_comment, - [80996] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3503), 1, + STATE(493), 1, sym_block, - STATE(3539), 1, + STATE(3778), 1, sym_label, - STATE(2676), 2, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [81019] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85009] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4670), 1, - anon_sym_for, - ACTIONS(5598), 1, + ACTIONS(6080), 1, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(2677), 2, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [81042] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85028] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2228), 1, - sym_parameters, - STATE(3237), 1, - sym_type_parameters, - STATE(2678), 2, - sym_line_comment, - sym_block_comment, - [81065] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - STATE(2679), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6128), 1, + anon_sym_SEMI, + STATE(3580), 1, + sym_where_clause, + STATE(2837), 2, sym_line_comment, sym_block_comment, - ACTIONS(5835), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [81084] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85051] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - anon_sym_COMMA, - ACTIONS(5835), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2680), 3, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4925), 1, + anon_sym_for, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + STATE(2027), 1, + sym_type_arguments, + STATE(2838), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [81103] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85074] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2681), 2, + ACTIONS(6130), 1, + anon_sym_LPAREN, + ACTIONS(6132), 1, + anon_sym_LBRACK, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(2748), 1, + sym_token_tree, + STATE(2839), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85097] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, - STATE(2682), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6136), 1, + anon_sym_SEMI, + STATE(3724), 1, + sym_where_clause, + STATE(2840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81139] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85120] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(729), 1, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1274), 1, sym_declaration_list, - STATE(3282), 1, + STATE(3330), 1, sym_where_clause, - STATE(2683), 2, + STATE(2841), 2, sym_line_comment, sym_block_comment, - [81162] = 7, - ACTIONS(101), 1, + [85143] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + ACTIONS(4989), 1, + anon_sym_BANG, + STATE(1284), 1, + sym_type_arguments, + STATE(2842), 2, + sym_line_comment, + sym_block_comment, + [85166] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1269), 1, + STATE(3518), 1, sym_block, - STATE(3539), 1, + STATE(3714), 1, sym_label, - STATE(2684), 2, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [81185] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85189] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5842), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6138), 1, anon_sym_SEMI, - STATE(3542), 1, + STATE(3582), 1, sym_where_clause, - STATE(2685), 2, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [81208] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85212] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3362), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2686), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(6140), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [81231] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85235] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1218), 1, + STATE(3519), 1, sym_block, - STATE(3539), 1, + STATE(3714), 1, sym_label, - STATE(2687), 2, + STATE(2846), 2, sym_line_comment, sym_block_comment, - [81254] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85258] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5844), 1, - anon_sym_DQUOTE, - STATE(2496), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2688), 2, - sym_line_comment, - sym_block_comment, - [81275] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2204), 1, - sym_parameters, - STATE(3253), 1, - sym_type_parameters, - STATE(2689), 2, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5338), 1, + anon_sym_LBRACE, + STATE(1527), 1, + sym_delim_token_tree, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [81298] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85281] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1091), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2690), 2, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5646), 1, + anon_sym_COMMA, + STATE(3052), 1, + aux_sym_parameters_repeat1, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [81321] = 5, - ACTIONS(3), 1, + [85304] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2691), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(6142), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2849), 2, sym_line_comment, sym_block_comment, - ACTIONS(5848), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81340] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85327] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2692), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6144), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2850), 2, sym_line_comment, sym_block_comment, - ACTIONS(777), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81357] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85350] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5347), 1, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6146), 1, anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2693), 2, + STATE(3383), 1, + sym_lifetime, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [81380] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85373] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3463), 1, + STATE(1530), 1, sym_block, - STATE(3539), 1, + STATE(3714), 1, sym_label, - STATE(2694), 2, + STATE(2852), 2, sym_line_comment, sym_block_comment, - [81403] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85396] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3466), 1, + STATE(3664), 1, sym_block, - STATE(3539), 1, + STATE(3714), 1, sym_label, - STATE(2695), 2, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [81426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85419] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, - STATE(2696), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1368), 1, + sym_declaration_list, + STATE(3393), 1, + sym_where_clause, + STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81445] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85442] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1564), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(2100), 1, + STATE(1307), 1, sym_block, - STATE(3582), 1, + STATE(3714), 1, sym_label, - STATE(2697), 2, + STATE(2855), 2, sym_line_comment, sym_block_comment, - [81468] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85465] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5852), 1, - anon_sym_RPAREN, - ACTIONS(5854), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2698), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6148), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [81491] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85488] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(465), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2699), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(6150), 1, + anon_sym_for, + STATE(2027), 1, + sym_type_arguments, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [81514] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85511] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3570), 1, + STATE(3665), 1, sym_block, - STATE(2700), 2, + STATE(3714), 1, + sym_label, + STATE(2858), 2, sym_line_comment, sym_block_comment, - [81537] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85534] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3571), 1, - sym_block, - STATE(2701), 2, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6152), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [81560] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85557] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3471), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2702), 2, + STATE(2860), 2, sym_line_comment, sym_block_comment, - [81583] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4436), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [85574] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - STATE(1206), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2703), 2, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6154), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [81606] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85597] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3548), 1, - sym_block, - STATE(2704), 2, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6156), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2862), 2, sym_line_comment, sym_block_comment, - [81629] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85620] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - STATE(2705), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6158), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [81652] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85643] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - STATE(3506), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2706), 2, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6160), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [81675] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85666] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2707), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5831), 2, + sym_identifier, + sym_super, + STATE(2865), 2, sym_line_comment, sym_block_comment, - [81696] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85687] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2708), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2866), 2, sym_line_comment, sym_block_comment, - [81717] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85710] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5860), 1, - anon_sym_for, - ACTIONS(5862), 1, - anon_sym_loop, - ACTIONS(5864), 1, - anon_sym_while, - STATE(2709), 2, + STATE(1548), 1, + sym_delim_token_tree, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [81740] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85733] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - ACTIONS(4848), 1, - anon_sym_BANG, - STATE(1048), 1, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2026), 1, sym_type_arguments, - STATE(2710), 2, + STATE(2101), 1, + sym_parameters, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [81763] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85756] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - STATE(2889), 1, - sym_use_list, - ACTIONS(5866), 2, - sym_identifier, - sym_super, - STATE(2711), 2, - sym_line_comment, - sym_block_comment, - [81784] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(381), 1, + STATE(1546), 1, sym_block, - STATE(3510), 1, + STATE(3714), 1, sym_label, - STATE(2712), 2, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [81807] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85779] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5101), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2713), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_declaration_list, + STATE(3346), 1, + sym_where_clause, + STATE(2870), 2, sym_line_comment, sym_block_comment, - [81828] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85802] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_LBRACE, - ACTIONS(5870), 1, - anon_sym_for, - ACTIONS(5872), 1, - anon_sym_loop, - ACTIONS(5874), 1, - anon_sym_while, - STATE(2714), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3376), 1, + sym_trait_bounds, + ACTIONS(5797), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [81851] = 7, - ACTIONS(101), 1, + [85823] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(1336), 1, + sym_parameters, + STATE(2026), 1, + sym_type_arguments, + STATE(2872), 2, + sym_line_comment, + sym_block_comment, + [85846] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1381), 1, + STATE(1813), 1, sym_block, - STATE(3539), 1, + STATE(3779), 1, sym_label, - STATE(2715), 2, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [81874] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85869] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_COLON_COLON, - STATE(2716), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1815), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81893] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85892] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_delim_token_tree, - STATE(2717), 2, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [81916] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3390), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [85909] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_COLON_COLON, - STATE(2718), 2, + ACTIONS(6162), 1, + anon_sym_DQUOTE, + STATE(2628), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81935] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85930] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5876), 1, - anon_sym_SEMI, - STATE(3441), 1, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(597), 1, + sym_enum_variant_list, + STATE(3192), 1, sym_where_clause, - STATE(2719), 2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [81958] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85953] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4744), 1, - anon_sym_for, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(2720), 2, + ACTIONS(6164), 1, + anon_sym_GT, + ACTIONS(6166), 1, + anon_sym_COMMA, + STATE(3031), 1, + aux_sym_use_bounds_repeat1, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [81981] = 7, - ACTIONS(101), 1, + [85973] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6168), 1, + anon_sym_RBRACE, + ACTIONS(6170), 1, + anon_sym_COMMA, + STATE(2915), 1, + aux_sym_struct_pattern_repeat1, + STATE(2879), 2, + sym_line_comment, + sym_block_comment, + [85993] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3384), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2721), 2, + ACTIONS(6172), 1, + anon_sym_RBRACE, + ACTIONS(6174), 1, + anon_sym_COMMA, + STATE(2917), 1, + aux_sym_struct_pattern_repeat1, + STATE(2880), 2, sym_line_comment, sym_block_comment, - [82004] = 7, - ACTIONS(101), 1, + [86013] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6176), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2881), 2, + sym_line_comment, + sym_block_comment, + [86031] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1050), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2722), 2, + ACTIONS(3254), 1, + anon_sym_RPAREN, + ACTIONS(6178), 1, + anon_sym_COMMA, + STATE(2990), 1, + aux_sym_tuple_type_repeat1, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [82027] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86051] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, - STATE(2723), 2, + STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, + ACTIONS(4654), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82046] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86067] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5878), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2724), 2, + ACTIONS(5696), 1, + anon_sym_RPAREN, + ACTIONS(5698), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, + STATE(2884), 2, sym_line_comment, sym_block_comment, - [82069] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86087] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5880), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2725), 2, + ACTIONS(6180), 1, + anon_sym_GT, + ACTIONS(6182), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_use_bounds_repeat1, + STATE(2885), 2, sym_line_comment, sym_block_comment, - [82092] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86107] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, - STATE(2726), 2, + ACTIONS(6184), 1, + anon_sym_GT, + ACTIONS(6186), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_use_bounds_repeat1, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82111] = 7, - ACTIONS(101), 1, + [86127] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6188), 1, + anon_sym_SEMI, + ACTIONS(6190), 1, + anon_sym_EQ, + STATE(2887), 2, + sym_line_comment, + sym_block_comment, + [86147] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(397), 1, - sym_delim_token_tree, - STATE(2727), 2, + ACTIONS(6192), 1, + anon_sym_SEMI, + STATE(701), 1, + sym_declaration_list, + STATE(2888), 2, sym_line_comment, sym_block_comment, - [82134] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86167] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5882), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2728), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6194), 1, + anon_sym_SEMI, + STATE(3539), 1, + sym_where_clause, + STATE(2889), 2, sym_line_comment, sym_block_comment, - [82157] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86187] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5884), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2729), 2, + ACTIONS(6196), 1, + anon_sym_RBRACE, + ACTIONS(6198), 1, + anon_sym_COMMA, + STATE(2924), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2890), 2, sym_line_comment, sym_block_comment, - [82180] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86207] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1752), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2730), 2, + ACTIONS(931), 1, + anon_sym_RPAREN, + ACTIONS(4344), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2891), 2, sym_line_comment, sym_block_comment, - [82203] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86227] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2731), 2, + STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(5886), 3, + ACTIONS(6200), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [82219] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86243] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5888), 1, - anon_sym_SEMI, - STATE(1144), 1, - sym_declaration_list, - STATE(2732), 2, + ACTIONS(4839), 1, + anon_sym_GT, + ACTIONS(6202), 1, + anon_sym_COMMA, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(2893), 2, sym_line_comment, sym_block_comment, - [82239] = 6, - ACTIONS(101), 1, + [86263] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4839), 1, + anon_sym_GT, + ACTIONS(6202), 1, + anon_sym_COMMA, + STATE(2928), 1, + aux_sym_type_parameters_repeat1, + STATE(2894), 2, + sym_line_comment, + sym_block_comment, + [86283] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5890), 1, + ACTIONS(6204), 1, anon_sym_SEMI, - STATE(1146), 1, + STATE(1163), 1, sym_declaration_list, - STATE(2733), 2, + STATE(2895), 2, sym_line_comment, sym_block_comment, - [82259] = 6, - ACTIONS(101), 1, + [86303] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5079), 1, + anon_sym_move, + STATE(233), 1, + sym_closure_parameters, + STATE(2896), 2, + sym_line_comment, + sym_block_comment, + [86323] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5892), 1, + ACTIONS(6206), 1, anon_sym_SEMI, - ACTIONS(5894), 1, - anon_sym_RBRACK, - STATE(2734), 2, + ACTIONS(6208), 1, + anon_sym_EQ, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [82279] = 6, - ACTIONS(101), 1, + [86343] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6210), 1, + anon_sym_RBRACE, + ACTIONS(6212), 1, + anon_sym_COMMA, + STATE(2936), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2898), 2, + sym_line_comment, + sym_block_comment, + [86363] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5896), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6214), 1, anon_sym_SEMI, - STATE(715), 1, - sym_declaration_list, - STATE(2735), 2, + STATE(3502), 1, + sym_where_clause, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [82299] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86383] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5898), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6216), 1, anon_sym_SEMI, - STATE(1152), 1, - sym_declaration_list, - STATE(2736), 2, + STATE(3624), 1, + sym_where_clause, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [82319] = 6, - ACTIONS(101), 1, + [86403] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6104), 1, + anon_sym_RPAREN, + ACTIONS(6106), 1, + anon_sym_COMMA, + STATE(3023), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2901), 2, + sym_line_comment, + sym_block_comment, + [86423] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5900), 1, + ACTIONS(6218), 1, anon_sym_SEMI, - STATE(1154), 1, + STATE(1191), 1, sym_declaration_list, - STATE(2737), 2, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [82339] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86443] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, + ACTIONS(5009), 1, anon_sym_RBRACE, - ACTIONS(5904), 1, + ACTIONS(6220), 1, anon_sym_COMMA, - STATE(2866), 1, - aux_sym_struct_pattern_repeat1, - STATE(2738), 2, + STATE(2906), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2903), 2, sym_line_comment, sym_block_comment, - [82359] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86463] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(5908), 1, - anon_sym_EQ, - STATE(2739), 2, + ACTIONS(6222), 1, + sym_identifier, + ACTIONS(6224), 1, + anon_sym_await, + ACTIONS(6226), 1, + sym_integer_literal, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [82379] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86483] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2740), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6228), 1, + anon_sym_SEMI, + STATE(3782), 1, + sym_where_clause, + STATE(2905), 2, sym_line_comment, sym_block_comment, - ACTIONS(5910), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82395] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86503] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5912), 1, - anon_sym_LPAREN, - ACTIONS(5914), 1, - anon_sym_LBRACK, - ACTIONS(5916), 1, - anon_sym_LBRACE, - STATE(2741), 2, + ACTIONS(6230), 1, + anon_sym_RBRACE, + ACTIONS(6232), 1, + anon_sym_COMMA, + STATE(2906), 3, sym_line_comment, sym_block_comment, - [82415] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_initializer_list_repeat1, + [86521] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3169), 1, + ACTIONS(965), 1, anon_sym_RPAREN, - ACTIONS(5918), 1, + ACTIONS(4308), 1, anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, - STATE(2742), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [82435] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86541] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5920), 1, + ACTIONS(6235), 1, anon_sym_SEMI, - STATE(1170), 1, + STATE(703), 1, sym_declaration_list, - STATE(2743), 2, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [82455] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86561] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5922), 1, - anon_sym_SEMI, - STATE(1172), 1, - sym_declaration_list, - STATE(2744), 2, + ACTIONS(6237), 1, + anon_sym_EQ_GT, + ACTIONS(6239), 1, + anon_sym_PIPE, + ACTIONS(6241), 1, + anon_sym_if, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [82475] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86581] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5924), 1, - anon_sym_SEMI, - STATE(556), 1, - sym_declaration_list, - STATE(2745), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6243), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [82495] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86599] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2746), 2, + ACTIONS(969), 1, + anon_sym_RBRACK, + ACTIONS(6245), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2911), 2, sym_line_comment, sym_block_comment, - ACTIONS(5926), 3, - anon_sym_EQ, + [86619] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1661), 1, anon_sym_GT, + ACTIONS(6247), 1, anon_sym_COMMA, - [82511] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, + STATE(2912), 2, + sym_line_comment, + sym_block_comment, + [86639] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1592), 1, + ACTIONS(1661), 1, anon_sym_GT, - ACTIONS(5928), 1, + ACTIONS(6247), 1, anon_sym_COMMA, - STATE(2749), 1, + STATE(3065), 1, aux_sym_type_arguments_repeat1, - STATE(2747), 2, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [82531] = 5, - ACTIONS(101), 1, + [86659] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3126), 1, + anon_sym_RPAREN, + ACTIONS(6249), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2914), 2, + sym_line_comment, + sym_block_comment, + [86679] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5932), 1, - anon_sym_COLON, - ACTIONS(5930), 2, + ACTIONS(5400), 1, anon_sym_RBRACE, + ACTIONS(6251), 1, anon_sym_COMMA, - STATE(2748), 2, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [82549] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86699] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5373), 1, - anon_sym_GT, - ACTIONS(5934), 1, + ACTIONS(3128), 1, + anon_sym_RPAREN, + ACTIONS(6253), 1, anon_sym_COMMA, - STATE(2749), 3, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2916), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [82567] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86719] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5937), 2, - anon_sym_RPAREN, + ACTIONS(5404), 1, + anon_sym_RBRACE, + ACTIONS(6255), 1, anon_sym_COMMA, - STATE(2750), 2, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [82585] = 6, - ACTIONS(101), 1, + [86739] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6257), 1, + anon_sym_SEMI, + STATE(709), 1, + sym_declaration_list, + STATE(2918), 2, + sym_line_comment, + sym_block_comment, + [86759] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(5440), 1, + ACTIONS(5745), 1, anon_sym_COMMA, - STATE(2872), 1, + STATE(3098), 1, aux_sym_parameters_repeat1, - STATE(2751), 2, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [82605] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86779] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3039), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(5939), 1, + ACTIONS(5745), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2752), 2, + STATE(2955), 1, + aux_sym_parameters_repeat1, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [82625] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86799] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - STATE(2753), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6259), 1, + anon_sym_SEMI, + ACTIONS(6261), 1, + anon_sym_EQ, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [82645] = 5, - ACTIONS(101), 1, + [86819] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6060), 1, + anon_sym_GT, + ACTIONS(6263), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(2922), 2, + sym_line_comment, + sym_block_comment, + [86839] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5309), 2, - anon_sym_RPAREN, + ACTIONS(6062), 1, + anon_sym_GT, + ACTIONS(6265), 1, anon_sym_COMMA, - STATE(2754), 2, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [82663] = 6, - ACTIONS(101), 1, + [86859] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5095), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2924), 2, + sym_line_comment, + sym_block_comment, + [86879] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5943), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_declaration_list, - STATE(2755), 2, + ACTIONS(5095), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [82683] = 4, - ACTIONS(101), 1, + [86899] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(6269), 1, + anon_sym_GT, + ACTIONS(6271), 1, + anon_sym_as, + STATE(2926), 2, + sym_line_comment, + sym_block_comment, + [86919] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2756), 2, + STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 3, + ACTIONS(4971), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82699] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86935] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5945), 1, - anon_sym_move, - STATE(217), 1, - sym_closure_parameters, - STATE(2757), 2, + ACTIONS(4859), 1, + anon_sym_GT, + ACTIONS(6273), 1, + anon_sym_COMMA, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(2928), 2, sym_line_comment, sym_block_comment, - [82719] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86955] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5947), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6275), 1, anon_sym_SEMI, - ACTIONS(5949), 1, - anon_sym_EQ, - STATE(2758), 2, + STATE(1226), 1, + sym_declaration_list, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [82739] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86975] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2759), 2, + STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82755] = 5, - ACTIONS(101), 1, + ACTIONS(4973), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86991] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(1232), 1, + sym_declaration_list, + STATE(2931), 2, + sym_line_comment, + sym_block_comment, + [87011] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5703), 2, - anon_sym_RPAREN, + ACTIONS(6281), 1, + anon_sym_COLON, + ACTIONS(6279), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2760), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [82773] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87029] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2761), 2, + STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 3, + ACTIONS(4977), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82789] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87045] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5953), 1, - anon_sym_RBRACE, - ACTIONS(5955), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2762), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6283), 1, + anon_sym_SEMI, + ACTIONS(6285), 1, + anon_sym_EQ, + STATE(2934), 2, sym_line_comment, sym_block_comment, - [82809] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87065] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2763), 2, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [82827] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4981), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87081] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5139), 1, + ACTIONS(5097), 1, anon_sym_RBRACE, - ACTIONS(5957), 1, + ACTIONS(6287), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2764), 2, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2936), 2, sym_line_comment, sym_block_comment, - [82847] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87101] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_COLON, - ACTIONS(5959), 2, + ACTIONS(5097), 1, anon_sym_RBRACE, + ACTIONS(6287), 1, anon_sym_COMMA, - STATE(2765), 2, + STATE(2965), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [82865] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87121] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2766), 2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 3, + ACTIONS(4983), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82881] = 6, - ACTIONS(101), 1, + [87137] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2939), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4987), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87153] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5963), 1, + ACTIONS(6289), 1, anon_sym_SEMI, - STATE(738), 1, + STATE(1248), 1, sym_declaration_list, - STATE(2767), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [82901] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87173] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5967), 1, - anon_sym_COLON, - ACTIONS(5965), 2, + ACTIONS(6291), 1, anon_sym_RBRACE, + ACTIONS(6293), 1, anon_sym_COMMA, - STATE(2768), 2, + STATE(2974), 1, + aux_sym_struct_pattern_repeat1, + STATE(2941), 2, sym_line_comment, sym_block_comment, - [82919] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87193] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5971), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6295), 1, + anon_sym_SEMI, + ACTIONS(6297), 1, anon_sym_EQ, - ACTIONS(5969), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2769), 2, + STATE(2942), 2, sym_line_comment, sym_block_comment, - [82937] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87213] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RBRACE, - ACTIONS(5975), 1, - anon_sym_COMMA, - STATE(2936), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2770), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6299), 1, + anon_sym_SEMI, + STATE(3710), 1, + sym_where_clause, + STATE(2943), 2, sym_line_comment, sym_block_comment, - [82957] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87233] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, - anon_sym_RBRACE, - ACTIONS(5977), 1, - anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2771), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6301), 1, + anon_sym_SEMI, + STATE(768), 1, + sym_declaration_list, + STATE(2944), 2, sym_line_comment, sym_block_comment, - [82977] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87253] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4652), 1, - anon_sym_GT, - ACTIONS(5979), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2772), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6303), 1, + anon_sym_SEMI, + ACTIONS(6305), 1, + anon_sym_EQ, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [82997] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87273] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, + ACTIONS(971), 1, + anon_sym_RPAREN, + ACTIONS(6307), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2773), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2946), 2, sym_line_comment, sym_block_comment, - [83017] = 6, - ACTIONS(101), 1, + [87293] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6309), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_declaration_list, + STATE(2947), 2, + sym_line_comment, + sym_block_comment, + [87313] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, + ACTIONS(967), 1, anon_sym_RBRACK, - ACTIONS(4009), 1, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(2589), 1, + STATE(2759), 1, aux_sym_arguments_repeat1, - STATE(2774), 2, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [83037] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87333] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, - STATE(2775), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6313), 1, + anon_sym_SEMI, + STATE(3725), 1, + sym_where_clause, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [83057] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87353] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2776), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(5981), 3, + ACTIONS(6315), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [83073] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87369] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(4061), 1, + ACTIONS(1669), 1, + anon_sym_GT, + ACTIONS(6317), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2777), 2, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(2951), 2, sym_line_comment, sym_block_comment, - [83093] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87389] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6319), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2778), 2, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [83113] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87407] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2779), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5099), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(5983), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83129] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87427] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5985), 1, - anon_sym_SEMI, - ACTIONS(5987), 1, - anon_sym_RBRACK, - STATE(2780), 2, + ACTIONS(6321), 1, + anon_sym_RBRACE, + ACTIONS(6323), 1, + anon_sym_COMMA, + STATE(3120), 1, + aux_sym_use_list_repeat1, + STATE(2954), 2, sym_line_comment, sym_block_comment, - [83149] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87447] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5989), 1, - anon_sym_SEMI, - STATE(1330), 1, - sym_declaration_list, - STATE(2781), 2, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(6325), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [83169] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87467] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, - sym_identifier, - ACTIONS(5993), 1, - anon_sym_ref, - ACTIONS(5995), 1, - sym_mutable_specifier, - STATE(2782), 2, + ACTIONS(6319), 1, + anon_sym_RPAREN, + ACTIONS(6327), 1, + anon_sym_COMMA, + STATE(2956), 3, sym_line_comment, sym_block_comment, - [83189] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_pattern_repeat1, + [87485] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, + ACTIONS(5101), 1, anon_sym_RBRACE, - ACTIONS(5977), 1, + ACTIONS(6330), 1, anon_sym_COMMA, - STATE(2832), 1, + STATE(3175), 1, aux_sym_enum_variant_list_repeat2, - STATE(2783), 2, + STATE(2957), 2, sym_line_comment, sym_block_comment, - [83209] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87505] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_type_arguments, - STATE(2784), 2, + ACTIONS(6332), 1, + sym_identifier, + ACTIONS(6334), 1, + anon_sym_ref, + ACTIONS(6336), 1, + sym_mutable_specifier, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [83229] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87525] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2785), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6338), 1, + anon_sym_SEMI, + STATE(1300), 1, + sym_declaration_list, + STATE(2959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83245] = 6, - ACTIONS(101), 1, + [87545] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6340), 1, + anon_sym_SEMI, + STATE(1305), 1, + sym_declaration_list, + STATE(2960), 2, + sym_line_comment, + sym_block_comment, + [87565] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6342), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2786), 2, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [83265] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87583] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5997), 1, + ACTIONS(6344), 1, anon_sym_SEMI, - STATE(1246), 1, + STATE(1330), 1, sym_declaration_list, - STATE(2787), 2, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [83285] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87603] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2788), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6346), 1, + anon_sym_SEMI, + STATE(1332), 1, + sym_declaration_list, + STATE(2963), 2, sym_line_comment, sym_block_comment, - [83305] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87623] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5999), 1, + ACTIONS(6348), 1, anon_sym_SEMI, - ACTIONS(6001), 1, + ACTIONS(6350), 1, anon_sym_EQ, - STATE(2789), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [83325] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87643] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(6003), 1, + ACTIONS(5103), 1, + anon_sym_RBRACE, + ACTIONS(6352), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2790), 2, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2965), 2, sym_line_comment, sym_block_comment, - [83345] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87663] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, + ACTIONS(1667), 1, + anon_sym_GT, + ACTIONS(6354), 1, anon_sym_COMMA, - STATE(2914), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2791), 2, + STATE(3062), 1, + aux_sym_type_arguments_repeat1, + STATE(2966), 2, sym_line_comment, sym_block_comment, - [83365] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87683] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3472), 1, - sym_type_parameters, - STATE(2792), 2, + ACTIONS(1667), 1, + anon_sym_GT, + ACTIONS(6354), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [83385] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87703] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6011), 1, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6356), 1, anon_sym_SEMI, - STATE(3377), 1, - sym_where_clause, - STATE(2793), 2, + STATE(770), 1, + sym_declaration_list, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [83405] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87723] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2794), 2, + ACTIONS(3148), 1, + anon_sym_RPAREN, + ACTIONS(6358), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83421] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87743] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(6013), 1, + ACTIONS(6362), 1, + anon_sym_COLON, + ACTIONS(6360), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, - STATE(2795), 2, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [83441] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87761] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 1, - anon_sym_RPAREN, - ACTIONS(6015), 1, + ACTIONS(5577), 1, + anon_sym_GT, + ACTIONS(5579), 1, anon_sym_COMMA, - STATE(2796), 3, + STATE(3148), 1, + aux_sym_type_parameters_repeat1, + STATE(2971), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [83459] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87781] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2797), 2, + STATE(2972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 3, + ACTIONS(4991), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83475] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87797] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - STATE(2798), 2, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [83495] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5013), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87813] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6018), 2, - anon_sym_RPAREN, + ACTIONS(5370), 1, + anon_sym_RBRACE, + ACTIONS(6364), 1, anon_sym_COMMA, - STATE(2799), 2, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2974), 2, sym_line_comment, sym_block_comment, - [83513] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87833] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2800), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6366), 1, + anon_sym_SEMI, + STATE(1385), 1, + sym_declaration_list, + STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83529] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87853] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6020), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6368), 1, anon_sym_SEMI, - STATE(3383), 1, - sym_where_clause, - STATE(2801), 2, + STATE(1387), 1, + sym_declaration_list, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [83549] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87873] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2802), 2, + ACTIONS(6370), 1, + anon_sym_RPAREN, + ACTIONS(6372), 1, + anon_sym_COMMA, + STATE(3033), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83565] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87893] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2803), 2, + ACTIONS(3150), 1, + anon_sym_RPAREN, + ACTIONS(6374), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83581] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87913] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, - anon_sym_RBRACE, - ACTIONS(6024), 1, - anon_sym_COMMA, - STATE(2804), 3, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6376), 1, + anon_sym_SEMI, + STATE(1395), 1, + sym_declaration_list, + STATE(2979), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [83599] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87933] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - anon_sym_GT, - ACTIONS(6027), 1, - anon_sym_COMMA, - STATE(2815), 1, - aux_sym_type_arguments_repeat1, - STATE(2805), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6378), 1, + anon_sym_SEMI, + STATE(1397), 1, + sym_declaration_list, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [83619] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87953] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - anon_sym_GT, - ACTIONS(6027), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2806), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6380), 1, + anon_sym_SEMI, + ACTIONS(6382), 1, + anon_sym_EQ, + STATE(2981), 2, sym_line_comment, sym_block_comment, - [83639] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87973] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6029), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2807), 2, + STATE(2982), 2, sym_line_comment, sym_block_comment, - [83657] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6384), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [87989] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6031), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, - STATE(2808), 2, + ACTIONS(6386), 1, + anon_sym_SEMI, + STATE(1426), 1, + sym_declaration_list, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [83677] = 6, - ACTIONS(101), 1, + [88009] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6388), 1, + anon_sym_SEMI, + STATE(1260), 1, + sym_declaration_list, + STATE(2984), 2, + sym_line_comment, + sym_block_comment, + [88029] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, + ACTIONS(5424), 1, + anon_sym_RBRACE, + ACTIONS(6390), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2809), 2, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [83697] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88049] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2947), 1, + ACTIONS(997), 1, anon_sym_RPAREN, - ACTIONS(6033), 1, + ACTIONS(6392), 1, anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2810), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [83717] = 6, - ACTIONS(101), 1, + [88069] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2987), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88085] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6035), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6394), 1, anon_sym_SEMI, - STATE(1354), 1, - sym_declaration_list, - STATE(2811), 2, + ACTIONS(6396), 1, + anon_sym_EQ, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [83737] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88105] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6398), 2, anon_sym_RPAREN, - ACTIONS(5446), 1, anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - STATE(2812), 2, + STATE(2989), 2, sym_line_comment, sym_block_comment, - [83757] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88123] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6037), 1, - anon_sym_SEMI, - STATE(3320), 1, - sym_where_clause, - STATE(2813), 2, + ACTIONS(6398), 1, + anon_sym_RPAREN, + ACTIONS(6400), 1, + anon_sym_COMMA, + STATE(2990), 3, sym_line_comment, sym_block_comment, - [83777] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_type_repeat1, + [88141] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, - anon_sym_RBRACE, - ACTIONS(6041), 1, - anon_sym_COMMA, - STATE(2992), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2814), 2, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [83797] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5007), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88157] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1594), 1, - anon_sym_GT, - ACTIONS(6043), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2815), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6403), 1, + anon_sym_SEMI, + STATE(1131), 1, + sym_declaration_list, + STATE(2992), 2, sym_line_comment, sym_block_comment, - [83817] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88177] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(2604), 1, - sym_trait_bounds, - STATE(2816), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(1133), 1, + sym_declaration_list, + STATE(2993), 2, sym_line_comment, sym_block_comment, - [83837] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88197] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1468), 1, + ACTIONS(5759), 1, anon_sym_RPAREN, - ACTIONS(6045), 1, + ACTIONS(5761), 1, anon_sym_COMMA, - STATE(2796), 1, + STATE(3005), 1, aux_sym_parameters_repeat1, - STATE(2817), 2, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [83857] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88217] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3015), 1, - anon_sym_RBRACK, - ACTIONS(6047), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2818), 2, + STATE(2995), 2, sym_line_comment, sym_block_comment, - [83877] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6407), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88233] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(6049), 1, - anon_sym_GT, - ACTIONS(6051), 1, - anon_sym_as, - STATE(2819), 2, + STATE(2996), 2, sym_line_comment, sym_block_comment, - [83897] = 4, - ACTIONS(101), 1, + ACTIONS(4975), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88249] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2997), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4979), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88265] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2820), 2, + STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(6053), 3, + ACTIONS(6409), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [83913] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88281] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4854), 1, - anon_sym_RBRACE, - ACTIONS(6055), 1, - anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2821), 2, - sym_line_comment, - sym_block_comment, - [83933] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2822), 2, + STATE(2999), 2, sym_line_comment, sym_block_comment, - [83953] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6411), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88297] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(4181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2823), 2, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [83971] = 6, - ACTIONS(27), 1, + ACTIONS(4985), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [88313] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6059), 1, - anon_sym_move, - STATE(231), 1, - sym_closure_parameters, - STATE(2824), 2, - sym_line_comment, - sym_block_comment, - [83991] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6061), 1, + ACTIONS(6413), 1, anon_sym_SEMI, - STATE(511), 1, + STATE(680), 1, sym_declaration_list, - STATE(2825), 2, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [84011] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88333] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6063), 1, - anon_sym_SEMI, - STATE(3404), 1, - sym_where_clause, - STATE(2826), 2, - sym_line_comment, - sym_block_comment, - [84031] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6067), 1, - anon_sym_COLON, - ACTIONS(6065), 2, - anon_sym_RBRACE, + ACTIONS(5715), 1, anon_sym_COMMA, - STATE(2827), 2, + ACTIONS(6415), 1, + anon_sym_PIPE, + STATE(3047), 1, + aux_sym_closure_parameters_repeat1, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [84049] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88353] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, - ACTIONS(5592), 1, + ACTIONS(6417), 1, + anon_sym_RBRACE, + ACTIONS(6419), 1, anon_sym_COMMA, - STATE(2989), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2828), 2, + STATE(3057), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [84069] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88373] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6069), 1, + ACTIONS(6421), 1, anon_sym_SEMI, - ACTIONS(6071), 1, + ACTIONS(6423), 1, anon_sym_EQ, - STATE(2829), 2, + STATE(3004), 2, sym_line_comment, sym_block_comment, - [84089] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88393] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, + ACTIONS(1371), 1, anon_sym_RPAREN, - ACTIONS(4073), 1, + ACTIONS(5686), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2830), 2, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(3005), 2, sym_line_comment, sym_block_comment, - [84109] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88413] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6075), 1, - anon_sym_EQ, - ACTIONS(6073), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2831), 2, - sym_line_comment, - sym_block_comment, - [84127] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_RBRACE, - ACTIONS(6077), 1, - anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2832), 2, + STATE(3006), 2, sym_line_comment, sym_block_comment, - [84147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6425), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88429] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6079), 1, - anon_sym_SEMI, - STATE(3357), 1, - sym_where_clause, - STATE(2833), 2, + STATE(3007), 2, sym_line_comment, sym_block_comment, - [84167] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4861), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88445] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6081), 1, - sym_identifier, - ACTIONS(6083), 1, - anon_sym_await, - ACTIONS(6085), 1, - sym_integer_literal, - STATE(2834), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6427), 1, + sym_mutable_specifier, + ACTIONS(6429), 1, + sym_self, + STATE(3008), 2, sym_line_comment, sym_block_comment, - [84187] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88465] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6091), 1, - anon_sym_LBRACE, - STATE(2835), 2, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(5686), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_parameters_repeat1, + STATE(3009), 2, sym_line_comment, sym_block_comment, - [84207] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88485] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, - STATE(1581), 1, - sym_type_arguments, - STATE(2836), 2, + STATE(3010), 2, sym_line_comment, sym_block_comment, - [84227] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5021), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88501] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6093), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2837), 2, + ACTIONS(6431), 1, + anon_sym_move, + STATE(234), 1, + sym_closure_parameters, + STATE(3011), 2, sym_line_comment, sym_block_comment, - [84245] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88521] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6095), 1, - anon_sym_SEMI, - STATE(593), 1, - sym_declaration_list, - STATE(2838), 2, + ACTIONS(4831), 1, + anon_sym_COLON, + ACTIONS(5061), 1, + anon_sym_COLON_COLON, + STATE(2550), 1, + sym_trait_bounds, + STATE(3012), 2, sym_line_comment, sym_block_comment, - [84265] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88541] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3037), 1, - anon_sym_RPAREN, - ACTIONS(6097), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2839), 2, + STATE(3013), 2, sym_line_comment, sym_block_comment, - [84285] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5023), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88557] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6099), 1, - anon_sym_SEMI, - STATE(595), 1, - sym_declaration_list, - STATE(2840), 2, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [84305] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5027), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88573] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2841), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 3, + ACTIONS(5033), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84321] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88589] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2842), 2, + STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(6101), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84337] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5035), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88605] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2843), 2, + STATE(3017), 2, sym_line_comment, sym_block_comment, - ACTIONS(6103), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84353] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5037), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88621] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 1, - anon_sym_RBRACE, - ACTIONS(6107), 1, - anon_sym_COMMA, - STATE(2844), 3, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6433), 1, + anon_sym_SEMI, + ACTIONS(6435), 1, + anon_sym_RBRACK, + STATE(3018), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [84371] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88641] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2845), 2, + STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 3, + ACTIONS(5039), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84387] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88657] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1458), 1, - anon_sym_RPAREN, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2846), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(6437), 1, + anon_sym_GT, + STATE(3351), 1, + sym_lifetime, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [84407] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88677] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5759), 2, + ACTIONS(6437), 1, anon_sym_GT, + ACTIONS(6439), 1, anon_sym_COMMA, - STATE(2847), 2, + STATE(3116), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [84425] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88697] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2848), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(1284), 1, + sym_type_arguments, + STATE(3022), 2, sym_line_comment, sym_block_comment, - ACTIONS(6112), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84441] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88717] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(6114), 1, + ACTIONS(1832), 1, + anon_sym_RPAREN, + ACTIONS(6441), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2849), 2, + STATE(2956), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [84461] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88737] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6116), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, - STATE(2850), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6443), 1, + anon_sym_SEMI, + ACTIONS(6445), 1, + anon_sym_EQ, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [84481] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88757] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - ACTIONS(6120), 1, + ACTIONS(6447), 1, + anon_sym_RPAREN, + ACTIONS(6449), 1, anon_sym_COMMA, - STATE(2821), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2851), 2, + STATE(3033), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [84501] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88777] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - ACTIONS(6124), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6451), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2900), 1, - aux_sym_use_list_repeat1, - STATE(2852), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - [84521] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88795] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, + ACTIONS(6453), 1, anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(6455), 1, anon_sym_COMMA, - STATE(2951), 1, - aux_sym_type_arguments_repeat1, - STATE(2853), 2, + STATE(3021), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [84541] = 6, - ACTIONS(101), 1, + [88815] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6457), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88831] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, + ACTIONS(6148), 1, anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(6459), 1, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2854), 2, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [84561] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88851] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, + ACTIONS(3274), 1, anon_sym_RPAREN, - ACTIONS(5773), 1, + ACTIONS(6461), 1, anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2855), 2, + STATE(2990), 1, + aux_sym_tuple_type_repeat1, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [84581] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88871] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6128), 1, - anon_sym_SEMI, - STATE(540), 1, - sym_declaration_list, - STATE(2856), 2, + ACTIONS(6160), 1, + anon_sym_GT, + ACTIONS(6463), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [84601] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88891] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, + ACTIONS(5636), 1, anon_sym_RPAREN, - ACTIONS(6130), 1, + ACTIONS(5638), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2857), 2, + STATE(3043), 1, + aux_sym_parameters_repeat1, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [84621] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88911] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2858), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6132), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [84637] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5163), 1, - anon_sym_RBRACE, - ACTIONS(6134), 1, + ACTIONS(6465), 1, + anon_sym_RPAREN, + ACTIONS(6467), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2859), 2, + STATE(3033), 3, sym_line_comment, sym_block_comment, - [84657] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_ordered_field_declaration_list_repeat1, + [88929] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, + ACTIONS(6470), 1, anon_sym_GT, - ACTIONS(6136), 1, + ACTIONS(6472), 1, anon_sym_COMMA, - STATE(2860), 3, + STATE(3188), 1, + aux_sym_use_bounds_repeat1, + STATE(3034), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [84675] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88949] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2861), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(937), 3, - anon_sym_COLON, + ACTIONS(6474), 1, anon_sym_GT, + ACTIONS(6476), 1, anon_sym_COMMA, - [84691] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3048), 1, + aux_sym_use_bounds_repeat1, + STATE(3035), 2, + sym_line_comment, + sym_block_comment, + [88969] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6139), 1, - anon_sym_SEMI, - STATE(3491), 1, - sym_where_clause, - STATE(2862), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_COLON, + STATE(2550), 1, + sym_trait_bounds, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [84711] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88989] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6141), 2, - anon_sym_GT, + ACTIONS(6478), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2863), 2, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [84729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89007] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3029), 1, - anon_sym_RPAREN, - ACTIONS(6143), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2864), 2, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(6480), 1, + anon_sym_COLON_COLON, + STATE(1535), 1, + sym_field_initializer_list, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [84749] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89027] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6145), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2865), 2, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [84769] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1023), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [89043] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_RBRACE, - ACTIONS(6147), 1, + ACTIONS(1665), 1, + anon_sym_GT, + ACTIONS(6482), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2866), 2, + STATE(3051), 1, + aux_sym_type_arguments_repeat1, + STATE(3040), 2, sym_line_comment, sym_block_comment, - [84789] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89063] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6149), 1, - anon_sym_SEMI, - STATE(1281), 1, - sym_declaration_list, - STATE(2867), 2, + ACTIONS(1665), 1, + anon_sym_GT, + ACTIONS(6482), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3041), 2, sym_line_comment, sym_block_comment, - [84809] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89083] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6153), 1, - anon_sym_COLON, - ACTIONS(6151), 2, + ACTIONS(6484), 1, anon_sym_RBRACE, + ACTIONS(6486), 1, anon_sym_COMMA, - STATE(2868), 2, + STATE(3042), 3, sym_line_comment, sym_block_comment, - [84827] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_declaration_list_repeat1, + [89101] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_GT, - ACTIONS(6155), 1, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(5646), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2869), 2, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [84847] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89121] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, + ACTIONS(6489), 1, anon_sym_RBRACE, - ACTIONS(6159), 1, + ACTIONS(6491), 1, anon_sym_COMMA, - STATE(2950), 1, - aux_sym_struct_pattern_repeat1, - STATE(2870), 2, + STATE(3121), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3044), 2, sym_line_comment, sym_block_comment, - [84867] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89141] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2871), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4754), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84883] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - STATE(2796), 1, + STATE(3052), 1, aux_sym_parameters_repeat1, - STATE(2872), 2, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [84903] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89161] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_GT, - ACTIONS(6161), 1, + ACTIONS(6493), 1, + anon_sym_RBRACE, + ACTIONS(6495), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2873), 2, + STATE(3046), 3, sym_line_comment, sym_block_comment, - [84923] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_list_repeat1, + [89179] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6163), 2, - anon_sym_RPAREN, + ACTIONS(5715), 1, anon_sym_COMMA, - STATE(2874), 2, + ACTIONS(6498), 1, + anon_sym_PIPE, + STATE(3087), 1, + aux_sym_closure_parameters_repeat1, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [84941] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89199] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6165), 1, - anon_sym_SEMI, - STATE(3329), 1, - sym_where_clause, - STATE(2875), 2, + ACTIONS(6146), 1, + anon_sym_GT, + ACTIONS(6500), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [84961] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89219] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6167), 1, + ACTIONS(6502), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(515), 1, sym_declaration_list, - STATE(2876), 2, + STATE(3049), 2, sym_line_comment, sym_block_comment, - [84981] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89239] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2877), 2, + ACTIONS(5114), 1, + anon_sym_RBRACE, + ACTIONS(6504), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3050), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84997] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89259] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2878), 2, + ACTIONS(1663), 1, + anon_sym_GT, + ACTIONS(6506), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3051), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85013] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89279] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(1369), 1, anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(6508), 1, anon_sym_COMMA, - STATE(2961), 1, + STATE(3098), 1, aux_sym_parameters_repeat1, - STATE(2879), 2, + STATE(3052), 2, sym_line_comment, sym_block_comment, - [85033] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89299] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, - anon_sym_RPAREN, - ACTIONS(6169), 1, + ACTIONS(5711), 1, + anon_sym_COLON, + ACTIONS(6510), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2880), 3, + STATE(3053), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [85051] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89317] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - STATE(2881), 2, - sym_line_comment, - sym_block_comment, - [85071] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2882), 2, + STATE(3054), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 3, + ACTIONS(5043), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85087] = 6, - ACTIONS(101), 1, + [89333] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4969), 1, + anon_sym_LBRACE, + STATE(2026), 1, + sym_type_arguments, + STATE(3055), 2, + sym_line_comment, + sym_block_comment, + [89353] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, + ACTIONS(6514), 1, + anon_sym_EQ, + ACTIONS(6512), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - STATE(2883), 2, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [85107] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89371] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(5135), 1, anon_sym_RBRACE, - ACTIONS(6172), 1, + ACTIONS(6516), 1, anon_sym_COMMA, - STATE(2804), 1, + STATE(3175), 1, aux_sym_enum_variant_list_repeat2, - STATE(2884), 2, + STATE(3057), 2, sym_line_comment, sym_block_comment, - [85127] = 6, - ACTIONS(101), 1, + [89391] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3058), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5045), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89407] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(5135), 1, anon_sym_RBRACE, - ACTIONS(6172), 1, + ACTIONS(6516), 1, anon_sym_COMMA, - STATE(2963), 1, + STATE(3179), 1, aux_sym_enum_variant_list_repeat2, - STATE(2885), 2, + STATE(3059), 2, sym_line_comment, sym_block_comment, - [85147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89427] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6174), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_declaration_list, - STATE(2886), 2, + ACTIONS(6518), 1, + anon_sym_GT, + ACTIONS(6520), 1, + anon_sym_COMMA, + STATE(3029), 1, + aux_sym_use_bounds_repeat1, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [85167] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89447] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(6176), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2887), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6522), 1, + anon_sym_SEMI, + STATE(3538), 1, + sym_where_clause, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [85185] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89467] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2888), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6178), 3, - anon_sym_EQ, + ACTIONS(1655), 1, anon_sym_GT, + ACTIONS(6524), 1, anon_sym_COMMA, - [85201] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2889), 2, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3062), 2, sym_line_comment, sym_block_comment, - ACTIONS(6180), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85217] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89487] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_GT, - ACTIONS(6182), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6526), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2890), 2, + STATE(3063), 2, sym_line_comment, sym_block_comment, - [85237] = 6, - ACTIONS(101), 1, + [89505] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6528), 1, + anon_sym_move, + STATE(248), 1, + sym_closure_parameters, + STATE(3064), 2, + sym_line_comment, + sym_block_comment, + [89525] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, + ACTIONS(5797), 1, anon_sym_GT, - ACTIONS(6184), 1, + ACTIONS(6530), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2891), 2, + STATE(3065), 3, sym_line_comment, sym_block_comment, - [85257] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_arguments_repeat1, + [89543] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6186), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6533), 1, anon_sym_SEMI, - STATE(1403), 1, - sym_declaration_list, - STATE(2892), 2, + ACTIONS(6535), 1, + anon_sym_RBRACK, + STATE(3066), 2, sym_line_comment, sym_block_comment, - [85277] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89563] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6188), 1, - anon_sym_RPAREN, - ACTIONS(6190), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2893), 2, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [85297] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5615), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89579] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2894), 2, + STATE(3068), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 3, + ACTIONS(5047), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85313] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89595] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2895), 2, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(5112), 1, + anon_sym_COLON_COLON, + STATE(1659), 1, + sym_type_arguments, + STATE(3069), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85329] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89615] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6192), 2, + ACTIONS(6539), 1, + anon_sym_COLON, + ACTIONS(6537), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2896), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [85347] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89633] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2897), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4832), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85363] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_RBRACK, - ACTIONS(6194), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6541), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2898), 2, + STATE(3071), 2, sym_line_comment, sym_block_comment, - [85383] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89651] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2899), 2, + STATE(3072), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 3, + ACTIONS(5049), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85399] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89667] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, - anon_sym_RBRACE, - ACTIONS(6196), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6543), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2920), 1, - aux_sym_use_list_repeat1, - STATE(2900), 2, + STATE(3073), 2, sym_line_comment, sym_block_comment, - [85419] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89685] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6198), 1, - anon_sym_SEMI, - STATE(1409), 1, - sym_declaration_list, - STATE(2901), 2, - sym_line_comment, - sym_block_comment, - [85439] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(6200), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, - STATE(2902), 2, + ACTIONS(6545), 1, + anon_sym_RBRACE, + ACTIONS(6547), 1, + anon_sym_COMMA, + STATE(3074), 3, sym_line_comment, sym_block_comment, - [85459] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_struct_pattern_repeat1, + [89703] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6202), 1, - anon_sym_LPAREN, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_LBRACE, - STATE(2903), 2, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6550), 1, + anon_sym_COMMA, + STATE(3079), 1, + aux_sym_type_arguments_repeat1, + STATE(3075), 2, sym_line_comment, sym_block_comment, - [85479] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89723] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6208), 1, - anon_sym_LPAREN, - ACTIONS(6210), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_LBRACE, - STATE(2904), 2, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6550), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [85499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89743] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6214), 1, + ACTIONS(6552), 1, anon_sym_SEMI, - STATE(602), 1, + STATE(517), 1, sym_declaration_list, - STATE(2905), 2, + STATE(3077), 2, sym_line_comment, sym_block_comment, - [85519] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89763] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_RPAREN, - ACTIONS(6218), 1, + ACTIONS(6556), 1, + anon_sym_COLON, + ACTIONS(6554), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2906), 2, + STATE(3078), 2, sym_line_comment, sym_block_comment, - [85539] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89781] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(1653), 1, anon_sym_GT, - ACTIONS(6220), 1, + ACTIONS(6558), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2907), 2, - sym_line_comment, - sym_block_comment, - [85559] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6222), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, - STATE(2908), 2, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3079), 2, sym_line_comment, sym_block_comment, - [85579] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89801] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6224), 1, - anon_sym_SEMI, - ACTIONS(6226), 1, - anon_sym_EQ, - STATE(2909), 2, - sym_line_comment, - sym_block_comment, - [85599] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, - STATE(2910), 2, + ACTIONS(6560), 1, + anon_sym_RBRACE, + ACTIONS(6562), 1, + anon_sym_COMMA, + STATE(3149), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [85619] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89821] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6230), 1, - anon_sym_SEMI, - STATE(604), 1, - sym_declaration_list, - STATE(2911), 2, - sym_line_comment, - sym_block_comment, - [85639] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2912), 2, + STATE(3081), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 3, + ACTIONS(1501), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85655] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89837] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6232), 2, - anon_sym_RPAREN, + ACTIONS(6564), 1, + anon_sym_GT, + ACTIONS(6566), 1, anon_sym_COMMA, - STATE(2913), 2, + STATE(3082), 3, sym_line_comment, sym_block_comment, - [85673] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_parameters_repeat1, + [89855] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(4853), 1, + anon_sym_GT, + ACTIONS(6569), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2914), 2, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [85693] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89875] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(6236), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2915), 2, + ACTIONS(6571), 1, + anon_sym_move, + STATE(256), 1, + sym_closure_parameters, + STATE(3084), 2, sym_line_comment, sym_block_comment, - [85711] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89895] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6238), 1, + ACTIONS(6573), 1, anon_sym_SEMI, - STATE(498), 1, + STATE(632), 1, sym_declaration_list, - STATE(2916), 2, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [85731] = 6, - ACTIONS(101), 1, + [89915] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6575), 1, + anon_sym_SEMI, + STATE(3614), 1, + sym_where_clause, + STATE(3086), 2, + sym_line_comment, + sym_block_comment, + [89935] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(6510), 1, + anon_sym_PIPE, + ACTIONS(6577), 1, anon_sym_COMMA, - STATE(2993), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2917), 2, + STATE(3087), 3, sym_line_comment, sym_block_comment, - [85751] = 6, - ACTIONS(101), 1, + aux_sym_closure_parameters_repeat1, + [89953] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6580), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89969] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6240), 1, + ACTIONS(6582), 1, anon_sym_SEMI, - STATE(610), 1, + STATE(638), 1, sym_declaration_list, - STATE(2918), 2, + STATE(3089), 2, sym_line_comment, sym_block_comment, - [85771] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89989] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6242), 1, - anon_sym_EQ_GT, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6246), 1, - anon_sym_if, - STATE(2919), 2, - sym_line_comment, - sym_block_comment, - [85791] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, - anon_sym_COMMA, - STATE(2920), 3, + STATE(3090), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [85809] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90005] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(6584), 1, + anon_sym_AMP_AMP, + ACTIONS(4502), 2, anon_sym_LBRACE, - ACTIONS(6253), 1, - anon_sym_SEMI, - STATE(1423), 1, - sym_declaration_list, - STATE(2921), 2, + anon_sym_SQUOTE, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [85829] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90023] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 1, + ACTIONS(4769), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 2, anon_sym_RPAREN, - ACTIONS(6257), 1, anon_sym_COMMA, - STATE(2922), 3, + STATE(3092), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85847] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90041] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2923), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5061), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + STATE(3093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85863] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90061] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 1, - anon_sym_PIPE, - ACTIONS(6260), 1, - anon_sym_COMMA, - STATE(2924), 3, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6586), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(3094), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [85881] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90081] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6263), 1, + ACTIONS(6588), 1, anon_sym_SEMI, - STATE(612), 1, + STATE(776), 1, sym_declaration_list, - STATE(2925), 2, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [85901] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90101] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2926), 2, + STATE(3096), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 3, + ACTIONS(4961), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85917] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90117] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6265), 2, - anon_sym_RBRACE, + ACTIONS(6011), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2927), 2, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [85935] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90135] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6267), 2, + ACTIONS(6011), 1, anon_sym_RPAREN, + ACTIONS(6590), 1, anon_sym_COMMA, - STATE(2928), 2, + STATE(3098), 3, sym_line_comment, sym_block_comment, - [85953] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_parameters_repeat1, + [90153] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6269), 1, - anon_sym_GT, - STATE(3196), 1, - sym_lifetime, - STATE(2929), 2, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_ref, + ACTIONS(6597), 1, + sym_mutable_specifier, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [85973] = 5, - ACTIONS(101), 1, + [90173] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4993), 1, + anon_sym_BANG, + ACTIONS(6599), 1, + sym_identifier, + STATE(3100), 2, + sym_line_comment, + sym_block_comment, + [90193] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6271), 2, - anon_sym_GT, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6601), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2930), 2, + STATE(3101), 2, sym_line_comment, sym_block_comment, - [85991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90211] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 1, + STATE(3102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6603), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6275), 1, anon_sym_COMMA, - STATE(2931), 3, + [90227] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6584), 1, + anon_sym_AMP_AMP, + ACTIONS(6605), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3103), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86009] = 6, - ACTIONS(101), 1, + [90245] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(6607), 1, + anon_sym_COLON_COLON, + STATE(1752), 1, + sym_field_initializer_list, + STATE(3104), 2, + sym_line_comment, + sym_block_comment, + [90265] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + STATE(1535), 1, + sym_field_initializer_list, + STATE(3105), 2, + sym_line_comment, + sym_block_comment, + [90285] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6280), 1, - anon_sym_EQ, - STATE(2932), 2, + ACTIONS(6611), 1, + anon_sym_LPAREN, + ACTIONS(6613), 1, + anon_sym_LBRACK, + ACTIONS(6615), 1, + anon_sym_LBRACE, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [86029] = 6, - ACTIONS(101), 1, + [90305] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6617), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, + anon_sym_LBRACK, + ACTIONS(6621), 1, + anon_sym_LBRACE, + STATE(3107), 2, + sym_line_comment, + sym_block_comment, + [90325] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6282), 1, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6623), 1, anon_sym_SEMI, - STATE(3499), 1, - sym_where_clause, - STATE(2933), 2, + STATE(589), 1, + sym_declaration_list, + STATE(3108), 2, sym_line_comment, sym_block_comment, - [86049] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90345] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6284), 1, + ACTIONS(6625), 1, anon_sym_SEMI, - ACTIONS(6286), 1, + ACTIONS(6627), 1, anon_sym_EQ, - STATE(2934), 2, + STATE(3109), 2, sym_line_comment, sym_block_comment, - [86069] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90365] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6288), 1, - sym_identifier, - ACTIONS(6290), 1, - anon_sym_await, - ACTIONS(6292), 1, - sym_integer_literal, - STATE(2935), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6629), 1, + anon_sym_LBRACE, + STATE(2026), 1, + sym_type_arguments, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [86089] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90385] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 1, - anon_sym_RBRACE, - ACTIONS(6294), 1, + ACTIONS(3152), 1, + anon_sym_RBRACK, + ACTIONS(6631), 1, anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2936), 2, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(3111), 2, sym_line_comment, sym_block_comment, - [86109] = 6, - ACTIONS(101), 1, + [90405] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6633), 1, + anon_sym_SEMI, + STATE(534), 1, + sym_declaration_list, + STATE(3112), 2, + sym_line_comment, + sym_block_comment, + [90425] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, - ACTIONS(6298), 1, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(6635), 1, anon_sym_COMMA, - STATE(2764), 1, - aux_sym_struct_pattern_repeat1, - STATE(2937), 2, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [86129] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90445] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6267), 1, + ACTIONS(6637), 1, anon_sym_RPAREN, - ACTIONS(6300), 1, + ACTIONS(6639), 1, anon_sym_COMMA, - STATE(2938), 3, + STATE(3033), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3114), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [86147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90465] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(6303), 1, + ACTIONS(6641), 1, anon_sym_GT, - STATE(3196), 1, + STATE(3351), 1, sym_lifetime, - STATE(2939), 2, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [86167] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90485] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2940), 2, + ACTIONS(6643), 1, + anon_sym_GT, + ACTIONS(6645), 1, + anon_sym_COMMA, + STATE(3116), 3, sym_line_comment, sym_block_comment, - ACTIONS(6305), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86183] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_for_lifetimes_repeat1, + [90503] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6269), 1, - anon_sym_GT, - ACTIONS(6307), 1, + ACTIONS(6648), 1, + anon_sym_RBRACE, + ACTIONS(6650), 1, anon_sym_COMMA, - STATE(2948), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2941), 2, + STATE(2985), 1, + aux_sym_struct_pattern_repeat1, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [86203] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90523] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4887), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2942), 2, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [86223] = 6, - ACTIONS(101), 1, + ACTIONS(6652), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90539] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym_LBRACK, + ACTIONS(6658), 1, + anon_sym_LBRACE, + STATE(3119), 2, + sym_line_comment, + sym_block_comment, + [90559] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4955), 1, + ACTIONS(4516), 1, anon_sym_RBRACE, - ACTIONS(6309), 1, + ACTIONS(6660), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2943), 2, + STATE(3046), 1, + aux_sym_use_list_repeat1, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [86243] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90579] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, - anon_sym_RPAREN, - ACTIONS(6311), 1, + ACTIONS(5085), 1, + anon_sym_RBRACE, + ACTIONS(6662), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2944), 2, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [86263] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90599] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5679), 2, - anon_sym_GT, + ACTIONS(5085), 1, + anon_sym_RBRACE, + ACTIONS(6662), 1, anon_sym_COMMA, - STATE(2945), 2, + STATE(3050), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [86281] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90619] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3137), 1, - anon_sym_RPAREN, - ACTIONS(6313), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, - STATE(2946), 2, + STATE(3123), 2, sym_line_comment, sym_block_comment, - [86301] = 6, - ACTIONS(101), 1, + ACTIONS(6664), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90635] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6666), 1, + anon_sym_LPAREN, + ACTIONS(6668), 1, + anon_sym_LBRACK, + ACTIONS(6670), 1, + anon_sym_LBRACE, + STATE(3124), 2, + sym_line_comment, + sym_block_comment, + [90655] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6315), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6672), 1, anon_sym_SEMI, - ACTIONS(6317), 1, - anon_sym_EQ, - STATE(2947), 2, + STATE(1312), 1, + sym_declaration_list, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [86321] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90675] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 1, - anon_sym_GT, - ACTIONS(6321), 1, - anon_sym_COMMA, - STATE(2948), 3, + ACTIONS(6674), 1, + anon_sym_move, + STATE(219), 1, + sym_closure_parameters, + STATE(3126), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86339] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90695] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2949), 2, + STATE(3127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 3, + ACTIONS(4955), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86355] = 6, - ACTIONS(101), 1, + [90711] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3128), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4957), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90727] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5137), 1, + STATE(3129), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6676), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6324), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2950), 2, + [90743] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [86375] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4959), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90759] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1586), 1, - anon_sym_GT, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2951), 2, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [86395] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4963), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90775] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6328), 1, - anon_sym_SEMI, - ACTIONS(6330), 1, - anon_sym_EQ, - STATE(2952), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [86415] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4965), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90791] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2953), 2, + STATE(3133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, + ACTIONS(4967), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86431] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90807] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2954), 2, + STATE(3134), 2, sym_line_comment, sym_block_comment, - ACTIONS(6332), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86447] = 6, - ACTIONS(101), 1, + ACTIONS(6678), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90823] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6680), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3135), 2, + sym_line_comment, + sym_block_comment, + [90841] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6334), 1, + ACTIONS(6682), 1, sym_identifier, - ACTIONS(6336), 1, - anon_sym_ref, - ACTIONS(6338), 1, - sym_mutable_specifier, - STATE(2955), 2, + ACTIONS(6684), 1, + anon_sym_await, + ACTIONS(6686), 1, + sym_integer_literal, + STATE(3136), 2, sym_line_comment, sym_block_comment, - [86467] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90861] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(6340), 1, - anon_sym_COLON_COLON, - STATE(1651), 1, - sym_field_initializer_list, - STATE(2956), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [86487] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6688), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90877] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, + ACTIONS(4769), 1, anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - ACTIONS(6342), 1, - sym_identifier, - STATE(2957), 2, + ACTIONS(6690), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [86507] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90895] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2958), 2, + STATE(3139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86523] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6692), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5347), 1, + ACTIONS(6694), 1, anon_sym_GT, - ACTIONS(5349), 1, + ACTIONS(6696), 1, anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2959), 2, + STATE(3140), 3, + sym_line_comment, + sym_block_comment, + aux_sym_use_bounds_repeat1, + [90929] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6040), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [86543] = 6, - ACTIONS(101), 1, + [90947] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6699), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90963] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, + ACTIONS(941), 1, anon_sym_RBRACK, - ACTIONS(4069), 1, + ACTIONS(4240), 1, anon_sym_COMMA, - STATE(2589), 1, + STATE(2759), 1, aux_sym_arguments_repeat1, - STATE(2960), 2, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [86563] = 6, - ACTIONS(101), 1, + [90983] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6701), 1, + anon_sym_EQ, + ACTIONS(6703), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3144), 2, + sym_line_comment, + sym_block_comment, + [91001] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, + ACTIONS(5870), 1, anon_sym_RPAREN, - ACTIONS(6344), 1, + ACTIONS(5872), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2961), 2, + STATE(3185), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [86583] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91021] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2962), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + STATE(3383), 1, + sym_lifetime, + STATE(3146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86599] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91041] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4885), 1, - anon_sym_RBRACE, - ACTIONS(6346), 1, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(4338), 1, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2963), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [86619] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91061] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2964), 2, + ACTIONS(4851), 1, + anon_sym_GT, + ACTIONS(6705), 1, + anon_sym_COMMA, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(3148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86635] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91081] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6348), 2, + ACTIONS(5031), 1, anon_sym_RBRACE, + ACTIONS(6707), 1, anon_sym_COMMA, - STATE(2965), 2, + STATE(2906), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [86653] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91101] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2966), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6709), 1, + anon_sym_SEMI, + ACTIONS(6711), 1, + anon_sym_RBRACK, + STATE(3150), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86669] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91121] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6350), 1, + ACTIONS(6713), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(683), 1, sym_declaration_list, - STATE(2967), 2, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [86689] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91141] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6352), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2968), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6715), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_where_clause, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [86709] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91161] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6354), 1, - anon_sym_SEMI, - STATE(1465), 1, - sym_declaration_list, - STATE(2969), 2, + ACTIONS(6719), 1, + anon_sym_COLON, + ACTIONS(6717), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [86729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91179] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, + ACTIONS(6721), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, sym_type_arguments, - STATE(2970), 2, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [86749] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91199] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2971), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6723), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(3155), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86765] = 6, + [91219] = 6, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6356), 1, + ACTIONS(6725), 1, anon_sym_move, - STATE(228), 1, + STATE(232), 1, sym_closure_parameters, - STATE(2972), 2, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [86785] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91239] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2973), 2, + ACTIONS(4851), 1, + anon_sym_GT, + ACTIONS(6705), 1, + anon_sym_COMMA, + STATE(3083), 1, + aux_sym_type_parameters_repeat1, + STATE(3157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86801] = 4, - ACTIONS(101), 1, + [91259] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6727), 1, + anon_sym_SEMI, + STATE(757), 1, + sym_declaration_list, + STATE(3158), 2, + sym_line_comment, + sym_block_comment, + [91279] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2974), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6729), 1, + anon_sym_SEMI, + STATE(657), 1, + sym_declaration_list, + STATE(3159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86817] = 6, - ACTIONS(101), 1, + [91299] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6731), 1, + anon_sym_SEMI, + STATE(759), 1, + sym_declaration_list, + STATE(3160), 2, + sym_line_comment, + sym_block_comment, + [91319] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_RPAREN, - ACTIONS(6360), 1, + ACTIONS(6733), 1, + anon_sym_GT, + ACTIONS(6735), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2975), 2, + STATE(2893), 1, + aux_sym_type_parameters_repeat1, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [86837] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91339] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6362), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6737), 1, anon_sym_SEMI, - STATE(3467), 1, - sym_where_clause, - STATE(2976), 2, + STATE(1381), 1, + sym_declaration_list, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [86857] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91359] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2977), 2, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(3163), 2, sym_line_comment, sym_block_comment, - ACTIONS(6364), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86873] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91379] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2978), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6739), 1, + anon_sym_SEMI, + STATE(3596), 1, + sym_where_clause, + STATE(3164), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86889] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91399] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(6366), 1, + ACTIONS(6741), 1, anon_sym_for, - STATE(1933), 1, + STATE(2026), 1, sym_type_arguments, - STATE(2979), 2, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [86909] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91419] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6368), 1, - anon_sym_SEMI, - STATE(1093), 1, - sym_declaration_list, - STATE(2980), 2, - sym_line_comment, - sym_block_comment, - [86929] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(3288), 1, anon_sym_RPAREN, - ACTIONS(5530), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - STATE(2981), 2, + STATE(2990), 1, + aux_sym_tuple_type_repeat1, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [86949] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91439] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6370), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6745), 1, anon_sym_SEMI, - STATE(1095), 1, - sym_declaration_list, - STATE(2982), 2, + STATE(3592), 1, + sym_where_clause, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [86969] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91459] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2983), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5158), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(3168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86985] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91479] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6372), 1, + ACTIONS(6747), 1, + anon_sym_RBRACE, + ACTIONS(6749), 1, anon_sym_COMMA, - STATE(2747), 1, - aux_sym_type_arguments_repeat1, - STATE(2984), 2, + STATE(2903), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [87005] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91499] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(6374), 1, - sym_mutable_specifier, - ACTIONS(6376), 1, - sym_self, - STATE(2985), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6751), 1, + anon_sym_SEMI, + STATE(3520), 1, + sym_where_clause, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [87025] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91519] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6378), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6753), 1, anon_sym_SEMI, - ACTIONS(6380), 1, - anon_sym_EQ, - STATE(2986), 2, + STATE(1421), 1, + sym_declaration_list, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [87045] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91539] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6382), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2987), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6755), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [87063] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91559] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2988), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - ACTIONS(6384), 3, + ACTIONS(6757), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [87079] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91575] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2945), 1, - anon_sym_RPAREN, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2989), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6759), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [87099] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91595] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2990), 2, + ACTIONS(6761), 1, + anon_sym_RBRACE, + ACTIONS(6763), 1, + anon_sym_COMMA, + STATE(3175), 3, sym_line_comment, sym_block_comment, - ACTIONS(4760), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87115] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_variant_list_repeat2, + [91613] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6372), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2991), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6766), 1, + anon_sym_EQ, + STATE(3765), 1, + sym_where_clause, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [87135] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91633] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, + ACTIONS(6770), 1, + anon_sym_EQ, + ACTIONS(6768), 2, anon_sym_RBRACE, - ACTIONS(6388), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2992), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [87155] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91651] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4949), 1, - anon_sym_RBRACE, - ACTIONS(6390), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2993), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6772), 1, + anon_sym_for, + STATE(2026), 1, + sym_type_arguments, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [87175] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91671] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, + ACTIONS(5081), 1, anon_sym_RBRACE, - ACTIONS(6388), 1, + ACTIONS(6774), 1, anon_sym_COMMA, - STATE(2943), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2994), 2, + STATE(3175), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [87195] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91691] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2995), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6776), 1, + anon_sym_SEMI, + STATE(778), 1, + sym_declaration_list, + STATE(3180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87211] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91711] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 1, - anon_sym_GT, - ACTIONS(6394), 1, - anon_sym_COMMA, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2996), 2, + ACTIONS(6778), 1, + sym_identifier, + ACTIONS(6780), 1, + anon_sym_ref, + ACTIONS(6782), 1, + sym_mutable_specifier, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [87231] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91731] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6396), 1, - anon_sym_SEMI, - ACTIONS(6398), 1, - anon_sym_RBRACK, - STATE(2997), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6784), 1, + anon_sym_EQ, + STATE(3577), 1, + sym_where_clause, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [87251] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91751] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2998), 2, + STATE(3183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 3, + ACTIONS(5029), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87267] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91767] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6400), 1, - anon_sym_SEMI, - STATE(629), 1, - sym_declaration_list, - STATE(2999), 2, - sym_line_comment, - sym_block_comment, - [87287] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3000), 2, + ACTIONS(959), 1, + anon_sym_RBRACK, + ACTIONS(4304), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(3184), 2, sym_line_comment, sym_block_comment, - ACTIONS(6402), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87303] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91787] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, + ACTIONS(1836), 1, + anon_sym_RPAREN, + ACTIONS(6786), 1, anon_sym_COMMA, - ACTIONS(6404), 1, - anon_sym_PIPE, - STATE(2924), 1, - aux_sym_closure_parameters_repeat1, - STATE(3001), 2, + STATE(2956), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [87323] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91807] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6406), 1, - anon_sym_SEMI, - STATE(3371), 1, - sym_where_clause, - STATE(3002), 2, + ACTIONS(3154), 1, + anon_sym_RBRACK, + ACTIONS(6788), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [87343] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91827] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6790), 1, anon_sym_SEMI, - STATE(667), 1, + STATE(566), 1, sym_declaration_list, - STATE(3003), 2, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [87363] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91847] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(4067), 1, + ACTIONS(6144), 1, + anon_sym_GT, + ACTIONS(6792), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(3004), 2, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [87383] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91867] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - STATE(753), 1, - sym_declaration_list, - STATE(3005), 2, + ACTIONS(6796), 1, + anon_sym_EQ, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [87403] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91884] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - sym_identifier, - ACTIONS(6414), 2, - anon_sym_default, - anon_sym_union, - STATE(3006), 2, - sym_line_comment, - sym_block_comment, - [87421] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3021), 1, - anon_sym_RBRACK, - ACTIONS(6416), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(3007), 2, + ACTIONS(6798), 1, + anon_sym_RPAREN, + ACTIONS(6800), 1, + anon_sym_COLON_COLON, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [87441] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91901] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 2, - anon_sym_default, - anon_sym_union, - STATE(3008), 2, - sym_line_comment, - sym_block_comment, - [87459] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6422), 1, - anon_sym_SEMI, - STATE(3327), 1, - sym_where_clause, - STATE(3009), 2, + ACTIONS(6802), 1, + anon_sym_RPAREN, + ACTIONS(6804), 1, + anon_sym_COLON_COLON, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [87479] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91918] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, - anon_sym_SEMI, - STATE(554), 1, - sym_declaration_list, - STATE(3010), 2, + STATE(668), 1, + sym_enum_variant_list, + STATE(3192), 2, sym_line_comment, sym_block_comment, - [87499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(3011), 2, + [91935] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(234), 1, + sym_closure_parameters, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [87519] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91952] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, - ACTIONS(6428), 1, + ACTIONS(5414), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2771), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3012), 2, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [87539] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91967] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4961), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3013), 2, + ACTIONS(6802), 1, + anon_sym_RPAREN, + ACTIONS(6806), 1, + anon_sym_COLON_COLON, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [87559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91984] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6430), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3014), 2, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(970), 1, + sym_type_parameters, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [87577] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92001] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6432), 1, - anon_sym_SEMI, - ACTIONS(6434), 1, - anon_sym_EQ, - STATE(3015), 2, + ACTIONS(6802), 1, + anon_sym_RPAREN, + ACTIONS(6808), 1, + anon_sym_COLON_COLON, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [87597] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92018] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3016), 2, + ACTIONS(5968), 1, + sym_identifier, + ACTIONS(5970), 1, + sym_super, + STATE(3198), 2, sym_line_comment, sym_block_comment, - ACTIONS(6436), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87613] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92035] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_EQ, - STATE(3572), 1, - sym_type_parameters, - STATE(3017), 2, + ACTIONS(5930), 2, + sym_identifier, + sym_super, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [87633] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92050] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6440), 1, - anon_sym_SEMI, - ACTIONS(6442), 1, - anon_sym_EQ, - STATE(3018), 2, + ACTIONS(6810), 1, + sym_identifier, + ACTIONS(6812), 1, + sym_super, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [87653] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92067] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6444), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3019), 2, + ACTIONS(6814), 1, + sym_identifier, + ACTIONS(6816), 1, + sym_super, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [87673] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92084] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4582), 1, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, - STATE(3020), 2, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [87693] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92101] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6446), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3021), 2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [87713] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92118] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, - ACTIONS(6450), 1, - anon_sym_COMMA, - STATE(2859), 1, - aux_sym_struct_pattern_repeat1, - STATE(3022), 2, + ACTIONS(6818), 1, + sym_identifier, + ACTIONS(6820), 1, + sym_super, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [87733] = 6, - ACTIONS(101), 1, + [92135] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(915), 1, + sym_type_parameters, + STATE(3205), 2, + sym_line_comment, + sym_block_comment, + [92152] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(6452), 1, - anon_sym_SEMI, - STATE(1135), 1, - sym_declaration_list, - STATE(3023), 2, + STATE(1174), 1, + sym_field_declaration_list, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [87753] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92169] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6454), 1, - anon_sym_SEMI, - STATE(1137), 1, + STATE(1175), 1, sym_declaration_list, - STATE(3024), 2, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [87773] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92186] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6456), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3025), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + STATE(1702), 1, + sym_parameters, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [87793] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92203] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3026), 3, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_declaration_list, + STATE(3209), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87811] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92220] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, - anon_sym_COMMA, - ACTIONS(6463), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, - STATE(3027), 2, + ACTIONS(5755), 1, + anon_sym_COLON, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [87831] = 6, - ACTIONS(101), 1, + [92237] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(236), 1, + sym_closure_parameters, + STATE(3211), 2, + sym_line_comment, + sym_block_comment, + [92254] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, + ACTIONS(6824), 2, sym_identifier, - ACTIONS(6467), 1, - anon_sym_ref, - ACTIONS(6469), 1, - sym_mutable_specifier, - STATE(3028), 2, + sym_super, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [87851] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92269] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6471), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3029), 2, + ACTIONS(6820), 2, + sym_identifier, + sym_super, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [87871] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92284] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6473), 1, - anon_sym_SEMI, - STATE(1184), 1, + STATE(1241), 1, sym_declaration_list, - STATE(3030), 2, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [87891] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92301] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6475), 1, - anon_sym_SEMI, - STATE(3556), 1, - sym_where_clause, - STATE(3031), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(2550), 1, + sym_trait_bounds, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [87911] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92318] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3032), 2, + ACTIONS(3418), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3216), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87927] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92333] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3033), 2, + ACTIONS(6510), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [87942] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92348] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6479), 1, - anon_sym_SEMI, - ACTIONS(6481), 1, - anon_sym_as, - STATE(3034), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1249), 1, + sym_declaration_list, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [87959] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92365] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(1162), 1, + STATE(1250), 1, sym_declaration_list, - STATE(3035), 2, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [87976] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92382] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 2, + ACTIONS(6826), 2, sym_identifier, - sym_metavariable, - STATE(3036), 2, + sym_super, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [87991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92397] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6485), 1, - sym_identifier, - STATE(3037), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + STATE(1658), 1, + sym_parameters, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [88008] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92414] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(3576), 1, anon_sym_LBRACE, - STATE(527), 1, - sym_declaration_list, - STATE(3038), 2, + STATE(1535), 1, + sym_field_initializer_list, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [88025] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92431] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 2, - sym_identifier, - sym_super, - STATE(3039), 2, + STATE(224), 1, + sym_closure_parameters, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [88040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92448] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5831), 1, sym_super, - ACTIONS(6489), 1, + ACTIONS(5898), 1, sym_identifier, - STATE(3040), 2, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [88057] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92465] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3041), 2, + ACTIONS(6484), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [88072] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92480] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - sym_identifier, - ACTIONS(6495), 1, - sym_super, - STATE(3042), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1184), 1, + sym_field_declaration_list, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [88089] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92497] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6145), 1, - anon_sym_for, - STATE(3043), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_enum_variant_list, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [88106] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92514] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(217), 1, - sym_closure_parameters, - STATE(3044), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + STATE(1392), 1, + sym_parameters, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [88123] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92531] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6497), 1, + ACTIONS(6828), 1, anon_sym_SEMI, - ACTIONS(6499), 1, + ACTIONS(6830), 1, anon_sym_as, - STATE(3045), 2, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [88140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92548] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - STATE(707), 1, - sym_enum_variant_list, - STATE(3046), 2, + STATE(1268), 1, + sym_field_declaration_list, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [88157] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92565] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3047), 2, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_COLON_COLON, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [88174] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92582] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3048), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1270), 1, + sym_field_declaration_list, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [88191] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92599] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5703), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3049), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1273), 1, + sym_declaration_list, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [88206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92616] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6503), 1, - sym_identifier, - ACTIONS(6505), 1, - sym_super, - STATE(3050), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1192), 1, + sym_declaration_list, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [88223] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92633] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(5589), 1, sym_super, - ACTIONS(6507), 1, + ACTIONS(6836), 1, sym_identifier, - STATE(3051), 2, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [88240] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92650] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(228), 1, - sym_closure_parameters, - STATE(3052), 2, + ACTIONS(6838), 1, + sym_identifier, + ACTIONS(6840), 1, + sym_super, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [88257] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92667] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(6842), 2, anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3053), 2, + anon_sym_COMMA, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [88274] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92682] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1594), 1, - sym_parameters, - STATE(3054), 2, - sym_line_comment, - sym_block_comment, - [88291] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3055), 2, + ACTIONS(5589), 1, + sym_super, + ACTIONS(6844), 1, + sym_identifier, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [88306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92699] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1084), 1, - sym_type_parameters, - STATE(3056), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5099), 1, + anon_sym_for, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [88323] = 5, + [92716] = 5, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(225), 1, + STATE(233), 1, sym_closure_parameters, - STATE(3057), 2, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [88340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92733] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, + ACTIONS(6826), 1, + sym_super, + ACTIONS(6846), 1, sym_identifier, - ACTIONS(5995), 1, - sym_mutable_specifier, - STATE(3058), 2, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [88357] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92750] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3587), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3059), 2, - sym_line_comment, - sym_block_comment, - [88374] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_field_declaration_list, - STATE(3060), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1518), 1, + sym_type_arguments, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [88391] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92767] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3591), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3061), 2, - sym_line_comment, - sym_block_comment, - [88408] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, - sym_super, - STATE(3062), 2, + ACTIONS(6848), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [88425] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92782] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5641), 2, - sym_identifier, - sym_super, - STATE(3063), 2, - sym_line_comment, - sym_block_comment, - [88440] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6513), 1, - sym_identifier, - ACTIONS(6515), 1, + ACTIONS(5676), 1, sym_super, - STATE(3064), 2, + ACTIONS(6846), 1, + sym_identifier, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [88457] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92799] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6267), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3065), 2, - sym_line_comment, - sym_block_comment, - [88472] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6517), 1, - sym_super, - STATE(3066), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(671), 1, + sym_field_declaration_list, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [88489] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92816] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, - STATE(3067), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_enum_variant_list, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [88506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92833] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6521), 1, - sym_super, - STATE(3068), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(577), 1, + sym_field_declaration_list, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [88523] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92850] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3637), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3069), 2, + ACTIONS(6850), 1, + anon_sym_STAR_SLASH, + ACTIONS(6852), 1, + sym__block_comment_content, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [88540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92867] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(865), 1, - sym_type_parameters, - STATE(3070), 2, + ACTIONS(6319), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [88557] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92882] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1622), 1, - sym_parameters, - STATE(3071), 2, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(248), 1, + sym_closure_parameters, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [88574] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92899] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(5589), 1, sym_super, - ACTIONS(5651), 1, + ACTIONS(6854), 1, sym_identifier, - STATE(3072), 2, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [88591] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92916] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3073), 2, + ACTIONS(5970), 2, + sym_identifier, + sym_super, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [88606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92931] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, + ACTIONS(6856), 1, anon_sym_SEMI, - STATE(3074), 2, + ACTIONS(6858), 1, + anon_sym_EQ, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [88623] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92948] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(3196), 1, - sym_lifetime, - STATE(3075), 2, - sym_line_comment, - sym_block_comment, - [88640] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3076), 2, + ACTIONS(6816), 1, + sym_super, + ACTIONS(6860), 1, + sym_identifier, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [88655] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92965] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 2, - sym_identifier, + ACTIONS(5306), 1, sym_super, - STATE(3077), 2, + ACTIONS(5898), 1, + sym_identifier, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [88670] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92982] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6273), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3078), 2, - sym_line_comment, - sym_block_comment, - [88685] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(6820), 1, sym_super, - ACTIONS(6527), 1, + ACTIONS(6838), 1, sym_identifier, - STATE(3079), 2, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [88702] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92999] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - STATE(580), 1, - sym_declaration_list, - STATE(3080), 2, + STATE(1200), 1, + sym_field_declaration_list, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [88719] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93016] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1085), 1, - sym_parameters, - STATE(3081), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_declaration_list, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [88736] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93033] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 2, - sym_identifier, + ACTIONS(5676), 1, sym_super, - STATE(3082), 2, + ACTIONS(6862), 1, + sym_identifier, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [88751] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93050] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2219), 1, - sym_parameters, - STATE(3083), 2, - sym_line_comment, - sym_block_comment, - [88768] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3084), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6864), 1, + anon_sym_in, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [88783] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93067] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1598), 1, - sym_parameters, - STATE(3085), 2, + STATE(249), 1, + sym_closure_parameters, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [88800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93084] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6533), 1, - sym_identifier, - STATE(3086), 2, + ACTIONS(6866), 1, + anon_sym_LBRACK, + ACTIONS(6868), 1, + anon_sym_BANG, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [88817] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93101] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(581), 1, + STATE(579), 1, sym_declaration_list, - STATE(3087), 2, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [88834] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93118] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 2, + ACTIONS(6870), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3088), 2, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [88849] = 4, - ACTIONS(101), 1, + [93133] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6872), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3265), 2, + sym_line_comment, + sym_block_comment, + [93148] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5679), 2, - anon_sym_GT, + ACTIONS(6545), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3089), 2, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [88864] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93163] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - STATE(1314), 1, - sym_enum_variant_list, - STATE(3090), 2, + STATE(1203), 1, + sym_field_declaration_list, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [88881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93180] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - STATE(3091), 2, + ACTIONS(6874), 1, + anon_sym_SEMI, + ACTIONS(6876), 1, + anon_sym_as, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [88898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93197] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(6816), 1, sym_super, - ACTIONS(6539), 1, + ACTIONS(6878), 1, sym_identifier, - STATE(3092), 2, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [88915] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93214] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - STATE(3093), 2, + ACTIONS(5676), 2, + sym_identifier, + sym_super, + STATE(3270), 2, sym_line_comment, sym_block_comment, - [88932] = 5, + [93229] = 5, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, + STATE(220), 1, sym_closure_parameters, - STATE(3094), 2, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [88949] = 5, - ACTIONS(101), 1, + [93246] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + STATE(3027), 1, + sym_lifetime, + STATE(3272), 2, + sym_line_comment, + sym_block_comment, + [93263] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6366), 1, - anon_sym_for, - STATE(3095), 2, + ACTIONS(6564), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [88966] = 5, - ACTIONS(101), 1, + [93278] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(247), 1, + sym_closure_parameters, + STATE(3274), 2, + sym_line_comment, + sym_block_comment, + [93295] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(6543), 1, + ACTIONS(6880), 1, sym_identifier, - STATE(3096), 2, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [88983] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93312] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_field_declaration_list, - STATE(3097), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(949), 1, + sym_type_parameters, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [89000] = 5, + [93329] = 5, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, + STATE(256), 1, sym_closure_parameters, - STATE(3098), 2, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [89017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93346] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_declaration_list, - STATE(3099), 2, - sym_line_comment, - sym_block_comment, - [89034] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - STATE(1651), 1, - sym_field_initializer_list, - STATE(3100), 2, + ACTIONS(6882), 1, + sym_identifier, + ACTIONS(6884), 1, + sym_super, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [89051] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93363] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1960), 1, - sym_parameters, - STATE(3101), 2, + ACTIONS(6886), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [89068] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93378] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(5831), 1, sym_super, - ACTIONS(6533), 1, + ACTIONS(5833), 1, sym_identifier, - STATE(3102), 2, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [89085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93395] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - anon_sym_RPAREN, - ACTIONS(6547), 1, - anon_sym_COLON_COLON, - STATE(3103), 2, + ACTIONS(6840), 1, + sym_super, + ACTIONS(6888), 1, + sym_identifier, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [89102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93412] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, - anon_sym_RPAREN, - STATE(3104), 2, + ACTIONS(6890), 1, + anon_sym_SEMI, + ACTIONS(6892), 1, + anon_sym_EQ, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [89119] = 5, + [93429] = 5, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(232), 1, + STATE(243), 1, sym_closure_parameters, - STATE(3105), 2, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [89136] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93446] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, - anon_sym_RPAREN, - STATE(3106), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_declaration_list, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [89153] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93463] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6549), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_COLON, - STATE(3107), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(585), 1, + sym_field_declaration_list, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [89170] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93480] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4694), 1, + ACTIONS(6804), 1, anon_sym_COLON_COLON, - STATE(3108), 2, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [89187] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93497] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 2, - sym_identifier, + ACTIONS(6826), 1, sym_super, - STATE(3109), 2, + ACTIONS(6896), 1, + sym_identifier, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [89202] = 5, - ACTIONS(101), 1, + [93514] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(950), 1, + sym_type_parameters, + STATE(3288), 2, + sym_line_comment, + sym_block_comment, + [93531] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(6586), 1, + anon_sym_for, + STATE(3289), 2, + sym_line_comment, + sym_block_comment, + [93548] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, + ACTIONS(6816), 1, sym_super, - ACTIONS(6553), 1, + ACTIONS(6898), 1, sym_identifier, - STATE(3110), 2, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [89219] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93565] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, + ACTIONS(5831), 1, sym_super, - ACTIONS(5651), 1, + ACTIONS(5918), 1, sym_identifier, - STATE(3111), 2, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [89236] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93582] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, + ACTIONS(6840), 1, sym_super, - ACTIONS(6555), 1, + ACTIONS(6900), 1, sym_identifier, - STATE(3112), 2, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [89253] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93599] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, + ACTIONS(6806), 1, anon_sym_COLON_COLON, - STATE(3113), 2, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [89270] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93616] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - STATE(684), 1, - sym_field_declaration_list, - STATE(3114), 2, + STATE(557), 1, + sym_enum_variant_list, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [89287] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93633] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1341), 1, - sym_field_declaration_list, - STATE(3115), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6904), 1, + anon_sym_RPAREN, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [89304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93650] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_declaration_list, - STATE(3116), 2, + ACTIONS(6011), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3296), 2, sym_line_comment, sym_block_comment, - [89321] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93665] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(1343), 1, - sym_declaration_list, - STATE(3117), 2, + STATE(1152), 1, + sym_enum_variant_list, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [89338] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93682] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - anon_sym_SEMI, - ACTIONS(6563), 1, - anon_sym_as, - STATE(3118), 2, - sym_line_comment, - sym_block_comment, - [89355] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_field_declaration_list, - STATE(3119), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4993), 1, + anon_sym_BANG, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [89372] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93699] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 2, + ACTIONS(6906), 2, anon_sym_GT, anon_sym_COMMA, - STATE(3120), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [89387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93714] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_LBRACK, - ACTIONS(6567), 1, - anon_sym_BANG, - STATE(3121), 2, - sym_line_comment, - sym_block_comment, - [89404] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, - STATE(3122), 2, + ACTIONS(6908), 1, + sym_identifier, + ACTIONS(6910), 1, + sym_super, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [89421] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93731] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1355), 1, - sym_declaration_list, - STATE(3123), 2, - sym_line_comment, - sym_block_comment, - [89438] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5676), 1, sym_super, - ACTIONS(6569), 1, + ACTIONS(6912), 1, sym_identifier, - STATE(3124), 2, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [89455] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93748] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(6816), 1, sym_super, - ACTIONS(6571), 1, + ACTIONS(6914), 1, sym_identifier, - STATE(3125), 2, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [89472] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93765] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5930), 1, sym_super, - ACTIONS(6573), 1, + ACTIONS(5980), 1, sym_identifier, - STATE(3126), 2, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [89489] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93782] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(241), 1, - sym_closure_parameters, - STATE(3127), 2, - sym_line_comment, - sym_block_comment, - [89506] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_field_declaration_list, - STATE(3128), 2, + ACTIONS(6824), 1, + sym_super, + ACTIONS(6916), 1, + sym_identifier, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [89523] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93799] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(1360), 1, - sym_enum_variant_list, - STATE(3129), 2, + STATE(1357), 1, + sym_declaration_list, + STATE(3305), 2, sym_line_comment, sym_block_comment, - [89540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93816] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - sym_super, - ACTIONS(6575), 1, - sym_identifier, - STATE(3130), 2, + ACTIONS(6808), 1, + anon_sym_COLON_COLON, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [89557] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93833] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 2, - sym_float_literal, - sym_integer_literal, - STATE(3131), 2, + STATE(255), 1, + sym_closure_parameters, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [89572] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93850] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(5676), 1, sym_super, - ACTIONS(5769), 1, + ACTIONS(6880), 1, sym_identifier, - STATE(3132), 2, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [89589] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93867] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - sym_identifier, - ACTIONS(6581), 1, + ACTIONS(6816), 1, sym_super, - STATE(3133), 2, + ACTIONS(6844), 1, + sym_identifier, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [89606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93884] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(6507), 1, + ACTIONS(5833), 1, sym_identifier, - STATE(3134), 2, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [89623] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93901] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 2, - sym_identifier, + ACTIONS(6820), 1, sym_super, - STATE(3135), 2, + ACTIONS(6888), 1, + sym_identifier, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [89638] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93918] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_field_declaration_list, - STATE(3136), 2, - sym_line_comment, - sym_block_comment, - [89655] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1370), 1, - sym_field_declaration_list, - STATE(3137), 2, + ACTIONS(6826), 1, + sym_super, + ACTIONS(6918), 1, + sym_identifier, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [89672] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93935] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6583), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3138), 2, - sym_line_comment, - sym_block_comment, - [89687] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, - anon_sym_SEMI, - ACTIONS(6587), 1, - anon_sym_as, - STATE(3139), 2, + ACTIONS(5829), 1, + sym_identifier, + ACTIONS(5831), 1, + sym_super, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [89704] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93952] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, + ACTIONS(6840), 1, + sym_super, + ACTIONS(6920), 1, sym_identifier, - ACTIONS(6591), 1, - sym_mutable_specifier, - STATE(3140), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [89721] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93969] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3141), 2, - sym_line_comment, - sym_block_comment, - [89738] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(6593), 1, + ACTIONS(6922), 1, sym_identifier, - STATE(3142), 2, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [89755] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93986] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3143), 2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5886), 1, + sym_identifier, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [89770] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94003] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, - STATE(3144), 2, + ACTIONS(6840), 1, + sym_super, + ACTIONS(6924), 1, + sym_identifier, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [89787] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94020] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(6597), 1, + ACTIONS(6926), 1, sym_identifier, - STATE(3145), 2, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [89804] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94037] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(5831), 1, sym_super, - ACTIONS(5779), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(3146), 2, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [89821] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94054] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(6840), 1, sym_super, - ACTIONS(6599), 1, + ACTIONS(6928), 1, sym_identifier, - STATE(3147), 2, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [89838] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94071] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3148), 2, + ACTIONS(5676), 1, + sym_super, + ACTIONS(6926), 1, + sym_identifier, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [89853] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94088] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_parameters, - STATE(3149), 2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [89870] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94105] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3150), 2, + ACTIONS(6820), 1, + sym_super, + ACTIONS(6928), 1, + sym_identifier, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [89887] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94122] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6601), 1, - anon_sym_RBRACE, - STATE(3151), 2, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [89904] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94137] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1183), 1, - sym_type_arguments, - STATE(3152), 2, + ACTIONS(4819), 1, + anon_sym_BANG, + ACTIONS(4875), 1, + anon_sym_COLON_COLON, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [89921] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94154] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4819), 1, anon_sym_BANG, - ACTIONS(6603), 1, + ACTIONS(4865), 1, anon_sym_COLON_COLON, - STATE(3153), 2, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [89938] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94171] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(659), 1, - sym_enum_variant_list, - STATE(3154), 2, + STATE(1752), 1, + sym_field_initializer_list, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [89955] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94188] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6605), 1, - anon_sym_RBRACE, - STATE(3155), 2, - sym_line_comment, - sym_block_comment, - [89972] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - STATE(3156), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2456), 1, + sym_parameters, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [89989] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94205] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 1, - sym_identifier, - ACTIONS(6609), 1, - sym_super, - STATE(3157), 2, + ACTIONS(5428), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [90006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94222] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6611), 1, - sym_identifier, - STATE(3158), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1366), 1, + sym_declaration_list, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [90023] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94239] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(521), 1, - sym_enum_variant_list, - STATE(3159), 2, + STATE(1367), 1, + sym_declaration_list, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [90040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94256] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 1, + ACTIONS(6820), 1, sym_super, - ACTIONS(5787), 1, + ACTIONS(6930), 1, sym_identifier, - STATE(3160), 2, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [90057] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94273] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, - sym_super, - ACTIONS(6613), 1, - sym_identifier, - STATE(3161), 2, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6932), 1, + anon_sym_COLON_COLON, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [90074] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94290] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, + ACTIONS(6902), 1, anon_sym_SEMI, - STATE(3162), 2, + ACTIONS(6934), 1, + anon_sym_RBRACE, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [90091] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94307] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2180), 1, - sym_parameters, - STATE(3163), 2, - sym_line_comment, - sym_block_comment, - [90108] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6571), 1, - sym_identifier, - STATE(3164), 2, + ACTIONS(6936), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [90125] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94322] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6543), 1, - sym_identifier, - STATE(3165), 2, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [90142] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94339] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3731), 1, - anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(3475), 1, anon_sym_PLUS, - STATE(3166), 2, + ACTIONS(3676), 1, + anon_sym_COLON_COLON, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [90159] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94356] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3167), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(590), 1, + sym_declaration_list, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [90176] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94373] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6579), 1, - sym_identifier, - STATE(3168), 2, + ACTIONS(6938), 1, + anon_sym_BANG, + ACTIONS(6940), 1, + anon_sym_COLON_COLON, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [90193] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94390] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3169), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_field_declaration_list, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [90210] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94407] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, + ACTIONS(5589), 1, sym_super, - ACTIONS(6615), 1, + ACTIONS(6942), 1, sym_identifier, - STATE(3170), 2, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [90227] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94424] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, - STATE(3171), 2, + ACTIONS(6944), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [90244] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94439] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, + ACTIONS(6946), 1, sym_identifier, - STATE(3172), 2, + ACTIONS(6948), 1, + sym_mutable_specifier, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [90261] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94456] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6617), 1, - sym_identifier, - STATE(3173), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_declaration_list, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [90278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94473] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, - STATE(3174), 2, + ACTIONS(5524), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [90295] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94488] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6619), 1, - sym_identifier, - STATE(3175), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(741), 1, + sym_declaration_list, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [90312] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94505] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 2, - sym_identifier, - sym_super, - STATE(3176), 2, + ACTIONS(6950), 2, + sym_float_literal, + sym_integer_literal, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [90327] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94520] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(5791), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(3177), 2, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [90344] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94537] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6621), 1, - sym_identifier, - STATE(3178), 2, + ACTIONS(6954), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [90361] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94552] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(6623), 1, - anon_sym_AMP_AMP, - STATE(3179), 2, + ACTIONS(6956), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [90378] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94567] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6625), 1, - sym_identifier, - STATE(3180), 2, + ACTIONS(6643), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [90395] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94582] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - anon_sym_EQ_GT, - ACTIONS(6623), 1, - anon_sym_AMP_AMP, - STATE(3181), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(742), 1, + sym_declaration_list, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [90412] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94599] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3182), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + STATE(1294), 1, + sym_parameters, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [90429] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94616] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6627), 1, - sym_identifier, - STATE(3183), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(969), 1, + sym_type_parameters, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [90446] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94633] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3184), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6958), 1, + anon_sym_RBRACE, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [90461] = 4, - ACTIONS(101), 1, + [94650] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2306), 1, + sym_parameters, + STATE(3356), 2, + sym_line_comment, + sym_block_comment, + [94667] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 2, + ACTIONS(6884), 2, sym_identifier, sym_super, - STATE(3185), 2, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [90476] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94682] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3186), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [90493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94699] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6627), 1, - sym_identifier, - STATE(3187), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(3814), 1, + anon_sym_COLON, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [90510] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94716] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6631), 1, - anon_sym_in, - STATE(3188), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2314), 1, + sym_parameters, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [90527] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94733] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3189), 2, + ACTIONS(4502), 1, + anon_sym_EQ_GT, + ACTIONS(6960), 1, + anon_sym_AMP_AMP, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [90542] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94750] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_field_declaration_list, - STATE(3190), 2, + ACTIONS(6605), 1, + anon_sym_EQ_GT, + ACTIONS(6960), 1, + anon_sym_AMP_AMP, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [90559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94767] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, - sym_identifier, - STATE(3191), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6904), 1, + anon_sym_RBRACK, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [90576] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94784] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, + ACTIONS(5342), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, anon_sym_SEMI, - STATE(3192), 2, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [90593] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94801] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, - STATE(3193), 2, + ACTIONS(6816), 2, + sym_identifier, + sym_super, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [90610] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94816] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, - STATE(3194), 2, + ACTIONS(5342), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [90627] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94833] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(3195), 2, + ACTIONS(5344), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [90642] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94850] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3196), 2, + ACTIONS(5344), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [90657] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94867] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 2, - anon_sym_RBRACE, + ACTIONS(6962), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3197), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [90672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94882] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_COLON_COLON, - STATE(3198), 2, + STATE(219), 1, + sym_closure_parameters, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [90689] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94899] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, - sym_identifier, - sym_metavariable, - STATE(3199), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6964), 1, + anon_sym_RBRACE, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [90704] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94916] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3200), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(751), 1, + sym_field_declaration_list, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [90719] = 4, - ACTIONS(101), 1, + [94933] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6966), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3373), 2, + sym_line_comment, + sym_block_comment, + [94948] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3201), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(650), 1, + sym_declaration_list, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [90734] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94965] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_COLON_COLON, - STATE(3202), 2, + ACTIONS(6968), 1, + sym_identifier, + ACTIONS(6970), 1, + sym_mutable_specifier, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [90751] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94982] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5151), 2, - anon_sym_RPAREN, + ACTIONS(6972), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3203), 2, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [90766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94997] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(5588), 1, + ACTIONS(5811), 1, sym_identifier, - STATE(3204), 2, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [90783] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95014] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 2, + ACTIONS(5831), 2, sym_identifier, sym_super, - STATE(3205), 2, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [90798] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95029] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, + ACTIONS(6820), 1, sym_super, - ACTIONS(6645), 1, + ACTIONS(6974), 1, sym_identifier, - STATE(3206), 2, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [90815] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95046] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1963), 1, - sym_parameters, - STATE(3207), 2, + ACTIONS(6976), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [90832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95061] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, - STATE(3208), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2328), 1, + sym_parameters, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [90849] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95078] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6978), 1, anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_COLON, - STATE(3209), 2, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [90866] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95095] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_declaration_list, - STATE(3210), 2, - sym_line_comment, - sym_block_comment, - [90883] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1074), 1, - sym_type_parameters, - STATE(3211), 2, + ACTIONS(6694), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [90900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95110] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6647), 1, - anon_sym_EQ, - STATE(3212), 2, + ACTIONS(6980), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [90917] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95125] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(4184), 1, anon_sym_LT2, - STATE(1668), 1, + STATE(1875), 1, sym_type_arguments, - STATE(3213), 2, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [90934] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95142] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2215), 1, + STATE(2332), 1, sym_parameters, - STATE(3214), 2, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [90951] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95159] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1416), 1, - sym_declaration_list, - STATE(3215), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6978), 1, + anon_sym_RBRACK, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [90968] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95176] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_field_initializer_list, - STATE(3216), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6982), 1, + anon_sym_RPAREN, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [90985] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95193] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(3217), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6982), 1, + anon_sym_RBRACK, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [91000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95210] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_declaration_list, - STATE(3218), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6984), 1, + anon_sym_RPAREN, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [91017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95227] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1424), 1, - sym_declaration_list, - STATE(3219), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6984), 1, + anon_sym_RBRACK, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [91034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95244] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_declaration_list, - STATE(3220), 2, + ACTIONS(6040), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [91051] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95259] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(572), 1, + STATE(1123), 1, sym_declaration_list, - STATE(3221), 2, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [91068] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95276] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, + ACTIONS(6986), 2, anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3222), 2, + anon_sym_COMMA, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [91085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3223), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + STATE(3351), 1, + sym_lifetime, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [91102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95308] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RPAREN, - STATE(3224), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6988), 1, + anon_sym_GT, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [91119] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95325] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3225), 2, + ACTIONS(6816), 1, + sym_super, + ACTIONS(6854), 1, + sym_identifier, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [91136] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95342] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3226), 2, + ACTIONS(6910), 2, + sym_identifier, + sym_super, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [91153] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95357] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, - STATE(3227), 2, + ACTIONS(6990), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [91170] = 5, - ACTIONS(101), 1, + [95372] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6992), 1, + anon_sym_RBRACE, + STATE(3400), 2, + sym_line_comment, + sym_block_comment, + [95389] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2194), 1, + STATE(2290), 1, sym_parameters, - STATE(3228), 2, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [91187] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95406] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1433), 1, - sym_enum_variant_list, - STATE(3229), 2, + ACTIONS(6994), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [91204] = 5, - ACTIONS(101), 1, + [95421] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5807), 1, + sym_identifier, + ACTIONS(5831), 1, + sym_super, + STATE(3403), 2, + sym_line_comment, + sym_block_comment, + [95438] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(620), 1, - sym_declaration_list, - STATE(3230), 2, + ACTIONS(6818), 1, + sym_identifier, + ACTIONS(6840), 1, + sym_super, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [91221] = 5, - ACTIONS(101), 1, + [95455] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(4074), 1, + anon_sym_COLON, + STATE(3405), 2, + sym_line_comment, + sym_block_comment, + [95472] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1436), 1, - sym_field_declaration_list, - STATE(3231), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2494), 1, + sym_parameters, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [91238] = 4, - ACTIONS(101), 1, + [95489] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5589), 2, + sym_identifier, + sym_super, + STATE(3407), 2, + sym_line_comment, + sym_block_comment, + [95504] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 2, + ACTIONS(6230), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3232), 2, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [91253] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95519] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_field_declaration_list, - STATE(3233), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2319), 1, + sym_parameters, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [91270] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95536] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_declaration_list, - STATE(3234), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(6723), 1, + anon_sym_for, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [91287] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95553] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(3235), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(995), 1, + sym_type_parameters, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [91302] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95570] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(6651), 1, + ACTIONS(5996), 1, sym_identifier, - STATE(3236), 2, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [91319] = 5, - ACTIONS(101), 1, + [95587] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + sym_identifier, + ACTIONS(6336), 1, + sym_mutable_specifier, + STATE(3413), 2, + sym_line_comment, + sym_block_comment, + [95604] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - STATE(2202), 1, + STATE(1333), 1, sym_parameters, - STATE(3237), 2, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [91336] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95621] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 2, + ACTIONS(5589), 1, + sym_super, + ACTIONS(6814), 1, sym_identifier, - sym_metavariable, - STATE(3238), 2, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [91351] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95638] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, - STATE(3239), 2, + ACTIONS(6996), 1, + anon_sym_LPAREN, + ACTIONS(6998), 1, + anon_sym_COLON_COLON, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [91368] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95655] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(859), 1, - sym_type_parameters, - STATE(3240), 2, + ACTIONS(7000), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [91385] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95670] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RPAREN, - STATE(3241), 2, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [91402] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95687] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RBRACK, - STATE(3242), 2, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(4352), 1, + anon_sym_COLON_COLON, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [91419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95704] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, - anon_sym_RPAREN, - STATE(3243), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(6940), 1, + anon_sym_COLON_COLON, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [91436] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95721] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, - anon_sym_RBRACK, - STATE(3244), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(690), 1, + sym_field_declaration_list, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [91453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95738] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RBRACK, - STATE(3245), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(989), 1, + sym_type_parameters, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [91470] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95755] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, - sym_identifier, - ACTIONS(6661), 1, - sym_mutable_specifier, - STATE(3246), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7002), 1, + anon_sym_in, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [91487] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95772] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, - sym_super, - STATE(3247), 2, + STATE(232), 1, + sym_closure_parameters, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [91504] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95789] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6663), 1, + ACTIONS(6761), 2, anon_sym_RBRACE, - STATE(3248), 2, + anon_sym_COMMA, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [91521] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95804] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, - STATE(3249), 2, + ACTIONS(7004), 2, + sym_float_literal, + sym_integer_literal, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [91538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95819] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6665), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3250), 2, + ACTIONS(5396), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [91553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95836] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(524), 1, - sym_field_declaration_list, - STATE(3251), 2, + STATE(1348), 1, + sym_enum_variant_list, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [91570] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95853] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3252), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(6741), 1, + anon_sym_for, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [91585] = 5, - ACTIONS(101), 1, + [95870] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7006), 1, + anon_sym_EQ, + STATE(3430), 2, + sym_line_comment, + sym_block_comment, + [95887] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(6832), 1, anon_sym_LPAREN, - STATE(2227), 1, - sym_parameters, - STATE(3253), 2, + ACTIONS(7008), 1, + anon_sym_COLON_COLON, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [91602] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95904] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6669), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3254), 2, + ACTIONS(7010), 1, + sym_identifier, + ACTIONS(7012), 1, + sym_super, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [91617] = 5, - ACTIONS(101), 1, + [95921] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7014), 1, + anon_sym_BANG, + ACTIONS(7016), 1, + anon_sym_COLON_COLON, + STATE(3433), 2, + sym_line_comment, + sym_block_comment, + [95938] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - STATE(744), 1, + STATE(620), 1, sym_enum_variant_list, - STATE(3255), 2, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [91634] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95955] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3256), 2, + ACTIONS(6800), 1, + anon_sym_COLON_COLON, + ACTIONS(7018), 1, + anon_sym_RPAREN, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [91649] = 5, - ACTIONS(101), 1, + [95972] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5396), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3436), 2, + sym_line_comment, + sym_block_comment, + [95989] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(739), 1, + STATE(658), 1, sym_declaration_list, - STATE(3257), 2, + STATE(3437), 2, + sym_line_comment, + sym_block_comment, + [96006] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5402), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [91666] = 5, - ACTIONS(101), 1, + [96023] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(7020), 1, + anon_sym_COLON_COLON, + STATE(3439), 2, + sym_line_comment, + sym_block_comment, + [96040] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(897), 1, - sym_type_parameters, - STATE(3258), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(7016), 1, + anon_sym_COLON_COLON, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [91683] = 5, - ACTIONS(101), 1, + [96057] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(244), 1, + sym_closure_parameters, + STATE(3441), 2, + sym_line_comment, + sym_block_comment, + [96074] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1083), 1, - sym_parameters, - STATE(3259), 2, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_enum_variant_list, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [91700] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96091] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 2, - sym_identifier, - sym_super, - STATE(3260), 2, + ACTIONS(7022), 1, + anon_sym_LBRACK, + ACTIONS(7024), 1, + anon_sym_BANG, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [91715] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96108] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 2, + ACTIONS(7026), 2, sym_identifier, - sym_super, - STATE(3261), 2, + sym_metavariable, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [91730] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96123] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_COLON_COLON, - STATE(3262), 2, - sym_line_comment, - sym_block_comment, - [91747] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 2, - sym_float_literal, - sym_integer_literal, - STATE(3263), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1402), 1, + sym_field_declaration_list, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [91762] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96140] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 1, - anon_sym_BANG, - ACTIONS(6679), 1, - anon_sym_COLON_COLON, - STATE(3264), 2, + ACTIONS(7028), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [91779] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96155] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6681), 1, - anon_sym_STAR_SLASH, - ACTIONS(6683), 1, - sym__block_comment_content, - STATE(3265), 2, + STATE(215), 1, + sym_closure_parameters, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [91796] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96172] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1068), 1, - sym_type_parameters, - STATE(3266), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1406), 1, + sym_declaration_list, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [91813] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96189] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(6685), 1, + ACTIONS(7030), 1, anon_sym_in, - STATE(3267), 2, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [91830] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96206] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5510), 1, - anon_sym_COLON, - STATE(3268), 2, + ACTIONS(7032), 1, + anon_sym_SEMI, + ACTIONS(7034), 1, + anon_sym_EQ, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [91847] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96223] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1233), 1, - sym_enum_variant_list, - STATE(3269), 2, + ACTIONS(7036), 2, + sym_identifier, + sym_metavariable, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [91864] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96238] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, + ACTIONS(5589), 1, sym_super, - ACTIONS(6687), 1, + ACTIONS(6878), 1, sym_identifier, - STATE(3270), 2, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [91881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96255] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - STATE(1111), 1, - sym_declaration_list, - STATE(3271), 2, + STATE(1412), 1, + sym_field_declaration_list, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [91898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96272] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_EQ, - STATE(3272), 2, - sym_line_comment, - sym_block_comment, - [91915] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6691), 1, - anon_sym_COLON_COLON, - STATE(3273), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(1015), 1, + sym_type_parameters, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [91932] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96289] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_declaration_list, - STATE(3274), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(1016), 1, + sym_type_parameters, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [91949] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96306] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(1120), 1, + STATE(659), 1, sym_declaration_list, - STATE(3275), 2, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [91966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96323] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(513), 1, - sym_declaration_list, - STATE(3276), 2, + ACTIONS(7038), 2, + sym_identifier, + sym_metavariable, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [91983] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96338] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6693), 1, - anon_sym_GT, - STATE(3277), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, + anon_sym_for, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [92000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96355] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, - anon_sym_COLON_COLON, - STATE(3278), 2, + ACTIONS(6840), 2, + sym_identifier, + sym_super, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [92017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96370] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(7040), 1, anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RPAREN, - STATE(3279), 2, + ACTIONS(7042), 1, + anon_sym_as, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [92034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96387] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6699), 1, - anon_sym_LBRACK, - ACTIONS(6701), 1, + ACTIONS(4662), 1, anon_sym_BANG, - STATE(3280), 2, + ACTIONS(7044), 1, + anon_sym_COLON_COLON, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [92051] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96404] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 2, + ACTIONS(7046), 2, sym_identifier, sym_metavariable, - STATE(3281), 2, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [92066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96419] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - STATE(506), 1, - sym_declaration_list, - STATE(3282), 2, + STATE(599), 1, + sym_field_declaration_list, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [92083] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96436] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_in, - STATE(3283), 2, - sym_line_comment, - sym_block_comment, - [92100] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RBRACK, - STATE(3284), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + ACTIONS(6755), 1, + anon_sym_for, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [92117] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96453] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6707), 2, + ACTIONS(7048), 2, sym_identifier, sym_metavariable, - STATE(3285), 2, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [92132] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96468] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_field_declaration_list, - STATE(3286), 2, - sym_line_comment, - sym_block_comment, - [92149] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4746), 1, anon_sym_COLON_COLON, - ACTIONS(4961), 1, + ACTIONS(6759), 1, anon_sym_for, - STATE(3287), 2, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [92166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96485] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6709), 1, - anon_sym_RBRACE, - STATE(3288), 2, - sym_line_comment, - sym_block_comment, - [92183] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6687), 1, - sym_identifier, - STATE(3289), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(4016), 1, + anon_sym_COLON, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [92200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96502] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_field_declaration_list, - STATE(3290), 2, + ACTIONS(6493), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [92217] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96517] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 2, + ACTIONS(7050), 1, sym_identifier, - sym_metavariable, - STATE(3291), 2, + ACTIONS(7052), 1, + sym_super, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [92232] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96534] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6444), 1, - anon_sym_for, - STATE(3292), 2, - sym_line_comment, - sym_block_comment, - [92249] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_declaration_list, - STATE(3293), 2, + ACTIONS(7054), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [92266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96549] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6446), 1, - anon_sym_for, - STATE(3294), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7056), 1, + anon_sym_in, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [92283] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96566] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(912), 1, - sym_type_parameters, - STATE(3295), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2404), 1, + sym_parameters, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [92300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96583] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_in, - STATE(3296), 2, + ACTIONS(5676), 1, + sym_super, + ACTIONS(6952), 1, + sym_identifier, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [92317] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96600] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4746), 1, anon_sym_COLON_COLON, - ACTIONS(6456), 1, + ACTIONS(6772), 1, anon_sym_for, - STATE(3297), 2, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [92334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96617] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, + ACTIONS(7058), 1, anon_sym_LBRACK, - ACTIONS(6717), 1, + ACTIONS(7060), 1, anon_sym_BANG, - STATE(3298), 2, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [92351] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96634] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(6719), 1, + ACTIONS(7062), 1, anon_sym_in, - STATE(3299), 2, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [92368] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96651] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + ACTIONS(7064), 1, anon_sym_in, - STATE(3300), 2, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [92385] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96668] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(6723), 1, + ACTIONS(7066), 1, anon_sym_in, - STATE(3301), 2, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [92402] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96685] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(6725), 1, + ACTIONS(7068), 1, anon_sym_in, - STATE(3302), 2, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [92419] = 5, - ACTIONS(101), 1, + [96702] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5430), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3480), 2, + sym_line_comment, + sym_block_comment, + [96719] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(1941), 1, + STATE(2096), 1, sym_parameters, - STATE(3303), 2, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [92436] = 5, - ACTIONS(101), 1, + [96736] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7070), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3482), 2, + sym_line_comment, + sym_block_comment, + [96751] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, + ACTIONS(5408), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3483), 2, + sym_line_comment, + sym_block_comment, + [96768] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6778), 1, sym_identifier, - ACTIONS(6469), 1, + ACTIONS(6782), 1, sym_mutable_specifier, - STATE(3304), 2, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [92453] = 5, - ACTIONS(101), 1, + [96785] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5310), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3485), 2, + sym_line_comment, + sym_block_comment, + [96802] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - STATE(1267), 1, + STATE(603), 1, sym_field_declaration_list, - STATE(3305), 2, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [92470] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96819] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6471), 1, - anon_sym_for, - STATE(3306), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2099), 1, + sym_parameters, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [92487] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96836] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(2996), 1, - sym_lifetime, - STATE(3307), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + STATE(1665), 1, + sym_parameters, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [92504] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96853] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - sym_mutable_specifier, - STATE(3308), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(505), 1, + sym_declaration_list, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [92521] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96870] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - anon_sym_COLON_COLON, - ACTIONS(6731), 1, - anon_sym_RPAREN, - STATE(3309), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7072), 1, + anon_sym_EQ, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [92538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96887] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 2, + ACTIONS(7074), 1, sym_identifier, - sym_super, - STATE(3310), 2, + ACTIONS(7076), 1, + sym_mutable_specifier, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [92553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96904] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6625), 1, - sym_identifier, - STATE(3311), 2, + ACTIONS(7078), 1, + anon_sym_SEMI, + ACTIONS(7080), 1, + anon_sym_as, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [92570] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96921] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - STATE(3312), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2102), 1, + sym_parameters, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [92584] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96938] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(953), 1, - anon_sym_EQ_GT, - STATE(3313), 2, + ACTIONS(5430), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [92598] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96955] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, - sym_identifier, - STATE(3314), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_declaration_list, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [92612] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96972] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, + ACTIONS(7082), 2, sym_identifier, - STATE(3315), 2, + sym_metavariable, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [92626] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96987] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 1, + ACTIONS(7084), 1, sym_identifier, - STATE(3316), 2, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [92640] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97001] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 1, - sym_identifier, - STATE(3317), 2, + ACTIONS(7086), 1, + anon_sym_RBRACE, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [92654] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97015] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6741), 1, - anon_sym_COLON, - STATE(3318), 2, + ACTIONS(7088), 1, + sym_identifier, + STATE(3499), 2, sym_line_comment, sym_block_comment, - [92668] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97029] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6743), 1, - sym__line_doc_content, - STATE(3319), 2, + ACTIONS(7090), 1, + sym_identifier, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [92682] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97043] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, + ACTIONS(7092), 1, anon_sym_SEMI, - STATE(3320), 2, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [92696] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97057] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_RBRACK, - STATE(3321), 2, + ACTIONS(7094), 1, + anon_sym_SEMI, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [92710] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97071] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, - STATE(3322), 2, + ACTIONS(7096), 1, + sym__line_doc_content, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [92724] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97085] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6749), 1, - anon_sym_LPAREN, - STATE(3323), 2, + ACTIONS(6648), 1, + anon_sym_RBRACE, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [92738] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97099] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - STATE(3324), 2, + ACTIONS(7098), 1, + sym_identifier, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [92752] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97113] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(961), 1, - anon_sym_EQ_GT, - STATE(3325), 2, + ACTIONS(7100), 1, + sym_identifier, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [92766] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97127] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 1, - anon_sym_RBRACK, - STATE(3326), 2, + ACTIONS(7102), 1, + sym_identifier, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [92780] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97141] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, + ACTIONS(7104), 1, anon_sym_SEMI, - STATE(3327), 2, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [92794] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97155] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, - anon_sym_SEMI, - STATE(3328), 2, + ACTIONS(7106), 1, + anon_sym_fn, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [92808] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97169] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 1, - anon_sym_SEMI, - STATE(3329), 2, + ACTIONS(7108), 1, + sym_identifier, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [92822] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97183] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6759), 1, - anon_sym_fn, - STATE(3330), 2, + ACTIONS(7110), 1, + sym__raw_string_literal_end, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [92836] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97197] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, - anon_sym_COLON, - STATE(3331), 2, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [92850] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97211] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, + ACTIONS(7112), 1, anon_sym_COLON_COLON, - STATE(3332), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [92864] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97225] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym__line_doc_content, - STATE(3333), 2, + ACTIONS(7114), 1, + anon_sym_fn, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [92878] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97239] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, - anon_sym_RBRACK, - STATE(3334), 2, + ACTIONS(7116), 1, + sym_identifier, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [92892] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97253] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6765), 1, + ACTIONS(7118), 1, sym_identifier, - STATE(3335), 2, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [92906] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97267] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6767), 1, - anon_sym_RBRACK, - STATE(3336), 2, + ACTIONS(5950), 1, + anon_sym_LBRACE, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [92920] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97281] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_EQ_GT, - STATE(3337), 2, + ACTIONS(7120), 1, + anon_sym_SEMI, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [92934] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97295] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6771), 1, - anon_sym_fn, - STATE(3338), 2, + ACTIONS(7122), 1, + anon_sym_SEMI, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [92948] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97309] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_RPAREN, - STATE(3339), 2, + ACTIONS(7124), 1, + anon_sym_SEMI, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [92962] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97323] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6773), 1, - anon_sym_COLON_COLON, - STATE(3340), 2, + ACTIONS(7126), 1, + anon_sym_SEMI, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [92976] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97337] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, - sym__line_doc_content, - STATE(3341), 2, + ACTIONS(3178), 1, + anon_sym_PLUS, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [92990] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97351] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6777), 1, + ACTIONS(7128), 1, sym_identifier, - STATE(3342), 2, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [93004] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97365] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RBRACE, - STATE(3343), 2, + ACTIONS(7130), 1, + anon_sym_STAR_SLASH, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [93018] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97379] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 1, - sym_self, - STATE(3344), 2, + ACTIONS(6168), 1, + anon_sym_RBRACE, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [93032] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97393] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, + ACTIONS(7132), 1, anon_sym_EQ_GT, - STATE(3345), 2, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [93046] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97407] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, - anon_sym_COLON_COLON, - STATE(3346), 2, + ACTIONS(7134), 1, + sym_identifier, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [93060] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97421] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, - STATE(3347), 2, + ACTIONS(7136), 1, + anon_sym_RBRACE, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [93074] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97435] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 1, - anon_sym_SEMI, - STATE(3348), 2, + ACTIONS(7138), 1, + anon_sym_COLON, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [93088] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97449] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 1, - sym_identifier, - STATE(3349), 2, + ACTIONS(7140), 1, + anon_sym_SEMI, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [93102] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97463] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - anon_sym_COLON_COLON, - STATE(3350), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [93116] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97477] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, + ACTIONS(7142), 1, sym_identifier, - STATE(3351), 2, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [93130] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97491] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, + ACTIONS(7144), 1, sym_identifier, - STATE(3352), 2, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [93144] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97505] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, - sym_identifier, - STATE(3353), 2, + ACTIONS(7146), 1, + anon_sym_RBRACK, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [93158] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97519] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, - sym_identifier, - STATE(3354), 2, + ACTIONS(6964), 1, + anon_sym_SEMI, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [93172] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97533] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, - sym_identifier, - STATE(3355), 2, + ACTIONS(7148), 1, + anon_sym_RBRACK, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [93186] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97547] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, + ACTIONS(7150), 1, sym_identifier, - STATE(3356), 2, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [93200] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97561] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, + ACTIONS(7152), 1, anon_sym_SEMI, - STATE(3357), 2, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [93214] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97575] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - anon_sym_RBRACE, - STATE(3358), 2, + ACTIONS(7154), 1, + anon_sym_SEMI, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [93228] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97589] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, + ACTIONS(7156), 1, anon_sym_SEMI, - STATE(3359), 2, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [93242] = 4, - ACTIONS(101), 1, + [97603] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6210), 1, + anon_sym_RBRACE, + STATE(3541), 2, + sym_line_comment, + sym_block_comment, + [97617] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, + ACTIONS(7158), 1, sym_identifier, - STATE(3360), 2, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [93256] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97631] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - STATE(3361), 2, + ACTIONS(7160), 1, + anon_sym_LPAREN, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [93270] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97645] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, + ACTIONS(7162), 1, anon_sym_SEMI, - STATE(3362), 2, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [93284] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97659] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, - anon_sym_RBRACE, - STATE(3363), 2, + ACTIONS(4332), 1, + anon_sym_RPAREN, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [93298] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97673] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_RBRACE, - STATE(3364), 2, + ACTIONS(7164), 1, + anon_sym_RPAREN, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [93312] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97687] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - anon_sym_SEMI, - STATE(3365), 2, + ACTIONS(7166), 1, + anon_sym_RBRACK, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [93326] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97701] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, + ACTIONS(7168), 1, anon_sym_COLON, - STATE(3366), 2, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [93340] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97715] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6821), 1, - sym_identifier, - STATE(3367), 2, - sym_line_comment, - sym_block_comment, - [93354] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3065), 1, - anon_sym_PLUS, - STATE(3368), 2, + ACTIONS(7170), 1, + anon_sym_SEMI, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [93368] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97729] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6823), 1, - anon_sym_COLON_COLON, - STATE(3369), 2, - sym_line_comment, - sym_block_comment, - [93382] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, - anon_sym_fn, - STATE(3370), 2, + ACTIONS(887), 1, + anon_sym_RBRACK, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [93396] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97743] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, + ACTIONS(7172), 1, anon_sym_SEMI, - STATE(3371), 2, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [93410] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97757] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LBRACE, - STATE(3372), 2, - sym_line_comment, - sym_block_comment, - [93424] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, + ACTIONS(7174), 1, anon_sym_SEMI, - STATE(3373), 2, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [93438] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97771] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, + ACTIONS(4028), 1, anon_sym_COLON_COLON, - STATE(3374), 2, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [93452] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97785] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - anon_sym_SEMI, - STATE(3375), 2, + ACTIONS(7176), 1, + sym_identifier, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [93466] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97799] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - sym_raw_string_literal_content, - STATE(3376), 2, + ACTIONS(7178), 1, + sym_identifier, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [93480] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97813] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, + ACTIONS(7180), 1, anon_sym_SEMI, - STATE(3377), 2, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [93494] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97827] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - anon_sym_RPAREN, - STATE(3378), 2, + ACTIONS(7182), 1, + anon_sym_RBRACK, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [93508] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97841] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_RPAREN, - STATE(3379), 2, + ACTIONS(7184), 1, + anon_sym_SEMI, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [93522] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97855] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - sym__raw_string_literal_end, - STATE(3380), 2, + ACTIONS(4724), 1, + anon_sym_fn, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [93536] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97869] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_SEMI, - STATE(3381), 2, + ACTIONS(7186), 1, + sym_identifier, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [93550] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97883] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 1, + ACTIONS(6992), 1, anon_sym_SEMI, - STATE(3382), 2, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [93564] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97897] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, - anon_sym_SEMI, - STATE(3383), 2, + ACTIONS(7188), 1, + anon_sym_COLON, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [93578] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97911] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, - anon_sym_SEMI, - STATE(3384), 2, + ACTIONS(6291), 1, + anon_sym_RBRACE, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [93592] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97925] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, + ACTIONS(5061), 1, anon_sym_COLON_COLON, - STATE(3385), 2, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [93606] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97939] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - anon_sym_COLON, - STATE(3386), 2, - sym_line_comment, - sym_block_comment, - [93620] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, + ACTIONS(7190), 1, sym_identifier, - STATE(3387), 2, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [93634] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97953] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, + ACTIONS(7192), 1, anon_sym_SEMI, - STATE(3388), 2, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [93648] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97967] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, - STATE(3389), 2, + ACTIONS(7194), 1, + sym__line_doc_content, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [93662] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97981] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, - sym_identifier, - STATE(3390), 2, + ACTIONS(6196), 1, + anon_sym_RBRACE, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [93676] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97995] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, - STATE(3391), 2, + ACTIONS(7196), 1, + anon_sym_COLON, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [93690] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98009] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - anon_sym_RBRACK, - STATE(3392), 2, + ACTIONS(7198), 1, + sym_identifier, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [93704] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98023] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(7200), 1, anon_sym_SEMI, - STATE(3393), 2, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [93718] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98037] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, + ACTIONS(7202), 1, anon_sym_SEMI, - STATE(3394), 2, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [93732] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98051] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - sym_identifier, - STATE(3395), 2, + ACTIONS(6164), 1, + anon_sym_GT, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [93746] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98065] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, - anon_sym_STAR_SLASH, - STATE(3396), 2, + ACTIONS(7204), 1, + anon_sym_LBRACK, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [93760] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98079] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - STATE(3397), 2, + ACTIONS(7206), 1, + anon_sym_SEMI, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [93774] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98093] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, - STATE(3398), 2, + ACTIONS(7208), 1, + sym__raw_string_literal_end, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [93788] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98107] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, - sym_identifier, - STATE(3399), 2, + ACTIONS(7210), 1, + anon_sym_EQ, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [93802] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98121] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, + ACTIONS(7212), 1, anon_sym_SEMI, - STATE(3400), 2, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [93816] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98135] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - anon_sym_RBRACK, - STATE(3401), 2, + ACTIONS(5696), 1, + anon_sym_RPAREN, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [93830] = 4, - ACTIONS(3), 1, + [98149] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - aux_sym_line_comment_token2, - STATE(3402), 2, + ACTIONS(7214), 1, + anon_sym_SEMI, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [93844] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98163] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(3403), 2, + ACTIONS(7216), 1, + anon_sym_LPAREN, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [93858] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98177] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, + ACTIONS(7218), 1, anon_sym_SEMI, - STATE(3404), 2, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [93872] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98191] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_RBRACE, - STATE(3405), 2, + ACTIONS(7220), 1, + anon_sym_fn, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [93886] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98205] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, - STATE(3406), 2, + ACTIONS(7222), 1, + sym_identifier, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [93900] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98219] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_fn, - STATE(3407), 2, + ACTIONS(7224), 1, + sym_identifier, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [93914] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98233] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, + ACTIONS(941), 1, anon_sym_RBRACK, - STATE(3408), 2, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [93928] = 4, - ACTIONS(101), 1, + [98247] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6417), 1, + anon_sym_RBRACE, + STATE(3587), 2, + sym_line_comment, + sym_block_comment, + [98261] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, + ACTIONS(7226), 1, sym_identifier, - STATE(3409), 2, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [93942] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98275] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, - anon_sym_EQ_GT, - STATE(3410), 2, + ACTIONS(5870), 1, + anon_sym_RPAREN, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [93956] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98289] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_RBRACK, - STATE(3411), 2, + ACTIONS(5938), 1, + anon_sym_RPAREN, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [93970] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98303] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_COLON, - STATE(3412), 2, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [93984] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98317] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, + ACTIONS(7228), 1, anon_sym_SEMI, - STATE(3413), 2, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [93998] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98331] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, + ACTIONS(7230), 1, anon_sym_SEMI, - STATE(3414), 2, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [94012] = 4, - ACTIONS(101), 1, + [98345] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5890), 1, + anon_sym_RBRACK, + STATE(3594), 2, + sym_line_comment, + sym_block_comment, + [98359] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, + ACTIONS(7232), 1, anon_sym_RBRACK, - STATE(3415), 2, + STATE(3595), 2, + sym_line_comment, + sym_block_comment, + [98373] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7234), 1, + anon_sym_SEMI, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [94026] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98387] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5594), 1, + ACTIONS(6114), 1, anon_sym_RBRACK, - STATE(3416), 2, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [94040] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98401] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5508), 1, - anon_sym_RPAREN, - STATE(3417), 2, - sym_line_comment, - sym_block_comment, - [94054] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(7236), 1, anon_sym_SEMI, - STATE(3418), 2, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [94068] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98415] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, - anon_sym_STAR_SLASH, - STATE(3419), 2, + ACTIONS(7238), 1, + anon_sym_SEMI, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [94082] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98429] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, + ACTIONS(7240), 1, sym_identifier, - STATE(3420), 2, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [94096] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98443] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - STATE(3421), 2, + ACTIONS(7242), 1, + sym_identifier, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [94110] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98457] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, - anon_sym_RBRACE, - STATE(3422), 2, + ACTIONS(7244), 1, + anon_sym_RBRACK, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [94124] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98471] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - anon_sym_EQ_GT, - STATE(3423), 2, + ACTIONS(7246), 1, + anon_sym_LBRACK, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [94138] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98485] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, - anon_sym_SEMI, - STATE(3424), 2, + ACTIONS(7248), 1, + sym__raw_string_literal_end, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [94152] = 4, - ACTIONS(101), 1, + [98499] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - anon_sym_SEMI, - STATE(3425), 2, + ACTIONS(7250), 1, + aux_sym_line_comment_token2, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [94166] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98513] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - anon_sym_RBRACE, - STATE(3426), 2, + ACTIONS(7252), 1, + sym_identifier, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [94180] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98527] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, - anon_sym_fn, - STATE(3427), 2, + ACTIONS(7254), 1, + ts_builtin_sym_end, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [94194] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98541] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, - anon_sym_RBRACE, - STATE(3428), 2, + ACTIONS(7256), 1, + anon_sym_SEMI, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [94208] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98555] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - sym__raw_string_literal_end, - STATE(3429), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [94222] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98569] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, + ACTIONS(7258), 1, anon_sym_COLON_COLON, - STATE(3430), 2, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [94236] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98583] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LBRACK, - STATE(3431), 2, + ACTIONS(5840), 1, + anon_sym_LBRACE, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [94250] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98597] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_SEMI, - STATE(3432), 2, + ACTIONS(7260), 1, + anon_sym_RBRACE, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [94264] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98611] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, + ACTIONS(7262), 1, anon_sym_SEMI, - STATE(3433), 2, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [94278] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98625] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - sym_identifier, - STATE(3434), 2, + ACTIONS(7264), 1, + anon_sym_SEMI, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [94292] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98639] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(7266), 1, anon_sym_COLON, - STATE(3435), 2, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [94306] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98653] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, - sym_identifier, - STATE(3436), 2, + ACTIONS(7268), 1, + anon_sym_LT, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [94320] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98667] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5953), 1, - anon_sym_RBRACE, - STATE(3437), 2, + ACTIONS(6104), 1, + anon_sym_RPAREN, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [94334] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98681] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_LBRACE, - STATE(3438), 2, + ACTIONS(7270), 1, + anon_sym_SEMI, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [94348] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98695] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - anon_sym_LT, - STATE(3439), 2, + ACTIONS(7272), 1, + anon_sym_SEMI, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [94362] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98709] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4909), 1, + ACTIONS(6721), 1, anon_sym_COLON_COLON, - STATE(3440), 2, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [94376] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98723] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - anon_sym_SEMI, - STATE(3441), 2, + ACTIONS(7274), 1, + anon_sym_COLON, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [94390] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98737] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, - STATE(3442), 2, + ACTIONS(7276), 1, + sym_identifier, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [94404] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98751] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, + ACTIONS(7278), 1, anon_sym_SEMI, - STATE(3443), 2, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [94418] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98765] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, - sym_identifier, - STATE(3444), 2, + ACTIONS(7280), 1, + anon_sym_SEMI, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [94432] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98779] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, - sym_identifier, - STATE(3445), 2, + ACTIONS(7282), 1, + sym_raw_string_literal_content, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [94446] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98793] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - STATE(3446), 2, + ACTIONS(7284), 1, + anon_sym_RBRACK, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [94460] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98807] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, + ACTIONS(5821), 1, anon_sym_RPAREN, - STATE(3447), 2, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [94474] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98821] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6939), 1, - sym_identifier, - STATE(3448), 2, - sym_line_comment, - sym_block_comment, - [94488] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - sym_identifier, - STATE(3449), 2, + ACTIONS(4340), 1, + anon_sym_COLON_COLON, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [94502] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98835] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - STATE(3450), 2, - sym_line_comment, - sym_block_comment, - [94516] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - sym__raw_string_literal_end, - STATE(3451), 2, + ACTIONS(6080), 1, + anon_sym_COLON_COLON, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [94530] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98849] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4475), 1, - anon_sym_fn, - STATE(3452), 2, + ACTIONS(5636), 1, + anon_sym_RPAREN, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [94544] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98863] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - sym_identifier, - STATE(3453), 2, + ACTIONS(6172), 1, + anon_sym_RBRACE, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [94558] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98877] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - STATE(3454), 2, + ACTIONS(7286), 1, + anon_sym_LT2, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [94572] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98891] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, + ACTIONS(7288), 1, anon_sym_COLON_COLON, - STATE(3455), 2, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [94586] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98905] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, + ACTIONS(7290), 1, anon_sym_SEMI, - STATE(3456), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [94600] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98919] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - anon_sym_LBRACK, - STATE(3457), 2, - sym_line_comment, - sym_block_comment, - [94614] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, + ACTIONS(7292), 1, sym_identifier, - STATE(3458), 2, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [94628] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98933] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, + ACTIONS(7294), 1, sym_identifier, - STATE(3459), 2, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [94642] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98947] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, + ACTIONS(7296), 1, sym_identifier, - STATE(3460), 2, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [94656] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98961] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, - sym_raw_string_literal_content, - STATE(3461), 2, + ACTIONS(7298), 1, + anon_sym_COLON, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [94670] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98975] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - anon_sym_SEMI, - STATE(3462), 2, + ACTIONS(7300), 1, + anon_sym_LT2, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [94684] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98989] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, - anon_sym_SEMI, - STATE(3463), 2, + ACTIONS(5934), 1, + anon_sym_RPAREN, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [94698] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99003] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - STATE(3464), 2, + ACTIONS(7302), 1, + anon_sym_fn, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [94712] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99017] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, - STATE(3465), 2, + ACTIONS(7304), 1, + anon_sym_EQ_GT, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [94726] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99031] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, - anon_sym_SEMI, - STATE(3466), 2, + ACTIONS(7306), 1, + anon_sym_COLON_COLON, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [94740] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99045] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, - anon_sym_SEMI, - STATE(3467), 2, + ACTIONS(7308), 1, + sym_identifier, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [94754] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99059] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, + ACTIONS(7310), 1, anon_sym_RBRACK, - STATE(3468), 2, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [94768] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99073] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, + ACTIONS(7312), 1, anon_sym_COLON_COLON, - STATE(3469), 2, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [94782] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99087] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, - sym_identifier, - STATE(3470), 2, + ACTIONS(7314), 1, + anon_sym_EQ_GT, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [94796] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99101] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, + ACTIONS(5402), 1, anon_sym_SEMI, - STATE(3471), 2, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [94810] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99115] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - anon_sym_EQ, - STATE(3472), 2, - sym_line_comment, - sym_block_comment, - [94824] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - anon_sym_fn, - STATE(3473), 2, + ACTIONS(6474), 1, + anon_sym_GT, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [94838] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99129] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_LPAREN, - STATE(3474), 2, + ACTIONS(5112), 1, + anon_sym_COLON_COLON, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [94852] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99143] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, + ACTIONS(7316), 1, anon_sym_COLON_COLON, - STATE(3475), 2, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [94866] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99157] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_SEMI, - STATE(3476), 2, + ACTIONS(7318), 1, + anon_sym_fn, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [94880] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99171] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, - anon_sym_RBRACE, - STATE(3477), 2, + ACTIONS(7320), 1, + anon_sym_COLON_COLON, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [94894] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99185] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, - anon_sym_COLON_COLON, - STATE(3478), 2, + ACTIONS(7322), 1, + anon_sym_LBRACE, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [94908] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99199] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, - anon_sym_SEMI, - STATE(3479), 2, + ACTIONS(7324), 1, + anon_sym_RBRACE, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [94922] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99213] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, + ACTIONS(7326), 1, anon_sym_COLON, - STATE(3480), 2, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [94936] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99227] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, - STATE(3481), 2, + ACTIONS(7328), 1, + anon_sym_COLON, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [94950] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99241] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(7330), 1, anon_sym_SEMI, - STATE(3482), 2, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [94964] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99255] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6989), 1, - anon_sym_COLON_COLON, - STATE(3483), 2, + ACTIONS(6184), 1, + anon_sym_GT, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [94978] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99269] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, - anon_sym_fn, - STATE(3484), 2, + ACTIONS(7332), 1, + anon_sym_RBRACK, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [94992] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99283] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - anon_sym_COLON, - STATE(3485), 2, + ACTIONS(7334), 1, + anon_sym_EQ_GT, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [95006] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99297] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, - anon_sym_LBRACE, - STATE(3486), 2, + ACTIONS(6321), 1, + anon_sym_RBRACE, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [95020] = 4, - ACTIONS(101), 1, + [99311] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7336), 1, + sym_raw_string_literal_content, + STATE(3663), 2, + sym_line_comment, + sym_block_comment, + [99325] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, + ACTIONS(7338), 1, anon_sym_SEMI, - STATE(3487), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [95034] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99339] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, + ACTIONS(7340), 1, anon_sym_SEMI, - STATE(3488), 2, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [95048] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99353] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym__line_doc_content, - STATE(3489), 2, + ACTIONS(6806), 1, + anon_sym_COLON_COLON, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [95062] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99367] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_RBRACK, - STATE(3490), 2, + ACTIONS(7342), 1, + anon_sym_COLON_COLON, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [95076] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99381] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7005), 1, - anon_sym_SEMI, - STATE(3491), 2, + ACTIONS(7344), 1, + anon_sym_RBRACE, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [95090] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99395] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, + ACTIONS(7346), 1, anon_sym_SEMI, - STATE(3492), 2, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [95104] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99409] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7007), 1, - sym_identifier, - STATE(3493), 2, + ACTIONS(7348), 1, + anon_sym_COLON_COLON, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [95118] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99423] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7009), 1, - sym_raw_string_literal_content, - STATE(3494), 2, + ACTIONS(7350), 1, + sym__line_doc_content, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [95132] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99437] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - STATE(3495), 2, + ACTIONS(7352), 1, + anon_sym_RBRACE, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [95146] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99451] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - anon_sym_RPAREN, - STATE(3496), 2, + ACTIONS(7354), 1, + anon_sym_COLON_COLON, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [95160] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99465] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, - sym_identifier, - STATE(3497), 2, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [95174] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99479] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, - anon_sym_COLON_COLON, - STATE(3498), 2, + ACTIONS(7356), 1, + anon_sym_fn, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [95188] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99493] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7017), 1, - anon_sym_SEMI, - STATE(3499), 2, + ACTIONS(7358), 1, + sym_identifier, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [95202] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99507] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7019), 1, - anon_sym_SEMI, - STATE(3500), 2, + ACTIONS(7360), 1, + sym__line_doc_content, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [95216] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99521] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, + ACTIONS(7362), 1, anon_sym_COLON_COLON, - STATE(3501), 2, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [95230] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99535] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - sym__line_doc_content, - STATE(3502), 2, + ACTIONS(7364), 1, + anon_sym_LBRACE, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [95244] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99549] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, - anon_sym_SEMI, - STATE(3503), 2, + ACTIONS(7366), 1, + anon_sym_RBRACE, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [95258] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99563] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, - anon_sym_COLON_COLON, - STATE(3504), 2, + ACTIONS(7368), 1, + sym_identifier, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [95272] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99577] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, - anon_sym_SEMI, - STATE(3505), 2, + ACTIONS(7370), 1, + anon_sym_RPAREN, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [95286] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99591] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - anon_sym_SEMI, - STATE(3506), 2, + ACTIONS(7372), 1, + anon_sym_RPAREN, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [95300] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99605] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, - anon_sym_COLON_COLON, - STATE(3507), 2, + ACTIONS(7374), 1, + sym_raw_string_literal_content, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [95314] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99619] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, - anon_sym_LBRACE, - STATE(3508), 2, + ACTIONS(3676), 1, + anon_sym_COLON_COLON, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [95328] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99633] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, - sym_identifier, - STATE(3509), 2, + ACTIONS(7376), 1, + anon_sym_COLON_COLON, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [95342] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99647] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_COLON, - STATE(3510), 2, + ACTIONS(7378), 1, + sym_self, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [95356] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99661] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3101), 1, - anon_sym_PLUS, - STATE(3511), 2, + ACTIONS(7380), 1, + anon_sym_RBRACK, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [95370] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99675] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, - ts_builtin_sym_end, - STATE(3512), 2, + ACTIONS(7382), 1, + anon_sym_LBRACE, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [95384] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99689] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, + ACTIONS(7384), 1, sym_raw_string_literal_content, - STATE(3513), 2, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [95398] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99703] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, + ACTIONS(5350), 1, anon_sym_COLON_COLON, - STATE(3514), 2, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [95412] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99717] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_GT, - STATE(3515), 2, - sym_line_comment, - sym_block_comment, - [95426] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, + ACTIONS(7386), 1, anon_sym_COLON_COLON, - STATE(3516), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [95440] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99731] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, - anon_sym_SEMI, - STATE(3517), 2, + ACTIONS(7388), 1, + sym_raw_string_literal_content, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [95454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99745] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, + ACTIONS(6072), 1, anon_sym_LBRACE, - STATE(3518), 2, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [95468] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99759] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(7051), 1, - sym_raw_string_literal_content, - STATE(3519), 2, - sym_line_comment, - sym_block_comment, - [95482] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5211), 1, + ACTIONS(6118), 1, anon_sym_COLON_COLON, - STATE(3520), 2, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [95496] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99773] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, + ACTIONS(7390), 1, anon_sym_COLON_COLON, - STATE(3521), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [95510] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99787] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, + ACTIONS(6090), 1, anon_sym_LBRACE, - STATE(3522), 2, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [95524] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99801] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, + ACTIONS(7392), 1, anon_sym_COLON_COLON, - STATE(3523), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [95538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99815] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, + ACTIONS(5352), 1, anon_sym_COLON_COLON, - STATE(3524), 2, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [95552] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99829] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_LBRACE, - STATE(3525), 2, - sym_line_comment, - sym_block_comment, - [95566] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, + ACTIONS(5394), 1, anon_sym_COLON_COLON, - STATE(3526), 2, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [95580] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99843] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5207), 1, + ACTIONS(4352), 1, anon_sym_COLON_COLON, - STATE(3527), 2, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [95594] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99857] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(7394), 1, anon_sym_COLON_COLON, - STATE(3528), 2, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [95608] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99871] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - STATE(3529), 2, + ACTIONS(1001), 1, + anon_sym_EQ_GT, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [95622] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99885] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7059), 1, - anon_sym_COLON_COLON, - STATE(3530), 2, + ACTIONS(6269), 1, + anon_sym_GT, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [95636] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99899] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, + ACTIONS(7396), 1, sym_identifier, - STATE(3531), 2, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [95650] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99913] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(3532), 2, + ACTIONS(7398), 1, + anon_sym_COLON, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [95664] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99927] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - STATE(3533), 2, + ACTIONS(7400), 1, + anon_sym_LBRACK, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [95678] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99941] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, - sym_identifier, - STATE(3534), 2, + ACTIONS(7402), 1, + anon_sym_EQ_GT, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [95692] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99955] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, - anon_sym_COLON, - STATE(3535), 2, + ACTIONS(6934), 1, + anon_sym_SEMI, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [95706] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99969] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, - anon_sym_LBRACK, - STATE(3536), 2, + ACTIONS(7404), 1, + anon_sym_SEMI, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [95720] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99983] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - sym_identifier, - STATE(3537), 2, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [95734] = 4, - ACTIONS(101), 1, + [99997] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5428), 1, + anon_sym_SEMI, + STATE(3712), 2, + sym_line_comment, + sym_block_comment, + [100011] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, + ACTIONS(7406), 1, anon_sym_LBRACK, - STATE(3538), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [95748] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100025] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, + ACTIONS(7408), 1, anon_sym_COLON, - STATE(3539), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [95762] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100039] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, + ACTIONS(7410), 1, anon_sym_COLON, - STATE(3540), 2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [95776] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100053] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4115), 1, - anon_sym_RPAREN, - STATE(3541), 2, + ACTIONS(7412), 1, + sym_identifier, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [95790] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100067] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - anon_sym_SEMI, - STATE(3542), 2, + ACTIONS(1011), 1, + anon_sym_RBRACK, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [95804] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100081] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RPAREN, - STATE(3543), 2, + ACTIONS(7414), 1, + anon_sym_COLON, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [95818] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100095] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7079), 1, - anon_sym_COLON, - STATE(3544), 2, + ACTIONS(7416), 1, + sym_identifier, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [95832] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100109] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7081), 1, + ACTIONS(7418), 1, anon_sym_COLON, - STATE(3545), 2, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [95846] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100123] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - anon_sym_RBRACE, - STATE(3546), 2, + ACTIONS(7420), 1, + sym_identifier, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [95860] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100137] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7085), 1, + ACTIONS(4156), 1, sym_identifier, - STATE(3547), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [95874] = 4, - ACTIONS(101), 1, + [100151] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7422), 1, + sym_identifier, + STATE(3723), 2, + sym_line_comment, + sym_block_comment, + [100165] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, + ACTIONS(7424), 1, anon_sym_SEMI, - STATE(3548), 2, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [95888] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100179] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - sym_identifier, - STATE(3549), 2, + ACTIONS(7426), 1, + anon_sym_SEMI, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [95902] = 4, - ACTIONS(101), 1, + [100193] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7428), 1, + anon_sym_SEMI, + STATE(3726), 2, + sym_line_comment, + sym_block_comment, + [100207] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7091), 1, + ACTIONS(7430), 1, sym__raw_string_literal_end, - STATE(3550), 2, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [95916] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100221] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, + ACTIONS(7432), 1, sym_identifier, - STATE(3551), 2, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [95930] = 4, - ACTIONS(101), 1, + [100235] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4270), 1, + anon_sym_COLON_COLON, + STATE(3729), 2, + sym_line_comment, + sym_block_comment, + [100249] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, + ACTIONS(7434), 1, anon_sym_RPAREN, - STATE(3552), 2, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [95944] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100263] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, + ACTIONS(7436), 1, sym__raw_string_literal_end, - STATE(3553), 2, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [95958] = 4, - ACTIONS(101), 1, + [100277] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4779), 1, + anon_sym_COLON_COLON, + STATE(3732), 2, + sym_line_comment, + sym_block_comment, + [100291] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, - anon_sym_COLON, - STATE(3554), 2, + ACTIONS(6560), 1, + anon_sym_RBRACE, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [95972] = 4, - ACTIONS(101), 1, + [100305] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6747), 1, + anon_sym_RBRACE, + STATE(3734), 2, + sym_line_comment, + sym_block_comment, + [100319] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, + ACTIONS(7438), 1, anon_sym_COLON, - STATE(3555), 2, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [95986] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100333] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_SEMI, - STATE(3556), 2, + ACTIONS(7440), 1, + anon_sym_COLON_COLON, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [96000] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100347] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7105), 1, - sym_identifier, - STATE(3557), 2, + ACTIONS(7442), 1, + sym_raw_string_literal_content, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [96014] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100361] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, - sym_identifier, - STATE(3558), 2, + ACTIONS(7444), 1, + anon_sym_SEMI, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [96028] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100375] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, + ACTIONS(7446), 1, anon_sym_COLON, - STATE(3559), 2, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [96042] = 4, - ACTIONS(101), 1, + [100389] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7448), 1, + anon_sym_COLON, + STATE(3740), 2, + sym_line_comment, + sym_block_comment, + [100403] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, + ACTIONS(7450), 1, sym_identifier, - STATE(3560), 2, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [96056] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100417] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - sym__raw_string_literal_end, - STATE(3561), 2, + ACTIONS(7452), 1, + anon_sym_RBRACK, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [96070] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100431] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - sym_identifier, - STATE(3562), 2, + ACTIONS(7454), 1, + anon_sym_SEMI, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [96084] = 4, - ACTIONS(101), 1, + [100445] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7456), 1, + anon_sym_SEMI, + STATE(3744), 2, + sym_line_comment, + sym_block_comment, + [100459] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, + ACTIONS(4300), 1, anon_sym_RPAREN, - STATE(3563), 2, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [96098] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100473] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, - sym_identifier, - STATE(3564), 2, + ACTIONS(7458), 1, + anon_sym_EQ_GT, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [96112] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100487] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_COLON, - STATE(3565), 2, + ACTIONS(6489), 1, + anon_sym_RBRACE, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [96126] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100501] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - sym_identifier, - STATE(3566), 2, + ACTIONS(7460), 1, + anon_sym_COLON, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [96140] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100515] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, + ACTIONS(7462), 1, anon_sym_SEMI, - STATE(3567), 2, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [96154] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100529] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_RBRACE, - STATE(3568), 2, + ACTIONS(7464), 1, + anon_sym_COLON_COLON, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [96168] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100543] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - sym_identifier, - STATE(3569), 2, + ACTIONS(7466), 1, + anon_sym_SEMI, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [96182] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100557] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, - anon_sym_SEMI, - STATE(3570), 2, + ACTIONS(4769), 1, + anon_sym_COLON_COLON, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [96196] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100571] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, + ACTIONS(7468), 1, anon_sym_SEMI, - STATE(3571), 2, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [96210] = 4, - ACTIONS(101), 1, + [100585] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7470), 1, + anon_sym_RPAREN, + STATE(3754), 2, + sym_line_comment, + sym_block_comment, + [100599] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, + ACTIONS(7472), 1, anon_sym_EQ, - STATE(3572), 2, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [96224] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100613] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, - STATE(3573), 2, + ACTIONS(7474), 1, + anon_sym_SEMI, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [96238] = 4, - ACTIONS(101), 1, + [100627] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7476), 1, + anon_sym_SEMI, + STATE(3757), 2, + sym_line_comment, + sym_block_comment, + [100641] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, + ACTIONS(5753), 1, anon_sym_RPAREN, - STATE(3574), 2, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [96252] = 4, - ACTIONS(101), 1, + [100655] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(871), 1, + anon_sym_RBRACK, + STATE(3759), 2, + sym_line_comment, + sym_block_comment, + [100669] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(5408), 1, anon_sym_SEMI, - STATE(3575), 2, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [96266] = 4, - ACTIONS(101), 1, + [100683] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7478), 1, + anon_sym_COLON, + STATE(3761), 2, + sym_line_comment, + sym_block_comment, + [100697] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, - anon_sym_SEMI, - STATE(3576), 2, + ACTIONS(7480), 1, + anon_sym_COLON, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [96280] = 4, - ACTIONS(101), 1, + [100711] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7482), 1, + anon_sym_STAR_SLASH, + STATE(3763), 2, + sym_line_comment, + sym_block_comment, + [100725] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, + ACTIONS(7484), 1, anon_sym_COLON, - STATE(3577), 2, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [96294] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100739] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5637), 1, - anon_sym_RPAREN, - STATE(3578), 2, + ACTIONS(7486), 1, + anon_sym_EQ, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [96308] = 4, - ACTIONS(101), 1, + [100753] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7488), 1, + anon_sym_LT2, + STATE(3766), 2, + sym_line_comment, + sym_block_comment, + [100767] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, + ACTIONS(7490), 1, anon_sym_COLON, - STATE(3579), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [96322] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100781] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, + ACTIONS(7492), 1, anon_sym_LBRACK, - STATE(3580), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [96336] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100795] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, + ACTIONS(7494), 1, anon_sym_LBRACK, - STATE(3581), 2, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [96350] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100809] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, + ACTIONS(7496), 1, anon_sym_COLON, - STATE(3582), 2, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [96364] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100823] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, - STATE(3583), 2, + ACTIONS(5759), 1, + anon_sym_RPAREN, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [96378] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100837] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, - STATE(3584), 2, + ACTIONS(7498), 1, + anon_sym_fn, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [96392] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100851] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, + ACTIONS(7500), 1, anon_sym_COLON, - STATE(3585), 2, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [96406] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100865] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, + ACTIONS(7502), 1, anon_sym_COLON, - STATE(3586), 2, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [96420] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100879] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - sym_identifier, - STATE(3587), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [96434] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100893] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_COLON, - STATE(3588), 2, + ACTIONS(7504), 1, + anon_sym_RBRACE, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [96448] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100907] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, + ACTIONS(7506), 1, anon_sym_COLON, - STATE(3589), 2, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [96462] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100921] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, + ACTIONS(7508), 1, anon_sym_COLON, - STATE(3590), 2, + STATE(3778), 2, sym_line_comment, sym_block_comment, - [96476] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100935] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, + ACTIONS(7510), 1, anon_sym_COLON, - STATE(3591), 2, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [96490] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100949] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - anon_sym_COLON, - STATE(3592), 2, + ACTIONS(7512), 1, + anon_sym_COLON_COLON, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [96504] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100963] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, + ACTIONS(4688), 1, anon_sym_fn, - STATE(3593), 2, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [96518] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100977] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_EQ_GT, - STATE(3594), 2, + ACTIONS(7514), 1, + anon_sym_SEMI, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [96532] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [100991] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3979), 1, - sym_identifier, - STATE(3595), 2, + ACTIONS(7516), 1, + anon_sym_RPAREN, + STATE(3783), 2, sym_line_comment, sym_block_comment, - [96546] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [101005] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, - sym_identifier, - STATE(3596), 2, + ACTIONS(987), 1, + anon_sym_EQ_GT, + STATE(3784), 2, sym_line_comment, sym_block_comment, - [96560] = 4, - ACTIONS(101), 1, + [101019] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3785), 2, + sym_line_comment, + sym_block_comment, + [101033] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, + ACTIONS(5310), 1, anon_sym_SEMI, - STATE(3597), 2, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [96574] = 4, - ACTIONS(101), 1, + [101047] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7518), 1, + sym__raw_string_literal_end, + STATE(3787), 2, + sym_line_comment, + sym_block_comment, + [101061] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, - anon_sym_SEMI, - STATE(3598), 2, + ACTIONS(7520), 1, + sym_identifier, + STATE(3788), 2, sym_line_comment, sym_block_comment, - [96588] = 4, - ACTIONS(101), 1, + [101075] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7522), 1, + sym__line_doc_content, + STATE(3789), 2, + sym_line_comment, + sym_block_comment, + [101089] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, + ACTIONS(7524), 1, sym_identifier, - STATE(3599), 2, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [96602] = 4, - ACTIONS(101), 1, + [101103] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7526), 1, + sym_identifier, + STATE(3791), 2, + sym_line_comment, + sym_block_comment, + [101117] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, + ACTIONS(7528), 1, anon_sym_fn, - STATE(3600), 2, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [96616] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [101131] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, - sym_raw_string_literal_content, - STATE(3601), 2, + ACTIONS(7530), 1, + anon_sym_EQ, + STATE(3793), 2, sym_line_comment, sym_block_comment, - [96630] = 4, - ACTIONS(101), 1, + [101145] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7532), 1, + sym_identifier, + STATE(3794), 2, + sym_line_comment, + sym_block_comment, + [101159] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, + ACTIONS(7534), 1, sym_identifier, - STATE(3602), 2, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [96644] = 4, - ACTIONS(101), 1, + [101173] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6958), 1, + anon_sym_SEMI, + STATE(3796), 2, + sym_line_comment, + sym_block_comment, + [101187] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, + ACTIONS(7536), 1, sym_identifier, - STATE(3603), 2, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [96658] = 4, - ACTIONS(101), 1, + [101201] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7538), 1, + anon_sym_SEMI, + STATE(3798), 2, + sym_line_comment, + sym_block_comment, + [101215] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, + ACTIONS(7540), 1, sym_identifier, - STATE(3604), 2, + STATE(3799), 2, sym_line_comment, sym_block_comment, - [96672] = 4, - ACTIONS(101), 1, + [101229] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7542), 1, + anon_sym_COLON_COLON, + STATE(3800), 2, + sym_line_comment, + sym_block_comment, + [101243] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - anon_sym_EQ_GT, - STATE(3605), 2, + ACTIONS(7544), 1, + sym_identifier, + STATE(3801), 2, sym_line_comment, sym_block_comment, - [96686] = 4, - ACTIONS(101), 1, + [101257] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, + STATE(3802), 2, + sym_line_comment, + sym_block_comment, + [101271] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - STATE(3606), 2, + ACTIONS(7546), 1, + sym_identifier, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [96700] = 4, - ACTIONS(101), 1, + [101285] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7548), 1, + sym_identifier, + STATE(3804), 2, + sym_line_comment, + sym_block_comment, + [101299] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, + ACTIONS(7550), 1, sym_identifier, - STATE(3607), 2, + STATE(3805), 2, sym_line_comment, sym_block_comment, - [96714] = 4, - ACTIONS(101), 1, + [101313] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7552), 1, + sym_identifier, + STATE(3806), 2, + sym_line_comment, + sym_block_comment, + [101327] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_RPAREN, - STATE(3608), 2, + ACTIONS(7554), 1, + sym_identifier, + STATE(3807), 2, sym_line_comment, sym_block_comment, - [96728] = 4, - ACTIONS(101), 1, + [101341] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7556), 1, + sym_identifier, + STATE(3808), 2, + sym_line_comment, + sym_block_comment, + [101355] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - STATE(3609), 2, + ACTIONS(7558), 1, + sym_identifier, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [96742] = 4, - ACTIONS(101), 1, + [101369] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7560), 1, + anon_sym_SEMI, + STATE(3810), 2, + sym_line_comment, + sym_block_comment, + [101383] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_RBRACK, - STATE(3610), 2, + ACTIONS(7562), 1, + sym_identifier, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [96756] = 4, - ACTIONS(101), 1, + [101397] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7564), 1, + anon_sym_fn, + STATE(3812), 2, + sym_line_comment, + sym_block_comment, + [101411] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - sym_identifier, - STATE(3611), 2, + ACTIONS(3220), 1, + anon_sym_PLUS, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [96770] = 4, - ACTIONS(101), 1, + [101425] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7566), 1, + anon_sym_fn, + STATE(3814), 2, + sym_line_comment, + sym_block_comment, + [101439] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6709), 1, - anon_sym_SEMI, - STATE(3612), 2, + ACTIONS(7568), 1, + sym_identifier, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [96784] = 1, - ACTIONS(7193), 1, + [101453] = 1, + ACTIONS(7570), 1, ts_builtin_sym_end, - [96788] = 1, - ACTIONS(7195), 1, + [101457] = 1, + ACTIONS(7572), 1, ts_builtin_sym_end, - [96792] = 1, - ACTIONS(7197), 1, + [101461] = 1, + ACTIONS(7574), 1, ts_builtin_sym_end, - [96796] = 1, - ACTIONS(7199), 1, + [101465] = 1, + ACTIONS(7576), 1, ts_builtin_sym_end, - [96800] = 1, - ACTIONS(7201), 1, + [101469] = 1, + ACTIONS(7578), 1, ts_builtin_sym_end, - [96804] = 1, - ACTIONS(7203), 1, + [101473] = 1, + ACTIONS(7580), 1, ts_builtin_sym_end, - [96808] = 1, - ACTIONS(7205), 1, + [101477] = 1, + ACTIONS(7582), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1004)] = 0, - [SMALL_STATE(1005)] = 75, - [SMALL_STATE(1006)] = 150, - [SMALL_STATE(1007)] = 224, - [SMALL_STATE(1008)] = 294, - [SMALL_STATE(1009)] = 363, - [SMALL_STATE(1010)] = 462, - [SMALL_STATE(1011)] = 561, - [SMALL_STATE(1012)] = 638, - [SMALL_STATE(1013)] = 712, - [SMALL_STATE(1014)] = 786, - [SMALL_STATE(1015)] = 860, - [SMALL_STATE(1016)] = 923, - [SMALL_STATE(1017)] = 990, - [SMALL_STATE(1018)] = 1057, - [SMALL_STATE(1019)] = 1120, - [SMALL_STATE(1020)] = 1183, - [SMALL_STATE(1021)] = 1246, - [SMALL_STATE(1022)] = 1317, - [SMALL_STATE(1023)] = 1388, - [SMALL_STATE(1024)] = 1451, - [SMALL_STATE(1025)] = 1518, - [SMALL_STATE(1026)] = 1581, - [SMALL_STATE(1027)] = 1644, - [SMALL_STATE(1028)] = 1707, - [SMALL_STATE(1029)] = 1778, - [SMALL_STATE(1030)] = 1849, - [SMALL_STATE(1031)] = 1912, - [SMALL_STATE(1032)] = 1979, - [SMALL_STATE(1033)] = 2047, - [SMALL_STATE(1034)] = 2109, - [SMALL_STATE(1035)] = 2171, - [SMALL_STATE(1036)] = 2233, - [SMALL_STATE(1037)] = 2295, - [SMALL_STATE(1038)] = 2357, - [SMALL_STATE(1039)] = 2419, - [SMALL_STATE(1040)] = 2481, - [SMALL_STATE(1041)] = 2551, - [SMALL_STATE(1042)] = 2617, - [SMALL_STATE(1043)] = 2679, - [SMALL_STATE(1044)] = 2741, - [SMALL_STATE(1045)] = 2802, - [SMALL_STATE(1046)] = 2867, - [SMALL_STATE(1047)] = 2930, - [SMALL_STATE(1048)] = 2991, - [SMALL_STATE(1049)] = 3052, - [SMALL_STATE(1050)] = 3115, - [SMALL_STATE(1051)] = 3180, - [SMALL_STATE(1052)] = 3243, - [SMALL_STATE(1053)] = 3304, - [SMALL_STATE(1054)] = 3365, - [SMALL_STATE(1055)] = 3470, - [SMALL_STATE(1056)] = 3535, - [SMALL_STATE(1057)] = 3598, - [SMALL_STATE(1058)] = 3659, - [SMALL_STATE(1059)] = 3720, - [SMALL_STATE(1060)] = 3781, - [SMALL_STATE(1061)] = 3844, - [SMALL_STATE(1062)] = 3905, - [SMALL_STATE(1063)] = 4010, - [SMALL_STATE(1064)] = 4071, - [SMALL_STATE(1065)] = 4132, - [SMALL_STATE(1066)] = 4197, - [SMALL_STATE(1067)] = 4258, - [SMALL_STATE(1068)] = 4321, - [SMALL_STATE(1069)] = 4426, - [SMALL_STATE(1070)] = 4489, - [SMALL_STATE(1071)] = 4552, - [SMALL_STATE(1072)] = 4613, - [SMALL_STATE(1073)] = 4674, - [SMALL_STATE(1074)] = 4737, - [SMALL_STATE(1075)] = 4842, - [SMALL_STATE(1076)] = 4903, - [SMALL_STATE(1077)] = 4966, - [SMALL_STATE(1078)] = 5065, - [SMALL_STATE(1079)] = 5128, - [SMALL_STATE(1080)] = 5233, - [SMALL_STATE(1081)] = 5294, - [SMALL_STATE(1082)] = 5355, - [SMALL_STATE(1083)] = 5454, - [SMALL_STATE(1084)] = 5517, - [SMALL_STATE(1085)] = 5622, - [SMALL_STATE(1086)] = 5685, - [SMALL_STATE(1087)] = 5748, - [SMALL_STATE(1088)] = 5811, - [SMALL_STATE(1089)] = 5874, - [SMALL_STATE(1090)] = 5937, - [SMALL_STATE(1091)] = 6000, - [SMALL_STATE(1092)] = 6060, - [SMALL_STATE(1093)] = 6120, - [SMALL_STATE(1094)] = 6180, - [SMALL_STATE(1095)] = 6240, - [SMALL_STATE(1096)] = 6300, - [SMALL_STATE(1097)] = 6360, - [SMALL_STATE(1098)] = 6420, - [SMALL_STATE(1099)] = 6480, - [SMALL_STATE(1100)] = 6540, - [SMALL_STATE(1101)] = 6600, - [SMALL_STATE(1102)] = 6660, - [SMALL_STATE(1103)] = 6720, - [SMALL_STATE(1104)] = 6780, - [SMALL_STATE(1105)] = 6840, - [SMALL_STATE(1106)] = 6900, - [SMALL_STATE(1107)] = 6960, - [SMALL_STATE(1108)] = 7020, - [SMALL_STATE(1109)] = 7080, - [SMALL_STATE(1110)] = 7140, - [SMALL_STATE(1111)] = 7200, - [SMALL_STATE(1112)] = 7260, - [SMALL_STATE(1113)] = 7320, - [SMALL_STATE(1114)] = 7380, - [SMALL_STATE(1115)] = 7440, - [SMALL_STATE(1116)] = 7500, - [SMALL_STATE(1117)] = 7560, - [SMALL_STATE(1118)] = 7620, - [SMALL_STATE(1119)] = 7680, - [SMALL_STATE(1120)] = 7740, - [SMALL_STATE(1121)] = 7800, - [SMALL_STATE(1122)] = 7860, - [SMALL_STATE(1123)] = 7920, - [SMALL_STATE(1124)] = 7980, - [SMALL_STATE(1125)] = 8040, - [SMALL_STATE(1126)] = 8100, - [SMALL_STATE(1127)] = 8160, - [SMALL_STATE(1128)] = 8220, - [SMALL_STATE(1129)] = 8280, - [SMALL_STATE(1130)] = 8340, - [SMALL_STATE(1131)] = 8400, - [SMALL_STATE(1132)] = 8460, - [SMALL_STATE(1133)] = 8520, - [SMALL_STATE(1134)] = 8580, - [SMALL_STATE(1135)] = 8640, - [SMALL_STATE(1136)] = 8700, - [SMALL_STATE(1137)] = 8760, - [SMALL_STATE(1138)] = 8820, - [SMALL_STATE(1139)] = 8880, - [SMALL_STATE(1140)] = 8940, - [SMALL_STATE(1141)] = 9000, - [SMALL_STATE(1142)] = 9060, - [SMALL_STATE(1143)] = 9120, - [SMALL_STATE(1144)] = 9180, - [SMALL_STATE(1145)] = 9240, - [SMALL_STATE(1146)] = 9300, - [SMALL_STATE(1147)] = 9360, - [SMALL_STATE(1148)] = 9420, - [SMALL_STATE(1149)] = 9480, - [SMALL_STATE(1150)] = 9540, - [SMALL_STATE(1151)] = 9600, - [SMALL_STATE(1152)] = 9660, - [SMALL_STATE(1153)] = 9720, - [SMALL_STATE(1154)] = 9780, - [SMALL_STATE(1155)] = 9840, - [SMALL_STATE(1156)] = 9900, - [SMALL_STATE(1157)] = 9960, - [SMALL_STATE(1158)] = 10020, - [SMALL_STATE(1159)] = 10080, - [SMALL_STATE(1160)] = 10140, - [SMALL_STATE(1161)] = 10200, - [SMALL_STATE(1162)] = 10260, - [SMALL_STATE(1163)] = 10320, - [SMALL_STATE(1164)] = 10380, - [SMALL_STATE(1165)] = 10440, - [SMALL_STATE(1166)] = 10500, - [SMALL_STATE(1167)] = 10560, - [SMALL_STATE(1168)] = 10620, - [SMALL_STATE(1169)] = 10680, - [SMALL_STATE(1170)] = 10740, - [SMALL_STATE(1171)] = 10800, - [SMALL_STATE(1172)] = 10860, - [SMALL_STATE(1173)] = 10920, - [SMALL_STATE(1174)] = 10980, - [SMALL_STATE(1175)] = 11040, - [SMALL_STATE(1176)] = 11100, - [SMALL_STATE(1177)] = 11160, - [SMALL_STATE(1178)] = 11220, - [SMALL_STATE(1179)] = 11280, - [SMALL_STATE(1180)] = 11340, - [SMALL_STATE(1181)] = 11400, - [SMALL_STATE(1182)] = 11460, - [SMALL_STATE(1183)] = 11520, - [SMALL_STATE(1184)] = 11580, - [SMALL_STATE(1185)] = 11640, - [SMALL_STATE(1186)] = 11700, - [SMALL_STATE(1187)] = 11760, - [SMALL_STATE(1188)] = 11820, - [SMALL_STATE(1189)] = 11880, - [SMALL_STATE(1190)] = 11940, - [SMALL_STATE(1191)] = 12000, - [SMALL_STATE(1192)] = 12060, - [SMALL_STATE(1193)] = 12120, - [SMALL_STATE(1194)] = 12180, - [SMALL_STATE(1195)] = 12240, - [SMALL_STATE(1196)] = 12300, - [SMALL_STATE(1197)] = 12360, - [SMALL_STATE(1198)] = 12420, - [SMALL_STATE(1199)] = 12480, - [SMALL_STATE(1200)] = 12540, - [SMALL_STATE(1201)] = 12600, - [SMALL_STATE(1202)] = 12660, - [SMALL_STATE(1203)] = 12720, - [SMALL_STATE(1204)] = 12780, - [SMALL_STATE(1205)] = 12840, - [SMALL_STATE(1206)] = 12900, - [SMALL_STATE(1207)] = 12960, - [SMALL_STATE(1208)] = 13020, - [SMALL_STATE(1209)] = 13080, - [SMALL_STATE(1210)] = 13140, - [SMALL_STATE(1211)] = 13200, - [SMALL_STATE(1212)] = 13260, - [SMALL_STATE(1213)] = 13320, - [SMALL_STATE(1214)] = 13380, - [SMALL_STATE(1215)] = 13440, - [SMALL_STATE(1216)] = 13500, - [SMALL_STATE(1217)] = 13592, - [SMALL_STATE(1218)] = 13652, - [SMALL_STATE(1219)] = 13712, - [SMALL_STATE(1220)] = 13772, - [SMALL_STATE(1221)] = 13832, - [SMALL_STATE(1222)] = 13892, - [SMALL_STATE(1223)] = 13952, - [SMALL_STATE(1224)] = 14012, - [SMALL_STATE(1225)] = 14072, - [SMALL_STATE(1226)] = 14132, - [SMALL_STATE(1227)] = 14192, - [SMALL_STATE(1228)] = 14252, - [SMALL_STATE(1229)] = 14312, - [SMALL_STATE(1230)] = 14372, - [SMALL_STATE(1231)] = 14432, - [SMALL_STATE(1232)] = 14492, - [SMALL_STATE(1233)] = 14552, - [SMALL_STATE(1234)] = 14612, - [SMALL_STATE(1235)] = 14672, - [SMALL_STATE(1236)] = 14732, - [SMALL_STATE(1237)] = 14792, - [SMALL_STATE(1238)] = 14852, - [SMALL_STATE(1239)] = 14916, - [SMALL_STATE(1240)] = 14976, - [SMALL_STATE(1241)] = 15036, - [SMALL_STATE(1242)] = 15096, - [SMALL_STATE(1243)] = 15156, - [SMALL_STATE(1244)] = 15218, - [SMALL_STATE(1245)] = 15278, - [SMALL_STATE(1246)] = 15338, - [SMALL_STATE(1247)] = 15398, - [SMALL_STATE(1248)] = 15458, - [SMALL_STATE(1249)] = 15518, - [SMALL_STATE(1250)] = 15578, - [SMALL_STATE(1251)] = 15638, - [SMALL_STATE(1252)] = 15706, - [SMALL_STATE(1253)] = 15766, - [SMALL_STATE(1254)] = 15826, - [SMALL_STATE(1255)] = 15886, - [SMALL_STATE(1256)] = 15946, - [SMALL_STATE(1257)] = 16006, - [SMALL_STATE(1258)] = 16066, - [SMALL_STATE(1259)] = 16126, - [SMALL_STATE(1260)] = 16186, - [SMALL_STATE(1261)] = 16246, - [SMALL_STATE(1262)] = 16306, - [SMALL_STATE(1263)] = 16366, - [SMALL_STATE(1264)] = 16426, - [SMALL_STATE(1265)] = 16486, - [SMALL_STATE(1266)] = 16546, - [SMALL_STATE(1267)] = 16606, - [SMALL_STATE(1268)] = 16666, - [SMALL_STATE(1269)] = 16726, - [SMALL_STATE(1270)] = 16786, - [SMALL_STATE(1271)] = 16846, - [SMALL_STATE(1272)] = 16906, - [SMALL_STATE(1273)] = 16966, - [SMALL_STATE(1274)] = 17026, - [SMALL_STATE(1275)] = 17086, - [SMALL_STATE(1276)] = 17146, - [SMALL_STATE(1277)] = 17206, - [SMALL_STATE(1278)] = 17266, - [SMALL_STATE(1279)] = 17326, - [SMALL_STATE(1280)] = 17386, - [SMALL_STATE(1281)] = 17446, - [SMALL_STATE(1282)] = 17506, - [SMALL_STATE(1283)] = 17566, - [SMALL_STATE(1284)] = 17626, - [SMALL_STATE(1285)] = 17686, - [SMALL_STATE(1286)] = 17746, - [SMALL_STATE(1287)] = 17806, - [SMALL_STATE(1288)] = 17866, - [SMALL_STATE(1289)] = 17928, - [SMALL_STATE(1290)] = 17988, - [SMALL_STATE(1291)] = 18048, - [SMALL_STATE(1292)] = 18108, - [SMALL_STATE(1293)] = 18168, - [SMALL_STATE(1294)] = 18228, - [SMALL_STATE(1295)] = 18288, - [SMALL_STATE(1296)] = 18348, - [SMALL_STATE(1297)] = 18408, - [SMALL_STATE(1298)] = 18468, - [SMALL_STATE(1299)] = 18528, - [SMALL_STATE(1300)] = 18588, - [SMALL_STATE(1301)] = 18648, - [SMALL_STATE(1302)] = 18708, - [SMALL_STATE(1303)] = 18768, - [SMALL_STATE(1304)] = 18860, - [SMALL_STATE(1305)] = 18920, - [SMALL_STATE(1306)] = 18980, - [SMALL_STATE(1307)] = 19040, - [SMALL_STATE(1308)] = 19100, - [SMALL_STATE(1309)] = 19160, - [SMALL_STATE(1310)] = 19220, - [SMALL_STATE(1311)] = 19280, - [SMALL_STATE(1312)] = 19340, - [SMALL_STATE(1313)] = 19400, - [SMALL_STATE(1314)] = 19460, - [SMALL_STATE(1315)] = 19520, - [SMALL_STATE(1316)] = 19580, - [SMALL_STATE(1317)] = 19640, - [SMALL_STATE(1318)] = 19700, - [SMALL_STATE(1319)] = 19760, - [SMALL_STATE(1320)] = 19820, - [SMALL_STATE(1321)] = 19880, - [SMALL_STATE(1322)] = 19940, - [SMALL_STATE(1323)] = 20000, - [SMALL_STATE(1324)] = 20066, - [SMALL_STATE(1325)] = 20126, - [SMALL_STATE(1326)] = 20186, - [SMALL_STATE(1327)] = 20246, - [SMALL_STATE(1328)] = 20306, - [SMALL_STATE(1329)] = 20366, - [SMALL_STATE(1330)] = 20426, - [SMALL_STATE(1331)] = 20486, - [SMALL_STATE(1332)] = 20546, - [SMALL_STATE(1333)] = 20606, - [SMALL_STATE(1334)] = 20666, - [SMALL_STATE(1335)] = 20726, - [SMALL_STATE(1336)] = 20786, - [SMALL_STATE(1337)] = 20846, - [SMALL_STATE(1338)] = 20912, - [SMALL_STATE(1339)] = 20972, - [SMALL_STATE(1340)] = 21032, - [SMALL_STATE(1341)] = 21092, - [SMALL_STATE(1342)] = 21152, - [SMALL_STATE(1343)] = 21212, - [SMALL_STATE(1344)] = 21272, - [SMALL_STATE(1345)] = 21332, - [SMALL_STATE(1346)] = 21392, - [SMALL_STATE(1347)] = 21452, - [SMALL_STATE(1348)] = 21512, - [SMALL_STATE(1349)] = 21572, - [SMALL_STATE(1350)] = 21632, - [SMALL_STATE(1351)] = 21692, - [SMALL_STATE(1352)] = 21752, - [SMALL_STATE(1353)] = 21812, - [SMALL_STATE(1354)] = 21878, - [SMALL_STATE(1355)] = 21938, - [SMALL_STATE(1356)] = 21998, - [SMALL_STATE(1357)] = 22058, - [SMALL_STATE(1358)] = 22118, - [SMALL_STATE(1359)] = 22178, - [SMALL_STATE(1360)] = 22238, - [SMALL_STATE(1361)] = 22298, - [SMALL_STATE(1362)] = 22358, - [SMALL_STATE(1363)] = 22418, - [SMALL_STATE(1364)] = 22478, - [SMALL_STATE(1365)] = 22538, - [SMALL_STATE(1366)] = 22598, - [SMALL_STATE(1367)] = 22658, - [SMALL_STATE(1368)] = 22718, - [SMALL_STATE(1369)] = 22778, - [SMALL_STATE(1370)] = 22838, - [SMALL_STATE(1371)] = 22898, - [SMALL_STATE(1372)] = 22958, - [SMALL_STATE(1373)] = 23018, - [SMALL_STATE(1374)] = 23078, - [SMALL_STATE(1375)] = 23138, - [SMALL_STATE(1376)] = 23198, - [SMALL_STATE(1377)] = 23258, - [SMALL_STATE(1378)] = 23320, - [SMALL_STATE(1379)] = 23380, - [SMALL_STATE(1380)] = 23440, - [SMALL_STATE(1381)] = 23500, - [SMALL_STATE(1382)] = 23560, - [SMALL_STATE(1383)] = 23620, - [SMALL_STATE(1384)] = 23680, - [SMALL_STATE(1385)] = 23740, - [SMALL_STATE(1386)] = 23800, - [SMALL_STATE(1387)] = 23860, - [SMALL_STATE(1388)] = 23920, - [SMALL_STATE(1389)] = 23980, - [SMALL_STATE(1390)] = 24040, - [SMALL_STATE(1391)] = 24100, - [SMALL_STATE(1392)] = 24160, - [SMALL_STATE(1393)] = 24220, - [SMALL_STATE(1394)] = 24284, - [SMALL_STATE(1395)] = 24344, - [SMALL_STATE(1396)] = 24404, - [SMALL_STATE(1397)] = 24464, - [SMALL_STATE(1398)] = 24524, - [SMALL_STATE(1399)] = 24584, - [SMALL_STATE(1400)] = 24644, - [SMALL_STATE(1401)] = 24704, - [SMALL_STATE(1402)] = 24764, - [SMALL_STATE(1403)] = 24824, - [SMALL_STATE(1404)] = 24884, - [SMALL_STATE(1405)] = 24944, - [SMALL_STATE(1406)] = 25004, - [SMALL_STATE(1407)] = 25064, - [SMALL_STATE(1408)] = 25124, - [SMALL_STATE(1409)] = 25184, - [SMALL_STATE(1410)] = 25244, - [SMALL_STATE(1411)] = 25304, - [SMALL_STATE(1412)] = 25364, - [SMALL_STATE(1413)] = 25424, - [SMALL_STATE(1414)] = 25484, - [SMALL_STATE(1415)] = 25544, - [SMALL_STATE(1416)] = 25604, - [SMALL_STATE(1417)] = 25664, - [SMALL_STATE(1418)] = 25724, - [SMALL_STATE(1419)] = 25784, - [SMALL_STATE(1420)] = 25846, - [SMALL_STATE(1421)] = 25906, - [SMALL_STATE(1422)] = 25966, - [SMALL_STATE(1423)] = 26026, - [SMALL_STATE(1424)] = 26086, - [SMALL_STATE(1425)] = 26146, - [SMALL_STATE(1426)] = 26206, - [SMALL_STATE(1427)] = 26266, - [SMALL_STATE(1428)] = 26326, - [SMALL_STATE(1429)] = 26386, - [SMALL_STATE(1430)] = 26446, - [SMALL_STATE(1431)] = 26506, - [SMALL_STATE(1432)] = 26566, - [SMALL_STATE(1433)] = 26626, - [SMALL_STATE(1434)] = 26686, - [SMALL_STATE(1435)] = 26746, - [SMALL_STATE(1436)] = 26806, - [SMALL_STATE(1437)] = 26866, - [SMALL_STATE(1438)] = 26926, - [SMALL_STATE(1439)] = 26986, - [SMALL_STATE(1440)] = 27046, - [SMALL_STATE(1441)] = 27106, - [SMALL_STATE(1442)] = 27166, - [SMALL_STATE(1443)] = 27226, - [SMALL_STATE(1444)] = 27286, - [SMALL_STATE(1445)] = 27346, - [SMALL_STATE(1446)] = 27406, - [SMALL_STATE(1447)] = 27466, - [SMALL_STATE(1448)] = 27526, - [SMALL_STATE(1449)] = 27586, - [SMALL_STATE(1450)] = 27646, - [SMALL_STATE(1451)] = 27706, - [SMALL_STATE(1452)] = 27766, - [SMALL_STATE(1453)] = 27826, - [SMALL_STATE(1454)] = 27886, - [SMALL_STATE(1455)] = 27946, - [SMALL_STATE(1456)] = 28006, - [SMALL_STATE(1457)] = 28066, - [SMALL_STATE(1458)] = 28126, - [SMALL_STATE(1459)] = 28186, - [SMALL_STATE(1460)] = 28246, - [SMALL_STATE(1461)] = 28306, - [SMALL_STATE(1462)] = 28366, - [SMALL_STATE(1463)] = 28426, - [SMALL_STATE(1464)] = 28486, - [SMALL_STATE(1465)] = 28546, - [SMALL_STATE(1466)] = 28606, - [SMALL_STATE(1467)] = 28666, - [SMALL_STATE(1468)] = 28726, - [SMALL_STATE(1469)] = 28786, - [SMALL_STATE(1470)] = 28846, - [SMALL_STATE(1471)] = 28906, - [SMALL_STATE(1472)] = 28965, - [SMALL_STATE(1473)] = 29024, - [SMALL_STATE(1474)] = 29083, - [SMALL_STATE(1475)] = 29142, - [SMALL_STATE(1476)] = 29203, - [SMALL_STATE(1477)] = 29262, - [SMALL_STATE(1478)] = 29321, - [SMALL_STATE(1479)] = 29382, - [SMALL_STATE(1480)] = 29441, - [SMALL_STATE(1481)] = 29536, - [SMALL_STATE(1482)] = 29631, - [SMALL_STATE(1483)] = 29717, - [SMALL_STATE(1484)] = 29807, - [SMALL_STATE(1485)] = 29873, - [SMALL_STATE(1486)] = 29947, - [SMALL_STATE(1487)] = 30019, - [SMALL_STATE(1488)] = 30111, - [SMALL_STATE(1489)] = 30187, - [SMALL_STATE(1490)] = 30277, - [SMALL_STATE(1491)] = 30359, - [SMALL_STATE(1492)] = 30457, - [SMALL_STATE(1493)] = 30527, - [SMALL_STATE(1494)] = 30613, - [SMALL_STATE(1495)] = 30703, - [SMALL_STATE(1496)] = 30771, - [SMALL_STATE(1497)] = 30863, - [SMALL_STATE(1498)] = 30941, - [SMALL_STATE(1499)] = 31039, - [SMALL_STATE(1500)] = 31129, - [SMALL_STATE(1501)] = 31213, - [SMALL_STATE(1502)] = 31283, - [SMALL_STATE(1503)] = 31373, - [SMALL_STATE(1504)] = 31463, - [SMALL_STATE(1505)] = 31561, - [SMALL_STATE(1506)] = 31653, - [SMALL_STATE(1507)] = 31720, - [SMALL_STATE(1508)] = 31785, - [SMALL_STATE(1509)] = 31852, - [SMALL_STATE(1510)] = 31915, - [SMALL_STATE(1511)] = 32000, - [SMALL_STATE(1512)] = 32063, - [SMALL_STATE(1513)] = 32148, - [SMALL_STATE(1514)] = 32215, - [SMALL_STATE(1515)] = 32300, - [SMALL_STATE(1516)] = 32385, - [SMALL_STATE(1517)] = 32441, - [SMALL_STATE(1518)] = 32499, - [SMALL_STATE(1519)] = 32557, - [SMALL_STATE(1520)] = 32617, - [SMALL_STATE(1521)] = 32681, - [SMALL_STATE(1522)] = 32737, - [SMALL_STATE(1523)] = 32795, - [SMALL_STATE(1524)] = 32851, - [SMALL_STATE(1525)] = 32909, - [SMALL_STATE(1526)] = 32965, - [SMALL_STATE(1527)] = 33029, - [SMALL_STATE(1528)] = 33089, - [SMALL_STATE(1529)] = 33145, - [SMALL_STATE(1530)] = 33205, - [SMALL_STATE(1531)] = 33269, - [SMALL_STATE(1532)] = 33327, - [SMALL_STATE(1533)] = 33391, - [SMALL_STATE(1534)] = 33451, - [SMALL_STATE(1535)] = 33511, - [SMALL_STATE(1536)] = 33571, - [SMALL_STATE(1537)] = 33627, - [SMALL_STATE(1538)] = 33687, - [SMALL_STATE(1539)] = 33745, - [SMALL_STATE(1540)] = 33801, - [SMALL_STATE(1541)] = 33857, - [SMALL_STATE(1542)] = 33913, - [SMALL_STATE(1543)] = 33970, - [SMALL_STATE(1544)] = 34065, - [SMALL_STATE(1545)] = 34124, - [SMALL_STATE(1546)] = 34179, - [SMALL_STATE(1547)] = 34238, - [SMALL_STATE(1548)] = 34293, - [SMALL_STATE(1549)] = 34352, - [SMALL_STATE(1550)] = 34447, - [SMALL_STATE(1551)] = 34502, - [SMALL_STATE(1552)] = 34597, - [SMALL_STATE(1553)] = 34654, - [SMALL_STATE(1554)] = 34711, - [SMALL_STATE(1555)] = 34770, - [SMALL_STATE(1556)] = 34865, - [SMALL_STATE(1557)] = 34920, - [SMALL_STATE(1558)] = 34975, - [SMALL_STATE(1559)] = 35032, - [SMALL_STATE(1560)] = 35087, - [SMALL_STATE(1561)] = 35182, - [SMALL_STATE(1562)] = 35237, - [SMALL_STATE(1563)] = 35332, - [SMALL_STATE(1564)] = 35427, - [SMALL_STATE(1565)] = 35482, - [SMALL_STATE(1566)] = 35539, - [SMALL_STATE(1567)] = 35634, - [SMALL_STATE(1568)] = 35729, - [SMALL_STATE(1569)] = 35786, - [SMALL_STATE(1570)] = 35881, - [SMALL_STATE(1571)] = 35938, - [SMALL_STATE(1572)] = 36033, - [SMALL_STATE(1573)] = 36128, - [SMALL_STATE(1574)] = 36216, - [SMALL_STATE(1575)] = 36308, - [SMALL_STATE(1576)] = 36394, - [SMALL_STATE(1577)] = 36486, - [SMALL_STATE(1578)] = 36572, - [SMALL_STATE(1579)] = 36664, - [SMALL_STATE(1580)] = 36746, - [SMALL_STATE(1581)] = 36814, - [SMALL_STATE(1582)] = 36868, - [SMALL_STATE(1583)] = 36922, - [SMALL_STATE(1584)] = 36976, - [SMALL_STATE(1585)] = 37030, - [SMALL_STATE(1586)] = 37118, - [SMALL_STATE(1587)] = 37172, - [SMALL_STATE(1588)] = 37226, - [SMALL_STATE(1589)] = 37298, - [SMALL_STATE(1590)] = 37390, - [SMALL_STATE(1591)] = 37468, - [SMALL_STATE(1592)] = 37524, - [SMALL_STATE(1593)] = 37612, - [SMALL_STATE(1594)] = 37692, - [SMALL_STATE(1595)] = 37748, - [SMALL_STATE(1596)] = 37802, - [SMALL_STATE(1597)] = 37858, - [SMALL_STATE(1598)] = 37914, - [SMALL_STATE(1599)] = 37970, - [SMALL_STATE(1600)] = 38024, - [SMALL_STATE(1601)] = 38080, - [SMALL_STATE(1602)] = 38166, - [SMALL_STATE(1603)] = 38222, - [SMALL_STATE(1604)] = 38276, - [SMALL_STATE(1605)] = 38334, - [SMALL_STATE(1606)] = 38388, - [SMALL_STATE(1607)] = 38454, - [SMALL_STATE(1608)] = 38542, - [SMALL_STATE(1609)] = 38598, - [SMALL_STATE(1610)] = 38652, - [SMALL_STATE(1611)] = 38740, - [SMALL_STATE(1612)] = 38794, - [SMALL_STATE(1613)] = 38850, - [SMALL_STATE(1614)] = 38938, - [SMALL_STATE(1615)] = 38994, - [SMALL_STATE(1616)] = 39080, - [SMALL_STATE(1617)] = 39166, - [SMALL_STATE(1618)] = 39220, - [SMALL_STATE(1619)] = 39308, - [SMALL_STATE(1620)] = 39382, - [SMALL_STATE(1621)] = 39438, - [SMALL_STATE(1622)] = 39492, - [SMALL_STATE(1623)] = 39548, - [SMALL_STATE(1624)] = 39604, - [SMALL_STATE(1625)] = 39658, - [SMALL_STATE(1626)] = 39744, - [SMALL_STATE(1627)] = 39800, - [SMALL_STATE(1628)] = 39882, - [SMALL_STATE(1629)] = 39974, - [SMALL_STATE(1630)] = 40038, - [SMALL_STATE(1631)] = 40108, - [SMALL_STATE(1632)] = 40162, - [SMALL_STATE(1633)] = 40254, - [SMALL_STATE(1634)] = 40310, - [SMALL_STATE(1635)] = 40398, - [SMALL_STATE(1636)] = 40454, - [SMALL_STATE(1637)] = 40543, - [SMALL_STATE(1638)] = 40596, - [SMALL_STATE(1639)] = 40681, - [SMALL_STATE(1640)] = 40734, - [SMALL_STATE(1641)] = 40787, - [SMALL_STATE(1642)] = 40840, - [SMALL_STATE(1643)] = 40893, - [SMALL_STATE(1644)] = 40952, - [SMALL_STATE(1645)] = 41011, - [SMALL_STATE(1646)] = 41092, - [SMALL_STATE(1647)] = 41177, - [SMALL_STATE(1648)] = 41230, - [SMALL_STATE(1649)] = 41315, - [SMALL_STATE(1650)] = 41400, - [SMALL_STATE(1651)] = 41453, - [SMALL_STATE(1652)] = 41506, - [SMALL_STATE(1653)] = 41559, - [SMALL_STATE(1654)] = 41612, - [SMALL_STATE(1655)] = 41701, - [SMALL_STATE(1656)] = 41754, - [SMALL_STATE(1657)] = 41807, - [SMALL_STATE(1658)] = 41860, - [SMALL_STATE(1659)] = 41913, - [SMALL_STATE(1660)] = 41972, - [SMALL_STATE(1661)] = 42061, - [SMALL_STATE(1662)] = 42114, - [SMALL_STATE(1663)] = 42167, - [SMALL_STATE(1664)] = 42220, - [SMALL_STATE(1665)] = 42273, - [SMALL_STATE(1666)] = 42334, - [SMALL_STATE(1667)] = 42387, - [SMALL_STATE(1668)] = 42440, - [SMALL_STATE(1669)] = 42493, - [SMALL_STATE(1670)] = 42546, - [SMALL_STATE(1671)] = 42599, - [SMALL_STATE(1672)] = 42686, - [SMALL_STATE(1673)] = 42739, - [SMALL_STATE(1674)] = 42792, - [SMALL_STATE(1675)] = 42881, - [SMALL_STATE(1676)] = 42934, - [SMALL_STATE(1677)] = 42987, - [SMALL_STATE(1678)] = 43040, - [SMALL_STATE(1679)] = 43093, - [SMALL_STATE(1680)] = 43146, - [SMALL_STATE(1681)] = 43199, - [SMALL_STATE(1682)] = 43252, - [SMALL_STATE(1683)] = 43341, - [SMALL_STATE(1684)] = 43394, - [SMALL_STATE(1685)] = 43447, - [SMALL_STATE(1686)] = 43500, - [SMALL_STATE(1687)] = 43553, - [SMALL_STATE(1688)] = 43606, - [SMALL_STATE(1689)] = 43659, - [SMALL_STATE(1690)] = 43712, - [SMALL_STATE(1691)] = 43797, - [SMALL_STATE(1692)] = 43850, - [SMALL_STATE(1693)] = 43903, - [SMALL_STATE(1694)] = 43956, - [SMALL_STATE(1695)] = 44009, - [SMALL_STATE(1696)] = 44098, - [SMALL_STATE(1697)] = 44151, - [SMALL_STATE(1698)] = 44238, - [SMALL_STATE(1699)] = 44325, - [SMALL_STATE(1700)] = 44412, - [SMALL_STATE(1701)] = 44465, - [SMALL_STATE(1702)] = 44518, - [SMALL_STATE(1703)] = 44607, - [SMALL_STATE(1704)] = 44694, - [SMALL_STATE(1705)] = 44783, - [SMALL_STATE(1706)] = 44836, - [SMALL_STATE(1707)] = 44889, - [SMALL_STATE(1708)] = 44942, - [SMALL_STATE(1709)] = 44995, - [SMALL_STATE(1710)] = 45048, - [SMALL_STATE(1711)] = 45133, - [SMALL_STATE(1712)] = 45220, - [SMALL_STATE(1713)] = 45283, - [SMALL_STATE(1714)] = 45352, - [SMALL_STATE(1715)] = 45419, - [SMALL_STATE(1716)] = 45490, - [SMALL_STATE(1717)] = 45567, - [SMALL_STATE(1718)] = 45646, - [SMALL_STATE(1719)] = 45711, - [SMALL_STATE(1720)] = 45796, - [SMALL_STATE(1721)] = 45881, - [SMALL_STATE(1722)] = 45954, - [SMALL_STATE(1723)] = 46035, - [SMALL_STATE(1724)] = 46088, - [SMALL_STATE(1725)] = 46141, - [SMALL_STATE(1726)] = 46194, - [SMALL_STATE(1727)] = 46247, - [SMALL_STATE(1728)] = 46334, - [SMALL_STATE(1729)] = 46387, - [SMALL_STATE(1730)] = 46440, - [SMALL_STATE(1731)] = 46493, - [SMALL_STATE(1732)] = 46546, - [SMALL_STATE(1733)] = 46599, - [SMALL_STATE(1734)] = 46686, - [SMALL_STATE(1735)] = 46739, - [SMALL_STATE(1736)] = 46792, - [SMALL_STATE(1737)] = 46845, - [SMALL_STATE(1738)] = 46898, - [SMALL_STATE(1739)] = 46951, - [SMALL_STATE(1740)] = 47004, - [SMALL_STATE(1741)] = 47093, - [SMALL_STATE(1742)] = 47146, - [SMALL_STATE(1743)] = 47199, - [SMALL_STATE(1744)] = 47252, - [SMALL_STATE(1745)] = 47305, - [SMALL_STATE(1746)] = 47358, - [SMALL_STATE(1747)] = 47445, - [SMALL_STATE(1748)] = 47498, - [SMALL_STATE(1749)] = 47587, - [SMALL_STATE(1750)] = 47672, - [SMALL_STATE(1751)] = 47725, - [SMALL_STATE(1752)] = 47812, - [SMALL_STATE(1753)] = 47865, - [SMALL_STATE(1754)] = 47928, - [SMALL_STATE(1755)] = 47997, - [SMALL_STATE(1756)] = 48064, - [SMALL_STATE(1757)] = 48135, - [SMALL_STATE(1758)] = 48212, - [SMALL_STATE(1759)] = 48291, - [SMALL_STATE(1760)] = 48356, - [SMALL_STATE(1761)] = 48441, - [SMALL_STATE(1762)] = 48526, - [SMALL_STATE(1763)] = 48599, - [SMALL_STATE(1764)] = 48680, - [SMALL_STATE(1765)] = 48733, - [SMALL_STATE(1766)] = 48786, - [SMALL_STATE(1767)] = 48839, - [SMALL_STATE(1768)] = 48892, - [SMALL_STATE(1769)] = 48979, - [SMALL_STATE(1770)] = 49032, - [SMALL_STATE(1771)] = 49085, - [SMALL_STATE(1772)] = 49138, - [SMALL_STATE(1773)] = 49191, - [SMALL_STATE(1774)] = 49244, - [SMALL_STATE(1775)] = 49297, - [SMALL_STATE(1776)] = 49350, - [SMALL_STATE(1777)] = 49403, - [SMALL_STATE(1778)] = 49456, - [SMALL_STATE(1779)] = 49509, - [SMALL_STATE(1780)] = 49562, - [SMALL_STATE(1781)] = 49615, - [SMALL_STATE(1782)] = 49668, - [SMALL_STATE(1783)] = 49757, - [SMALL_STATE(1784)] = 49844, - [SMALL_STATE(1785)] = 49897, - [SMALL_STATE(1786)] = 49950, - [SMALL_STATE(1787)] = 50039, - [SMALL_STATE(1788)] = 50126, - [SMALL_STATE(1789)] = 50179, - [SMALL_STATE(1790)] = 50232, - [SMALL_STATE(1791)] = 50319, - [SMALL_STATE(1792)] = 50372, - [SMALL_STATE(1793)] = 50425, - [SMALL_STATE(1794)] = 50514, - [SMALL_STATE(1795)] = 50603, - [SMALL_STATE(1796)] = 50682, - [SMALL_STATE(1797)] = 50771, - [SMALL_STATE(1798)] = 50860, - [SMALL_STATE(1799)] = 50947, - [SMALL_STATE(1800)] = 51034, - [SMALL_STATE(1801)] = 51123, - [SMALL_STATE(1802)] = 51212, - [SMALL_STATE(1803)] = 51301, - [SMALL_STATE(1804)] = 51390, - [SMALL_STATE(1805)] = 51479, - [SMALL_STATE(1806)] = 51568, - [SMALL_STATE(1807)] = 51657, - [SMALL_STATE(1808)] = 51746, - [SMALL_STATE(1809)] = 51835, - [SMALL_STATE(1810)] = 51924, - [SMALL_STATE(1811)] = 52013, - [SMALL_STATE(1812)] = 52094, - [SMALL_STATE(1813)] = 52179, - [SMALL_STATE(1814)] = 52268, - [SMALL_STATE(1815)] = 52353, - [SMALL_STATE(1816)] = 52438, - [SMALL_STATE(1817)] = 52527, - [SMALL_STATE(1818)] = 52614, - [SMALL_STATE(1819)] = 52701, - [SMALL_STATE(1820)] = 52790, - [SMALL_STATE(1821)] = 52879, - [SMALL_STATE(1822)] = 52968, - [SMALL_STATE(1823)] = 53057, - [SMALL_STATE(1824)] = 53146, - [SMALL_STATE(1825)] = 53235, - [SMALL_STATE(1826)] = 53324, - [SMALL_STATE(1827)] = 53413, - [SMALL_STATE(1828)] = 53502, - [SMALL_STATE(1829)] = 53591, - [SMALL_STATE(1830)] = 53680, - [SMALL_STATE(1831)] = 53769, - [SMALL_STATE(1832)] = 53858, - [SMALL_STATE(1833)] = 53947, - [SMALL_STATE(1834)] = 54036, - [SMALL_STATE(1835)] = 54125, - [SMALL_STATE(1836)] = 54214, - [SMALL_STATE(1837)] = 54303, - [SMALL_STATE(1838)] = 54392, - [SMALL_STATE(1839)] = 54481, - [SMALL_STATE(1840)] = 54568, - [SMALL_STATE(1841)] = 54657, - [SMALL_STATE(1842)] = 54710, - [SMALL_STATE(1843)] = 54796, - [SMALL_STATE(1844)] = 54882, - [SMALL_STATE(1845)] = 54968, - [SMALL_STATE(1846)] = 55054, - [SMALL_STATE(1847)] = 55130, - [SMALL_STATE(1848)] = 55214, - [SMALL_STATE(1849)] = 55300, - [SMALL_STATE(1850)] = 55386, - [SMALL_STATE(1851)] = 55472, - [SMALL_STATE(1852)] = 55558, - [SMALL_STATE(1853)] = 55644, - [SMALL_STATE(1854)] = 55730, - [SMALL_STATE(1855)] = 55816, - [SMALL_STATE(1856)] = 55902, - [SMALL_STATE(1857)] = 55988, - [SMALL_STATE(1858)] = 56074, - [SMALL_STATE(1859)] = 56160, - [SMALL_STATE(1860)] = 56246, - [SMALL_STATE(1861)] = 56332, - [SMALL_STATE(1862)] = 56418, - [SMALL_STATE(1863)] = 56504, - [SMALL_STATE(1864)] = 56590, - [SMALL_STATE(1865)] = 56676, - [SMALL_STATE(1866)] = 56760, - [SMALL_STATE(1867)] = 56846, - [SMALL_STATE(1868)] = 56932, - [SMALL_STATE(1869)] = 57018, - [SMALL_STATE(1870)] = 57104, - [SMALL_STATE(1871)] = 57190, - [SMALL_STATE(1872)] = 57276, - [SMALL_STATE(1873)] = 57362, - [SMALL_STATE(1874)] = 57448, - [SMALL_STATE(1875)] = 57524, - [SMALL_STATE(1876)] = 57610, - [SMALL_STATE(1877)] = 57683, - [SMALL_STATE(1878)] = 57756, - [SMALL_STATE(1879)] = 57829, - [SMALL_STATE(1880)] = 57902, - [SMALL_STATE(1881)] = 57975, - [SMALL_STATE(1882)] = 58049, - [SMALL_STATE(1883)] = 58123, - [SMALL_STATE(1884)] = 58197, - [SMALL_STATE(1885)] = 58271, - [SMALL_STATE(1886)] = 58345, - [SMALL_STATE(1887)] = 58419, - [SMALL_STATE(1888)] = 58493, - [SMALL_STATE(1889)] = 58567, - [SMALL_STATE(1890)] = 58613, - [SMALL_STATE(1891)] = 58659, - [SMALL_STATE(1892)] = 58705, - [SMALL_STATE(1893)] = 58766, - [SMALL_STATE(1894)] = 58827, - [SMALL_STATE(1895)] = 58888, - [SMALL_STATE(1896)] = 58949, - [SMALL_STATE(1897)] = 59010, - [SMALL_STATE(1898)] = 59071, - [SMALL_STATE(1899)] = 59132, - [SMALL_STATE(1900)] = 59193, - [SMALL_STATE(1901)] = 59251, - [SMALL_STATE(1902)] = 59309, - [SMALL_STATE(1903)] = 59345, - [SMALL_STATE(1904)] = 59393, - [SMALL_STATE(1905)] = 59429, - [SMALL_STATE(1906)] = 59474, - [SMALL_STATE(1907)] = 59511, - [SMALL_STATE(1908)] = 59556, - [SMALL_STATE(1909)] = 59593, - [SMALL_STATE(1910)] = 59630, - [SMALL_STATE(1911)] = 59683, - [SMALL_STATE(1912)] = 59728, - [SMALL_STATE(1913)] = 59765, - [SMALL_STATE(1914)] = 59801, - [SMALL_STATE(1915)] = 59841, - [SMALL_STATE(1916)] = 59877, - [SMALL_STATE(1917)] = 59917, - [SMALL_STATE(1918)] = 59957, - [SMALL_STATE(1919)] = 59993, - [SMALL_STATE(1920)] = 60029, - [SMALL_STATE(1921)] = 60069, - [SMALL_STATE(1922)] = 60102, - [SMALL_STATE(1923)] = 60135, - [SMALL_STATE(1924)] = 60168, - [SMALL_STATE(1925)] = 60201, - [SMALL_STATE(1926)] = 60234, - [SMALL_STATE(1927)] = 60265, - [SMALL_STATE(1928)] = 60298, - [SMALL_STATE(1929)] = 60331, - [SMALL_STATE(1930)] = 60364, - [SMALL_STATE(1931)] = 60396, - [SMALL_STATE(1932)] = 60428, - [SMALL_STATE(1933)] = 60488, - [SMALL_STATE(1934)] = 60520, - [SMALL_STATE(1935)] = 60580, - [SMALL_STATE(1936)] = 60624, - [SMALL_STATE(1937)] = 60670, - [SMALL_STATE(1938)] = 60713, - [SMALL_STATE(1939)] = 60746, - [SMALL_STATE(1940)] = 60775, - [SMALL_STATE(1941)] = 60808, - [SMALL_STATE(1942)] = 60839, - [SMALL_STATE(1943)] = 60894, - [SMALL_STATE(1944)] = 60923, - [SMALL_STATE(1945)] = 60956, - [SMALL_STATE(1946)] = 60987, - [SMALL_STATE(1947)] = 61016, - [SMALL_STATE(1948)] = 61047, - [SMALL_STATE(1949)] = 61078, - [SMALL_STATE(1950)] = 61111, - [SMALL_STATE(1951)] = 61140, - [SMALL_STATE(1952)] = 61173, - [SMALL_STATE(1953)] = 61206, - [SMALL_STATE(1954)] = 61235, - [SMALL_STATE(1955)] = 61264, - [SMALL_STATE(1956)] = 61317, - [SMALL_STATE(1957)] = 61346, - [SMALL_STATE(1958)] = 61375, - [SMALL_STATE(1959)] = 61428, - [SMALL_STATE(1960)] = 61457, - [SMALL_STATE(1961)] = 61488, - [SMALL_STATE(1962)] = 61529, - [SMALL_STATE(1963)] = 61560, - [SMALL_STATE(1964)] = 61591, - [SMALL_STATE(1965)] = 61622, - [SMALL_STATE(1966)] = 61650, - [SMALL_STATE(1967)] = 61678, - [SMALL_STATE(1968)] = 61706, - [SMALL_STATE(1969)] = 61734, - [SMALL_STATE(1970)] = 61762, - [SMALL_STATE(1971)] = 61790, - [SMALL_STATE(1972)] = 61818, - [SMALL_STATE(1973)] = 61846, - [SMALL_STATE(1974)] = 61874, - [SMALL_STATE(1975)] = 61902, - [SMALL_STATE(1976)] = 61930, - [SMALL_STATE(1977)] = 61958, - [SMALL_STATE(1978)] = 61986, - [SMALL_STATE(1979)] = 62014, - [SMALL_STATE(1980)] = 62042, - [SMALL_STATE(1981)] = 62070, - [SMALL_STATE(1982)] = 62114, - [SMALL_STATE(1983)] = 62144, - [SMALL_STATE(1984)] = 62172, - [SMALL_STATE(1985)] = 62200, - [SMALL_STATE(1986)] = 62228, - [SMALL_STATE(1987)] = 62256, - [SMALL_STATE(1988)] = 62286, - [SMALL_STATE(1989)] = 62314, - [SMALL_STATE(1990)] = 62342, - [SMALL_STATE(1991)] = 62370, - [SMALL_STATE(1992)] = 62398, - [SMALL_STATE(1993)] = 62426, - [SMALL_STATE(1994)] = 62454, - [SMALL_STATE(1995)] = 62482, - [SMALL_STATE(1996)] = 62510, - [SMALL_STATE(1997)] = 62538, - [SMALL_STATE(1998)] = 62567, - [SMALL_STATE(1999)] = 62598, - [SMALL_STATE(2000)] = 62633, - [SMALL_STATE(2001)] = 62684, - [SMALL_STATE(2002)] = 62713, - [SMALL_STATE(2003)] = 62745, - [SMALL_STATE(2004)] = 62777, - [SMALL_STATE(2005)] = 62805, - [SMALL_STATE(2006)] = 62835, - [SMALL_STATE(2007)] = 62867, - [SMALL_STATE(2008)] = 62911, - [SMALL_STATE(2009)] = 62943, - [SMALL_STATE(2010)] = 62975, - [SMALL_STATE(2011)] = 63007, - [SMALL_STATE(2012)] = 63035, - [SMALL_STATE(2013)] = 63067, - [SMALL_STATE(2014)] = 63099, - [SMALL_STATE(2015)] = 63131, - [SMALL_STATE(2016)] = 63163, - [SMALL_STATE(2017)] = 63195, - [SMALL_STATE(2018)] = 63227, - [SMALL_STATE(2019)] = 63272, - [SMALL_STATE(2020)] = 63317, - [SMALL_STATE(2021)] = 63362, - [SMALL_STATE(2022)] = 63407, - [SMALL_STATE(2023)] = 63452, - [SMALL_STATE(2024)] = 63497, - [SMALL_STATE(2025)] = 63542, - [SMALL_STATE(2026)] = 63587, - [SMALL_STATE(2027)] = 63624, - [SMALL_STATE(2028)] = 63669, - [SMALL_STATE(2029)] = 63714, - [SMALL_STATE(2030)] = 63759, - [SMALL_STATE(2031)] = 63804, - [SMALL_STATE(2032)] = 63849, - [SMALL_STATE(2033)] = 63894, - [SMALL_STATE(2034)] = 63939, - [SMALL_STATE(2035)] = 63977, - [SMALL_STATE(2036)] = 64005, - [SMALL_STATE(2037)] = 64033, - [SMALL_STATE(2038)] = 64071, - [SMALL_STATE(2039)] = 64111, - [SMALL_STATE(2040)] = 64135, - [SMALL_STATE(2041)] = 64163, - [SMALL_STATE(2042)] = 64191, - [SMALL_STATE(2043)] = 64231, - [SMALL_STATE(2044)] = 64259, - [SMALL_STATE(2045)] = 64297, - [SMALL_STATE(2046)] = 64325, - [SMALL_STATE(2047)] = 64353, - [SMALL_STATE(2048)] = 64377, - [SMALL_STATE(2049)] = 64405, - [SMALL_STATE(2050)] = 64445, - [SMALL_STATE(2051)] = 64475, - [SMALL_STATE(2052)] = 64517, - [SMALL_STATE(2053)] = 64559, - [SMALL_STATE(2054)] = 64583, - [SMALL_STATE(2055)] = 64611, - [SMALL_STATE(2056)] = 64653, - [SMALL_STATE(2057)] = 64677, - [SMALL_STATE(2058)] = 64719, - [SMALL_STATE(2059)] = 64757, - [SMALL_STATE(2060)] = 64781, - [SMALL_STATE(2061)] = 64823, - [SMALL_STATE(2062)] = 64857, - [SMALL_STATE(2063)] = 64899, - [SMALL_STATE(2064)] = 64933, - [SMALL_STATE(2065)] = 64963, - [SMALL_STATE(2066)] = 65001, - [SMALL_STATE(2067)] = 65029, - [SMALL_STATE(2068)] = 65057, - [SMALL_STATE(2069)] = 65087, - [SMALL_STATE(2070)] = 65115, - [SMALL_STATE(2071)] = 65153, - [SMALL_STATE(2072)] = 65183, - [SMALL_STATE(2073)] = 65221, - [SMALL_STATE(2074)] = 65259, - [SMALL_STATE(2075)] = 65297, - [SMALL_STATE(2076)] = 65339, - [SMALL_STATE(2077)] = 65362, - [SMALL_STATE(2078)] = 65385, - [SMALL_STATE(2079)] = 65408, - [SMALL_STATE(2080)] = 65431, - [SMALL_STATE(2081)] = 65454, - [SMALL_STATE(2082)] = 65477, - [SMALL_STATE(2083)] = 65500, - [SMALL_STATE(2084)] = 65523, - [SMALL_STATE(2085)] = 65546, - [SMALL_STATE(2086)] = 65569, - [SMALL_STATE(2087)] = 65592, - [SMALL_STATE(2088)] = 65629, - [SMALL_STATE(2089)] = 65652, - [SMALL_STATE(2090)] = 65693, - [SMALL_STATE(2091)] = 65734, - [SMALL_STATE(2092)] = 65757, - [SMALL_STATE(2093)] = 65780, - [SMALL_STATE(2094)] = 65803, - [SMALL_STATE(2095)] = 65826, - [SMALL_STATE(2096)] = 65849, - [SMALL_STATE(2097)] = 65872, - [SMALL_STATE(2098)] = 65895, - [SMALL_STATE(2099)] = 65918, - [SMALL_STATE(2100)] = 65941, - [SMALL_STATE(2101)] = 65964, - [SMALL_STATE(2102)] = 65987, - [SMALL_STATE(2103)] = 66010, - [SMALL_STATE(2104)] = 66033, - [SMALL_STATE(2105)] = 66056, - [SMALL_STATE(2106)] = 66093, - [SMALL_STATE(2107)] = 66116, - [SMALL_STATE(2108)] = 66139, - [SMALL_STATE(2109)] = 66180, - [SMALL_STATE(2110)] = 66211, - [SMALL_STATE(2111)] = 66234, - [SMALL_STATE(2112)] = 66271, - [SMALL_STATE(2113)] = 66294, - [SMALL_STATE(2114)] = 66329, - [SMALL_STATE(2115)] = 66362, - [SMALL_STATE(2116)] = 66385, - [SMALL_STATE(2117)] = 66426, - [SMALL_STATE(2118)] = 66461, - [SMALL_STATE(2119)] = 66492, - [SMALL_STATE(2120)] = 66523, - [SMALL_STATE(2121)] = 66558, - [SMALL_STATE(2122)] = 66581, - [SMALL_STATE(2123)] = 66604, - [SMALL_STATE(2124)] = 66641, - [SMALL_STATE(2125)] = 66672, - [SMALL_STATE(2126)] = 66695, - [SMALL_STATE(2127)] = 66718, - [SMALL_STATE(2128)] = 66741, - [SMALL_STATE(2129)] = 66765, - [SMALL_STATE(2130)] = 66799, - [SMALL_STATE(2131)] = 66831, - [SMALL_STATE(2132)] = 66863, - [SMALL_STATE(2133)] = 66901, - [SMALL_STATE(2134)] = 66929, - [SMALL_STATE(2135)] = 66953, - [SMALL_STATE(2136)] = 66987, - [SMALL_STATE(2137)] = 67019, - [SMALL_STATE(2138)] = 67047, - [SMALL_STATE(2139)] = 67071, - [SMALL_STATE(2140)] = 67109, - [SMALL_STATE(2141)] = 67141, - [SMALL_STATE(2142)] = 67179, - [SMALL_STATE(2143)] = 67217, - [SMALL_STATE(2144)] = 67255, - [SMALL_STATE(2145)] = 67293, - [SMALL_STATE(2146)] = 67331, - [SMALL_STATE(2147)] = 67357, - [SMALL_STATE(2148)] = 67389, - [SMALL_STATE(2149)] = 67427, - [SMALL_STATE(2150)] = 67451, - [SMALL_STATE(2151)] = 67487, - [SMALL_STATE(2152)] = 67515, - [SMALL_STATE(2153)] = 67547, - [SMALL_STATE(2154)] = 67573, - [SMALL_STATE(2155)] = 67601, - [SMALL_STATE(2156)] = 67633, - [SMALL_STATE(2157)] = 67657, - [SMALL_STATE(2158)] = 67689, - [SMALL_STATE(2159)] = 67727, - [SMALL_STATE(2160)] = 67765, - [SMALL_STATE(2161)] = 67793, - [SMALL_STATE(2162)] = 67831, - [SMALL_STATE(2163)] = 67859, - [SMALL_STATE(2164)] = 67885, - [SMALL_STATE(2165)] = 67923, - [SMALL_STATE(2166)] = 67955, - [SMALL_STATE(2167)] = 67993, - [SMALL_STATE(2168)] = 68031, - [SMALL_STATE(2169)] = 68063, - [SMALL_STATE(2170)] = 68101, - [SMALL_STATE(2171)] = 68133, - [SMALL_STATE(2172)] = 68171, - [SMALL_STATE(2173)] = 68203, - [SMALL_STATE(2174)] = 68229, - [SMALL_STATE(2175)] = 68261, - [SMALL_STATE(2176)] = 68289, - [SMALL_STATE(2177)] = 68324, - [SMALL_STATE(2178)] = 68345, - [SMALL_STATE(2179)] = 68366, - [SMALL_STATE(2180)] = 68387, - [SMALL_STATE(2181)] = 68422, - [SMALL_STATE(2182)] = 68457, - [SMALL_STATE(2183)] = 68492, - [SMALL_STATE(2184)] = 68527, - [SMALL_STATE(2185)] = 68562, - [SMALL_STATE(2186)] = 68597, - [SMALL_STATE(2187)] = 68632, - [SMALL_STATE(2188)] = 68667, - [SMALL_STATE(2189)] = 68702, - [SMALL_STATE(2190)] = 68737, - [SMALL_STATE(2191)] = 68772, - [SMALL_STATE(2192)] = 68807, - [SMALL_STATE(2193)] = 68842, - [SMALL_STATE(2194)] = 68877, - [SMALL_STATE(2195)] = 68912, - [SMALL_STATE(2196)] = 68947, - [SMALL_STATE(2197)] = 68982, - [SMALL_STATE(2198)] = 69017, - [SMALL_STATE(2199)] = 69052, - [SMALL_STATE(2200)] = 69087, - [SMALL_STATE(2201)] = 69122, - [SMALL_STATE(2202)] = 69147, - [SMALL_STATE(2203)] = 69182, - [SMALL_STATE(2204)] = 69207, - [SMALL_STATE(2205)] = 69242, - [SMALL_STATE(2206)] = 69277, - [SMALL_STATE(2207)] = 69306, - [SMALL_STATE(2208)] = 69327, - [SMALL_STATE(2209)] = 69348, - [SMALL_STATE(2210)] = 69383, - [SMALL_STATE(2211)] = 69418, - [SMALL_STATE(2212)] = 69451, - [SMALL_STATE(2213)] = 69486, - [SMALL_STATE(2214)] = 69511, - [SMALL_STATE(2215)] = 69546, - [SMALL_STATE(2216)] = 69581, - [SMALL_STATE(2217)] = 69614, - [SMALL_STATE(2218)] = 69649, - [SMALL_STATE(2219)] = 69684, - [SMALL_STATE(2220)] = 69719, - [SMALL_STATE(2221)] = 69746, - [SMALL_STATE(2222)] = 69779, - [SMALL_STATE(2223)] = 69812, - [SMALL_STATE(2224)] = 69833, - [SMALL_STATE(2225)] = 69868, - [SMALL_STATE(2226)] = 69903, - [SMALL_STATE(2227)] = 69938, - [SMALL_STATE(2228)] = 69973, - [SMALL_STATE(2229)] = 70008, - [SMALL_STATE(2230)] = 70043, - [SMALL_STATE(2231)] = 70076, - [SMALL_STATE(2232)] = 70111, - [SMALL_STATE(2233)] = 70137, - [SMALL_STATE(2234)] = 70163, - [SMALL_STATE(2235)] = 70193, - [SMALL_STATE(2236)] = 70223, - [SMALL_STATE(2237)] = 70253, - [SMALL_STATE(2238)] = 70283, - [SMALL_STATE(2239)] = 70311, - [SMALL_STATE(2240)] = 70343, - [SMALL_STATE(2241)] = 70365, - [SMALL_STATE(2242)] = 70397, - [SMALL_STATE(2243)] = 70429, - [SMALL_STATE(2244)] = 70461, - [SMALL_STATE(2245)] = 70493, - [SMALL_STATE(2246)] = 70525, - [SMALL_STATE(2247)] = 70557, - [SMALL_STATE(2248)] = 70589, - [SMALL_STATE(2249)] = 70621, - [SMALL_STATE(2250)] = 70651, - [SMALL_STATE(2251)] = 70681, - [SMALL_STATE(2252)] = 70713, - [SMALL_STATE(2253)] = 70745, - [SMALL_STATE(2254)] = 70777, - [SMALL_STATE(2255)] = 70809, - [SMALL_STATE(2256)] = 70841, - [SMALL_STATE(2257)] = 70873, - [SMALL_STATE(2258)] = 70901, - [SMALL_STATE(2259)] = 70933, - [SMALL_STATE(2260)] = 70965, - [SMALL_STATE(2261)] = 70997, - [SMALL_STATE(2262)] = 71027, - [SMALL_STATE(2263)] = 71057, - [SMALL_STATE(2264)] = 71089, - [SMALL_STATE(2265)] = 71119, - [SMALL_STATE(2266)] = 71149, - [SMALL_STATE(2267)] = 71171, - [SMALL_STATE(2268)] = 71203, - [SMALL_STATE(2269)] = 71235, - [SMALL_STATE(2270)] = 71267, - [SMALL_STATE(2271)] = 71295, - [SMALL_STATE(2272)] = 71327, - [SMALL_STATE(2273)] = 71349, - [SMALL_STATE(2274)] = 71381, - [SMALL_STATE(2275)] = 71413, - [SMALL_STATE(2276)] = 71445, - [SMALL_STATE(2277)] = 71477, - [SMALL_STATE(2278)] = 71509, - [SMALL_STATE(2279)] = 71541, - [SMALL_STATE(2280)] = 71573, - [SMALL_STATE(2281)] = 71605, - [SMALL_STATE(2282)] = 71633, - [SMALL_STATE(2283)] = 71659, - [SMALL_STATE(2284)] = 71681, - [SMALL_STATE(2285)] = 71709, - [SMALL_STATE(2286)] = 71735, - [SMALL_STATE(2287)] = 71767, - [SMALL_STATE(2288)] = 71789, - [SMALL_STATE(2289)] = 71811, - [SMALL_STATE(2290)] = 71843, - [SMALL_STATE(2291)] = 71872, - [SMALL_STATE(2292)] = 71901, - [SMALL_STATE(2293)] = 71922, - [SMALL_STATE(2294)] = 71951, - [SMALL_STATE(2295)] = 71980, - [SMALL_STATE(2296)] = 72009, - [SMALL_STATE(2297)] = 72038, - [SMALL_STATE(2298)] = 72067, - [SMALL_STATE(2299)] = 72096, - [SMALL_STATE(2300)] = 72117, - [SMALL_STATE(2301)] = 72146, - [SMALL_STATE(2302)] = 72175, - [SMALL_STATE(2303)] = 72198, - [SMALL_STATE(2304)] = 72227, - [SMALL_STATE(2305)] = 72252, - [SMALL_STATE(2306)] = 72279, - [SMALL_STATE(2307)] = 72308, - [SMALL_STATE(2308)] = 72337, - [SMALL_STATE(2309)] = 72366, - [SMALL_STATE(2310)] = 72395, - [SMALL_STATE(2311)] = 72424, - [SMALL_STATE(2312)] = 72447, - [SMALL_STATE(2313)] = 72476, - [SMALL_STATE(2314)] = 72505, - [SMALL_STATE(2315)] = 72534, - [SMALL_STATE(2316)] = 72555, - [SMALL_STATE(2317)] = 72584, - [SMALL_STATE(2318)] = 72613, - [SMALL_STATE(2319)] = 72642, - [SMALL_STATE(2320)] = 72665, - [SMALL_STATE(2321)] = 72684, - [SMALL_STATE(2322)] = 72713, - [SMALL_STATE(2323)] = 72742, - [SMALL_STATE(2324)] = 72771, - [SMALL_STATE(2325)] = 72800, - [SMALL_STATE(2326)] = 72829, - [SMALL_STATE(2327)] = 72858, - [SMALL_STATE(2328)] = 72887, - [SMALL_STATE(2329)] = 72916, - [SMALL_STATE(2330)] = 72945, - [SMALL_STATE(2331)] = 72974, - [SMALL_STATE(2332)] = 73003, - [SMALL_STATE(2333)] = 73032, - [SMALL_STATE(2334)] = 73061, - [SMALL_STATE(2335)] = 73090, - [SMALL_STATE(2336)] = 73119, - [SMALL_STATE(2337)] = 73142, - [SMALL_STATE(2338)] = 73169, - [SMALL_STATE(2339)] = 73198, - [SMALL_STATE(2340)] = 73227, - [SMALL_STATE(2341)] = 73246, - [SMALL_STATE(2342)] = 73269, - [SMALL_STATE(2343)] = 73294, - [SMALL_STATE(2344)] = 73323, - [SMALL_STATE(2345)] = 73344, - [SMALL_STATE(2346)] = 73373, - [SMALL_STATE(2347)] = 73402, - [SMALL_STATE(2348)] = 73431, - [SMALL_STATE(2349)] = 73458, - [SMALL_STATE(2350)] = 73487, - [SMALL_STATE(2351)] = 73516, - [SMALL_STATE(2352)] = 73545, - [SMALL_STATE(2353)] = 73574, - [SMALL_STATE(2354)] = 73603, - [SMALL_STATE(2355)] = 73630, - [SMALL_STATE(2356)] = 73659, - [SMALL_STATE(2357)] = 73682, - [SMALL_STATE(2358)] = 73711, - [SMALL_STATE(2359)] = 73740, - [SMALL_STATE(2360)] = 73769, - [SMALL_STATE(2361)] = 73790, - [SMALL_STATE(2362)] = 73811, - [SMALL_STATE(2363)] = 73832, - [SMALL_STATE(2364)] = 73853, - [SMALL_STATE(2365)] = 73882, - [SMALL_STATE(2366)] = 73905, - [SMALL_STATE(2367)] = 73934, - [SMALL_STATE(2368)] = 73963, - [SMALL_STATE(2369)] = 73992, - [SMALL_STATE(2370)] = 74021, - [SMALL_STATE(2371)] = 74050, - [SMALL_STATE(2372)] = 74077, - [SMALL_STATE(2373)] = 74102, - [SMALL_STATE(2374)] = 74131, - [SMALL_STATE(2375)] = 74156, - [SMALL_STATE(2376)] = 74185, - [SMALL_STATE(2377)] = 74214, - [SMALL_STATE(2378)] = 74241, - [SMALL_STATE(2379)] = 74270, - [SMALL_STATE(2380)] = 74293, - [SMALL_STATE(2381)] = 74316, - [SMALL_STATE(2382)] = 74345, - [SMALL_STATE(2383)] = 74368, - [SMALL_STATE(2384)] = 74397, - [SMALL_STATE(2385)] = 74420, - [SMALL_STATE(2386)] = 74443, - [SMALL_STATE(2387)] = 74466, - [SMALL_STATE(2388)] = 74489, - [SMALL_STATE(2389)] = 74518, - [SMALL_STATE(2390)] = 74544, - [SMALL_STATE(2391)] = 74570, - [SMALL_STATE(2392)] = 74594, - [SMALL_STATE(2393)] = 74618, - [SMALL_STATE(2394)] = 74644, - [SMALL_STATE(2395)] = 74670, - [SMALL_STATE(2396)] = 74696, - [SMALL_STATE(2397)] = 74720, - [SMALL_STATE(2398)] = 74746, - [SMALL_STATE(2399)] = 74772, - [SMALL_STATE(2400)] = 74798, - [SMALL_STATE(2401)] = 74822, - [SMALL_STATE(2402)] = 74848, - [SMALL_STATE(2403)] = 74874, - [SMALL_STATE(2404)] = 74892, - [SMALL_STATE(2405)] = 74918, - [SMALL_STATE(2406)] = 74944, - [SMALL_STATE(2407)] = 74964, - [SMALL_STATE(2408)] = 74986, - [SMALL_STATE(2409)] = 75012, - [SMALL_STATE(2410)] = 75038, - [SMALL_STATE(2411)] = 75064, - [SMALL_STATE(2412)] = 75090, - [SMALL_STATE(2413)] = 75116, - [SMALL_STATE(2414)] = 75142, - [SMALL_STATE(2415)] = 75168, - [SMALL_STATE(2416)] = 75194, - [SMALL_STATE(2417)] = 75212, - [SMALL_STATE(2418)] = 75230, - [SMALL_STATE(2419)] = 75248, - [SMALL_STATE(2420)] = 75274, - [SMALL_STATE(2421)] = 75300, - [SMALL_STATE(2422)] = 75320, - [SMALL_STATE(2423)] = 75346, - [SMALL_STATE(2424)] = 75372, - [SMALL_STATE(2425)] = 75394, - [SMALL_STATE(2426)] = 75420, - [SMALL_STATE(2427)] = 75446, - [SMALL_STATE(2428)] = 75470, - [SMALL_STATE(2429)] = 75492, - [SMALL_STATE(2430)] = 75518, - [SMALL_STATE(2431)] = 75542, - [SMALL_STATE(2432)] = 75568, - [SMALL_STATE(2433)] = 75594, - [SMALL_STATE(2434)] = 75618, - [SMALL_STATE(2435)] = 75644, - [SMALL_STATE(2436)] = 75662, - [SMALL_STATE(2437)] = 75688, - [SMALL_STATE(2438)] = 75714, - [SMALL_STATE(2439)] = 75736, - [SMALL_STATE(2440)] = 75754, - [SMALL_STATE(2441)] = 75778, - [SMALL_STATE(2442)] = 75804, - [SMALL_STATE(2443)] = 75822, - [SMALL_STATE(2444)] = 75840, - [SMALL_STATE(2445)] = 75858, - [SMALL_STATE(2446)] = 75884, - [SMALL_STATE(2447)] = 75902, - [SMALL_STATE(2448)] = 75928, - [SMALL_STATE(2449)] = 75946, - [SMALL_STATE(2450)] = 75964, - [SMALL_STATE(2451)] = 75990, - [SMALL_STATE(2452)] = 76016, - [SMALL_STATE(2453)] = 76034, - [SMALL_STATE(2454)] = 76052, - [SMALL_STATE(2455)] = 76070, - [SMALL_STATE(2456)] = 76088, - [SMALL_STATE(2457)] = 76106, - [SMALL_STATE(2458)] = 76132, - [SMALL_STATE(2459)] = 76154, - [SMALL_STATE(2460)] = 76180, - [SMALL_STATE(2461)] = 76204, - [SMALL_STATE(2462)] = 76222, - [SMALL_STATE(2463)] = 76244, - [SMALL_STATE(2464)] = 76262, - [SMALL_STATE(2465)] = 76288, - [SMALL_STATE(2466)] = 76314, - [SMALL_STATE(2467)] = 76340, - [SMALL_STATE(2468)] = 76366, - [SMALL_STATE(2469)] = 76390, - [SMALL_STATE(2470)] = 76414, - [SMALL_STATE(2471)] = 76432, - [SMALL_STATE(2472)] = 76456, - [SMALL_STATE(2473)] = 76474, - [SMALL_STATE(2474)] = 76498, - [SMALL_STATE(2475)] = 76524, - [SMALL_STATE(2476)] = 76546, - [SMALL_STATE(2477)] = 76568, - [SMALL_STATE(2478)] = 76586, - [SMALL_STATE(2479)] = 76604, - [SMALL_STATE(2480)] = 76622, - [SMALL_STATE(2481)] = 76642, - [SMALL_STATE(2482)] = 76666, - [SMALL_STATE(2483)] = 76690, - [SMALL_STATE(2484)] = 76716, - [SMALL_STATE(2485)] = 76742, - [SMALL_STATE(2486)] = 76768, - [SMALL_STATE(2487)] = 76794, - [SMALL_STATE(2488)] = 76816, - [SMALL_STATE(2489)] = 76838, - [SMALL_STATE(2490)] = 76864, - [SMALL_STATE(2491)] = 76890, - [SMALL_STATE(2492)] = 76916, - [SMALL_STATE(2493)] = 76942, - [SMALL_STATE(2494)] = 76960, - [SMALL_STATE(2495)] = 76981, - [SMALL_STATE(2496)] = 77004, - [SMALL_STATE(2497)] = 77025, - [SMALL_STATE(2498)] = 77048, - [SMALL_STATE(2499)] = 77071, - [SMALL_STATE(2500)] = 77094, - [SMALL_STATE(2501)] = 77117, - [SMALL_STATE(2502)] = 77140, - [SMALL_STATE(2503)] = 77163, - [SMALL_STATE(2504)] = 77186, - [SMALL_STATE(2505)] = 77209, - [SMALL_STATE(2506)] = 77232, - [SMALL_STATE(2507)] = 77255, - [SMALL_STATE(2508)] = 77278, - [SMALL_STATE(2509)] = 77297, - [SMALL_STATE(2510)] = 77320, - [SMALL_STATE(2511)] = 77339, - [SMALL_STATE(2512)] = 77362, - [SMALL_STATE(2513)] = 77385, - [SMALL_STATE(2514)] = 77408, - [SMALL_STATE(2515)] = 77431, - [SMALL_STATE(2516)] = 77454, - [SMALL_STATE(2517)] = 77473, - [SMALL_STATE(2518)] = 77496, - [SMALL_STATE(2519)] = 77519, - [SMALL_STATE(2520)] = 77542, - [SMALL_STATE(2521)] = 77563, - [SMALL_STATE(2522)] = 77586, - [SMALL_STATE(2523)] = 77609, - [SMALL_STATE(2524)] = 77632, - [SMALL_STATE(2525)] = 77655, - [SMALL_STATE(2526)] = 77678, - [SMALL_STATE(2527)] = 77701, - [SMALL_STATE(2528)] = 77722, - [SMALL_STATE(2529)] = 77743, - [SMALL_STATE(2530)] = 77764, - [SMALL_STATE(2531)] = 77787, - [SMALL_STATE(2532)] = 77810, - [SMALL_STATE(2533)] = 77833, - [SMALL_STATE(2534)] = 77850, - [SMALL_STATE(2535)] = 77873, - [SMALL_STATE(2536)] = 77894, - [SMALL_STATE(2537)] = 77917, - [SMALL_STATE(2538)] = 77938, - [SMALL_STATE(2539)] = 77961, - [SMALL_STATE(2540)] = 77984, - [SMALL_STATE(2541)] = 78007, - [SMALL_STATE(2542)] = 78030, - [SMALL_STATE(2543)] = 78053, - [SMALL_STATE(2544)] = 78076, - [SMALL_STATE(2545)] = 78099, - [SMALL_STATE(2546)] = 78122, - [SMALL_STATE(2547)] = 78139, - [SMALL_STATE(2548)] = 78162, - [SMALL_STATE(2549)] = 78185, - [SMALL_STATE(2550)] = 78204, - [SMALL_STATE(2551)] = 78223, - [SMALL_STATE(2552)] = 78242, - [SMALL_STATE(2553)] = 78259, - [SMALL_STATE(2554)] = 78282, - [SMALL_STATE(2555)] = 78305, - [SMALL_STATE(2556)] = 78328, - [SMALL_STATE(2557)] = 78351, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78397, - [SMALL_STATE(2560)] = 78420, - [SMALL_STATE(2561)] = 78443, - [SMALL_STATE(2562)] = 78466, - [SMALL_STATE(2563)] = 78489, - [SMALL_STATE(2564)] = 78510, - [SMALL_STATE(2565)] = 78531, - [SMALL_STATE(2566)] = 78550, - [SMALL_STATE(2567)] = 78573, - [SMALL_STATE(2568)] = 78596, - [SMALL_STATE(2569)] = 78619, - [SMALL_STATE(2570)] = 78638, - [SMALL_STATE(2571)] = 78661, - [SMALL_STATE(2572)] = 78684, - [SMALL_STATE(2573)] = 78707, - [SMALL_STATE(2574)] = 78730, - [SMALL_STATE(2575)] = 78753, - [SMALL_STATE(2576)] = 78774, - [SMALL_STATE(2577)] = 78797, - [SMALL_STATE(2578)] = 78820, - [SMALL_STATE(2579)] = 78843, - [SMALL_STATE(2580)] = 78866, - [SMALL_STATE(2581)] = 78889, - [SMALL_STATE(2582)] = 78908, - [SMALL_STATE(2583)] = 78931, - [SMALL_STATE(2584)] = 78954, - [SMALL_STATE(2585)] = 78975, - [SMALL_STATE(2586)] = 78998, - [SMALL_STATE(2587)] = 79021, - [SMALL_STATE(2588)] = 79040, - [SMALL_STATE(2589)] = 79061, - [SMALL_STATE(2590)] = 79080, - [SMALL_STATE(2591)] = 79103, - [SMALL_STATE(2592)] = 79126, - [SMALL_STATE(2593)] = 79149, - [SMALL_STATE(2594)] = 79172, - [SMALL_STATE(2595)] = 79195, - [SMALL_STATE(2596)] = 79216, - [SMALL_STATE(2597)] = 79239, - [SMALL_STATE(2598)] = 79262, - [SMALL_STATE(2599)] = 79285, - [SMALL_STATE(2600)] = 79308, - [SMALL_STATE(2601)] = 79331, - [SMALL_STATE(2602)] = 79354, - [SMALL_STATE(2603)] = 79377, - [SMALL_STATE(2604)] = 79400, - [SMALL_STATE(2605)] = 79417, - [SMALL_STATE(2606)] = 79438, - [SMALL_STATE(2607)] = 79455, - [SMALL_STATE(2608)] = 79478, - [SMALL_STATE(2609)] = 79501, - [SMALL_STATE(2610)] = 79524, - [SMALL_STATE(2611)] = 79547, - [SMALL_STATE(2612)] = 79570, - [SMALL_STATE(2613)] = 79593, - [SMALL_STATE(2614)] = 79616, - [SMALL_STATE(2615)] = 79639, - [SMALL_STATE(2616)] = 79662, - [SMALL_STATE(2617)] = 79685, - [SMALL_STATE(2618)] = 79706, - [SMALL_STATE(2619)] = 79729, - [SMALL_STATE(2620)] = 79752, - [SMALL_STATE(2621)] = 79775, - [SMALL_STATE(2622)] = 79798, - [SMALL_STATE(2623)] = 79817, - [SMALL_STATE(2624)] = 79838, - [SMALL_STATE(2625)] = 79861, - [SMALL_STATE(2626)] = 79884, - [SMALL_STATE(2627)] = 79907, - [SMALL_STATE(2628)] = 79930, - [SMALL_STATE(2629)] = 79953, - [SMALL_STATE(2630)] = 79976, - [SMALL_STATE(2631)] = 79997, - [SMALL_STATE(2632)] = 80020, - [SMALL_STATE(2633)] = 80041, - [SMALL_STATE(2634)] = 80064, - [SMALL_STATE(2635)] = 80085, - [SMALL_STATE(2636)] = 80108, - [SMALL_STATE(2637)] = 80131, - [SMALL_STATE(2638)] = 80154, - [SMALL_STATE(2639)] = 80177, - [SMALL_STATE(2640)] = 80200, - [SMALL_STATE(2641)] = 80223, - [SMALL_STATE(2642)] = 80244, - [SMALL_STATE(2643)] = 80265, - [SMALL_STATE(2644)] = 80288, - [SMALL_STATE(2645)] = 80311, - [SMALL_STATE(2646)] = 80334, - [SMALL_STATE(2647)] = 80357, - [SMALL_STATE(2648)] = 80380, - [SMALL_STATE(2649)] = 80403, - [SMALL_STATE(2650)] = 80426, - [SMALL_STATE(2651)] = 80449, - [SMALL_STATE(2652)] = 80472, - [SMALL_STATE(2653)] = 80495, - [SMALL_STATE(2654)] = 80518, - [SMALL_STATE(2655)] = 80541, - [SMALL_STATE(2656)] = 80564, - [SMALL_STATE(2657)] = 80587, - [SMALL_STATE(2658)] = 80610, - [SMALL_STATE(2659)] = 80633, - [SMALL_STATE(2660)] = 80656, - [SMALL_STATE(2661)] = 80679, - [SMALL_STATE(2662)] = 80698, - [SMALL_STATE(2663)] = 80715, - [SMALL_STATE(2664)] = 80736, - [SMALL_STATE(2665)] = 80755, - [SMALL_STATE(2666)] = 80778, - [SMALL_STATE(2667)] = 80797, - [SMALL_STATE(2668)] = 80816, - [SMALL_STATE(2669)] = 80839, - [SMALL_STATE(2670)] = 80862, - [SMALL_STATE(2671)] = 80881, - [SMALL_STATE(2672)] = 80904, - [SMALL_STATE(2673)] = 80927, - [SMALL_STATE(2674)] = 80950, - [SMALL_STATE(2675)] = 80973, - [SMALL_STATE(2676)] = 80996, - [SMALL_STATE(2677)] = 81019, - [SMALL_STATE(2678)] = 81042, - [SMALL_STATE(2679)] = 81065, - [SMALL_STATE(2680)] = 81084, - [SMALL_STATE(2681)] = 81103, - [SMALL_STATE(2682)] = 81120, - [SMALL_STATE(2683)] = 81139, - [SMALL_STATE(2684)] = 81162, - [SMALL_STATE(2685)] = 81185, - [SMALL_STATE(2686)] = 81208, - [SMALL_STATE(2687)] = 81231, - [SMALL_STATE(2688)] = 81254, - [SMALL_STATE(2689)] = 81275, - [SMALL_STATE(2690)] = 81298, - [SMALL_STATE(2691)] = 81321, - [SMALL_STATE(2692)] = 81340, - [SMALL_STATE(2693)] = 81357, - [SMALL_STATE(2694)] = 81380, - [SMALL_STATE(2695)] = 81403, - [SMALL_STATE(2696)] = 81426, - [SMALL_STATE(2697)] = 81445, - [SMALL_STATE(2698)] = 81468, - [SMALL_STATE(2699)] = 81491, - [SMALL_STATE(2700)] = 81514, - [SMALL_STATE(2701)] = 81537, - [SMALL_STATE(2702)] = 81560, - [SMALL_STATE(2703)] = 81583, - [SMALL_STATE(2704)] = 81606, - [SMALL_STATE(2705)] = 81629, - [SMALL_STATE(2706)] = 81652, - [SMALL_STATE(2707)] = 81675, - [SMALL_STATE(2708)] = 81696, - [SMALL_STATE(2709)] = 81717, - [SMALL_STATE(2710)] = 81740, - [SMALL_STATE(2711)] = 81763, - [SMALL_STATE(2712)] = 81784, - [SMALL_STATE(2713)] = 81807, - [SMALL_STATE(2714)] = 81828, - [SMALL_STATE(2715)] = 81851, - [SMALL_STATE(2716)] = 81874, - [SMALL_STATE(2717)] = 81893, - [SMALL_STATE(2718)] = 81916, - [SMALL_STATE(2719)] = 81935, - [SMALL_STATE(2720)] = 81958, - [SMALL_STATE(2721)] = 81981, - [SMALL_STATE(2722)] = 82004, - [SMALL_STATE(2723)] = 82027, - [SMALL_STATE(2724)] = 82046, - [SMALL_STATE(2725)] = 82069, - [SMALL_STATE(2726)] = 82092, - [SMALL_STATE(2727)] = 82111, - [SMALL_STATE(2728)] = 82134, - [SMALL_STATE(2729)] = 82157, - [SMALL_STATE(2730)] = 82180, - [SMALL_STATE(2731)] = 82203, - [SMALL_STATE(2732)] = 82219, - [SMALL_STATE(2733)] = 82239, - [SMALL_STATE(2734)] = 82259, - [SMALL_STATE(2735)] = 82279, - [SMALL_STATE(2736)] = 82299, - [SMALL_STATE(2737)] = 82319, - [SMALL_STATE(2738)] = 82339, - [SMALL_STATE(2739)] = 82359, - [SMALL_STATE(2740)] = 82379, - [SMALL_STATE(2741)] = 82395, - [SMALL_STATE(2742)] = 82415, - [SMALL_STATE(2743)] = 82435, - [SMALL_STATE(2744)] = 82455, - [SMALL_STATE(2745)] = 82475, - [SMALL_STATE(2746)] = 82495, - [SMALL_STATE(2747)] = 82511, - [SMALL_STATE(2748)] = 82531, - [SMALL_STATE(2749)] = 82549, - [SMALL_STATE(2750)] = 82567, - [SMALL_STATE(2751)] = 82585, - [SMALL_STATE(2752)] = 82605, - [SMALL_STATE(2753)] = 82625, - [SMALL_STATE(2754)] = 82645, - [SMALL_STATE(2755)] = 82663, - [SMALL_STATE(2756)] = 82683, - [SMALL_STATE(2757)] = 82699, - [SMALL_STATE(2758)] = 82719, - [SMALL_STATE(2759)] = 82739, - [SMALL_STATE(2760)] = 82755, - [SMALL_STATE(2761)] = 82773, - [SMALL_STATE(2762)] = 82789, - [SMALL_STATE(2763)] = 82809, - [SMALL_STATE(2764)] = 82827, - [SMALL_STATE(2765)] = 82847, - [SMALL_STATE(2766)] = 82865, - [SMALL_STATE(2767)] = 82881, - [SMALL_STATE(2768)] = 82901, - [SMALL_STATE(2769)] = 82919, - [SMALL_STATE(2770)] = 82937, - [SMALL_STATE(2771)] = 82957, - [SMALL_STATE(2772)] = 82977, - [SMALL_STATE(2773)] = 82997, - [SMALL_STATE(2774)] = 83017, - [SMALL_STATE(2775)] = 83037, - [SMALL_STATE(2776)] = 83057, - [SMALL_STATE(2777)] = 83073, - [SMALL_STATE(2778)] = 83093, - [SMALL_STATE(2779)] = 83113, - [SMALL_STATE(2780)] = 83129, - [SMALL_STATE(2781)] = 83149, - [SMALL_STATE(2782)] = 83169, - [SMALL_STATE(2783)] = 83189, - [SMALL_STATE(2784)] = 83209, - [SMALL_STATE(2785)] = 83229, - [SMALL_STATE(2786)] = 83245, - [SMALL_STATE(2787)] = 83265, - [SMALL_STATE(2788)] = 83285, - [SMALL_STATE(2789)] = 83305, - [SMALL_STATE(2790)] = 83325, - [SMALL_STATE(2791)] = 83345, - [SMALL_STATE(2792)] = 83365, - [SMALL_STATE(2793)] = 83385, - [SMALL_STATE(2794)] = 83405, - [SMALL_STATE(2795)] = 83421, - [SMALL_STATE(2796)] = 83441, - [SMALL_STATE(2797)] = 83459, - [SMALL_STATE(2798)] = 83475, - [SMALL_STATE(2799)] = 83495, - [SMALL_STATE(2800)] = 83513, - [SMALL_STATE(2801)] = 83529, - [SMALL_STATE(2802)] = 83549, - [SMALL_STATE(2803)] = 83565, - [SMALL_STATE(2804)] = 83581, - [SMALL_STATE(2805)] = 83599, - [SMALL_STATE(2806)] = 83619, - [SMALL_STATE(2807)] = 83639, - [SMALL_STATE(2808)] = 83657, - [SMALL_STATE(2809)] = 83677, - [SMALL_STATE(2810)] = 83697, - [SMALL_STATE(2811)] = 83717, - [SMALL_STATE(2812)] = 83737, - [SMALL_STATE(2813)] = 83757, - [SMALL_STATE(2814)] = 83777, - [SMALL_STATE(2815)] = 83797, - [SMALL_STATE(2816)] = 83817, - [SMALL_STATE(2817)] = 83837, - [SMALL_STATE(2818)] = 83857, - [SMALL_STATE(2819)] = 83877, - [SMALL_STATE(2820)] = 83897, - [SMALL_STATE(2821)] = 83913, - [SMALL_STATE(2822)] = 83933, - [SMALL_STATE(2823)] = 83953, - [SMALL_STATE(2824)] = 83971, - [SMALL_STATE(2825)] = 83991, - [SMALL_STATE(2826)] = 84011, - [SMALL_STATE(2827)] = 84031, - [SMALL_STATE(2828)] = 84049, - [SMALL_STATE(2829)] = 84069, - [SMALL_STATE(2830)] = 84089, - [SMALL_STATE(2831)] = 84109, - [SMALL_STATE(2832)] = 84127, - [SMALL_STATE(2833)] = 84147, - [SMALL_STATE(2834)] = 84167, - [SMALL_STATE(2835)] = 84187, - [SMALL_STATE(2836)] = 84207, - [SMALL_STATE(2837)] = 84227, - [SMALL_STATE(2838)] = 84245, - [SMALL_STATE(2839)] = 84265, - [SMALL_STATE(2840)] = 84285, - [SMALL_STATE(2841)] = 84305, - [SMALL_STATE(2842)] = 84321, - [SMALL_STATE(2843)] = 84337, - [SMALL_STATE(2844)] = 84353, - [SMALL_STATE(2845)] = 84371, - [SMALL_STATE(2846)] = 84387, - [SMALL_STATE(2847)] = 84407, - [SMALL_STATE(2848)] = 84425, - [SMALL_STATE(2849)] = 84441, - [SMALL_STATE(2850)] = 84461, - [SMALL_STATE(2851)] = 84481, - [SMALL_STATE(2852)] = 84501, - [SMALL_STATE(2853)] = 84521, - [SMALL_STATE(2854)] = 84541, - [SMALL_STATE(2855)] = 84561, - [SMALL_STATE(2856)] = 84581, - [SMALL_STATE(2857)] = 84601, - [SMALL_STATE(2858)] = 84621, - [SMALL_STATE(2859)] = 84637, - [SMALL_STATE(2860)] = 84657, - [SMALL_STATE(2861)] = 84675, - [SMALL_STATE(2862)] = 84691, - [SMALL_STATE(2863)] = 84711, - [SMALL_STATE(2864)] = 84729, - [SMALL_STATE(2865)] = 84749, - [SMALL_STATE(2866)] = 84769, - [SMALL_STATE(2867)] = 84789, - [SMALL_STATE(2868)] = 84809, - [SMALL_STATE(2869)] = 84827, - [SMALL_STATE(2870)] = 84847, - [SMALL_STATE(2871)] = 84867, - [SMALL_STATE(2872)] = 84883, - [SMALL_STATE(2873)] = 84903, - [SMALL_STATE(2874)] = 84923, - [SMALL_STATE(2875)] = 84941, - [SMALL_STATE(2876)] = 84961, - [SMALL_STATE(2877)] = 84981, - [SMALL_STATE(2878)] = 84997, - [SMALL_STATE(2879)] = 85013, - [SMALL_STATE(2880)] = 85033, - [SMALL_STATE(2881)] = 85051, - [SMALL_STATE(2882)] = 85071, - [SMALL_STATE(2883)] = 85087, - [SMALL_STATE(2884)] = 85107, - [SMALL_STATE(2885)] = 85127, - [SMALL_STATE(2886)] = 85147, - [SMALL_STATE(2887)] = 85167, - [SMALL_STATE(2888)] = 85185, - [SMALL_STATE(2889)] = 85201, - [SMALL_STATE(2890)] = 85217, - [SMALL_STATE(2891)] = 85237, - [SMALL_STATE(2892)] = 85257, - [SMALL_STATE(2893)] = 85277, - [SMALL_STATE(2894)] = 85297, - [SMALL_STATE(2895)] = 85313, - [SMALL_STATE(2896)] = 85329, - [SMALL_STATE(2897)] = 85347, - [SMALL_STATE(2898)] = 85363, - [SMALL_STATE(2899)] = 85383, - [SMALL_STATE(2900)] = 85399, - [SMALL_STATE(2901)] = 85419, - [SMALL_STATE(2902)] = 85439, - [SMALL_STATE(2903)] = 85459, - [SMALL_STATE(2904)] = 85479, - [SMALL_STATE(2905)] = 85499, - [SMALL_STATE(2906)] = 85519, - [SMALL_STATE(2907)] = 85539, - [SMALL_STATE(2908)] = 85559, - [SMALL_STATE(2909)] = 85579, - [SMALL_STATE(2910)] = 85599, - [SMALL_STATE(2911)] = 85619, - [SMALL_STATE(2912)] = 85639, - [SMALL_STATE(2913)] = 85655, - [SMALL_STATE(2914)] = 85673, - [SMALL_STATE(2915)] = 85693, - [SMALL_STATE(2916)] = 85711, - [SMALL_STATE(2917)] = 85731, - [SMALL_STATE(2918)] = 85751, - [SMALL_STATE(2919)] = 85771, - [SMALL_STATE(2920)] = 85791, - [SMALL_STATE(2921)] = 85809, - [SMALL_STATE(2922)] = 85829, - [SMALL_STATE(2923)] = 85847, - [SMALL_STATE(2924)] = 85863, - [SMALL_STATE(2925)] = 85881, - [SMALL_STATE(2926)] = 85901, - [SMALL_STATE(2927)] = 85917, - [SMALL_STATE(2928)] = 85935, - [SMALL_STATE(2929)] = 85953, - [SMALL_STATE(2930)] = 85973, - [SMALL_STATE(2931)] = 85991, - [SMALL_STATE(2932)] = 86009, - [SMALL_STATE(2933)] = 86029, - [SMALL_STATE(2934)] = 86049, - [SMALL_STATE(2935)] = 86069, - [SMALL_STATE(2936)] = 86089, - [SMALL_STATE(2937)] = 86109, - [SMALL_STATE(2938)] = 86129, - [SMALL_STATE(2939)] = 86147, - [SMALL_STATE(2940)] = 86167, - [SMALL_STATE(2941)] = 86183, - [SMALL_STATE(2942)] = 86203, - [SMALL_STATE(2943)] = 86223, - [SMALL_STATE(2944)] = 86243, - [SMALL_STATE(2945)] = 86263, - [SMALL_STATE(2946)] = 86281, - [SMALL_STATE(2947)] = 86301, - [SMALL_STATE(2948)] = 86321, - [SMALL_STATE(2949)] = 86339, - [SMALL_STATE(2950)] = 86355, - [SMALL_STATE(2951)] = 86375, - [SMALL_STATE(2952)] = 86395, - [SMALL_STATE(2953)] = 86415, - [SMALL_STATE(2954)] = 86431, - [SMALL_STATE(2955)] = 86447, - [SMALL_STATE(2956)] = 86467, - [SMALL_STATE(2957)] = 86487, - [SMALL_STATE(2958)] = 86507, - [SMALL_STATE(2959)] = 86523, - [SMALL_STATE(2960)] = 86543, - [SMALL_STATE(2961)] = 86563, - [SMALL_STATE(2962)] = 86583, - [SMALL_STATE(2963)] = 86599, - [SMALL_STATE(2964)] = 86619, - [SMALL_STATE(2965)] = 86635, - [SMALL_STATE(2966)] = 86653, - [SMALL_STATE(2967)] = 86669, - [SMALL_STATE(2968)] = 86689, - [SMALL_STATE(2969)] = 86709, - [SMALL_STATE(2970)] = 86729, - [SMALL_STATE(2971)] = 86749, - [SMALL_STATE(2972)] = 86765, - [SMALL_STATE(2973)] = 86785, - [SMALL_STATE(2974)] = 86801, - [SMALL_STATE(2975)] = 86817, - [SMALL_STATE(2976)] = 86837, - [SMALL_STATE(2977)] = 86857, - [SMALL_STATE(2978)] = 86873, - [SMALL_STATE(2979)] = 86889, - [SMALL_STATE(2980)] = 86909, - [SMALL_STATE(2981)] = 86929, - [SMALL_STATE(2982)] = 86949, - [SMALL_STATE(2983)] = 86969, - [SMALL_STATE(2984)] = 86985, - [SMALL_STATE(2985)] = 87005, - [SMALL_STATE(2986)] = 87025, - [SMALL_STATE(2987)] = 87045, - [SMALL_STATE(2988)] = 87063, - [SMALL_STATE(2989)] = 87079, - [SMALL_STATE(2990)] = 87099, - [SMALL_STATE(2991)] = 87115, - [SMALL_STATE(2992)] = 87135, - [SMALL_STATE(2993)] = 87155, - [SMALL_STATE(2994)] = 87175, - [SMALL_STATE(2995)] = 87195, - [SMALL_STATE(2996)] = 87211, - [SMALL_STATE(2997)] = 87231, - [SMALL_STATE(2998)] = 87251, - [SMALL_STATE(2999)] = 87267, - [SMALL_STATE(3000)] = 87287, - [SMALL_STATE(3001)] = 87303, - [SMALL_STATE(3002)] = 87323, - [SMALL_STATE(3003)] = 87343, - [SMALL_STATE(3004)] = 87363, - [SMALL_STATE(3005)] = 87383, - [SMALL_STATE(3006)] = 87403, - [SMALL_STATE(3007)] = 87421, - [SMALL_STATE(3008)] = 87441, - [SMALL_STATE(3009)] = 87459, - [SMALL_STATE(3010)] = 87479, - [SMALL_STATE(3011)] = 87499, - [SMALL_STATE(3012)] = 87519, - [SMALL_STATE(3013)] = 87539, - [SMALL_STATE(3014)] = 87559, - [SMALL_STATE(3015)] = 87577, - [SMALL_STATE(3016)] = 87597, - [SMALL_STATE(3017)] = 87613, - [SMALL_STATE(3018)] = 87633, - [SMALL_STATE(3019)] = 87653, - [SMALL_STATE(3020)] = 87673, - [SMALL_STATE(3021)] = 87693, - [SMALL_STATE(3022)] = 87713, - [SMALL_STATE(3023)] = 87733, - [SMALL_STATE(3024)] = 87753, - [SMALL_STATE(3025)] = 87773, - [SMALL_STATE(3026)] = 87793, - [SMALL_STATE(3027)] = 87811, - [SMALL_STATE(3028)] = 87831, - [SMALL_STATE(3029)] = 87851, - [SMALL_STATE(3030)] = 87871, - [SMALL_STATE(3031)] = 87891, - [SMALL_STATE(3032)] = 87911, - [SMALL_STATE(3033)] = 87927, - [SMALL_STATE(3034)] = 87942, - [SMALL_STATE(3035)] = 87959, - [SMALL_STATE(3036)] = 87976, - [SMALL_STATE(3037)] = 87991, - [SMALL_STATE(3038)] = 88008, - [SMALL_STATE(3039)] = 88025, - [SMALL_STATE(3040)] = 88040, - [SMALL_STATE(3041)] = 88057, - [SMALL_STATE(3042)] = 88072, - [SMALL_STATE(3043)] = 88089, - [SMALL_STATE(3044)] = 88106, - [SMALL_STATE(3045)] = 88123, - [SMALL_STATE(3046)] = 88140, - [SMALL_STATE(3047)] = 88157, - [SMALL_STATE(3048)] = 88174, - [SMALL_STATE(3049)] = 88191, - [SMALL_STATE(3050)] = 88206, - [SMALL_STATE(3051)] = 88223, - [SMALL_STATE(3052)] = 88240, - [SMALL_STATE(3053)] = 88257, - [SMALL_STATE(3054)] = 88274, - [SMALL_STATE(3055)] = 88291, - [SMALL_STATE(3056)] = 88306, - [SMALL_STATE(3057)] = 88323, - [SMALL_STATE(3058)] = 88340, - [SMALL_STATE(3059)] = 88357, - [SMALL_STATE(3060)] = 88374, - [SMALL_STATE(3061)] = 88391, - [SMALL_STATE(3062)] = 88408, - [SMALL_STATE(3063)] = 88425, - [SMALL_STATE(3064)] = 88440, - [SMALL_STATE(3065)] = 88457, - [SMALL_STATE(3066)] = 88472, - [SMALL_STATE(3067)] = 88489, - [SMALL_STATE(3068)] = 88506, - [SMALL_STATE(3069)] = 88523, - [SMALL_STATE(3070)] = 88540, - [SMALL_STATE(3071)] = 88557, - [SMALL_STATE(3072)] = 88574, - [SMALL_STATE(3073)] = 88591, - [SMALL_STATE(3074)] = 88606, - [SMALL_STATE(3075)] = 88623, - [SMALL_STATE(3076)] = 88640, - [SMALL_STATE(3077)] = 88655, - [SMALL_STATE(3078)] = 88670, - [SMALL_STATE(3079)] = 88685, - [SMALL_STATE(3080)] = 88702, - [SMALL_STATE(3081)] = 88719, - [SMALL_STATE(3082)] = 88736, - [SMALL_STATE(3083)] = 88751, - [SMALL_STATE(3084)] = 88768, - [SMALL_STATE(3085)] = 88783, - [SMALL_STATE(3086)] = 88800, - [SMALL_STATE(3087)] = 88817, - [SMALL_STATE(3088)] = 88834, - [SMALL_STATE(3089)] = 88849, - [SMALL_STATE(3090)] = 88864, - [SMALL_STATE(3091)] = 88881, - [SMALL_STATE(3092)] = 88898, - [SMALL_STATE(3093)] = 88915, - [SMALL_STATE(3094)] = 88932, - [SMALL_STATE(3095)] = 88949, - [SMALL_STATE(3096)] = 88966, - [SMALL_STATE(3097)] = 88983, - [SMALL_STATE(3098)] = 89000, - [SMALL_STATE(3099)] = 89017, - [SMALL_STATE(3100)] = 89034, - [SMALL_STATE(3101)] = 89051, - [SMALL_STATE(3102)] = 89068, - [SMALL_STATE(3103)] = 89085, - [SMALL_STATE(3104)] = 89102, - [SMALL_STATE(3105)] = 89119, - [SMALL_STATE(3106)] = 89136, - [SMALL_STATE(3107)] = 89153, - [SMALL_STATE(3108)] = 89170, - [SMALL_STATE(3109)] = 89187, - [SMALL_STATE(3110)] = 89202, - [SMALL_STATE(3111)] = 89219, - [SMALL_STATE(3112)] = 89236, - [SMALL_STATE(3113)] = 89253, - [SMALL_STATE(3114)] = 89270, - [SMALL_STATE(3115)] = 89287, - [SMALL_STATE(3116)] = 89304, - [SMALL_STATE(3117)] = 89321, - [SMALL_STATE(3118)] = 89338, - [SMALL_STATE(3119)] = 89355, - [SMALL_STATE(3120)] = 89372, - [SMALL_STATE(3121)] = 89387, - [SMALL_STATE(3122)] = 89404, - [SMALL_STATE(3123)] = 89421, - [SMALL_STATE(3124)] = 89438, - [SMALL_STATE(3125)] = 89455, - [SMALL_STATE(3126)] = 89472, - [SMALL_STATE(3127)] = 89489, - [SMALL_STATE(3128)] = 89506, - [SMALL_STATE(3129)] = 89523, - [SMALL_STATE(3130)] = 89540, - [SMALL_STATE(3131)] = 89557, - [SMALL_STATE(3132)] = 89572, - [SMALL_STATE(3133)] = 89589, - [SMALL_STATE(3134)] = 89606, - [SMALL_STATE(3135)] = 89623, - [SMALL_STATE(3136)] = 89638, - [SMALL_STATE(3137)] = 89655, - [SMALL_STATE(3138)] = 89672, - [SMALL_STATE(3139)] = 89687, - [SMALL_STATE(3140)] = 89704, - [SMALL_STATE(3141)] = 89721, - [SMALL_STATE(3142)] = 89738, - [SMALL_STATE(3143)] = 89755, - [SMALL_STATE(3144)] = 89770, - [SMALL_STATE(3145)] = 89787, - [SMALL_STATE(3146)] = 89804, - [SMALL_STATE(3147)] = 89821, - [SMALL_STATE(3148)] = 89838, - [SMALL_STATE(3149)] = 89853, - [SMALL_STATE(3150)] = 89870, - [SMALL_STATE(3151)] = 89887, - [SMALL_STATE(3152)] = 89904, - [SMALL_STATE(3153)] = 89921, - [SMALL_STATE(3154)] = 89938, - [SMALL_STATE(3155)] = 89955, - [SMALL_STATE(3156)] = 89972, - [SMALL_STATE(3157)] = 89989, - [SMALL_STATE(3158)] = 90006, - [SMALL_STATE(3159)] = 90023, - [SMALL_STATE(3160)] = 90040, - [SMALL_STATE(3161)] = 90057, - [SMALL_STATE(3162)] = 90074, - [SMALL_STATE(3163)] = 90091, - [SMALL_STATE(3164)] = 90108, - [SMALL_STATE(3165)] = 90125, - [SMALL_STATE(3166)] = 90142, - [SMALL_STATE(3167)] = 90159, - [SMALL_STATE(3168)] = 90176, - [SMALL_STATE(3169)] = 90193, - [SMALL_STATE(3170)] = 90210, - [SMALL_STATE(3171)] = 90227, - [SMALL_STATE(3172)] = 90244, - [SMALL_STATE(3173)] = 90261, - [SMALL_STATE(3174)] = 90278, - [SMALL_STATE(3175)] = 90295, - [SMALL_STATE(3176)] = 90312, - [SMALL_STATE(3177)] = 90327, - [SMALL_STATE(3178)] = 90344, - [SMALL_STATE(3179)] = 90361, - [SMALL_STATE(3180)] = 90378, - [SMALL_STATE(3181)] = 90395, - [SMALL_STATE(3182)] = 90412, - [SMALL_STATE(3183)] = 90429, - [SMALL_STATE(3184)] = 90446, - [SMALL_STATE(3185)] = 90461, - [SMALL_STATE(3186)] = 90476, - [SMALL_STATE(3187)] = 90493, - [SMALL_STATE(3188)] = 90510, - [SMALL_STATE(3189)] = 90527, - [SMALL_STATE(3190)] = 90542, - [SMALL_STATE(3191)] = 90559, - [SMALL_STATE(3192)] = 90576, - [SMALL_STATE(3193)] = 90593, - [SMALL_STATE(3194)] = 90610, - [SMALL_STATE(3195)] = 90627, - [SMALL_STATE(3196)] = 90642, - [SMALL_STATE(3197)] = 90657, - [SMALL_STATE(3198)] = 90672, - [SMALL_STATE(3199)] = 90689, - [SMALL_STATE(3200)] = 90704, - [SMALL_STATE(3201)] = 90719, - [SMALL_STATE(3202)] = 90734, - [SMALL_STATE(3203)] = 90751, - [SMALL_STATE(3204)] = 90766, - [SMALL_STATE(3205)] = 90783, - [SMALL_STATE(3206)] = 90798, - [SMALL_STATE(3207)] = 90815, - [SMALL_STATE(3208)] = 90832, - [SMALL_STATE(3209)] = 90849, - [SMALL_STATE(3210)] = 90866, - [SMALL_STATE(3211)] = 90883, - [SMALL_STATE(3212)] = 90900, - [SMALL_STATE(3213)] = 90917, - [SMALL_STATE(3214)] = 90934, - [SMALL_STATE(3215)] = 90951, - [SMALL_STATE(3216)] = 90968, - [SMALL_STATE(3217)] = 90985, - [SMALL_STATE(3218)] = 91000, - [SMALL_STATE(3219)] = 91017, - [SMALL_STATE(3220)] = 91034, - [SMALL_STATE(3221)] = 91051, - [SMALL_STATE(3222)] = 91068, - [SMALL_STATE(3223)] = 91085, - [SMALL_STATE(3224)] = 91102, - [SMALL_STATE(3225)] = 91119, - [SMALL_STATE(3226)] = 91136, - [SMALL_STATE(3227)] = 91153, - [SMALL_STATE(3228)] = 91170, - [SMALL_STATE(3229)] = 91187, - [SMALL_STATE(3230)] = 91204, - [SMALL_STATE(3231)] = 91221, - [SMALL_STATE(3232)] = 91238, - [SMALL_STATE(3233)] = 91253, - [SMALL_STATE(3234)] = 91270, - [SMALL_STATE(3235)] = 91287, - [SMALL_STATE(3236)] = 91302, - [SMALL_STATE(3237)] = 91319, - [SMALL_STATE(3238)] = 91336, - [SMALL_STATE(3239)] = 91351, - [SMALL_STATE(3240)] = 91368, - [SMALL_STATE(3241)] = 91385, - [SMALL_STATE(3242)] = 91402, - [SMALL_STATE(3243)] = 91419, - [SMALL_STATE(3244)] = 91436, - [SMALL_STATE(3245)] = 91453, - [SMALL_STATE(3246)] = 91470, - [SMALL_STATE(3247)] = 91487, - [SMALL_STATE(3248)] = 91504, - [SMALL_STATE(3249)] = 91521, - [SMALL_STATE(3250)] = 91538, - [SMALL_STATE(3251)] = 91553, - [SMALL_STATE(3252)] = 91570, - [SMALL_STATE(3253)] = 91585, - [SMALL_STATE(3254)] = 91602, - [SMALL_STATE(3255)] = 91617, - [SMALL_STATE(3256)] = 91634, - [SMALL_STATE(3257)] = 91649, - [SMALL_STATE(3258)] = 91666, - [SMALL_STATE(3259)] = 91683, - [SMALL_STATE(3260)] = 91700, - [SMALL_STATE(3261)] = 91715, - [SMALL_STATE(3262)] = 91730, - [SMALL_STATE(3263)] = 91747, - [SMALL_STATE(3264)] = 91762, - [SMALL_STATE(3265)] = 91779, - [SMALL_STATE(3266)] = 91796, - [SMALL_STATE(3267)] = 91813, - [SMALL_STATE(3268)] = 91830, - [SMALL_STATE(3269)] = 91847, - [SMALL_STATE(3270)] = 91864, - [SMALL_STATE(3271)] = 91881, - [SMALL_STATE(3272)] = 91898, - [SMALL_STATE(3273)] = 91915, - [SMALL_STATE(3274)] = 91932, - [SMALL_STATE(3275)] = 91949, - [SMALL_STATE(3276)] = 91966, - [SMALL_STATE(3277)] = 91983, - [SMALL_STATE(3278)] = 92000, - [SMALL_STATE(3279)] = 92017, - [SMALL_STATE(3280)] = 92034, - [SMALL_STATE(3281)] = 92051, - [SMALL_STATE(3282)] = 92066, - [SMALL_STATE(3283)] = 92083, - [SMALL_STATE(3284)] = 92100, - [SMALL_STATE(3285)] = 92117, - [SMALL_STATE(3286)] = 92132, - [SMALL_STATE(3287)] = 92149, - [SMALL_STATE(3288)] = 92166, - [SMALL_STATE(3289)] = 92183, - [SMALL_STATE(3290)] = 92200, - [SMALL_STATE(3291)] = 92217, - [SMALL_STATE(3292)] = 92232, - [SMALL_STATE(3293)] = 92249, - [SMALL_STATE(3294)] = 92266, - [SMALL_STATE(3295)] = 92283, - [SMALL_STATE(3296)] = 92300, - [SMALL_STATE(3297)] = 92317, - [SMALL_STATE(3298)] = 92334, - [SMALL_STATE(3299)] = 92351, - [SMALL_STATE(3300)] = 92368, - [SMALL_STATE(3301)] = 92385, - [SMALL_STATE(3302)] = 92402, - [SMALL_STATE(3303)] = 92419, - [SMALL_STATE(3304)] = 92436, - [SMALL_STATE(3305)] = 92453, - [SMALL_STATE(3306)] = 92470, - [SMALL_STATE(3307)] = 92487, - [SMALL_STATE(3308)] = 92504, - [SMALL_STATE(3309)] = 92521, - [SMALL_STATE(3310)] = 92538, - [SMALL_STATE(3311)] = 92553, - [SMALL_STATE(3312)] = 92570, - [SMALL_STATE(3313)] = 92584, - [SMALL_STATE(3314)] = 92598, - [SMALL_STATE(3315)] = 92612, - [SMALL_STATE(3316)] = 92626, - [SMALL_STATE(3317)] = 92640, - [SMALL_STATE(3318)] = 92654, - [SMALL_STATE(3319)] = 92668, - [SMALL_STATE(3320)] = 92682, - [SMALL_STATE(3321)] = 92696, - [SMALL_STATE(3322)] = 92710, - [SMALL_STATE(3323)] = 92724, - [SMALL_STATE(3324)] = 92738, - [SMALL_STATE(3325)] = 92752, - [SMALL_STATE(3326)] = 92766, - [SMALL_STATE(3327)] = 92780, - [SMALL_STATE(3328)] = 92794, - [SMALL_STATE(3329)] = 92808, - [SMALL_STATE(3330)] = 92822, - [SMALL_STATE(3331)] = 92836, - [SMALL_STATE(3332)] = 92850, - [SMALL_STATE(3333)] = 92864, - [SMALL_STATE(3334)] = 92878, - [SMALL_STATE(3335)] = 92892, - [SMALL_STATE(3336)] = 92906, - [SMALL_STATE(3337)] = 92920, - [SMALL_STATE(3338)] = 92934, - [SMALL_STATE(3339)] = 92948, - [SMALL_STATE(3340)] = 92962, - [SMALL_STATE(3341)] = 92976, - [SMALL_STATE(3342)] = 92990, - [SMALL_STATE(3343)] = 93004, - [SMALL_STATE(3344)] = 93018, - [SMALL_STATE(3345)] = 93032, - [SMALL_STATE(3346)] = 93046, - [SMALL_STATE(3347)] = 93060, - [SMALL_STATE(3348)] = 93074, - [SMALL_STATE(3349)] = 93088, - [SMALL_STATE(3350)] = 93102, - [SMALL_STATE(3351)] = 93116, - [SMALL_STATE(3352)] = 93130, - [SMALL_STATE(3353)] = 93144, - [SMALL_STATE(3354)] = 93158, - [SMALL_STATE(3355)] = 93172, - [SMALL_STATE(3356)] = 93186, - [SMALL_STATE(3357)] = 93200, - [SMALL_STATE(3358)] = 93214, - [SMALL_STATE(3359)] = 93228, - [SMALL_STATE(3360)] = 93242, - [SMALL_STATE(3361)] = 93256, - [SMALL_STATE(3362)] = 93270, - [SMALL_STATE(3363)] = 93284, - [SMALL_STATE(3364)] = 93298, - [SMALL_STATE(3365)] = 93312, - [SMALL_STATE(3366)] = 93326, - [SMALL_STATE(3367)] = 93340, - [SMALL_STATE(3368)] = 93354, - [SMALL_STATE(3369)] = 93368, - [SMALL_STATE(3370)] = 93382, - [SMALL_STATE(3371)] = 93396, - [SMALL_STATE(3372)] = 93410, - [SMALL_STATE(3373)] = 93424, - [SMALL_STATE(3374)] = 93438, - [SMALL_STATE(3375)] = 93452, - [SMALL_STATE(3376)] = 93466, - [SMALL_STATE(3377)] = 93480, - [SMALL_STATE(3378)] = 93494, - [SMALL_STATE(3379)] = 93508, - [SMALL_STATE(3380)] = 93522, - [SMALL_STATE(3381)] = 93536, - [SMALL_STATE(3382)] = 93550, - [SMALL_STATE(3383)] = 93564, - [SMALL_STATE(3384)] = 93578, - [SMALL_STATE(3385)] = 93592, - [SMALL_STATE(3386)] = 93606, - [SMALL_STATE(3387)] = 93620, - [SMALL_STATE(3388)] = 93634, - [SMALL_STATE(3389)] = 93648, - [SMALL_STATE(3390)] = 93662, - [SMALL_STATE(3391)] = 93676, - [SMALL_STATE(3392)] = 93690, - [SMALL_STATE(3393)] = 93704, - [SMALL_STATE(3394)] = 93718, - [SMALL_STATE(3395)] = 93732, - [SMALL_STATE(3396)] = 93746, - [SMALL_STATE(3397)] = 93760, - [SMALL_STATE(3398)] = 93774, - [SMALL_STATE(3399)] = 93788, - [SMALL_STATE(3400)] = 93802, - [SMALL_STATE(3401)] = 93816, - [SMALL_STATE(3402)] = 93830, - [SMALL_STATE(3403)] = 93844, - [SMALL_STATE(3404)] = 93858, - [SMALL_STATE(3405)] = 93872, - [SMALL_STATE(3406)] = 93886, - [SMALL_STATE(3407)] = 93900, - [SMALL_STATE(3408)] = 93914, - [SMALL_STATE(3409)] = 93928, - [SMALL_STATE(3410)] = 93942, - [SMALL_STATE(3411)] = 93956, - [SMALL_STATE(3412)] = 93970, - [SMALL_STATE(3413)] = 93984, - [SMALL_STATE(3414)] = 93998, - [SMALL_STATE(3415)] = 94012, - [SMALL_STATE(3416)] = 94026, - [SMALL_STATE(3417)] = 94040, - [SMALL_STATE(3418)] = 94054, - [SMALL_STATE(3419)] = 94068, - [SMALL_STATE(3420)] = 94082, - [SMALL_STATE(3421)] = 94096, - [SMALL_STATE(3422)] = 94110, - [SMALL_STATE(3423)] = 94124, - [SMALL_STATE(3424)] = 94138, - [SMALL_STATE(3425)] = 94152, - [SMALL_STATE(3426)] = 94166, - [SMALL_STATE(3427)] = 94180, - [SMALL_STATE(3428)] = 94194, - [SMALL_STATE(3429)] = 94208, - [SMALL_STATE(3430)] = 94222, - [SMALL_STATE(3431)] = 94236, - [SMALL_STATE(3432)] = 94250, - [SMALL_STATE(3433)] = 94264, - [SMALL_STATE(3434)] = 94278, - [SMALL_STATE(3435)] = 94292, - [SMALL_STATE(3436)] = 94306, - [SMALL_STATE(3437)] = 94320, - [SMALL_STATE(3438)] = 94334, - [SMALL_STATE(3439)] = 94348, - [SMALL_STATE(3440)] = 94362, - [SMALL_STATE(3441)] = 94376, - [SMALL_STATE(3442)] = 94390, - [SMALL_STATE(3443)] = 94404, - [SMALL_STATE(3444)] = 94418, - [SMALL_STATE(3445)] = 94432, - [SMALL_STATE(3446)] = 94446, - [SMALL_STATE(3447)] = 94460, - [SMALL_STATE(3448)] = 94474, - [SMALL_STATE(3449)] = 94488, - [SMALL_STATE(3450)] = 94502, - [SMALL_STATE(3451)] = 94516, - [SMALL_STATE(3452)] = 94530, - [SMALL_STATE(3453)] = 94544, - [SMALL_STATE(3454)] = 94558, - [SMALL_STATE(3455)] = 94572, - [SMALL_STATE(3456)] = 94586, - [SMALL_STATE(3457)] = 94600, - [SMALL_STATE(3458)] = 94614, - [SMALL_STATE(3459)] = 94628, - [SMALL_STATE(3460)] = 94642, - [SMALL_STATE(3461)] = 94656, - [SMALL_STATE(3462)] = 94670, - [SMALL_STATE(3463)] = 94684, - [SMALL_STATE(3464)] = 94698, - [SMALL_STATE(3465)] = 94712, - [SMALL_STATE(3466)] = 94726, - [SMALL_STATE(3467)] = 94740, - [SMALL_STATE(3468)] = 94754, - [SMALL_STATE(3469)] = 94768, - [SMALL_STATE(3470)] = 94782, - [SMALL_STATE(3471)] = 94796, - [SMALL_STATE(3472)] = 94810, - [SMALL_STATE(3473)] = 94824, - [SMALL_STATE(3474)] = 94838, - [SMALL_STATE(3475)] = 94852, - [SMALL_STATE(3476)] = 94866, - [SMALL_STATE(3477)] = 94880, - [SMALL_STATE(3478)] = 94894, - [SMALL_STATE(3479)] = 94908, - [SMALL_STATE(3480)] = 94922, - [SMALL_STATE(3481)] = 94936, - [SMALL_STATE(3482)] = 94950, - [SMALL_STATE(3483)] = 94964, - [SMALL_STATE(3484)] = 94978, - [SMALL_STATE(3485)] = 94992, - [SMALL_STATE(3486)] = 95006, - [SMALL_STATE(3487)] = 95020, - [SMALL_STATE(3488)] = 95034, - [SMALL_STATE(3489)] = 95048, - [SMALL_STATE(3490)] = 95062, - [SMALL_STATE(3491)] = 95076, - [SMALL_STATE(3492)] = 95090, - [SMALL_STATE(3493)] = 95104, - [SMALL_STATE(3494)] = 95118, - [SMALL_STATE(3495)] = 95132, - [SMALL_STATE(3496)] = 95146, - [SMALL_STATE(3497)] = 95160, - [SMALL_STATE(3498)] = 95174, - [SMALL_STATE(3499)] = 95188, - [SMALL_STATE(3500)] = 95202, - [SMALL_STATE(3501)] = 95216, - [SMALL_STATE(3502)] = 95230, - [SMALL_STATE(3503)] = 95244, - [SMALL_STATE(3504)] = 95258, - [SMALL_STATE(3505)] = 95272, - [SMALL_STATE(3506)] = 95286, - [SMALL_STATE(3507)] = 95300, - [SMALL_STATE(3508)] = 95314, - [SMALL_STATE(3509)] = 95328, - [SMALL_STATE(3510)] = 95342, - [SMALL_STATE(3511)] = 95356, - [SMALL_STATE(3512)] = 95370, - [SMALL_STATE(3513)] = 95384, - [SMALL_STATE(3514)] = 95398, - [SMALL_STATE(3515)] = 95412, - [SMALL_STATE(3516)] = 95426, - [SMALL_STATE(3517)] = 95440, - [SMALL_STATE(3518)] = 95454, - [SMALL_STATE(3519)] = 95468, - [SMALL_STATE(3520)] = 95482, - [SMALL_STATE(3521)] = 95496, - [SMALL_STATE(3522)] = 95510, - [SMALL_STATE(3523)] = 95524, - [SMALL_STATE(3524)] = 95538, - [SMALL_STATE(3525)] = 95552, - [SMALL_STATE(3526)] = 95566, - [SMALL_STATE(3527)] = 95580, - [SMALL_STATE(3528)] = 95594, - [SMALL_STATE(3529)] = 95608, - [SMALL_STATE(3530)] = 95622, - [SMALL_STATE(3531)] = 95636, - [SMALL_STATE(3532)] = 95650, - [SMALL_STATE(3533)] = 95664, - [SMALL_STATE(3534)] = 95678, - [SMALL_STATE(3535)] = 95692, - [SMALL_STATE(3536)] = 95706, - [SMALL_STATE(3537)] = 95720, - [SMALL_STATE(3538)] = 95734, - [SMALL_STATE(3539)] = 95748, - [SMALL_STATE(3540)] = 95762, - [SMALL_STATE(3541)] = 95776, - [SMALL_STATE(3542)] = 95790, - [SMALL_STATE(3543)] = 95804, - [SMALL_STATE(3544)] = 95818, - [SMALL_STATE(3545)] = 95832, - [SMALL_STATE(3546)] = 95846, - [SMALL_STATE(3547)] = 95860, - [SMALL_STATE(3548)] = 95874, - [SMALL_STATE(3549)] = 95888, - [SMALL_STATE(3550)] = 95902, - [SMALL_STATE(3551)] = 95916, - [SMALL_STATE(3552)] = 95930, - [SMALL_STATE(3553)] = 95944, - [SMALL_STATE(3554)] = 95958, - [SMALL_STATE(3555)] = 95972, - [SMALL_STATE(3556)] = 95986, - [SMALL_STATE(3557)] = 96000, - [SMALL_STATE(3558)] = 96014, - [SMALL_STATE(3559)] = 96028, - [SMALL_STATE(3560)] = 96042, - [SMALL_STATE(3561)] = 96056, - [SMALL_STATE(3562)] = 96070, - [SMALL_STATE(3563)] = 96084, - [SMALL_STATE(3564)] = 96098, - [SMALL_STATE(3565)] = 96112, - [SMALL_STATE(3566)] = 96126, - [SMALL_STATE(3567)] = 96140, - [SMALL_STATE(3568)] = 96154, - [SMALL_STATE(3569)] = 96168, - [SMALL_STATE(3570)] = 96182, - [SMALL_STATE(3571)] = 96196, - [SMALL_STATE(3572)] = 96210, - [SMALL_STATE(3573)] = 96224, - [SMALL_STATE(3574)] = 96238, - [SMALL_STATE(3575)] = 96252, - [SMALL_STATE(3576)] = 96266, - [SMALL_STATE(3577)] = 96280, - [SMALL_STATE(3578)] = 96294, - [SMALL_STATE(3579)] = 96308, - [SMALL_STATE(3580)] = 96322, - [SMALL_STATE(3581)] = 96336, - [SMALL_STATE(3582)] = 96350, - [SMALL_STATE(3583)] = 96364, - [SMALL_STATE(3584)] = 96378, - [SMALL_STATE(3585)] = 96392, - [SMALL_STATE(3586)] = 96406, - [SMALL_STATE(3587)] = 96420, - [SMALL_STATE(3588)] = 96434, - [SMALL_STATE(3589)] = 96448, - [SMALL_STATE(3590)] = 96462, - [SMALL_STATE(3591)] = 96476, - [SMALL_STATE(3592)] = 96490, - [SMALL_STATE(3593)] = 96504, - [SMALL_STATE(3594)] = 96518, - [SMALL_STATE(3595)] = 96532, - [SMALL_STATE(3596)] = 96546, - [SMALL_STATE(3597)] = 96560, - [SMALL_STATE(3598)] = 96574, - [SMALL_STATE(3599)] = 96588, - [SMALL_STATE(3600)] = 96602, - [SMALL_STATE(3601)] = 96616, - [SMALL_STATE(3602)] = 96630, - [SMALL_STATE(3603)] = 96644, - [SMALL_STATE(3604)] = 96658, - [SMALL_STATE(3605)] = 96672, - [SMALL_STATE(3606)] = 96686, - [SMALL_STATE(3607)] = 96700, - [SMALL_STATE(3608)] = 96714, - [SMALL_STATE(3609)] = 96728, - [SMALL_STATE(3610)] = 96742, - [SMALL_STATE(3611)] = 96756, - [SMALL_STATE(3612)] = 96770, - [SMALL_STATE(3613)] = 96784, - [SMALL_STATE(3614)] = 96788, - [SMALL_STATE(3615)] = 96792, - [SMALL_STATE(3616)] = 96796, - [SMALL_STATE(3617)] = 96800, - [SMALL_STATE(3618)] = 96804, - [SMALL_STATE(3619)] = 96808, + [SMALL_STATE(1063)] = 0, + [SMALL_STATE(1064)] = 75, + [SMALL_STATE(1065)] = 148, + [SMALL_STATE(1066)] = 219, + [SMALL_STATE(1067)] = 319, + [SMALL_STATE(1068)] = 419, + [SMALL_STATE(1069)] = 519, + [SMALL_STATE(1070)] = 596, + [SMALL_STATE(1071)] = 675, + [SMALL_STATE(1072)] = 752, + [SMALL_STATE(1073)] = 829, + [SMALL_STATE(1074)] = 893, + [SMALL_STATE(1075)] = 957, + [SMALL_STATE(1076)] = 1021, + [SMALL_STATE(1077)] = 1085, + [SMALL_STATE(1078)] = 1153, + [SMALL_STATE(1079)] = 1217, + [SMALL_STATE(1080)] = 1291, + [SMALL_STATE(1081)] = 1355, + [SMALL_STATE(1082)] = 1419, + [SMALL_STATE(1083)] = 1483, + [SMALL_STATE(1084)] = 1547, + [SMALL_STATE(1085)] = 1618, + [SMALL_STATE(1086)] = 1681, + [SMALL_STATE(1087)] = 1782, + [SMALL_STATE(1088)] = 1845, + [SMALL_STATE(1089)] = 1912, + [SMALL_STATE(1090)] = 1983, + [SMALL_STATE(1091)] = 2046, + [SMALL_STATE(1092)] = 2117, + [SMALL_STATE(1093)] = 2188, + [SMALL_STATE(1094)] = 2255, + [SMALL_STATE(1095)] = 2356, + [SMALL_STATE(1096)] = 2423, + [SMALL_STATE(1097)] = 2486, + [SMALL_STATE(1098)] = 2549, + [SMALL_STATE(1099)] = 2616, + [SMALL_STATE(1100)] = 2683, + [SMALL_STATE(1101)] = 2784, + [SMALL_STATE(1102)] = 2848, + [SMALL_STATE(1103)] = 2912, + [SMALL_STATE(1104)] = 2974, + [SMALL_STATE(1105)] = 3042, + [SMALL_STATE(1106)] = 3104, + [SMALL_STATE(1107)] = 3166, + [SMALL_STATE(1108)] = 3228, + [SMALL_STATE(1109)] = 3298, + [SMALL_STATE(1110)] = 3360, + [SMALL_STATE(1111)] = 3422, + [SMALL_STATE(1112)] = 3484, + [SMALL_STATE(1113)] = 3546, + [SMALL_STATE(1114)] = 3607, + [SMALL_STATE(1115)] = 3668, + [SMALL_STATE(1116)] = 3729, + [SMALL_STATE(1117)] = 3790, + [SMALL_STATE(1118)] = 3851, + [SMALL_STATE(1119)] = 3912, + [SMALL_STATE(1120)] = 3973, + [SMALL_STATE(1121)] = 4034, + [SMALL_STATE(1122)] = 4095, + [SMALL_STATE(1123)] = 4156, + [SMALL_STATE(1124)] = 4217, + [SMALL_STATE(1125)] = 4278, + [SMALL_STATE(1126)] = 4339, + [SMALL_STATE(1127)] = 4400, + [SMALL_STATE(1128)] = 4461, + [SMALL_STATE(1129)] = 4522, + [SMALL_STATE(1130)] = 4583, + [SMALL_STATE(1131)] = 4644, + [SMALL_STATE(1132)] = 4705, + [SMALL_STATE(1133)] = 4766, + [SMALL_STATE(1134)] = 4827, + [SMALL_STATE(1135)] = 4888, + [SMALL_STATE(1136)] = 4949, + [SMALL_STATE(1137)] = 5010, + [SMALL_STATE(1138)] = 5071, + [SMALL_STATE(1139)] = 5132, + [SMALL_STATE(1140)] = 5193, + [SMALL_STATE(1141)] = 5254, + [SMALL_STATE(1142)] = 5315, + [SMALL_STATE(1143)] = 5376, + [SMALL_STATE(1144)] = 5437, + [SMALL_STATE(1145)] = 5498, + [SMALL_STATE(1146)] = 5559, + [SMALL_STATE(1147)] = 5620, + [SMALL_STATE(1148)] = 5681, + [SMALL_STATE(1149)] = 5756, + [SMALL_STATE(1150)] = 5817, + [SMALL_STATE(1151)] = 5880, + [SMALL_STATE(1152)] = 5941, + [SMALL_STATE(1153)] = 6002, + [SMALL_STATE(1154)] = 6063, + [SMALL_STATE(1155)] = 6124, + [SMALL_STATE(1156)] = 6185, + [SMALL_STATE(1157)] = 6248, + [SMALL_STATE(1158)] = 6309, + [SMALL_STATE(1159)] = 6372, + [SMALL_STATE(1160)] = 6433, + [SMALL_STATE(1161)] = 6494, + [SMALL_STATE(1162)] = 6557, + [SMALL_STATE(1163)] = 6618, + [SMALL_STATE(1164)] = 6679, + [SMALL_STATE(1165)] = 6740, + [SMALL_STATE(1166)] = 6801, + [SMALL_STATE(1167)] = 6862, + [SMALL_STATE(1168)] = 6923, + [SMALL_STATE(1169)] = 6984, + [SMALL_STATE(1170)] = 7045, + [SMALL_STATE(1171)] = 7106, + [SMALL_STATE(1172)] = 7167, + [SMALL_STATE(1173)] = 7228, + [SMALL_STATE(1174)] = 7289, + [SMALL_STATE(1175)] = 7350, + [SMALL_STATE(1176)] = 7411, + [SMALL_STATE(1177)] = 7472, + [SMALL_STATE(1178)] = 7533, + [SMALL_STATE(1179)] = 7594, + [SMALL_STATE(1180)] = 7655, + [SMALL_STATE(1181)] = 7716, + [SMALL_STATE(1182)] = 7779, + [SMALL_STATE(1183)] = 7840, + [SMALL_STATE(1184)] = 7901, + [SMALL_STATE(1185)] = 7962, + [SMALL_STATE(1186)] = 8023, + [SMALL_STATE(1187)] = 8084, + [SMALL_STATE(1188)] = 8145, + [SMALL_STATE(1189)] = 8206, + [SMALL_STATE(1190)] = 8267, + [SMALL_STATE(1191)] = 8328, + [SMALL_STATE(1192)] = 8389, + [SMALL_STATE(1193)] = 8450, + [SMALL_STATE(1194)] = 8511, + [SMALL_STATE(1195)] = 8572, + [SMALL_STATE(1196)] = 8633, + [SMALL_STATE(1197)] = 8694, + [SMALL_STATE(1198)] = 8755, + [SMALL_STATE(1199)] = 8816, + [SMALL_STATE(1200)] = 8877, + [SMALL_STATE(1201)] = 8938, + [SMALL_STATE(1202)] = 8999, + [SMALL_STATE(1203)] = 9060, + [SMALL_STATE(1204)] = 9121, + [SMALL_STATE(1205)] = 9182, + [SMALL_STATE(1206)] = 9243, + [SMALL_STATE(1207)] = 9304, + [SMALL_STATE(1208)] = 9365, + [SMALL_STATE(1209)] = 9426, + [SMALL_STATE(1210)] = 9487, + [SMALL_STATE(1211)] = 9548, + [SMALL_STATE(1212)] = 9609, + [SMALL_STATE(1213)] = 9712, + [SMALL_STATE(1214)] = 9775, + [SMALL_STATE(1215)] = 9836, + [SMALL_STATE(1216)] = 9897, + [SMALL_STATE(1217)] = 9958, + [SMALL_STATE(1218)] = 10019, + [SMALL_STATE(1219)] = 10080, + [SMALL_STATE(1220)] = 10141, + [SMALL_STATE(1221)] = 10202, + [SMALL_STATE(1222)] = 10263, + [SMALL_STATE(1223)] = 10324, + [SMALL_STATE(1224)] = 10385, + [SMALL_STATE(1225)] = 10446, + [SMALL_STATE(1226)] = 10507, + [SMALL_STATE(1227)] = 10568, + [SMALL_STATE(1228)] = 10629, + [SMALL_STATE(1229)] = 10690, + [SMALL_STATE(1230)] = 10751, + [SMALL_STATE(1231)] = 10812, + [SMALL_STATE(1232)] = 10873, + [SMALL_STATE(1233)] = 10934, + [SMALL_STATE(1234)] = 10995, + [SMALL_STATE(1235)] = 11056, + [SMALL_STATE(1236)] = 11117, + [SMALL_STATE(1237)] = 11178, + [SMALL_STATE(1238)] = 11281, + [SMALL_STATE(1239)] = 11342, + [SMALL_STATE(1240)] = 11403, + [SMALL_STATE(1241)] = 11464, + [SMALL_STATE(1242)] = 11525, + [SMALL_STATE(1243)] = 11586, + [SMALL_STATE(1244)] = 11647, + [SMALL_STATE(1245)] = 11708, + [SMALL_STATE(1246)] = 11769, + [SMALL_STATE(1247)] = 11830, + [SMALL_STATE(1248)] = 11891, + [SMALL_STATE(1249)] = 11952, + [SMALL_STATE(1250)] = 12013, + [SMALL_STATE(1251)] = 12074, + [SMALL_STATE(1252)] = 12139, + [SMALL_STATE(1253)] = 12200, + [SMALL_STATE(1254)] = 12261, + [SMALL_STATE(1255)] = 12322, + [SMALL_STATE(1256)] = 12383, + [SMALL_STATE(1257)] = 12444, + [SMALL_STATE(1258)] = 12537, + [SMALL_STATE(1259)] = 12598, + [SMALL_STATE(1260)] = 12659, + [SMALL_STATE(1261)] = 12720, + [SMALL_STATE(1262)] = 12781, + [SMALL_STATE(1263)] = 12844, + [SMALL_STATE(1264)] = 12905, + [SMALL_STATE(1265)] = 12968, + [SMALL_STATE(1266)] = 13031, + [SMALL_STATE(1267)] = 13092, + [SMALL_STATE(1268)] = 13157, + [SMALL_STATE(1269)] = 13218, + [SMALL_STATE(1270)] = 13279, + [SMALL_STATE(1271)] = 13340, + [SMALL_STATE(1272)] = 13401, + [SMALL_STATE(1273)] = 13462, + [SMALL_STATE(1274)] = 13523, + [SMALL_STATE(1275)] = 13584, + [SMALL_STATE(1276)] = 13645, + [SMALL_STATE(1277)] = 13706, + [SMALL_STATE(1278)] = 13767, + [SMALL_STATE(1279)] = 13828, + [SMALL_STATE(1280)] = 13889, + [SMALL_STATE(1281)] = 13950, + [SMALL_STATE(1282)] = 14011, + [SMALL_STATE(1283)] = 14104, + [SMALL_STATE(1284)] = 14179, + [SMALL_STATE(1285)] = 14240, + [SMALL_STATE(1286)] = 14343, + [SMALL_STATE(1287)] = 14404, + [SMALL_STATE(1288)] = 14497, + [SMALL_STATE(1289)] = 14558, + [SMALL_STATE(1290)] = 14619, + [SMALL_STATE(1291)] = 14680, + [SMALL_STATE(1292)] = 14741, + [SMALL_STATE(1293)] = 14802, + [SMALL_STATE(1294)] = 14863, + [SMALL_STATE(1295)] = 14926, + [SMALL_STATE(1296)] = 14987, + [SMALL_STATE(1297)] = 15050, + [SMALL_STATE(1298)] = 15111, + [SMALL_STATE(1299)] = 15172, + [SMALL_STATE(1300)] = 15235, + [SMALL_STATE(1301)] = 15296, + [SMALL_STATE(1302)] = 15359, + [SMALL_STATE(1303)] = 15420, + [SMALL_STATE(1304)] = 15483, + [SMALL_STATE(1305)] = 15544, + [SMALL_STATE(1306)] = 15605, + [SMALL_STATE(1307)] = 15666, + [SMALL_STATE(1308)] = 15731, + [SMALL_STATE(1309)] = 15792, + [SMALL_STATE(1310)] = 15853, + [SMALL_STATE(1311)] = 15914, + [SMALL_STATE(1312)] = 15975, + [SMALL_STATE(1313)] = 16036, + [SMALL_STATE(1314)] = 16097, + [SMALL_STATE(1315)] = 16158, + [SMALL_STATE(1316)] = 16219, + [SMALL_STATE(1317)] = 16280, + [SMALL_STATE(1318)] = 16341, + [SMALL_STATE(1319)] = 16402, + [SMALL_STATE(1320)] = 16463, + [SMALL_STATE(1321)] = 16524, + [SMALL_STATE(1322)] = 16585, + [SMALL_STATE(1323)] = 16646, + [SMALL_STATE(1324)] = 16707, + [SMALL_STATE(1325)] = 16768, + [SMALL_STATE(1326)] = 16829, + [SMALL_STATE(1327)] = 16890, + [SMALL_STATE(1328)] = 16951, + [SMALL_STATE(1329)] = 17012, + [SMALL_STATE(1330)] = 17073, + [SMALL_STATE(1331)] = 17134, + [SMALL_STATE(1332)] = 17195, + [SMALL_STATE(1333)] = 17256, + [SMALL_STATE(1334)] = 17319, + [SMALL_STATE(1335)] = 17380, + [SMALL_STATE(1336)] = 17443, + [SMALL_STATE(1337)] = 17506, + [SMALL_STATE(1338)] = 17567, + [SMALL_STATE(1339)] = 17628, + [SMALL_STATE(1340)] = 17689, + [SMALL_STATE(1341)] = 17750, + [SMALL_STATE(1342)] = 17811, + [SMALL_STATE(1343)] = 17872, + [SMALL_STATE(1344)] = 17933, + [SMALL_STATE(1345)] = 17994, + [SMALL_STATE(1346)] = 18055, + [SMALL_STATE(1347)] = 18116, + [SMALL_STATE(1348)] = 18177, + [SMALL_STATE(1349)] = 18238, + [SMALL_STATE(1350)] = 18299, + [SMALL_STATE(1351)] = 18360, + [SMALL_STATE(1352)] = 18421, + [SMALL_STATE(1353)] = 18482, + [SMALL_STATE(1354)] = 18543, + [SMALL_STATE(1355)] = 18604, + [SMALL_STATE(1356)] = 18665, + [SMALL_STATE(1357)] = 18726, + [SMALL_STATE(1358)] = 18787, + [SMALL_STATE(1359)] = 18848, + [SMALL_STATE(1360)] = 18909, + [SMALL_STATE(1361)] = 18970, + [SMALL_STATE(1362)] = 19031, + [SMALL_STATE(1363)] = 19092, + [SMALL_STATE(1364)] = 19153, + [SMALL_STATE(1365)] = 19214, + [SMALL_STATE(1366)] = 19275, + [SMALL_STATE(1367)] = 19336, + [SMALL_STATE(1368)] = 19397, + [SMALL_STATE(1369)] = 19458, + [SMALL_STATE(1370)] = 19519, + [SMALL_STATE(1371)] = 19580, + [SMALL_STATE(1372)] = 19641, + [SMALL_STATE(1373)] = 19702, + [SMALL_STATE(1374)] = 19763, + [SMALL_STATE(1375)] = 19824, + [SMALL_STATE(1376)] = 19885, + [SMALL_STATE(1377)] = 19946, + [SMALL_STATE(1378)] = 20007, + [SMALL_STATE(1379)] = 20068, + [SMALL_STATE(1380)] = 20129, + [SMALL_STATE(1381)] = 20190, + [SMALL_STATE(1382)] = 20251, + [SMALL_STATE(1383)] = 20312, + [SMALL_STATE(1384)] = 20373, + [SMALL_STATE(1385)] = 20434, + [SMALL_STATE(1386)] = 20495, + [SMALL_STATE(1387)] = 20556, + [SMALL_STATE(1388)] = 20617, + [SMALL_STATE(1389)] = 20678, + [SMALL_STATE(1390)] = 20739, + [SMALL_STATE(1391)] = 20800, + [SMALL_STATE(1392)] = 20861, + [SMALL_STATE(1393)] = 20924, + [SMALL_STATE(1394)] = 20985, + [SMALL_STATE(1395)] = 21046, + [SMALL_STATE(1396)] = 21107, + [SMALL_STATE(1397)] = 21168, + [SMALL_STATE(1398)] = 21229, + [SMALL_STATE(1399)] = 21290, + [SMALL_STATE(1400)] = 21351, + [SMALL_STATE(1401)] = 21412, + [SMALL_STATE(1402)] = 21473, + [SMALL_STATE(1403)] = 21534, + [SMALL_STATE(1404)] = 21595, + [SMALL_STATE(1405)] = 21656, + [SMALL_STATE(1406)] = 21717, + [SMALL_STATE(1407)] = 21778, + [SMALL_STATE(1408)] = 21839, + [SMALL_STATE(1409)] = 21900, + [SMALL_STATE(1410)] = 21961, + [SMALL_STATE(1411)] = 22022, + [SMALL_STATE(1412)] = 22083, + [SMALL_STATE(1413)] = 22144, + [SMALL_STATE(1414)] = 22205, + [SMALL_STATE(1415)] = 22266, + [SMALL_STATE(1416)] = 22327, + [SMALL_STATE(1417)] = 22388, + [SMALL_STATE(1418)] = 22449, + [SMALL_STATE(1419)] = 22510, + [SMALL_STATE(1420)] = 22571, + [SMALL_STATE(1421)] = 22632, + [SMALL_STATE(1422)] = 22693, + [SMALL_STATE(1423)] = 22754, + [SMALL_STATE(1424)] = 22815, + [SMALL_STATE(1425)] = 22876, + [SMALL_STATE(1426)] = 22937, + [SMALL_STATE(1427)] = 22998, + [SMALL_STATE(1428)] = 23059, + [SMALL_STATE(1429)] = 23162, + [SMALL_STATE(1430)] = 23223, + [SMALL_STATE(1431)] = 23284, + [SMALL_STATE(1432)] = 23345, + [SMALL_STATE(1433)] = 23406, + [SMALL_STATE(1434)] = 23502, + [SMALL_STATE(1435)] = 23562, + [SMALL_STATE(1436)] = 23622, + [SMALL_STATE(1437)] = 23682, + [SMALL_STATE(1438)] = 23742, + [SMALL_STATE(1439)] = 23802, + [SMALL_STATE(1440)] = 23862, + [SMALL_STATE(1441)] = 23922, + [SMALL_STATE(1442)] = 23982, + [SMALL_STATE(1443)] = 24042, + [SMALL_STATE(1444)] = 24102, + [SMALL_STATE(1445)] = 24162, + [SMALL_STATE(1446)] = 24226, + [SMALL_STATE(1447)] = 24286, + [SMALL_STATE(1448)] = 24346, + [SMALL_STATE(1449)] = 24406, + [SMALL_STATE(1450)] = 24472, + [SMALL_STATE(1451)] = 24532, + [SMALL_STATE(1452)] = 24592, + [SMALL_STATE(1453)] = 24652, + [SMALL_STATE(1454)] = 24712, + [SMALL_STATE(1455)] = 24772, + [SMALL_STATE(1456)] = 24840, + [SMALL_STATE(1457)] = 24900, + [SMALL_STATE(1458)] = 24960, + [SMALL_STATE(1459)] = 25020, + [SMALL_STATE(1460)] = 25080, + [SMALL_STATE(1461)] = 25140, + [SMALL_STATE(1462)] = 25200, + [SMALL_STATE(1463)] = 25260, + [SMALL_STATE(1464)] = 25320, + [SMALL_STATE(1465)] = 25380, + [SMALL_STATE(1466)] = 25440, + [SMALL_STATE(1467)] = 25500, + [SMALL_STATE(1468)] = 25566, + [SMALL_STATE(1469)] = 25626, + [SMALL_STATE(1470)] = 25686, + [SMALL_STATE(1471)] = 25746, + [SMALL_STATE(1472)] = 25806, + [SMALL_STATE(1473)] = 25866, + [SMALL_STATE(1474)] = 25926, + [SMALL_STATE(1475)] = 25986, + [SMALL_STATE(1476)] = 26046, + [SMALL_STATE(1477)] = 26106, + [SMALL_STATE(1478)] = 26172, + [SMALL_STATE(1479)] = 26232, + [SMALL_STATE(1480)] = 26292, + [SMALL_STATE(1481)] = 26352, + [SMALL_STATE(1482)] = 26412, + [SMALL_STATE(1483)] = 26472, + [SMALL_STATE(1484)] = 26532, + [SMALL_STATE(1485)] = 26592, + [SMALL_STATE(1486)] = 26652, + [SMALL_STATE(1487)] = 26712, + [SMALL_STATE(1488)] = 26786, + [SMALL_STATE(1489)] = 26846, + [SMALL_STATE(1490)] = 26906, + [SMALL_STATE(1491)] = 26966, + [SMALL_STATE(1492)] = 27026, + [SMALL_STATE(1493)] = 27086, + [SMALL_STATE(1494)] = 27146, + [SMALL_STATE(1495)] = 27206, + [SMALL_STATE(1496)] = 27266, + [SMALL_STATE(1497)] = 27326, + [SMALL_STATE(1498)] = 27386, + [SMALL_STATE(1499)] = 27448, + [SMALL_STATE(1500)] = 27508, + [SMALL_STATE(1501)] = 27568, + [SMALL_STATE(1502)] = 27632, + [SMALL_STATE(1503)] = 27698, + [SMALL_STATE(1504)] = 27758, + [SMALL_STATE(1505)] = 27818, + [SMALL_STATE(1506)] = 27878, + [SMALL_STATE(1507)] = 27938, + [SMALL_STATE(1508)] = 27998, + [SMALL_STATE(1509)] = 28058, + [SMALL_STATE(1510)] = 28118, + [SMALL_STATE(1511)] = 28178, + [SMALL_STATE(1512)] = 28238, + [SMALL_STATE(1513)] = 28298, + [SMALL_STATE(1514)] = 28358, + [SMALL_STATE(1515)] = 28418, + [SMALL_STATE(1516)] = 28478, + [SMALL_STATE(1517)] = 28540, + [SMALL_STATE(1518)] = 28600, + [SMALL_STATE(1519)] = 28660, + [SMALL_STATE(1520)] = 28720, + [SMALL_STATE(1521)] = 28780, + [SMALL_STATE(1522)] = 28840, + [SMALL_STATE(1523)] = 28900, + [SMALL_STATE(1524)] = 28960, + [SMALL_STATE(1525)] = 29020, + [SMALL_STATE(1526)] = 29080, + [SMALL_STATE(1527)] = 29140, + [SMALL_STATE(1528)] = 29200, + [SMALL_STATE(1529)] = 29260, + [SMALL_STATE(1530)] = 29320, + [SMALL_STATE(1531)] = 29380, + [SMALL_STATE(1532)] = 29440, + [SMALL_STATE(1533)] = 29500, + [SMALL_STATE(1534)] = 29560, + [SMALL_STATE(1535)] = 29620, + [SMALL_STATE(1536)] = 29680, + [SMALL_STATE(1537)] = 29740, + [SMALL_STATE(1538)] = 29800, + [SMALL_STATE(1539)] = 29860, + [SMALL_STATE(1540)] = 29920, + [SMALL_STATE(1541)] = 29980, + [SMALL_STATE(1542)] = 30040, + [SMALL_STATE(1543)] = 30100, + [SMALL_STATE(1544)] = 30160, + [SMALL_STATE(1545)] = 30220, + [SMALL_STATE(1546)] = 30280, + [SMALL_STATE(1547)] = 30340, + [SMALL_STATE(1548)] = 30400, + [SMALL_STATE(1549)] = 30460, + [SMALL_STATE(1550)] = 30520, + [SMALL_STATE(1551)] = 30580, + [SMALL_STATE(1552)] = 30640, + [SMALL_STATE(1553)] = 30700, + [SMALL_STATE(1554)] = 30760, + [SMALL_STATE(1555)] = 30820, + [SMALL_STATE(1556)] = 30880, + [SMALL_STATE(1557)] = 30941, + [SMALL_STATE(1558)] = 31002, + [SMALL_STATE(1559)] = 31073, + [SMALL_STATE(1560)] = 31142, + [SMALL_STATE(1561)] = 31232, + [SMALL_STATE(1562)] = 31322, + [SMALL_STATE(1563)] = 31408, + [SMALL_STATE(1564)] = 31500, + [SMALL_STATE(1565)] = 31586, + [SMALL_STATE(1566)] = 31672, + [SMALL_STATE(1567)] = 31732, + [SMALL_STATE(1568)] = 31824, + [SMALL_STATE(1569)] = 31882, + [SMALL_STATE(1570)] = 31948, + [SMALL_STATE(1571)] = 32006, + [SMALL_STATE(1572)] = 32064, + [SMALL_STATE(1573)] = 32150, + [SMALL_STATE(1574)] = 32236, + [SMALL_STATE(1575)] = 32322, + [SMALL_STATE(1576)] = 32382, + [SMALL_STATE(1577)] = 32452, + [SMALL_STATE(1578)] = 32544, + [SMALL_STATE(1579)] = 32634, + [SMALL_STATE(1580)] = 32704, + [SMALL_STATE(1581)] = 32774, + [SMALL_STATE(1582)] = 32860, + [SMALL_STATE(1583)] = 32950, + [SMALL_STATE(1584)] = 33018, + [SMALL_STATE(1585)] = 33092, + [SMALL_STATE(1586)] = 33164, + [SMALL_STATE(1587)] = 33240, + [SMALL_STATE(1588)] = 33322, + [SMALL_STATE(1589)] = 33406, + [SMALL_STATE(1590)] = 33476, + [SMALL_STATE(1591)] = 33566, + [SMALL_STATE(1592)] = 33656, + [SMALL_STATE(1593)] = 33734, + [SMALL_STATE(1594)] = 33820, + [SMALL_STATE(1595)] = 33912, + [SMALL_STATE(1596)] = 33975, + [SMALL_STATE(1597)] = 34038, + [SMALL_STATE(1598)] = 34103, + [SMALL_STATE(1599)] = 34170, + [SMALL_STATE(1600)] = 34228, + [SMALL_STATE(1601)] = 34288, + [SMALL_STATE(1602)] = 34348, + [SMALL_STATE(1603)] = 34408, + [SMALL_STATE(1604)] = 34464, + [SMALL_STATE(1605)] = 34524, + [SMALL_STATE(1606)] = 34584, + [SMALL_STATE(1607)] = 34640, + [SMALL_STATE(1608)] = 34700, + [SMALL_STATE(1609)] = 34756, + [SMALL_STATE(1610)] = 34820, + [SMALL_STATE(1611)] = 34876, + [SMALL_STATE(1612)] = 34940, + [SMALL_STATE(1613)] = 34998, + [SMALL_STATE(1614)] = 35056, + [SMALL_STATE(1615)] = 35120, + [SMALL_STATE(1616)] = 35184, + [SMALL_STATE(1617)] = 35242, + [SMALL_STATE(1618)] = 35302, + [SMALL_STATE(1619)] = 35359, + [SMALL_STATE(1620)] = 35454, + [SMALL_STATE(1621)] = 35511, + [SMALL_STATE(1622)] = 35566, + [SMALL_STATE(1623)] = 35625, + [SMALL_STATE(1624)] = 35680, + [SMALL_STATE(1625)] = 35735, + [SMALL_STATE(1626)] = 35824, + [SMALL_STATE(1627)] = 35879, + [SMALL_STATE(1628)] = 35936, + [SMALL_STATE(1629)] = 35991, + [SMALL_STATE(1630)] = 36046, + [SMALL_STATE(1631)] = 36101, + [SMALL_STATE(1632)] = 36156, + [SMALL_STATE(1633)] = 36245, + [SMALL_STATE(1634)] = 36304, + [SMALL_STATE(1635)] = 36363, + [SMALL_STATE(1636)] = 36420, + [SMALL_STATE(1637)] = 36515, + [SMALL_STATE(1638)] = 36610, + [SMALL_STATE(1639)] = 36667, + [SMALL_STATE(1640)] = 36762, + [SMALL_STATE(1641)] = 36857, + [SMALL_STATE(1642)] = 36952, + [SMALL_STATE(1643)] = 37047, + [SMALL_STATE(1644)] = 37142, + [SMALL_STATE(1645)] = 37237, + [SMALL_STATE(1646)] = 37294, + [SMALL_STATE(1647)] = 37351, + [SMALL_STATE(1648)] = 37440, + [SMALL_STATE(1649)] = 37535, + [SMALL_STATE(1650)] = 37630, + [SMALL_STATE(1651)] = 37725, + [SMALL_STATE(1652)] = 37784, + [SMALL_STATE(1653)] = 37873, + [SMALL_STATE(1654)] = 37927, + [SMALL_STATE(1655)] = 37981, + [SMALL_STATE(1656)] = 38067, + [SMALL_STATE(1657)] = 38123, + [SMALL_STATE(1658)] = 38197, + [SMALL_STATE(1659)] = 38253, + [SMALL_STATE(1660)] = 38307, + [SMALL_STATE(1661)] = 38361, + [SMALL_STATE(1662)] = 38415, + [SMALL_STATE(1663)] = 38469, + [SMALL_STATE(1664)] = 38523, + [SMALL_STATE(1665)] = 38577, + [SMALL_STATE(1666)] = 38633, + [SMALL_STATE(1667)] = 38701, + [SMALL_STATE(1668)] = 38755, + [SMALL_STATE(1669)] = 38811, + [SMALL_STATE(1670)] = 38865, + [SMALL_STATE(1671)] = 38919, + [SMALL_STATE(1672)] = 38973, + [SMALL_STATE(1673)] = 39027, + [SMALL_STATE(1674)] = 39115, + [SMALL_STATE(1675)] = 39169, + [SMALL_STATE(1676)] = 39251, + [SMALL_STATE(1677)] = 39323, + [SMALL_STATE(1678)] = 39379, + [SMALL_STATE(1679)] = 39457, + [SMALL_STATE(1680)] = 39539, + [SMALL_STATE(1681)] = 39625, + [SMALL_STATE(1682)] = 39681, + [SMALL_STATE(1683)] = 39767, + [SMALL_STATE(1684)] = 39823, + [SMALL_STATE(1685)] = 39915, + [SMALL_STATE(1686)] = 39995, + [SMALL_STATE(1687)] = 40083, + [SMALL_STATE(1688)] = 40175, + [SMALL_STATE(1689)] = 40231, + [SMALL_STATE(1690)] = 40323, + [SMALL_STATE(1691)] = 40379, + [SMALL_STATE(1692)] = 40445, + [SMALL_STATE(1693)] = 40501, + [SMALL_STATE(1694)] = 40557, + [SMALL_STATE(1695)] = 40643, + [SMALL_STATE(1696)] = 40707, + [SMALL_STATE(1697)] = 40777, + [SMALL_STATE(1698)] = 40857, + [SMALL_STATE(1699)] = 40911, + [SMALL_STATE(1700)] = 40965, + [SMALL_STATE(1701)] = 41057, + [SMALL_STATE(1702)] = 41145, + [SMALL_STATE(1703)] = 41201, + [SMALL_STATE(1704)] = 41293, + [SMALL_STATE(1705)] = 41349, + [SMALL_STATE(1706)] = 41437, + [SMALL_STATE(1707)] = 41495, + [SMALL_STATE(1708)] = 41587, + [SMALL_STATE(1709)] = 41643, + [SMALL_STATE(1710)] = 41731, + [SMALL_STATE(1711)] = 41819, + [SMALL_STATE(1712)] = 41905, + [SMALL_STATE(1713)] = 41961, + [SMALL_STATE(1714)] = 42017, + [SMALL_STATE(1715)] = 42103, + [SMALL_STATE(1716)] = 42170, + [SMALL_STATE(1717)] = 42259, + [SMALL_STATE(1718)] = 42348, + [SMALL_STATE(1719)] = 42401, + [SMALL_STATE(1720)] = 42454, + [SMALL_STATE(1721)] = 42507, + [SMALL_STATE(1722)] = 42560, + [SMALL_STATE(1723)] = 42613, + [SMALL_STATE(1724)] = 42702, + [SMALL_STATE(1725)] = 42755, + [SMALL_STATE(1726)] = 42808, + [SMALL_STATE(1727)] = 42861, + [SMALL_STATE(1728)] = 42950, + [SMALL_STATE(1729)] = 43003, + [SMALL_STATE(1730)] = 43056, + [SMALL_STATE(1731)] = 43109, + [SMALL_STATE(1732)] = 43168, + [SMALL_STATE(1733)] = 43221, + [SMALL_STATE(1734)] = 43274, + [SMALL_STATE(1735)] = 43333, + [SMALL_STATE(1736)] = 43386, + [SMALL_STATE(1737)] = 43439, + [SMALL_STATE(1738)] = 43492, + [SMALL_STATE(1739)] = 43545, + [SMALL_STATE(1740)] = 43630, + [SMALL_STATE(1741)] = 43683, + [SMALL_STATE(1742)] = 43772, + [SMALL_STATE(1743)] = 43859, + [SMALL_STATE(1744)] = 43940, + [SMALL_STATE(1745)] = 43993, + [SMALL_STATE(1746)] = 44046, + [SMALL_STATE(1747)] = 44131, + [SMALL_STATE(1748)] = 44184, + [SMALL_STATE(1749)] = 44269, + [SMALL_STATE(1750)] = 44354, + [SMALL_STATE(1751)] = 44441, + [SMALL_STATE(1752)] = 44494, + [SMALL_STATE(1753)] = 44547, + [SMALL_STATE(1754)] = 44600, + [SMALL_STATE(1755)] = 44653, + [SMALL_STATE(1756)] = 44706, + [SMALL_STATE(1757)] = 44759, + [SMALL_STATE(1758)] = 44812, + [SMALL_STATE(1759)] = 44865, + [SMALL_STATE(1760)] = 44918, + [SMALL_STATE(1761)] = 44971, + [SMALL_STATE(1762)] = 45024, + [SMALL_STATE(1763)] = 45077, + [SMALL_STATE(1764)] = 45130, + [SMALL_STATE(1765)] = 45207, + [SMALL_STATE(1766)] = 45266, + [SMALL_STATE(1767)] = 45353, + [SMALL_STATE(1768)] = 45438, + [SMALL_STATE(1769)] = 45525, + [SMALL_STATE(1770)] = 45612, + [SMALL_STATE(1771)] = 45675, + [SMALL_STATE(1772)] = 45744, + [SMALL_STATE(1773)] = 45811, + [SMALL_STATE(1774)] = 45882, + [SMALL_STATE(1775)] = 45959, + [SMALL_STATE(1776)] = 46038, + [SMALL_STATE(1777)] = 46103, + [SMALL_STATE(1778)] = 46188, + [SMALL_STATE(1779)] = 46273, + [SMALL_STATE(1780)] = 46346, + [SMALL_STATE(1781)] = 46427, + [SMALL_STATE(1782)] = 46512, + [SMALL_STATE(1783)] = 46565, + [SMALL_STATE(1784)] = 46618, + [SMALL_STATE(1785)] = 46671, + [SMALL_STATE(1786)] = 46724, + [SMALL_STATE(1787)] = 46777, + [SMALL_STATE(1788)] = 46830, + [SMALL_STATE(1789)] = 46917, + [SMALL_STATE(1790)] = 47006, + [SMALL_STATE(1791)] = 47059, + [SMALL_STATE(1792)] = 47112, + [SMALL_STATE(1793)] = 47165, + [SMALL_STATE(1794)] = 47254, + [SMALL_STATE(1795)] = 47307, + [SMALL_STATE(1796)] = 47360, + [SMALL_STATE(1797)] = 47413, + [SMALL_STATE(1798)] = 47466, + [SMALL_STATE(1799)] = 47553, + [SMALL_STATE(1800)] = 47606, + [SMALL_STATE(1801)] = 47659, + [SMALL_STATE(1802)] = 47712, + [SMALL_STATE(1803)] = 47765, + [SMALL_STATE(1804)] = 47818, + [SMALL_STATE(1805)] = 47871, + [SMALL_STATE(1806)] = 47924, + [SMALL_STATE(1807)] = 47977, + [SMALL_STATE(1808)] = 48030, + [SMALL_STATE(1809)] = 48083, + [SMALL_STATE(1810)] = 48136, + [SMALL_STATE(1811)] = 48189, + [SMALL_STATE(1812)] = 48242, + [SMALL_STATE(1813)] = 48295, + [SMALL_STATE(1814)] = 48348, + [SMALL_STATE(1815)] = 48401, + [SMALL_STATE(1816)] = 48454, + [SMALL_STATE(1817)] = 48543, + [SMALL_STATE(1818)] = 48630, + [SMALL_STATE(1819)] = 48683, + [SMALL_STATE(1820)] = 48736, + [SMALL_STATE(1821)] = 48823, + [SMALL_STATE(1822)] = 48908, + [SMALL_STATE(1823)] = 48961, + [SMALL_STATE(1824)] = 49014, + [SMALL_STATE(1825)] = 49067, + [SMALL_STATE(1826)] = 49156, + [SMALL_STATE(1827)] = 49209, + [SMALL_STATE(1828)] = 49272, + [SMALL_STATE(1829)] = 49341, + [SMALL_STATE(1830)] = 49412, + [SMALL_STATE(1831)] = 49489, + [SMALL_STATE(1832)] = 49568, + [SMALL_STATE(1833)] = 49633, + [SMALL_STATE(1834)] = 49718, + [SMALL_STATE(1835)] = 49803, + [SMALL_STATE(1836)] = 49876, + [SMALL_STATE(1837)] = 49957, + [SMALL_STATE(1838)] = 50010, + [SMALL_STATE(1839)] = 50063, + [SMALL_STATE(1840)] = 50150, + [SMALL_STATE(1841)] = 50203, + [SMALL_STATE(1842)] = 50256, + [SMALL_STATE(1843)] = 50309, + [SMALL_STATE(1844)] = 50362, + [SMALL_STATE(1845)] = 50415, + [SMALL_STATE(1846)] = 50468, + [SMALL_STATE(1847)] = 50521, + [SMALL_STATE(1848)] = 50574, + [SMALL_STATE(1849)] = 50661, + [SMALL_STATE(1850)] = 50714, + [SMALL_STATE(1851)] = 50767, + [SMALL_STATE(1852)] = 50820, + [SMALL_STATE(1853)] = 50873, + [SMALL_STATE(1854)] = 50926, + [SMALL_STATE(1855)] = 50979, + [SMALL_STATE(1856)] = 51032, + [SMALL_STATE(1857)] = 51119, + [SMALL_STATE(1858)] = 51172, + [SMALL_STATE(1859)] = 51259, + [SMALL_STATE(1860)] = 51312, + [SMALL_STATE(1861)] = 51365, + [SMALL_STATE(1862)] = 51418, + [SMALL_STATE(1863)] = 51505, + [SMALL_STATE(1864)] = 51592, + [SMALL_STATE(1865)] = 51653, + [SMALL_STATE(1866)] = 51706, + [SMALL_STATE(1867)] = 51759, + [SMALL_STATE(1868)] = 51848, + [SMALL_STATE(1869)] = 51937, + [SMALL_STATE(1870)] = 52026, + [SMALL_STATE(1871)] = 52079, + [SMALL_STATE(1872)] = 52168, + [SMALL_STATE(1873)] = 52221, + [SMALL_STATE(1874)] = 52310, + [SMALL_STATE(1875)] = 52397, + [SMALL_STATE(1876)] = 52450, + [SMALL_STATE(1877)] = 52539, + [SMALL_STATE(1878)] = 52592, + [SMALL_STATE(1879)] = 52645, + [SMALL_STATE(1880)] = 52704, + [SMALL_STATE(1881)] = 52793, + [SMALL_STATE(1882)] = 52882, + [SMALL_STATE(1883)] = 52971, + [SMALL_STATE(1884)] = 53060, + [SMALL_STATE(1885)] = 53149, + [SMALL_STATE(1886)] = 53238, + [SMALL_STATE(1887)] = 53327, + [SMALL_STATE(1888)] = 53416, + [SMALL_STATE(1889)] = 53505, + [SMALL_STATE(1890)] = 53594, + [SMALL_STATE(1891)] = 53683, + [SMALL_STATE(1892)] = 53764, + [SMALL_STATE(1893)] = 53849, + [SMALL_STATE(1894)] = 53938, + [SMALL_STATE(1895)] = 54023, + [SMALL_STATE(1896)] = 54108, + [SMALL_STATE(1897)] = 54197, + [SMALL_STATE(1898)] = 54286, + [SMALL_STATE(1899)] = 54375, + [SMALL_STATE(1900)] = 54464, + [SMALL_STATE(1901)] = 54553, + [SMALL_STATE(1902)] = 54642, + [SMALL_STATE(1903)] = 54731, + [SMALL_STATE(1904)] = 54820, + [SMALL_STATE(1905)] = 54909, + [SMALL_STATE(1906)] = 54998, + [SMALL_STATE(1907)] = 55087, + [SMALL_STATE(1908)] = 55174, + [SMALL_STATE(1909)] = 55263, + [SMALL_STATE(1910)] = 55352, + [SMALL_STATE(1911)] = 55441, + [SMALL_STATE(1912)] = 55530, + [SMALL_STATE(1913)] = 55617, + [SMALL_STATE(1914)] = 55704, + [SMALL_STATE(1915)] = 55793, + [SMALL_STATE(1916)] = 55882, + [SMALL_STATE(1917)] = 55971, + [SMALL_STATE(1918)] = 56060, + [SMALL_STATE(1919)] = 56149, + [SMALL_STATE(1920)] = 56238, + [SMALL_STATE(1921)] = 56291, + [SMALL_STATE(1922)] = 56344, + [SMALL_STATE(1923)] = 56397, + [SMALL_STATE(1924)] = 56450, + [SMALL_STATE(1925)] = 56503, + [SMALL_STATE(1926)] = 56556, + [SMALL_STATE(1927)] = 56609, + [SMALL_STATE(1928)] = 56686, + [SMALL_STATE(1929)] = 56739, + [SMALL_STATE(1930)] = 56826, + [SMALL_STATE(1931)] = 56879, + [SMALL_STATE(1932)] = 56966, + [SMALL_STATE(1933)] = 57019, + [SMALL_STATE(1934)] = 57108, + [SMALL_STATE(1935)] = 57195, + [SMALL_STATE(1936)] = 57284, + [SMALL_STATE(1937)] = 57337, + [SMALL_STATE(1938)] = 57411, + [SMALL_STATE(1939)] = 57497, + [SMALL_STATE(1940)] = 57583, + [SMALL_STATE(1941)] = 57669, + [SMALL_STATE(1942)] = 57755, + [SMALL_STATE(1943)] = 57841, + [SMALL_STATE(1944)] = 57927, + [SMALL_STATE(1945)] = 58013, + [SMALL_STATE(1946)] = 58087, + [SMALL_STATE(1947)] = 58173, + [SMALL_STATE(1948)] = 58259, + [SMALL_STATE(1949)] = 58345, + [SMALL_STATE(1950)] = 58419, + [SMALL_STATE(1951)] = 58505, + [SMALL_STATE(1952)] = 58591, + [SMALL_STATE(1953)] = 58675, + [SMALL_STATE(1954)] = 58749, + [SMALL_STATE(1955)] = 58835, + [SMALL_STATE(1956)] = 58919, + [SMALL_STATE(1957)] = 59005, + [SMALL_STATE(1958)] = 59091, + [SMALL_STATE(1959)] = 59177, + [SMALL_STATE(1960)] = 59263, + [SMALL_STATE(1961)] = 59349, + [SMALL_STATE(1962)] = 59423, + [SMALL_STATE(1963)] = 59509, + [SMALL_STATE(1964)] = 59595, + [SMALL_STATE(1965)] = 59681, + [SMALL_STATE(1966)] = 59767, + [SMALL_STATE(1967)] = 59853, + [SMALL_STATE(1968)] = 59939, + [SMALL_STATE(1969)] = 60025, + [SMALL_STATE(1970)] = 60111, + [SMALL_STATE(1971)] = 60197, + [SMALL_STATE(1972)] = 60283, + [SMALL_STATE(1973)] = 60369, + [SMALL_STATE(1974)] = 60455, + [SMALL_STATE(1975)] = 60530, + [SMALL_STATE(1976)] = 60605, + [SMALL_STATE(1977)] = 60680, + [SMALL_STATE(1978)] = 60755, + [SMALL_STATE(1979)] = 60830, + [SMALL_STATE(1980)] = 60905, + [SMALL_STATE(1981)] = 60980, + [SMALL_STATE(1982)] = 61055, + [SMALL_STATE(1983)] = 61102, + [SMALL_STATE(1984)] = 61149, + [SMALL_STATE(1985)] = 61196, + [SMALL_STATE(1986)] = 61258, + [SMALL_STATE(1987)] = 61320, + [SMALL_STATE(1988)] = 61382, + [SMALL_STATE(1989)] = 61444, + [SMALL_STATE(1990)] = 61506, + [SMALL_STATE(1991)] = 61568, + [SMALL_STATE(1992)] = 61630, + [SMALL_STATE(1993)] = 61692, + [SMALL_STATE(1994)] = 61754, + [SMALL_STATE(1995)] = 61813, + [SMALL_STATE(1996)] = 61872, + [SMALL_STATE(1997)] = 61908, + [SMALL_STATE(1998)] = 61944, + [SMALL_STATE(1999)] = 61981, + [SMALL_STATE(2000)] = 62018, + [SMALL_STATE(2001)] = 62071, + [SMALL_STATE(2002)] = 62108, + [SMALL_STATE(2003)] = 62145, + [SMALL_STATE(2004)] = 62189, + [SMALL_STATE(2005)] = 62225, + [SMALL_STATE(2006)] = 62259, + [SMALL_STATE(2007)] = 62293, + [SMALL_STATE(2008)] = 62329, + [SMALL_STATE(2009)] = 62365, + [SMALL_STATE(2010)] = 62401, + [SMALL_STATE(2011)] = 62435, + [SMALL_STATE(2012)] = 62479, + [SMALL_STATE(2013)] = 62523, + [SMALL_STATE(2014)] = 62557, + [SMALL_STATE(2015)] = 62590, + [SMALL_STATE(2016)] = 62621, + [SMALL_STATE(2017)] = 62654, + [SMALL_STATE(2018)] = 62695, + [SMALL_STATE(2019)] = 62746, + [SMALL_STATE(2020)] = 62779, + [SMALL_STATE(2021)] = 62812, + [SMALL_STATE(2022)] = 62872, + [SMALL_STATE(2023)] = 62916, + [SMALL_STATE(2024)] = 62976, + [SMALL_STATE(2025)] = 63008, + [SMALL_STATE(2026)] = 63054, + [SMALL_STATE(2027)] = 63086, + [SMALL_STATE(2028)] = 63118, + [SMALL_STATE(2029)] = 63156, + [SMALL_STATE(2030)] = 63194, + [SMALL_STATE(2031)] = 63232, + [SMALL_STATE(2032)] = 63270, + [SMALL_STATE(2033)] = 63303, + [SMALL_STATE(2034)] = 63332, + [SMALL_STATE(2035)] = 63363, + [SMALL_STATE(2036)] = 63404, + [SMALL_STATE(2037)] = 63447, + [SMALL_STATE(2038)] = 63500, + [SMALL_STATE(2039)] = 63529, + [SMALL_STATE(2040)] = 63562, + [SMALL_STATE(2041)] = 63595, + [SMALL_STATE(2042)] = 63624, + [SMALL_STATE(2043)] = 63657, + [SMALL_STATE(2044)] = 63710, + [SMALL_STATE(2045)] = 63739, + [SMALL_STATE(2046)] = 63768, + [SMALL_STATE(2047)] = 63797, + [SMALL_STATE(2048)] = 63830, + [SMALL_STATE(2049)] = 63859, + [SMALL_STATE(2050)] = 63888, + [SMALL_STATE(2051)] = 63921, + [SMALL_STATE(2052)] = 63976, + [SMALL_STATE(2053)] = 64005, + [SMALL_STATE(2054)] = 64038, + [SMALL_STATE(2055)] = 64082, + [SMALL_STATE(2056)] = 64110, + [SMALL_STATE(2057)] = 64138, + [SMALL_STATE(2058)] = 64166, + [SMALL_STATE(2059)] = 64194, + [SMALL_STATE(2060)] = 64222, + [SMALL_STATE(2061)] = 64250, + [SMALL_STATE(2062)] = 64278, + [SMALL_STATE(2063)] = 64306, + [SMALL_STATE(2064)] = 64334, + [SMALL_STATE(2065)] = 64362, + [SMALL_STATE(2066)] = 64390, + [SMALL_STATE(2067)] = 64418, + [SMALL_STATE(2068)] = 64446, + [SMALL_STATE(2069)] = 64474, + [SMALL_STATE(2070)] = 64502, + [SMALL_STATE(2071)] = 64532, + [SMALL_STATE(2072)] = 64560, + [SMALL_STATE(2073)] = 64588, + [SMALL_STATE(2074)] = 64616, + [SMALL_STATE(2075)] = 64644, + [SMALL_STATE(2076)] = 64672, + [SMALL_STATE(2077)] = 64700, + [SMALL_STATE(2078)] = 64728, + [SMALL_STATE(2079)] = 64756, + [SMALL_STATE(2080)] = 64784, + [SMALL_STATE(2081)] = 64812, + [SMALL_STATE(2082)] = 64840, + [SMALL_STATE(2083)] = 64868, + [SMALL_STATE(2084)] = 64896, + [SMALL_STATE(2085)] = 64924, + [SMALL_STATE(2086)] = 64952, + [SMALL_STATE(2087)] = 64980, + [SMALL_STATE(2088)] = 65008, + [SMALL_STATE(2089)] = 65036, + [SMALL_STATE(2090)] = 65066, + [SMALL_STATE(2091)] = 65094, + [SMALL_STATE(2092)] = 65122, + [SMALL_STATE(2093)] = 65151, + [SMALL_STATE(2094)] = 65180, + [SMALL_STATE(2095)] = 65209, + [SMALL_STATE(2096)] = 65244, + [SMALL_STATE(2097)] = 65273, + [SMALL_STATE(2098)] = 65302, + [SMALL_STATE(2099)] = 65331, + [SMALL_STATE(2100)] = 65360, + [SMALL_STATE(2101)] = 65389, + [SMALL_STATE(2102)] = 65418, + [SMALL_STATE(2103)] = 65447, + [SMALL_STATE(2104)] = 65479, + [SMALL_STATE(2105)] = 65511, + [SMALL_STATE(2106)] = 65543, + [SMALL_STATE(2107)] = 65575, + [SMALL_STATE(2108)] = 65607, + [SMALL_STATE(2109)] = 65637, + [SMALL_STATE(2110)] = 65669, + [SMALL_STATE(2111)] = 65697, + [SMALL_STATE(2112)] = 65729, + [SMALL_STATE(2113)] = 65761, + [SMALL_STATE(2114)] = 65793, + [SMALL_STATE(2115)] = 65825, + [SMALL_STATE(2116)] = 65857, + [SMALL_STATE(2117)] = 65901, + [SMALL_STATE(2118)] = 65941, + [SMALL_STATE(2119)] = 65973, + [SMALL_STATE(2120)] = 66019, + [SMALL_STATE(2121)] = 66062, + [SMALL_STATE(2122)] = 66091, + [SMALL_STATE(2123)] = 66134, + [SMALL_STATE(2124)] = 66177, + [SMALL_STATE(2125)] = 66220, + [SMALL_STATE(2126)] = 66257, + [SMALL_STATE(2127)] = 66300, + [SMALL_STATE(2128)] = 66343, + [SMALL_STATE(2129)] = 66372, + [SMALL_STATE(2130)] = 66400, + [SMALL_STATE(2131)] = 66428, + [SMALL_STATE(2132)] = 66452, + [SMALL_STATE(2133)] = 66492, + [SMALL_STATE(2134)] = 66532, + [SMALL_STATE(2135)] = 66560, + [SMALL_STATE(2136)] = 66600, + [SMALL_STATE(2137)] = 66628, + [SMALL_STATE(2138)] = 66668, + [SMALL_STATE(2139)] = 66708, + [SMALL_STATE(2140)] = 66736, + [SMALL_STATE(2141)] = 66774, + [SMALL_STATE(2142)] = 66802, + [SMALL_STATE(2143)] = 66840, + [SMALL_STATE(2144)] = 66870, + [SMALL_STATE(2145)] = 66894, + [SMALL_STATE(2146)] = 66922, + [SMALL_STATE(2147)] = 66962, + [SMALL_STATE(2148)] = 66990, + [SMALL_STATE(2149)] = 67030, + [SMALL_STATE(2150)] = 67054, + [SMALL_STATE(2151)] = 67082, + [SMALL_STATE(2152)] = 67120, + [SMALL_STATE(2153)] = 67150, + [SMALL_STATE(2154)] = 67178, + [SMALL_STATE(2155)] = 67206, + [SMALL_STATE(2156)] = 67244, + [SMALL_STATE(2157)] = 67282, + [SMALL_STATE(2158)] = 67320, + [SMALL_STATE(2159)] = 67358, + [SMALL_STATE(2160)] = 67386, + [SMALL_STATE(2161)] = 67424, + [SMALL_STATE(2162)] = 67462, + [SMALL_STATE(2163)] = 67500, + [SMALL_STATE(2164)] = 67528, + [SMALL_STATE(2165)] = 67568, + [SMALL_STATE(2166)] = 67606, + [SMALL_STATE(2167)] = 67634, + [SMALL_STATE(2168)] = 67662, + [SMALL_STATE(2169)] = 67690, + [SMALL_STATE(2170)] = 67730, + [SMALL_STATE(2171)] = 67754, + [SMALL_STATE(2172)] = 67784, + [SMALL_STATE(2173)] = 67808, + [SMALL_STATE(2174)] = 67846, + [SMALL_STATE(2175)] = 67880, + [SMALL_STATE(2176)] = 67920, + [SMALL_STATE(2177)] = 67950, + [SMALL_STATE(2178)] = 67991, + [SMALL_STATE(2179)] = 68014, + [SMALL_STATE(2180)] = 68037, + [SMALL_STATE(2181)] = 68060, + [SMALL_STATE(2182)] = 68083, + [SMALL_STATE(2183)] = 68106, + [SMALL_STATE(2184)] = 68129, + [SMALL_STATE(2185)] = 68152, + [SMALL_STATE(2186)] = 68175, + [SMALL_STATE(2187)] = 68208, + [SMALL_STATE(2188)] = 68231, + [SMALL_STATE(2189)] = 68254, + [SMALL_STATE(2190)] = 68277, + [SMALL_STATE(2191)] = 68300, + [SMALL_STATE(2192)] = 68323, + [SMALL_STATE(2193)] = 68346, + [SMALL_STATE(2194)] = 68369, + [SMALL_STATE(2195)] = 68392, + [SMALL_STATE(2196)] = 68415, + [SMALL_STATE(2197)] = 68446, + [SMALL_STATE(2198)] = 68481, + [SMALL_STATE(2199)] = 68504, + [SMALL_STATE(2200)] = 68539, + [SMALL_STATE(2201)] = 68580, + [SMALL_STATE(2202)] = 68603, + [SMALL_STATE(2203)] = 68640, + [SMALL_STATE(2204)] = 68677, + [SMALL_STATE(2205)] = 68700, + [SMALL_STATE(2206)] = 68723, + [SMALL_STATE(2207)] = 68754, + [SMALL_STATE(2208)] = 68777, + [SMALL_STATE(2209)] = 68808, + [SMALL_STATE(2210)] = 68849, + [SMALL_STATE(2211)] = 68872, + [SMALL_STATE(2212)] = 68895, + [SMALL_STATE(2213)] = 68932, + [SMALL_STATE(2214)] = 68955, + [SMALL_STATE(2215)] = 68978, + [SMALL_STATE(2216)] = 69015, + [SMALL_STATE(2217)] = 69038, + [SMALL_STATE(2218)] = 69061, + [SMALL_STATE(2219)] = 69084, + [SMALL_STATE(2220)] = 69107, + [SMALL_STATE(2221)] = 69130, + [SMALL_STATE(2222)] = 69153, + [SMALL_STATE(2223)] = 69184, + [SMALL_STATE(2224)] = 69215, + [SMALL_STATE(2225)] = 69250, + [SMALL_STATE(2226)] = 69273, + [SMALL_STATE(2227)] = 69308, + [SMALL_STATE(2228)] = 69331, + [SMALL_STATE(2229)] = 69362, + [SMALL_STATE(2230)] = 69385, + [SMALL_STATE(2231)] = 69408, + [SMALL_STATE(2232)] = 69449, + [SMALL_STATE(2233)] = 69473, + [SMALL_STATE(2234)] = 69505, + [SMALL_STATE(2235)] = 69535, + [SMALL_STATE(2236)] = 69563, + [SMALL_STATE(2237)] = 69591, + [SMALL_STATE(2238)] = 69615, + [SMALL_STATE(2239)] = 69653, + [SMALL_STATE(2240)] = 69683, + [SMALL_STATE(2241)] = 69711, + [SMALL_STATE(2242)] = 69743, + [SMALL_STATE(2243)] = 69771, + [SMALL_STATE(2244)] = 69799, + [SMALL_STATE(2245)] = 69837, + [SMALL_STATE(2246)] = 69875, + [SMALL_STATE(2247)] = 69913, + [SMALL_STATE(2248)] = 69939, + [SMALL_STATE(2249)] = 69967, + [SMALL_STATE(2250)] = 70005, + [SMALL_STATE(2251)] = 70043, + [SMALL_STATE(2252)] = 70067, + [SMALL_STATE(2253)] = 70099, + [SMALL_STATE(2254)] = 70137, + [SMALL_STATE(2255)] = 70175, + [SMALL_STATE(2256)] = 70205, + [SMALL_STATE(2257)] = 70243, + [SMALL_STATE(2258)] = 70281, + [SMALL_STATE(2259)] = 70311, + [SMALL_STATE(2260)] = 70345, + [SMALL_STATE(2261)] = 70373, + [SMALL_STATE(2262)] = 70411, + [SMALL_STATE(2263)] = 70435, + [SMALL_STATE(2264)] = 70461, + [SMALL_STATE(2265)] = 70487, + [SMALL_STATE(2266)] = 70521, + [SMALL_STATE(2267)] = 70559, + [SMALL_STATE(2268)] = 70591, + [SMALL_STATE(2269)] = 70627, + [SMALL_STATE(2270)] = 70665, + [SMALL_STATE(2271)] = 70697, + [SMALL_STATE(2272)] = 70729, + [SMALL_STATE(2273)] = 70767, + [SMALL_STATE(2274)] = 70805, + [SMALL_STATE(2275)] = 70837, + [SMALL_STATE(2276)] = 70869, + [SMALL_STATE(2277)] = 70907, + [SMALL_STATE(2278)] = 70939, + [SMALL_STATE(2279)] = 70971, + [SMALL_STATE(2280)] = 71003, + [SMALL_STATE(2281)] = 71035, + [SMALL_STATE(2282)] = 71063, + [SMALL_STATE(2283)] = 71095, + [SMALL_STATE(2284)] = 71119, + [SMALL_STATE(2285)] = 71144, + [SMALL_STATE(2286)] = 71179, + [SMALL_STATE(2287)] = 71214, + [SMALL_STATE(2288)] = 71249, + [SMALL_STATE(2289)] = 71284, + [SMALL_STATE(2290)] = 71319, + [SMALL_STATE(2291)] = 71354, + [SMALL_STATE(2292)] = 71389, + [SMALL_STATE(2293)] = 71424, + [SMALL_STATE(2294)] = 71459, + [SMALL_STATE(2295)] = 71494, + [SMALL_STATE(2296)] = 71529, + [SMALL_STATE(2297)] = 71554, + [SMALL_STATE(2298)] = 71589, + [SMALL_STATE(2299)] = 71622, + [SMALL_STATE(2300)] = 71657, + [SMALL_STATE(2301)] = 71692, + [SMALL_STATE(2302)] = 71713, + [SMALL_STATE(2303)] = 71734, + [SMALL_STATE(2304)] = 71755, + [SMALL_STATE(2305)] = 71782, + [SMALL_STATE(2306)] = 71817, + [SMALL_STATE(2307)] = 71852, + [SMALL_STATE(2308)] = 71885, + [SMALL_STATE(2309)] = 71920, + [SMALL_STATE(2310)] = 71955, + [SMALL_STATE(2311)] = 71980, + [SMALL_STATE(2312)] = 72013, + [SMALL_STATE(2313)] = 72048, + [SMALL_STATE(2314)] = 72083, + [SMALL_STATE(2315)] = 72118, + [SMALL_STATE(2316)] = 72153, + [SMALL_STATE(2317)] = 72188, + [SMALL_STATE(2318)] = 72217, + [SMALL_STATE(2319)] = 72252, + [SMALL_STATE(2320)] = 72287, + [SMALL_STATE(2321)] = 72322, + [SMALL_STATE(2322)] = 72357, + [SMALL_STATE(2323)] = 72390, + [SMALL_STATE(2324)] = 72425, + [SMALL_STATE(2325)] = 72460, + [SMALL_STATE(2326)] = 72495, + [SMALL_STATE(2327)] = 72530, + [SMALL_STATE(2328)] = 72551, + [SMALL_STATE(2329)] = 72586, + [SMALL_STATE(2330)] = 72621, + [SMALL_STATE(2331)] = 72656, + [SMALL_STATE(2332)] = 72689, + [SMALL_STATE(2333)] = 72724, + [SMALL_STATE(2334)] = 72759, + [SMALL_STATE(2335)] = 72794, + [SMALL_STATE(2336)] = 72829, + [SMALL_STATE(2337)] = 72864, + [SMALL_STATE(2338)] = 72899, + [SMALL_STATE(2339)] = 72931, + [SMALL_STATE(2340)] = 72959, + [SMALL_STATE(2341)] = 72989, + [SMALL_STATE(2342)] = 73021, + [SMALL_STATE(2343)] = 73053, + [SMALL_STATE(2344)] = 73079, + [SMALL_STATE(2345)] = 73111, + [SMALL_STATE(2346)] = 73143, + [SMALL_STATE(2347)] = 73175, + [SMALL_STATE(2348)] = 73207, + [SMALL_STATE(2349)] = 73237, + [SMALL_STATE(2350)] = 73269, + [SMALL_STATE(2351)] = 73299, + [SMALL_STATE(2352)] = 73331, + [SMALL_STATE(2353)] = 73363, + [SMALL_STATE(2354)] = 73395, + [SMALL_STATE(2355)] = 73427, + [SMALL_STATE(2356)] = 73459, + [SMALL_STATE(2357)] = 73487, + [SMALL_STATE(2358)] = 73515, + [SMALL_STATE(2359)] = 73541, + [SMALL_STATE(2360)] = 73567, + [SMALL_STATE(2361)] = 73599, + [SMALL_STATE(2362)] = 73631, + [SMALL_STATE(2363)] = 73663, + [SMALL_STATE(2364)] = 73695, + [SMALL_STATE(2365)] = 73727, + [SMALL_STATE(2366)] = 73759, + [SMALL_STATE(2367)] = 73791, + [SMALL_STATE(2368)] = 73821, + [SMALL_STATE(2369)] = 73849, + [SMALL_STATE(2370)] = 73879, + [SMALL_STATE(2371)] = 73911, + [SMALL_STATE(2372)] = 73941, + [SMALL_STATE(2373)] = 73963, + [SMALL_STATE(2374)] = 73985, + [SMALL_STATE(2375)] = 74017, + [SMALL_STATE(2376)] = 74047, + [SMALL_STATE(2377)] = 74079, + [SMALL_STATE(2378)] = 74105, + [SMALL_STATE(2379)] = 74137, + [SMALL_STATE(2380)] = 74169, + [SMALL_STATE(2381)] = 74201, + [SMALL_STATE(2382)] = 74231, + [SMALL_STATE(2383)] = 74263, + [SMALL_STATE(2384)] = 74293, + [SMALL_STATE(2385)] = 74315, + [SMALL_STATE(2386)] = 74347, + [SMALL_STATE(2387)] = 74369, + [SMALL_STATE(2388)] = 74401, + [SMALL_STATE(2389)] = 74433, + [SMALL_STATE(2390)] = 74461, + [SMALL_STATE(2391)] = 74493, + [SMALL_STATE(2392)] = 74515, + [SMALL_STATE(2393)] = 74545, + [SMALL_STATE(2394)] = 74577, + [SMALL_STATE(2395)] = 74609, + [SMALL_STATE(2396)] = 74641, + [SMALL_STATE(2397)] = 74673, + [SMALL_STATE(2398)] = 74695, + [SMALL_STATE(2399)] = 74727, + [SMALL_STATE(2400)] = 74759, + [SMALL_STATE(2401)] = 74791, + [SMALL_STATE(2402)] = 74823, + [SMALL_STATE(2403)] = 74844, + [SMALL_STATE(2404)] = 74867, + [SMALL_STATE(2405)] = 74888, + [SMALL_STATE(2406)] = 74909, + [SMALL_STATE(2407)] = 74938, + [SMALL_STATE(2408)] = 74959, + [SMALL_STATE(2409)] = 74980, + [SMALL_STATE(2410)] = 75001, + [SMALL_STATE(2411)] = 75030, + [SMALL_STATE(2412)] = 75059, + [SMALL_STATE(2413)] = 75088, + [SMALL_STATE(2414)] = 75117, + [SMALL_STATE(2415)] = 75146, + [SMALL_STATE(2416)] = 75175, + [SMALL_STATE(2417)] = 75204, + [SMALL_STATE(2418)] = 75233, + [SMALL_STATE(2419)] = 75262, + [SMALL_STATE(2420)] = 75291, + [SMALL_STATE(2421)] = 75320, + [SMALL_STATE(2422)] = 75349, + [SMALL_STATE(2423)] = 75376, + [SMALL_STATE(2424)] = 75405, + [SMALL_STATE(2425)] = 75434, + [SMALL_STATE(2426)] = 75457, + [SMALL_STATE(2427)] = 75480, + [SMALL_STATE(2428)] = 75509, + [SMALL_STATE(2429)] = 75538, + [SMALL_STATE(2430)] = 75567, + [SMALL_STATE(2431)] = 75596, + [SMALL_STATE(2432)] = 75625, + [SMALL_STATE(2433)] = 75654, + [SMALL_STATE(2434)] = 75683, + [SMALL_STATE(2435)] = 75712, + [SMALL_STATE(2436)] = 75735, + [SMALL_STATE(2437)] = 75764, + [SMALL_STATE(2438)] = 75793, + [SMALL_STATE(2439)] = 75822, + [SMALL_STATE(2440)] = 75845, + [SMALL_STATE(2441)] = 75874, + [SMALL_STATE(2442)] = 75903, + [SMALL_STATE(2443)] = 75932, + [SMALL_STATE(2444)] = 75961, + [SMALL_STATE(2445)] = 75990, + [SMALL_STATE(2446)] = 76019, + [SMALL_STATE(2447)] = 76048, + [SMALL_STATE(2448)] = 76077, + [SMALL_STATE(2449)] = 76104, + [SMALL_STATE(2450)] = 76127, + [SMALL_STATE(2451)] = 76154, + [SMALL_STATE(2452)] = 76179, + [SMALL_STATE(2453)] = 76204, + [SMALL_STATE(2454)] = 76229, + [SMALL_STATE(2455)] = 76250, + [SMALL_STATE(2456)] = 76279, + [SMALL_STATE(2457)] = 76300, + [SMALL_STATE(2458)] = 76329, + [SMALL_STATE(2459)] = 76358, + [SMALL_STATE(2460)] = 76383, + [SMALL_STATE(2461)] = 76412, + [SMALL_STATE(2462)] = 76431, + [SMALL_STATE(2463)] = 76460, + [SMALL_STATE(2464)] = 76489, + [SMALL_STATE(2465)] = 76510, + [SMALL_STATE(2466)] = 76531, + [SMALL_STATE(2467)] = 76552, + [SMALL_STATE(2468)] = 76575, + [SMALL_STATE(2469)] = 76596, + [SMALL_STATE(2470)] = 76625, + [SMALL_STATE(2471)] = 76654, + [SMALL_STATE(2472)] = 76677, + [SMALL_STATE(2473)] = 76704, + [SMALL_STATE(2474)] = 76733, + [SMALL_STATE(2475)] = 76762, + [SMALL_STATE(2476)] = 76783, + [SMALL_STATE(2477)] = 76812, + [SMALL_STATE(2478)] = 76835, + [SMALL_STATE(2479)] = 76864, + [SMALL_STATE(2480)] = 76893, + [SMALL_STATE(2481)] = 76922, + [SMALL_STATE(2482)] = 76941, + [SMALL_STATE(2483)] = 76964, + [SMALL_STATE(2484)] = 76987, + [SMALL_STATE(2485)] = 77016, + [SMALL_STATE(2486)] = 77045, + [SMALL_STATE(2487)] = 77068, + [SMALL_STATE(2488)] = 77097, + [SMALL_STATE(2489)] = 77126, + [SMALL_STATE(2490)] = 77155, + [SMALL_STATE(2491)] = 77176, + [SMALL_STATE(2492)] = 77205, + [SMALL_STATE(2493)] = 77228, + [SMALL_STATE(2494)] = 77257, + [SMALL_STATE(2495)] = 77278, + [SMALL_STATE(2496)] = 77307, + [SMALL_STATE(2497)] = 77336, + [SMALL_STATE(2498)] = 77359, + [SMALL_STATE(2499)] = 77382, + [SMALL_STATE(2500)] = 77411, + [SMALL_STATE(2501)] = 77438, + [SMALL_STATE(2502)] = 77459, + [SMALL_STATE(2503)] = 77488, + [SMALL_STATE(2504)] = 77515, + [SMALL_STATE(2505)] = 77544, + [SMALL_STATE(2506)] = 77573, + [SMALL_STATE(2507)] = 77596, + [SMALL_STATE(2508)] = 77625, + [SMALL_STATE(2509)] = 77651, + [SMALL_STATE(2510)] = 77669, + [SMALL_STATE(2511)] = 77695, + [SMALL_STATE(2512)] = 77721, + [SMALL_STATE(2513)] = 77747, + [SMALL_STATE(2514)] = 77771, + [SMALL_STATE(2515)] = 77797, + [SMALL_STATE(2516)] = 77821, + [SMALL_STATE(2517)] = 77847, + [SMALL_STATE(2518)] = 77873, + [SMALL_STATE(2519)] = 77891, + [SMALL_STATE(2520)] = 77917, + [SMALL_STATE(2521)] = 77943, + [SMALL_STATE(2522)] = 77969, + [SMALL_STATE(2523)] = 77987, + [SMALL_STATE(2524)] = 78013, + [SMALL_STATE(2525)] = 78039, + [SMALL_STATE(2526)] = 78065, + [SMALL_STATE(2527)] = 78089, + [SMALL_STATE(2528)] = 78111, + [SMALL_STATE(2529)] = 78133, + [SMALL_STATE(2530)] = 78151, + [SMALL_STATE(2531)] = 78177, + [SMALL_STATE(2532)] = 78201, + [SMALL_STATE(2533)] = 78227, + [SMALL_STATE(2534)] = 78245, + [SMALL_STATE(2535)] = 78271, + [SMALL_STATE(2536)] = 78289, + [SMALL_STATE(2537)] = 78313, + [SMALL_STATE(2538)] = 78339, + [SMALL_STATE(2539)] = 78365, + [SMALL_STATE(2540)] = 78389, + [SMALL_STATE(2541)] = 78409, + [SMALL_STATE(2542)] = 78427, + [SMALL_STATE(2543)] = 78453, + [SMALL_STATE(2544)] = 78475, + [SMALL_STATE(2545)] = 78495, + [SMALL_STATE(2546)] = 78521, + [SMALL_STATE(2547)] = 78547, + [SMALL_STATE(2548)] = 78565, + [SMALL_STATE(2549)] = 78591, + [SMALL_STATE(2550)] = 78617, + [SMALL_STATE(2551)] = 78635, + [SMALL_STATE(2552)] = 78653, + [SMALL_STATE(2553)] = 78679, + [SMALL_STATE(2554)] = 78697, + [SMALL_STATE(2555)] = 78721, + [SMALL_STATE(2556)] = 78739, + [SMALL_STATE(2557)] = 78765, + [SMALL_STATE(2558)] = 78791, + [SMALL_STATE(2559)] = 78817, + [SMALL_STATE(2560)] = 78835, + [SMALL_STATE(2561)] = 78859, + [SMALL_STATE(2562)] = 78877, + [SMALL_STATE(2563)] = 78899, + [SMALL_STATE(2564)] = 78917, + [SMALL_STATE(2565)] = 78937, + [SMALL_STATE(2566)] = 78963, + [SMALL_STATE(2567)] = 78987, + [SMALL_STATE(2568)] = 79013, + [SMALL_STATE(2569)] = 79037, + [SMALL_STATE(2570)] = 79063, + [SMALL_STATE(2571)] = 79089, + [SMALL_STATE(2572)] = 79115, + [SMALL_STATE(2573)] = 79137, + [SMALL_STATE(2574)] = 79163, + [SMALL_STATE(2575)] = 79181, + [SMALL_STATE(2576)] = 79199, + [SMALL_STATE(2577)] = 79225, + [SMALL_STATE(2578)] = 79249, + [SMALL_STATE(2579)] = 79275, + [SMALL_STATE(2580)] = 79299, + [SMALL_STATE(2581)] = 79325, + [SMALL_STATE(2582)] = 79347, + [SMALL_STATE(2583)] = 79373, + [SMALL_STATE(2584)] = 79399, + [SMALL_STATE(2585)] = 79417, + [SMALL_STATE(2586)] = 79435, + [SMALL_STATE(2587)] = 79461, + [SMALL_STATE(2588)] = 79479, + [SMALL_STATE(2589)] = 79501, + [SMALL_STATE(2590)] = 79527, + [SMALL_STATE(2591)] = 79553, + [SMALL_STATE(2592)] = 79577, + [SMALL_STATE(2593)] = 79595, + [SMALL_STATE(2594)] = 79621, + [SMALL_STATE(2595)] = 79639, + [SMALL_STATE(2596)] = 79665, + [SMALL_STATE(2597)] = 79691, + [SMALL_STATE(2598)] = 79715, + [SMALL_STATE(2599)] = 79733, + [SMALL_STATE(2600)] = 79759, + [SMALL_STATE(2601)] = 79785, + [SMALL_STATE(2602)] = 79803, + [SMALL_STATE(2603)] = 79829, + [SMALL_STATE(2604)] = 79855, + [SMALL_STATE(2605)] = 79881, + [SMALL_STATE(2606)] = 79901, + [SMALL_STATE(2607)] = 79927, + [SMALL_STATE(2608)] = 79949, + [SMALL_STATE(2609)] = 79975, + [SMALL_STATE(2610)] = 80001, + [SMALL_STATE(2611)] = 80027, + [SMALL_STATE(2612)] = 80051, + [SMALL_STATE(2613)] = 80075, + [SMALL_STATE(2614)] = 80093, + [SMALL_STATE(2615)] = 80111, + [SMALL_STATE(2616)] = 80137, + [SMALL_STATE(2617)] = 80160, + [SMALL_STATE(2618)] = 80183, + [SMALL_STATE(2619)] = 80206, + [SMALL_STATE(2620)] = 80229, + [SMALL_STATE(2621)] = 80252, + [SMALL_STATE(2622)] = 80275, + [SMALL_STATE(2623)] = 80298, + [SMALL_STATE(2624)] = 80321, + [SMALL_STATE(2625)] = 80344, + [SMALL_STATE(2626)] = 80367, + [SMALL_STATE(2627)] = 80390, + [SMALL_STATE(2628)] = 80413, + [SMALL_STATE(2629)] = 80434, + [SMALL_STATE(2630)] = 80457, + [SMALL_STATE(2631)] = 80480, + [SMALL_STATE(2632)] = 80503, + [SMALL_STATE(2633)] = 80526, + [SMALL_STATE(2634)] = 80549, + [SMALL_STATE(2635)] = 80572, + [SMALL_STATE(2636)] = 80591, + [SMALL_STATE(2637)] = 80614, + [SMALL_STATE(2638)] = 80637, + [SMALL_STATE(2639)] = 80660, + [SMALL_STATE(2640)] = 80683, + [SMALL_STATE(2641)] = 80706, + [SMALL_STATE(2642)] = 80729, + [SMALL_STATE(2643)] = 80750, + [SMALL_STATE(2644)] = 80773, + [SMALL_STATE(2645)] = 80796, + [SMALL_STATE(2646)] = 80819, + [SMALL_STATE(2647)] = 80842, + [SMALL_STATE(2648)] = 80863, + [SMALL_STATE(2649)] = 80886, + [SMALL_STATE(2650)] = 80905, + [SMALL_STATE(2651)] = 80926, + [SMALL_STATE(2652)] = 80949, + [SMALL_STATE(2653)] = 80972, + [SMALL_STATE(2654)] = 80995, + [SMALL_STATE(2655)] = 81018, + [SMALL_STATE(2656)] = 81041, + [SMALL_STATE(2657)] = 81060, + [SMALL_STATE(2658)] = 81083, + [SMALL_STATE(2659)] = 81104, + [SMALL_STATE(2660)] = 81127, + [SMALL_STATE(2661)] = 81146, + [SMALL_STATE(2662)] = 81169, + [SMALL_STATE(2663)] = 81192, + [SMALL_STATE(2664)] = 81215, + [SMALL_STATE(2665)] = 81238, + [SMALL_STATE(2666)] = 81261, + [SMALL_STATE(2667)] = 81284, + [SMALL_STATE(2668)] = 81307, + [SMALL_STATE(2669)] = 81330, + [SMALL_STATE(2670)] = 81351, + [SMALL_STATE(2671)] = 81374, + [SMALL_STATE(2672)] = 81397, + [SMALL_STATE(2673)] = 81420, + [SMALL_STATE(2674)] = 81441, + [SMALL_STATE(2675)] = 81460, + [SMALL_STATE(2676)] = 81483, + [SMALL_STATE(2677)] = 81504, + [SMALL_STATE(2678)] = 81527, + [SMALL_STATE(2679)] = 81550, + [SMALL_STATE(2680)] = 81573, + [SMALL_STATE(2681)] = 81596, + [SMALL_STATE(2682)] = 81619, + [SMALL_STATE(2683)] = 81642, + [SMALL_STATE(2684)] = 81665, + [SMALL_STATE(2685)] = 81688, + [SMALL_STATE(2686)] = 81711, + [SMALL_STATE(2687)] = 81734, + [SMALL_STATE(2688)] = 81757, + [SMALL_STATE(2689)] = 81780, + [SMALL_STATE(2690)] = 81803, + [SMALL_STATE(2691)] = 81822, + [SMALL_STATE(2692)] = 81845, + [SMALL_STATE(2693)] = 81868, + [SMALL_STATE(2694)] = 81891, + [SMALL_STATE(2695)] = 81914, + [SMALL_STATE(2696)] = 81937, + [SMALL_STATE(2697)] = 81960, + [SMALL_STATE(2698)] = 81983, + [SMALL_STATE(2699)] = 82006, + [SMALL_STATE(2700)] = 82029, + [SMALL_STATE(2701)] = 82050, + [SMALL_STATE(2702)] = 82071, + [SMALL_STATE(2703)] = 82094, + [SMALL_STATE(2704)] = 82117, + [SMALL_STATE(2705)] = 82138, + [SMALL_STATE(2706)] = 82161, + [SMALL_STATE(2707)] = 82184, + [SMALL_STATE(2708)] = 82207, + [SMALL_STATE(2709)] = 82230, + [SMALL_STATE(2710)] = 82253, + [SMALL_STATE(2711)] = 82276, + [SMALL_STATE(2712)] = 82299, + [SMALL_STATE(2713)] = 82318, + [SMALL_STATE(2714)] = 82341, + [SMALL_STATE(2715)] = 82362, + [SMALL_STATE(2716)] = 82385, + [SMALL_STATE(2717)] = 82408, + [SMALL_STATE(2718)] = 82431, + [SMALL_STATE(2719)] = 82454, + [SMALL_STATE(2720)] = 82477, + [SMALL_STATE(2721)] = 82498, + [SMALL_STATE(2722)] = 82521, + [SMALL_STATE(2723)] = 82544, + [SMALL_STATE(2724)] = 82567, + [SMALL_STATE(2725)] = 82588, + [SMALL_STATE(2726)] = 82609, + [SMALL_STATE(2727)] = 82632, + [SMALL_STATE(2728)] = 82651, + [SMALL_STATE(2729)] = 82672, + [SMALL_STATE(2730)] = 82695, + [SMALL_STATE(2731)] = 82718, + [SMALL_STATE(2732)] = 82741, + [SMALL_STATE(2733)] = 82764, + [SMALL_STATE(2734)] = 82783, + [SMALL_STATE(2735)] = 82802, + [SMALL_STATE(2736)] = 82825, + [SMALL_STATE(2737)] = 82848, + [SMALL_STATE(2738)] = 82871, + [SMALL_STATE(2739)] = 82888, + [SMALL_STATE(2740)] = 82911, + [SMALL_STATE(2741)] = 82934, + [SMALL_STATE(2742)] = 82957, + [SMALL_STATE(2743)] = 82976, + [SMALL_STATE(2744)] = 82999, + [SMALL_STATE(2745)] = 83022, + [SMALL_STATE(2746)] = 83041, + [SMALL_STATE(2747)] = 83058, + [SMALL_STATE(2748)] = 83081, + [SMALL_STATE(2749)] = 83098, + [SMALL_STATE(2750)] = 83121, + [SMALL_STATE(2751)] = 83144, + [SMALL_STATE(2752)] = 83163, + [SMALL_STATE(2753)] = 83182, + [SMALL_STATE(2754)] = 83205, + [SMALL_STATE(2755)] = 83228, + [SMALL_STATE(2756)] = 83247, + [SMALL_STATE(2757)] = 83268, + [SMALL_STATE(2758)] = 83287, + [SMALL_STATE(2759)] = 83310, + [SMALL_STATE(2760)] = 83329, + [SMALL_STATE(2761)] = 83352, + [SMALL_STATE(2762)] = 83375, + [SMALL_STATE(2763)] = 83398, + [SMALL_STATE(2764)] = 83421, + [SMALL_STATE(2765)] = 83442, + [SMALL_STATE(2766)] = 83463, + [SMALL_STATE(2767)] = 83486, + [SMALL_STATE(2768)] = 83509, + [SMALL_STATE(2769)] = 83532, + [SMALL_STATE(2770)] = 83551, + [SMALL_STATE(2771)] = 83574, + [SMALL_STATE(2772)] = 83597, + [SMALL_STATE(2773)] = 83618, + [SMALL_STATE(2774)] = 83637, + [SMALL_STATE(2775)] = 83660, + [SMALL_STATE(2776)] = 83683, + [SMALL_STATE(2777)] = 83706, + [SMALL_STATE(2778)] = 83729, + [SMALL_STATE(2779)] = 83752, + [SMALL_STATE(2780)] = 83775, + [SMALL_STATE(2781)] = 83798, + [SMALL_STATE(2782)] = 83821, + [SMALL_STATE(2783)] = 83844, + [SMALL_STATE(2784)] = 83863, + [SMALL_STATE(2785)] = 83886, + [SMALL_STATE(2786)] = 83905, + [SMALL_STATE(2787)] = 83928, + [SMALL_STATE(2788)] = 83951, + [SMALL_STATE(2789)] = 83974, + [SMALL_STATE(2790)] = 83997, + [SMALL_STATE(2791)] = 84016, + [SMALL_STATE(2792)] = 84039, + [SMALL_STATE(2793)] = 84062, + [SMALL_STATE(2794)] = 84085, + [SMALL_STATE(2795)] = 84104, + [SMALL_STATE(2796)] = 84127, + [SMALL_STATE(2797)] = 84150, + [SMALL_STATE(2798)] = 84173, + [SMALL_STATE(2799)] = 84196, + [SMALL_STATE(2800)] = 84219, + [SMALL_STATE(2801)] = 84242, + [SMALL_STATE(2802)] = 84265, + [SMALL_STATE(2803)] = 84288, + [SMALL_STATE(2804)] = 84311, + [SMALL_STATE(2805)] = 84334, + [SMALL_STATE(2806)] = 84357, + [SMALL_STATE(2807)] = 84378, + [SMALL_STATE(2808)] = 84401, + [SMALL_STATE(2809)] = 84420, + [SMALL_STATE(2810)] = 84443, + [SMALL_STATE(2811)] = 84466, + [SMALL_STATE(2812)] = 84485, + [SMALL_STATE(2813)] = 84504, + [SMALL_STATE(2814)] = 84523, + [SMALL_STATE(2815)] = 84546, + [SMALL_STATE(2816)] = 84569, + [SMALL_STATE(2817)] = 84588, + [SMALL_STATE(2818)] = 84609, + [SMALL_STATE(2819)] = 84632, + [SMALL_STATE(2820)] = 84655, + [SMALL_STATE(2821)] = 84678, + [SMALL_STATE(2822)] = 84701, + [SMALL_STATE(2823)] = 84724, + [SMALL_STATE(2824)] = 84747, + [SMALL_STATE(2825)] = 84770, + [SMALL_STATE(2826)] = 84793, + [SMALL_STATE(2827)] = 84812, + [SMALL_STATE(2828)] = 84831, + [SMALL_STATE(2829)] = 84854, + [SMALL_STATE(2830)] = 84875, + [SMALL_STATE(2831)] = 84894, + [SMALL_STATE(2832)] = 84917, + [SMALL_STATE(2833)] = 84940, + [SMALL_STATE(2834)] = 84963, + [SMALL_STATE(2835)] = 84986, + [SMALL_STATE(2836)] = 85009, + [SMALL_STATE(2837)] = 85028, + [SMALL_STATE(2838)] = 85051, + [SMALL_STATE(2839)] = 85074, + [SMALL_STATE(2840)] = 85097, + [SMALL_STATE(2841)] = 85120, + [SMALL_STATE(2842)] = 85143, + [SMALL_STATE(2843)] = 85166, + [SMALL_STATE(2844)] = 85189, + [SMALL_STATE(2845)] = 85212, + [SMALL_STATE(2846)] = 85235, + [SMALL_STATE(2847)] = 85258, + [SMALL_STATE(2848)] = 85281, + [SMALL_STATE(2849)] = 85304, + [SMALL_STATE(2850)] = 85327, + [SMALL_STATE(2851)] = 85350, + [SMALL_STATE(2852)] = 85373, + [SMALL_STATE(2853)] = 85396, + [SMALL_STATE(2854)] = 85419, + [SMALL_STATE(2855)] = 85442, + [SMALL_STATE(2856)] = 85465, + [SMALL_STATE(2857)] = 85488, + [SMALL_STATE(2858)] = 85511, + [SMALL_STATE(2859)] = 85534, + [SMALL_STATE(2860)] = 85557, + [SMALL_STATE(2861)] = 85574, + [SMALL_STATE(2862)] = 85597, + [SMALL_STATE(2863)] = 85620, + [SMALL_STATE(2864)] = 85643, + [SMALL_STATE(2865)] = 85666, + [SMALL_STATE(2866)] = 85687, + [SMALL_STATE(2867)] = 85710, + [SMALL_STATE(2868)] = 85733, + [SMALL_STATE(2869)] = 85756, + [SMALL_STATE(2870)] = 85779, + [SMALL_STATE(2871)] = 85802, + [SMALL_STATE(2872)] = 85823, + [SMALL_STATE(2873)] = 85846, + [SMALL_STATE(2874)] = 85869, + [SMALL_STATE(2875)] = 85892, + [SMALL_STATE(2876)] = 85909, + [SMALL_STATE(2877)] = 85930, + [SMALL_STATE(2878)] = 85953, + [SMALL_STATE(2879)] = 85973, + [SMALL_STATE(2880)] = 85993, + [SMALL_STATE(2881)] = 86013, + [SMALL_STATE(2882)] = 86031, + [SMALL_STATE(2883)] = 86051, + [SMALL_STATE(2884)] = 86067, + [SMALL_STATE(2885)] = 86087, + [SMALL_STATE(2886)] = 86107, + [SMALL_STATE(2887)] = 86127, + [SMALL_STATE(2888)] = 86147, + [SMALL_STATE(2889)] = 86167, + [SMALL_STATE(2890)] = 86187, + [SMALL_STATE(2891)] = 86207, + [SMALL_STATE(2892)] = 86227, + [SMALL_STATE(2893)] = 86243, + [SMALL_STATE(2894)] = 86263, + [SMALL_STATE(2895)] = 86283, + [SMALL_STATE(2896)] = 86303, + [SMALL_STATE(2897)] = 86323, + [SMALL_STATE(2898)] = 86343, + [SMALL_STATE(2899)] = 86363, + [SMALL_STATE(2900)] = 86383, + [SMALL_STATE(2901)] = 86403, + [SMALL_STATE(2902)] = 86423, + [SMALL_STATE(2903)] = 86443, + [SMALL_STATE(2904)] = 86463, + [SMALL_STATE(2905)] = 86483, + [SMALL_STATE(2906)] = 86503, + [SMALL_STATE(2907)] = 86521, + [SMALL_STATE(2908)] = 86541, + [SMALL_STATE(2909)] = 86561, + [SMALL_STATE(2910)] = 86581, + [SMALL_STATE(2911)] = 86599, + [SMALL_STATE(2912)] = 86619, + [SMALL_STATE(2913)] = 86639, + [SMALL_STATE(2914)] = 86659, + [SMALL_STATE(2915)] = 86679, + [SMALL_STATE(2916)] = 86699, + [SMALL_STATE(2917)] = 86719, + [SMALL_STATE(2918)] = 86739, + [SMALL_STATE(2919)] = 86759, + [SMALL_STATE(2920)] = 86779, + [SMALL_STATE(2921)] = 86799, + [SMALL_STATE(2922)] = 86819, + [SMALL_STATE(2923)] = 86839, + [SMALL_STATE(2924)] = 86859, + [SMALL_STATE(2925)] = 86879, + [SMALL_STATE(2926)] = 86899, + [SMALL_STATE(2927)] = 86919, + [SMALL_STATE(2928)] = 86935, + [SMALL_STATE(2929)] = 86955, + [SMALL_STATE(2930)] = 86975, + [SMALL_STATE(2931)] = 86991, + [SMALL_STATE(2932)] = 87011, + [SMALL_STATE(2933)] = 87029, + [SMALL_STATE(2934)] = 87045, + [SMALL_STATE(2935)] = 87065, + [SMALL_STATE(2936)] = 87081, + [SMALL_STATE(2937)] = 87101, + [SMALL_STATE(2938)] = 87121, + [SMALL_STATE(2939)] = 87137, + [SMALL_STATE(2940)] = 87153, + [SMALL_STATE(2941)] = 87173, + [SMALL_STATE(2942)] = 87193, + [SMALL_STATE(2943)] = 87213, + [SMALL_STATE(2944)] = 87233, + [SMALL_STATE(2945)] = 87253, + [SMALL_STATE(2946)] = 87273, + [SMALL_STATE(2947)] = 87293, + [SMALL_STATE(2948)] = 87313, + [SMALL_STATE(2949)] = 87333, + [SMALL_STATE(2950)] = 87353, + [SMALL_STATE(2951)] = 87369, + [SMALL_STATE(2952)] = 87389, + [SMALL_STATE(2953)] = 87407, + [SMALL_STATE(2954)] = 87427, + [SMALL_STATE(2955)] = 87447, + [SMALL_STATE(2956)] = 87467, + [SMALL_STATE(2957)] = 87485, + [SMALL_STATE(2958)] = 87505, + [SMALL_STATE(2959)] = 87525, + [SMALL_STATE(2960)] = 87545, + [SMALL_STATE(2961)] = 87565, + [SMALL_STATE(2962)] = 87583, + [SMALL_STATE(2963)] = 87603, + [SMALL_STATE(2964)] = 87623, + [SMALL_STATE(2965)] = 87643, + [SMALL_STATE(2966)] = 87663, + [SMALL_STATE(2967)] = 87683, + [SMALL_STATE(2968)] = 87703, + [SMALL_STATE(2969)] = 87723, + [SMALL_STATE(2970)] = 87743, + [SMALL_STATE(2971)] = 87761, + [SMALL_STATE(2972)] = 87781, + [SMALL_STATE(2973)] = 87797, + [SMALL_STATE(2974)] = 87813, + [SMALL_STATE(2975)] = 87833, + [SMALL_STATE(2976)] = 87853, + [SMALL_STATE(2977)] = 87873, + [SMALL_STATE(2978)] = 87893, + [SMALL_STATE(2979)] = 87913, + [SMALL_STATE(2980)] = 87933, + [SMALL_STATE(2981)] = 87953, + [SMALL_STATE(2982)] = 87973, + [SMALL_STATE(2983)] = 87989, + [SMALL_STATE(2984)] = 88009, + [SMALL_STATE(2985)] = 88029, + [SMALL_STATE(2986)] = 88049, + [SMALL_STATE(2987)] = 88069, + [SMALL_STATE(2988)] = 88085, + [SMALL_STATE(2989)] = 88105, + [SMALL_STATE(2990)] = 88123, + [SMALL_STATE(2991)] = 88141, + [SMALL_STATE(2992)] = 88157, + [SMALL_STATE(2993)] = 88177, + [SMALL_STATE(2994)] = 88197, + [SMALL_STATE(2995)] = 88217, + [SMALL_STATE(2996)] = 88233, + [SMALL_STATE(2997)] = 88249, + [SMALL_STATE(2998)] = 88265, + [SMALL_STATE(2999)] = 88281, + [SMALL_STATE(3000)] = 88297, + [SMALL_STATE(3001)] = 88313, + [SMALL_STATE(3002)] = 88333, + [SMALL_STATE(3003)] = 88353, + [SMALL_STATE(3004)] = 88373, + [SMALL_STATE(3005)] = 88393, + [SMALL_STATE(3006)] = 88413, + [SMALL_STATE(3007)] = 88429, + [SMALL_STATE(3008)] = 88445, + [SMALL_STATE(3009)] = 88465, + [SMALL_STATE(3010)] = 88485, + [SMALL_STATE(3011)] = 88501, + [SMALL_STATE(3012)] = 88521, + [SMALL_STATE(3013)] = 88541, + [SMALL_STATE(3014)] = 88557, + [SMALL_STATE(3015)] = 88573, + [SMALL_STATE(3016)] = 88589, + [SMALL_STATE(3017)] = 88605, + [SMALL_STATE(3018)] = 88621, + [SMALL_STATE(3019)] = 88641, + [SMALL_STATE(3020)] = 88657, + [SMALL_STATE(3021)] = 88677, + [SMALL_STATE(3022)] = 88697, + [SMALL_STATE(3023)] = 88717, + [SMALL_STATE(3024)] = 88737, + [SMALL_STATE(3025)] = 88757, + [SMALL_STATE(3026)] = 88777, + [SMALL_STATE(3027)] = 88795, + [SMALL_STATE(3028)] = 88815, + [SMALL_STATE(3029)] = 88831, + [SMALL_STATE(3030)] = 88851, + [SMALL_STATE(3031)] = 88871, + [SMALL_STATE(3032)] = 88891, + [SMALL_STATE(3033)] = 88911, + [SMALL_STATE(3034)] = 88929, + [SMALL_STATE(3035)] = 88949, + [SMALL_STATE(3036)] = 88969, + [SMALL_STATE(3037)] = 88989, + [SMALL_STATE(3038)] = 89007, + [SMALL_STATE(3039)] = 89027, + [SMALL_STATE(3040)] = 89043, + [SMALL_STATE(3041)] = 89063, + [SMALL_STATE(3042)] = 89083, + [SMALL_STATE(3043)] = 89101, + [SMALL_STATE(3044)] = 89121, + [SMALL_STATE(3045)] = 89141, + [SMALL_STATE(3046)] = 89161, + [SMALL_STATE(3047)] = 89179, + [SMALL_STATE(3048)] = 89199, + [SMALL_STATE(3049)] = 89219, + [SMALL_STATE(3050)] = 89239, + [SMALL_STATE(3051)] = 89259, + [SMALL_STATE(3052)] = 89279, + [SMALL_STATE(3053)] = 89299, + [SMALL_STATE(3054)] = 89317, + [SMALL_STATE(3055)] = 89333, + [SMALL_STATE(3056)] = 89353, + [SMALL_STATE(3057)] = 89371, + [SMALL_STATE(3058)] = 89391, + [SMALL_STATE(3059)] = 89407, + [SMALL_STATE(3060)] = 89427, + [SMALL_STATE(3061)] = 89447, + [SMALL_STATE(3062)] = 89467, + [SMALL_STATE(3063)] = 89487, + [SMALL_STATE(3064)] = 89505, + [SMALL_STATE(3065)] = 89525, + [SMALL_STATE(3066)] = 89543, + [SMALL_STATE(3067)] = 89563, + [SMALL_STATE(3068)] = 89579, + [SMALL_STATE(3069)] = 89595, + [SMALL_STATE(3070)] = 89615, + [SMALL_STATE(3071)] = 89633, + [SMALL_STATE(3072)] = 89651, + [SMALL_STATE(3073)] = 89667, + [SMALL_STATE(3074)] = 89685, + [SMALL_STATE(3075)] = 89703, + [SMALL_STATE(3076)] = 89723, + [SMALL_STATE(3077)] = 89743, + [SMALL_STATE(3078)] = 89763, + [SMALL_STATE(3079)] = 89781, + [SMALL_STATE(3080)] = 89801, + [SMALL_STATE(3081)] = 89821, + [SMALL_STATE(3082)] = 89837, + [SMALL_STATE(3083)] = 89855, + [SMALL_STATE(3084)] = 89875, + [SMALL_STATE(3085)] = 89895, + [SMALL_STATE(3086)] = 89915, + [SMALL_STATE(3087)] = 89935, + [SMALL_STATE(3088)] = 89953, + [SMALL_STATE(3089)] = 89969, + [SMALL_STATE(3090)] = 89989, + [SMALL_STATE(3091)] = 90005, + [SMALL_STATE(3092)] = 90023, + [SMALL_STATE(3093)] = 90041, + [SMALL_STATE(3094)] = 90061, + [SMALL_STATE(3095)] = 90081, + [SMALL_STATE(3096)] = 90101, + [SMALL_STATE(3097)] = 90117, + [SMALL_STATE(3098)] = 90135, + [SMALL_STATE(3099)] = 90153, + [SMALL_STATE(3100)] = 90173, + [SMALL_STATE(3101)] = 90193, + [SMALL_STATE(3102)] = 90211, + [SMALL_STATE(3103)] = 90227, + [SMALL_STATE(3104)] = 90245, + [SMALL_STATE(3105)] = 90265, + [SMALL_STATE(3106)] = 90285, + [SMALL_STATE(3107)] = 90305, + [SMALL_STATE(3108)] = 90325, + [SMALL_STATE(3109)] = 90345, + [SMALL_STATE(3110)] = 90365, + [SMALL_STATE(3111)] = 90385, + [SMALL_STATE(3112)] = 90405, + [SMALL_STATE(3113)] = 90425, + [SMALL_STATE(3114)] = 90445, + [SMALL_STATE(3115)] = 90465, + [SMALL_STATE(3116)] = 90485, + [SMALL_STATE(3117)] = 90503, + [SMALL_STATE(3118)] = 90523, + [SMALL_STATE(3119)] = 90539, + [SMALL_STATE(3120)] = 90559, + [SMALL_STATE(3121)] = 90579, + [SMALL_STATE(3122)] = 90599, + [SMALL_STATE(3123)] = 90619, + [SMALL_STATE(3124)] = 90635, + [SMALL_STATE(3125)] = 90655, + [SMALL_STATE(3126)] = 90675, + [SMALL_STATE(3127)] = 90695, + [SMALL_STATE(3128)] = 90711, + [SMALL_STATE(3129)] = 90727, + [SMALL_STATE(3130)] = 90743, + [SMALL_STATE(3131)] = 90759, + [SMALL_STATE(3132)] = 90775, + [SMALL_STATE(3133)] = 90791, + [SMALL_STATE(3134)] = 90807, + [SMALL_STATE(3135)] = 90823, + [SMALL_STATE(3136)] = 90841, + [SMALL_STATE(3137)] = 90861, + [SMALL_STATE(3138)] = 90877, + [SMALL_STATE(3139)] = 90895, + [SMALL_STATE(3140)] = 90911, + [SMALL_STATE(3141)] = 90929, + [SMALL_STATE(3142)] = 90947, + [SMALL_STATE(3143)] = 90963, + [SMALL_STATE(3144)] = 90983, + [SMALL_STATE(3145)] = 91001, + [SMALL_STATE(3146)] = 91021, + [SMALL_STATE(3147)] = 91041, + [SMALL_STATE(3148)] = 91061, + [SMALL_STATE(3149)] = 91081, + [SMALL_STATE(3150)] = 91101, + [SMALL_STATE(3151)] = 91121, + [SMALL_STATE(3152)] = 91141, + [SMALL_STATE(3153)] = 91161, + [SMALL_STATE(3154)] = 91179, + [SMALL_STATE(3155)] = 91199, + [SMALL_STATE(3156)] = 91219, + [SMALL_STATE(3157)] = 91239, + [SMALL_STATE(3158)] = 91259, + [SMALL_STATE(3159)] = 91279, + [SMALL_STATE(3160)] = 91299, + [SMALL_STATE(3161)] = 91319, + [SMALL_STATE(3162)] = 91339, + [SMALL_STATE(3163)] = 91359, + [SMALL_STATE(3164)] = 91379, + [SMALL_STATE(3165)] = 91399, + [SMALL_STATE(3166)] = 91419, + [SMALL_STATE(3167)] = 91439, + [SMALL_STATE(3168)] = 91459, + [SMALL_STATE(3169)] = 91479, + [SMALL_STATE(3170)] = 91499, + [SMALL_STATE(3171)] = 91519, + [SMALL_STATE(3172)] = 91539, + [SMALL_STATE(3173)] = 91559, + [SMALL_STATE(3174)] = 91575, + [SMALL_STATE(3175)] = 91595, + [SMALL_STATE(3176)] = 91613, + [SMALL_STATE(3177)] = 91633, + [SMALL_STATE(3178)] = 91651, + [SMALL_STATE(3179)] = 91671, + [SMALL_STATE(3180)] = 91691, + [SMALL_STATE(3181)] = 91711, + [SMALL_STATE(3182)] = 91731, + [SMALL_STATE(3183)] = 91751, + [SMALL_STATE(3184)] = 91767, + [SMALL_STATE(3185)] = 91787, + [SMALL_STATE(3186)] = 91807, + [SMALL_STATE(3187)] = 91827, + [SMALL_STATE(3188)] = 91847, + [SMALL_STATE(3189)] = 91867, + [SMALL_STATE(3190)] = 91884, + [SMALL_STATE(3191)] = 91901, + [SMALL_STATE(3192)] = 91918, + [SMALL_STATE(3193)] = 91935, + [SMALL_STATE(3194)] = 91952, + [SMALL_STATE(3195)] = 91967, + [SMALL_STATE(3196)] = 91984, + [SMALL_STATE(3197)] = 92001, + [SMALL_STATE(3198)] = 92018, + [SMALL_STATE(3199)] = 92035, + [SMALL_STATE(3200)] = 92050, + [SMALL_STATE(3201)] = 92067, + [SMALL_STATE(3202)] = 92084, + [SMALL_STATE(3203)] = 92101, + [SMALL_STATE(3204)] = 92118, + [SMALL_STATE(3205)] = 92135, + [SMALL_STATE(3206)] = 92152, + [SMALL_STATE(3207)] = 92169, + [SMALL_STATE(3208)] = 92186, + [SMALL_STATE(3209)] = 92203, + [SMALL_STATE(3210)] = 92220, + [SMALL_STATE(3211)] = 92237, + [SMALL_STATE(3212)] = 92254, + [SMALL_STATE(3213)] = 92269, + [SMALL_STATE(3214)] = 92284, + [SMALL_STATE(3215)] = 92301, + [SMALL_STATE(3216)] = 92318, + [SMALL_STATE(3217)] = 92333, + [SMALL_STATE(3218)] = 92348, + [SMALL_STATE(3219)] = 92365, + [SMALL_STATE(3220)] = 92382, + [SMALL_STATE(3221)] = 92397, + [SMALL_STATE(3222)] = 92414, + [SMALL_STATE(3223)] = 92431, + [SMALL_STATE(3224)] = 92448, + [SMALL_STATE(3225)] = 92465, + [SMALL_STATE(3226)] = 92480, + [SMALL_STATE(3227)] = 92497, + [SMALL_STATE(3228)] = 92514, + [SMALL_STATE(3229)] = 92531, + [SMALL_STATE(3230)] = 92548, + [SMALL_STATE(3231)] = 92565, + [SMALL_STATE(3232)] = 92582, + [SMALL_STATE(3233)] = 92599, + [SMALL_STATE(3234)] = 92616, + [SMALL_STATE(3235)] = 92633, + [SMALL_STATE(3236)] = 92650, + [SMALL_STATE(3237)] = 92667, + [SMALL_STATE(3238)] = 92682, + [SMALL_STATE(3239)] = 92699, + [SMALL_STATE(3240)] = 92716, + [SMALL_STATE(3241)] = 92733, + [SMALL_STATE(3242)] = 92750, + [SMALL_STATE(3243)] = 92767, + [SMALL_STATE(3244)] = 92782, + [SMALL_STATE(3245)] = 92799, + [SMALL_STATE(3246)] = 92816, + [SMALL_STATE(3247)] = 92833, + [SMALL_STATE(3248)] = 92850, + [SMALL_STATE(3249)] = 92867, + [SMALL_STATE(3250)] = 92882, + [SMALL_STATE(3251)] = 92899, + [SMALL_STATE(3252)] = 92916, + [SMALL_STATE(3253)] = 92931, + [SMALL_STATE(3254)] = 92948, + [SMALL_STATE(3255)] = 92965, + [SMALL_STATE(3256)] = 92982, + [SMALL_STATE(3257)] = 92999, + [SMALL_STATE(3258)] = 93016, + [SMALL_STATE(3259)] = 93033, + [SMALL_STATE(3260)] = 93050, + [SMALL_STATE(3261)] = 93067, + [SMALL_STATE(3262)] = 93084, + [SMALL_STATE(3263)] = 93101, + [SMALL_STATE(3264)] = 93118, + [SMALL_STATE(3265)] = 93133, + [SMALL_STATE(3266)] = 93148, + [SMALL_STATE(3267)] = 93163, + [SMALL_STATE(3268)] = 93180, + [SMALL_STATE(3269)] = 93197, + [SMALL_STATE(3270)] = 93214, + [SMALL_STATE(3271)] = 93229, + [SMALL_STATE(3272)] = 93246, + [SMALL_STATE(3273)] = 93263, + [SMALL_STATE(3274)] = 93278, + [SMALL_STATE(3275)] = 93295, + [SMALL_STATE(3276)] = 93312, + [SMALL_STATE(3277)] = 93329, + [SMALL_STATE(3278)] = 93346, + [SMALL_STATE(3279)] = 93363, + [SMALL_STATE(3280)] = 93378, + [SMALL_STATE(3281)] = 93395, + [SMALL_STATE(3282)] = 93412, + [SMALL_STATE(3283)] = 93429, + [SMALL_STATE(3284)] = 93446, + [SMALL_STATE(3285)] = 93463, + [SMALL_STATE(3286)] = 93480, + [SMALL_STATE(3287)] = 93497, + [SMALL_STATE(3288)] = 93514, + [SMALL_STATE(3289)] = 93531, + [SMALL_STATE(3290)] = 93548, + [SMALL_STATE(3291)] = 93565, + [SMALL_STATE(3292)] = 93582, + [SMALL_STATE(3293)] = 93599, + [SMALL_STATE(3294)] = 93616, + [SMALL_STATE(3295)] = 93633, + [SMALL_STATE(3296)] = 93650, + [SMALL_STATE(3297)] = 93665, + [SMALL_STATE(3298)] = 93682, + [SMALL_STATE(3299)] = 93699, + [SMALL_STATE(3300)] = 93714, + [SMALL_STATE(3301)] = 93731, + [SMALL_STATE(3302)] = 93748, + [SMALL_STATE(3303)] = 93765, + [SMALL_STATE(3304)] = 93782, + [SMALL_STATE(3305)] = 93799, + [SMALL_STATE(3306)] = 93816, + [SMALL_STATE(3307)] = 93833, + [SMALL_STATE(3308)] = 93850, + [SMALL_STATE(3309)] = 93867, + [SMALL_STATE(3310)] = 93884, + [SMALL_STATE(3311)] = 93901, + [SMALL_STATE(3312)] = 93918, + [SMALL_STATE(3313)] = 93935, + [SMALL_STATE(3314)] = 93952, + [SMALL_STATE(3315)] = 93969, + [SMALL_STATE(3316)] = 93986, + [SMALL_STATE(3317)] = 94003, + [SMALL_STATE(3318)] = 94020, + [SMALL_STATE(3319)] = 94037, + [SMALL_STATE(3320)] = 94054, + [SMALL_STATE(3321)] = 94071, + [SMALL_STATE(3322)] = 94088, + [SMALL_STATE(3323)] = 94105, + [SMALL_STATE(3324)] = 94122, + [SMALL_STATE(3325)] = 94137, + [SMALL_STATE(3326)] = 94154, + [SMALL_STATE(3327)] = 94171, + [SMALL_STATE(3328)] = 94188, + [SMALL_STATE(3329)] = 94205, + [SMALL_STATE(3330)] = 94222, + [SMALL_STATE(3331)] = 94239, + [SMALL_STATE(3332)] = 94256, + [SMALL_STATE(3333)] = 94273, + [SMALL_STATE(3334)] = 94290, + [SMALL_STATE(3335)] = 94307, + [SMALL_STATE(3336)] = 94322, + [SMALL_STATE(3337)] = 94339, + [SMALL_STATE(3338)] = 94356, + [SMALL_STATE(3339)] = 94373, + [SMALL_STATE(3340)] = 94390, + [SMALL_STATE(3341)] = 94407, + [SMALL_STATE(3342)] = 94424, + [SMALL_STATE(3343)] = 94439, + [SMALL_STATE(3344)] = 94456, + [SMALL_STATE(3345)] = 94473, + [SMALL_STATE(3346)] = 94488, + [SMALL_STATE(3347)] = 94505, + [SMALL_STATE(3348)] = 94520, + [SMALL_STATE(3349)] = 94537, + [SMALL_STATE(3350)] = 94552, + [SMALL_STATE(3351)] = 94567, + [SMALL_STATE(3352)] = 94582, + [SMALL_STATE(3353)] = 94599, + [SMALL_STATE(3354)] = 94616, + [SMALL_STATE(3355)] = 94633, + [SMALL_STATE(3356)] = 94650, + [SMALL_STATE(3357)] = 94667, + [SMALL_STATE(3358)] = 94682, + [SMALL_STATE(3359)] = 94699, + [SMALL_STATE(3360)] = 94716, + [SMALL_STATE(3361)] = 94733, + [SMALL_STATE(3362)] = 94750, + [SMALL_STATE(3363)] = 94767, + [SMALL_STATE(3364)] = 94784, + [SMALL_STATE(3365)] = 94801, + [SMALL_STATE(3366)] = 94816, + [SMALL_STATE(3367)] = 94833, + [SMALL_STATE(3368)] = 94850, + [SMALL_STATE(3369)] = 94867, + [SMALL_STATE(3370)] = 94882, + [SMALL_STATE(3371)] = 94899, + [SMALL_STATE(3372)] = 94916, + [SMALL_STATE(3373)] = 94933, + [SMALL_STATE(3374)] = 94948, + [SMALL_STATE(3375)] = 94965, + [SMALL_STATE(3376)] = 94982, + [SMALL_STATE(3377)] = 94997, + [SMALL_STATE(3378)] = 95014, + [SMALL_STATE(3379)] = 95029, + [SMALL_STATE(3380)] = 95046, + [SMALL_STATE(3381)] = 95061, + [SMALL_STATE(3382)] = 95078, + [SMALL_STATE(3383)] = 95095, + [SMALL_STATE(3384)] = 95110, + [SMALL_STATE(3385)] = 95125, + [SMALL_STATE(3386)] = 95142, + [SMALL_STATE(3387)] = 95159, + [SMALL_STATE(3388)] = 95176, + [SMALL_STATE(3389)] = 95193, + [SMALL_STATE(3390)] = 95210, + [SMALL_STATE(3391)] = 95227, + [SMALL_STATE(3392)] = 95244, + [SMALL_STATE(3393)] = 95259, + [SMALL_STATE(3394)] = 95276, + [SMALL_STATE(3395)] = 95291, + [SMALL_STATE(3396)] = 95308, + [SMALL_STATE(3397)] = 95325, + [SMALL_STATE(3398)] = 95342, + [SMALL_STATE(3399)] = 95357, + [SMALL_STATE(3400)] = 95372, + [SMALL_STATE(3401)] = 95389, + [SMALL_STATE(3402)] = 95406, + [SMALL_STATE(3403)] = 95421, + [SMALL_STATE(3404)] = 95438, + [SMALL_STATE(3405)] = 95455, + [SMALL_STATE(3406)] = 95472, + [SMALL_STATE(3407)] = 95489, + [SMALL_STATE(3408)] = 95504, + [SMALL_STATE(3409)] = 95519, + [SMALL_STATE(3410)] = 95536, + [SMALL_STATE(3411)] = 95553, + [SMALL_STATE(3412)] = 95570, + [SMALL_STATE(3413)] = 95587, + [SMALL_STATE(3414)] = 95604, + [SMALL_STATE(3415)] = 95621, + [SMALL_STATE(3416)] = 95638, + [SMALL_STATE(3417)] = 95655, + [SMALL_STATE(3418)] = 95670, + [SMALL_STATE(3419)] = 95687, + [SMALL_STATE(3420)] = 95704, + [SMALL_STATE(3421)] = 95721, + [SMALL_STATE(3422)] = 95738, + [SMALL_STATE(3423)] = 95755, + [SMALL_STATE(3424)] = 95772, + [SMALL_STATE(3425)] = 95789, + [SMALL_STATE(3426)] = 95804, + [SMALL_STATE(3427)] = 95819, + [SMALL_STATE(3428)] = 95836, + [SMALL_STATE(3429)] = 95853, + [SMALL_STATE(3430)] = 95870, + [SMALL_STATE(3431)] = 95887, + [SMALL_STATE(3432)] = 95904, + [SMALL_STATE(3433)] = 95921, + [SMALL_STATE(3434)] = 95938, + [SMALL_STATE(3435)] = 95955, + [SMALL_STATE(3436)] = 95972, + [SMALL_STATE(3437)] = 95989, + [SMALL_STATE(3438)] = 96006, + [SMALL_STATE(3439)] = 96023, + [SMALL_STATE(3440)] = 96040, + [SMALL_STATE(3441)] = 96057, + [SMALL_STATE(3442)] = 96074, + [SMALL_STATE(3443)] = 96091, + [SMALL_STATE(3444)] = 96108, + [SMALL_STATE(3445)] = 96123, + [SMALL_STATE(3446)] = 96140, + [SMALL_STATE(3447)] = 96155, + [SMALL_STATE(3448)] = 96172, + [SMALL_STATE(3449)] = 96189, + [SMALL_STATE(3450)] = 96206, + [SMALL_STATE(3451)] = 96223, + [SMALL_STATE(3452)] = 96238, + [SMALL_STATE(3453)] = 96255, + [SMALL_STATE(3454)] = 96272, + [SMALL_STATE(3455)] = 96289, + [SMALL_STATE(3456)] = 96306, + [SMALL_STATE(3457)] = 96323, + [SMALL_STATE(3458)] = 96338, + [SMALL_STATE(3459)] = 96355, + [SMALL_STATE(3460)] = 96370, + [SMALL_STATE(3461)] = 96387, + [SMALL_STATE(3462)] = 96404, + [SMALL_STATE(3463)] = 96419, + [SMALL_STATE(3464)] = 96436, + [SMALL_STATE(3465)] = 96453, + [SMALL_STATE(3466)] = 96468, + [SMALL_STATE(3467)] = 96485, + [SMALL_STATE(3468)] = 96502, + [SMALL_STATE(3469)] = 96517, + [SMALL_STATE(3470)] = 96534, + [SMALL_STATE(3471)] = 96549, + [SMALL_STATE(3472)] = 96566, + [SMALL_STATE(3473)] = 96583, + [SMALL_STATE(3474)] = 96600, + [SMALL_STATE(3475)] = 96617, + [SMALL_STATE(3476)] = 96634, + [SMALL_STATE(3477)] = 96651, + [SMALL_STATE(3478)] = 96668, + [SMALL_STATE(3479)] = 96685, + [SMALL_STATE(3480)] = 96702, + [SMALL_STATE(3481)] = 96719, + [SMALL_STATE(3482)] = 96736, + [SMALL_STATE(3483)] = 96751, + [SMALL_STATE(3484)] = 96768, + [SMALL_STATE(3485)] = 96785, + [SMALL_STATE(3486)] = 96802, + [SMALL_STATE(3487)] = 96819, + [SMALL_STATE(3488)] = 96836, + [SMALL_STATE(3489)] = 96853, + [SMALL_STATE(3490)] = 96870, + [SMALL_STATE(3491)] = 96887, + [SMALL_STATE(3492)] = 96904, + [SMALL_STATE(3493)] = 96921, + [SMALL_STATE(3494)] = 96938, + [SMALL_STATE(3495)] = 96955, + [SMALL_STATE(3496)] = 96972, + [SMALL_STATE(3497)] = 96987, + [SMALL_STATE(3498)] = 97001, + [SMALL_STATE(3499)] = 97015, + [SMALL_STATE(3500)] = 97029, + [SMALL_STATE(3501)] = 97043, + [SMALL_STATE(3502)] = 97057, + [SMALL_STATE(3503)] = 97071, + [SMALL_STATE(3504)] = 97085, + [SMALL_STATE(3505)] = 97099, + [SMALL_STATE(3506)] = 97113, + [SMALL_STATE(3507)] = 97127, + [SMALL_STATE(3508)] = 97141, + [SMALL_STATE(3509)] = 97155, + [SMALL_STATE(3510)] = 97169, + [SMALL_STATE(3511)] = 97183, + [SMALL_STATE(3512)] = 97197, + [SMALL_STATE(3513)] = 97211, + [SMALL_STATE(3514)] = 97225, + [SMALL_STATE(3515)] = 97239, + [SMALL_STATE(3516)] = 97253, + [SMALL_STATE(3517)] = 97267, + [SMALL_STATE(3518)] = 97281, + [SMALL_STATE(3519)] = 97295, + [SMALL_STATE(3520)] = 97309, + [SMALL_STATE(3521)] = 97323, + [SMALL_STATE(3522)] = 97337, + [SMALL_STATE(3523)] = 97351, + [SMALL_STATE(3524)] = 97365, + [SMALL_STATE(3525)] = 97379, + [SMALL_STATE(3526)] = 97393, + [SMALL_STATE(3527)] = 97407, + [SMALL_STATE(3528)] = 97421, + [SMALL_STATE(3529)] = 97435, + [SMALL_STATE(3530)] = 97449, + [SMALL_STATE(3531)] = 97463, + [SMALL_STATE(3532)] = 97477, + [SMALL_STATE(3533)] = 97491, + [SMALL_STATE(3534)] = 97505, + [SMALL_STATE(3535)] = 97519, + [SMALL_STATE(3536)] = 97533, + [SMALL_STATE(3537)] = 97547, + [SMALL_STATE(3538)] = 97561, + [SMALL_STATE(3539)] = 97575, + [SMALL_STATE(3540)] = 97589, + [SMALL_STATE(3541)] = 97603, + [SMALL_STATE(3542)] = 97617, + [SMALL_STATE(3543)] = 97631, + [SMALL_STATE(3544)] = 97645, + [SMALL_STATE(3545)] = 97659, + [SMALL_STATE(3546)] = 97673, + [SMALL_STATE(3547)] = 97687, + [SMALL_STATE(3548)] = 97701, + [SMALL_STATE(3549)] = 97715, + [SMALL_STATE(3550)] = 97729, + [SMALL_STATE(3551)] = 97743, + [SMALL_STATE(3552)] = 97757, + [SMALL_STATE(3553)] = 97771, + [SMALL_STATE(3554)] = 97785, + [SMALL_STATE(3555)] = 97799, + [SMALL_STATE(3556)] = 97813, + [SMALL_STATE(3557)] = 97827, + [SMALL_STATE(3558)] = 97841, + [SMALL_STATE(3559)] = 97855, + [SMALL_STATE(3560)] = 97869, + [SMALL_STATE(3561)] = 97883, + [SMALL_STATE(3562)] = 97897, + [SMALL_STATE(3563)] = 97911, + [SMALL_STATE(3564)] = 97925, + [SMALL_STATE(3565)] = 97939, + [SMALL_STATE(3566)] = 97953, + [SMALL_STATE(3567)] = 97967, + [SMALL_STATE(3568)] = 97981, + [SMALL_STATE(3569)] = 97995, + [SMALL_STATE(3570)] = 98009, + [SMALL_STATE(3571)] = 98023, + [SMALL_STATE(3572)] = 98037, + [SMALL_STATE(3573)] = 98051, + [SMALL_STATE(3574)] = 98065, + [SMALL_STATE(3575)] = 98079, + [SMALL_STATE(3576)] = 98093, + [SMALL_STATE(3577)] = 98107, + [SMALL_STATE(3578)] = 98121, + [SMALL_STATE(3579)] = 98135, + [SMALL_STATE(3580)] = 98149, + [SMALL_STATE(3581)] = 98163, + [SMALL_STATE(3582)] = 98177, + [SMALL_STATE(3583)] = 98191, + [SMALL_STATE(3584)] = 98205, + [SMALL_STATE(3585)] = 98219, + [SMALL_STATE(3586)] = 98233, + [SMALL_STATE(3587)] = 98247, + [SMALL_STATE(3588)] = 98261, + [SMALL_STATE(3589)] = 98275, + [SMALL_STATE(3590)] = 98289, + [SMALL_STATE(3591)] = 98303, + [SMALL_STATE(3592)] = 98317, + [SMALL_STATE(3593)] = 98331, + [SMALL_STATE(3594)] = 98345, + [SMALL_STATE(3595)] = 98359, + [SMALL_STATE(3596)] = 98373, + [SMALL_STATE(3597)] = 98387, + [SMALL_STATE(3598)] = 98401, + [SMALL_STATE(3599)] = 98415, + [SMALL_STATE(3600)] = 98429, + [SMALL_STATE(3601)] = 98443, + [SMALL_STATE(3602)] = 98457, + [SMALL_STATE(3603)] = 98471, + [SMALL_STATE(3604)] = 98485, + [SMALL_STATE(3605)] = 98499, + [SMALL_STATE(3606)] = 98513, + [SMALL_STATE(3607)] = 98527, + [SMALL_STATE(3608)] = 98541, + [SMALL_STATE(3609)] = 98555, + [SMALL_STATE(3610)] = 98569, + [SMALL_STATE(3611)] = 98583, + [SMALL_STATE(3612)] = 98597, + [SMALL_STATE(3613)] = 98611, + [SMALL_STATE(3614)] = 98625, + [SMALL_STATE(3615)] = 98639, + [SMALL_STATE(3616)] = 98653, + [SMALL_STATE(3617)] = 98667, + [SMALL_STATE(3618)] = 98681, + [SMALL_STATE(3619)] = 98695, + [SMALL_STATE(3620)] = 98709, + [SMALL_STATE(3621)] = 98723, + [SMALL_STATE(3622)] = 98737, + [SMALL_STATE(3623)] = 98751, + [SMALL_STATE(3624)] = 98765, + [SMALL_STATE(3625)] = 98779, + [SMALL_STATE(3626)] = 98793, + [SMALL_STATE(3627)] = 98807, + [SMALL_STATE(3628)] = 98821, + [SMALL_STATE(3629)] = 98835, + [SMALL_STATE(3630)] = 98849, + [SMALL_STATE(3631)] = 98863, + [SMALL_STATE(3632)] = 98877, + [SMALL_STATE(3633)] = 98891, + [SMALL_STATE(3634)] = 98905, + [SMALL_STATE(3635)] = 98919, + [SMALL_STATE(3636)] = 98933, + [SMALL_STATE(3637)] = 98947, + [SMALL_STATE(3638)] = 98961, + [SMALL_STATE(3639)] = 98975, + [SMALL_STATE(3640)] = 98989, + [SMALL_STATE(3641)] = 99003, + [SMALL_STATE(3642)] = 99017, + [SMALL_STATE(3643)] = 99031, + [SMALL_STATE(3644)] = 99045, + [SMALL_STATE(3645)] = 99059, + [SMALL_STATE(3646)] = 99073, + [SMALL_STATE(3647)] = 99087, + [SMALL_STATE(3648)] = 99101, + [SMALL_STATE(3649)] = 99115, + [SMALL_STATE(3650)] = 99129, + [SMALL_STATE(3651)] = 99143, + [SMALL_STATE(3652)] = 99157, + [SMALL_STATE(3653)] = 99171, + [SMALL_STATE(3654)] = 99185, + [SMALL_STATE(3655)] = 99199, + [SMALL_STATE(3656)] = 99213, + [SMALL_STATE(3657)] = 99227, + [SMALL_STATE(3658)] = 99241, + [SMALL_STATE(3659)] = 99255, + [SMALL_STATE(3660)] = 99269, + [SMALL_STATE(3661)] = 99283, + [SMALL_STATE(3662)] = 99297, + [SMALL_STATE(3663)] = 99311, + [SMALL_STATE(3664)] = 99325, + [SMALL_STATE(3665)] = 99339, + [SMALL_STATE(3666)] = 99353, + [SMALL_STATE(3667)] = 99367, + [SMALL_STATE(3668)] = 99381, + [SMALL_STATE(3669)] = 99395, + [SMALL_STATE(3670)] = 99409, + [SMALL_STATE(3671)] = 99423, + [SMALL_STATE(3672)] = 99437, + [SMALL_STATE(3673)] = 99451, + [SMALL_STATE(3674)] = 99465, + [SMALL_STATE(3675)] = 99479, + [SMALL_STATE(3676)] = 99493, + [SMALL_STATE(3677)] = 99507, + [SMALL_STATE(3678)] = 99521, + [SMALL_STATE(3679)] = 99535, + [SMALL_STATE(3680)] = 99549, + [SMALL_STATE(3681)] = 99563, + [SMALL_STATE(3682)] = 99577, + [SMALL_STATE(3683)] = 99591, + [SMALL_STATE(3684)] = 99605, + [SMALL_STATE(3685)] = 99619, + [SMALL_STATE(3686)] = 99633, + [SMALL_STATE(3687)] = 99647, + [SMALL_STATE(3688)] = 99661, + [SMALL_STATE(3689)] = 99675, + [SMALL_STATE(3690)] = 99689, + [SMALL_STATE(3691)] = 99703, + [SMALL_STATE(3692)] = 99717, + [SMALL_STATE(3693)] = 99731, + [SMALL_STATE(3694)] = 99745, + [SMALL_STATE(3695)] = 99759, + [SMALL_STATE(3696)] = 99773, + [SMALL_STATE(3697)] = 99787, + [SMALL_STATE(3698)] = 99801, + [SMALL_STATE(3699)] = 99815, + [SMALL_STATE(3700)] = 99829, + [SMALL_STATE(3701)] = 99843, + [SMALL_STATE(3702)] = 99857, + [SMALL_STATE(3703)] = 99871, + [SMALL_STATE(3704)] = 99885, + [SMALL_STATE(3705)] = 99899, + [SMALL_STATE(3706)] = 99913, + [SMALL_STATE(3707)] = 99927, + [SMALL_STATE(3708)] = 99941, + [SMALL_STATE(3709)] = 99955, + [SMALL_STATE(3710)] = 99969, + [SMALL_STATE(3711)] = 99983, + [SMALL_STATE(3712)] = 99997, + [SMALL_STATE(3713)] = 100011, + [SMALL_STATE(3714)] = 100025, + [SMALL_STATE(3715)] = 100039, + [SMALL_STATE(3716)] = 100053, + [SMALL_STATE(3717)] = 100067, + [SMALL_STATE(3718)] = 100081, + [SMALL_STATE(3719)] = 100095, + [SMALL_STATE(3720)] = 100109, + [SMALL_STATE(3721)] = 100123, + [SMALL_STATE(3722)] = 100137, + [SMALL_STATE(3723)] = 100151, + [SMALL_STATE(3724)] = 100165, + [SMALL_STATE(3725)] = 100179, + [SMALL_STATE(3726)] = 100193, + [SMALL_STATE(3727)] = 100207, + [SMALL_STATE(3728)] = 100221, + [SMALL_STATE(3729)] = 100235, + [SMALL_STATE(3730)] = 100249, + [SMALL_STATE(3731)] = 100263, + [SMALL_STATE(3732)] = 100277, + [SMALL_STATE(3733)] = 100291, + [SMALL_STATE(3734)] = 100305, + [SMALL_STATE(3735)] = 100319, + [SMALL_STATE(3736)] = 100333, + [SMALL_STATE(3737)] = 100347, + [SMALL_STATE(3738)] = 100361, + [SMALL_STATE(3739)] = 100375, + [SMALL_STATE(3740)] = 100389, + [SMALL_STATE(3741)] = 100403, + [SMALL_STATE(3742)] = 100417, + [SMALL_STATE(3743)] = 100431, + [SMALL_STATE(3744)] = 100445, + [SMALL_STATE(3745)] = 100459, + [SMALL_STATE(3746)] = 100473, + [SMALL_STATE(3747)] = 100487, + [SMALL_STATE(3748)] = 100501, + [SMALL_STATE(3749)] = 100515, + [SMALL_STATE(3750)] = 100529, + [SMALL_STATE(3751)] = 100543, + [SMALL_STATE(3752)] = 100557, + [SMALL_STATE(3753)] = 100571, + [SMALL_STATE(3754)] = 100585, + [SMALL_STATE(3755)] = 100599, + [SMALL_STATE(3756)] = 100613, + [SMALL_STATE(3757)] = 100627, + [SMALL_STATE(3758)] = 100641, + [SMALL_STATE(3759)] = 100655, + [SMALL_STATE(3760)] = 100669, + [SMALL_STATE(3761)] = 100683, + [SMALL_STATE(3762)] = 100697, + [SMALL_STATE(3763)] = 100711, + [SMALL_STATE(3764)] = 100725, + [SMALL_STATE(3765)] = 100739, + [SMALL_STATE(3766)] = 100753, + [SMALL_STATE(3767)] = 100767, + [SMALL_STATE(3768)] = 100781, + [SMALL_STATE(3769)] = 100795, + [SMALL_STATE(3770)] = 100809, + [SMALL_STATE(3771)] = 100823, + [SMALL_STATE(3772)] = 100837, + [SMALL_STATE(3773)] = 100851, + [SMALL_STATE(3774)] = 100865, + [SMALL_STATE(3775)] = 100879, + [SMALL_STATE(3776)] = 100893, + [SMALL_STATE(3777)] = 100907, + [SMALL_STATE(3778)] = 100921, + [SMALL_STATE(3779)] = 100935, + [SMALL_STATE(3780)] = 100949, + [SMALL_STATE(3781)] = 100963, + [SMALL_STATE(3782)] = 100977, + [SMALL_STATE(3783)] = 100991, + [SMALL_STATE(3784)] = 101005, + [SMALL_STATE(3785)] = 101019, + [SMALL_STATE(3786)] = 101033, + [SMALL_STATE(3787)] = 101047, + [SMALL_STATE(3788)] = 101061, + [SMALL_STATE(3789)] = 101075, + [SMALL_STATE(3790)] = 101089, + [SMALL_STATE(3791)] = 101103, + [SMALL_STATE(3792)] = 101117, + [SMALL_STATE(3793)] = 101131, + [SMALL_STATE(3794)] = 101145, + [SMALL_STATE(3795)] = 101159, + [SMALL_STATE(3796)] = 101173, + [SMALL_STATE(3797)] = 101187, + [SMALL_STATE(3798)] = 101201, + [SMALL_STATE(3799)] = 101215, + [SMALL_STATE(3800)] = 101229, + [SMALL_STATE(3801)] = 101243, + [SMALL_STATE(3802)] = 101257, + [SMALL_STATE(3803)] = 101271, + [SMALL_STATE(3804)] = 101285, + [SMALL_STATE(3805)] = 101299, + [SMALL_STATE(3806)] = 101313, + [SMALL_STATE(3807)] = 101327, + [SMALL_STATE(3808)] = 101341, + [SMALL_STATE(3809)] = 101355, + [SMALL_STATE(3810)] = 101369, + [SMALL_STATE(3811)] = 101383, + [SMALL_STATE(3812)] = 101397, + [SMALL_STATE(3813)] = 101411, + [SMALL_STATE(3814)] = 101425, + [SMALL_STATE(3815)] = 101439, + [SMALL_STATE(3816)] = 101453, + [SMALL_STATE(3817)] = 101457, + [SMALL_STATE(3818)] = 101461, + [SMALL_STATE(3819)] = 101465, + [SMALL_STATE(3820)] = 101469, + [SMALL_STATE(3821)] = 101473, + [SMALL_STATE(3822)] = 101477, }; 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(2286), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3474), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(171), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(155), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(339), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1478), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(247), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(783), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3079), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3470), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2489), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2690), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1045), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1238), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(825), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(201), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2684), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(342), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2972), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2703), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(202), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3052), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2687), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1462), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2563), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1463), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3455), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3376), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 116), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 116), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2585), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3247), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2667), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1946), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(408), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2858), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2210), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2337), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(777), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7041] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1108), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(184), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(301), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(225), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(818), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(870), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3259), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3500), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2398), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2784), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1251), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1070), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2763), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(361), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2643), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2693), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3223), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2768), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2728), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1500), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3802), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3737), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2826), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3403), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2712), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2045), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(262), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(611), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), + [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(800), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2326), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), + [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7254] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -192499,10 +204256,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_doc_content] = true, }, [8] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [9] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token_raw_string_literal_content] = true, }, }; @@ -192525,7 +204282,7 @@ void tree_sitter_rust_external_scanner_deserialize(void *, const char *, unsigne TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -192533,6 +204290,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(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], @@ -192543,11 +204301,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(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, @@ -192561,6 +204322,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { tree_sitter_rust_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "rust", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 3, + }, }; return &language; } diff --git a/test-parsers/tree-sitter-rust/src/tree_sitter/alloc.h b/test-parsers/tree-sitter-rust/src/tree_sitter/alloc.h index 1f4466d7..1abdd120 100644 --- a/test-parsers/tree-sitter-rust/src/tree_sitter/alloc.h +++ b/test-parsers/tree-sitter-rust/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +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 diff --git a/test-parsers/tree-sitter-rust/src/tree_sitter/array.h b/test-parsers/tree-sitter-rust/src/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/test-parsers/tree-sitter-rust/src/tree_sitter/array.h +++ b/test-parsers/tree-sitter-rust/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/test-parsers/tree-sitter-rust/src/tree_sitter/parser.h b/test-parsers/tree-sitter-rust/src/tree_sitter/parser.h index 799f599b..cdbe64cc 100644 --- a/test-parsers/tree-sitter-rust/src/tree_sitter/parser.h +++ b/test-parsers/tree-sitter-rust/src/tree_sitter/parser.h @@ -18,6 +18,12 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +32,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 +86,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 +106,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 +122,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 +142,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 +166,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/test-parsers/tree-sitter-typescript/bindings/node/binding_test.js b/test-parsers/tree-sitter-typescript/bindings/node/binding_test.js index 4c6d1a6e..d3c0ff74 100644 --- a/test-parsers/tree-sitter-typescript/bindings/node/binding_test.js +++ b/test-parsers/tree-sitter-typescript/bindings/node/binding_test.js @@ -1,10 +1,14 @@ -/// +const assert = require('node:assert'); +const { test } = require('node:test'); -const assert = require("node:assert"); -const { test } = require("node:test"); +const Parser = require('tree-sitter'); -test("can load grammar", () => { - const parser = new (require("tree-sitter"))(); - assert.doesNotThrow(() => parser.setLanguage(require(".").typescript)); - assert.doesNotThrow(() => parser.setLanguage(require(".").tsx)); +test('can load TypeScript grammar', () => { + const parser = new Parser(); + assert.doesNotThrow(() => parser.setLanguage(require('./typescript'))); +}); + +test('can load TSX grammar', () => { + const parser = new Parser(); + assert.doesNotThrow(() => parser.setLanguage(require('./tsx'))); }); diff --git a/test-parsers/tree-sitter-typescript/bindings/node/index.js b/test-parsers/tree-sitter-typescript/bindings/node/index.js index 45f72986..0ef5f809 100644 --- a/test-parsers/tree-sitter-typescript/bindings/node/index.js +++ b/test-parsers/tree-sitter-typescript/bindings/node/index.js @@ -1,6 +1,10 @@ const root = require("path").join(__dirname, "..", ".."); -module.exports = require("node-gyp-build")(root); +module.exports = + typeof process.versions.bun === "string" + // Support `bun build --compile` by being statically analyzable enough to find the .node file at build-time + ? require(`../../prebuilds/${process.platform}-${process.arch}/tree-sitter-typescript.node`) + : require("node-gyp-build")(root); try { module.exports.typescript.nodeTypeInfo = require("../../typescript/src/node-types.json"); diff --git a/test-parsers/tree-sitter-typescript/common/common.mak b/test-parsers/tree-sitter-typescript/common/common.mak index 7fe7fc10..969ac3eb 100644 --- a/test-parsers/tree-sitter-typescript/common/common.mak +++ b/test-parsers/tree-sitter-typescript/common/common.mak @@ -1,24 +1,13 @@ ifeq ($(OS),Windows_NT) -$(error Windows is not supported) +$(error "Windows is not supported") endif -VERSION := 0.23.0 - -LANGUAGE_NAME := tree-sitter-typescript +HOMEPAGE_URL := https://github.com/tree-sitter/tree-sitter-typescript +VERSION := 0.23.2 # repository SRC_DIR := src -PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) - -ifeq ($(PARSER_URL),) - PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) -ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) - PARSER_URL := $(subst :,/,$(PARSER_URL)) - PARSER_URL := $(subst git@,https://,$(PARSER_URL)) -endif -endif - TS ?= tree-sitter # install directory layout @@ -37,28 +26,20 @@ ARFLAGS ?= rcs override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC # ABI versioning -SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) -SONAME_MINOR := $(shell sed -n 's/#define LANGUAGE_VERSION //p' $(PARSER)) +SONAME_MAJOR = $(shell sed -n 's/\#define LANGUAGE_VERSION //p' $(PARSER)) +SONAME_MINOR = $(word 1,$(subst ., ,$(VERSION))) # OS-specific bits ifeq ($(shell uname),Darwin) SOEXT = dylib SOEXTVER_MAJOR = $(SONAME_MAJOR).$(SOEXT) SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).$(SOEXT) - LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, - ifneq ($(ADDITIONAL_LIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), - endif - LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks + LINKSHARED = -dynamiclib -Wl,-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks else SOEXT = so SOEXTVER_MAJOR = $(SOEXT).$(SONAME_MAJOR) SOEXTVER = $(SOEXT).$(SONAME_MAJOR).$(SONAME_MINOR) - LINKSHARED := $(LINKSHARED)-shared -Wl, - ifneq ($(ADDITIONAL_LIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) - endif - LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) + LINKSHARED = -shared -Wl,-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) endif ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) PCLIBDIR := $(PREFIX)/libdata/pkgconfig @@ -76,23 +57,21 @@ ifneq ($(STRIP),) endif $(LANGUAGE_NAME).pc: ../bindings/c/$(LANGUAGE_NAME).pc.in - sed -e 's|@URL@|$(PARSER_URL)|' \ - -e 's|@VERSION@|$(VERSION)|' \ - -e 's|@LIBDIR@|$(LIBDIR)|' \ - -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ - -e 's|@REQUIRES@|$(REQUIRES)|' \ - -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ - -e 's|=$(PREFIX)|=$${prefix}|' \ - -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + sed -e 's|@CMAKE_PROJECT_VERSION@|$(VERSION)|' \ + -e 's|@CMAKE_INSTALL_LIBDIR@|$(LIBDIR:$(PREFIX)/%=%)|' \ + -e 's|@CMAKE_INSTALL_INCLUDEDIR@|$(INCLUDEDIR:$(PREFIX)/%=%)|' \ + -e 's|@PROJECT_DESCRIPTION@|$(DESCRIPTION)|' \ + -e 's|@CMAKE_PROJECT_HOMEPAGE_URL@|$(HOMEPAGE_URL)|' \ + -e 's|@CMAKE_INSTALL_PREFIX@|$(PREFIX)|' $< > $@ $(PARSER): $(SRC_DIR)/grammar.json - $(TS) generate --no-bindings $^ + $(TS) generate $^ install: all install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' - install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 ../bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc - install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) diff --git a/test-parsers/tree-sitter-typescript/package.json b/test-parsers/tree-sitter-typescript/package.json index 3875e147..58671921 100644 --- a/test-parsers/tree-sitter-typescript/package.json +++ b/test-parsers/tree-sitter-typescript/package.json @@ -1,8 +1,8 @@ { "name": "tree-sitter-typescript", - "version": "0.23.0", + "version": "0.23.2", "description": "TypeScript and TSX grammars for tree-sitter", - "repository": "github:tree-sitter/tree-sitter-typescript", + "repository": "https://github.com/tree-sitter/tree-sitter-typescript", "license": "MIT", "author": "Max Brunsfeld ", "maintainers": [ @@ -24,142 +24,36 @@ "queries/*", "typescript/grammar.js", "tsx/grammar.js", + "tree-sitter.json", "typescript/package.json", "tsx/package.json", "typescript/src/**", "tsx/src/**", - "common/**" + "common/**", + "*.wasm" ], "dependencies": { - "node-addon-api": "^8.1.0", - "node-gyp-build": "^4.8.2" + "node-addon-api": "^8.2.2", + "node-gyp-build": "^4.8.2", + "tree-sitter-javascript": "^0.23.1" }, "peerDependencies": { "tree-sitter": "^0.21.0" }, "peerDependenciesMeta": { - "tree_sitter": { + "tree-sitter": { "optional": true } }, "devDependencies": { - "eslint": ">=8.57.0", - "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.23.0", - "tree-sitter-javascript": "^0.23.0", + "eslint": ">=9.14.0", + "eslint-config-treesitter": "^1.0.2", + "tree-sitter-cli": "^0.24.4", "prebuildify": "^6.0.1" }, "scripts": { "install": "node-gyp-build", - "prebuildify": "prebuildify --napi --strip", - "build": "npm run build-typescript && npm run build-tsx", - "build-typescript": "cd typescript && npx tree-sitter generate --no-bindings", - "build-tsx": "cd tsx && npx tree-sitter generate --no-bindings", "lint": "eslint common/define-grammar.js", - "parse": "tree-sitter parse", - "test": "tree-sitter test" - }, - "tree-sitter": [ - { - "scope": "source.ts", - "file-types": [ - "ts" - ], - "path": "typescript", - "highlights": [ - "queries/highlights.scm", - "node_modules/tree-sitter-javascript/queries/highlights.scm" - ], - "locals": [ - "queries/locals.scm", - "node_modules/tree-sitter-javascript/queries/locals.scm" - ], - "tags": [ - "queries/tags.scm", - "node_modules/tree-sitter-javascript/queries/tags.scm" - ], - "injections": "node_modules/tree-sitter-javascript/queries/injections.scm", - "injection-regex": "^(ts|typescript)$" - }, - { - "scope": "source.tsx", - "file-types": [ - "tsx" - ], - "path": "tsx", - "highlights": [ - "queries/highlights.scm", - "node_modules/tree-sitter-javascript/queries/highlights-jsx.scm", - "node_modules/tree-sitter-javascript/queries/highlights.scm" - ], - "locals": "node_modules/tree-sitter-javascript/queries/locals.scm", - "tags": [ - "queries/tags.scm", - "node_modules/tree-sitter-javascript/queries/tags.scm" - ], - "injections": "node_modules/tree-sitter-javascript/queries/injections.scm", - "injection-regex": "^(ts|typescript)$" - }, - { - "scope": "source.js.flow", - "file-types": [ - "js" - ], - "path": "tsx", - "highlights": [ - "queries/highlights.scm", - "node_modules/tree-sitter-javascript/queries/highlights-jsx.scm", - "node_modules/tree-sitter-javascript/queries/highlights.scm" - ], - "locals": "node_modules/tree-sitter-javascript/queries/locals.scm", - "tags": [ - "queries/tags.scm", - "node_modules/tree-sitter-javascript/queries/tags.scm" - ], - "injections": "node_modules/tree-sitter-javascript/queries/injections.scm", - "content-regex": "@flow" - } - ], - "eslintConfig": { - "env": { - "commonjs": true, - "es2021": true - }, - "extends": "google", - "parserOptions": { - "ecmaVersion": "latest", - "sourceType": "module" - }, - "rules": { - "arrow-parens": "off", - "camel-case": "off", - "indent": [ - "error", - 2, - { - "SwitchCase": 1 - } - ], - "max-len": [ - "error", - { - "code": 160, - "ignoreComments": true, - "ignoreUrls": true, - "ignoreStrings": true - } - ], - "spaced-comment": [ - "warn", - "always", - { - "line": { - "markers": [ - "/" - ] - } - } - ] - } + "test": "node --test bindings/node/*_test.js" } } diff --git a/test-parsers/tree-sitter-typescript/prebuilds/darwin-arm64/tree-sitter-typescript.node b/test-parsers/tree-sitter-typescript/prebuilds/darwin-arm64/tree-sitter-typescript.node index 8fd5879f..653b099d 100644 Binary files a/test-parsers/tree-sitter-typescript/prebuilds/darwin-arm64/tree-sitter-typescript.node and b/test-parsers/tree-sitter-typescript/prebuilds/darwin-arm64/tree-sitter-typescript.node differ diff --git a/test-parsers/tree-sitter-typescript/prebuilds/darwin-x64/tree-sitter-typescript.node b/test-parsers/tree-sitter-typescript/prebuilds/darwin-x64/tree-sitter-typescript.node index f75818c9..fcae2c7d 100644 Binary files a/test-parsers/tree-sitter-typescript/prebuilds/darwin-x64/tree-sitter-typescript.node and b/test-parsers/tree-sitter-typescript/prebuilds/darwin-x64/tree-sitter-typescript.node differ diff --git a/test-parsers/tree-sitter-typescript/prebuilds/linux-x64/tree-sitter-typescript.node b/test-parsers/tree-sitter-typescript/prebuilds/linux-x64/tree-sitter-typescript.node index e7d0f8fb..979e9db9 100644 Binary files a/test-parsers/tree-sitter-typescript/prebuilds/linux-x64/tree-sitter-typescript.node and b/test-parsers/tree-sitter-typescript/prebuilds/linux-x64/tree-sitter-typescript.node differ diff --git a/test-parsers/tree-sitter-typescript/prebuilds/win32-x64/tree-sitter-typescript.node b/test-parsers/tree-sitter-typescript/prebuilds/win32-x64/tree-sitter-typescript.node index c4c58cad..692a48ed 100644 Binary files a/test-parsers/tree-sitter-typescript/prebuilds/win32-x64/tree-sitter-typescript.node and b/test-parsers/tree-sitter-typescript/prebuilds/win32-x64/tree-sitter-typescript.node differ diff --git a/test-parsers/tree-sitter-typescript/queries/highlights.scm b/test-parsers/tree-sitter-typescript/queries/highlights.scm index 6c840b48..c758b516 100644 --- a/test-parsers/tree-sitter-typescript/queries/highlights.scm +++ b/test-parsers/tree-sitter-typescript/queries/highlights.scm @@ -33,7 +33,3 @@ "override" "satisfies" ] @keyword - -; Sub-language delimeters -(glimmer_opening_tag) @tag.builtin -(glimmer_closing_tag) @tag.builtin diff --git a/test-parsers/tree-sitter-typescript/tsx/package.json b/test-parsers/tree-sitter-typescript/tsx/package.json index 0ed56917..a063619b 100644 --- a/test-parsers/tree-sitter-typescript/tsx/package.json +++ b/test-parsers/tree-sitter-typescript/tsx/package.json @@ -1,3 +1,9 @@ { - "main": "../bindings/node/tsx" + "main": "../bindings/node/tsx", + "private": true, + "scripts": { + "build": "tree-sitter generate", + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground" + } } diff --git a/test-parsers/tree-sitter-typescript/tsx/src/grammar.json b/test-parsers/tree-sitter-typescript/tsx/src/grammar.json index 5951ca40..794ae1e5 100644 --- a/test-parsers/tree-sitter-typescript/tsx/src/grammar.json +++ b/test-parsers/tree-sitter-typescript/tsx/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "tsx", "inherits": "javascript", "word": "identifier", @@ -2062,10 +2063,6 @@ "type": "SYMBOL", "name": "primary_expression" }, - { - "type": "SYMBOL", - "name": "glimmer_template" - }, { "type": "SYMBOL", "name": "_jsx_element" @@ -2747,76 +2744,6 @@ } ] }, - "glimmer_template": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "content", - "content": { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_glimmer_template_content" - } - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - } - ] - }, - "_glimmer_template_content": { - "type": "PATTERN", - "value": ".{1,}" - }, - "glimmer_opening_tag": { - "type": "STRING", - "value": "" - }, "_jsx_element": { "type": "CHOICE", "members": [ diff --git a/test-parsers/tree-sitter-typescript/tsx/src/node-types.json b/test-parsers/tree-sitter-typescript/tsx/src/node-types.json index ecbc1077..34251f88 100644 --- a/test-parsers/tree-sitter-typescript/tsx/src/node-types.json +++ b/test-parsers/tree-sitter-typescript/tsx/src/node-types.json @@ -85,10 +85,6 @@ "type": "binary_expression", "named": true }, - { - "type": "glimmer_template", - "named": true - }, { "type": "instantiation_expression", "named": true @@ -2721,32 +2717,6 @@ } } }, - { - "type": "glimmer_template", - "named": true, - "fields": { - "close_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_closing_tag", - "named": true - } - ] - }, - "open_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_opening_tag", - "named": true - } - ] - } - } - }, { "type": "identifier", "named": true, @@ -4456,6 +4426,7 @@ { "type": "program", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -6018,14 +5989,6 @@ "type": "get", "named": false }, - { - "type": "glimmer_closing_tag", - "named": true - }, - { - "type": "glimmer_opening_tag", - "named": true - }, { "type": "global", "named": false @@ -6112,11 +6075,11 @@ }, { "type": "number", - "named": false + "named": true }, { "type": "number", - "named": true + "named": false }, { "type": "object", diff --git a/test-parsers/tree-sitter-typescript/tsx/src/parser.c b/test-parsers/tree-sitter-typescript/tsx/src/parser.c index f891ee8c..faa8aa40 100644 --- a/test-parsers/tree-sitter-typescript/tsx/src/parser.c +++ b/test-parsers/tree-sitter-typescript/tsx/src/parser.c @@ -4,24 +4,16 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5998 +#define STATE_COUNT 5986 #define LARGE_STATE_COUNT 1167 -#define SYMBOL_COUNT 398 +#define SYMBOL_COUNT 393 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 175 +#define TOKEN_COUNT 172 #define EXTERNAL_TOKEN_COUNT 10 -#define FIELD_COUNT 44 +#define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 352 +#define PRODUCTION_ID_COUNT 351 enum ts_symbol_identifiers { sym_identifier = 1, @@ -70,364 +62,359 @@ enum ts_symbol_identifiers { anon_sym_yield = 44, anon_sym_LBRACK = 45, anon_sym_RBRACK = 46, - sym__glimmer_template_content = 47, - sym_glimmer_opening_tag = 48, - sym_glimmer_closing_tag = 49, - sym_html_character_reference = 50, - anon_sym_GT = 51, - sym_jsx_identifier = 52, - anon_sym_DOT = 53, - anon_sym_LT_SLASH = 54, - anon_sym_SLASH_GT = 55, - anon_sym_DQUOTE = 56, - anon_sym_SQUOTE = 57, - sym_unescaped_double_jsx_string_fragment = 58, - sym_unescaped_single_jsx_string_fragment = 59, - anon_sym_class = 60, - anon_sym_async = 61, - anon_sym_function = 62, - anon_sym_EQ_GT = 63, - anon_sym_QMARK_DOT = 64, - anon_sym_new = 65, - anon_sym_using = 66, - anon_sym_PLUS_EQ = 67, - anon_sym_DASH_EQ = 68, - anon_sym_STAR_EQ = 69, - anon_sym_SLASH_EQ = 70, - anon_sym_PERCENT_EQ = 71, - anon_sym_CARET_EQ = 72, - anon_sym_AMP_EQ = 73, - anon_sym_PIPE_EQ = 74, - anon_sym_GT_GT_EQ = 75, - anon_sym_GT_GT_GT_EQ = 76, - anon_sym_LT_LT_EQ = 77, - anon_sym_STAR_STAR_EQ = 78, - anon_sym_AMP_AMP_EQ = 79, - anon_sym_PIPE_PIPE_EQ = 80, - anon_sym_QMARK_QMARK_EQ = 81, - anon_sym_DOT_DOT_DOT = 82, - anon_sym_AMP_AMP = 83, - anon_sym_PIPE_PIPE = 84, - anon_sym_GT_GT = 85, - anon_sym_GT_GT_GT = 86, - anon_sym_LT_LT = 87, - anon_sym_AMP = 88, - anon_sym_CARET = 89, - anon_sym_PIPE = 90, - anon_sym_PLUS = 91, - anon_sym_DASH = 92, - anon_sym_SLASH = 93, - anon_sym_PERCENT = 94, - anon_sym_STAR_STAR = 95, - anon_sym_LT = 96, - anon_sym_LT_EQ = 97, - anon_sym_EQ_EQ = 98, - anon_sym_EQ_EQ_EQ = 99, - anon_sym_BANG_EQ = 100, - anon_sym_BANG_EQ_EQ = 101, - anon_sym_GT_EQ = 102, - anon_sym_QMARK_QMARK = 103, - anon_sym_instanceof = 104, - anon_sym_TILDE = 105, - anon_sym_void = 106, - anon_sym_delete = 107, - anon_sym_PLUS_PLUS = 108, - anon_sym_DASH_DASH = 109, - sym_unescaped_double_string_fragment = 110, - sym_unescaped_single_string_fragment = 111, - sym_escape_sequence = 112, - sym_comment = 113, - anon_sym_BQUOTE = 114, - anon_sym_DOLLAR_LBRACE = 115, - anon_sym_SLASH2 = 116, - sym_regex_pattern = 117, - sym_regex_flags = 118, - sym_number = 119, - sym_private_property_identifier = 120, - anon_sym_target = 121, - anon_sym_meta = 122, - sym_this = 123, - sym_super = 124, - sym_true = 125, - sym_false = 126, - sym_null = 127, - sym_undefined = 128, - anon_sym_AT = 129, - anon_sym_static = 130, - anon_sym_readonly = 131, - anon_sym_get = 132, - anon_sym_set = 133, - anon_sym_QMARK = 134, - anon_sym_declare = 135, - anon_sym_public = 136, - anon_sym_private = 137, - anon_sym_protected = 138, - anon_sym_override = 139, - anon_sym_module = 140, - anon_sym_any = 141, - anon_sym_number = 142, - anon_sym_boolean = 143, - anon_sym_string = 144, - anon_sym_symbol = 145, - anon_sym_object = 146, - anon_sym_abstract = 147, - anon_sym_accessor = 148, - anon_sym_satisfies = 149, - anon_sym_require = 150, - anon_sym_extends = 151, - anon_sym_implements = 152, - anon_sym_global = 153, - anon_sym_interface = 154, - anon_sym_enum = 155, - anon_sym_DASH_QMARK_COLON = 156, - anon_sym_PLUS_QMARK_COLON = 157, - anon_sym_QMARK_COLON = 158, - anon_sym_asserts = 159, - anon_sym_infer = 160, - anon_sym_is = 161, - anon_sym_keyof = 162, - anon_sym_unique = 163, - anon_sym_unknown = 164, - anon_sym_never = 165, - anon_sym_LBRACE_PIPE = 166, - anon_sym_PIPE_RBRACE = 167, - sym__automatic_semicolon = 168, - sym__template_chars = 169, - sym__ternary_qmark = 170, - sym_html_comment = 171, - sym_jsx_text = 172, - sym__function_signature_automatic_semicolon = 173, - sym___error_recovery = 174, - sym_program = 175, - sym_export_statement = 176, - sym_namespace_export = 177, - sym_export_clause = 178, - sym_export_specifier = 179, - sym__module_export_name = 180, - sym_declaration = 181, - sym_import = 182, - sym_import_statement = 183, - sym_import_clause = 184, - sym__from_clause = 185, - sym_namespace_import = 186, - sym_named_imports = 187, - sym_import_specifier = 188, - sym_import_attribute = 189, - sym_statement = 190, - sym_expression_statement = 191, - sym_variable_declaration = 192, - sym_lexical_declaration = 193, - sym_variable_declarator = 194, - sym_statement_block = 195, - sym_else_clause = 196, - sym_if_statement = 197, - sym_switch_statement = 198, - sym_for_statement = 199, - sym_for_in_statement = 200, - sym__for_header = 201, - sym_while_statement = 202, - sym_do_statement = 203, - sym_try_statement = 204, - sym_with_statement = 205, - sym_break_statement = 206, - sym_continue_statement = 207, - sym_debugger_statement = 208, - sym_return_statement = 209, - sym_throw_statement = 210, - sym_empty_statement = 211, - sym_labeled_statement = 212, - sym_switch_body = 213, - sym_switch_case = 214, - sym_switch_default = 215, - sym_catch_clause = 216, - sym_finally_clause = 217, - sym_parenthesized_expression = 218, - sym_expression = 219, - sym_primary_expression = 220, - sym_yield_expression = 221, - sym_object = 222, - sym_object_pattern = 223, - sym_assignment_pattern = 224, - sym_object_assignment_pattern = 225, - sym_array = 226, - sym_array_pattern = 227, - sym_glimmer_template = 228, - sym_jsx_element = 229, - sym_jsx_expression = 230, - sym_jsx_opening_element = 231, - sym_nested_identifier = 232, - sym_jsx_namespace_name = 233, - sym_jsx_closing_element = 234, - sym_jsx_self_closing_element = 235, - sym_jsx_attribute = 236, - sym__jsx_string = 237, - sym_class = 238, - sym_class_declaration = 239, - sym_class_heritage = 240, - sym_function_expression = 241, - sym_function_declaration = 242, - sym_generator_function = 243, - sym_generator_function_declaration = 244, - sym_arrow_function = 245, - sym__call_signature = 246, - sym__formal_parameter = 247, - sym_optional_chain = 248, - sym_call_expression = 249, - sym_new_expression = 250, - sym_await_expression = 251, - sym_member_expression = 252, - sym_subscript_expression = 253, - sym_assignment_expression = 254, - sym__augmented_assignment_lhs = 255, - sym_augmented_assignment_expression = 256, - sym__initializer = 257, - sym__destructuring_pattern = 258, - sym_spread_element = 259, - sym_ternary_expression = 260, - sym_binary_expression = 261, - sym_unary_expression = 262, - sym_update_expression = 263, - sym_sequence_expression = 264, - sym_string = 265, - sym_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_glimmer_template_repeat1 = 379, - aux_sym_jsx_element_repeat1 = 380, - aux_sym__jsx_string_repeat1 = 381, - aux_sym__jsx_string_repeat2 = 382, - aux_sym_sequence_expression_repeat1 = 383, - aux_sym_string_repeat1 = 384, - aux_sym_string_repeat2 = 385, - aux_sym_template_string_repeat1 = 386, - aux_sym_class_body_repeat1 = 387, - aux_sym_formal_parameters_repeat1 = 388, - aux_sym__jsx_start_opening_element_repeat1 = 389, - aux_sym_extends_clause_repeat1 = 390, - aux_sym_implements_clause_repeat1 = 391, - aux_sym_extends_type_clause_repeat1 = 392, - aux_sym_enum_body_repeat1 = 393, - aux_sym_template_literal_type_repeat1 = 394, - aux_sym_object_type_repeat1 = 395, - aux_sym_type_parameters_repeat1 = 396, - aux_sym_tuple_type_repeat1 = 397, - alias_sym_interface_body = 398, - alias_sym_property_identifier = 399, - alias_sym_shorthand_property_identifier = 400, - alias_sym_shorthand_property_identifier_pattern = 401, - alias_sym_statement_identifier = 402, - alias_sym_this_type = 403, - alias_sym_type_identifier = 404, + 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_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, }; static const char * const ts_symbol_names[] = { @@ -478,9 +465,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_yield] = "yield", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", - [sym__glimmer_template_content] = "_glimmer_template_content", - [sym_glimmer_opening_tag] = "glimmer_opening_tag", - [sym_glimmer_closing_tag] = "glimmer_closing_tag", [sym_html_character_reference] = "html_character_reference", [anon_sym_GT] = ">", [sym_jsx_identifier] = "identifier", @@ -659,7 +643,6 @@ static const char * const ts_symbol_names[] = { [sym_object_assignment_pattern] = "object_assignment_pattern", [sym_array] = "array", [sym_array_pattern] = "array_pattern", - [sym_glimmer_template] = "glimmer_template", [sym_jsx_element] = "jsx_element", [sym_jsx_expression] = "jsx_expression", [sym_jsx_opening_element] = "jsx_opening_element", @@ -810,7 +793,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1", [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", - [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1", [aux_sym__jsx_string_repeat2] = "_jsx_string_repeat2", @@ -886,9 +868,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_yield] = anon_sym_yield, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [sym__glimmer_template_content] = sym__glimmer_template_content, - [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, - [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, [sym_html_character_reference] = sym_html_character_reference, [anon_sym_GT] = anon_sym_GT, [sym_jsx_identifier] = sym_identifier, @@ -1067,7 +1046,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_object_assignment_pattern] = sym_object_assignment_pattern, [sym_array] = sym_array, [sym_array_pattern] = sym_array_pattern, - [sym_glimmer_template] = sym_glimmer_template, [sym_jsx_element] = sym_jsx_element, [sym_jsx_expression] = sym_jsx_expression, [sym_jsx_opening_element] = sym_jsx_opening_element, @@ -1218,7 +1196,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1, [aux_sym_array_repeat1] = aux_sym_array_repeat1, [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, - [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1, [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1, [aux_sym__jsx_string_repeat2] = aux_sym__jsx_string_repeat2, @@ -1435,18 +1412,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__glimmer_template_content] = { - .visible = false, - .named = true, - }, - [sym_glimmer_opening_tag] = { - .visible = true, - .named = true, - }, - [sym_glimmer_closing_tag] = { - .visible = true, - .named = true, - }, [sym_html_character_reference] = { .visible = true, .named = true, @@ -2163,10 +2128,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_glimmer_template] = { - .visible = true, - .named = true, - }, [sym_jsx_element] = { .visible = true, .named = true, @@ -2770,10 +2731,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_glimmer_template_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_jsx_element_repeat1] = { .visible = false, .named = false, @@ -2888,39 +2845,38 @@ enum ts_field_identifiers { field_consequence = 9, field_constraint = 10, field_constructor = 11, - field_content = 12, - field_declaration = 13, - field_decorator = 14, - field_finalizer = 15, - field_flags = 16, - field_function = 17, - field_handler = 18, - field_increment = 19, - field_index = 20, - field_index_type = 21, - field_initializer = 22, - field_key = 23, - field_kind = 24, - field_label = 25, - field_left = 26, - field_module = 27, - field_name = 28, - field_object = 29, - field_open_tag = 30, - field_operator = 31, - field_optional_chain = 32, - field_parameter = 33, - field_parameters = 34, - field_pattern = 35, - field_property = 36, - field_return_type = 37, - field_right = 38, - field_sign = 39, - field_source = 40, - field_type = 41, - field_type_arguments = 42, - field_type_parameters = 43, - field_value = 44, + 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[] = { @@ -2936,7 +2892,6 @@ static const char * const ts_field_names[] = { [field_consequence] = "consequence", [field_constraint] = "constraint", [field_constructor] = "constructor", - [field_content] = "content", [field_declaration] = "declaration", [field_decorator] = "decorator", [field_finalizer] = "finalizer", @@ -2981,12 +2936,12 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 8, .length = 1}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 1}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 1}, - [14] = {.index = 3, .length = 1}, + [12] = {.index = 12, .length = 1}, + [13] = {.index = 3, .length = 1}, + [14] = {.index = 13, .length = 2}, [15] = {.index = 15, .length = 2}, - [16] = {.index = 17, .length = 2}, - [17] = {.index = 19, .length = 1}, + [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}, @@ -3011,308 +2966,307 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [42] = {.index = 64, .length = 2}, [43] = {.index = 66, .length = 2}, [44] = {.index = 68, .length = 1}, - [45] = {.index = 69, .length = 3}, - [46] = {.index = 72, .length = 2}, - [47] = {.index = 74, .length = 1}, - [48] = {.index = 75, .length = 2}, - [51] = {.index = 77, .length = 2}, - [52] = {.index = 79, .length = 2}, - [53] = {.index = 81, .length = 2}, - [54] = {.index = 83, .length = 1}, - [55] = {.index = 84, .length = 2}, - [56] = {.index = 86, .length = 4}, - [57] = {.index = 90, .length = 2}, - [58] = {.index = 92, .length = 2}, - [59] = {.index = 94, .length = 1}, - [60] = {.index = 94, .length = 1}, - [61] = {.index = 95, .length = 1}, - [62] = {.index = 96, .length = 2}, - [63] = {.index = 98, .length = 2}, - [64] = {.index = 94, .length = 1}, - [65] = {.index = 27, .length = 2}, - [66] = {.index = 31, .length = 2}, - [67] = {.index = 100, .length = 3}, - [68] = {.index = 72, .length = 2}, - [69] = {.index = 72, .length = 2}, - [70] = {.index = 103, .length = 2}, - [71] = {.index = 103, .length = 2}, - [72] = {.index = 105, .length = 3}, + [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 = 3}, - [75] = {.index = 111, .length = 2}, - [76] = {.index = 113, .length = 2}, - [77] = {.index = 115, .length = 4}, - [78] = {.index = 119, .length = 3}, - [79] = {.index = 122, .length = 2}, - [80] = {.index = 124, .length = 2}, - [81] = {.index = 126, .length = 1}, - [82] = {.index = 127, .length = 1}, - [83] = {.index = 103, .length = 2}, - [84] = {.index = 27, .length = 2}, - [85] = {.index = 128, .length = 2}, - [86] = {.index = 130, .length = 5}, - [87] = {.index = 135, .length = 1}, - [88] = {.index = 136, .length = 1}, - [89] = {.index = 137, .length = 2}, - [90] = {.index = 139, .length = 3}, - [91] = {.index = 142, .length = 2}, - [92] = {.index = 144, .length = 3}, - [93] = {.index = 147, .length = 6}, - [94] = {.index = 153, .length = 1}, - [95] = {.index = 154, .length = 1}, + [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 = 3}, - [98] = {.index = 161, .length = 4}, - [99] = {.index = 165, .length = 2}, - [100] = {.index = 167, .length = 2}, - [101] = {.index = 169, .length = 3}, - [102] = {.index = 172, .length = 4}, - [103] = {.index = 176, .length = 1}, - [104] = {.index = 177, .length = 2}, - [105] = {.index = 179, .length = 1}, - [106] = {.index = 180, .length = 2}, - [107] = {.index = 182, .length = 3}, - [108] = {.index = 185, .length = 2}, - [109] = {.index = 187, .length = 4}, - [110] = {.index = 191, .length = 3}, - [111] = {.index = 194, .length = 2}, - [112] = {.index = 196, .length = 2}, - [113] = {.index = 198, .length = 2}, - [114] = {.index = 200, .length = 2}, - [115] = {.index = 202, .length = 2}, - [118] = {.index = 202, .length = 2}, - [119] = {.index = 204, .length = 4}, - [120] = {.index = 208, .length = 2}, - [121] = {.index = 210, .length = 2}, - [122] = {.index = 212, .length = 4}, - [123] = {.index = 210, .length = 2}, - [124] = {.index = 216, .length = 4}, - [125] = {.index = 220, .length = 4}, - [126] = {.index = 224, .length = 5}, - [127] = {.index = 229, .length = 3}, - [128] = {.index = 232, .length = 2}, - [129] = {.index = 232, .length = 2}, - [130] = {.index = 234, .length = 2}, - [131] = {.index = 236, .length = 2}, - [132] = {.index = 238, .length = 2}, - [133] = {.index = 240, .length = 2}, - [134] = {.index = 242, .length = 2}, - [135] = {.index = 244, .length = 2}, - [136] = {.index = 246, .length = 3}, - [137] = {.index = 244, .length = 2}, - [138] = {.index = 240, .length = 2}, - [139] = {.index = 142, .length = 2}, - [140] = {.index = 249, .length = 1}, - [141] = {.index = 249, .length = 1}, - [142] = {.index = 180, .length = 2}, - [143] = {.index = 182, .length = 3}, - [144] = {.index = 250, .length = 2}, - [145] = {.index = 252, .length = 3}, - [146] = {.index = 255, .length = 2}, - [147] = {.index = 257, .length = 3}, - [148] = {.index = 260, .length = 2}, - [149] = {.index = 262, .length = 3}, - [150] = {.index = 265, .length = 1}, - [151] = {.index = 266, .length = 2}, - [152] = {.index = 268, .length = 2}, - [153] = {.index = 270, .length = 5}, - [154] = {.index = 266, .length = 2}, - [155] = {.index = 275, .length = 1}, - [156] = {.index = 276, .length = 4}, - [157] = {.index = 280, .length = 2}, - [158] = {.index = 282, .length = 1}, - [159] = {.index = 283, .length = 2}, - [160] = {.index = 285, .length = 2}, - [161] = {.index = 287, .length = 2}, - [162] = {.index = 289, .length = 4}, - [163] = {.index = 293, .length = 2}, + [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 = 3}, - [167] = {.index = 304, .length = 4}, - [168] = {.index = 308, .length = 1}, - [169] = {.index = 309, .length = 2}, - [170] = {.index = 311, .length = 4}, - [171] = {.index = 315, .length = 4}, - [172] = {.index = 319, .length = 4}, - [173] = {.index = 323, .length = 2}, - [174] = {.index = 325, .length = 2}, - [175] = {.index = 327, .length = 4}, - [176] = {.index = 327, .length = 4}, - [177] = {.index = 331, .length = 4}, - [178] = {.index = 331, .length = 4}, - [179] = {.index = 335, .length = 4}, - [180] = {.index = 339, .length = 4}, - [181] = {.index = 343, .length = 5}, + [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 = 351, .length = 3}, - [184] = {.index = 351, .length = 3}, - [185] = {.index = 354, .length = 2}, - [186] = {.index = 356, .length = 3}, - [187] = {.index = 359, .length = 2}, - [188] = {.index = 359, .length = 2}, - [189] = {.index = 301, .length = 3}, + [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 = 364, .length = 3}, - [192] = {.index = 137, .length = 2}, - [193] = {.index = 367, .length = 2}, - [194] = {.index = 369, .length = 3}, - [195] = {.index = 372, .length = 4}, + [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 = 3}, - [198] = {.index = 382, .length = 2}, - [199] = {.index = 384, .length = 3}, - [200] = {.index = 387, .length = 5}, - [201] = {.index = 382, .length = 2}, - [202] = {.index = 392, .length = 3}, + [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 = 3}, - [205] = {.index = 398, .length = 2}, - [206] = {.index = 400, .length = 4}, - [207] = {.index = 137, .length = 2}, - [208] = {.index = 404, .length = 1}, - [209] = {.index = 405, .length = 2}, - [210] = {.index = 407, .length = 2}, - [211] = {.index = 409, .length = 2}, - [212] = {.index = 411, .length = 2}, - [213] = {.index = 413, .length = 3}, - [214] = {.index = 416, .length = 1}, - [215] = {.index = 417, .length = 3}, - [216] = {.index = 420, .length = 2}, + [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 = 3}, - [221] = {.index = 434, .length = 4}, - [222] = {.index = 438, .length = 2}, - [223] = {.index = 440, .length = 2}, - [224] = {.index = 442, .length = 1}, - [225] = {.index = 443, .length = 4}, - [226] = {.index = 443, .length = 4}, - [227] = {.index = 447, .length = 2}, - [228] = {.index = 449, .length = 3}, - [229] = {.index = 452, .length = 5}, - [230] = {.index = 457, .length = 3}, - [231] = {.index = 460, .length = 2}, - [232] = {.index = 462, .length = 2}, - [233] = {.index = 464, .length = 2}, - [234] = {.index = 466, .length = 1}, - [235] = {.index = 467, .length = 4}, - [236] = {.index = 471, .length = 3}, - [237] = {.index = 474, .length = 4}, - [238] = {.index = 478, .length = 5}, - [239] = {.index = 483, .length = 1}, - [240] = {.index = 484, .length = 2}, - [241] = {.index = 486, .length = 4}, - [242] = {.index = 490, .length = 4}, - [243] = {.index = 494, .length = 4}, - [244] = {.index = 498, .length = 3}, - [245] = {.index = 501, .length = 2}, - [246] = {.index = 503, .length = 4}, - [247] = {.index = 507, .length = 4}, - [248] = {.index = 511, .length = 2}, - [249] = {.index = 513, .length = 2}, + [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 = 3}, - [252] = {.index = 521, .length = 2}, - [253] = {.index = 523, .length = 2}, - [254] = {.index = 525, .length = 1}, - [255] = {.index = 526, .length = 1}, + [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 = 3}, - [260] = {.index = 539, .length = 4}, - [261] = {.index = 543, .length = 2}, - [262] = {.index = 545, .length = 4}, - [263] = {.index = 549, .length = 3}, - [264] = {.index = 552, .length = 2}, - [265] = {.index = 554, .length = 2}, - [266] = {.index = 556, .length = 4}, - [267] = {.index = 560, .length = 4}, - [268] = {.index = 564, .length = 4}, - [269] = {.index = 568, .length = 3}, - [270] = {.index = 571, .length = 2}, - [272] = {.index = 573, .length = 4}, - [273] = {.index = 577, .length = 5}, - [274] = {.index = 582, .length = 5}, - [275] = {.index = 587, .length = 5}, - [276] = {.index = 592, .length = 4}, - [277] = {.index = 596, .length = 5}, - [278] = {.index = 601, .length = 4}, - [279] = {.index = 605, .length = 4}, + [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 = 615, .length = 3}, - [283] = {.index = 612, .length = 3}, - [284] = {.index = 618, .length = 2}, - [285] = {.index = 620, .length = 4}, - [286] = {.index = 624, .length = 4}, - [287] = {.index = 628, .length = 3}, - [288] = {.index = 631, .length = 2}, - [289] = {.index = 633, .length = 2}, - [290] = {.index = 635, .length = 3}, - [291] = {.index = 638, .length = 2}, - [292] = {.index = 640, .length = 2}, - [293] = {.index = 642, .length = 1}, + [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 = 3}, - [296] = {.index = 649, .length = 4}, - [297] = {.index = 653, .length = 4}, + [295] = {.index = 646, .length = 4}, + [296] = {.index = 650, .length = 4}, + [297] = {.index = 654, .length = 3}, [298] = {.index = 657, .length = 3}, - [299] = {.index = 660, .length = 3}, - [300] = {.index = 663, .length = 2}, - [301] = {.index = 665, .length = 3}, - [302] = {.index = 668, .length = 2}, - [303] = {.index = 670, .length = 4}, - [304] = {.index = 674, .length = 4}, - [305] = {.index = 678, .length = 4}, - [306] = {.index = 682, .length = 3}, - [307] = {.index = 685, .length = 5}, - [308] = {.index = 690, .length = 5}, - [309] = {.index = 695, .length = 5}, - [310] = {.index = 700, .length = 4}, - [311] = {.index = 704, .length = 4}, + [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 = 711, .length = 3}, - [314] = {.index = 711, .length = 3}, - [315] = {.index = 714, .length = 2}, - [316] = {.index = 716, .length = 2}, - [317] = {.index = 718, .length = 3}, - [318] = {.index = 721, .length = 2}, - [319] = {.index = 723, .length = 2}, - [320] = {.index = 725, .length = 4}, + [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 = 3}, - [323] = {.index = 735, .length = 4}, + [322] = {.index = 732, .length = 4}, + [323] = {.index = 736, .length = 3}, [324] = {.index = 739, .length = 3}, - [325] = {.index = 742, .length = 3}, - [326] = {.index = 745, .length = 2}, - [327] = {.index = 747, .length = 4}, - [328] = {.index = 751, .length = 5}, - [329] = {.index = 756, .length = 5}, - [330] = {.index = 761, .length = 4}, - [331] = {.index = 761, .length = 4}, - [332] = {.index = 765, .length = 4}, - [333] = {.index = 769, .length = 3}, - [334] = {.index = 772, .length = 2}, - [335] = {.index = 774, .length = 2}, - [336] = {.index = 776, .length = 3}, - [337] = {.index = 779, .length = 4}, - [338] = {.index = 783, .length = 4}, + [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 = 3}, - [341] = {.index = 793, .length = 4}, + [340] = {.index = 790, .length = 4}, + [341] = {.index = 794, .length = 3}, [342] = {.index = 797, .length = 3}, - [343] = {.index = 800, .length = 3}, - [344] = {.index = 803, .length = 5}, - [345] = {.index = 808, .length = 3}, - [346] = {.index = 811, .length = 4}, - [347] = {.index = 815, .length = 4}, + [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 = 3}, - [350] = {.index = 825, .length = 4}, - [351] = {.index = 829, .length = 4}, + [349] = {.index = 822, .length = 4}, + [350] = {.index = 826, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3338,18 +3292,18 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [11] = {field_body, 1}, [12] = - {field_close_tag, 1}, - {field_open_tag, 0}, - [14] = {field_constructor, 1}, - [15] = + [13] = {field_arguments, 1}, {field_function, 0}, - [17] = + [15] = {field_argument, 0}, {field_operator, 1}, - [19] = + [17] = {field_type_arguments, 1}, + [18] = + {field_close_tag, 1}, + {field_open_tag, 0}, [20] = {field_parameters, 0}, {field_return_type, 1}, @@ -3424,1034 +3378,1030 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [68] = {field_label, 1}, [69] = - {field_close_tag, 2}, - {field_content, 1}, - {field_open_tag, 0}, - [72] = {field_body, 2}, {field_name, 1}, - [74] = + [71] = {field_value, 0}, - [75] = + [72] = {field_type_arguments, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [77] = + [74] = {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [79] = + [76] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, - [81] = + [78] = {field_argument, 0, .inherited = true}, {field_operator, 0, .inherited = true}, - [83] = + [80] = {field_body, 2}, - [84] = + [81] = {field_body, 2}, {field_type_parameters, 1}, - [86] = + [83] = {field_body, 2}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [90] = + [87] = {field_arguments, 2}, {field_constructor, 1}, - [92] = + [89] = {field_constructor, 1}, {field_type_arguments, 2}, - [94] = + [91] = {field_name, 1}, - [95] = + [92] = {field_attribute, 0}, - [96] = + [93] = {field_name, 0}, {field_value, 1}, - [98] = + [95] = {field_constraint, 1}, {field_name, 0}, - [100] = + [97] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [103] = + [100] = {field_object, 0}, {field_property, 2}, - [105] = + [102] = {field_object, 0}, {field_optional_chain, 1}, {field_property, 2}, - [108] = + [105] = {field_arguments, 2}, {field_function, 0}, {field_type_arguments, 1}, - [111] = + [108] = {field_arguments, 2}, {field_function, 0}, - [113] = + [110] = {field_close_tag, 2}, {field_open_tag, 0}, - [115] = + [112] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [119] = + [116] = {field_parameters, 1}, {field_return_type, 2}, {field_type_parameters, 0}, - [122] = + [119] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [124] = + [121] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [126] = + [123] = {field_source, 2, .inherited = true}, - [127] = + [124] = {field_value, 2}, - [128] = + [125] = {field_key, 0}, {field_value, 2}, - [130] = + [127] = {field_body, 2}, {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [135] = + [132] = {field_source, 2}, - [136] = + [133] = {field_value, 1}, - [137] = + [134] = {field_name, 0}, {field_type, 2}, - [139] = + [136] = {field_name, 0}, {field_type, 1}, {field_value, 2, .inherited = true}, - [142] = + [139] = {field_body, 3}, {field_name, 2}, - [144] = + [141] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [147] = + [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}, - [153] = + [150] = {field_type, 2}, - [154] = + [151] = {field_pattern, 2}, - [155] = + [152] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 2, .inherited = true}, - [158] = + [155] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, - [161] = + [158] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, {field_value, 2, .inherited = true}, - [165] = + [162] = {field_decorator, 0, .inherited = true}, {field_pattern, 2}, - [167] = + [164] = {field_body, 1}, {field_condition, 3}, - [169] = + [166] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [172] = + [169] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [176] = + [173] = {field_decorator, 0, .inherited = true}, - [177] = + [174] = {field_decorator, 0, .inherited = true}, {field_name, 1}, - [179] = + [176] = {field_decorator, 1, .inherited = true}, - [180] = + [177] = {field_body, 3}, {field_name, 1}, - [182] = + [179] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [185] = + [182] = {field_type_arguments, 1}, {field_value, 0}, - [187] = + [184] = {field_type_arguments, 1, .inherited = true}, {field_type_arguments, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [191] = + [188] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [194] = + [191] = {field_object, 1, .inherited = true}, {field_property, 1, .inherited = true}, - [196] = + [193] = {field_index, 1, .inherited = true}, {field_object, 1, .inherited = true}, - [198] = + [195] = {field_arguments, 1, .inherited = true}, {field_function, 1, .inherited = true}, - [200] = + [197] = {field_function, 1, .inherited = true}, {field_type_arguments, 1, .inherited = true}, - [202] = + [199] = {field_name, 0}, {field_type_arguments, 1}, - [204] = + [201] = {field_arguments, 1}, {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [208] = + [205] = {field_body, 3}, {field_type_parameters, 1}, - [210] = + [207] = {field_body, 3}, {field_parameter, 1}, - [212] = + [209] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [216] = + [213] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [220] = + [217] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [224] = + [221] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [229] = + [226] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [232] = + [229] = {field_left, 1}, {field_right, 3}, - [234] = + [231] = {field_flags, 3}, {field_pattern, 1}, - [236] = + [233] = {field_name, 1}, {field_value, 2}, - [238] = + [235] = {field_constraint, 2}, {field_name, 1}, - [240] = + [237] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [242] = + [239] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [244] = + [241] = {field_name, 1}, {field_type_arguments, 2}, - [246] = + [243] = {field_constraint, 1}, {field_name, 0}, {field_value, 2}, - [249] = + [246] = {field_type, 1}, - [250] = + [247] = {field_index, 2}, {field_object, 0}, - [252] = + [249] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [255] = + [252] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [257] = + [254] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [260] = + [257] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [262] = + [259] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [265] = + [262] = {field_source, 3, .inherited = true}, - [266] = + [263] = {field_alias, 2}, {field_name, 0}, - [268] = + [265] = {field_name, 1}, {field_value, 3}, - [270] = + [267] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [275] = + [272] = {field_pattern, 3}, - [276] = + [273] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [280] = + [277] = {field_decorator, 0, .inherited = true}, {field_pattern, 3}, - [282] = + [279] = {field_name, 2}, - [283] = + [280] = {field_name, 1}, {field_value, 2, .inherited = true}, - [285] = + [282] = {field_name, 1}, {field_type, 2}, - [287] = + [284] = {field_name, 0}, {field_value, 2, .inherited = true}, - [289] = + [286] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [293] = + [290] = {field_decorator, 0, .inherited = true}, {field_name, 2}, - [295] = + [292] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 2, .inherited = true}, - [298] = + [295] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, - [301] = + [298] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [304] = + [301] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [308] = + [305] = {field_parameters, 1}, - [309] = + [306] = {field_function, 0}, {field_type_arguments, 1}, - [311] = + [308] = {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_type_arguments, 1}, - [315] = + [312] = {field_arguments, 1}, {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, - [319] = + [316] = {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, {field_type_arguments, 1}, - [323] = + [320] = {field_module, 0}, {field_name, 2}, - [325] = + [322] = {field_parameters, 0}, {field_return_type, 2}, - [327] = + [324] = {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_property, 2}, - [331] = + [328] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_object, 0}, {field_property, 2}, - [335] = + [332] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [339] = + [336] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [343] = + [340] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [348] = + [345] = {field_constraint, 2}, {field_name, 1}, {field_value, 3}, - [351] = + [348] = {field_attribute, 3, .inherited = true}, {field_name, 1}, {field_type_arguments, 2}, - [354] = + [351] = {field_body, 4}, {field_name, 2}, - [356] = + [353] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [359] = + [356] = {field_type, 1}, {field_type, 2, .inherited = true}, - [361] = + [358] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [364] = + [361] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [367] = + [364] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [369] = + [366] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [372] = + [369] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [376] = + [373] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [379] = + [376] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [382] = + [379] = {field_alias, 3}, {field_name, 1}, - [384] = + [381] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [387] = + [384] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [392] = + [389] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [395] = + [392] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [398] = + [395] = {field_decorator, 0, .inherited = true}, {field_pattern, 4}, - [400] = + [397] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [404] = + [401] = {field_type, 3}, - [405] = + [402] = {field_name, 2}, {field_value, 3, .inherited = true}, - [407] = + [404] = {field_name, 2}, {field_type, 3}, - [409] = + [406] = {field_name, 1}, {field_value, 3, .inherited = true}, - [411] = + [408] = {field_name, 1}, {field_type, 3}, - [413] = + [410] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [416] = + [413] = {field_name, 3}, - [417] = + [414] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [420] = + [417] = {field_decorator, 0, .inherited = true}, {field_name, 3}, - [422] = + [419] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 3, .inherited = true}, - [425] = + [422] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, - [428] = + [425] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 3, .inherited = true}, - [431] = + [428] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, - [434] = + [431] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [438] = + [435] = {field_parameters, 1}, {field_type, 2}, - [440] = + [437] = {field_parameters, 2}, {field_type_parameters, 1}, - [442] = + [439] = {field_parameters, 2}, - [443] = + [440] = {field_index, 0, .inherited = true}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 2}, - [447] = + [444] = {field_parameters, 1}, {field_type, 3}, - [449] = + [446] = {field_parameters, 1}, {field_return_type, 3}, {field_type_parameters, 0}, - [452] = + [449] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [457] = + [454] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [460] = + [457] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [462] = + [459] = {field_name, 1}, {field_name, 2, .inherited = true}, - [464] = + [461] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [466] = + [463] = {field_name, 2, .inherited = true}, - [467] = + [464] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [471] = + [468] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [474] = + [471] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [478] = + [475] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [483] = + [480] = {field_source, 4}, - [484] = + [481] = {field_body, 3}, {field_value, 1}, - [486] = + [483] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [490] = + [487] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [494] = + [491] = {field_body, 6}, {field_condition, 3}, {field_condition, 4}, {field_initializer, 2}, - [498] = + [495] = {field_body, 6}, {field_condition, 4}, {field_initializer, 2}, - [501] = + [498] = {field_body, 4}, {field_parameter, 2}, - [503] = + [500] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [507] = + [504] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [511] = + [508] = {field_name, 2}, {field_value, 4, .inherited = true}, - [513] = + [510] = {field_name, 2}, {field_type, 4}, - [515] = + [512] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [518] = + [515] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [521] = + [518] = {field_name, 3}, {field_value, 4, .inherited = true}, - [523] = + [520] = {field_name, 3}, {field_type, 4}, - [525] = + [522] = {field_type, 4}, - [526] = + [523] = {field_name, 4}, - [527] = + [524] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 4, .inherited = true}, - [530] = + [527] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, - [533] = + [530] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 4, .inherited = true}, - [536] = + [533] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, - [539] = + [536] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [543] = + [540] = {field_decorator, 0, .inherited = true}, {field_name, 4}, - [545] = + [542] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [549] = + [546] = {field_parameters, 2}, {field_type, 3}, {field_type_parameters, 1}, - [552] = + [549] = {field_parameters, 2}, {field_type, 3}, - [554] = + [551] = {field_parameters, 3}, {field_type_parameters, 2}, - [556] = + [553] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [560] = + [557] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [564] = + [561] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [568] = + [565] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [571] = + [568] = {field_parameters, 2}, {field_type, 4}, - [573] = + [570] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [577] = + [574] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [582] = + [579] = {field_body, 6}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [587] = + [584] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [592] = + [589] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, - [596] = + [593] = {field_body, 7}, {field_condition, 3}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [601] = + [598] = {field_body, 7}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [605] = + [602] = {field_body, 7}, {field_condition, 4}, {field_condition, 5}, {field_initializer, 2}, - [609] = + [606] = {field_body, 5}, {field_parameter, 2}, {field_type, 3}, - [612] = + [609] = {field_index_type, 3}, {field_name, 1}, {field_type, 5}, - [615] = + [612] = {field_alias, 4}, {field_name, 0}, {field_type, 2}, - [618] = + [615] = {field_sign, 0}, {field_type, 5}, - [620] = + [617] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [624] = + [621] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [628] = + [625] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [631] = + [628] = {field_name, 3}, {field_value, 5, .inherited = true}, - [633] = + [630] = {field_name, 3}, {field_type, 5}, - [635] = + [632] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [638] = + [635] = {field_name, 4}, {field_value, 5, .inherited = true}, - [640] = + [637] = {field_name, 4}, {field_type, 5}, - [642] = + [639] = {field_name, 5}, - [643] = + [640] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 5, .inherited = true}, - [646] = + [643] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, - [649] = + [646] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [653] = + [650] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [657] = + [654] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 5, .inherited = true}, - [660] = + [657] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, - [663] = + [660] = {field_decorator, 0, .inherited = true}, {field_name, 5}, - [665] = + [662] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [668] = + [665] = {field_index, 3}, {field_object, 0}, - [670] = + [667] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [674] = + [671] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [678] = + [675] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [682] = + [679] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [685] = + [682] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [690] = + [687] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [695] = + [692] = {field_body, 8}, {field_condition, 4}, {field_condition, 5}, {field_increment, 6}, {field_initializer, 2}, - [700] = + [697] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [704] = + [701] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [708] = + [705] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [711] = + [708] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [714] = + [711] = {field_name, 4}, {field_value, 6, .inherited = true}, - [716] = + [713] = {field_name, 4}, {field_type, 6}, - [718] = + [715] = {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [721] = + [718] = {field_name, 5}, {field_value, 6, .inherited = true}, - [723] = + [720] = {field_name, 5}, {field_type, 6}, - [725] = + [722] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [729] = + [726] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 6, .inherited = true}, - [732] = + [729] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, - [735] = + [732] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [739] = + [736] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 6, .inherited = true}, - [742] = + [739] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, - [745] = + [742] = {field_decorator, 0, .inherited = true}, {field_name, 6}, - [747] = + [744] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [751] = + [748] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [756] = + [753] = {field_body, 8}, {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [761] = + [758] = {field_index_type, 5}, {field_name, 3}, {field_sign, 0}, {field_type, 7}, - [765] = + [762] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [769] = + [766] = {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [772] = + [769] = {field_name, 5}, {field_value, 7, .inherited = true}, - [774] = + [771] = {field_name, 5}, {field_type, 7}, - [776] = + [773] = {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [779] = + [776] = {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [783] = + [780] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [787] = + [784] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 7, .inherited = true}, - [790] = + [787] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, - [793] = + [790] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [797] = + [794] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 7, .inherited = true}, - [800] = + [797] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, - [803] = + [800] = {field_body, 9}, {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [808] = + [805] = {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [811] = + [808] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [815] = + [812] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [819] = + [816] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 8, .inherited = true}, - [822] = + [819] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, - [825] = + [822] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, {field_value, 8, .inherited = true}, - [829] = + [826] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, @@ -4466,7 +4416,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [7] = { [0] = alias_sym_property_identifier, }, - [14] = { + [13] = { [0] = alias_sym_type_identifier, }, [22] = { @@ -4490,189 +4440,189 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [44] = { [1] = alias_sym_statement_identifier, }, - [46] = { + [45] = { [1] = alias_sym_type_identifier, }, - [49] = { + [48] = { [0] = alias_sym_type_identifier, }, - [50] = { + [49] = { [0] = alias_sym_this_type, }, - [59] = { + [58] = { [1] = alias_sym_type_identifier, }, - [62] = { + [61] = { [0] = alias_sym_type_identifier, }, - [63] = { + [62] = { [0] = alias_sym_type_identifier, }, - [64] = { + [63] = { [1] = sym_member_expression, }, - [68] = { + [67] = { [1] = alias_sym_type_identifier, [2] = alias_sym_interface_body, }, - [70] = { + [69] = { [2] = alias_sym_property_identifier, }, - [72] = { + [71] = { [2] = alias_sym_property_identifier, }, - [83] = { + [82] = { [0] = sym_member_expression, [2] = alias_sym_property_identifier, }, - [84] = { + [83] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [106] = { + [105] = { [1] = alias_sym_type_identifier, }, - [107] = { + [106] = { [1] = alias_sym_type_identifier, }, - [115] = { + [114] = { [0] = alias_sym_type_identifier, }, - [116] = { + [115] = { [1] = alias_sym_type_identifier, }, - [117] = { + [116] = { [1] = anon_sym_unique, }, - [121] = { + [120] = { [1] = sym_identifier, }, - [128] = { + [127] = { [1] = sym_identifier, }, - [131] = { + [130] = { [1] = alias_sym_type_identifier, }, - [132] = { + [131] = { [1] = alias_sym_type_identifier, }, - [136] = { + [135] = { [0] = alias_sym_type_identifier, }, - [137] = { + [136] = { [1] = sym_member_expression, }, - [138] = { + [137] = { [1] = sym_member_expression, }, - [139] = { + [138] = { [2] = alias_sym_type_identifier, }, - [140] = { + [139] = { [1] = alias_sym_type_identifier, }, - [142] = { + [141] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [143] = { + [142] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [147] = { + [146] = { [2] = alias_sym_type_identifier, }, - [152] = { + [151] = { [1] = alias_sym_type_identifier, }, - [154] = { + [153] = { [0] = sym_identifier, }, - [166] = { + [165] = { [1] = alias_sym_type_identifier, }, - [173] = { + [172] = { [2] = alias_sym_type_identifier, }, - [175] = { + [174] = { [2] = alias_sym_property_identifier, }, - [177] = { + [176] = { [2] = alias_sym_property_identifier, }, - [182] = { + [181] = { [1] = alias_sym_type_identifier, }, - [184] = { + [183] = { [1] = sym_member_expression, }, - [185] = { + [184] = { [2] = alias_sym_type_identifier, }, - [186] = { + [185] = { [2] = alias_sym_type_identifier, }, - [187] = { + [186] = { [1] = alias_sym_type_identifier, }, - [189] = { + [188] = { [1] = alias_sym_type_identifier, [4] = alias_sym_interface_body, }, - [192] = { + [191] = { [0] = sym_identifier, }, - [194] = { + [193] = { [2] = alias_sym_type_identifier, }, - [195] = { + [194] = { [2] = alias_sym_type_identifier, }, - [197] = { + [196] = { [3] = alias_sym_type_identifier, }, - [199] = { + [198] = { [1] = alias_sym_type_identifier, }, - [201] = { + [200] = { [1] = sym_identifier, }, - [202] = { + [201] = { [1] = sym_identifier, }, - [207] = { + [206] = { [0] = alias_sym_type_identifier, }, - [225] = { + [224] = { [2] = alias_sym_property_identifier, }, - [230] = { + [229] = { [2] = alias_sym_type_identifier, }, - [235] = { + [234] = { [2] = alias_sym_type_identifier, }, - [236] = { + [235] = { [3] = alias_sym_type_identifier, }, - [237] = { + [236] = { [3] = alias_sym_type_identifier, }, - [271] = { + [270] = { [3] = alias_sym_property_identifier, }, - [272] = { + [271] = { [3] = alias_sym_type_identifier, }, - [281] = { + [280] = { [1] = sym_identifier, }, - [282] = { + [281] = { [0] = alias_sym_type_identifier, }, - [313] = { + [312] = { [2] = sym_identifier, }, - [330] = { + [329] = { [3] = sym_identifier, }, }; @@ -4709,23 +4659,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 18, - [19] = 17, - [20] = 14, - [21] = 14, + [18] = 16, + [19] = 16, + [20] = 17, + [21] = 16, [22] = 17, - [23] = 14, - [24] = 17, + [23] = 17, + [24] = 16, [25] = 17, - [26] = 14, + [26] = 16, [27] = 17, - [28] = 14, - [29] = 14, - [30] = 17, + [28] = 17, + [29] = 16, + [30] = 30, [31] = 31, [32] = 32, [33] = 33, - [34] = 32, + [34] = 34, [35] = 35, [36] = 36, [37] = 37, @@ -4735,49 +4685,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 44, + [44] = 31, [45] = 45, - [46] = 45, - [47] = 33, - [48] = 32, - [49] = 36, - [50] = 44, - [51] = 51, - [52] = 52, + [46] = 32, + [47] = 39, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 34, + [52] = 33, [53] = 35, - [54] = 37, + [54] = 36, [55] = 38, - [56] = 39, - [57] = 40, - [58] = 41, - [59] = 42, - [60] = 43, - [61] = 51, - [62] = 52, - [63] = 52, - [64] = 52, - [65] = 52, - [66] = 31, - [67] = 52, - [68] = 52, - [69] = 52, - [70] = 52, - [71] = 52, - [72] = 45, - [73] = 33, - [74] = 36, - [75] = 44, - [76] = 51, - [77] = 31, - [78] = 35, - [79] = 37, - [80] = 38, - [81] = 39, - [82] = 40, - [83] = 41, - [84] = 42, - [85] = 43, - [86] = 86, + [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, [87] = 87, [88] = 87, [89] = 87, @@ -4785,80 +4735,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [91] = 91, [92] = 92, [93] = 93, - [94] = 93, - [95] = 95, + [94] = 94, + [95] = 91, [96] = 96, [97] = 97, - [98] = 96, - [99] = 99, - [100] = 93, + [98] = 98, + [99] = 91, + [100] = 97, [101] = 101, - [102] = 102, - [103] = 102, + [102] = 101, + [103] = 103, [104] = 101, - [105] = 105, + [105] = 101, [106] = 101, [107] = 107, - [108] = 101, - [109] = 101, - [110] = 110, - [111] = 107, - [112] = 110, - [113] = 107, - [114] = 114, - [115] = 107, - [116] = 107, - [117] = 117, - [118] = 117, - [119] = 114, - [120] = 110, - [121] = 107, - [122] = 117, - [123] = 105, + [108] = 108, + [109] = 109, + [110] = 109, + [111] = 103, + [112] = 112, + [113] = 113, + [114] = 108, + [115] = 113, + [116] = 103, + [117] = 103, + [118] = 108, + [119] = 113, + [120] = 103, + [121] = 103, + [122] = 112, + [123] = 123, [124] = 124, - [125] = 125, + [125] = 107, [126] = 126, - [127] = 107, - [128] = 107, - [129] = 110, + [127] = 127, + [128] = 103, + [129] = 103, [130] = 130, - [131] = 131, - [132] = 114, - [133] = 107, - [134] = 107, - [135] = 107, - [136] = 114, - [137] = 107, - [138] = 102, - [139] = 110, - [140] = 110, - [141] = 107, - [142] = 107, - [143] = 107, - [144] = 110, - [145] = 126, - [146] = 107, - [147] = 110, - [148] = 125, + [131] = 108, + [132] = 109, + [133] = 112, + [134] = 108, + [135] = 112, + [136] = 103, + [137] = 103, + [138] = 108, + [139] = 103, + [140] = 103, + [141] = 123, + [142] = 108, + [143] = 108, + [144] = 103, + [145] = 103, + [146] = 124, + [147] = 103, + [148] = 103, [149] = 149, [150] = 149, [151] = 149, - [152] = 107, - [153] = 110, + [152] = 149, + [153] = 103, [154] = 149, [155] = 149, [156] = 149, [157] = 149, - [158] = 158, - [159] = 149, + [158] = 108, + [159] = 159, [160] = 149, [161] = 161, [162] = 162, [163] = 162, [164] = 162, - [165] = 162, + [165] = 165, [166] = 166, - [167] = 167, + [167] = 162, [168] = 162, [169] = 162, [170] = 162, @@ -4874,24 +4824,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [180] = 173, [181] = 173, [182] = 182, - [183] = 183, - [184] = 184, - [185] = 183, - [186] = 184, - [187] = 184, - [188] = 184, - [189] = 183, - [190] = 183, - [191] = 182, - [192] = 182, - [193] = 193, - [194] = 194, - [195] = 193, - [196] = 182, - [197] = 193, + [183] = 182, + [184] = 182, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 187, + [190] = 188, + [191] = 188, + [192] = 188, + [193] = 187, + [194] = 187, + [195] = 182, + [196] = 185, + [197] = 182, [198] = 182, - [199] = 182, - [200] = 194, + [199] = 185, + [200] = 186, [201] = 182, [202] = 182, [203] = 182, @@ -4899,26 +4849,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 204, [206] = 206, [207] = 207, - [208] = 207, - [209] = 209, - [210] = 209, - [211] = 209, - [212] = 206, - [213] = 207, - [214] = 206, + [208] = 208, + [209] = 207, + [210] = 206, + [211] = 208, + [212] = 208, + [213] = 206, + [214] = 207, [215] = 215, - [216] = 215, - [217] = 215, + [216] = 216, + [217] = 217, [218] = 218, - [219] = 215, - [220] = 215, + [219] = 219, + [220] = 220, [221] = 215, - [222] = 222, + [222] = 215, [223] = 223, - [224] = 224, - [225] = 225, - [226] = 222, - [227] = 227, + [224] = 215, + [225] = 215, + [226] = 226, + [227] = 215, [228] = 228, [229] = 229, [230] = 230, @@ -4927,7 +4877,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [233] = 233, [234] = 234, [235] = 235, - [236] = 230, + [236] = 236, [237] = 237, [238] = 238, [239] = 239, @@ -4938,164 +4888,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [244] = 244, [245] = 245, [246] = 246, - [247] = 244, + [247] = 247, [248] = 248, [249] = 249, [250] = 250, [251] = 251, [252] = 252, [253] = 253, - [254] = 254, + [254] = 226, [255] = 255, - [256] = 256, - [257] = 257, - [258] = 222, - [259] = 242, - [260] = 260, - [261] = 261, + [256] = 255, + [257] = 255, + [258] = 258, + [259] = 259, + [260] = 259, + [261] = 226, [262] = 262, - [263] = 244, + [263] = 262, [264] = 264, [265] = 265, [266] = 266, - [267] = 222, - [268] = 222, - [269] = 222, - [270] = 270, - [271] = 270, - [272] = 270, - [273] = 270, - [274] = 274, - [275] = 222, - [276] = 270, - [277] = 270, - [278] = 222, - [279] = 222, - [280] = 222, - [281] = 270, - [282] = 282, - [283] = 283, - [284] = 283, - [285] = 285, - [286] = 283, - [287] = 283, - [288] = 288, - [289] = 289, - [290] = 283, - [291] = 283, - [292] = 283, - [293] = 293, - [294] = 294, - [295] = 285, - [296] = 282, - [297] = 283, - [298] = 283, - [299] = 283, + [267] = 266, + [268] = 268, + [269] = 269, + [270] = 226, + [271] = 266, + [272] = 226, + [273] = 226, + [274] = 269, + [275] = 275, + [276] = 226, + [277] = 226, + [278] = 266, + [279] = 226, + [280] = 266, + [281] = 226, + [282] = 266, + [283] = 266, + [284] = 284, + [285] = 268, + [286] = 286, + [287] = 286, + [288] = 286, + [289] = 286, + [290] = 290, + [291] = 291, + [292] = 286, + [293] = 286, + [294] = 286, + [295] = 286, + [296] = 286, + [297] = 291, + [298] = 286, + [299] = 286, [300] = 300, - [301] = 283, - [302] = 283, - [303] = 283, - [304] = 283, - [305] = 300, + [301] = 286, + [302] = 286, + [303] = 303, + [304] = 304, + [305] = 286, [306] = 306, [307] = 307, [308] = 308, - [309] = 309, - [310] = 307, + [309] = 306, + [310] = 310, [311] = 311, [312] = 312, - [313] = 312, - [314] = 312, - [315] = 315, - [316] = 307, + [313] = 311, + [314] = 314, + [315] = 306, + [316] = 311, [317] = 317, [318] = 318, - [319] = 317, + [319] = 319, [320] = 320, - [321] = 320, + [321] = 321, [322] = 318, - [323] = 318, - [324] = 324, - [325] = 324, - [326] = 326, - [327] = 317, - [328] = 324, + [323] = 319, + [324] = 317, + [325] = 320, + [326] = 318, + [327] = 319, + [328] = 317, [329] = 320, [330] = 330, [331] = 331, [332] = 332, - [333] = 333, + [333] = 330, [334] = 334, - [335] = 333, + [335] = 335, [336] = 336, - [337] = 332, + [337] = 337, [338] = 338, [339] = 339, - [340] = 340, - [341] = 336, - [342] = 332, - [343] = 338, - [344] = 339, - [345] = 340, - [346] = 333, - [347] = 336, + [340] = 330, + [341] = 332, + [342] = 342, + [343] = 343, + [344] = 331, + [345] = 330, + [346] = 346, + [347] = 347, [348] = 348, - [349] = 333, + [349] = 349, [350] = 350, - [351] = 351, + [351] = 343, [352] = 352, - [353] = 353, - [354] = 333, - [355] = 336, - [356] = 336, - [357] = 332, - [358] = 333, - [359] = 336, + [353] = 330, + [354] = 342, + [355] = 331, + [356] = 346, + [357] = 347, + [358] = 348, + [359] = 342, [360] = 330, - [361] = 332, - [362] = 338, - [363] = 339, - [364] = 340, - [365] = 338, - [366] = 366, - [367] = 339, - [368] = 340, - [369] = 369, - [370] = 340, - [371] = 371, - [372] = 332, - [373] = 373, - [374] = 374, - [375] = 336, - [376] = 376, - [377] = 338, - [378] = 338, - [379] = 333, - [380] = 339, - [381] = 336, - [382] = 332, - [383] = 338, - [384] = 339, - [385] = 332, - [386] = 340, - [387] = 340, - [388] = 388, - [389] = 333, - [390] = 339, - [391] = 340, - [392] = 338, - [393] = 351, - [394] = 353, - [395] = 395, - [396] = 333, - [397] = 336, - [398] = 332, - [399] = 338, - [400] = 339, - [401] = 340, - [402] = 339, + [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, + [395] = 347, + [396] = 348, + [397] = 350, + [398] = 398, + [399] = 342, + [400] = 400, + [401] = 401, + [402] = 402, [403] = 403, - [404] = 404, + [404] = 348, [405] = 405, [406] = 406, [407] = 407, @@ -5103,7 +5053,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [409] = 409, [410] = 410, [411] = 411, - [412] = 412, + [412] = 409, [413] = 413, [414] = 414, [415] = 415, @@ -5116,239 +5066,239 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [422] = 422, [423] = 423, [424] = 424, - [425] = 425, + [425] = 414, [426] = 426, [427] = 427, - [428] = 407, - [429] = 408, - [430] = 409, - [431] = 410, - [432] = 405, - [433] = 411, - [434] = 412, - [435] = 413, - [436] = 414, - [437] = 416, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 418, + [433] = 410, + [434] = 427, + [435] = 435, + [436] = 436, + [437] = 411, + [438] = 405, + [439] = 435, + [440] = 407, + [441] = 413, + [442] = 428, [443] = 443, - [444] = 438, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 438, - [449] = 449, - [450] = 447, - [451] = 438, - [452] = 443, - [453] = 441, - [454] = 442, - [455] = 443, - [456] = 456, - [457] = 443, - [458] = 446, - [459] = 459, - [460] = 443, - [461] = 443, - [462] = 462, - [463] = 443, - [464] = 464, - [465] = 417, - [466] = 418, - [467] = 422, - [468] = 423, - [469] = 469, - [470] = 424, - [471] = 471, - [472] = 425, - [473] = 473, - [474] = 427, - [475] = 407, - [476] = 408, - [477] = 409, - [478] = 410, - [479] = 405, - [480] = 411, - [481] = 412, - [482] = 413, - [483] = 414, - [484] = 416, - [485] = 420, - [486] = 441, - [487] = 442, - [488] = 456, - [489] = 443, - [490] = 418, - [491] = 445, - [492] = 417, - [493] = 418, - [494] = 422, - [495] = 423, - [496] = 424, - [497] = 425, - [498] = 427, - [499] = 407, - [500] = 408, - [501] = 409, - [502] = 410, - [503] = 405, - [504] = 411, - [505] = 412, - [506] = 413, - [507] = 414, - [508] = 416, - [509] = 422, - [510] = 464, - [511] = 441, - [512] = 442, - [513] = 443, - [514] = 445, - [515] = 446, - [516] = 447, - [517] = 464, - [518] = 418, - [519] = 422, - [520] = 423, - [521] = 424, - [522] = 471, - [523] = 425, - [524] = 427, - [525] = 407, - [526] = 408, - [527] = 409, - [528] = 471, - [529] = 405, - [530] = 411, - [531] = 412, - [532] = 413, - [533] = 414, - [534] = 417, + [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] = 441, - [537] = 442, - [538] = 443, - [539] = 445, - [540] = 417, - [541] = 418, - [542] = 422, - [543] = 423, - [544] = 424, - [545] = 425, - [546] = 427, - [547] = 407, - [548] = 408, - [549] = 409, - [550] = 410, - [551] = 405, - [552] = 411, - [553] = 412, - [554] = 413, - [555] = 414, - [556] = 416, - [557] = 441, - [558] = 442, - [559] = 443, - [560] = 445, - [561] = 446, - [562] = 447, - [563] = 464, - [564] = 471, - [565] = 418, + [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] = 425, - [570] = 427, - [571] = 407, - [572] = 408, - [573] = 409, - [574] = 410, - [575] = 405, - [576] = 411, - [577] = 412, - [578] = 413, - [579] = 414, - [580] = 416, - [581] = 441, - [582] = 442, - [583] = 443, - [584] = 445, - [585] = 445, - [586] = 446, - [587] = 447, - [588] = 464, - [589] = 471, - [590] = 418, - [591] = 422, - [592] = 423, - [593] = 424, - [594] = 425, - [595] = 427, - [596] = 407, - [597] = 408, - [598] = 409, - [599] = 410, - [600] = 405, - [601] = 411, - [602] = 412, - [603] = 413, - [604] = 414, - [605] = 416, - [606] = 441, - [607] = 442, - [608] = 443, - [609] = 423, - [610] = 445, - [611] = 446, - [612] = 447, - [613] = 464, - [614] = 471, - [615] = 424, - [616] = 446, - [617] = 447, - [618] = 417, - [619] = 619, - [620] = 417, - [621] = 418, - [622] = 422, - [623] = 423, - [624] = 424, - [625] = 425, - [626] = 427, - [627] = 407, - [628] = 408, - [629] = 409, - [630] = 410, - [631] = 405, - [632] = 411, - [633] = 412, - [634] = 413, - [635] = 414, - [636] = 416, - [637] = 441, - [638] = 442, - [639] = 443, - [640] = 445, - [641] = 446, - [642] = 447, - [643] = 471, - [644] = 425, - [645] = 645, - [646] = 426, - [647] = 464, - [648] = 471, - [649] = 446, - [650] = 447, - [651] = 417, - [652] = 417, - [653] = 464, - [654] = 427, - [655] = 471, - [656] = 464, - [657] = 410, + [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, + [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, + [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, + [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, [658] = 658, [659] = 658, [660] = 658, @@ -5365,115 +5315,115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [671] = 670, [672] = 670, [673] = 673, - [674] = 674, - [675] = 673, - [676] = 674, - [677] = 264, - [678] = 232, - [679] = 674, - [680] = 673, - [681] = 681, - [682] = 682, - [683] = 681, + [674] = 673, + [675] = 675, + [676] = 675, + [677] = 673, + [678] = 675, + [679] = 679, + [680] = 248, + [681] = 241, + [682] = 679, + [683] = 679, [684] = 684, [685] = 685, - [686] = 681, + [686] = 686, [687] = 687, [688] = 688, [689] = 689, - [690] = 689, + [690] = 690, [691] = 691, - [692] = 692, - [693] = 692, - [694] = 692, + [692] = 691, + [693] = 689, + [694] = 690, [695] = 691, - [696] = 691, - [697] = 689, + [696] = 689, + [697] = 690, [698] = 698, - [699] = 699, + [699] = 698, [700] = 700, - [701] = 699, - [702] = 698, + [701] = 700, + [702] = 702, [703] = 700, - [704] = 698, - [705] = 705, - [706] = 705, - [707] = 698, - [708] = 705, - [709] = 698, - [710] = 698, - [711] = 711, + [704] = 704, + [705] = 700, + [706] = 700, + [707] = 704, + [708] = 704, + [709] = 700, + [710] = 702, + [711] = 700, [712] = 712, - [713] = 248, - [714] = 714, - [715] = 698, - [716] = 698, - [717] = 250, - [718] = 698, - [719] = 699, - [720] = 720, - [721] = 262, - [722] = 235, - [723] = 723, - [724] = 249, - [725] = 248, - [726] = 234, - [727] = 250, - [728] = 698, - [729] = 698, - [730] = 720, - [731] = 720, - [732] = 698, - [733] = 249, - [734] = 234, - [735] = 735, - [736] = 698, - [737] = 712, - [738] = 224, - [739] = 227, - [740] = 698, - [741] = 698, - [742] = 698, - [743] = 700, - [744] = 744, - [745] = 745, - [746] = 698, - [747] = 225, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 749, - [753] = 753, - [754] = 749, + [713] = 713, + [714] = 700, + [715] = 249, + [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, + [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, [755] = 755, [756] = 756, - [757] = 757, + [757] = 229, [758] = 758, - [759] = 749, + [759] = 759, [760] = 760, - [761] = 761, - [762] = 762, - [763] = 749, + [761] = 760, + [762] = 760, + [763] = 760, [764] = 764, [765] = 765, - [766] = 749, + [766] = 766, [767] = 767, [768] = 768, - [769] = 769, - [770] = 252, - [771] = 749, - [772] = 253, + [769] = 239, + [770] = 770, + [771] = 771, + [772] = 772, [773] = 773, [774] = 774, - [775] = 749, + [775] = 775, [776] = 776, - [777] = 749, + [777] = 777, [778] = 778, [779] = 779, [780] = 780, - [781] = 781, - [782] = 782, + [781] = 216, + [782] = 760, [783] = 783, [784] = 784, [785] = 785, @@ -5483,36 +5433,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [789] = 789, [790] = 790, [791] = 791, - [792] = 786, + [792] = 792, [793] = 793, [794] = 794, - [795] = 795, + [795] = 784, [796] = 796, [797] = 797, [798] = 798, [799] = 799, - [800] = 800, - [801] = 801, + [800] = 794, + [801] = 784, [802] = 802, [803] = 803, - [804] = 804, - [805] = 805, - [806] = 786, + [804] = 794, + [805] = 784, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, - [810] = 256, + [810] = 810, [811] = 811, [812] = 812, [813] = 813, [814] = 814, [815] = 815, [816] = 816, - [817] = 786, + [817] = 817, [818] = 818, [819] = 819, [820] = 820, - [821] = 786, + [821] = 821, [822] = 822, [823] = 823, [824] = 824, @@ -5525,14 +5475,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [831] = 831, [832] = 832, [833] = 833, - [834] = 834, + [834] = 794, [835] = 835, [836] = 836, [837] = 837, [838] = 838, [839] = 839, - [840] = 262, - [841] = 235, + [840] = 840, + [841] = 841, [842] = 842, [843] = 843, [844] = 844, @@ -5544,9 +5494,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [850] = 850, [851] = 851, [852] = 852, - [853] = 853, + [853] = 234, [854] = 854, - [855] = 855, + [855] = 252, [856] = 856, [857] = 857, [858] = 858, @@ -5555,12 +5505,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 861, [862] = 862, [863] = 863, - [864] = 864, + [864] = 784, [865] = 865, [866] = 866, [867] = 867, [868] = 868, - [869] = 260, + [869] = 869, [870] = 870, [871] = 871, [872] = 872, @@ -5595,73 +5545,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [901] = 901, [902] = 902, [903] = 903, - [904] = 904, + [904] = 245, [905] = 905, - [906] = 906, + [906] = 794, [907] = 907, - [908] = 906, - [909] = 906, - [910] = 907, - [911] = 906, - [912] = 906, - [913] = 907, - [914] = 907, - [915] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 247, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 761, + [919] = 919, [920] = 920, - [921] = 753, - [922] = 922, + [921] = 918, + [922] = 919, [923] = 923, [924] = 924, [925] = 925, [926] = 926, - [927] = 927, + [927] = 919, [928] = 928, [929] = 929, [930] = 930, [931] = 931, - [932] = 931, - [933] = 931, + [932] = 919, + [933] = 933, [934] = 934, - [935] = 931, - [936] = 934, - [937] = 937, - [938] = 934, - [939] = 937, - [940] = 937, - [941] = 934, - [942] = 931, - [943] = 931, - [944] = 934, - [945] = 931, - [946] = 934, - [947] = 934, + [935] = 918, + [936] = 936, + [937] = 923, + [938] = 923, + [939] = 919, + [940] = 923, + [941] = 919, + [942] = 923, + [943] = 923, + [944] = 755, + [945] = 919, + [946] = 756, + [947] = 923, [948] = 948, [949] = 949, [950] = 950, - [951] = 951, - [952] = 951, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 954, - [957] = 954, - [958] = 951, - [959] = 954, - [960] = 951, - [961] = 951, - [962] = 954, - [963] = 951, - [964] = 955, - [965] = 955, - [966] = 954, - [967] = 954, - [968] = 955, - [969] = 951, - [970] = 955, + [951] = 949, + [952] = 952, + [953] = 950, + [954] = 949, + [955] = 949, + [956] = 952, + [957] = 957, + [958] = 958, + [959] = 952, + [960] = 960, + [961] = 949, + [962] = 952, + [963] = 949, + [964] = 952, + [965] = 952, + [966] = 950, + [967] = 952, + [968] = 950, + [969] = 949, + [970] = 950, [971] = 971, [972] = 972, [973] = 973, @@ -5673,149 +5623,149 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [979] = 979, [980] = 980, [981] = 981, - [982] = 980, + [982] = 982, [983] = 983, [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, + [985] = 982, + [986] = 972, + [987] = 973, [988] = 988, [989] = 989, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 973, - [994] = 974, + [990] = 974, + [991] = 975, + [992] = 980, + [993] = 981, + [994] = 994, [995] = 995, - [996] = 996, - [997] = 975, - [998] = 976, - [999] = 988, - [1000] = 989, - [1001] = 977, + [996] = 976, + [997] = 972, + [998] = 973, + [999] = 974, + [1000] = 975, + [1001] = 976, [1002] = 978, - [1003] = 979, - [1004] = 990, - [1005] = 980, - [1006] = 991, - [1007] = 992, - [1008] = 988, - [1009] = 989, - [1010] = 990, - [1011] = 995, - [1012] = 996, - [1013] = 991, - [1014] = 992, - [1015] = 979, + [1003] = 978, + [1004] = 983, + [1005] = 984, + [1006] = 971, + [1007] = 988, + [1008] = 989, + [1009] = 1009, + [1010] = 980, + [1011] = 1011, + [1012] = 1012, + [1013] = 981, + [1014] = 1014, + [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 995, - [1019] = 996, - [1020] = 1020, + [1018] = 994, + [1019] = 995, + [1020] = 994, [1021] = 1021, - [1022] = 1022, - [1023] = 987, - [1024] = 1024, - [1025] = 1025, - [1026] = 973, - [1027] = 974, - [1028] = 1020, - [1029] = 1021, - [1030] = 973, - [1031] = 974, + [1022] = 995, + [1023] = 974, + [1024] = 980, + [1025] = 981, + [1026] = 975, + [1027] = 972, + [1028] = 973, + [1029] = 976, + [1030] = 978, + [1031] = 994, [1032] = 995, - [1033] = 996, - [1034] = 975, - [1035] = 976, - [1036] = 1036, - [1037] = 977, - [1038] = 978, - [1039] = 972, - [1040] = 979, - [1041] = 980, - [1042] = 995, - [1043] = 996, - [1044] = 975, - [1045] = 976, - [1046] = 1046, - [1047] = 977, - [1048] = 978, - [1049] = 979, - [1050] = 980, + [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, + [1050] = 1050, [1051] = 1051, - [1052] = 1025, - [1053] = 1053, - [1054] = 1054, - [1055] = 988, - [1056] = 989, - [1057] = 990, - [1058] = 991, - [1059] = 991, - [1060] = 972, - [1061] = 992, - [1062] = 973, - [1063] = 974, - [1064] = 1064, - [1065] = 1065, - [1066] = 973, - [1067] = 974, - [1068] = 995, - [1069] = 996, + [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] = 975, - [1072] = 976, - [1073] = 1025, - [1074] = 977, - [1075] = 972, - [1076] = 978, - [1077] = 979, - [1078] = 980, - [1079] = 988, - [1080] = 989, - [1081] = 990, - [1082] = 991, - [1083] = 992, - [1084] = 1025, - [1085] = 972, + [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] = 996, - [1088] = 1025, - [1089] = 1025, - [1090] = 973, - [1091] = 974, - [1092] = 975, - [1093] = 976, - [1094] = 988, - [1095] = 989, - [1096] = 990, - [1097] = 991, - [1098] = 992, - [1099] = 972, - [1100] = 986, - [1101] = 977, - [1102] = 978, - [1103] = 1025, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 985, - [1108] = 979, - [1109] = 975, - [1110] = 976, - [1111] = 980, - [1112] = 977, - [1113] = 978, - [1114] = 972, - [1115] = 988, - [1116] = 989, - [1117] = 1036, - [1118] = 990, - [1119] = 971, - [1120] = 971, - [1121] = 971, - [1122] = 971, - [1123] = 971, - [1124] = 992, + [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, [1125] = 1125, [1126] = 1125, [1127] = 1125, @@ -5830,291 +5780,291 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1136] = 1125, [1137] = 1137, [1138] = 1138, - [1139] = 1137, + [1139] = 1138, [1140] = 1140, - [1141] = 1138, + [1141] = 1140, [1142] = 1138, - [1143] = 1137, - [1144] = 1140, - [1145] = 1140, + [1143] = 1140, + [1144] = 1137, + [1145] = 1137, [1146] = 1146, [1147] = 1147, - [1148] = 1146, + [1148] = 1147, [1149] = 1149, - [1150] = 1147, + [1150] = 1146, [1151] = 1151, [1152] = 1151, [1153] = 1147, - [1154] = 1147, + [1154] = 1154, [1155] = 1155, - [1156] = 1156, + [1156] = 1149, [1157] = 1157, - [1158] = 1147, - [1159] = 1156, + [1158] = 1157, + [1159] = 1147, [1160] = 1155, [1161] = 1147, - [1162] = 1155, - [1163] = 1157, - [1164] = 1157, - [1165] = 1149, - [1166] = 1156, + [1162] = 1157, + [1163] = 1147, + [1164] = 1154, + [1165] = 1154, + [1166] = 1155, [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1170, + [1170] = 1167, [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1147, + [1176] = 1167, [1177] = 1177, [1178] = 1178, - [1179] = 1168, - [1180] = 1147, - [1181] = 1181, + [1179] = 1179, + [1180] = 1180, + [1181] = 1147, [1182] = 1182, - [1183] = 1183, - [1184] = 1168, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1147, - [1189] = 1185, + [1183] = 1147, + [1184] = 1184, + [1185] = 756, + [1186] = 1146, + [1187] = 1175, + [1188] = 1188, + [1189] = 1189, [1190] = 1190, - [1191] = 1185, - [1192] = 1147, + [1191] = 1191, + [1192] = 1191, [1193] = 1147, - [1194] = 1194, + [1194] = 1189, [1195] = 1195, - [1196] = 753, - [1197] = 1146, - [1198] = 1195, - [1199] = 1195, - [1200] = 1200, - [1201] = 761, - [1202] = 1190, - [1203] = 1147, - [1204] = 1190, - [1205] = 1205, - [1206] = 1178, - [1207] = 1194, - [1208] = 1147, - [1209] = 1178, - [1210] = 1210, - [1211] = 1178, - [1212] = 1212, - [1213] = 1213, - [1214] = 1178, - [1215] = 1215, + [1196] = 1188, + [1197] = 1188, + [1198] = 1147, + [1199] = 1190, + [1200] = 1147, + [1201] = 1201, + [1202] = 1202, + [1203] = 1190, + [1204] = 1204, + [1205] = 1191, + [1206] = 1147, + [1207] = 1147, + [1208] = 755, + [1209] = 1147, + [1210] = 1147, + [1211] = 1147, + [1212] = 1149, + [1213] = 1175, + [1214] = 1214, + [1215] = 1175, [1216] = 1147, - [1217] = 1147, - [1218] = 1147, - [1219] = 1147, - [1220] = 1149, - [1221] = 1181, - [1222] = 1147, - [1223] = 1212, - [1224] = 1212, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1175, + [1221] = 1168, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, [1225] = 1225, [1226] = 1225, [1227] = 1227, - [1228] = 1178, - [1229] = 1229, - [1230] = 1225, - [1231] = 1231, - [1232] = 1232, - [1233] = 1178, - [1234] = 1234, - [1235] = 1225, - [1236] = 1205, - [1237] = 1237, - [1238] = 1238, - [1239] = 1205, - [1240] = 1178, - [1241] = 1225, - [1242] = 1242, + [1228] = 1224, + [1229] = 1224, + [1230] = 1175, + [1231] = 1222, + [1232] = 1175, + [1233] = 1224, + [1234] = 1227, + [1235] = 1224, + [1236] = 1175, + [1237] = 1224, + [1238] = 1202, + [1239] = 1239, + [1240] = 1224, + [1241] = 1224, + [1242] = 1224, [1243] = 1243, - [1244] = 1227, - [1245] = 1225, - [1246] = 1225, - [1247] = 1243, - [1248] = 1248, - [1249] = 1249, - [1250] = 1178, - [1251] = 1225, - [1252] = 1225, + [1244] = 1219, + [1245] = 1245, + [1246] = 1175, + [1247] = 1247, + [1248] = 1147, + [1249] = 1219, + [1250] = 1250, + [1251] = 1223, + [1252] = 1202, [1253] = 1253, - [1254] = 1249, - [1255] = 1229, - [1256] = 1256, - [1257] = 1257, - [1258] = 1173, - [1259] = 1210, - [1260] = 1237, + [1254] = 1202, + [1255] = 1255, + [1256] = 1255, + [1257] = 1173, + [1258] = 1214, + [1259] = 1259, + [1260] = 1173, [1261] = 1261, - [1262] = 1173, - [1263] = 1174, - [1264] = 1210, + [1262] = 1195, + [1263] = 1202, + [1264] = 1175, [1265] = 1265, - [1266] = 1178, - [1267] = 1267, - [1268] = 1205, - [1269] = 1174, + [1266] = 1171, + [1267] = 1173, + [1268] = 1265, + [1269] = 1243, [1270] = 1270, - [1271] = 1200, - [1272] = 1178, + [1271] = 1175, + [1272] = 1175, [1273] = 1273, - [1274] = 1237, - [1275] = 1178, - [1276] = 1173, - [1277] = 1273, - [1278] = 1174, + [1274] = 1274, + [1275] = 1214, + [1276] = 1202, + [1277] = 1261, + [1278] = 1171, [1279] = 1261, - [1280] = 1280, - [1281] = 1205, - [1282] = 1205, - [1283] = 1273, - [1284] = 1270, - [1285] = 1170, - [1286] = 1178, - [1287] = 1210, - [1288] = 753, - [1289] = 1289, - [1290] = 1249, - [1291] = 1178, - [1292] = 1205, - [1293] = 1293, - [1294] = 1169, - [1295] = 1237, - [1296] = 1243, - [1297] = 1243, - [1298] = 1243, - [1299] = 1293, - [1300] = 1234, - [1301] = 1171, - [1302] = 1249, - [1303] = 761, - [1304] = 1304, - [1305] = 1175, - [1306] = 1304, - [1307] = 1210, - [1308] = 1172, - [1309] = 1304, - [1310] = 1293, - [1311] = 1177, - [1312] = 1167, - [1313] = 1289, - [1314] = 1249, - [1315] = 1249, - [1316] = 1205, - [1317] = 1200, - [1318] = 1205, - [1319] = 1243, - [1320] = 1210, - [1321] = 1174, - [1322] = 1322, - [1323] = 1253, - [1324] = 1173, - [1325] = 1174, - [1326] = 1326, - [1327] = 1210, - [1328] = 1205, - [1329] = 1243, - [1330] = 1200, - [1331] = 1173, - [1332] = 1257, - [1333] = 1243, - [1334] = 1210, - [1335] = 1335, - [1336] = 1200, - [1337] = 1210, - [1338] = 1249, - [1339] = 1339, - [1340] = 1340, - [1341] = 1249, - [1342] = 1326, - [1343] = 1174, - [1344] = 1229, - [1345] = 1243, - [1346] = 1346, - [1347] = 1347, - [1348] = 1243, - [1349] = 1210, - [1350] = 1249, - [1351] = 1346, - [1352] = 1346, - [1353] = 1249, + [1280] = 1243, + [1281] = 1171, + [1282] = 1282, + [1283] = 1222, + [1284] = 1284, + [1285] = 1214, + [1286] = 1243, + [1287] = 1174, + [1288] = 756, + [1289] = 1195, + [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, + [1322] = 1171, + [1323] = 1173, + [1324] = 1214, + [1325] = 1325, + [1326] = 1173, + [1327] = 1202, + [1328] = 1273, + [1329] = 1222, + [1330] = 1171, + [1331] = 1331, + [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, [1354] = 1354, - [1355] = 1346, - [1356] = 1356, - [1357] = 1357, - [1358] = 1243, - [1359] = 1346, - [1360] = 1173, - [1361] = 1361, - [1362] = 1249, - [1363] = 1227, - [1364] = 1249, - [1365] = 1200, - [1366] = 1243, - [1367] = 1346, - [1368] = 1243, - [1369] = 1261, - [1370] = 1243, - [1371] = 1243, - [1372] = 1243, - [1373] = 1200, - [1374] = 1234, - [1375] = 1322, - [1376] = 1335, - [1377] = 1200, - [1378] = 1249, - [1379] = 1249, - [1380] = 1249, - [1381] = 1249, - [1382] = 1382, + [1355] = 1223, + [1356] = 1173, + [1357] = 1345, + [1358] = 1225, + [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, [1383] = 1383, - [1384] = 1382, - [1385] = 1385, + [1384] = 1384, + [1385] = 1383, [1386] = 1386, - [1387] = 1257, - [1388] = 1385, - [1389] = 1389, - [1390] = 1347, - [1391] = 1389, - [1392] = 1386, - [1393] = 1382, - [1394] = 1383, - [1395] = 1385, - [1396] = 1385, - [1397] = 1389, - [1398] = 1382, - [1399] = 1243, - [1400] = 1383, - [1401] = 1383, + [1387] = 1387, + [1388] = 1386, + [1389] = 1387, + [1390] = 1387, + [1391] = 1387, + [1392] = 1392, + [1393] = 1387, + [1394] = 1386, + [1395] = 1383, + [1396] = 1387, + [1397] = 1392, + [1398] = 1392, + [1399] = 1222, + [1400] = 1387, + [1401] = 1392, [1402] = 1386, - [1403] = 1386, - [1404] = 1383, - [1405] = 1389, - [1406] = 1382, - [1407] = 1382, - [1408] = 1383, - [1409] = 1382, - [1410] = 1383, - [1411] = 1249, - [1412] = 1386, - [1413] = 1200, - [1414] = 1200, - [1415] = 1383, - [1416] = 1382, - [1417] = 1385, + [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, - [1419] = 1383, - [1420] = 1389, - [1421] = 1385, - [1422] = 1389, - [1423] = 1382, + [1419] = 1384, + [1420] = 1392, + [1421] = 1384, + [1422] = 1384, + [1423] = 1225, [1424] = 1424, [1425] = 1424, [1426] = 1424, @@ -6128,89 +6078,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1434] = 1433, [1435] = 1433, [1436] = 1433, - [1437] = 1437, - [1438] = 1433, + [1437] = 1433, + [1438] = 1438, [1439] = 1433, [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 1440, - [1444] = 1442, - [1445] = 1440, - [1446] = 1446, + [1443] = 1442, + [1444] = 1441, + [1445] = 1441, + [1446] = 1440, [1447] = 1440, - [1448] = 1442, - [1449] = 1440, + [1448] = 1448, + [1449] = 1442, [1450] = 1441, - [1451] = 1441, + [1451] = 1440, [1452] = 1442, [1453] = 1441, - [1454] = 1442, - [1455] = 1441, + [1454] = 1440, + [1455] = 1442, [1456] = 1456, [1457] = 1456, [1458] = 1456, - [1459] = 1456, - [1460] = 1460, + [1459] = 1459, + [1460] = 1456, [1461] = 1456, [1462] = 1456, [1463] = 1463, - [1464] = 264, + [1464] = 1464, [1465] = 1465, [1466] = 1466, - [1467] = 1467, - [1468] = 232, + [1467] = 241, + [1468] = 1468, [1469] = 1469, - [1470] = 1470, - [1471] = 264, - [1472] = 1472, - [1473] = 229, - [1474] = 950, - [1475] = 232, - [1476] = 948, + [1470] = 248, + [1471] = 1471, + [1472] = 248, + [1473] = 1473, + [1474] = 948, + [1475] = 1475, + [1476] = 241, [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 1480, - [1481] = 1481, + [1480] = 957, + [1481] = 217, [1482] = 1482, - [1483] = 1483, + [1483] = 958, [1484] = 1484, - [1485] = 949, + [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 225, + [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, [1494] = 1494, - [1495] = 682, + [1495] = 1495, [1496] = 1496, - [1497] = 248, - [1498] = 1498, + [1497] = 219, + [1498] = 223, [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, + [1500] = 216, + [1501] = 219, + [1502] = 223, + [1503] = 216, [1504] = 1504, - [1505] = 1505, - [1506] = 224, + [1505] = 246, + [1506] = 1506, [1507] = 1507, [1508] = 1508, [1509] = 1509, - [1510] = 227, + [1510] = 1510, [1511] = 1511, - [1512] = 225, + [1512] = 1512, [1513] = 1513, - [1514] = 227, + [1514] = 1514, [1515] = 1515, - [1516] = 1516, + [1516] = 684, [1517] = 1517, [1518] = 1518, - [1519] = 684, + [1519] = 1519, [1520] = 1520, [1521] = 1521, [1522] = 1522, @@ -6225,7 +6175,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1534, + [1534] = 686, [1535] = 1535, [1536] = 1536, [1537] = 1537, @@ -6237,20 +6187,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 687, + [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, - [1551] = 224, + [1551] = 1551, [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1555, + [1555] = 249, [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 1559, + [1559] = 687, [1560] = 1560, [1561] = 1561, [1562] = 1562, @@ -6262,7 +6212,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1568] = 1568, [1569] = 1569, [1570] = 1570, - [1571] = 685, + [1571] = 1571, [1572] = 1572, [1573] = 1573, [1574] = 1574, @@ -6274,13 +6224,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1580] = 1580, [1581] = 1581, [1582] = 1582, - [1583] = 1583, + [1583] = 685, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 688, + [1589] = 1589, [1590] = 1590, [1591] = 1591, [1592] = 1592, @@ -6288,7 +6238,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1594] = 1594, [1595] = 1595, [1596] = 1596, - [1597] = 1597, + [1597] = 688, [1598] = 1598, [1599] = 1599, [1600] = 1600, @@ -6299,7 +6249,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 250, + [1608] = 1608, [1609] = 1609, [1610] = 1610, [1611] = 1611, @@ -6307,7 +6257,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1613] = 1613, [1614] = 1614, [1615] = 1615, - [1616] = 1612, + [1616] = 1616, [1617] = 1617, [1618] = 1618, [1619] = 1619, @@ -6319,23 +6269,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1625] = 1625, [1626] = 1626, [1627] = 1627, - [1628] = 1460, + [1628] = 245, [1629] = 1629, - [1630] = 260, + [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1636, - [1637] = 1637, + [1636] = 229, + [1637] = 252, [1638] = 1638, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, + [1639] = 247, + [1640] = 1459, + [1641] = 242, + [1642] = 239, [1643] = 1643, - [1644] = 249, + [1644] = 1644, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -6346,38 +6296,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1652] = 1652, [1653] = 1653, [1654] = 1654, - [1655] = 1612, - [1656] = 1612, + [1655] = 1655, + [1656] = 1656, [1657] = 1657, - [1658] = 252, - [1659] = 1659, + [1658] = 1658, + [1659] = 1617, [1660] = 1660, [1661] = 1661, [1662] = 1662, [1663] = 1663, - [1664] = 235, + [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, [1668] = 1668, [1669] = 1669, - [1670] = 1670, - [1671] = 262, + [1670] = 1617, + [1671] = 1671, [1672] = 1672, [1673] = 1673, [1674] = 1674, [1675] = 1675, [1676] = 1676, [1677] = 1677, - [1678] = 252, - [1679] = 253, + [1678] = 1678, + [1679] = 1679, [1680] = 1680, - [1681] = 234, + [1681] = 1681, [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, - [1686] = 253, + [1686] = 1686, [1687] = 1687, [1688] = 1688, [1689] = 1689, @@ -6385,14 +6335,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1691] = 1691, [1692] = 1692, [1693] = 1693, - [1694] = 1612, - [1695] = 256, + [1694] = 1694, + [1695] = 1695, [1696] = 1696, - [1697] = 1697, - [1698] = 1698, + [1697] = 234, + [1698] = 229, [1699] = 1699, - [1700] = 1700, - [1701] = 1701, + [1700] = 239, + [1701] = 232, [1702] = 1702, [1703] = 1703, [1704] = 1704, @@ -6403,11 +6353,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1709] = 1709, [1710] = 1710, [1711] = 1711, - [1712] = 1712, + [1712] = 1617, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1716, + [1716] = 1617, [1717] = 1717, [1718] = 1718, [1719] = 1719, @@ -6418,889 +6368,889 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1724] = 1724, [1725] = 1725, [1726] = 1726, - [1727] = 1727, - [1728] = 248, - [1729] = 1701, - [1730] = 1470, - [1731] = 256, - [1732] = 1697, - [1733] = 250, + [1727] = 242, + [1728] = 1728, + [1729] = 252, + [1730] = 1726, + [1731] = 1731, + [1732] = 1728, + [1733] = 249, [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1469, + [1735] = 1695, + [1736] = 247, + [1737] = 1737, [1738] = 1738, - [1739] = 1739, - [1740] = 1738, - [1741] = 249, - [1742] = 260, - [1743] = 1735, - [1744] = 235, - [1745] = 1738, - [1746] = 1466, - [1747] = 234, - [1748] = 1735, - [1749] = 1749, - [1750] = 1738, - [1751] = 1692, - [1752] = 1735, - [1753] = 1735, - [1754] = 1754, - [1755] = 262, - [1756] = 1738, - [1757] = 1467, - [1758] = 1726, - [1759] = 1759, - [1760] = 1680, - [1761] = 1716, - [1762] = 1537, - [1763] = 1693, - [1764] = 1764, - [1765] = 1765, - [1766] = 1477, - [1767] = 1478, - [1768] = 1480, - [1769] = 1481, + [1739] = 1726, + [1740] = 245, + [1741] = 1728, + [1742] = 1465, + [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, [1770] = 1770, - [1771] = 1718, - [1772] = 1672, - [1773] = 1700, - [1774] = 950, - [1775] = 1653, - [1776] = 1613, - [1777] = 1618, - [1778] = 1626, - [1779] = 1646, - [1780] = 1659, - [1781] = 1484, - [1782] = 1666, - [1783] = 1677, - [1784] = 1689, - [1785] = 1660, - [1786] = 1708, - [1787] = 1787, - [1788] = 1702, - [1789] = 1610, - [1790] = 1712, - [1791] = 1482, - [1792] = 1472, - [1793] = 1787, - [1794] = 1588, - [1795] = 1479, - [1796] = 1764, - [1797] = 1595, - [1798] = 1692, - [1799] = 1697, - [1800] = 1701, - [1801] = 1486, - [1802] = 1802, - [1803] = 1529, - [1804] = 1566, - [1805] = 1805, - [1806] = 1726, - [1807] = 1529, - [1808] = 1566, - [1809] = 1674, - [1810] = 1712, - [1811] = 1620, - [1812] = 1759, - [1813] = 1634, - [1814] = 1635, - [1815] = 949, - [1816] = 1529, - [1817] = 1787, - [1818] = 1787, - [1819] = 1566, - [1820] = 1759, - [1821] = 1699, - [1822] = 1725, - [1823] = 1787, - [1824] = 1759, - [1825] = 1699, - [1826] = 1725, - [1827] = 1716, - [1828] = 1718, - [1829] = 1672, - [1830] = 1700, - [1831] = 1653, - [1832] = 1613, - [1833] = 1618, - [1834] = 1626, - [1835] = 1646, - [1836] = 1659, - [1837] = 1666, - [1838] = 1677, - [1839] = 1689, - [1840] = 1660, - [1841] = 1708, - [1842] = 1702, - [1843] = 1610, - [1844] = 1674, - [1845] = 1617, - [1846] = 1620, - [1847] = 1634, - [1848] = 1635, - [1849] = 1641, - [1850] = 1850, - [1851] = 948, - [1852] = 1641, - [1853] = 1853, - [1854] = 1680, - [1855] = 1693, - [1856] = 1617, - [1857] = 1604, - [1858] = 1487, - [1859] = 1548, - [1860] = 1549, - [1861] = 1550, - [1862] = 1609, - [1863] = 1552, - [1864] = 1553, - [1865] = 1554, - [1866] = 1555, - [1867] = 1556, - [1868] = 1557, - [1869] = 1558, - [1870] = 1559, - [1871] = 1560, - [1872] = 1562, - [1873] = 1563, - [1874] = 1565, - [1875] = 1567, - [1876] = 1569, - [1877] = 1570, - [1878] = 1547, - [1879] = 685, - [1880] = 1572, - [1881] = 1573, - [1882] = 1575, - [1883] = 1577, - [1884] = 1578, - [1885] = 1579, - [1886] = 1580, - [1887] = 1581, - [1888] = 1583, - [1889] = 1584, - [1890] = 1585, - [1891] = 1586, - [1892] = 1587, - [1893] = 688, - [1894] = 1590, - [1895] = 1592, - [1896] = 1593, - [1897] = 1594, - [1898] = 1596, - [1899] = 1597, - [1900] = 1598, - [1901] = 1599, - [1902] = 1600, - [1903] = 1601, - [1904] = 1602, - [1905] = 1605, - [1906] = 229, - [1907] = 1490, - [1908] = 1908, + [1771] = 1661, + [1772] = 1770, + [1773] = 1720, + [1774] = 1688, + [1775] = 1663, + [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, + [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, + [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] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1722, - [1914] = 1914, - [1915] = 1516, - [1916] = 1916, - [1917] = 1529, - [1918] = 1532, - [1919] = 1566, - [1920] = 682, - [1921] = 1496, - [1922] = 1504, - [1923] = 1498, - [1924] = 1561, - [1925] = 1574, - [1926] = 1499, - [1927] = 1692, - [1928] = 1524, - [1929] = 1910, - [1930] = 1930, - [1931] = 1720, - [1932] = 1932, - [1933] = 1802, - [1934] = 1568, - [1935] = 1564, - [1936] = 1936, - [1937] = 1582, - [1938] = 1727, - [1939] = 1576, - [1940] = 1940, - [1941] = 1941, - [1942] = 1500, - [1943] = 1943, - [1944] = 1944, - [1945] = 1603, - [1946] = 1946, - [1947] = 1910, - [1948] = 1932, - [1949] = 1802, - [1950] = 1529, - [1951] = 1566, + [1910] = 1542, + [1911] = 1543, + [1912] = 1544, + [1913] = 1545, + [1914] = 1546, + [1915] = 1547, + [1916] = 1548, + [1917] = 1549, + [1918] = 1550, + [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] = 1501, - [1954] = 1595, - [1955] = 1910, - [1956] = 1529, - [1957] = 1566, - [1958] = 1720, - [1959] = 1727, - [1960] = 1722, - [1961] = 1502, - [1962] = 1503, - [1963] = 1537, - [1964] = 1505, - [1965] = 1965, - [1966] = 1507, - [1967] = 1508, - [1968] = 1509, - [1969] = 1969, - [1970] = 1513, - [1971] = 1971, - [1972] = 1515, - [1973] = 1491, - [1974] = 1564, - [1975] = 1517, - [1976] = 1518, - [1977] = 1582, - [1978] = 1727, - [1979] = 1588, - [1980] = 1492, - [1981] = 1493, - [1982] = 1720, - [1983] = 1722, - [1984] = 1754, - [1985] = 1697, - [1986] = 1965, - [1987] = 1494, + [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, + [1979] = 1488, + [1980] = 1496, + [1981] = 1492, + [1982] = 1493, + [1983] = 1494, + [1984] = 1860, + [1985] = 1985, + [1986] = 1675, + [1987] = 1987, [1988] = 1988, - [1989] = 1607, - [1990] = 1591, - [1991] = 229, - [1992] = 1910, - [1993] = 1489, - [1994] = 684, - [1995] = 1520, - [1996] = 1521, - [1997] = 1522, - [1998] = 1523, - [1999] = 1525, - [2000] = 1526, - [2001] = 1527, - [2002] = 1754, - [2003] = 1528, - [2004] = 1530, - [2005] = 1531, - [2006] = 1533, - [2007] = 1534, - [2008] = 1535, - [2009] = 1536, - [2010] = 1538, - [2011] = 1539, - [2012] = 1540, - [2013] = 2013, - [2014] = 2014, - [2015] = 1541, - [2016] = 2016, - [2017] = 2017, + [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] = 1542, - [2020] = 1543, + [2019] = 2019, + [2020] = 2020, [2021] = 2021, - [2022] = 1544, + [2022] = 1738, [2023] = 2023, - [2024] = 1701, - [2025] = 1910, - [2026] = 2026, - [2027] = 1595, - [2028] = 1545, - [2029] = 1606, - [2030] = 687, - [2031] = 1699, - [2032] = 1725, - [2033] = 1716, - [2034] = 1718, - [2035] = 1672, - [2036] = 1700, - [2037] = 1653, - [2038] = 1613, - [2039] = 1618, - [2040] = 1626, - [2041] = 1646, - [2042] = 1659, - [2043] = 1666, - [2044] = 1677, - [2045] = 1689, - [2046] = 1660, - [2047] = 1708, - [2048] = 1702, - [2049] = 1610, - [2050] = 1674, - [2051] = 1617, - [2052] = 1620, - [2053] = 1634, - [2054] = 1635, - [2055] = 1641, - [2056] = 1726, - [2057] = 1680, - [2058] = 1693, - [2059] = 1712, - [2060] = 1511, - [2061] = 1651, - [2062] = 1640, + [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, + [2062] = 2062, [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 1685, - [2067] = 245, - [2068] = 246, + [2064] = 250, + [2065] = 251, + [2066] = 231, + [2067] = 2067, + [2068] = 233, [2069] = 2069, [2070] = 2070, - [2071] = 1652, + [2071] = 1696, [2072] = 2072, [2073] = 2073, [2074] = 2074, [2075] = 2075, - [2076] = 241, + [2076] = 2076, [2077] = 2077, [2078] = 2078, - [2079] = 1682, - [2080] = 1614, - [2081] = 1676, + [2079] = 1813, + [2080] = 1611, + [2081] = 1738, [2082] = 2082, - [2083] = 2083, + [2083] = 1647, [2084] = 2084, - [2085] = 2085, - [2086] = 2086, + [2085] = 1648, + [2086] = 1649, [2087] = 2087, - [2088] = 1720, - [2089] = 1625, - [2090] = 1698, - [2091] = 2085, - [2092] = 1727, + [2088] = 1660, + [2089] = 237, + [2090] = 1650, + [2091] = 2091, + [2092] = 2092, [2093] = 2093, - [2094] = 2087, - [2095] = 2085, - [2096] = 1703, - [2097] = 2087, - [2098] = 2098, - [2099] = 2099, - [2100] = 261, - [2101] = 2101, + [2094] = 1692, + [2095] = 1731, + [2096] = 1622, + [2097] = 1713, + [2098] = 1714, + [2099] = 1717, + [2100] = 1719, + [2101] = 2072, [2102] = 2102, - [2103] = 1529, - [2104] = 1566, - [2105] = 1647, - [2106] = 2098, - [2107] = 2099, - [2108] = 2108, - [2109] = 1529, - [2110] = 1566, - [2111] = 2098, - [2112] = 2099, - [2113] = 2098, - [2114] = 2099, - [2115] = 2115, - [2116] = 254, - [2117] = 2098, - [2118] = 2099, - [2119] = 2119, - [2120] = 1654, - [2121] = 1657, - [2122] = 255, - [2123] = 1688, - [2124] = 1714, - [2125] = 2125, - [2126] = 1619, - [2127] = 1649, - [2128] = 1623, - [2129] = 2129, - [2130] = 1632, - [2131] = 1675, - [2132] = 1537, - [2133] = 1637, - [2134] = 1648, - [2135] = 1699, - [2136] = 1725, - [2137] = 1662, - [2138] = 1716, - [2139] = 1663, - [2140] = 1667, - [2141] = 1668, - [2142] = 1718, - [2143] = 1672, - [2144] = 1700, + [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] = 1653, - [2147] = 2147, - [2148] = 1613, - [2149] = 1618, - [2150] = 1626, - [2151] = 1646, - [2152] = 1659, - [2153] = 1666, - [2154] = 1677, - [2155] = 1689, - [2156] = 1670, - [2157] = 1660, - [2158] = 1708, - [2159] = 2159, - [2160] = 1702, - [2161] = 1610, - [2162] = 1674, - [2163] = 1617, - [2164] = 1620, - [2165] = 1634, - [2166] = 1635, - [2167] = 2167, - [2168] = 1641, - [2169] = 2169, - [2170] = 2170, - [2171] = 243, - [2172] = 1687, - [2173] = 2173, - [2174] = 2174, - [2175] = 1615, - [2176] = 1770, - [2177] = 1683, - [2178] = 2167, - [2179] = 1684, - [2180] = 1690, - [2181] = 1705, - [2182] = 2159, - [2183] = 1642, - [2184] = 1645, - [2185] = 2145, - [2186] = 1709, - [2187] = 1710, - [2188] = 1704, - [2189] = 1661, - [2190] = 2145, - [2191] = 1711, - [2192] = 1715, - [2193] = 1717, - [2194] = 1719, - [2195] = 1696, - [2196] = 2145, - [2197] = 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, + [2188] = 2188, + [2189] = 1706, + [2190] = 1711, + [2191] = 1615, + [2192] = 1616, + [2193] = 1630, + [2194] = 2076, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, [2198] = 2198, - [2199] = 2145, - [2200] = 2200, + [2199] = 1685, + [2200] = 2072, [2201] = 2201, [2202] = 2202, [2203] = 2203, - [2204] = 2204, + [2204] = 2076, [2205] = 2205, [2206] = 2206, - [2207] = 1726, - [2208] = 1680, - [2209] = 1693, - [2210] = 1712, + [2207] = 2074, + [2208] = 2208, + [2209] = 2076, + [2210] = 2210, [2211] = 2211, - [2212] = 2212, - [2213] = 1669, - [2214] = 251, - [2215] = 2215, - [2216] = 2216, - [2217] = 2217, - [2218] = 237, - [2219] = 1706, - [2220] = 2220, - [2221] = 1713, - [2222] = 1707, - [2223] = 1673, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 2085, - [2228] = 1724, - [2229] = 2087, - [2230] = 2073, - [2231] = 1633, - [2232] = 261, + [2212] = 2076, + [2213] = 2076, + [2214] = 2214, + [2215] = 1699, + [2216] = 1978, + [2217] = 1708, + [2218] = 230, + [2219] = 2219, + [2220] = 1612, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 235, + [2225] = 1653, + [2226] = 1655, + [2227] = 2152, + [2228] = 2077, + [2229] = 1631, + [2230] = 2198, + [2231] = 2210, + [2232] = 2232, [2233] = 2233, - [2234] = 2202, + [2234] = 2234, [2235] = 2235, - [2236] = 2212, - [2237] = 1720, - [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2075, - [2242] = 2093, + [2236] = 2236, + [2237] = 1686, + [2238] = 1689, + [2239] = 1709, + [2240] = 1614, + [2241] = 2241, + [2242] = 2242, [2243] = 2243, - [2244] = 2145, - [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 1699, - [2250] = 1725, - [2251] = 1716, - [2252] = 1718, - [2253] = 1672, - [2254] = 1700, - [2255] = 1653, - [2256] = 1613, - [2257] = 1618, - [2258] = 1626, - [2259] = 1646, - [2260] = 1659, - [2261] = 1666, - [2262] = 1677, - [2263] = 1689, - [2264] = 1660, - [2265] = 1708, - [2266] = 1702, - [2267] = 1610, - [2268] = 1674, - [2269] = 1617, - [2270] = 1620, - [2271] = 1634, - [2272] = 1635, - [2273] = 1641, - [2274] = 1691, - [2275] = 238, - [2276] = 2245, - [2277] = 1629, + [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, + [2270] = 2270, + [2271] = 1718, + [2272] = 1673, + [2273] = 1724, + [2274] = 1627, + [2275] = 1643, + [2276] = 1645, + [2277] = 1668, [2278] = 2278, - [2279] = 1726, - [2280] = 1680, - [2281] = 1693, - [2282] = 1712, - [2283] = 1611, - [2284] = 1621, - [2285] = 1721, - [2286] = 239, - [2287] = 1802, - [2288] = 243, - [2289] = 2289, + [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] = 1627, - [2292] = 2085, - [2293] = 1643, - [2294] = 2087, + [2291] = 2234, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, [2295] = 2295, - [2296] = 1564, + [2296] = 2296, [2297] = 2297, - [2298] = 1622, - [2299] = 1624, - [2300] = 1631, - [2301] = 1636, - [2302] = 1638, - [2303] = 1639, + [2298] = 2298, + [2299] = 2299, + [2300] = 2201, + [2301] = 243, + [2302] = 2146, + [2303] = 244, [2304] = 2304, - [2305] = 1665, - [2306] = 2238, - [2307] = 2239, - [2308] = 2308, - [2309] = 2240, - [2310] = 1582, - [2311] = 1727, - [2312] = 1916, - [2313] = 2313, - [2314] = 2314, - [2315] = 2315, - [2316] = 2203, - [2317] = 2129, - [2318] = 2318, - [2319] = 251, - [2320] = 237, - [2321] = 240, - [2322] = 241, - [2323] = 1739, - [2324] = 238, - [2325] = 245, - [2326] = 246, - [2327] = 254, - [2328] = 255, - [2329] = 239, - [2330] = 2330, + [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] = 1754, - [2333] = 2147, - [2334] = 2085, - [2335] = 2078, - [2336] = 2087, + [2332] = 2332, + [2333] = 1635, + [2334] = 1681, + [2335] = 1703, + [2336] = 2336, [2337] = 2337, - [2338] = 1916, - [2339] = 1723, - [2340] = 1770, - [2341] = 240, - [2342] = 1754, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2202, - [2347] = 2238, - [2348] = 2239, - [2349] = 2075, - [2350] = 1537, - [2351] = 2315, - [2352] = 2203, - [2353] = 2078, - [2354] = 1754, - [2355] = 1650, - [2356] = 2315, - [2357] = 2318, - [2358] = 2358, - [2359] = 1697, - [2360] = 1646, - [2361] = 1659, - [2362] = 1666, - [2363] = 1677, - [2364] = 1689, - [2365] = 1660, - [2366] = 1708, - [2367] = 1702, - [2368] = 1610, - [2369] = 1674, - [2370] = 1617, - [2371] = 1620, - [2372] = 1634, - [2373] = 1635, - [2374] = 1641, + [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, + [2356] = 2356, + [2357] = 2357, + [2358] = 2357, + [2359] = 1677, + [2360] = 2360, + [2361] = 2361, + [2362] = 2362, + [2363] = 2363, + [2364] = 1506, + [2365] = 2365, + [2366] = 1490, + [2367] = 1610, + [2368] = 1676, + [2369] = 1695, + [2370] = 2357, + [2371] = 2371, + [2372] = 1677, + [2373] = 1738, + [2374] = 1495, [2375] = 2375, - [2376] = 1564, - [2377] = 257, - [2378] = 2378, - [2379] = 2379, - [2380] = 1726, - [2381] = 1680, + [2376] = 1504, + [2377] = 2377, + [2378] = 2357, + [2379] = 1675, + [2380] = 1638, + [2381] = 1676, [2382] = 2382, - [2383] = 1693, - [2384] = 1712, - [2385] = 1582, + [2383] = 1488, + [2384] = 1496, + [2385] = 2385, [2386] = 2386, - [2387] = 2387, - [2388] = 1529, - [2389] = 1765, + [2387] = 1835, + [2388] = 2388, + [2389] = 2389, [2390] = 2390, - [2391] = 1566, + [2391] = 2391, [2392] = 2392, - [2393] = 2393, + [2393] = 2392, [2394] = 2394, [2395] = 2395, - [2396] = 2396, - [2397] = 2397, + [2396] = 2375, + [2397] = 2389, [2398] = 2398, [2399] = 2399, - [2400] = 2378, + [2400] = 2400, [2401] = 2401, - [2402] = 1692, - [2403] = 2403, - [2404] = 1697, - [2405] = 2378, - [2406] = 2397, + [2402] = 2402, + [2403] = 2357, + [2404] = 2404, + [2405] = 2405, + [2406] = 2398, [2407] = 2407, - [2408] = 1701, + [2408] = 2399, [2409] = 2409, - [2410] = 2393, - [2411] = 257, - [2412] = 1588, - [2413] = 1720, - [2414] = 2414, - [2415] = 2399, - [2416] = 2379, - [2417] = 2398, - [2418] = 2418, - [2419] = 1727, - [2420] = 2420, - [2421] = 2421, - [2422] = 1618, - [2423] = 1626, - [2424] = 2424, - [2425] = 2378, - [2426] = 2378, - [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 1770, - [2431] = 1722, - [2432] = 2432, - [2433] = 2433, - [2434] = 1699, - [2435] = 1725, - [2436] = 1716, - [2437] = 1718, - [2438] = 1672, - [2439] = 1700, - [2440] = 1653, - [2441] = 1613, - [2442] = 1618, - [2443] = 1626, - [2444] = 1646, - [2445] = 1659, - [2446] = 1666, - [2447] = 1677, - [2448] = 1689, - [2449] = 1660, - [2450] = 1708, - [2451] = 1702, - [2452] = 1610, - [2453] = 1674, - [2454] = 1617, - [2455] = 1620, - [2456] = 1634, - [2457] = 1635, - [2458] = 1641, - [2459] = 1754, - [2460] = 1595, - [2461] = 2461, - [2462] = 2462, - [2463] = 2387, - [2464] = 2464, - [2465] = 1726, - [2466] = 1680, - [2467] = 1693, - [2468] = 1712, - [2469] = 1699, - [2470] = 1725, - [2471] = 1716, - [2472] = 1754, - [2473] = 1754, - [2474] = 1718, - [2475] = 1537, - [2476] = 1722, - [2477] = 1672, - [2478] = 1700, - [2479] = 1653, - [2480] = 1613, - [2481] = 2378, + [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] = 1537, - [2484] = 1916, + [2483] = 2483, + [2484] = 1506, [2485] = 2485, - [2486] = 2486, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 1692, - [2491] = 1697, - [2492] = 1701, - [2493] = 950, - [2494] = 1722, - [2495] = 949, - [2496] = 2496, - [2497] = 1588, - [2498] = 948, - [2499] = 1595, - [2500] = 2500, - [2501] = 1722, - [2502] = 1720, - [2503] = 1727, - [2504] = 2504, - [2505] = 2505, - [2506] = 1699, - [2507] = 1725, - [2508] = 1716, - [2509] = 1718, - [2510] = 1672, - [2511] = 1700, - [2512] = 1653, - [2513] = 1613, - [2514] = 1618, - [2515] = 1626, - [2516] = 1646, - [2517] = 1659, - [2518] = 1666, - [2519] = 1677, - [2520] = 1689, - [2521] = 1660, - [2522] = 1708, - [2523] = 1702, - [2524] = 1610, - [2525] = 1674, - [2526] = 1617, - [2527] = 1620, - [2528] = 1634, - [2529] = 1635, - [2530] = 1641, + [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, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2481, + [2518] = 1625, + [2519] = 1557, + [2520] = 2481, + [2521] = 957, + [2522] = 2522, + [2523] = 2523, + [2524] = 1738, + [2525] = 2525, + [2526] = 2481, + [2527] = 1723, + [2528] = 1677, + [2529] = 1675, + [2530] = 1638, [2531] = 2531, - [2532] = 2532, + [2532] = 2481, [2533] = 2533, [2534] = 2534, [2535] = 2535, [2536] = 2536, - [2537] = 2537, + [2537] = 1610, [2538] = 2538, - [2539] = 1754, - [2540] = 2018, + [2539] = 1676, + [2540] = 2540, [2541] = 2541, [2542] = 2542, [2543] = 2543, [2544] = 2544, - [2545] = 1726, - [2546] = 1680, - [2547] = 1693, - [2548] = 1712, - [2549] = 2504, - [2550] = 2504, - [2551] = 2504, - [2552] = 2552, + [2545] = 1695, + [2546] = 2482, + [2547] = 2015, + [2548] = 1699, + [2549] = 1708, + [2550] = 1710, + [2551] = 1612, + [2552] = 2481, [2553] = 2553, - [2554] = 2504, - [2555] = 1537, - [2556] = 2504, - [2557] = 2557, - [2558] = 2558, + [2554] = 2481, + [2555] = 958, + [2556] = 2556, + [2557] = 2481, + [2558] = 1557, [2559] = 2559, - [2560] = 2560, - [2561] = 2504, - [2562] = 1764, - [2563] = 2505, - [2564] = 2504, - [2565] = 2504, - [2566] = 2099, + [2560] = 1677, + [2561] = 2561, + [2562] = 2562, + [2563] = 2123, + [2564] = 2564, + [2565] = 1813, + [2566] = 2566, [2567] = 2567, - [2568] = 1770, - [2569] = 2569, - [2570] = 2570, - [2571] = 2571, + [2568] = 2122, + [2569] = 2123, + [2570] = 2122, + [2571] = 2123, [2572] = 2572, [2573] = 2573, - [2574] = 2574, - [2575] = 2098, - [2576] = 2099, - [2577] = 2098, - [2578] = 2578, + [2574] = 2567, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, + [2578] = 1557, [2579] = 2579, - [2580] = 2098, + [2580] = 2580, [2581] = 2581, [2582] = 2582, [2583] = 2583, - [2584] = 2394, - [2585] = 2099, + [2584] = 2584, + [2585] = 2585, [2586] = 2586, - [2587] = 2587, - [2588] = 2098, - [2589] = 2099, + [2587] = 2412, + [2588] = 2122, + [2589] = 2123, [2590] = 2590, - [2591] = 2591, - [2592] = 2592, + [2591] = 2122, + [2592] = 2123, [2593] = 2593, - [2594] = 2098, - [2595] = 2099, - [2596] = 2592, - [2597] = 2098, - [2598] = 2099, - [2599] = 2599, + [2594] = 2594, + [2595] = 2595, + [2596] = 2122, + [2597] = 2123, + [2598] = 1557, + [2599] = 2122, [2600] = 2600, - [2601] = 1537, - [2602] = 1537, - [2603] = 2603, + [2601] = 242, + [2602] = 2602, + [2603] = 2600, [2604] = 2604, - [2605] = 1576, - [2606] = 2606, + [2605] = 2605, + [2606] = 1217, [2607] = 2607, [2608] = 2608, - [2609] = 2609, + [2609] = 249, [2610] = 2610, [2611] = 2611, [2612] = 2612, @@ -7310,154 +7260,154 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2616] = 2616, [2617] = 2617, [2618] = 2618, - [2619] = 2608, + [2619] = 2619, [2620] = 2620, [2621] = 2621, - [2622] = 2622, - [2623] = 2623, + [2622] = 2600, + [2623] = 246, [2624] = 2624, [2625] = 2625, - [2626] = 2626, - [2627] = 2608, - [2628] = 249, - [2629] = 2629, + [2626] = 2600, + [2627] = 2600, + [2628] = 2628, + [2629] = 232, [2630] = 2630, [2631] = 2631, - [2632] = 2632, - [2633] = 248, + [2632] = 2600, + [2633] = 2600, [2634] = 2634, - [2635] = 2608, - [2636] = 2636, - [2637] = 234, - [2638] = 2608, + [2635] = 2635, + [2636] = 249, + [2637] = 2637, + [2638] = 2638, [2639] = 2639, [2640] = 2640, [2641] = 2641, [2642] = 2642, - [2643] = 2608, + [2643] = 2643, [2644] = 2644, [2645] = 2645, - [2646] = 250, + [2646] = 2646, [2647] = 2647, - [2648] = 2608, + [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, [2652] = 2652, [2653] = 2653, [2654] = 2654, - [2655] = 2655, + [2655] = 2600, [2656] = 2656, [2657] = 2657, - [2658] = 2658, - [2659] = 1213, + [2658] = 2600, + [2659] = 246, [2660] = 2660, - [2661] = 2608, + [2661] = 1511, [2662] = 2662, - [2663] = 248, + [2663] = 2663, [2664] = 2664, - [2665] = 2608, - [2666] = 250, - [2667] = 1256, - [2668] = 2668, - [2669] = 1603, - [2670] = 2670, + [2665] = 2665, + [2666] = 2666, + [2667] = 2525, + [2668] = 242, + [2669] = 2523, + [2670] = 1533, [2671] = 2671, [2672] = 2672, - [2673] = 2673, + [2673] = 232, [2674] = 2674, - [2675] = 234, - [2676] = 2500, - [2677] = 2677, + [2675] = 2675, + [2676] = 2676, + [2677] = 2241, [2678] = 2678, - [2679] = 249, + [2679] = 2316, [2680] = 2680, - [2681] = 2496, - [2682] = 2682, + [2681] = 2681, + [2682] = 2112, [2683] = 2683, [2684] = 2684, [2685] = 2685, - [2686] = 2069, - [2687] = 2289, - [2688] = 2217, - [2689] = 2689, + [2686] = 2686, + [2687] = 2687, + [2688] = 2202, + [2689] = 1247, [2690] = 2690, [2691] = 2691, [2692] = 2692, - [2693] = 2086, - [2694] = 2694, - [2695] = 2420, - [2696] = 2393, - [2697] = 2407, - [2698] = 2397, - [2699] = 2398, - [2700] = 2399, - [2701] = 2701, - [2702] = 2702, - [2703] = 2409, - [2704] = 2701, - [2705] = 1248, - [2706] = 2461, - [2707] = 2414, - [2708] = 2398, + [2693] = 2371, + [2694] = 2399, + [2695] = 2375, + [2696] = 2409, + [2697] = 2362, + [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] = 2403, - [2711] = 2711, - [2712] = 2461, - [2713] = 2399, - [2714] = 2390, - [2715] = 2403, - [2716] = 2414, - [2717] = 2709, - [2718] = 2393, - [2719] = 2719, - [2720] = 2421, - [2721] = 2397, - [2722] = 2395, - [2723] = 2390, + [2710] = 2405, + [2711] = 2398, + [2712] = 2712, + [2713] = 2407, + [2714] = 2362, + [2715] = 2371, + [2716] = 2388, + [2717] = 1253, + [2718] = 2405, + [2719] = 2691, + [2720] = 2720, + [2721] = 2721, + [2722] = 2722, + [2723] = 2723, [2724] = 2724, [2725] = 2725, [2726] = 2726, - [2727] = 2727, + [2727] = 2725, [2728] = 2728, - [2729] = 2729, + [2729] = 2724, [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 2729, - [2734] = 2734, + [2733] = 2724, + [2734] = 2720, [2735] = 2725, - [2736] = 2732, - [2737] = 2730, - [2738] = 2738, - [2739] = 2731, - [2740] = 2730, - [2741] = 2734, - [2742] = 2730, - [2743] = 2726, + [2736] = 2730, + [2737] = 2731, + [2738] = 2721, + [2739] = 2722, + [2740] = 2724, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, [2744] = 2744, - [2745] = 2732, + [2745] = 2745, [2746] = 2746, - [2747] = 2747, - [2748] = 1267, - [2749] = 2749, + [2747] = 1270, + [2748] = 2748, + [2749] = 1290, [2750] = 2750, - [2751] = 2751, - [2752] = 1232, - [2753] = 2753, + [2751] = 1302, + [2752] = 1284, + [2753] = 1259, [2754] = 2754, [2755] = 2755, [2756] = 2756, [2757] = 2757, - [2758] = 1280, - [2759] = 2759, + [2758] = 2758, + [2759] = 2356, [2760] = 2760, [2761] = 2761, [2762] = 2762, - [2763] = 1231, + [2763] = 2763, [2764] = 2764, - [2765] = 2462, - [2766] = 1265, + [2765] = 2765, + [2766] = 2766, [2767] = 2767, [2768] = 2768, [2769] = 2769, @@ -7468,18 +7418,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2777, + [2777] = 2775, [2778] = 2778, [2779] = 2779, - [2780] = 2780, + [2780] = 2772, [2781] = 2781, [2782] = 2782, [2783] = 2783, - [2784] = 2784, - [2785] = 2773, + [2784] = 2767, + [2785] = 2785, [2786] = 2786, - [2787] = 2787, - [2788] = 2772, + [2787] = 2774, + [2788] = 2788, [2789] = 2789, [2790] = 2790, [2791] = 2791, @@ -7489,19 +7439,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2795] = 2795, [2796] = 2796, [2797] = 2797, - [2798] = 2784, - [2799] = 2771, - [2800] = 2793, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, [2801] = 2801, - [2802] = 2779, - [2803] = 2803, + [2802] = 2802, + [2803] = 2801, [2804] = 2804, [2805] = 2805, - [2806] = 2806, - [2807] = 2804, + [2806] = 2771, + [2807] = 2807, [2808] = 2808, - [2809] = 2809, - [2810] = 2810, + [2809] = 2779, + [2810] = 2770, [2811] = 2811, [2812] = 2812, [2813] = 2813, @@ -7509,717 +7459,717 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 2818, - [2819] = 2781, + [2818] = 2811, + [2819] = 2819, [2820] = 2820, - [2821] = 2780, - [2822] = 2822, + [2821] = 2821, + [2822] = 2816, [2823] = 2823, - [2824] = 2813, - [2825] = 2825, - [2826] = 2826, + [2824] = 2824, + [2825] = 2769, + [2826] = 2776, [2827] = 2827, - [2828] = 2774, - [2829] = 2794, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, - [2833] = 1466, - [2834] = 1470, - [2835] = 1469, - [2836] = 1598, - [2837] = 1601, - [2838] = 1575, - [2839] = 1581, - [2840] = 1584, - [2841] = 1572, - [2842] = 1578, - [2843] = 1590, - [2844] = 1592, - [2845] = 1593, - [2846] = 1594, - [2847] = 1596, - [2848] = 1597, - [2849] = 1580, - [2850] = 1599, - [2851] = 1600, - [2852] = 1577, - [2853] = 1487, - [2854] = 1548, - [2855] = 1549, - [2856] = 1550, - [2857] = 1609, - [2858] = 1552, - [2859] = 1579, - [2860] = 1553, - [2861] = 1554, - [2862] = 1555, - [2863] = 1556, - [2864] = 1557, - [2865] = 1558, - [2866] = 1583, - [2867] = 1559, - [2868] = 1560, - [2869] = 1573, - [2870] = 1478, - [2871] = 232, - [2872] = 2872, - [2873] = 2872, - [2874] = 264, - [2875] = 1540, - [2876] = 1469, - [2877] = 1534, - [2878] = 1525, - [2879] = 1535, - [2880] = 1539, - [2881] = 1542, - [2882] = 1466, - [2883] = 1498, - [2884] = 1480, - [2885] = 1531, - [2886] = 1520, - [2887] = 1496, - [2888] = 1541, - [2889] = 1467, - [2890] = 1470, - [2891] = 1522, - [2892] = 2892, - [2893] = 1533, - [2894] = 1477, - [2895] = 1484, - [2896] = 1591, - [2897] = 1515, - [2898] = 1481, - [2899] = 1547, - [2900] = 1518, - [2901] = 1491, - [2902] = 1606, - [2903] = 1548, - [2904] = 1602, - [2905] = 1524, - [2906] = 1487, - [2907] = 1549, - [2908] = 1507, - [2909] = 1550, - [2910] = 1609, - [2911] = 1552, - [2912] = 1553, - [2913] = 1554, - [2914] = 1555, + [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, + [2914] = 2914, [2915] = 1556, - [2916] = 1557, - [2917] = 1558, - [2918] = 1559, - [2919] = 1492, - [2920] = 1509, - [2921] = 1493, - [2922] = 1494, - [2923] = 1560, - [2924] = 1513, - [2925] = 2925, - [2926] = 1517, - [2927] = 1572, - [2928] = 1573, - [2929] = 1575, - [2930] = 1577, - [2931] = 1578, - [2932] = 1579, - [2933] = 1580, - [2934] = 1581, - [2935] = 1583, - [2936] = 1584, - [2937] = 1590, - [2938] = 1592, - [2939] = 1593, - [2940] = 1594, - [2941] = 1596, - [2942] = 1597, - [2943] = 1598, - [2944] = 1599, - [2945] = 1600, - [2946] = 1601, - [2947] = 1467, - [2948] = 1604, - [2949] = 2925, - [2950] = 2950, - [2951] = 2951, - [2952] = 2952, - [2953] = 2953, - [2954] = 1585, - [2955] = 1586, - [2956] = 1587, - [2957] = 2925, - [2958] = 1521, - [2959] = 1523, - [2960] = 1526, - [2961] = 1527, - [2962] = 1528, - [2963] = 1530, - [2964] = 1536, - [2965] = 1543, - [2966] = 2950, - [2967] = 2951, - [2968] = 2952, - [2969] = 2953, - [2970] = 1545, - [2971] = 2925, - [2972] = 2950, - [2973] = 2951, - [2974] = 2952, - [2975] = 2953, - [2976] = 2925, - [2977] = 1499, - [2978] = 2950, - [2979] = 2951, - [2980] = 2952, - [2981] = 2953, - [2982] = 1466, - [2983] = 2925, - [2984] = 1469, - [2985] = 1470, - [2986] = 2925, - [2987] = 1489, - [2988] = 1490, - [2989] = 1500, - [2990] = 1504, - [2991] = 2925, - [2992] = 1501, - [2993] = 2950, - [2994] = 2925, - [2995] = 2951, - [2996] = 1503, - [2997] = 2952, - [2998] = 2953, - [2999] = 1562, - [3000] = 1563, - [3001] = 1567, - [3002] = 1569, - [3003] = 1505, + [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, + [2975] = 1589, + [2976] = 2912, + [2977] = 1608, + [2978] = 1465, + [2979] = 1590, + [2980] = 2913, + [2981] = 1508, + [2982] = 1520, + [2983] = 2914, + [2984] = 1576, + [2985] = 1578, + [2986] = 1580, + [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, + [3000] = 3000, + [3001] = 3001, + [3002] = 1475, + [3003] = 3003, [3004] = 3004, [3005] = 3005, [3006] = 3006, - [3007] = 1482, - [3008] = 3006, + [3007] = 3007, + [3008] = 3008, [3009] = 3009, [3010] = 3010, - [3011] = 3004, + [3011] = 3011, [3012] = 3012, [3013] = 3013, - [3014] = 1472, + [3014] = 3014, [3015] = 3015, - [3016] = 3016, + [3016] = 3007, [3017] = 3017, - [3018] = 3018, - [3019] = 3006, + [3018] = 1473, + [3019] = 3001, [3020] = 3020, [3021] = 3021, [3022] = 3022, [3023] = 3023, - [3024] = 3004, - [3025] = 3004, - [3026] = 1479, + [3024] = 3007, + [3025] = 3025, + [3026] = 3026, [3027] = 3027, - [3028] = 3028, - [3029] = 3006, - [3030] = 3030, + [3028] = 1484, + [3029] = 1482, + [3030] = 3001, [3031] = 3031, - [3032] = 3004, - [3033] = 3033, + [3032] = 3032, + [3033] = 3007, [3034] = 3034, - [3035] = 3006, - [3036] = 3006, - [3037] = 3037, - [3038] = 3038, - [3039] = 3039, + [3035] = 3001, + [3036] = 1477, + [3037] = 3001, + [3038] = 3001, + [3039] = 3007, [3040] = 3040, - [3041] = 3006, - [3042] = 1478, - [3043] = 3043, - [3044] = 1481, - [3045] = 3045, - [3046] = 1594, - [3047] = 3047, - [3048] = 1520, - [3049] = 1522, - [3050] = 3050, - [3051] = 1538, - [3052] = 1525, - [3053] = 1508, - [3054] = 1544, - [3055] = 1467, - [3056] = 3056, - [3057] = 1531, - [3058] = 3058, - [3059] = 950, - [3060] = 1496, - [3061] = 1533, - [3062] = 1534, - [3063] = 1561, - [3064] = 1574, - [3065] = 1535, - [3066] = 1498, - [3067] = 1511, - [3068] = 1539, - [3069] = 1540, - [3070] = 3070, - [3071] = 1541, - [3072] = 3072, - [3073] = 3072, - [3074] = 1487, - [3075] = 1605, - [3076] = 3076, - [3077] = 3077, - [3078] = 1549, - [3079] = 1550, - [3080] = 1609, - [3081] = 1552, - [3082] = 1553, - [3083] = 1554, - [3084] = 3084, - [3085] = 1555, - [3086] = 1556, - [3087] = 1557, - [3088] = 1558, - [3089] = 1559, - [3090] = 1560, - [3091] = 948, - [3092] = 1502, - [3093] = 3093, - [3094] = 1572, - [3095] = 1573, - [3096] = 1575, - [3097] = 1577, - [3098] = 1578, - [3099] = 1579, - [3100] = 1580, - [3101] = 949, - [3102] = 1581, - [3103] = 1583, - [3104] = 1584, - [3105] = 1590, - [3106] = 1592, - [3107] = 1593, - [3108] = 1480, - [3109] = 1542, - [3110] = 1596, - [3111] = 1597, - [3112] = 1598, - [3113] = 1599, - [3114] = 1600, - [3115] = 3115, - [3116] = 1565, - [3117] = 1570, - [3118] = 1601, - [3119] = 1548, + [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, + [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, + [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, [3120] = 3120, [3121] = 3121, - [3122] = 3122, + [3122] = 1475, [3123] = 3123, [3124] = 3124, - [3125] = 3125, + [3125] = 3117, [3126] = 3126, - [3127] = 3127, - [3128] = 1518, + [3127] = 1484, + [3128] = 1482, [3129] = 3129, [3130] = 3130, [3131] = 3131, [3132] = 3132, - [3133] = 1484, + [3133] = 3133, [3134] = 3134, - [3135] = 1515, + [3135] = 3135, [3136] = 3136, - [3137] = 1482, + [3137] = 3137, [3138] = 3138, - [3139] = 1472, - [3140] = 1466, - [3141] = 1547, - [3142] = 3122, + [3139] = 3117, + [3140] = 3140, + [3141] = 3129, + [3142] = 3142, [3143] = 3143, - [3144] = 3129, + [3144] = 3144, [3145] = 3145, - [3146] = 3146, - [3147] = 3129, + [3146] = 3129, + [3147] = 3147, [3148] = 3148, - [3149] = 264, - [3150] = 1469, + [3149] = 1487, + [3150] = 3150, [3151] = 3151, [3152] = 3152, [3153] = 3153, - [3154] = 3129, - [3155] = 1606, - [3156] = 1591, - [3157] = 1470, - [3158] = 3158, - [3159] = 232, + [3154] = 3154, + [3155] = 3155, + [3156] = 3156, + [3157] = 3157, + [3158] = 1478, + [3159] = 1512, [3160] = 3160, - [3161] = 3161, + [3161] = 1473, [3162] = 3162, - [3163] = 3129, - [3164] = 3164, - [3165] = 3165, - [3166] = 3122, + [3163] = 1477, + [3164] = 1466, + [3165] = 1463, + [3166] = 1468, [3167] = 3167, - [3168] = 1478, - [3169] = 1481, - [3170] = 3170, + [3168] = 3168, + [3169] = 3129, + [3170] = 3117, [3171] = 3171, - [3172] = 1479, - [3173] = 3173, - [3174] = 3174, + [3172] = 1532, + [3173] = 3129, + [3174] = 1499, [3175] = 3175, - [3176] = 1491, + [3176] = 1530, [3177] = 3177, - [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3122, + [3178] = 1527, + [3179] = 1579, + [3180] = 1492, + [3181] = 1543, [3182] = 3182, - [3183] = 1477, - [3184] = 1545, - [3185] = 1565, - [3186] = 1567, - [3187] = 1535, - [3188] = 1494, - [3189] = 1569, - [3190] = 3190, - [3191] = 1570, - [3192] = 1543, - [3193] = 3193, - [3194] = 3190, - [3195] = 1499, - [3196] = 3193, - [3197] = 3193, - [3198] = 685, - [3199] = 1500, - [3200] = 1501, - [3201] = 1502, - [3202] = 1604, - [3203] = 1503, - [3204] = 1505, - [3205] = 1507, - [3206] = 1508, - [3207] = 1509, - [3208] = 1511, - [3209] = 1513, - [3210] = 1561, - [3211] = 1574, - [3212] = 1517, - [3213] = 3213, - [3214] = 3190, - [3215] = 3215, - [3216] = 684, - [3217] = 1521, - [3218] = 1523, - [3219] = 3138, - [3220] = 1526, - [3221] = 1527, - [3222] = 1480, - [3223] = 1585, - [3224] = 1586, - [3225] = 1528, - [3226] = 1587, - [3227] = 950, - [3228] = 1530, - [3229] = 688, - [3230] = 3190, - [3231] = 1536, - [3232] = 1496, - [3233] = 1498, - [3234] = 1538, - [3235] = 949, - [3236] = 1467, - [3237] = 3237, - [3238] = 1520, - [3239] = 1522, - [3240] = 1525, - [3241] = 3241, - [3242] = 1533, - [3243] = 1534, - [3244] = 1539, - [3245] = 1540, - [3246] = 1541, - [3247] = 1542, - [3248] = 948, - [3249] = 1544, - [3250] = 1562, - [3251] = 687, - [3252] = 1563, - [3253] = 1531, - [3254] = 1489, - [3255] = 1490, - [3256] = 1504, - [3257] = 1602, - [3258] = 1605, - [3259] = 1524, - [3260] = 682, - [3261] = 1492, - [3262] = 1493, - [3263] = 3193, + [3183] = 1546, + [3184] = 686, + [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, + [3259] = 3259, + [3260] = 3260, + [3261] = 1532, + [3262] = 3262, + [3263] = 1482, [3264] = 3264, - [3265] = 1477, + [3265] = 3264, [3266] = 3266, [3267] = 3267, [3268] = 3268, [3269] = 3269, - [3270] = 3270, - [3271] = 1491, - [3272] = 3266, - [3273] = 1467, - [3274] = 1479, - [3275] = 1481, - [3276] = 3276, - [3277] = 3277, - [3278] = 3270, - [3279] = 3268, - [3280] = 3270, - [3281] = 3269, - [3282] = 1482, - [3283] = 3283, - [3284] = 3284, - [3285] = 3285, - [3286] = 3286, - [3287] = 3285, - [3288] = 3288, - [3289] = 1472, - [3290] = 3266, - [3291] = 3268, - [3292] = 1484, - [3293] = 3293, - [3294] = 1515, - [3295] = 3270, - [3296] = 1518, + [3270] = 3259, + [3271] = 3271, + [3272] = 3264, + [3273] = 3273, + [3274] = 3274, + [3275] = 1475, + [3276] = 1465, + [3277] = 3274, + [3278] = 3278, + [3279] = 3279, + [3280] = 1477, + [3281] = 3281, + [3282] = 3282, + [3283] = 3262, + [3284] = 1486, + [3285] = 1478, + [3286] = 1530, + [3287] = 1512, + [3288] = 3258, + [3289] = 3274, + [3290] = 3290, + [3291] = 3262, + [3292] = 1473, + [3293] = 3264, + [3294] = 3294, + [3295] = 3295, + [3296] = 1536, [3297] = 3297, [3298] = 3298, [3299] = 3299, - [3300] = 685, + [3300] = 3129, [3301] = 3301, [3302] = 3302, [3303] = 3303, [3304] = 3304, [3305] = 3305, - [3306] = 3306, + [3306] = 1538, [3307] = 3307, [3308] = 3308, [3309] = 3309, [3310] = 3310, - [3311] = 3311, + [3311] = 3309, [3312] = 3312, - [3313] = 3313, - [3314] = 3314, - [3315] = 3314, + [3313] = 3310, + [3314] = 3308, + [3315] = 3315, [3316] = 3316, - [3317] = 3129, - [3318] = 3318, + [3317] = 3317, + [3318] = 3304, [3319] = 3319, [3320] = 3320, - [3321] = 1602, - [3322] = 3319, - [3323] = 3323, + [3321] = 1513, + [3322] = 3322, + [3323] = 1539, [3324] = 3324, - [3325] = 3325, - [3326] = 3326, + [3325] = 1514, + [3326] = 1515, [3327] = 3327, - [3328] = 1481, - [3329] = 1489, - [3330] = 1490, - [3331] = 3331, - [3332] = 3332, + [3328] = 3328, + [3329] = 1540, + [3330] = 1596, + [3331] = 3316, + [3332] = 3317, [3333] = 3333, - [3334] = 3334, - [3335] = 1504, - [3336] = 3323, - [3337] = 3337, - [3338] = 3325, - [3339] = 1524, - [3340] = 3340, - [3341] = 1561, - [3342] = 1574, - [3343] = 3343, + [3334] = 3266, + [3335] = 3335, + [3336] = 3336, + [3337] = 3308, + [3338] = 1608, + [3339] = 3339, + [3340] = 3310, + [3341] = 3299, + [3342] = 3342, + [3343] = 684, [3344] = 3344, - [3345] = 3345, - [3346] = 3346, - [3347] = 1492, - [3348] = 3348, - [3349] = 3327, - [3350] = 3323, - [3351] = 3129, - [3352] = 1493, - [3353] = 1494, - [3354] = 3354, - [3355] = 3355, - [3356] = 3356, - [3357] = 3357, - [3358] = 3358, - [3359] = 3325, - [3360] = 3331, - [3361] = 3327, - [3362] = 3332, - [3363] = 3333, - [3364] = 3364, - [3365] = 3331, + [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, [3366] = 3366, [3367] = 3367, - [3368] = 3313, - [3369] = 1507, - [3370] = 3332, - [3371] = 3283, - [3372] = 3337, - [3373] = 3333, + [3368] = 3129, + [3369] = 3316, + [3370] = 3299, + [3371] = 1529, + [3372] = 3372, + [3373] = 3307, [3374] = 3374, [3375] = 3375, - [3376] = 682, - [3377] = 3316, + [3376] = 1482, + [3377] = 3377, [3378] = 3378, [3379] = 3379, [3380] = 3380, - [3381] = 3381, - [3382] = 1517, + [3381] = 1547, + [3382] = 1548, [3383] = 3383, - [3384] = 3307, - [3385] = 1499, + [3384] = 3339, + [3385] = 3129, [3386] = 3386, - [3387] = 1501, - [3388] = 3388, - [3389] = 1502, - [3390] = 1503, - [3391] = 1505, - [3392] = 1508, - [3393] = 1509, - [3394] = 1511, - [3395] = 1513, - [3396] = 3316, - [3397] = 3397, - [3398] = 3398, + [3387] = 3129, + [3388] = 3129, + [3389] = 1489, + [3390] = 3390, + [3391] = 3391, + [3392] = 1492, + [3393] = 3393, + [3394] = 3394, + [3395] = 3299, + [3396] = 3267, + [3397] = 3316, + [3398] = 1491, [3399] = 3399, [3400] = 3400, - [3401] = 3314, - [3402] = 1591, - [3403] = 3314, - [3404] = 3319, - [3405] = 3374, - [3406] = 684, - [3407] = 3319, + [3401] = 3401, + [3402] = 3402, + [3403] = 1553, + [3404] = 1554, + [3405] = 1556, + [3406] = 3406, + [3407] = 1487, [3408] = 3408, - [3409] = 1521, - [3410] = 3410, - [3411] = 3411, - [3412] = 1523, - [3413] = 3413, - [3414] = 3414, - [3415] = 3415, - [3416] = 1526, - [3417] = 1527, - [3418] = 1528, + [3409] = 3344, + [3410] = 3309, + [3411] = 687, + [3412] = 3307, + [3413] = 3390, + [3414] = 248, + [3415] = 1493, + [3416] = 1594, + [3417] = 3417, + [3418] = 688, [3419] = 3419, - [3420] = 3420, - [3421] = 1530, - [3422] = 3422, + [3420] = 1507, + [3421] = 3421, + [3422] = 3279, [3423] = 3423, - [3424] = 3424, - [3425] = 3425, - [3426] = 264, - [3427] = 1536, - [3428] = 1538, - [3429] = 3311, - [3430] = 3397, + [3424] = 1595, + [3425] = 1494, + [3426] = 1576, + [3427] = 1578, + [3428] = 3307, + [3429] = 3429, + [3430] = 3430, [3431] = 3431, - [3432] = 3431, - [3433] = 1543, - [3434] = 1544, - [3435] = 1545, - [3436] = 3323, - [3437] = 3325, - [3438] = 1606, + [3432] = 3432, + [3433] = 3433, + [3434] = 3339, + [3435] = 3435, + [3436] = 3436, + [3437] = 3437, + [3438] = 3308, [3439] = 3439, - [3440] = 687, - [3441] = 3431, - [3442] = 3442, - [3443] = 3443, - [3444] = 3327, + [3440] = 1579, + [3441] = 1580, + [3442] = 1581, + [3443] = 1508, + [3444] = 3444, [3445] = 3445, - [3446] = 3374, - [3447] = 3447, - [3448] = 3331, - [3449] = 3378, - [3450] = 3450, - [3451] = 1605, - [3452] = 1604, - [3453] = 3129, - [3454] = 3129, - [3455] = 1562, - [3456] = 1563, - [3457] = 1565, - [3458] = 1567, - [3459] = 1569, - [3460] = 1570, - [3461] = 1547, - [3462] = 1213, - [3463] = 3332, - [3464] = 3333, - [3465] = 3431, - [3466] = 3276, - [3467] = 232, + [3446] = 1582, + [3447] = 3328, + [3448] = 1525, + [3449] = 1499, + [3450] = 685, + [3451] = 3451, + [3452] = 3452, + [3453] = 3390, + [3454] = 3454, + [3455] = 3455, + [3456] = 1531, + [3457] = 3322, + [3458] = 3327, + [3459] = 3459, + [3460] = 3460, + [3461] = 3328, + [3462] = 3400, + [3463] = 1509, + [3464] = 3324, + [3465] = 3391, + [3466] = 3466, + [3467] = 3467, [3468] = 3468, - [3469] = 3284, - [3470] = 3129, - [3471] = 1585, - [3472] = 1586, - [3473] = 1587, + [3469] = 3469, + [3470] = 686, + [3471] = 3471, + [3472] = 1510, + [3473] = 3473, [3474] = 3474, - [3475] = 688, - [3476] = 3476, + [3475] = 3475, + [3476] = 3153, [3477] = 3477, - [3478] = 3129, + [3478] = 3478, [3479] = 3479, [3480] = 3480, - [3481] = 1500, - [3482] = 3482, - [3483] = 3483, + [3481] = 241, + [3482] = 3279, + [3483] = 248, [3484] = 3484, - [3485] = 3138, - [3486] = 949, + [3485] = 3485, + [3486] = 3486, [3487] = 3484, [3488] = 3488, [3489] = 3489, - [3490] = 3490, - [3491] = 3491, - [3492] = 3484, - [3493] = 3484, - [3494] = 3494, - [3495] = 3490, - [3496] = 3484, - [3497] = 224, - [3498] = 3498, - [3499] = 1479, - [3500] = 3498, - [3501] = 3501, - [3502] = 948, - [3503] = 3503, - [3504] = 3498, - [3505] = 227, - [3506] = 3501, - [3507] = 3284, - [3508] = 1482, - [3509] = 950, - [3510] = 1472, + [3490] = 958, + [3491] = 3484, + [3492] = 957, + [3493] = 948, + [3494] = 3485, + [3495] = 3485, + [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] = 3498, - [3513] = 3498, - [3514] = 3484, + [3512] = 229, + [3513] = 239, + [3514] = 1475, [3515] = 3515, - [3516] = 252, - [3517] = 253, - [3518] = 3498, + [3516] = 3516, + [3517] = 3517, + [3518] = 3518, [3519] = 3519, [3520] = 3520, - [3521] = 3484, - [3522] = 3522, + [3521] = 3521, + [3522] = 3223, [3523] = 3523, [3524] = 3524, [3525] = 3525, [3526] = 3526, [3527] = 3527, - [3528] = 3213, + [3528] = 3528, [3529] = 3529, [3530] = 3530, [3531] = 3531, @@ -8242,35 +8192,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3548] = 3548, [3549] = 3549, [3550] = 3550, - [3551] = 3399, + [3551] = 3551, [3552] = 3552, [3553] = 3553, [3554] = 3554, [3555] = 3555, [3556] = 3556, - [3557] = 253, + [3557] = 3557, [3558] = 3558, - [3559] = 3559, + [3559] = 1489, [3560] = 3560, [3561] = 3561, [3562] = 3562, [3563] = 3563, [3564] = 3564, - [3565] = 3537, + [3565] = 3565, [3566] = 3566, - [3567] = 3552, + [3567] = 3567, [3568] = 3568, [3569] = 3569, [3570] = 3570, [3571] = 3571, [3572] = 3572, - [3573] = 3573, - [3574] = 3574, + [3573] = 229, + [3574] = 239, [3575] = 3575, [3576] = 3576, - [3577] = 3577, + [3577] = 3571, [3578] = 3578, - [3579] = 3552, + [3579] = 3579, [3580] = 3580, [3581] = 3581, [3582] = 3582, @@ -8279,364 +8229,364 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3585] = 3585, [3586] = 3586, [3587] = 3587, - [3588] = 3588, + [3588] = 3568, [3589] = 3589, [3590] = 3590, [3591] = 3591, [3592] = 3592, [3593] = 3593, - [3594] = 3594, - [3595] = 3544, + [3594] = 3347, + [3595] = 3595, [3596] = 3596, - [3597] = 3468, + [3597] = 3597, [3598] = 3598, - [3599] = 3450, + [3599] = 3599, [3600] = 3600, [3601] = 3601, [3602] = 3602, - [3603] = 3552, + [3603] = 3603, [3604] = 3604, [3605] = 3605, [3606] = 3606, - [3607] = 3569, + [3607] = 3587, [3608] = 3608, [3609] = 3609, [3610] = 3610, [3611] = 3611, - [3612] = 3612, - [3613] = 3592, + [3612] = 3582, + [3613] = 3613, [3614] = 3614, [3615] = 3615, - [3616] = 3537, - [3617] = 3617, + [3616] = 3429, + [3617] = 3587, [3618] = 3618, [3619] = 3619, - [3620] = 3546, - [3621] = 3536, - [3622] = 3596, + [3620] = 3620, + [3621] = 3621, + [3622] = 3622, [3623] = 3623, - [3624] = 1482, + [3624] = 3624, [3625] = 3625, - [3626] = 1472, - [3627] = 3532, + [3626] = 3626, + [3627] = 3627, [3628] = 3628, [3629] = 3629, [3630] = 3630, - [3631] = 3631, - [3632] = 3632, - [3633] = 3633, - [3634] = 3611, - [3635] = 3635, - [3636] = 3476, + [3631] = 3596, + [3632] = 1475, + [3633] = 3582, + [3634] = 3595, + [3635] = 3536, + [3636] = 3587, [3637] = 3637, [3638] = 3638, [3639] = 3639, [3640] = 3640, [3641] = 3641, - [3642] = 3642, + [3642] = 3568, [3643] = 3643, - [3644] = 3644, - [3645] = 3645, + [3644] = 3555, + [3645] = 3582, [3646] = 3646, [3647] = 3647, - [3648] = 3552, - [3649] = 3649, + [3648] = 3562, + [3649] = 3603, [3650] = 3650, - [3651] = 3651, - [3652] = 3639, - [3653] = 3646, - [3654] = 3654, - [3655] = 3655, + [3651] = 3582, + [3652] = 1522, + [3653] = 3653, + [3654] = 1528, + [3655] = 3587, [3656] = 3656, - [3657] = 3657, - [3658] = 3658, - [3659] = 3592, + [3657] = 216, + [3658] = 3271, + [3659] = 3659, [3660] = 3660, - [3661] = 3661, - [3662] = 3630, + [3661] = 3582, + [3662] = 3662, [3663] = 3663, - [3664] = 1538, + [3664] = 3664, [3665] = 3665, - [3666] = 1502, - [3667] = 1508, - [3668] = 1511, - [3669] = 1544, - [3670] = 3592, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, + [3670] = 3670, [3671] = 3671, [3672] = 3672, - [3673] = 1479, - [3674] = 1561, - [3675] = 1574, - [3676] = 3649, + [3673] = 3673, + [3674] = 3674, + [3675] = 3675, + [3676] = 3676, [3677] = 3677, [3678] = 3678, - [3679] = 3679, - [3680] = 3680, + [3679] = 3593, + [3680] = 3528, [3681] = 3681, [3682] = 3682, [3683] = 3683, - [3684] = 3684, + [3684] = 3587, [3685] = 3685, - [3686] = 3686, + [3686] = 3541, [3687] = 3687, [3688] = 3688, [3689] = 3689, - [3690] = 1565, + [3690] = 3690, [3691] = 3691, - [3692] = 3692, + [3692] = 3638, [3693] = 3693, - [3694] = 3694, - [3695] = 3695, + [3694] = 3681, + [3695] = 3567, [3696] = 3696, - [3697] = 3546, - [3698] = 1570, + [3697] = 3638, + [3698] = 3698, [3699] = 3699, [3700] = 3700, [3701] = 3701, [3702] = 3702, - [3703] = 3703, - [3704] = 3704, + [3703] = 3693, + [3704] = 3582, [3705] = 3705, - [3706] = 3706, + [3706] = 3643, [3707] = 3707, [3708] = 3708, [3709] = 3709, - [3710] = 3710, - [3711] = 1605, + [3710] = 3571, + [3711] = 3711, [3712] = 3712, [3713] = 3713, - [3714] = 3552, - [3715] = 3632, + [3714] = 3714, + [3715] = 3715, [3716] = 3716, - [3717] = 3663, - [3718] = 3682, + [3717] = 3717, + [3718] = 3718, [3719] = 3719, - [3720] = 3592, + [3720] = 3720, [3721] = 3721, [3722] = 3722, - [3723] = 3723, + [3723] = 1473, [3724] = 3724, - [3725] = 3548, - [3726] = 3726, + [3725] = 1477, + [3726] = 3527, [3727] = 3727, [3728] = 3728, [3729] = 3729, - [3730] = 3610, + [3730] = 3730, [3731] = 3731, - [3732] = 3277, - [3733] = 3733, - [3734] = 3707, + [3732] = 3732, + [3733] = 3628, + [3734] = 3294, [3735] = 3735, [3736] = 3736, - [3737] = 3737, + [3737] = 3595, [3738] = 3738, - [3739] = 3739, - [3740] = 3643, + [3739] = 3393, + [3740] = 3668, [3741] = 3741, - [3742] = 3639, - [3743] = 3743, + [3742] = 3647, + [3743] = 3628, [3744] = 3744, - [3745] = 3649, - [3746] = 3646, + [3745] = 3741, + [3746] = 3746, [3747] = 3747, [3748] = 3748, - [3749] = 252, - [3750] = 225, - [3751] = 3552, - [3752] = 3752, - [3753] = 3552, - [3754] = 3754, - [3755] = 3755, + [3749] = 1579, + [3750] = 3750, + [3751] = 3471, + [3752] = 1582, + [3753] = 1548, + [3754] = 1554, + [3755] = 3582, [3756] = 3756, - [3757] = 3757, - [3758] = 3758, + [3757] = 1493, + [3758] = 1494, [3759] = 3759, - [3760] = 3759, + [3760] = 3760, [3761] = 3761, - [3762] = 3679, - [3763] = 3340, + [3762] = 3762, + [3763] = 3763, [3764] = 3764, [3765] = 3765, - [3766] = 3766, - [3767] = 3767, + [3766] = 1526, + [3767] = 3727, [3768] = 3768, [3769] = 3769, [3770] = 3770, - [3771] = 3592, + [3771] = 3771, [3772] = 3772, - [3773] = 687, + [3773] = 3770, [3774] = 3774, [3775] = 3775, - [3776] = 3283, - [3777] = 3777, + [3776] = 3776, + [3777] = 687, [3778] = 3778, [3779] = 3779, - [3780] = 3568, - [3781] = 3781, + [3780] = 3780, + [3781] = 685, [3782] = 3782, - [3783] = 3783, - [3784] = 3784, - [3785] = 3570, - [3786] = 3786, - [3787] = 3787, - [3788] = 3705, - [3789] = 3600, - [3790] = 3790, + [3783] = 3583, + [3784] = 688, + [3785] = 3785, + [3786] = 3653, + [3787] = 1491, + [3788] = 3759, + [3789] = 3682, + [3790] = 3778, [3791] = 3791, - [3792] = 3572, + [3792] = 3792, [3793] = 3793, - [3794] = 3573, + [3794] = 3794, [3795] = 3795, [3796] = 3796, - [3797] = 3797, - [3798] = 682, - [3799] = 3793, - [3800] = 3800, - [3801] = 3801, - [3802] = 685, - [3803] = 1502, + [3797] = 1487, + [3798] = 3798, + [3799] = 1493, + [3800] = 1489, + [3801] = 1494, + [3802] = 3802, + [3803] = 3803, [3804] = 3804, [3805] = 3805, - [3806] = 1508, + [3806] = 3806, [3807] = 3807, - [3808] = 3808, - [3809] = 1511, - [3810] = 3810, - [3811] = 3736, - [3812] = 3793, - [3813] = 3793, - [3814] = 3712, - [3815] = 3815, + [3808] = 3533, + [3809] = 3778, + [3810] = 3524, + [3811] = 3529, + [3812] = 3812, + [3813] = 3813, + [3814] = 3814, + [3815] = 3770, [3816] = 3816, - [3817] = 3817, - [3818] = 3791, - [3819] = 3819, - [3820] = 688, - [3821] = 3790, - [3822] = 3782, - [3823] = 3784, + [3817] = 3659, + [3818] = 3818, + [3819] = 3812, + [3820] = 3780, + [3821] = 1499, + [3822] = 1579, + [3823] = 3544, [3824] = 3824, - [3825] = 3815, - [3826] = 3796, - [3827] = 3731, - [3828] = 3779, - [3829] = 3829, - [3830] = 3830, - [3831] = 3781, - [3832] = 1538, - [3833] = 1544, - [3834] = 3808, - [3835] = 3729, - [3836] = 3779, - [3837] = 3796, - [3838] = 3787, - [3839] = 3839, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3769, + [3829] = 1582, + [3830] = 3769, + [3831] = 3771, + [3832] = 3832, + [3833] = 3816, + [3834] = 3834, + [3835] = 3770, + [3836] = 3836, + [3837] = 3825, + [3838] = 3838, + [3839] = 3683, [3840] = 3840, - [3841] = 3808, - [3842] = 3791, - [3843] = 3709, - [3844] = 3844, - [3845] = 3807, - [3846] = 1561, - [3847] = 1574, - [3848] = 3848, - [3849] = 3276, - [3850] = 3786, - [3851] = 3801, + [3841] = 3841, + [3842] = 3774, + [3843] = 3575, + [3844] = 3771, + [3845] = 3845, + [3846] = 3846, + [3847] = 3660, + [3848] = 3267, + [3849] = 684, + [3850] = 3850, + [3851] = 3779, [3852] = 3852, - [3853] = 3779, - [3854] = 3787, - [3855] = 3710, - [3856] = 3787, - [3857] = 1591, - [3858] = 3793, - [3859] = 3671, - [3860] = 3533, - [3861] = 1570, - [3862] = 3703, - [3863] = 3863, - [3864] = 3775, - [3865] = 3865, - [3866] = 3866, - [3867] = 3796, - [3868] = 3787, - [3869] = 3598, - [3870] = 684, - [3871] = 3871, - [3872] = 3791, - [3873] = 3782, - [3874] = 3874, - [3875] = 3840, - [3876] = 3876, - [3877] = 3810, - [3878] = 3878, - [3879] = 3793, - [3880] = 3880, - [3881] = 3805, - [3882] = 3795, - [3883] = 1605, - [3884] = 3884, - [3885] = 3779, - [3886] = 3886, - [3887] = 3796, - [3888] = 3550, - [3889] = 3844, - [3890] = 3602, - [3891] = 3779, - [3892] = 3892, - [3893] = 3790, - [3894] = 3894, - [3895] = 3793, - [3896] = 3665, - [3897] = 3897, - [3898] = 1248, - [3899] = 3538, - [3900] = 3886, - [3901] = 3880, - [3902] = 3791, - [3903] = 3886, - [3904] = 3701, - [3905] = 1547, - [3906] = 3728, - [3907] = 3791, - [3908] = 3526, + [3853] = 3853, + [3854] = 3854, + [3855] = 3770, + [3856] = 3662, + [3857] = 3857, + [3858] = 3778, + [3859] = 3779, + [3860] = 3266, + [3861] = 3774, + [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, + [3885] = 3885, + [3886] = 3769, + [3887] = 3838, + [3888] = 3883, + [3889] = 3771, + [3890] = 3834, + [3891] = 3891, + [3892] = 3862, + [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] = 3910, + [3910] = 3778, [3911] = 3911, - [3912] = 3787, - [3913] = 3910, - [3914] = 3778, - [3915] = 3796, - [3916] = 3916, - [3917] = 3699, - [3918] = 3918, - [3919] = 3871, - [3920] = 3237, - [3921] = 1606, - [3922] = 3922, - [3923] = 3923, - [3924] = 3804, - [3925] = 3772, - [3926] = 3922, - [3927] = 3810, - [3928] = 3650, + [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, - [3931] = 3657, - [3932] = 1565, + [3931] = 3931, + [3932] = 3932, [3933] = 3933, [3934] = 3934, [3935] = 3935, [3936] = 3936, - [3937] = 3631, - [3938] = 3637, - [3939] = 816, - [3940] = 833, + [3937] = 3937, + [3938] = 3938, + [3939] = 3939, + [3940] = 3940, [3941] = 3941, [3942] = 3942, - [3943] = 3943, - [3944] = 3944, - [3945] = 3945, + [3943] = 908, + [3944] = 909, + [3945] = 910, [3946] = 3946, [3947] = 3947, [3948] = 3948, @@ -8644,57 +8594,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3950] = 3950, [3951] = 3951, [3952] = 3952, - [3953] = 3953, + [3953] = 3951, [3954] = 3954, [3955] = 3955, [3956] = 3956, [3957] = 3957, - [3958] = 3958, - [3959] = 809, - [3960] = 813, - [3961] = 814, - [3962] = 3962, - [3963] = 3963, - [3964] = 3964, - [3965] = 3965, - [3966] = 3966, - [3967] = 3967, - [3968] = 3968, - [3969] = 3969, - [3970] = 3970, - [3971] = 3971, + [3958] = 3818, + [3959] = 3832, + [3960] = 3836, + [3961] = 3961, + [3962] = 843, + [3963] = 901, + [3964] = 858, + [3965] = 893, + [3966] = 896, + [3967] = 780, + [3968] = 912, + [3969] = 913, + [3970] = 914, + [3971] = 879, [3972] = 3972, - [3973] = 3865, - [3974] = 3909, - [3975] = 3929, - [3976] = 825, + [3973] = 3973, + [3974] = 3974, + [3975] = 3975, + [3976] = 3976, [3977] = 3977, - [3978] = 826, - [3979] = 827, - [3980] = 3980, - [3981] = 3981, - [3982] = 829, - [3983] = 831, - [3984] = 755, - [3985] = 836, - [3986] = 838, - [3987] = 846, - [3988] = 851, + [3978] = 3549, + [3979] = 3979, + [3980] = 812, + [3981] = 813, + [3982] = 831, + [3983] = 3983, + [3984] = 3984, + [3985] = 3985, + [3986] = 3986, + [3987] = 3987, + [3988] = 3988, [3989] = 3989, [3990] = 3990, [3991] = 3991, [3992] = 3992, [3993] = 3993, - [3994] = 3758, + [3994] = 3994, [3995] = 3995, - [3996] = 897, - [3997] = 898, - [3998] = 900, + [3996] = 3996, + [3997] = 3997, + [3998] = 3998, [3999] = 3999, - [4000] = 4000, - [4001] = 4001, + [4000] = 790, + [4001] = 792, [4002] = 4002, - [4003] = 4003, + [4003] = 793, [4004] = 4004, [4005] = 4005, [4006] = 4006, @@ -8703,41 +8653,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4009] = 4009, [4010] = 4010, [4011] = 4011, - [4012] = 4012, - [4013] = 4013, - [4014] = 4014, - [4015] = 4015, + [4012] = 796, + [4013] = 797, + [4014] = 799, + [4015] = 802, [4016] = 4016, [4017] = 4017, - [4018] = 3946, - [4019] = 4019, + [4018] = 4018, + [4019] = 3948, [4020] = 4020, - [4021] = 3968, - [4022] = 4022, - [4023] = 3971, + [4021] = 4009, + [4022] = 3998, + [4023] = 4017, [4024] = 4024, - [4025] = 797, - [4026] = 798, - [4027] = 799, - [4028] = 4028, + [4025] = 4025, + [4026] = 4026, + [4027] = 3639, + [4028] = 806, [4029] = 4029, [4030] = 4030, - [4031] = 4031, - [4032] = 4032, - [4033] = 4032, - [4034] = 4034, - [4035] = 807, - [4036] = 4036, - [4037] = 808, - [4038] = 4038, - [4039] = 811, - [4040] = 778, - [4041] = 4041, - [4042] = 3947, + [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] = 3981, - [4045] = 3970, - [4046] = 4046, + [4044] = 766, + [4045] = 4045, + [4046] = 819, [4047] = 4047, [4048] = 4048, [4049] = 4049, @@ -8745,247 +8695,247 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4051] = 4051, [4052] = 4052, [4053] = 4053, - [4054] = 764, + [4054] = 4054, [4055] = 4055, [4056] = 4056, [4057] = 4057, [4058] = 4058, - [4059] = 4059, - [4060] = 832, + [4059] = 771, + [4060] = 772, [4061] = 4061, - [4062] = 834, - [4063] = 835, - [4064] = 837, - [4065] = 758, - [4066] = 760, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4043, + [4066] = 4066, [4067] = 4067, - [4068] = 765, - [4069] = 845, - [4070] = 769, - [4071] = 776, - [4072] = 4047, - [4073] = 4073, + [4068] = 4068, + [4069] = 776, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4045, [4074] = 4074, [4075] = 4075, - [4076] = 866, - [4077] = 773, + [4076] = 4076, + [4077] = 4077, [4078] = 4078, - [4079] = 4079, - [4080] = 4080, - [4081] = 4081, + [4079] = 835, + [4080] = 836, + [4081] = 837, [4082] = 4082, - [4083] = 4083, - [4084] = 4084, - [4085] = 4085, - [4086] = 4086, - [4087] = 4087, + [4083] = 838, + [4084] = 4075, + [4085] = 839, + [4086] = 840, + [4087] = 841, [4088] = 4088, - [4089] = 4089, - [4090] = 4090, + [4089] = 842, + [4090] = 783, [4091] = 4091, [4092] = 4092, [4093] = 4093, - [4094] = 4094, - [4095] = 4095, - [4096] = 4096, - [4097] = 893, - [4098] = 894, - [4099] = 895, - [4100] = 902, - [4101] = 901, - [4102] = 828, - [4103] = 3971, - [4104] = 812, + [4094] = 845, + [4095] = 846, + [4096] = 849, + [4097] = 770, + [4098] = 773, + [4099] = 774, + [4100] = 915, + [4101] = 4101, + [4102] = 4102, + [4103] = 4103, + [4104] = 4104, [4105] = 4105, - [4106] = 4048, - [4107] = 824, - [4108] = 820, - [4109] = 4049, + [4106] = 3993, + [4107] = 4107, + [4108] = 3999, + [4109] = 4002, [4110] = 4110, - [4111] = 4052, + [4111] = 4111, [4112] = 4112, [4113] = 4113, [4114] = 4114, - [4115] = 4115, - [4116] = 4116, - [4117] = 822, - [4118] = 823, - [4119] = 4002, - [4120] = 4120, - [4121] = 4121, - [4122] = 850, - [4123] = 768, - [4124] = 757, - [4125] = 762, - [4126] = 4015, - [4127] = 3946, - [4128] = 803, - [4129] = 4129, - [4130] = 4130, + [4115] = 4026, + [4116] = 4030, + [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, [4131] = 4131, [4132] = 4132, - [4133] = 4133, + [4133] = 3993, [4134] = 4134, [4135] = 4135, - [4136] = 3947, - [4137] = 3981, + [4136] = 3999, + [4137] = 4137, [4138] = 4138, [4139] = 4139, [4140] = 4140, [4141] = 4141, - [4142] = 4142, + [4142] = 4026, [4143] = 4143, - [4144] = 4144, - [4145] = 4145, - [4146] = 4053, - [4147] = 4147, - [4148] = 4055, + [4144] = 887, + [4145] = 888, + [4146] = 889, + [4147] = 890, + [4148] = 892, [4149] = 4149, - [4150] = 4002, - [4151] = 4015, + [4150] = 4150, + [4151] = 4151, [4152] = 4152, [4153] = 4153, - [4154] = 4084, - [4155] = 857, - [4156] = 858, - [4157] = 859, - [4158] = 860, - [4159] = 862, - [4160] = 863, + [4154] = 4048, + [4155] = 4155, + [4156] = 4156, + [4157] = 3999, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, [4161] = 4161, - [4162] = 865, + [4162] = 4026, [4163] = 4163, - [4164] = 876, - [4165] = 3947, - [4166] = 880, - [4167] = 774, + [4164] = 4164, + [4165] = 4165, + [4166] = 4166, + [4167] = 4167, [4168] = 4168, [4169] = 4169, [4170] = 4170, [4171] = 4171, [4172] = 4172, [4173] = 4173, - [4174] = 4174, - [4175] = 4079, + [4174] = 1611, + [4175] = 1621, [4176] = 4176, [4177] = 4177, - [4178] = 4015, + [4178] = 4178, [4179] = 4179, - [4180] = 3947, - [4181] = 4181, + [4180] = 4180, + [4181] = 4074, [4182] = 4182, - [4183] = 839, - [4184] = 849, - [4185] = 853, - [4186] = 877, - [4187] = 882, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 4186, + [4187] = 1651, [4188] = 4188, [4189] = 4189, - [4190] = 4190, + [4190] = 1652, [4191] = 4191, [4192] = 4192, [4193] = 4193, [4194] = 4194, - [4195] = 4195, - [4196] = 4196, + [4195] = 1683, + [4196] = 1684, [4197] = 4197, - [4198] = 4198, + [4198] = 4167, [4199] = 4199, - [4200] = 4200, + [4200] = 3993, [4201] = 4201, [4202] = 4202, - [4203] = 4036, + [4203] = 4203, [4204] = 4204, [4205] = 4205, - [4206] = 4038, - [4207] = 3977, + [4206] = 4206, + [4207] = 4207, [4208] = 4208, [4209] = 4209, - [4210] = 4057, - [4211] = 4211, - [4212] = 4212, + [4210] = 4210, + [4211] = 4006, + [4212] = 4020, [4213] = 4213, - [4214] = 4214, - [4215] = 1685, - [4216] = 1625, - [4217] = 4078, - [4218] = 4113, + [4214] = 4113, + [4215] = 4132, + [4216] = 4216, + [4217] = 4217, + [4218] = 4218, [4219] = 4219, [4220] = 4220, [4221] = 4221, [4222] = 4222, [4223] = 4223, [4224] = 4224, - [4225] = 3942, - [4226] = 3944, + [4225] = 4225, + [4226] = 4226, [4227] = 4227, - [4228] = 4228, - [4229] = 4229, - [4230] = 4230, - [4231] = 4231, - [4232] = 4232, - [4233] = 4233, - [4234] = 1704, - [4235] = 1706, + [4228] = 4102, + [4229] = 1646, + [4230] = 1678, + [4231] = 1634, + [4232] = 1690, + [4233] = 1702, + [4234] = 1618, + [4235] = 4235, [4236] = 4236, [4237] = 4237, - [4238] = 4194, - [4239] = 4214, - [4240] = 4240, - [4241] = 4241, + [4238] = 4238, + [4239] = 4239, + [4240] = 1658, + [4241] = 1662, [4242] = 4242, - [4243] = 1645, - [4244] = 1661, + [4243] = 4243, + [4244] = 4244, [4245] = 4245, - [4246] = 4246, - [4247] = 4247, - [4248] = 3980, + [4246] = 4078, + [4247] = 4077, + [4248] = 4248, [4249] = 4249, - [4250] = 4161, - [4251] = 4174, + [4250] = 4250, + [4251] = 4008, [4252] = 4252, [4253] = 4253, [4254] = 4254, [4255] = 4255, [4256] = 4256, [4257] = 4257, - [4258] = 4258, + [4258] = 3996, [4259] = 4259, - [4260] = 1648, - [4261] = 1662, - [4262] = 1663, - [4263] = 1667, - [4264] = 4182, - [4265] = 1668, - [4266] = 1670, + [4260] = 4260, + [4261] = 4261, + [4262] = 4262, + [4263] = 4263, + [4264] = 4264, + [4265] = 4265, + [4266] = 4266, [4267] = 4267, - [4268] = 4268, - [4269] = 4269, - [4270] = 4149, - [4271] = 4241, + [4268] = 1689, + [4269] = 1709, + [4270] = 4270, + [4271] = 4271, [4272] = 4272, - [4273] = 4242, + [4273] = 4273, [4274] = 4274, - [4275] = 1690, - [4276] = 1705, + [4275] = 4275, + [4276] = 4076, [4277] = 4277, [4278] = 4278, [4279] = 4279, - [4280] = 4280, - [4281] = 4281, + [4280] = 4056, + [4281] = 4185, [4282] = 4282, [4283] = 4283, [4284] = 4284, [4285] = 4285, [4286] = 4286, - [4287] = 4287, + [4287] = 4193, [4288] = 4288, [4289] = 4289, - [4290] = 4290, - [4291] = 4291, - [4292] = 4292, - [4293] = 1611, - [4294] = 1621, + [4290] = 4201, + [4291] = 4204, + [4292] = 4237, + [4293] = 4293, + [4294] = 4222, [4295] = 4295, [4296] = 4296, [4297] = 4297, @@ -8994,25 +8944,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4300] = 4300, [4301] = 4301, [4302] = 4302, - [4303] = 4303, - [4304] = 3977, - [4305] = 3654, + [4303] = 3972, + [4304] = 1611, + [4305] = 1621, [4306] = 4306, [4307] = 4307, [4308] = 4308, [4309] = 4309, [4310] = 4310, - [4311] = 4078, + [4311] = 4311, [4312] = 4312, [4313] = 4313, [4314] = 4314, - [4315] = 3942, - [4316] = 3944, + [4315] = 1651, + [4316] = 1652, [4317] = 4317, - [4318] = 4318, + [4318] = 4062, [4319] = 4319, - [4320] = 3980, - [4321] = 4086, + [4320] = 1683, + [4321] = 1684, [4322] = 4322, [4323] = 4323, [4324] = 4324, @@ -9021,112 +8971,112 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4327] = 4327, [4328] = 4328, [4329] = 4329, - [4330] = 1685, - [4331] = 1625, + [4330] = 4330, + [4331] = 4331, [4332] = 4332, - [4333] = 4333, - [4334] = 4268, + [4333] = 4193, + [4334] = 4334, [4335] = 4335, [4336] = 4336, - [4337] = 4337, - [4338] = 1704, - [4339] = 1706, + [4337] = 1646, + [4338] = 1678, + [4339] = 1634, [4340] = 4340, - [4341] = 4341, - [4342] = 1645, - [4343] = 1661, + [4341] = 1690, + [4342] = 1702, + [4343] = 1618, [4344] = 4344, [4345] = 4345, - [4346] = 4067, - [4347] = 4347, - [4348] = 4221, + [4346] = 1658, + [4347] = 1662, + [4348] = 4348, [4349] = 4349, [4350] = 4350, [4351] = 4351, - [4352] = 4257, + [4352] = 4352, [4353] = 4353, [4354] = 4354, - [4355] = 1648, - [4356] = 1662, - [4357] = 1663, - [4358] = 1667, - [4359] = 1668, - [4360] = 1670, - [4361] = 4361, - [4362] = 4362, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4358, + [4359] = 4359, + [4360] = 4360, + [4361] = 1689, + [4362] = 1709, [4363] = 4363, [4364] = 4364, [4365] = 4365, - [4366] = 1690, - [4367] = 4367, - [4368] = 4008, - [4369] = 1705, + [4366] = 4366, + [4367] = 4284, + [4368] = 4368, + [4369] = 4194, [4370] = 4370, - [4371] = 3933, + [4371] = 4371, [4372] = 4372, [4373] = 4373, - [4374] = 4374, + [4374] = 4026, [4375] = 4375, [4376] = 4376, [4377] = 4377, [4378] = 4378, - [4379] = 1611, - [4380] = 1621, - [4381] = 4381, + [4379] = 4379, + [4380] = 3948, + [4381] = 4007, [4382] = 4382, - [4383] = 4383, - [4384] = 4384, - [4385] = 4385, - [4386] = 4386, - [4387] = 4387, - [4388] = 4388, + [4383] = 3992, + [4384] = 3997, + [4385] = 4064, + [4386] = 4222, + [4387] = 4056, + [4388] = 4030, [4389] = 4389, - [4390] = 4032, - [4391] = 4391, - [4392] = 4392, - [4393] = 4202, + [4390] = 4390, + [4391] = 245, + [4392] = 247, + [4393] = 852, [4394] = 4394, - [4395] = 4048, - [4396] = 4049, - [4397] = 4145, - [4398] = 4398, - [4399] = 4399, + [4395] = 3999, + [4396] = 4396, + [4397] = 4397, + [4398] = 885, + [4399] = 811, [4400] = 4400, [4401] = 4401, [4402] = 4067, [4403] = 4403, [4404] = 4404, [4405] = 4405, - [4406] = 4002, + [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 4409, - [4410] = 256, - [4411] = 260, - [4412] = 4412, - [4413] = 4413, + [4409] = 4185, + [4410] = 4201, + [4411] = 4204, + [4412] = 4244, + [4413] = 4002, [4414] = 4414, - [4415] = 4415, - [4416] = 4416, + [4415] = 886, + [4416] = 900, [4417] = 4417, [4418] = 4418, [4419] = 4419, [4420] = 4420, [4421] = 4421, - [4422] = 789, + [4422] = 4422, [4423] = 4423, - [4424] = 854, - [4425] = 890, - [4426] = 4377, + [4424] = 4424, + [4425] = 4425, + [4426] = 4426, [4427] = 4427, - [4428] = 4428, - [4429] = 4429, + [4428] = 3824, + [4429] = 1543, [4430] = 4430, - [4431] = 4431, - [4432] = 4432, + [4431] = 859, + [4432] = 1546, [4433] = 4433, - [4434] = 4434, - [4435] = 4082, + [4434] = 905, + [4435] = 4435, [4436] = 4436, [4437] = 4437, [4438] = 4438, @@ -9135,31 +9085,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4441] = 4441, [4442] = 4442, [4443] = 4443, - [4444] = 4444, - [4445] = 1531, - [4446] = 874, - [4447] = 875, - [4448] = 1535, - [4449] = 4449, - [4450] = 4450, - [4451] = 4015, - [4452] = 4452, - [4453] = 4453, - [4454] = 3852, - [4455] = 4455, - [4456] = 795, - [4457] = 802, + [4444] = 4070, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 4448, + [4449] = 3586, + [4450] = 3598, + [4451] = 4451, + [4452] = 4312, + [4453] = 828, + [4454] = 4454, + [4455] = 829, + [4456] = 4456, + [4457] = 4457, [4458] = 4458, [4459] = 4459, - [4460] = 4043, + [4460] = 4088, [4461] = 4461, [4462] = 4462, [4463] = 4463, [4464] = 4464, - [4465] = 4075, + [4465] = 4465, [4466] = 4466, [4467] = 4467, - [4468] = 4468, + [4468] = 4465, [4469] = 4469, [4470] = 4470, [4471] = 4471, @@ -9169,139 +9119,139 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4475] = 4475, [4476] = 4476, [4477] = 4477, - [4478] = 4478, - [4479] = 4479, + [4478] = 3558, + [4479] = 4466, [4480] = 4480, - [4481] = 4468, + [4481] = 4465, [4482] = 4482, - [4483] = 4483, - [4484] = 4484, + [4483] = 4466, + [4484] = 4476, [4485] = 4485, [4486] = 4486, - [4487] = 4478, - [4488] = 4488, - [4489] = 4468, - [4490] = 4490, + [4487] = 4487, + [4488] = 4485, + [4489] = 4489, + [4490] = 4471, [4491] = 4491, - [4492] = 4492, + [4492] = 4486, [4493] = 4493, [4494] = 4494, - [4495] = 4470, - [4496] = 4496, - [4497] = 4497, - [4498] = 4486, - [4499] = 4468, - [4500] = 4500, - [4501] = 4479, - [4502] = 4483, - [4503] = 4484, + [4495] = 4465, + [4496] = 4487, + [4497] = 4475, + [4498] = 4498, + [4499] = 4491, + [4500] = 4466, + [4501] = 4462, + [4502] = 4486, + [4503] = 4463, [4504] = 4504, - [4505] = 4497, + [4505] = 4505, [4506] = 4506, - [4507] = 4507, - [4508] = 4479, - [4509] = 4509, - [4510] = 4482, - [4511] = 4486, - [4512] = 4482, + [4507] = 4498, + [4508] = 4471, + [4509] = 4471, + [4510] = 4510, + [4511] = 4491, + [4512] = 4486, [4513] = 4513, - [4514] = 4478, - [4515] = 4468, - [4516] = 4516, - [4517] = 4482, - [4518] = 3625, - [4519] = 4519, - [4520] = 4520, + [4514] = 4514, + [4515] = 4465, + [4516] = 4472, + [4517] = 4489, + [4518] = 4491, + [4519] = 4465, + [4520] = 4466, [4521] = 4521, [4522] = 4522, - [4523] = 4483, - [4524] = 4492, - [4525] = 4497, - [4526] = 4497, - [4527] = 4513, + [4523] = 4523, + [4524] = 4524, + [4525] = 4485, + [4526] = 4526, + [4527] = 4485, [4528] = 4528, - [4529] = 4494, - [4530] = 4479, + [4529] = 4475, + [4530] = 4513, [4531] = 4531, - [4532] = 4492, + [4532] = 4471, [4533] = 4533, [4534] = 4534, [4535] = 4535, - [4536] = 4478, - [4537] = 4468, - [4538] = 4478, - [4539] = 4483, - [4540] = 4482, - [4541] = 4478, - [4542] = 4542, + [4536] = 4462, + [4537] = 4537, + [4538] = 4463, + [4539] = 4539, + [4540] = 4540, + [4541] = 4498, + [4542] = 4471, [4543] = 4543, - [4544] = 4471, - [4545] = 4545, - [4546] = 4546, + [4544] = 4462, + [4545] = 4463, + [4546] = 4462, [4547] = 4547, - [4548] = 4492, - [4549] = 4492, - [4550] = 4550, - [4551] = 4494, - [4552] = 4552, - [4553] = 4553, - [4554] = 4494, + [4548] = 4463, + [4549] = 4486, + [4550] = 4491, + [4551] = 4551, + [4552] = 4504, + [4553] = 4475, + [4554] = 4554, [4555] = 4555, - [4556] = 4556, - [4557] = 4494, - [4558] = 4519, + [4556] = 4498, + [4557] = 4462, + [4558] = 4463, [4559] = 4559, - [4560] = 4560, + [4560] = 4485, [4561] = 4561, - [4562] = 4484, - [4563] = 4492, - [4564] = 4494, - [4565] = 4565, + [4562] = 4498, + [4563] = 4475, + [4564] = 4471, + [4565] = 4480, [4566] = 4566, [4567] = 4567, - [4568] = 4568, - [4569] = 4531, - [4570] = 4486, - [4571] = 4478, + [4568] = 4498, + [4569] = 4569, + [4570] = 4570, + [4571] = 4462, [4572] = 4572, - [4573] = 4497, - [4574] = 4574, - [4575] = 4482, - [4576] = 4473, - [4577] = 4577, - [4578] = 4479, - [4579] = 4485, - [4580] = 3658, - [4581] = 4486, - [4582] = 4577, - [4583] = 224, - [4584] = 4492, - [4585] = 227, - [4586] = 4494, - [4587] = 4513, - [4588] = 4483, - [4589] = 4484, - [4590] = 4513, - [4591] = 4591, - [4592] = 4509, - [4593] = 4513, - [4594] = 4486, - [4595] = 4497, - [4596] = 4596, - [4597] = 4486, - [4598] = 4497, - [4599] = 4513, - [4600] = 4468, - [4601] = 4483, - [4602] = 4477, - [4603] = 4482, - [4604] = 4484, + [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, + [4597] = 4597, + [4598] = 4598, + [4599] = 4599, + [4600] = 4600, + [4601] = 4601, + [4602] = 4602, + [4603] = 4504, + [4604] = 4475, [4605] = 4605, [4606] = 4606, [4607] = 4607, - [4608] = 4491, - [4609] = 4567, - [4610] = 4513, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, [4611] = 4611, [4612] = 4612, [4613] = 4613, @@ -9316,7 +9266,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4622] = 4622, [4623] = 4623, [4624] = 4624, - [4625] = 4625, + [4625] = 3659, [4626] = 4626, [4627] = 4627, [4628] = 4628, @@ -9326,20 +9276,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4632] = 4632, [4633] = 4633, [4634] = 4634, - [4635] = 4633, + [4635] = 4635, [4636] = 4636, [4637] = 4637, [4638] = 4638, [4639] = 4639, [4640] = 4640, - [4641] = 4641, - [4642] = 4642, + [4641] = 4624, + [4642] = 4640, [4643] = 4643, [4644] = 4644, [4645] = 4645, [4646] = 4646, [4647] = 4647, - [4648] = 4648, + [4648] = 4633, [4649] = 4649, [4650] = 4650, [4651] = 4651, @@ -9347,83 +9297,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4653] = 4653, [4654] = 4654, [4655] = 4655, - [4656] = 4619, + [4656] = 4656, [4657] = 4657, - [4658] = 4629, - [4659] = 4659, + [4658] = 4658, + [4659] = 4610, [4660] = 4660, [4661] = 4661, - [4662] = 4636, - [4663] = 4637, + [4662] = 4662, + [4663] = 4663, [4664] = 4664, [4665] = 4665, [4666] = 4666, [4667] = 4667, - [4668] = 4633, + [4668] = 4668, [4669] = 4669, - [4670] = 4636, - [4671] = 4637, - [4672] = 4672, - [4673] = 4673, - [4674] = 4674, - [4675] = 4675, - [4676] = 4676, - [4677] = 4645, - [4678] = 4646, + [4670] = 4670, + [4671] = 4671, + [4672] = 3946, + [4673] = 4633, + [4674] = 4624, + [4675] = 4624, + [4676] = 4640, + [4677] = 4677, + [4678] = 4640, [4679] = 4679, - [4680] = 4648, + [4680] = 4680, [4681] = 4681, - [4682] = 4650, - [4683] = 4683, - [4684] = 4684, - [4685] = 4615, - [4686] = 4616, - [4687] = 4617, - [4688] = 4618, + [4682] = 4649, + [4683] = 4650, + [4684] = 4652, + [4685] = 4685, + [4686] = 4654, + [4687] = 4687, + [4688] = 4688, [4689] = 4689, - [4690] = 4619, - [4691] = 4691, - [4692] = 4692, - [4693] = 4693, + [4690] = 4606, + [4691] = 4607, + [4692] = 4608, + [4693] = 4609, [4694] = 4694, - [4695] = 4636, - [4696] = 4637, + [4695] = 4610, + [4696] = 4696, [4697] = 4697, [4698] = 4698, - [4699] = 4636, - [4700] = 4637, + [4699] = 4699, + [4700] = 4700, [4701] = 4701, [4702] = 4702, [4703] = 4703, [4704] = 4704, - [4705] = 4648, - [4706] = 4650, - [4707] = 4707, - [4708] = 4708, + [4705] = 4705, + [4706] = 4706, + [4707] = 4624, + [4708] = 4640, [4709] = 4709, [4710] = 4710, - [4711] = 4711, + [4711] = 4652, [4712] = 4712, - [4713] = 4641, + [4713] = 4654, [4714] = 4714, - [4715] = 4636, - [4716] = 4637, + [4715] = 4715, + [4716] = 4716, [4717] = 4717, - [4718] = 4030, + [4718] = 4718, [4719] = 4719, [4720] = 4720, - [4721] = 4648, + [4721] = 4646, [4722] = 4722, - [4723] = 4650, - [4724] = 4724, + [4723] = 4624, + [4724] = 4640, [4725] = 4725, [4726] = 4726, [4727] = 4727, [4728] = 4728, - [4729] = 4729, + [4729] = 4652, [4730] = 4730, - [4731] = 4731, - [4732] = 3533, + [4731] = 4654, + [4732] = 4732, [4733] = 4733, [4734] = 4734, [4735] = 4735, @@ -9447,15 +9397,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4753] = 4753, [4754] = 4754, [4755] = 4755, - [4756] = 4645, + [4756] = 4756, [4757] = 4757, [4758] = 4758, [4759] = 4759, - [4760] = 767, + [4760] = 4760, [4761] = 4761, - [4762] = 4646, + [4762] = 4762, [4763] = 4763, - [4764] = 4633, + [4764] = 4658, [4765] = 4765, [4766] = 4766, [4767] = 4767, @@ -9465,8 +9415,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4771] = 4771, [4772] = 4772, [4773] = 4773, - [4774] = 4774, - [4775] = 4775, + [4774] = 4727, + [4775] = 4738, [4776] = 4776, [4777] = 4777, [4778] = 4778, @@ -9474,33 +9424,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4780] = 4780, [4781] = 4781, [4782] = 4782, - [4783] = 4783, - [4784] = 4784, + [4783] = 768, + [4784] = 4649, [4785] = 4785, - [4786] = 4786, - [4787] = 4787, - [4788] = 4788, - [4789] = 4789, + [4786] = 4633, + [4787] = 4650, + [4788] = 4606, + [4789] = 4607, [4790] = 4790, - [4791] = 4791, + [4791] = 4608, [4792] = 4792, - [4793] = 4793, + [4793] = 4609, [4794] = 4794, [4795] = 4795, [4796] = 4796, - [4797] = 4648, + [4797] = 4797, [4798] = 4798, [4799] = 4799, [4800] = 4800, - [4801] = 4641, - [4802] = 4646, - [4803] = 4650, + [4801] = 4801, + [4802] = 4802, + [4803] = 4803, [4804] = 4804, [4805] = 4805, [4806] = 4806, [4807] = 4807, [4808] = 4808, - [4809] = 4809, + [4809] = 4610, [4810] = 4810, [4811] = 4811, [4812] = 4812, @@ -9508,44 +9458,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4814] = 4814, [4815] = 4815, [4816] = 4816, - [4817] = 4817, + [4817] = 4650, [4818] = 4818, - [4819] = 4819, + [4819] = 4652, [4820] = 4820, - [4821] = 4821, + [4821] = 4807, [4822] = 4822, - [4823] = 4823, + [4823] = 4815, [4824] = 4824, [4825] = 4825, - [4826] = 4826, + [4826] = 4652, [4827] = 4827, - [4828] = 4828, + [4828] = 4654, [4829] = 4829, - [4830] = 4830, + [4830] = 4654, [4831] = 4831, [4832] = 4832, [4833] = 4833, - [4834] = 4749, + [4834] = 4665, [4835] = 4835, [4836] = 4836, [4837] = 4837, - [4838] = 3736, + [4838] = 4838, [4839] = 4839, [4840] = 4840, - [4841] = 4841, + [4841] = 4687, [4842] = 4842, - [4843] = 3965, - [4844] = 4621, + [4843] = 4843, + [4844] = 3576, [4845] = 4845, [4846] = 4846, [4847] = 4847, - [4848] = 4848, - [4849] = 4849, + [4848] = 4618, + [4849] = 4622, [4850] = 4850, [4851] = 4851, [4852] = 4852, [4853] = 4853, - [4854] = 4619, + [4854] = 4854, [4855] = 4855, [4856] = 4856, [4857] = 4857, @@ -9557,30 +9507,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4863] = 4863, [4864] = 4864, [4865] = 4865, - [4866] = 4791, + [4866] = 4866, [4867] = 4867, - [4868] = 4615, + [4868] = 4868, [4869] = 4869, - [4870] = 4870, + [4870] = 4610, [4871] = 4871, - [4872] = 4616, + [4872] = 4872, [4873] = 4873, [4874] = 4874, [4875] = 4875, - [4876] = 4617, + [4876] = 4876, [4877] = 4877, [4878] = 4878, - [4879] = 4652, + [4879] = 4879, [4880] = 4880, [4881] = 4881, [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4885, + [4885] = 4873, [4886] = 4886, - [4887] = 4887, + [4887] = 4876, [4888] = 4888, - [4889] = 4889, + [4889] = 4861, [4890] = 4890, [4891] = 4891, [4892] = 4892, @@ -9589,21 +9539,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4895] = 4895, [4896] = 4896, [4897] = 4897, - [4898] = 4618, + [4898] = 4898, [4899] = 4899, [4900] = 4900, [4901] = 4901, [4902] = 4902, - [4903] = 4747, - [4904] = 4619, - [4905] = 4794, + [4903] = 4903, + [4904] = 4904, + [4905] = 4905, [4906] = 4906, [4907] = 4907, [4908] = 4908, - [4909] = 4633, + [4909] = 4909, [4910] = 4910, [4911] = 4911, - [4912] = 4648, + [4912] = 4912, [4913] = 4913, [4914] = 4914, [4915] = 4915, @@ -9615,26 +9565,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4921] = 4921, [4922] = 4922, [4923] = 4923, - [4924] = 4924, - [4925] = 4736, + [4924] = 4633, + [4925] = 1491, [4926] = 4926, [4927] = 4927, [4928] = 4928, [4929] = 4929, - [4930] = 4650, + [4930] = 4930, [4931] = 4931, - [4932] = 1591, + [4932] = 4932, [4933] = 4933, [4934] = 4934, [4935] = 4935, [4936] = 4936, - [4937] = 4748, - [4938] = 4870, - [4939] = 4751, - [4940] = 4875, + [4937] = 4937, + [4938] = 4938, + [4939] = 4939, + [4940] = 4940, [4941] = 4941, - [4942] = 4942, - [4943] = 4943, + [4942] = 3544, + [4943] = 4617, [4944] = 4944, [4945] = 4945, [4946] = 4946, @@ -9648,8 +9598,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4954] = 4954, [4955] = 4955, [4956] = 4956, - [4957] = 4730, - [4958] = 4958, + [4957] = 4957, + [4958] = 4749, [4959] = 4959, [4960] = 4960, [4961] = 4961, @@ -9671,13 +9621,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4977] = 4977, [4978] = 4978, [4979] = 4979, - [4980] = 3538, + [4980] = 4980, [4981] = 4981, [4982] = 4982, [4983] = 4983, [4984] = 4984, [4985] = 4985, - [4986] = 4816, + [4986] = 4986, [4987] = 4987, [4988] = 4988, [4989] = 4989, @@ -9690,19 +9640,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4996] = 4996, [4997] = 4997, [4998] = 4998, - [4999] = 4999, + [4999] = 4646, [5000] = 5000, [5001] = 5001, [5002] = 5002, [5003] = 5003, [5004] = 5004, [5005] = 5005, - [5006] = 4737, + [5006] = 5006, [5007] = 5007, [5008] = 5008, - [5009] = 3729, + [5009] = 5009, [5010] = 5010, - [5011] = 5011, + [5011] = 3533, [5012] = 5012, [5013] = 5013, [5014] = 5014, @@ -9710,25 +9660,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5016] = 5016, [5017] = 5017, [5018] = 5018, - [5019] = 4829, + [5019] = 5019, [5020] = 5020, [5021] = 5021, - [5022] = 5022, + [5022] = 4257, [5023] = 5023, - [5024] = 5024, + [5024] = 1487, [5025] = 5025, [5026] = 5026, [5027] = 5027, [5028] = 5028, - [5029] = 5029, + [5029] = 4801, [5030] = 5030, - [5031] = 4830, + [5031] = 5031, [5032] = 5032, [5033] = 5033, [5034] = 5034, [5035] = 5035, [5036] = 5036, - [5037] = 4831, + [5037] = 5037, [5038] = 5038, [5039] = 5039, [5040] = 5040, @@ -9737,9 +9687,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5043] = 5043, [5044] = 5044, [5045] = 5045, - [5046] = 1606, - [5047] = 4742, - [5048] = 4646, + [5046] = 5046, + [5047] = 5047, + [5048] = 5048, [5049] = 5049, [5050] = 5050, [5051] = 5051, @@ -9752,65 +9702,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5058] = 5058, [5059] = 5059, [5060] = 5060, - [5061] = 5061, + [5061] = 4919, [5062] = 5062, [5063] = 5063, [5064] = 5064, - [5065] = 4647, - [5066] = 5066, + [5065] = 5065, + [5066] = 4649, [5067] = 5067, [5068] = 5068, - [5069] = 5069, - [5070] = 5020, - [5071] = 5071, - [5072] = 4328, + [5069] = 4435, + [5070] = 5070, + [5071] = 1499, + [5072] = 4753, [5073] = 5073, [5074] = 5074, [5075] = 5075, - [5076] = 1547, - [5077] = 5077, + [5076] = 5076, + [5077] = 4650, [5078] = 5078, [5079] = 5079, [5080] = 5080, [5081] = 5081, [5082] = 5082, - [5083] = 5083, + [5083] = 4935, [5084] = 5084, [5085] = 5085, [5086] = 5086, [5087] = 5087, - [5088] = 4646, - [5089] = 5089, + [5088] = 5088, + [5089] = 4650, [5090] = 5090, [5091] = 5091, [5092] = 5092, - [5093] = 5091, + [5093] = 4750, [5094] = 5094, [5095] = 5095, [5096] = 5096, [5097] = 5097, [5098] = 5098, [5099] = 5099, - [5100] = 5100, - [5101] = 5101, + [5100] = 4687, + [5101] = 4618, [5102] = 5102, [5103] = 5103, [5104] = 5104, - [5105] = 4829, + [5105] = 5105, [5106] = 5106, [5107] = 5107, [5108] = 5108, - [5109] = 5109, + [5109] = 4861, [5110] = 5110, [5111] = 5111, - [5112] = 5112, - [5113] = 4830, + [5112] = 4901, + [5113] = 5113, [5114] = 5114, - [5115] = 5115, + [5115] = 4633, [5116] = 5116, [5117] = 5117, [5118] = 5118, - [5119] = 4652, + [5119] = 4912, [5120] = 5120, [5121] = 5121, [5122] = 5122, @@ -9823,109 +9773,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5129] = 5129, [5130] = 5130, [5131] = 5131, - [5132] = 5132, + [5132] = 4921, [5133] = 5133, - [5134] = 5134, + [5134] = 4923, [5135] = 5135, - [5136] = 5136, - [5137] = 5137, + [5136] = 5129, + [5137] = 5094, [5138] = 5138, [5139] = 5139, [5140] = 5140, - [5141] = 5141, + [5141] = 4617, [5142] = 5142, - [5143] = 5143, + [5143] = 1525, [5144] = 5144, [5145] = 5145, [5146] = 5146, [5147] = 5147, [5148] = 5148, - [5149] = 5149, + [5149] = 1531, [5150] = 5150, [5151] = 5151, [5152] = 5152, - [5153] = 4624, + [5153] = 4633, [5154] = 5154, - [5155] = 4625, - [5156] = 5041, - [5157] = 4673, + [5155] = 5155, + [5156] = 5156, + [5157] = 5157, [5158] = 5158, [5159] = 5159, - [5160] = 4935, - [5161] = 5161, - [5162] = 5162, - [5163] = 4621, - [5164] = 1507, + [5160] = 5160, + [5161] = 4619, + [5162] = 4743, + [5163] = 5163, + [5164] = 5164, [5165] = 5165, - [5166] = 1517, - [5167] = 5167, - [5168] = 4651, - [5169] = 4633, + [5166] = 768, + [5167] = 4624, + [5168] = 4640, + [5169] = 5169, [5170] = 5170, - [5171] = 4895, + [5171] = 5171, [5172] = 5172, - [5173] = 4673, + [5173] = 5173, [5174] = 5174, - [5175] = 4679, + [5175] = 4620, [5176] = 5176, [5177] = 5177, - [5178] = 5178, - [5179] = 4897, - [5180] = 4730, + [5178] = 4760, + [5179] = 4646, + [5180] = 4663, [5181] = 5181, [5182] = 5182, - [5183] = 4922, + [5183] = 3596, [5184] = 5184, [5185] = 5185, [5186] = 5186, - [5187] = 767, - [5188] = 4636, - [5189] = 4637, - [5190] = 4935, - [5191] = 5191, - [5192] = 5192, + [5187] = 5187, + [5188] = 4743, + [5189] = 5189, + [5190] = 5190, + [5191] = 5129, + [5192] = 5131, [5193] = 5193, - [5194] = 5194, + [5194] = 4649, [5195] = 5195, - [5196] = 4906, - [5197] = 5197, + [5196] = 5196, + [5197] = 5060, [5198] = 5198, - [5199] = 4907, - [5200] = 4641, - [5201] = 4914, + [5199] = 5199, + [5200] = 5200, + [5201] = 4650, [5202] = 5202, - [5203] = 3643, + [5203] = 5203, [5204] = 5204, - [5205] = 4645, + [5205] = 5205, [5206] = 5206, - [5207] = 5207, + [5207] = 5094, [5208] = 5208, - [5209] = 5209, + [5209] = 4652, [5210] = 5210, - [5211] = 4645, - [5212] = 4633, + [5211] = 4654, + [5212] = 5212, [5213] = 5213, [5214] = 5214, [5215] = 5215, [5216] = 5216, - [5217] = 5217, + [5217] = 4667, [5218] = 5218, [5219] = 5219, - [5220] = 4646, + [5220] = 5220, [5221] = 5221, [5222] = 5222, [5223] = 5223, [5224] = 5224, - [5225] = 5225, + [5225] = 3832, [5226] = 5226, - [5227] = 4648, + [5227] = 5227, [5228] = 5228, - [5229] = 4650, + [5229] = 5229, [5230] = 5230, [5231] = 5231, - [5232] = 5232, + [5232] = 2615, [5233] = 5233, - [5234] = 5234, + [5234] = 2618, [5235] = 5235, [5236] = 5236, [5237] = 5237, @@ -9940,354 +9890,354 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5246] = 5246, [5247] = 5247, [5248] = 5248, - [5249] = 2653, + [5249] = 5249, [5250] = 5250, [5251] = 5251, [5252] = 5252, [5253] = 5253, [5254] = 5254, [5255] = 5255, - [5256] = 5256, + [5256] = 5235, [5257] = 5257, - [5258] = 5258, - [5259] = 5259, + [5258] = 5222, + [5259] = 5237, [5260] = 5260, [5261] = 5261, [5262] = 5262, [5263] = 5263, [5264] = 5264, - [5265] = 5265, + [5265] = 5223, [5266] = 5266, - [5267] = 5267, + [5267] = 5240, [5268] = 5268, - [5269] = 5269, + [5269] = 5243, [5270] = 5270, [5271] = 5271, - [5272] = 5272, - [5273] = 5273, - [5274] = 5274, - [5275] = 5275, - [5276] = 5276, + [5272] = 2639, + [5273] = 5244, + [5274] = 2641, + [5275] = 5247, + [5276] = 5240, [5277] = 5277, [5278] = 5278, [5279] = 5279, - [5280] = 5280, - [5281] = 5272, - [5282] = 5282, + [5280] = 5235, + [5281] = 5281, + [5282] = 5250, [5283] = 5283, - [5284] = 5268, - [5285] = 5285, - [5286] = 5239, - [5287] = 5287, - [5288] = 5276, + [5284] = 5266, + [5285] = 5251, + [5286] = 5264, + [5287] = 5253, + [5288] = 5288, [5289] = 5289, [5290] = 5290, - [5291] = 5257, - [5292] = 5282, + [5291] = 5291, + [5292] = 1630, [5293] = 5293, [5294] = 5294, [5295] = 5295, - [5296] = 3865, + [5296] = 5296, [5297] = 5297, [5298] = 5298, - [5299] = 5283, + [5299] = 5260, [5300] = 5300, [5301] = 5301, - [5302] = 5261, + [5302] = 3836, [5303] = 5303, [5304] = 5304, - [5305] = 5274, + [5305] = 5305, [5306] = 5306, [5307] = 5307, [5308] = 5308, - [5309] = 5272, - [5310] = 5255, + [5309] = 5309, + [5310] = 5310, [5311] = 5311, - [5312] = 5312, + [5312] = 5240, [5313] = 5313, - [5314] = 3852, + [5314] = 5314, [5315] = 5315, [5316] = 5316, [5317] = 5317, - [5318] = 5276, - [5319] = 1721, + [5318] = 5318, + [5319] = 5319, [5320] = 5320, [5321] = 5321, - [5322] = 5282, - [5323] = 2654, + [5322] = 5322, + [5323] = 5323, [5324] = 5324, [5325] = 5325, - [5326] = 5258, + [5326] = 5326, [5327] = 5327, - [5328] = 5328, - [5329] = 5329, - [5330] = 5257, + [5328] = 5268, + [5329] = 5277, + [5330] = 5278, [5331] = 5331, - [5332] = 5332, + [5332] = 5309, [5333] = 5333, [5334] = 5334, - [5335] = 5245, + [5335] = 5335, [5336] = 5336, - [5337] = 5261, + [5337] = 5337, [5338] = 5338, - [5339] = 5274, - [5340] = 5272, + [5339] = 5231, + [5340] = 5340, [5341] = 5341, [5342] = 5342, [5343] = 5343, - [5344] = 5344, + [5344] = 5310, [5345] = 5345, [5346] = 5346, - [5347] = 5276, - [5348] = 5282, - [5349] = 2630, - [5350] = 5283, - [5351] = 5351, - [5352] = 5238, - [5353] = 5353, + [5347] = 5347, + [5348] = 5348, + [5349] = 5338, + [5350] = 5350, + [5351] = 2631, + [5352] = 2621, + [5353] = 5324, [5354] = 5354, - [5355] = 5245, - [5356] = 2606, - [5357] = 5283, - [5358] = 5358, + [5355] = 5335, + [5356] = 5356, + [5357] = 5233, + [5358] = 2608, [5359] = 5359, - [5360] = 5360, - [5361] = 5361, - [5362] = 2612, - [5363] = 5363, - [5364] = 2607, - [5365] = 5365, + [5360] = 2614, + [5361] = 5268, + [5362] = 5277, + [5363] = 5343, + [5364] = 5278, + [5365] = 2611, [5366] = 5366, - [5367] = 2621, - [5368] = 5246, - [5369] = 5236, - [5370] = 5242, + [5367] = 5346, + [5368] = 2635, + [5369] = 5369, + [5370] = 5370, [5371] = 5371, - [5372] = 5372, + [5372] = 5371, [5373] = 5373, - [5374] = 5338, - [5375] = 5334, + [5374] = 2634, + [5375] = 5336, [5376] = 5376, - [5377] = 5377, - [5378] = 5378, - [5379] = 5379, - [5380] = 5380, - [5381] = 5248, - [5382] = 5235, - [5383] = 5258, + [5377] = 5298, + [5378] = 5331, + [5379] = 5320, + [5380] = 5268, + [5381] = 5381, + [5382] = 5382, + [5383] = 5383, [5384] = 5384, - [5385] = 2658, - [5386] = 5386, - [5387] = 5387, - [5388] = 2622, - [5389] = 2610, - [5390] = 5244, - [5391] = 5303, - [5392] = 5258, - [5393] = 5393, - [5394] = 5394, - [5395] = 5353, - [5396] = 5248, - [5397] = 5397, - [5398] = 2631, - [5399] = 5245, - [5400] = 2655, - [5401] = 5401, - [5402] = 2656, + [5385] = 5385, + [5386] = 2619, + [5387] = 5337, + [5388] = 5249, + [5389] = 1692, + [5390] = 5281, + [5391] = 1693, + [5392] = 5392, + [5393] = 5283, + [5394] = 5392, + [5395] = 5252, + [5396] = 5396, + [5397] = 5266, + [5398] = 5398, + [5399] = 5347, + [5400] = 5255, + [5401] = 5264, + [5402] = 5402, [5403] = 5403, - [5404] = 5328, - [5405] = 5246, - [5406] = 5283, - [5407] = 5393, - [5408] = 5331, - [5409] = 5248, + [5404] = 5288, + [5405] = 5366, + [5406] = 2660, + [5407] = 2662, + [5408] = 5408, + [5409] = 5409, [5410] = 5410, - [5411] = 5247, - [5412] = 3909, - [5413] = 2642, + [5411] = 2628, + [5412] = 5412, + [5413] = 2624, [5414] = 5414, - [5415] = 5250, + [5415] = 5415, [5416] = 5416, - [5417] = 5306, + [5417] = 5277, [5418] = 5418, [5419] = 5419, - [5420] = 5418, - [5421] = 5276, + [5420] = 5307, + [5421] = 5303, [5422] = 5422, - [5423] = 5423, - [5424] = 5424, + [5423] = 5222, + [5424] = 5408, [5425] = 5425, - [5426] = 3929, - [5427] = 5272, + [5426] = 5426, + [5427] = 5385, [5428] = 5428, - [5429] = 5270, + [5429] = 5249, [5430] = 5430, - [5431] = 5251, - [5432] = 5233, - [5433] = 5416, - [5434] = 5434, - [5435] = 5346, - [5436] = 5428, - [5437] = 5437, + [5431] = 5410, + [5432] = 5432, + [5433] = 5268, + [5434] = 5252, + [5435] = 5231, + [5436] = 5436, + [5437] = 5255, [5438] = 5438, - [5439] = 5246, + [5439] = 5439, [5440] = 5440, [5441] = 5441, - [5442] = 5266, + [5442] = 5277, [5443] = 5443, - [5444] = 5444, - [5445] = 5307, - [5446] = 5262, - [5447] = 5240, - [5448] = 5448, - [5449] = 5449, + [5444] = 5277, + [5445] = 5249, + [5446] = 5446, + [5447] = 5409, + [5448] = 5252, + [5449] = 5255, [5450] = 5450, - [5451] = 5451, - [5452] = 5452, - [5453] = 5258, - [5454] = 5454, - [5455] = 5455, + [5451] = 5426, + [5452] = 5278, + [5453] = 5348, + [5454] = 5425, + [5455] = 5403, [5456] = 5456, [5457] = 5457, [5458] = 5458, [5459] = 5459, [5460] = 5460, - [5461] = 5422, - [5462] = 5462, + [5461] = 5278, + [5462] = 5240, [5463] = 5463, - [5464] = 5280, - [5465] = 1673, - [5466] = 5466, - [5467] = 1691, + [5464] = 5464, + [5465] = 5432, + [5466] = 5248, + [5467] = 5304, [5468] = 5468, - [5469] = 5338, - [5470] = 5470, - [5471] = 5471, - [5472] = 5418, - [5473] = 5430, - [5474] = 5378, - [5475] = 5475, - [5476] = 5459, - [5477] = 5403, - [5478] = 2615, - [5479] = 5466, - [5480] = 5258, - [5481] = 5475, + [5469] = 2644, + [5470] = 5430, + [5471] = 5290, + [5472] = 5472, + [5473] = 5281, + [5474] = 5283, + [5475] = 3818, + [5476] = 5240, + [5477] = 5266, + [5478] = 5478, + [5479] = 5264, + [5480] = 5480, + [5481] = 5278, [5482] = 5482, [5483] = 5483, - [5484] = 2644, + [5484] = 5484, [5485] = 5485, - [5486] = 5359, - [5487] = 5487, - [5488] = 2632, - [5489] = 5482, - [5490] = 5419, - [5491] = 5491, + [5486] = 5486, + [5487] = 5268, + [5488] = 5242, + [5489] = 3824, + [5490] = 5263, + [5491] = 2613, [5492] = 5492, - [5493] = 5493, - [5494] = 5363, - [5495] = 5386, + [5493] = 5311, + [5494] = 5257, + [5495] = 5321, [5496] = 5496, - [5497] = 5386, - [5498] = 5372, - [5499] = 5422, - [5500] = 5448, - [5501] = 5248, - [5502] = 5502, - [5503] = 5503, - [5504] = 5459, - [5505] = 5414, + [5497] = 2607, + [5498] = 5314, + [5499] = 2620, + [5500] = 5305, + [5501] = 5315, + [5502] = 5262, + [5503] = 5369, + [5504] = 5504, + [5505] = 2645, [5506] = 5506, - [5507] = 5320, - [5508] = 5262, - [5509] = 5267, - [5510] = 5245, - [5511] = 5511, - [5512] = 5246, - [5513] = 5333, - [5514] = 5248, - [5515] = 5455, - [5516] = 5462, - [5517] = 5517, - [5518] = 5448, - [5519] = 5351, + [5507] = 5419, + [5508] = 5508, + [5509] = 5300, + [5510] = 5510, + [5511] = 5254, + [5512] = 5512, + [5513] = 5316, + [5514] = 5514, + [5515] = 5298, + [5516] = 5307, + [5517] = 5438, + [5518] = 5518, + [5519] = 5337, [5520] = 5520, - [5521] = 5521, - [5522] = 5293, - [5523] = 5306, - [5524] = 5418, - [5525] = 5376, - [5526] = 5327, - [5527] = 5422, - [5528] = 5341, + [5521] = 5440, + [5522] = 5342, + [5523] = 5223, + [5524] = 5382, + [5525] = 5418, + [5526] = 5305, + [5527] = 5527, + [5528] = 5436, [5529] = 5529, - [5530] = 2616, - [5531] = 5531, - [5532] = 5377, - [5533] = 5466, - [5534] = 5246, + [5530] = 5439, + [5531] = 5253, + [5532] = 5443, + [5533] = 5533, + [5534] = 5222, [5535] = 5535, - [5536] = 5259, - [5537] = 2645, - [5538] = 5441, + [5536] = 5536, + [5537] = 5537, + [5538] = 5371, [5539] = 5539, - [5540] = 5303, - [5541] = 2640, - [5542] = 5542, - [5543] = 5517, - [5544] = 5544, - [5545] = 5360, - [5546] = 5437, + [5540] = 5540, + [5541] = 5541, + [5542] = 5281, + [5543] = 5283, + [5544] = 5266, + [5545] = 5545, + [5546] = 5546, [5547] = 5547, - [5548] = 5341, - [5549] = 5373, - [5550] = 5550, + [5548] = 5325, + [5549] = 5224, + [5550] = 5264, [5551] = 5551, - [5552] = 5345, - [5553] = 5313, - [5554] = 5554, - [5555] = 5257, - [5556] = 5521, - [5557] = 5261, - [5558] = 5257, - [5559] = 5559, - [5560] = 5245, - [5561] = 5393, - [5562] = 5246, - [5563] = 5261, - [5564] = 5520, - [5565] = 5378, - [5566] = 5248, - [5567] = 5274, - [5568] = 5568, - [5569] = 5401, - [5570] = 5570, - [5571] = 5440, - [5572] = 5245, - [5573] = 5328, - [5574] = 5361, - [5575] = 2625, - [5576] = 5320, - [5577] = 5434, - [5578] = 5365, - [5579] = 2626, - [5580] = 5366, - [5581] = 5274, - [5582] = 5282, - [5583] = 5258, + [5552] = 5249, + [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, + [5571] = 5571, + [5572] = 5239, + [5573] = 5281, + [5574] = 5574, + [5575] = 5575, + [5576] = 5576, + [5577] = 5577, + [5578] = 5578, + [5579] = 5579, + [5580] = 5580, + [5581] = 5581, + [5582] = 5582, + [5583] = 5583, [5584] = 5584, [5585] = 5585, [5586] = 5586, [5587] = 5587, - [5588] = 5588, + [5588] = 5585, [5589] = 5589, [5590] = 5590, [5591] = 5591, [5592] = 5592, [5593] = 5593, [5594] = 5594, - [5595] = 5595, - [5596] = 5586, + [5595] = 5589, + [5596] = 5596, [5597] = 5597, [5598] = 5598, [5599] = 5599, @@ -10297,398 +10247,386 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5603] = 5603, [5604] = 5604, [5605] = 5605, - [5606] = 5606, + [5606] = 5576, [5607] = 5607, - [5608] = 5605, - [5609] = 5597, + [5608] = 5585, + [5609] = 5589, [5610] = 5610, [5611] = 5611, [5612] = 5612, - [5613] = 5613, + [5613] = 5575, [5614] = 5614, [5615] = 5615, [5616] = 5616, - [5617] = 5617, + [5617] = 5615, [5618] = 5618, [5619] = 5619, [5620] = 5620, [5621] = 5621, [5622] = 5622, [5623] = 5623, - [5624] = 5586, + [5624] = 5624, [5625] = 5625, [5626] = 5626, - [5627] = 5598, - [5628] = 5587, + [5627] = 5627, + [5628] = 5628, [5629] = 5629, - [5630] = 5590, - [5631] = 5589, - [5632] = 5592, + [5630] = 5610, + [5631] = 5631, + [5632] = 5632, [5633] = 5633, [5634] = 5634, - [5635] = 5635, - [5636] = 5636, + [5635] = 5602, + [5636] = 5615, [5637] = 5637, [5638] = 5638, - [5639] = 5594, + [5639] = 5639, [5640] = 5640, - [5641] = 5641, + [5641] = 5601, [5642] = 5642, - [5643] = 5640, - [5644] = 5644, - [5645] = 5588, - [5646] = 5646, - [5647] = 5637, - [5648] = 5620, + [5643] = 5579, + [5644] = 5581, + [5645] = 5614, + [5646] = 5599, + [5647] = 5647, + [5648] = 5612, [5649] = 5649, - [5650] = 5650, - [5651] = 5607, + [5650] = 5642, + [5651] = 5651, [5652] = 5652, - [5653] = 5653, - [5654] = 5654, + [5653] = 5629, + [5654] = 5652, [5655] = 5655, - [5656] = 5656, - [5657] = 5657, - [5658] = 5658, + [5656] = 5580, + [5657] = 5576, + [5658] = 5586, [5659] = 5659, - [5660] = 5660, - [5661] = 5601, + [5660] = 5575, + [5661] = 5642, [5662] = 5662, - [5663] = 5663, - [5664] = 5662, - [5665] = 5590, - [5666] = 5666, - [5667] = 5667, - [5668] = 5641, - [5669] = 5656, - [5670] = 5649, + [5663] = 5634, + [5664] = 5664, + [5665] = 5665, + [5666] = 5594, + [5667] = 5600, + [5668] = 5668, + [5669] = 5614, + [5670] = 5670, [5671] = 5671, - [5672] = 5672, - [5673] = 5673, - [5674] = 5595, - [5675] = 5675, - [5676] = 5676, - [5677] = 5677, - [5678] = 5655, - [5679] = 5593, - [5680] = 5600, - [5681] = 5635, - [5682] = 5601, - [5683] = 5683, + [5672] = 5585, + [5673] = 5614, + [5674] = 5574, + [5675] = 5625, + [5676] = 5596, + [5677] = 5640, + [5678] = 5678, + [5679] = 5652, + [5680] = 5625, + [5681] = 5611, + [5682] = 5662, + [5683] = 5670, [5684] = 5684, - [5685] = 5601, - [5686] = 5662, + [5685] = 5602, + [5686] = 5686, [5687] = 5687, - [5688] = 5660, - [5689] = 5642, - [5690] = 5675, - [5691] = 5650, - [5692] = 5642, - [5693] = 5644, - [5694] = 5622, - [5695] = 5586, - [5696] = 5660, - [5697] = 5653, - [5698] = 5675, - [5699] = 5657, - [5700] = 5700, - [5701] = 5672, - [5702] = 5702, - [5703] = 5593, - [5704] = 5600, - [5705] = 5705, - [5706] = 5706, - [5707] = 5707, - [5708] = 5708, - [5709] = 5709, - [5710] = 5637, - [5711] = 5711, - [5712] = 5636, - [5713] = 5659, - [5714] = 5666, - [5715] = 5715, - [5716] = 5716, - [5717] = 5602, - [5718] = 5606, - [5719] = 5673, - [5720] = 5702, - [5721] = 5598, - [5722] = 5622, - [5723] = 5660, - [5724] = 5625, - [5725] = 5642, - [5726] = 5610, - [5727] = 5633, - [5728] = 5620, - [5729] = 5677, - [5730] = 5715, - [5731] = 5684, - [5732] = 5634, - [5733] = 5602, - [5734] = 5734, - [5735] = 5637, - [5736] = 5660, - [5737] = 5660, - [5738] = 5716, - [5739] = 5593, - [5740] = 5740, - [5741] = 5741, - [5742] = 5650, - [5743] = 5600, - [5744] = 5657, - [5745] = 5635, - [5746] = 5740, - [5747] = 5607, + [5688] = 5582, + [5689] = 5689, + [5690] = 5589, + [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, + [5704] = 5704, + [5705] = 5610, + [5706] = 5633, + [5707] = 5615, + [5708] = 5642, + [5709] = 5662, + [5710] = 5628, + [5711] = 5652, + [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, - [5749] = 5653, - [5750] = 5702, - [5751] = 5751, - [5752] = 5641, - [5753] = 5646, - [5754] = 5754, - [5755] = 5755, - [5756] = 5611, - [5757] = 5649, - [5758] = 5715, - [5759] = 5593, - [5760] = 5716, - [5761] = 5761, - [5762] = 5625, - [5763] = 5600, - [5764] = 5687, - [5765] = 5765, - [5766] = 5766, - [5767] = 5709, - [5768] = 5634, - [5769] = 5618, - [5770] = 5593, - [5771] = 5600, - [5772] = 5595, - [5773] = 5610, - [5774] = 5751, - [5775] = 5614, - [5776] = 5776, - [5777] = 5611, + [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, [5778] = 5778, - [5779] = 5779, - [5780] = 5780, - [5781] = 5611, - [5782] = 5782, + [5779] = 5590, + [5780] = 5594, + [5781] = 5620, + [5782] = 5596, [5783] = 5783, - [5784] = 5660, - [5785] = 5676, - [5786] = 5614, - [5787] = 5619, - [5788] = 5621, - [5789] = 5687, - [5790] = 5623, - [5791] = 5602, - [5792] = 5606, - [5793] = 5683, - [5794] = 5605, - [5795] = 5626, - [5796] = 5796, - [5797] = 5587, - [5798] = 5589, - [5799] = 5592, - [5800] = 5622, - [5801] = 5586, - [5802] = 5625, - [5803] = 5765, - [5804] = 5659, - [5805] = 5598, - [5806] = 5594, - [5807] = 5614, - [5808] = 5637, - [5809] = 5610, - [5810] = 5634, - [5811] = 5761, - [5812] = 5655, - [5813] = 5813, + [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] = 5600, - [5816] = 5620, - [5817] = 5817, - [5818] = 5606, - [5819] = 5748, - [5820] = 5666, - [5821] = 5821, - [5822] = 5653, - [5823] = 5601, - [5824] = 5659, - [5825] = 5825, - [5826] = 5666, - [5827] = 5677, - [5828] = 5635, - [5829] = 5598, - [5830] = 5830, - [5831] = 5641, - [5832] = 5832, - [5833] = 5646, - [5834] = 5834, - [5835] = 5677, - [5836] = 5754, - [5837] = 5684, - [5838] = 5838, - [5839] = 5649, - [5840] = 5650, - [5841] = 5610, - [5842] = 5662, - [5843] = 5602, - [5844] = 5606, - [5845] = 5655, - [5846] = 5657, - [5847] = 5622, - [5848] = 5586, - [5849] = 5625, - [5850] = 5702, - [5851] = 5715, - [5852] = 5716, - [5853] = 5619, - [5854] = 5618, - [5855] = 5602, - [5856] = 5606, - [5857] = 5634, - [5858] = 5649, - [5859] = 5605, - [5860] = 5687, - [5861] = 5675, - [5862] = 5622, - [5863] = 5586, - [5864] = 5625, - [5865] = 5618, - [5866] = 5621, - [5867] = 5656, + [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, + [5848] = 5848, + [5849] = 5662, + [5850] = 5850, + [5851] = 5851, + [5852] = 5579, + [5853] = 5596, + [5854] = 5629, + [5855] = 5607, + [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] = 5604, - [5870] = 5623, - [5871] = 5708, - [5872] = 5626, - [5873] = 5711, - [5874] = 5874, - [5875] = 5587, - [5876] = 5740, - [5877] = 5589, - [5878] = 5592, - [5879] = 5634, - [5880] = 5779, - [5881] = 5611, - [5882] = 5882, - [5883] = 5883, - [5884] = 5625, - [5885] = 5605, - [5886] = 5614, - [5887] = 5619, - [5888] = 5621, - [5889] = 5889, - [5890] = 5602, - [5891] = 5606, - [5892] = 5607, - [5893] = 5606, + [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] = 5605, - [5896] = 5638, - [5897] = 5700, + [5895] = 5593, + [5896] = 5877, + [5897] = 5631, [5898] = 5622, - [5899] = 5635, - [5900] = 5586, - [5901] = 5625, - [5902] = 5902, - [5903] = 5590, - [5904] = 5594, - [5905] = 5601, - [5906] = 5623, - [5907] = 5626, - [5908] = 5598, - [5909] = 5587, - [5910] = 5634, - [5911] = 5642, - [5912] = 5595, - [5913] = 5667, - [5914] = 5610, - [5915] = 5641, - [5916] = 5637, - [5917] = 5683, - [5918] = 5602, - [5919] = 5667, - [5920] = 5672, - [5921] = 5653, - [5922] = 5641, - [5923] = 5659, - [5924] = 5766, - [5925] = 5589, - [5926] = 5592, - [5927] = 5594, - [5928] = 5708, - [5929] = 5666, - [5930] = 5605, - [5931] = 5667, - [5932] = 5655, - [5933] = 5933, - [5934] = 5646, - [5935] = 5711, - [5936] = 5601, - [5937] = 5618, - [5938] = 5677, - [5939] = 5649, - [5940] = 5684, - [5941] = 5605, - [5942] = 5667, - [5943] = 5650, - [5944] = 5605, - [5945] = 5684, - [5946] = 5662, - [5947] = 5675, - [5948] = 5657, - [5949] = 5662, - [5950] = 5702, - [5951] = 5951, - [5952] = 5637, - [5953] = 5951, - [5954] = 5591, - [5955] = 5955, - [5956] = 5715, - [5957] = 5716, - [5958] = 5707, - [5959] = 5602, - [5960] = 5613, - [5961] = 5675, - [5962] = 5667, - [5963] = 5641, - [5964] = 5606, - [5965] = 5965, - [5966] = 5646, - [5967] = 5817, - [5968] = 5622, - [5969] = 5586, - [5970] = 5625, - [5971] = 5642, - [5972] = 5634, - [5973] = 5687, - [5974] = 5595, - [5975] = 5975, - [5976] = 5642, - [5977] = 5965, - [5978] = 5978, - [5979] = 5619, - [5980] = 5634, - [5981] = 5649, + [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, + [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] = 5654, + [5983] = 5594, [5984] = 5984, - [5985] = 5622, - [5986] = 5618, - [5987] = 5778, - [5988] = 5988, - [5989] = 5613, - [5990] = 5990, - [5991] = 5621, - [5992] = 5623, - [5993] = 5667, - [5994] = 5994, - [5995] = 5978, - [5996] = 5626, - [5997] = 5593, + [5985] = 5691, }; static TSCharacterRange extras_character_set_1[] = { @@ -10711,2141 +10649,1893 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(150); + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 10, - '$', 311, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 243, - ',', 161, - '-', 247, - '.', 183, - '/', 296, - '0', 301, - ':', 168, - ';', 166, - '<', 256, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 104, - ']', 170, - '^', 233, - '`', 294, - '{', 160, - '|', 236, - '}', 162, - '~', 270, + '!', 143, + '"', 160, + '#', 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, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(147); - if (lookahead > '@') ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(126); + if (lookahead > '@') ADVANCE(282); END_STATE(); case 1: - if (lookahead == '\n') SKIP(1); - if (lookahead == '/') ADVANCE(172); - if (lookahead == '<') ADVANCE(174); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(173); - if (lookahead != 0) ADVANCE(171); + 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); END_STATE(); case 2: - if (lookahead == '\n') SKIP(39); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '[') ADVANCE(88); - if (lookahead == '\\') ADVANCE(146); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(297); - if (lookahead != 0) ADVANCE(298); + 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, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(2); + if (lookahead > '#') ADVANCE(282); END_STATE(); case 3: ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 183, - '/', 249, - '0', 301, - ':', 168, - ';', 166, - '<', 258, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 159, - '|', 235, - '}', 162, - '~', 270, + '!', 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, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); - if (lookahead > '#') ADVANCE(312); + if (lookahead > '#') ADVANCE(282); END_STATE(); case 4: ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 183, - '/', 249, - '0', 301, - ':', 168, - '<', 258, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - '^', 233, - '`', 294, - '{', 160, - '|', 235, - '~', 270, + '!', 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, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '`' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 5: ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 184, - '/', 249, - '0', 301, - ':', 168, - ';', 166, - '<', 257, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 160, - '|', 236, - '}', 162, + '!', 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, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 6: - ADVANCE_MAP( - '!', 164, - '"', 187, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 182, - '/', 249, - ':', 168, - ';', 166, - '<', 257, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 159, - '|', 235, - '}', 162, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + if (lookahead == '!') ADVANCE(130); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(283); END_STATE(); case 7: ADVANCE_MAP( - '!', 164, - '%', 250, - '&', 231, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 182, - '/', 248, - ':', 168, - ';', 166, - '<', 259, - '=', 156, - '>', 180, - '?', 318, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 238, - '}', 162, + '!', 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, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '[' || '^' < lookahead)) ADVANCE(282); END_STATE(); case 8: ADVANCE_MAP( - '!', 164, - '%', 250, - '&', 231, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 182, - '/', 248, - ':', 168, - ';', 166, - '<', 259, - '=', 82, - '>', 180, - '?', 36, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 237, - '}', 162, + '!', 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, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(299); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(312); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 9: ADVANCE_MAP( - '!', 164, - '%', 250, - '&', 231, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 182, - '/', 248, - ':', 168, - ';', 166, - '<', 259, - '=', 82, - '>', 180, - '?', 36, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 237, - '}', 162, + '"', 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, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(151); - if (lookahead == '\\') ADVANCE(105); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(313); - END_STATE(); - case 11: ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 241, - ',', 161, - '-', 245, - '.', 35, - '/', 248, - '0', 301, - '<', 261, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 160, - '|', 234, - '~', 270, + '"', 160, + '#', 80, + '\'', 161, + '(', 144, + '*', 131, + '+', 213, + ',', 140, + '-', 217, + '.', 30, + '/', 24, + '0', 271, + ';', 145, + '<', 227, + '@', 284, + '[', 148, + '\\', 84, + '{', 138, + '|', 94, + '}', 141, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); - case 12: + case 11: ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 240, - ',', 161, - '-', 244, - '.', 183, - '/', 29, - '0', 301, - ':', 168, - ';', 166, - '<', 254, - '=', 158, - '>', 178, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 160, - '|', 239, - '}', 162, + '"', 160, + '&', 202, + '\'', 161, + '(', 144, + '*', 131, + '+', 213, + '-', 217, + '.', 101, + '/', 25, + '0', 271, + '<', 227, + '>', 151, + '?', 285, + '[', 148, + '\\', 84, + '`', 264, + '{', 139, + '|', 207, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(12); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + 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); + 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); END_STATE(); case 13: - ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 240, - ',', 161, - '-', 244, - '.', 183, - '/', 29, - '0', 301, - ':', 168, - ';', 166, - '<', 254, - '=', 158, - '>', 178, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '{', 159, - '|', 239, - '}', 162, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '/') ADVANCE(24); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); END_STATE(); case 14: - ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '+', 241, - ',', 161, - '-', 245, - '.', 183, - '/', 248, - '0', 301, - ':', 168, - ';', 166, - '<', 261, - '=', 158, - '>', 178, - '?', 316, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 159, - '|', 239, - '}', 162, - '~', 270, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(312); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '/') ADVANCE(243); + if (lookahead == '\\') ADVANCE(85); + if (lookahead == '\n' || + lookahead == '\r') SKIP(13); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(246); + if (lookahead != 0) ADVANCE(248); END_STATE(); case 15: - ADVANCE_MAP( - '"', 187, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - ',', 161, - '.', 182, - '/', 29, - ':', 168, - ';', 166, - '<', 254, - '=', 158, - '>', 178, - '?', 316, - '[', 169, - '\\', 106, - ']', 170, - '{', 159, - '|', 239, - '}', 162, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + if (lookahead == '#') ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); END_STATE(); case 16: - ADVANCE_MAP( - '"', 187, - '&', 229, - '\'', 188, - '(', 165, - '*', 152, - '+', 240, - '-', 244, - '.', 122, - '/', 30, - '0', 301, - '<', 254, - '>', 178, - '?', 315, - '[', 169, - '\\', 106, - '`', 294, - '{', 160, - '|', 234, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(310); - if (lookahead > '~') ADVANCE(312); + if (lookahead == '#') ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + if (lookahead != 0) ADVANCE(164); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(187); - if (lookahead == '&') ADVANCE(21); - if (lookahead == '/') ADVANCE(190); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(189); - if (lookahead != 0) ADVANCE(191); + if (lookahead == '#') ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + if (lookahead != 0) ADVANCE(170); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(187); - if (lookahead == '/') ADVANCE(29); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(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); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(187); - if (lookahead == '/') ADVANCE(273); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '\n' || - lookahead == '\r') SKIP(18); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(276); - if (lookahead != 0) ADVANCE(278); + 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: - if (lookahead == '#') ADVANCE(118); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); + ADVANCE_MAP( + '&', 202, + '(', 144, + '+', 78, + ',', 140, + '-', 79, + '.', 155, + '/', 25, + ':', 147, + '<', 227, + '=', 134, + '>', 151, + '?', 37, + '[', 148, + '\\', 84, + '{', 138, + '|', 207, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + if (lookahead > '~') ADVANCE(282); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(118); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); - if (lookahead != 0) ADVANCE(191); + 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); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(118); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); - if (lookahead != 0) ADVANCE(197); + if (lookahead == '\'') ADVANCE(161); + if (lookahead == '/') ADVANCE(24); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(22); END_STATE(); case 23: - if (lookahead == '$') ADVANCE(108); - if (lookahead == '&') ADVANCE(20); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '`') ADVANCE(294); - if (lookahead == '{') ADVANCE(159); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); + 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); END_STATE(); case 24: - if (lookahead == '$') ADVANCE(108); - if (lookahead == '&') ADVANCE(20); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '`') ADVANCE(294); - if (lookahead == '{') ADVANCE(159); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); END_STATE(); case 25: - ADVANCE_MAP( - '&', 229, - '(', 165, - '+', 85, - ',', 161, - '-', 86, - '.', 182, - '/', 30, - ':', 168, - '<', 254, - '=', 155, - '>', 178, - '?', 42, - '[', 169, - '\\', 106, - '{', 159, - '|', 234, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(310); - if (lookahead > '~') ADVANCE(312); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '>') ADVANCE(159); END_STATE(); case 26: - if (lookahead == '&') ADVANCE(22); - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '/') ADVANCE(196); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(195); - if (lookahead != 0) ADVANCE(197); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(260); + if (lookahead != 0) ADVANCE(27); END_STATE(); case 27: - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '/') ADVANCE(29); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(27); + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0) ADVANCE(27); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '/') ADVANCE(279); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '\n' || - lookahead == '\r') SKIP(27); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(282); - if (lookahead != 0) ADVANCE(284); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); + if (lookahead != 0) ADVANCE(166); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); + if (lookahead != 0) ADVANCE(172); END_STATE(); case 30: - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); - if (lookahead == '>') ADVANCE(186); + if (lookahead == '.') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 31: - if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(290); - if (lookahead != 0) ADVANCE(32); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '?') ADVANCE(238); END_STATE(); case 32: - if (lookahead == '*') ADVANCE(31); - if (lookahead != 0) ADVANCE(32); + if (lookahead == '.') ADVANCE(191); END_STATE(); case 33: - if (lookahead == '*') ADVANCE(192); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); - if (lookahead != 0) ADVANCE(193); + if (lookahead == '/') ADVANCE(266); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(34); END_STATE(); case 34: - if (lookahead == '*') ADVANCE(198); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); - if (lookahead != 0) ADVANCE(199); + if (lookahead == '/') ADVANCE(24); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(34); END_STATE(); case 35: - if (lookahead == '.') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (lookahead == ':') ADVANCE(290); END_STATE(); case 36: - if (lookahead == '.') ADVANCE(202); - if (lookahead == '?') ADVANCE(268); + if (lookahead == ':') ADVANCE(289); END_STATE(); case 37: - if (lookahead == '.') ADVANCE(218); + if (lookahead == ':') ADVANCE(291); END_STATE(); case 38: - if (lookahead == '/') ADVANCE(296); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(39); + if (lookahead == ';') ADVANCE(150); END_STATE(); case 39: - if (lookahead == '/') ADVANCE(29); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(39); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 40: - if (lookahead == ':') ADVANCE(320); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); END_STATE(); case 41: - if (lookahead == ':') ADVANCE(319); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); END_STATE(); case 42: - if (lookahead == ':') ADVANCE(321); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41); END_STATE(); case 43: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); END_STATE(); case 44: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 45: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 46: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 47: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); - END_STATE(); - case 48: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 48: + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); END_STATE(); case 49: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 50: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 51: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 52: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); END_STATE(); case 54: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 55: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); END_STATE(); case 56: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); END_STATE(); case 57: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); END_STATE(); case 58: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 59: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 60: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 74: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); END_STATE(); case 75: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); case 76: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); END_STATE(); case 77: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + if (lookahead == '=') ADVANCE(233); END_STATE(); case 78: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(77); + if (lookahead == '?') ADVANCE(35); END_STATE(); case 79: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + if (lookahead == '?') ADVANCE(36); END_STATE(); case 80: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(283); END_STATE(); case 81: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); + if (lookahead == ']') ADVANCE(268); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(81); END_STATE(); case 82: - if (lookahead == '=') ADVANCE(263); + 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 == '>') ADVANCE(175); + if (lookahead == 'u') ADVANCE(88); END_STATE(); case 84: - if (lookahead == '>') ADVANCE(176); + if (lookahead == 'u') ADVANCE(89); END_STATE(); case 85: - if (lookahead == '?') ADVANCE(40); + 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); END_STATE(); case 86: - if (lookahead == '?') ADVANCE(41); + if (lookahead == '{') ADVANCE(265); END_STATE(); case 87: - if (lookahead == '\\') ADVANCE(105); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(313); + if (lookahead == '{') ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); END_STATE(); case 88: - if (lookahead == '\\') ADVANCE(145); - if (lookahead == ']') ADVANCE(298); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(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 == 'a') ADVANCE(101); + if (lookahead == '{') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 90: - if (lookahead == 'a') ADVANCE(102); + if (lookahead == '{') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == '}') ADVANCE(282); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(83); + if (lookahead == '}') ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(84); + if (lookahead == '}') ADVANCE(255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == '}') ADVANCE(293); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(89); + if (lookahead == '}') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); END_STATE(); case 96: - if (lookahead == 'l') ADVANCE(90); + if (lookahead == '+' || + lookahead == '-') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(99); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); END_STATE(); case 98: - if (lookahead == 'm') ADVANCE(100); + if (lookahead == '0' || + lookahead == '1') ADVANCE(274); END_STATE(); case 99: - if (lookahead == 'p') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); END_STATE(); case 100: - if (lookahead == 'p') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); case 101: - if (lookahead == 't') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 102: - if (lookahead == 't') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 103: - if (lookahead == 't') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 104: - if (lookahead == 'u') ADVANCE(109); - if (lookahead == 'x') ADVANCE(135); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(287); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(289); - if (lookahead != 0) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); END_STATE(); case 105: - if (lookahead == 'u') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); END_STATE(); case 106: - if (lookahead == 'u') ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(112); - if (lookahead == 'x') ADVANCE(135); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(287); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(289); - if (lookahead != 0) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); case 108: - if (lookahead == '{') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); END_STATE(); case 109: - if (lookahead == '{') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); END_STATE(); case 110: - if (lookahead == '{') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); case 111: - if (lookahead == '{') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 112: - if (lookahead == '{') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 113: - if (lookahead == '}') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 114: - if (lookahead == '}') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); END_STATE(); case 115: - if (lookahead == '}') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); END_STATE(); case 116: - if (lookahead == '}') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); END_STATE(); case 117: - if (lookahead == '+' || - lookahead == '-') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(308); - END_STATE(); - case 118: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - END_STATE(); - case 119: - if (lookahead == '0' || - lookahead == '1') ADVANCE(304); - END_STATE(); - case 120: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(305); - END_STATE(); - case 121: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); - END_STATE(); - case 122: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); - END_STATE(); - case 123: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); - END_STATE(); - case 124: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(308); - END_STATE(); - case 125: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(312); - END_STATE(); - case 126: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); - END_STATE(); - case 127: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); - case 128: + case 118: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); - case 129: + case 119: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); - case 130: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(286); - END_STATE(); - case 131: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); - END_STATE(); - case 132: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); - END_STATE(); - case 133: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); - END_STATE(); - case 134: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); - END_STATE(); - case 135: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); - END_STATE(); - case 136: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); - END_STATE(); - case 137: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); - END_STATE(); - case 138: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); - END_STATE(); - case 139: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); - END_STATE(); - case 140: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); - END_STATE(); - case 141: + case 120: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); - case 142: + case 121: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); - case 143: + case 122: if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(191); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(164); END_STATE(); - case 144: + case 123: if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(197); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(170); END_STATE(); - case 145: + case 124: if (lookahead != 0 && - lookahead != '\n') ADVANCE(88); + lookahead != '\n') ADVANCE(81); END_STATE(); - case 146: + case 125: if (lookahead != 0 && - lookahead != '\n') ADVANCE(298); + lookahead != '\n') ADVANCE(268); END_STATE(); - case 147: - if (eof) ADVANCE(150); + case 126: + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 10, - '$', 311, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 243, - ',', 161, - '-', 247, - '.', 183, - '/', 249, - '0', 301, - ':', 168, - ';', 166, - '<', 256, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 160, - '|', 236, - '}', 162, - '~', 270, + '!', 143, + '"', 160, + '#', 6, + '$', 281, + '%', 224, + '&', 203, + '\'', 161, + '(', 144, + ')', 146, + '*', 132, + '+', 216, + ',', 140, + '-', 220, + '.', 156, + '/', 222, + '0', 271, + ':', 147, + ';', 145, + '<', 229, + '=', 136, + '>', 152, + '?', 287, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '^', 206, + '`', 264, + '{', 139, + '|', 209, + '}', 141, + '~', 240, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(147); - if (lookahead > '@') ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(126); + if (lookahead > '@') ADVANCE(282); END_STATE(); - case 148: - if (eof) ADVANCE(150); + case 127: + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 250, - '&', 231, - '\'', 188, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 184, - '/', 248, - '0', 301, - ':', 168, - ';', 166, - '<', 260, - '=', 156, - '>', 180, - '?', 36, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 237, - '}', 162, - '~', 270, + '!', 143, + '"', 160, + '#', 80, + '%', 223, + '&', 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, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(148); - if (lookahead > '#') ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(127); + if (lookahead > '#') ADVANCE(282); END_STATE(); - case 149: - if (eof) ADVANCE(150); + case 128: + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 10, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 241, - ',', 161, - '-', 245, - '.', 183, - '/', 248, - '0', 301, - ':', 168, - ';', 166, - '<', 261, - '=', 158, - '>', 178, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 159, - '|', 239, - '}', 162, - '~', 270, + '!', 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(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(149); + 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(312); + (lookahead < '[' || '^' < lookahead)) ADVANCE(282); END_STATE(); - case 150: + case 129: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 151: + case 130: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); + lookahead != '\n') ADVANCE(130); END_STATE(); - case 152: + case 131: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 153: + case 132: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(253); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '*') ADVANCE(226); + if (lookahead == '=') ADVANCE(178); END_STATE(); - case 154: + case 133: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(252); + if (lookahead == '*') ADVANCE(225); END_STATE(); - case 155: + case 134: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 156: + case 135: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(233); END_STATE(); - case 157: + case 136: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(263); - if (lookahead == '>') ADVANCE(201); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(174); END_STATE(); - case 158: + case 137: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(201); + if (lookahead == '>') ADVANCE(174); END_STATE(); - case 159: + case 138: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 160: + case 139: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(322); + if (lookahead == '|') ADVANCE(292); END_STATE(); - case 161: + case 140: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 162: + case 141: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 163: + case 142: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 164: + case 143: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(265); + if (lookahead == '=') ADVANCE(235); END_STATE(); - case 165: + case 144: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 166: + case 145: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 167: + case 146: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 168: + case 147: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 169: + case 148: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 170: + case 149: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 171: - ACCEPT_TOKEN(sym__glimmer_template_content); - END_STATE(); - case 172: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); - END_STATE(); - case 173: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(172); - if (lookahead == '<') ADVANCE(174); - if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(173); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(171); - END_STATE(); - case 174: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(103); - END_STATE(); - case 175: - ACCEPT_TOKEN(sym_glimmer_opening_tag); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_glimmer_closing_tag); - END_STATE(); - case 177: + case 150: ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); - case 178: + case 151: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 179: + case 152: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(223); + if (lookahead == '=') ADVANCE(237); + if (lookahead == '>') ADVANCE(196); END_STATE(); - case 180: + case 153: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(224); + if (lookahead == '=') ADVANCE(237); + if (lookahead == '>') ADVANCE(197); END_STATE(); - case 181: + case 154: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(154); END_STATE(); - case 182: + case 155: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 183: + case 156: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (lookahead == '.') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 184: + case 157: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 185: + case 158: ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); - case 186: + case 159: ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); - case 187: + case 160: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 188: + case 161: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 189: + case 162: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(21); - if (lookahead == '/') ADVANCE(190); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(189); + if (lookahead == '&') ADVANCE(16); + if (lookahead == '/') ADVANCE(163); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); if (lookahead != 0 && - lookahead != '"') ADVANCE(191); + lookahead != '"') ADVANCE(164); END_STATE(); - case 190: + case 163: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(143); - if (lookahead == '*') ADVANCE(193); - if (lookahead == '/') ADVANCE(194); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '*') ADVANCE(166); + if (lookahead == '/') ADVANCE(167); if (lookahead != 0 && - lookahead != '"') ADVANCE(191); + lookahead != '"') ADVANCE(164); END_STATE(); - case 191: + case 164: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(143); + if (lookahead == '&') ADVANCE(122); if (lookahead != 0 && - lookahead != '"') ADVANCE(191); + lookahead != '"') ADVANCE(164); END_STATE(); - case 192: + case 165: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(33); - if (lookahead == '*') ADVANCE(192); - if (lookahead == '/') ADVANCE(191); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '/') ADVANCE(164); if (lookahead != 0 && - lookahead != '"') ADVANCE(193); + lookahead != '"') ADVANCE(166); END_STATE(); - case 193: + case 166: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(33); - if (lookahead == '*') ADVANCE(192); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(165); if (lookahead != 0 && - lookahead != '"') ADVANCE(193); + lookahead != '"') ADVANCE(166); END_STATE(); - case 194: + case 167: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(291); + if (lookahead == '&') ADVANCE(261); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(191); + lookahead == 0x2029) ADVANCE(164); if (lookahead != 0 && - lookahead != '"') ADVANCE(194); + lookahead != '"') ADVANCE(167); END_STATE(); - case 195: + case 168: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(22); - if (lookahead == '/') ADVANCE(196); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(195); + if (lookahead == '&') ADVANCE(17); + if (lookahead == '/') ADVANCE(169); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(197); + lookahead != '\'') ADVANCE(170); END_STATE(); - case 196: + case 169: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(144); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '/') ADVANCE(200); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '/') ADVANCE(173); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(197); + lookahead != '\'') ADVANCE(170); END_STATE(); - case 197: + case 170: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(144); + if (lookahead == '&') ADVANCE(123); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(197); + lookahead != '\'') ADVANCE(170); END_STATE(); - case 198: + case 171: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(34); - if (lookahead == '*') ADVANCE(198); - if (lookahead == '/') ADVANCE(197); + if (lookahead == '&') ADVANCE(29); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '/') ADVANCE(170); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(199); + lookahead != '\'') ADVANCE(172); END_STATE(); - case 199: + case 172: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(34); - if (lookahead == '*') ADVANCE(198); + if (lookahead == '&') ADVANCE(29); + if (lookahead == '*') ADVANCE(171); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(199); + lookahead != '\'') ADVANCE(172); END_STATE(); - case 200: + case 173: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(292); + if (lookahead == '&') ADVANCE(262); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(197); + lookahead == 0x2029) ADVANCE(170); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(200); + lookahead != '\'') ADVANCE(173); END_STATE(); - case 201: + case 174: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 202: + case 175: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 203: + case 176: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 204: + case 177: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 205: + case 178: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 206: + case 179: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 207: + case 180: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 208: + case 181: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 209: + case 182: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 210: + case 183: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 211: + case 184: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 212: + case 185: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 213: + case 186: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 214: + case 187: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 215: + case 188: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 216: + case 189: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 217: + case 190: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 218: + case 191: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 219: + case 192: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 220: + case 193: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(215); + if (lookahead == '=') ADVANCE(188); END_STATE(); - case 221: + case 194: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 222: + case 195: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(216); + if (lookahead == '=') ADVANCE(189); END_STATE(); - case 223: + case 196: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(226); + if (lookahead == '=') ADVANCE(184); + if (lookahead == '>') ADVANCE(199); END_STATE(); - case 224: + case 197: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(225); + if (lookahead == '>') ADVANCE(198); END_STATE(); - case 225: + case 198: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 226: + case 199: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(212); + if (lookahead == '=') ADVANCE(185); END_STATE(); - case 227: + case 200: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 228: + case 201: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '=') ADVANCE(186); END_STATE(); - case 229: + case 202: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 230: + case 203: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(220); - if (lookahead == '=') ADVANCE(209); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '=') ADVANCE(182); END_STATE(); - case 231: + case 204: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(219); + if (lookahead == '&') ADVANCE(192); END_STATE(); - case 232: + case 205: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 233: + case 206: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(208); + if (lookahead == '=') ADVANCE(181); END_STATE(); - case 234: + case 207: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 235: + case 208: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(210); - if (lookahead == '|') ADVANCE(222); + if (lookahead == '=') ADVANCE(183); + if (lookahead == '|') ADVANCE(195); END_STATE(); - case 236: + case 209: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(210); - if (lookahead == '|') ADVANCE(222); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '=') ADVANCE(183); + if (lookahead == '|') ADVANCE(195); + if (lookahead == '}') ADVANCE(293); END_STATE(); - case 237: + case 210: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(221); + if (lookahead == '|') ADVANCE(194); END_STATE(); - case 238: + case 211: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(221); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '|') ADVANCE(194); + if (lookahead == '}') ADVANCE(293); END_STATE(); - case 239: + case 212: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '}') ADVANCE(293); END_STATE(); - case 240: + case 213: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 241: + case 214: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(271); + if (lookahead == '+') ADVANCE(241); END_STATE(); - case 242: + case 215: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(271); - if (lookahead == '=') ADVANCE(203); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '=') ADVANCE(176); END_STATE(); - case 243: + case 216: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(271); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '?') ADVANCE(40); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '=') ADVANCE(176); + if (lookahead == '?') ADVANCE(35); END_STATE(); - case 244: + case 217: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 245: + case 218: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(272); + if (lookahead == '-') ADVANCE(242); END_STATE(); - case 246: + case 219: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(272); - if (lookahead == '=') ADVANCE(204); + if (lookahead == '-') ADVANCE(242); + if (lookahead == '=') ADVANCE(177); END_STATE(); - case 247: + case 220: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(272); - if (lookahead == '=') ADVANCE(204); - if (lookahead == '?') ADVANCE(41); + if (lookahead == '-') ADVANCE(242); + if (lookahead == '=') ADVANCE(177); + if (lookahead == '?') ADVANCE(36); END_STATE(); - case 248: + case 221: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); END_STATE(); - case 249: + case 222: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); - if (lookahead == '=') ADVANCE(206); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '=') ADVANCE(179); END_STATE(); - case 250: + case 223: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 251: + case 224: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(207); + if (lookahead == '=') ADVANCE(180); END_STATE(); - case 252: + case 225: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 253: + case 226: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(214); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(185); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(262); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '=') ADVANCE(187); END_STATE(); - case 257: + case 227: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(262); END_STATE(); - case 258: + case 228: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(262); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '/') ADVANCE(158); END_STATE(); - case 259: + case 229: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(227); - if (lookahead == '=') ADVANCE(262); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(232); END_STATE(); - case 260: + case 230: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(227); - if (lookahead == '=') ADVANCE(262); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(232); END_STATE(); - case 261: + case 231: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(232); END_STATE(); - case 262: + case 232: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 263: + case 233: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(264); + if (lookahead == '=') ADVANCE(234); END_STATE(); - case 264: + case 234: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 265: + case 235: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(266); + if (lookahead == '=') ADVANCE(236); END_STATE(); - case 266: + case 236: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 267: + case 237: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 268: + case 238: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 269: + case 239: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(217); + if (lookahead == '=') ADVANCE(190); END_STATE(); - case 270: + case 240: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 271: + case 241: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 272: + case 242: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 273: + case 243: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(275); - if (lookahead == '/') ADVANCE(277); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '/') ADVANCE(247); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 274: + case 244: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(274); - if (lookahead == '/') ADVANCE(278); + if (lookahead == '*') ADVANCE(244); + if (lookahead == '/') ADVANCE(248); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(275); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 275: + case 245: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(274); + if (lookahead == '*') ADVANCE(244); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(275); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 276: + case 246: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(273); + if (lookahead == '/') ADVANCE(243); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(276); + lookahead != '\r') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 277: + case 247: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(278); + lookahead == 0x2029) ADVANCE(248); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(277); + lookahead != '\\') ADVANCE(247); END_STATE(); - case 278: + case 248: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 279: + case 249: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(281); - if (lookahead == '/') ADVANCE(283); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '/') ADVANCE(253); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(284); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 280: + case 250: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '/') ADVANCE(284); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '/') ADVANCE(254); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(281); + lookahead != '\\') ADVANCE(251); END_STATE(); - case 281: + case 251: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(280); + if (lookahead == '*') ADVANCE(250); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(281); + lookahead != '\\') ADVANCE(251); END_STATE(); - case 282: + case 252: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(279); + if (lookahead == '/') ADVANCE(249); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(282); + lookahead != '\r') ADVANCE(252); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(284); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 283: + case 253: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(284); + lookahead == 0x2029) ADVANCE(254); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(283); + lookahead != '\\') ADVANCE(253); END_STATE(); - case 284: + case 254: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(284); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 285: + case 255: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 286: + case 256: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(106); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 287: + case 257: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(285); + lookahead == 0x2029) ADVANCE(255); END_STATE(); - case 288: + case 258: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(255); END_STATE(); - case 289: + case 259: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(288); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); END_STATE(); - case 290: + case 260: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 291: + case 261: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(191); + lookahead == 0x2029) ADVANCE(164); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(293); - if (lookahead != 0) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + if (lookahead != 0) ADVANCE(167); END_STATE(); - case 292: + case 262: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(197); + lookahead == 0x2029) ADVANCE(170); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(293); - if (lookahead != 0) ADVANCE(200); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + if (lookahead != 0) ADVANCE(173); END_STATE(); - case 293: + case 263: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(293); + lookahead != 0x2029) ADVANCE(263); END_STATE(); - case 294: + case 264: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 295: + case 265: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 296: + case 266: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 297: + case 267: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(39); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '[') ADVANCE(88); - if (lookahead == '\\') ADVANCE(146); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(297); - if (lookahead != 0) ADVANCE(298); + 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); END_STATE(); - case 298: + case 268: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(88); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '[') ADVANCE(81); + if (lookahead == '\\') ADVANCE(125); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(298); + lookahead != '/') ADVANCE(268); END_STATE(); - case 299: + case 269: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(106); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(299); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 300: + case 270: ACCEPT_TOKEN(sym_number); END_STATE(); - case 301: + case 271: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 309, - '0', 303, - '_', 123, - 'n', 300, - 'B', 119, - 'b', 119, - 'E', 117, - 'e', 117, - 'O', 120, - 'o', 120, - 'X', 128, - 'x', 128, + '.', 279, + '0', 273, + '_', 102, + 'n', 270, + 'B', 98, + 'b', 98, + 'E', 96, + 'e', 96, + 'O', 99, + 'o', 99, + 'X', 107, + 'x', 107, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); - case 302: + case 272: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(309); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 'n') ADVANCE(300); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '_') ADVANCE(100); + if (lookahead == 'n') ADVANCE(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); - case 303: + case 273: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(123); - if (lookahead == 'n') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (lookahead == '_') ADVANCE(102); + if (lookahead == 'n') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); - case 304: + case 274: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(119); - if (lookahead == 'n') ADVANCE(300); + if (lookahead == '_') ADVANCE(98); + if (lookahead == 'n') ADVANCE(270); if (lookahead == '0' || - lookahead == '1') ADVANCE(304); + lookahead == '1') ADVANCE(274); END_STATE(); - case 305: + case 275: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(120); - if (lookahead == 'n') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(305); + if (lookahead == '_') ADVANCE(99); + if (lookahead == 'n') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); END_STATE(); - case 306: + case 276: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(128); - if (lookahead == 'n') ADVANCE(300); + if (lookahead == '_') ADVANCE(107); + if (lookahead == 'n') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); - case 307: + case 277: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(122); + if (lookahead == '_') ADVANCE(101); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 308: + case 278: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(308); + if (lookahead == '_') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); - case 309: + case 279: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 310: + case 280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(181); - if (lookahead == '\\') ADVANCE(106); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '\\') ADVANCE(84); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(310); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 311: + case 281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(106); - if (lookahead == '{') ADVANCE(295); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '{') ADVANCE(265); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 312: + case 282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(106); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 313: + case 283: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(105); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(313); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(283); END_STATE(); - case 314: + case 284: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 315: + case 285: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 316: + case 286: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(202); + if (lookahead == '.') ADVANCE(175); END_STATE(); - case 317: + case 287: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '?') ADVANCE(269); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '?') ADVANCE(239); END_STATE(); - case 318: + case 288: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '?') ADVANCE(268); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '?') ADVANCE(238); END_STATE(); - case 319: + case 289: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); - case 320: + case 290: ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); - case 321: + case 291: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 322: + case 292: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 323: + case 293: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -13999,146 +13689,146 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 149, .external_lex_state = 2}, - [2] = {.lex_state = 4, .external_lex_state = 3}, - [3] = {.lex_state = 4, .external_lex_state = 3}, - [4] = {.lex_state = 149, .external_lex_state = 2}, - [5] = {.lex_state = 149, .external_lex_state = 2}, - [6] = {.lex_state = 149, .external_lex_state = 2}, - [7] = {.lex_state = 149, .external_lex_state = 2}, - [8] = {.lex_state = 149, .external_lex_state = 2}, - [9] = {.lex_state = 149, .external_lex_state = 2}, - [10] = {.lex_state = 149, .external_lex_state = 2}, - [11] = {.lex_state = 149, .external_lex_state = 2}, - [12] = {.lex_state = 149, .external_lex_state = 2}, - [13] = {.lex_state = 149, .external_lex_state = 2}, - [14] = {.lex_state = 149, .external_lex_state = 2}, - [15] = {.lex_state = 149, .external_lex_state = 2}, - [16] = {.lex_state = 149, .external_lex_state = 2}, - [17] = {.lex_state = 149, .external_lex_state = 2}, - [18] = {.lex_state = 149, .external_lex_state = 2}, - [19] = {.lex_state = 149, .external_lex_state = 2}, - [20] = {.lex_state = 149, .external_lex_state = 2}, - [21] = {.lex_state = 149, .external_lex_state = 2}, - [22] = {.lex_state = 149, .external_lex_state = 2}, - [23] = {.lex_state = 149, .external_lex_state = 2}, - [24] = {.lex_state = 149, .external_lex_state = 2}, - [25] = {.lex_state = 149, .external_lex_state = 2}, - [26] = {.lex_state = 149, .external_lex_state = 2}, - [27] = {.lex_state = 149, .external_lex_state = 2}, - [28] = {.lex_state = 149, .external_lex_state = 2}, - [29] = {.lex_state = 149, .external_lex_state = 2}, - [30] = {.lex_state = 149, .external_lex_state = 2}, - [31] = {.lex_state = 149, .external_lex_state = 2}, - [32] = {.lex_state = 149, .external_lex_state = 2}, - [33] = {.lex_state = 149, .external_lex_state = 2}, - [34] = {.lex_state = 149, .external_lex_state = 2}, - [35] = {.lex_state = 149, .external_lex_state = 2}, - [36] = {.lex_state = 149, .external_lex_state = 2}, - [37] = {.lex_state = 149, .external_lex_state = 2}, - [38] = {.lex_state = 149, .external_lex_state = 2}, - [39] = {.lex_state = 149, .external_lex_state = 2}, - [40] = {.lex_state = 149, .external_lex_state = 2}, - [41] = {.lex_state = 149, .external_lex_state = 2}, - [42] = {.lex_state = 149, .external_lex_state = 2}, - [43] = {.lex_state = 149, .external_lex_state = 2}, - [44] = {.lex_state = 149, .external_lex_state = 2}, - [45] = {.lex_state = 149, .external_lex_state = 2}, - [46] = {.lex_state = 149, .external_lex_state = 2}, - [47] = {.lex_state = 149, .external_lex_state = 2}, - [48] = {.lex_state = 149, .external_lex_state = 2}, - [49] = {.lex_state = 149, .external_lex_state = 2}, - [50] = {.lex_state = 149, .external_lex_state = 2}, - [51] = {.lex_state = 149, .external_lex_state = 2}, - [52] = {.lex_state = 11, .external_lex_state = 2}, - [53] = {.lex_state = 149, .external_lex_state = 2}, - [54] = {.lex_state = 149, .external_lex_state = 2}, - [55] = {.lex_state = 149, .external_lex_state = 2}, - [56] = {.lex_state = 149, .external_lex_state = 2}, - [57] = {.lex_state = 149, .external_lex_state = 2}, - [58] = {.lex_state = 149, .external_lex_state = 2}, - [59] = {.lex_state = 149, .external_lex_state = 2}, - [60] = {.lex_state = 149, .external_lex_state = 2}, - [61] = {.lex_state = 149, .external_lex_state = 2}, - [62] = {.lex_state = 11, .external_lex_state = 2}, - [63] = {.lex_state = 11, .external_lex_state = 2}, - [64] = {.lex_state = 11, .external_lex_state = 2}, - [65] = {.lex_state = 11, .external_lex_state = 2}, - [66] = {.lex_state = 149, .external_lex_state = 2}, - [67] = {.lex_state = 11, .external_lex_state = 2}, - [68] = {.lex_state = 11, .external_lex_state = 2}, - [69] = {.lex_state = 11, .external_lex_state = 2}, - [70] = {.lex_state = 11, .external_lex_state = 2}, - [71] = {.lex_state = 11, .external_lex_state = 2}, - [72] = {.lex_state = 149, .external_lex_state = 2}, - [73] = {.lex_state = 149, .external_lex_state = 2}, - [74] = {.lex_state = 149, .external_lex_state = 2}, - [75] = {.lex_state = 149, .external_lex_state = 2}, - [76] = {.lex_state = 149, .external_lex_state = 2}, - [77] = {.lex_state = 149, .external_lex_state = 2}, - [78] = {.lex_state = 149, .external_lex_state = 2}, - [79] = {.lex_state = 149, .external_lex_state = 2}, - [80] = {.lex_state = 149, .external_lex_state = 2}, - [81] = {.lex_state = 149, .external_lex_state = 2}, - [82] = {.lex_state = 149, .external_lex_state = 2}, - [83] = {.lex_state = 149, .external_lex_state = 2}, - [84] = {.lex_state = 149, .external_lex_state = 2}, - [85] = {.lex_state = 149, .external_lex_state = 2}, - [86] = {.lex_state = 149, .external_lex_state = 2}, + [1] = {.lex_state = 128, .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}, + [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}, + [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}, [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}, - [91] = {.lex_state = 3, .external_lex_state = 3}, + [91] = {.lex_state = 8, .external_lex_state = 2}, [92] = {.lex_state = 3, .external_lex_state = 3}, - [93] = {.lex_state = 11, .external_lex_state = 2}, - [94] = {.lex_state = 11, .external_lex_state = 2}, - [95] = {.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}, [96] = {.lex_state = 3, .external_lex_state = 3}, [97] = {.lex_state = 3, .external_lex_state = 3}, [98] = {.lex_state = 3, .external_lex_state = 3}, - [99] = {.lex_state = 3, .external_lex_state = 3}, - [100] = {.lex_state = 11, .external_lex_state = 2}, - [101] = {.lex_state = 11, .external_lex_state = 2}, - [102] = {.lex_state = 3, .external_lex_state = 3}, + [99] = {.lex_state = 8, .external_lex_state = 2}, + [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 = 11, .external_lex_state = 2}, - [105] = {.lex_state = 3, .external_lex_state = 3}, - [106] = {.lex_state = 11, .external_lex_state = 2}, + [104] = {.lex_state = 8, .external_lex_state = 2}, + [105] = {.lex_state = 8, .external_lex_state = 2}, + [106] = {.lex_state = 8, .external_lex_state = 2}, [107] = {.lex_state = 3, .external_lex_state = 3}, - [108] = {.lex_state = 11, .external_lex_state = 2}, - [109] = {.lex_state = 11, .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 = 4}, + [112] = {.lex_state = 3, .external_lex_state = 3}, [113] = {.lex_state = 3, .external_lex_state = 4}, - [114] = {.lex_state = 3, .external_lex_state = 3}, + [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}, + [119] = {.lex_state = 3, .external_lex_state = 4}, [120] = {.lex_state = 3, .external_lex_state = 4}, [121] = {.lex_state = 3, .external_lex_state = 4}, - [122] = {.lex_state = 3, .external_lex_state = 4}, + [122] = {.lex_state = 3, .external_lex_state = 3}, [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}, + [128] = {.lex_state = 3, .external_lex_state = 4}, + [129] = {.lex_state = 3, .external_lex_state = 4}, [130] = {.lex_state = 3, .external_lex_state = 3}, - [131] = {.lex_state = 3, .external_lex_state = 3}, + [131] = {.lex_state = 3, .external_lex_state = 4}, [132] = {.lex_state = 3, .external_lex_state = 3}, [133] = {.lex_state = 3, .external_lex_state = 3}, - [134] = {.lex_state = 3, .external_lex_state = 4}, - [135] = {.lex_state = 3, .external_lex_state = 4}, + [134] = {.lex_state = 3, .external_lex_state = 3}, + [135] = {.lex_state = 3, .external_lex_state = 3}, [136] = {.lex_state = 3, .external_lex_state = 3}, [137] = {.lex_state = 3, .external_lex_state = 3}, [138] = {.lex_state = 3, .external_lex_state = 3}, [139] = {.lex_state = 3, .external_lex_state = 3}, - [140] = {.lex_state = 3, .external_lex_state = 4}, + [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}, @@ -14156,5846 +13846,5834 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 11, .external_lex_state = 2}, - [159] = {.lex_state = 3, .external_lex_state = 3}, + [158] = {.lex_state = 3, .external_lex_state = 3}, + [159] = {.lex_state = 8, .external_lex_state = 2}, [160] = {.lex_state = 3, .external_lex_state = 3}, - [161] = {.lex_state = 11, .external_lex_state = 2}, - [162] = {.lex_state = 11, .external_lex_state = 2}, - [163] = {.lex_state = 11, .external_lex_state = 2}, - [164] = {.lex_state = 11, .external_lex_state = 2}, - [165] = {.lex_state = 11, .external_lex_state = 2}, - [166] = {.lex_state = 11, .external_lex_state = 2}, - [167] = {.lex_state = 11, .external_lex_state = 2}, - [168] = {.lex_state = 11, .external_lex_state = 2}, - [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 148, .external_lex_state = 3}, - [174] = {.lex_state = 148, .external_lex_state = 4}, - [175] = {.lex_state = 148, .external_lex_state = 4}, - [176] = {.lex_state = 148, .external_lex_state = 4}, - [177] = {.lex_state = 148, .external_lex_state = 3}, - [178] = {.lex_state = 148, .external_lex_state = 3}, - [179] = {.lex_state = 148, .external_lex_state = 3}, - [180] = {.lex_state = 148, .external_lex_state = 3}, - [181] = {.lex_state = 148, .external_lex_state = 3}, - [182] = {.lex_state = 5, .external_lex_state = 3}, - [183] = {.lex_state = 149, .external_lex_state = 2}, - [184] = {.lex_state = 149, .external_lex_state = 2}, - [185] = {.lex_state = 149, .external_lex_state = 2}, - [186] = {.lex_state = 149, .external_lex_state = 2}, - [187] = {.lex_state = 149, .external_lex_state = 2}, - [188] = {.lex_state = 149, .external_lex_state = 2}, - [189] = {.lex_state = 149, .external_lex_state = 2}, - [190] = {.lex_state = 149, .external_lex_state = 2}, - [191] = {.lex_state = 5, .external_lex_state = 4}, - [192] = {.lex_state = 5, .external_lex_state = 4}, - [193] = {.lex_state = 5, .external_lex_state = 3}, - [194] = {.lex_state = 5, .external_lex_state = 3}, - [195] = {.lex_state = 5, .external_lex_state = 3}, - [196] = {.lex_state = 5, .external_lex_state = 4}, - [197] = {.lex_state = 5, .external_lex_state = 3}, - [198] = {.lex_state = 5, .external_lex_state = 3}, - [199] = {.lex_state = 5, .external_lex_state = 3}, - [200] = {.lex_state = 5, .external_lex_state = 3}, - [201] = {.lex_state = 5, .external_lex_state = 3}, - [202] = {.lex_state = 5, .external_lex_state = 3}, - [203] = {.lex_state = 5, .external_lex_state = 3}, - [204] = {.lex_state = 149, .external_lex_state = 2}, - [205] = {.lex_state = 149, .external_lex_state = 2}, - [206] = {.lex_state = 149, .external_lex_state = 2}, - [207] = {.lex_state = 149, .external_lex_state = 2}, - [208] = {.lex_state = 149, .external_lex_state = 2}, - [209] = {.lex_state = 149, .external_lex_state = 2}, - [210] = {.lex_state = 149, .external_lex_state = 2}, - [211] = {.lex_state = 149, .external_lex_state = 2}, - [212] = {.lex_state = 149, .external_lex_state = 2}, - [213] = {.lex_state = 149, .external_lex_state = 2}, - [214] = {.lex_state = 149, .external_lex_state = 2}, - [215] = {.lex_state = 149, .external_lex_state = 2}, - [216] = {.lex_state = 149, .external_lex_state = 2}, - [217] = {.lex_state = 149, .external_lex_state = 2}, - [218] = {.lex_state = 149, .external_lex_state = 2}, - [219] = {.lex_state = 149, .external_lex_state = 2}, - [220] = {.lex_state = 149, .external_lex_state = 2}, - [221] = {.lex_state = 149, .external_lex_state = 2}, - [222] = {.lex_state = 149, .external_lex_state = 2}, - [223] = {.lex_state = 149, .external_lex_state = 2}, - [224] = {.lex_state = 148, .external_lex_state = 4}, - [225] = {.lex_state = 148, .external_lex_state = 4}, - [226] = {.lex_state = 149, .external_lex_state = 5}, - [227] = {.lex_state = 148, .external_lex_state = 4}, - [228] = {.lex_state = 149, .external_lex_state = 2}, - [229] = {.lex_state = 148, .external_lex_state = 4}, - [230] = {.lex_state = 149, .external_lex_state = 2}, - [231] = {.lex_state = 149, .external_lex_state = 2}, - [232] = {.lex_state = 148, .external_lex_state = 4}, - [233] = {.lex_state = 149, .external_lex_state = 2}, - [234] = {.lex_state = 148, .external_lex_state = 4}, - [235] = {.lex_state = 148, .external_lex_state = 4}, - [236] = {.lex_state = 149, .external_lex_state = 2}, - [237] = {.lex_state = 148, .external_lex_state = 4}, - [238] = {.lex_state = 148, .external_lex_state = 4}, - [239] = {.lex_state = 148, .external_lex_state = 4}, - [240] = {.lex_state = 148, .external_lex_state = 4}, - [241] = {.lex_state = 148, .external_lex_state = 4}, - [242] = {.lex_state = 149, .external_lex_state = 2}, - [243] = {.lex_state = 148, .external_lex_state = 4}, - [244] = {.lex_state = 149, .external_lex_state = 2}, - [245] = {.lex_state = 148, .external_lex_state = 4}, - [246] = {.lex_state = 148, .external_lex_state = 4}, - [247] = {.lex_state = 149, .external_lex_state = 2}, - [248] = {.lex_state = 148, .external_lex_state = 4}, - [249] = {.lex_state = 148, .external_lex_state = 4}, - [250] = {.lex_state = 148, .external_lex_state = 4}, - [251] = {.lex_state = 148, .external_lex_state = 4}, - [252] = {.lex_state = 148, .external_lex_state = 4}, - [253] = {.lex_state = 148, .external_lex_state = 4}, - [254] = {.lex_state = 148, .external_lex_state = 4}, - [255] = {.lex_state = 148, .external_lex_state = 4}, - [256] = {.lex_state = 148, .external_lex_state = 4}, - [257] = {.lex_state = 148, .external_lex_state = 4}, - [258] = {.lex_state = 149, .external_lex_state = 2}, - [259] = {.lex_state = 149, .external_lex_state = 2}, - [260] = {.lex_state = 148, .external_lex_state = 4}, - [261] = {.lex_state = 148, .external_lex_state = 4}, - [262] = {.lex_state = 148, .external_lex_state = 4}, - [263] = {.lex_state = 149, .external_lex_state = 2}, - [264] = {.lex_state = 148, .external_lex_state = 4}, - [265] = {.lex_state = 149, .external_lex_state = 2}, - [266] = {.lex_state = 149, .external_lex_state = 2}, - [267] = {.lex_state = 149, .external_lex_state = 2}, - [268] = {.lex_state = 149, .external_lex_state = 2}, - [269] = {.lex_state = 149, .external_lex_state = 2}, - [270] = {.lex_state = 149, .external_lex_state = 2}, - [271] = {.lex_state = 149, .external_lex_state = 2}, - [272] = {.lex_state = 149, .external_lex_state = 2}, - [273] = {.lex_state = 149, .external_lex_state = 2}, - [274] = {.lex_state = 149, .external_lex_state = 2}, - [275] = {.lex_state = 149, .external_lex_state = 2}, - [276] = {.lex_state = 149, .external_lex_state = 2}, - [277] = {.lex_state = 149, .external_lex_state = 2}, - [278] = {.lex_state = 149, .external_lex_state = 2}, - [279] = {.lex_state = 149, .external_lex_state = 2}, - [280] = {.lex_state = 149, .external_lex_state = 2}, - [281] = {.lex_state = 149, .external_lex_state = 2}, - [282] = {.lex_state = 149, .external_lex_state = 2}, - [283] = {.lex_state = 149, .external_lex_state = 2}, - [284] = {.lex_state = 149, .external_lex_state = 2}, + [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 = 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}, + [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}, + [195] = {.lex_state = 2, .external_lex_state = 3}, + [196] = {.lex_state = 2, .external_lex_state = 3}, + [197] = {.lex_state = 2, .external_lex_state = 4}, + [198] = {.lex_state = 2, .external_lex_state = 3}, + [199] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 149, .external_lex_state = 2}, - [287] = {.lex_state = 149, .external_lex_state = 2}, - [288] = {.lex_state = 149, .external_lex_state = 2}, - [289] = {.lex_state = 149, .external_lex_state = 2}, - [290] = {.lex_state = 149, .external_lex_state = 2}, - [291] = {.lex_state = 149, .external_lex_state = 2}, - [292] = {.lex_state = 149, .external_lex_state = 2}, - [293] = {.lex_state = 149, .external_lex_state = 2}, - [294] = {.lex_state = 149, .external_lex_state = 2}, - [295] = {.lex_state = 3, .external_lex_state = 3}, - [296] = {.lex_state = 149, .external_lex_state = 2}, - [297] = {.lex_state = 149, .external_lex_state = 2}, - [298] = {.lex_state = 149, .external_lex_state = 2}, - [299] = {.lex_state = 149, .external_lex_state = 2}, - [300] = {.lex_state = 3, .external_lex_state = 3}, - [301] = {.lex_state = 149, .external_lex_state = 2}, - [302] = {.lex_state = 149, .external_lex_state = 2}, - [303] = {.lex_state = 149, .external_lex_state = 2}, - [304] = {.lex_state = 149, .external_lex_state = 2}, - [305] = {.lex_state = 3, .external_lex_state = 3}, - [306] = {.lex_state = 149, .external_lex_state = 2}, - [307] = {.lex_state = 149, .external_lex_state = 2}, - [308] = {.lex_state = 149, .external_lex_state = 2}, - [309] = {.lex_state = 149, .external_lex_state = 5}, - [310] = {.lex_state = 149, .external_lex_state = 2}, - [311] = {.lex_state = 149, .external_lex_state = 2}, - [312] = {.lex_state = 149, .external_lex_state = 2}, - [313] = {.lex_state = 149, .external_lex_state = 2}, - [314] = {.lex_state = 149, .external_lex_state = 2}, - [315] = {.lex_state = 149, .external_lex_state = 2}, - [316] = {.lex_state = 149, .external_lex_state = 2}, - [317] = {.lex_state = 149, .external_lex_state = 2}, - [318] = {.lex_state = 149, .external_lex_state = 2}, - [319] = {.lex_state = 149, .external_lex_state = 2}, - [320] = {.lex_state = 149, .external_lex_state = 2}, - [321] = {.lex_state = 149, .external_lex_state = 2}, - [322] = {.lex_state = 149, .external_lex_state = 2}, - [323] = {.lex_state = 149, .external_lex_state = 2}, - [324] = {.lex_state = 149, .external_lex_state = 2}, - [325] = {.lex_state = 149, .external_lex_state = 2}, - [326] = {.lex_state = 149, .external_lex_state = 2}, - [327] = {.lex_state = 149, .external_lex_state = 2}, - [328] = {.lex_state = 149, .external_lex_state = 2}, - [329] = {.lex_state = 149, .external_lex_state = 2}, - [330] = {.lex_state = 149, .external_lex_state = 2}, - [331] = {.lex_state = 149, .external_lex_state = 2}, - [332] = {.lex_state = 149, .external_lex_state = 2}, - [333] = {.lex_state = 149, .external_lex_state = 2}, - [334] = {.lex_state = 149, .external_lex_state = 2}, - [335] = {.lex_state = 149, .external_lex_state = 2}, - [336] = {.lex_state = 149, .external_lex_state = 2}, - [337] = {.lex_state = 149, .external_lex_state = 2}, - [338] = {.lex_state = 149, .external_lex_state = 2}, - [339] = {.lex_state = 149, .external_lex_state = 2}, - [340] = {.lex_state = 149, .external_lex_state = 2}, - [341] = {.lex_state = 149, .external_lex_state = 2}, - [342] = {.lex_state = 149, .external_lex_state = 2}, - [343] = {.lex_state = 149, .external_lex_state = 2}, - [344] = {.lex_state = 149, .external_lex_state = 2}, - [345] = {.lex_state = 149, .external_lex_state = 2}, - [346] = {.lex_state = 149, .external_lex_state = 2}, - [347] = {.lex_state = 149, .external_lex_state = 2}, - [348] = {.lex_state = 149, .external_lex_state = 2}, - [349] = {.lex_state = 149, .external_lex_state = 2}, - [350] = {.lex_state = 149, .external_lex_state = 2}, - [351] = {.lex_state = 149, .external_lex_state = 2}, - [352] = {.lex_state = 149, .external_lex_state = 2}, - [353] = {.lex_state = 149, .external_lex_state = 2}, - [354] = {.lex_state = 149, .external_lex_state = 2}, - [355] = {.lex_state = 149, .external_lex_state = 2}, - [356] = {.lex_state = 149, .external_lex_state = 2}, - [357] = {.lex_state = 149, .external_lex_state = 2}, - [358] = {.lex_state = 149, .external_lex_state = 2}, - [359] = {.lex_state = 149, .external_lex_state = 2}, - [360] = {.lex_state = 149, .external_lex_state = 2}, - [361] = {.lex_state = 149, .external_lex_state = 2}, - [362] = {.lex_state = 149, .external_lex_state = 2}, - [363] = {.lex_state = 149, .external_lex_state = 2}, - [364] = {.lex_state = 149, .external_lex_state = 2}, - [365] = {.lex_state = 149, .external_lex_state = 2}, - [366] = {.lex_state = 149, .external_lex_state = 2}, - [367] = {.lex_state = 149, .external_lex_state = 2}, - [368] = {.lex_state = 149, .external_lex_state = 2}, - [369] = {.lex_state = 149, .external_lex_state = 2}, - [370] = {.lex_state = 149, .external_lex_state = 2}, - [371] = {.lex_state = 149, .external_lex_state = 2}, - [372] = {.lex_state = 149, .external_lex_state = 2}, - [373] = {.lex_state = 149, .external_lex_state = 2}, - [374] = {.lex_state = 149, .external_lex_state = 2}, - [375] = {.lex_state = 149, .external_lex_state = 2}, - [376] = {.lex_state = 149, .external_lex_state = 2}, - [377] = {.lex_state = 149, .external_lex_state = 2}, - [378] = {.lex_state = 149, .external_lex_state = 2}, - [379] = {.lex_state = 149, .external_lex_state = 2}, - [380] = {.lex_state = 149, .external_lex_state = 2}, - [381] = {.lex_state = 149, .external_lex_state = 2}, - [382] = {.lex_state = 149, .external_lex_state = 2}, - [383] = {.lex_state = 149, .external_lex_state = 2}, - [384] = {.lex_state = 149, .external_lex_state = 2}, - [385] = {.lex_state = 149, .external_lex_state = 2}, - [386] = {.lex_state = 149, .external_lex_state = 2}, - [387] = {.lex_state = 149, .external_lex_state = 2}, - [388] = {.lex_state = 149, .external_lex_state = 2}, - [389] = {.lex_state = 149, .external_lex_state = 2}, - [390] = {.lex_state = 149, .external_lex_state = 2}, - [391] = {.lex_state = 149, .external_lex_state = 2}, - [392] = {.lex_state = 149, .external_lex_state = 2}, - [393] = {.lex_state = 149, .external_lex_state = 2}, - [394] = {.lex_state = 149, .external_lex_state = 2}, - [395] = {.lex_state = 149, .external_lex_state = 2}, - [396] = {.lex_state = 149, .external_lex_state = 2}, - [397] = {.lex_state = 149, .external_lex_state = 2}, - [398] = {.lex_state = 149, .external_lex_state = 2}, - [399] = {.lex_state = 149, .external_lex_state = 2}, - [400] = {.lex_state = 149, .external_lex_state = 2}, - [401] = {.lex_state = 149, .external_lex_state = 2}, - [402] = {.lex_state = 149, .external_lex_state = 2}, - [403] = {.lex_state = 149, .external_lex_state = 2}, - [404] = {.lex_state = 149, .external_lex_state = 2}, - [405] = {.lex_state = 149, .external_lex_state = 2}, - [406] = {.lex_state = 149, .external_lex_state = 2}, - [407] = {.lex_state = 149, .external_lex_state = 2}, - [408] = {.lex_state = 149, .external_lex_state = 2}, - [409] = {.lex_state = 149, .external_lex_state = 2}, - [410] = {.lex_state = 149, .external_lex_state = 2}, - [411] = {.lex_state = 149, .external_lex_state = 2}, - [412] = {.lex_state = 149, .external_lex_state = 2}, - [413] = {.lex_state = 149, .external_lex_state = 2}, - [414] = {.lex_state = 149, .external_lex_state = 2}, - [415] = {.lex_state = 149, .external_lex_state = 2}, - [416] = {.lex_state = 149, .external_lex_state = 2}, - [417] = {.lex_state = 149, .external_lex_state = 2}, - [418] = {.lex_state = 149, .external_lex_state = 2}, - [419] = {.lex_state = 149, .external_lex_state = 2}, - [420] = {.lex_state = 149, .external_lex_state = 2}, - [421] = {.lex_state = 149, .external_lex_state = 2}, - [422] = {.lex_state = 149, .external_lex_state = 2}, - [423] = {.lex_state = 149, .external_lex_state = 2}, - [424] = {.lex_state = 149, .external_lex_state = 2}, - [425] = {.lex_state = 149, .external_lex_state = 2}, - [426] = {.lex_state = 149, .external_lex_state = 2}, - [427] = {.lex_state = 149, .external_lex_state = 2}, - [428] = {.lex_state = 149, .external_lex_state = 2}, - [429] = {.lex_state = 149, .external_lex_state = 2}, - [430] = {.lex_state = 149, .external_lex_state = 2}, - [431] = {.lex_state = 149, .external_lex_state = 2}, - [432] = {.lex_state = 149, .external_lex_state = 2}, - [433] = {.lex_state = 149, .external_lex_state = 2}, - [434] = {.lex_state = 149, .external_lex_state = 2}, - [435] = {.lex_state = 149, .external_lex_state = 2}, - [436] = {.lex_state = 149, .external_lex_state = 2}, - [437] = {.lex_state = 149, .external_lex_state = 2}, - [438] = {.lex_state = 149, .external_lex_state = 2}, - [439] = {.lex_state = 149, .external_lex_state = 2}, - [440] = {.lex_state = 149, .external_lex_state = 2}, - [441] = {.lex_state = 149, .external_lex_state = 2}, - [442] = {.lex_state = 149, .external_lex_state = 2}, - [443] = {.lex_state = 149, .external_lex_state = 2}, - [444] = {.lex_state = 149, .external_lex_state = 2}, - [445] = {.lex_state = 149, .external_lex_state = 2}, - [446] = {.lex_state = 149, .external_lex_state = 2}, - [447] = {.lex_state = 149, .external_lex_state = 2}, - [448] = {.lex_state = 149, .external_lex_state = 2}, - [449] = {.lex_state = 149, .external_lex_state = 2}, - [450] = {.lex_state = 149, .external_lex_state = 2}, - [451] = {.lex_state = 149, .external_lex_state = 2}, - [452] = {.lex_state = 149, .external_lex_state = 2}, - [453] = {.lex_state = 149, .external_lex_state = 2}, - [454] = {.lex_state = 149, .external_lex_state = 2}, - [455] = {.lex_state = 149, .external_lex_state = 2}, - [456] = {.lex_state = 149, .external_lex_state = 2}, - [457] = {.lex_state = 149, .external_lex_state = 2}, - [458] = {.lex_state = 149, .external_lex_state = 2}, - [459] = {.lex_state = 149, .external_lex_state = 2}, - [460] = {.lex_state = 149, .external_lex_state = 2}, - [461] = {.lex_state = 149, .external_lex_state = 2}, - [462] = {.lex_state = 149, .external_lex_state = 2}, - [463] = {.lex_state = 149, .external_lex_state = 2}, - [464] = {.lex_state = 149, .external_lex_state = 2}, - [465] = {.lex_state = 149, .external_lex_state = 2}, - [466] = {.lex_state = 149, .external_lex_state = 2}, - [467] = {.lex_state = 149, .external_lex_state = 2}, - [468] = {.lex_state = 149, .external_lex_state = 2}, - [469] = {.lex_state = 149, .external_lex_state = 2}, - [470] = {.lex_state = 149, .external_lex_state = 2}, - [471] = {.lex_state = 149, .external_lex_state = 2}, - [472] = {.lex_state = 149, .external_lex_state = 2}, - [473] = {.lex_state = 149, .external_lex_state = 2}, - [474] = {.lex_state = 149, .external_lex_state = 2}, - [475] = {.lex_state = 149, .external_lex_state = 2}, - [476] = {.lex_state = 149, .external_lex_state = 2}, - [477] = {.lex_state = 149, .external_lex_state = 2}, - [478] = {.lex_state = 149, .external_lex_state = 2}, - [479] = {.lex_state = 149, .external_lex_state = 2}, - [480] = {.lex_state = 149, .external_lex_state = 2}, - [481] = {.lex_state = 149, .external_lex_state = 2}, - [482] = {.lex_state = 149, .external_lex_state = 2}, - [483] = {.lex_state = 149, .external_lex_state = 2}, - [484] = {.lex_state = 149, .external_lex_state = 2}, - [485] = {.lex_state = 149, .external_lex_state = 2}, - [486] = {.lex_state = 149, .external_lex_state = 2}, - [487] = {.lex_state = 149, .external_lex_state = 2}, - [488] = {.lex_state = 149, .external_lex_state = 2}, - [489] = {.lex_state = 149, .external_lex_state = 2}, - [490] = {.lex_state = 149, .external_lex_state = 2}, - [491] = {.lex_state = 149, .external_lex_state = 2}, - [492] = {.lex_state = 149, .external_lex_state = 2}, - [493] = {.lex_state = 149, .external_lex_state = 2}, - [494] = {.lex_state = 149, .external_lex_state = 2}, - [495] = {.lex_state = 149, .external_lex_state = 2}, - [496] = {.lex_state = 149, .external_lex_state = 2}, - [497] = {.lex_state = 149, .external_lex_state = 2}, - [498] = {.lex_state = 149, .external_lex_state = 2}, - [499] = {.lex_state = 149, .external_lex_state = 2}, - [500] = {.lex_state = 149, .external_lex_state = 2}, - [501] = {.lex_state = 149, .external_lex_state = 2}, - [502] = {.lex_state = 149, .external_lex_state = 2}, - [503] = {.lex_state = 149, .external_lex_state = 2}, - [504] = {.lex_state = 149, .external_lex_state = 2}, - [505] = {.lex_state = 149, .external_lex_state = 2}, - [506] = {.lex_state = 149, .external_lex_state = 2}, - [507] = {.lex_state = 149, .external_lex_state = 2}, - [508] = {.lex_state = 149, .external_lex_state = 2}, - [509] = {.lex_state = 149, .external_lex_state = 2}, - [510] = {.lex_state = 149, .external_lex_state = 2}, - [511] = {.lex_state = 149, .external_lex_state = 2}, - [512] = {.lex_state = 149, .external_lex_state = 2}, - [513] = {.lex_state = 149, .external_lex_state = 2}, - [514] = {.lex_state = 149, .external_lex_state = 2}, - [515] = {.lex_state = 149, .external_lex_state = 2}, - [516] = {.lex_state = 149, .external_lex_state = 2}, - [517] = {.lex_state = 149, .external_lex_state = 2}, - [518] = {.lex_state = 149, .external_lex_state = 2}, - [519] = {.lex_state = 149, .external_lex_state = 2}, - [520] = {.lex_state = 149, .external_lex_state = 2}, - [521] = {.lex_state = 149, .external_lex_state = 2}, - [522] = {.lex_state = 149, .external_lex_state = 2}, - [523] = {.lex_state = 149, .external_lex_state = 2}, - [524] = {.lex_state = 149, .external_lex_state = 2}, - [525] = {.lex_state = 149, .external_lex_state = 2}, - [526] = {.lex_state = 149, .external_lex_state = 2}, - [527] = {.lex_state = 149, .external_lex_state = 2}, - [528] = {.lex_state = 149, .external_lex_state = 2}, - [529] = {.lex_state = 149, .external_lex_state = 2}, - [530] = {.lex_state = 149, .external_lex_state = 2}, - [531] = {.lex_state = 149, .external_lex_state = 2}, - [532] = {.lex_state = 149, .external_lex_state = 2}, - [533] = {.lex_state = 149, .external_lex_state = 2}, - [534] = {.lex_state = 149, .external_lex_state = 2}, - [535] = {.lex_state = 149, .external_lex_state = 2}, - [536] = {.lex_state = 149, .external_lex_state = 2}, - [537] = {.lex_state = 149, .external_lex_state = 2}, - [538] = {.lex_state = 149, .external_lex_state = 2}, - [539] = {.lex_state = 149, .external_lex_state = 2}, - [540] = {.lex_state = 149, .external_lex_state = 2}, - [541] = {.lex_state = 149, .external_lex_state = 2}, - [542] = {.lex_state = 149, .external_lex_state = 2}, - [543] = {.lex_state = 149, .external_lex_state = 2}, - [544] = {.lex_state = 149, .external_lex_state = 2}, - [545] = {.lex_state = 149, .external_lex_state = 2}, - [546] = {.lex_state = 149, .external_lex_state = 2}, - [547] = {.lex_state = 149, .external_lex_state = 2}, - [548] = {.lex_state = 149, .external_lex_state = 2}, - [549] = {.lex_state = 149, .external_lex_state = 2}, - [550] = {.lex_state = 149, .external_lex_state = 2}, - [551] = {.lex_state = 149, .external_lex_state = 2}, - [552] = {.lex_state = 149, .external_lex_state = 2}, - [553] = {.lex_state = 149, .external_lex_state = 2}, - [554] = {.lex_state = 149, .external_lex_state = 2}, - [555] = {.lex_state = 149, .external_lex_state = 2}, - [556] = {.lex_state = 149, .external_lex_state = 2}, - [557] = {.lex_state = 149, .external_lex_state = 2}, - [558] = {.lex_state = 149, .external_lex_state = 2}, - [559] = {.lex_state = 149, .external_lex_state = 2}, - [560] = {.lex_state = 149, .external_lex_state = 2}, - [561] = {.lex_state = 149, .external_lex_state = 2}, - [562] = {.lex_state = 149, .external_lex_state = 2}, - [563] = {.lex_state = 149, .external_lex_state = 2}, - [564] = {.lex_state = 149, .external_lex_state = 2}, - [565] = {.lex_state = 149, .external_lex_state = 2}, - [566] = {.lex_state = 149, .external_lex_state = 2}, - [567] = {.lex_state = 149, .external_lex_state = 2}, - [568] = {.lex_state = 149, .external_lex_state = 2}, - [569] = {.lex_state = 149, .external_lex_state = 2}, - [570] = {.lex_state = 149, .external_lex_state = 2}, - [571] = {.lex_state = 149, .external_lex_state = 2}, - [572] = {.lex_state = 149, .external_lex_state = 2}, - [573] = {.lex_state = 149, .external_lex_state = 2}, - [574] = {.lex_state = 149, .external_lex_state = 2}, - [575] = {.lex_state = 149, .external_lex_state = 2}, - [576] = {.lex_state = 149, .external_lex_state = 2}, - [577] = {.lex_state = 149, .external_lex_state = 2}, - [578] = {.lex_state = 149, .external_lex_state = 2}, - [579] = {.lex_state = 149, .external_lex_state = 2}, - [580] = {.lex_state = 149, .external_lex_state = 2}, - [581] = {.lex_state = 149, .external_lex_state = 2}, - [582] = {.lex_state = 149, .external_lex_state = 2}, - [583] = {.lex_state = 149, .external_lex_state = 2}, - [584] = {.lex_state = 149, .external_lex_state = 2}, - [585] = {.lex_state = 149, .external_lex_state = 2}, - [586] = {.lex_state = 149, .external_lex_state = 2}, - [587] = {.lex_state = 149, .external_lex_state = 2}, - [588] = {.lex_state = 149, .external_lex_state = 2}, - [589] = {.lex_state = 149, .external_lex_state = 2}, - [590] = {.lex_state = 149, .external_lex_state = 2}, - [591] = {.lex_state = 149, .external_lex_state = 2}, - [592] = {.lex_state = 149, .external_lex_state = 2}, - [593] = {.lex_state = 149, .external_lex_state = 2}, - [594] = {.lex_state = 149, .external_lex_state = 2}, - [595] = {.lex_state = 149, .external_lex_state = 2}, - [596] = {.lex_state = 149, .external_lex_state = 2}, - [597] = {.lex_state = 149, .external_lex_state = 2}, - [598] = {.lex_state = 149, .external_lex_state = 2}, - [599] = {.lex_state = 149, .external_lex_state = 2}, - [600] = {.lex_state = 149, .external_lex_state = 2}, - [601] = {.lex_state = 149, .external_lex_state = 2}, - [602] = {.lex_state = 149, .external_lex_state = 2}, - [603] = {.lex_state = 149, .external_lex_state = 2}, - [604] = {.lex_state = 149, .external_lex_state = 2}, - [605] = {.lex_state = 149, .external_lex_state = 2}, - [606] = {.lex_state = 149, .external_lex_state = 2}, - [607] = {.lex_state = 149, .external_lex_state = 2}, - [608] = {.lex_state = 149, .external_lex_state = 2}, - [609] = {.lex_state = 149, .external_lex_state = 2}, - [610] = {.lex_state = 149, .external_lex_state = 2}, - [611] = {.lex_state = 149, .external_lex_state = 2}, - [612] = {.lex_state = 149, .external_lex_state = 2}, - [613] = {.lex_state = 149, .external_lex_state = 2}, - [614] = {.lex_state = 149, .external_lex_state = 2}, - [615] = {.lex_state = 149, .external_lex_state = 2}, - [616] = {.lex_state = 149, .external_lex_state = 2}, - [617] = {.lex_state = 149, .external_lex_state = 2}, - [618] = {.lex_state = 149, .external_lex_state = 2}, - [619] = {.lex_state = 149, .external_lex_state = 2}, - [620] = {.lex_state = 149, .external_lex_state = 2}, - [621] = {.lex_state = 149, .external_lex_state = 2}, - [622] = {.lex_state = 149, .external_lex_state = 2}, - [623] = {.lex_state = 149, .external_lex_state = 2}, - [624] = {.lex_state = 149, .external_lex_state = 2}, - [625] = {.lex_state = 149, .external_lex_state = 2}, - [626] = {.lex_state = 149, .external_lex_state = 2}, - [627] = {.lex_state = 149, .external_lex_state = 2}, - [628] = {.lex_state = 149, .external_lex_state = 2}, - [629] = {.lex_state = 149, .external_lex_state = 2}, - [630] = {.lex_state = 149, .external_lex_state = 2}, - [631] = {.lex_state = 149, .external_lex_state = 2}, - [632] = {.lex_state = 149, .external_lex_state = 2}, - [633] = {.lex_state = 149, .external_lex_state = 2}, - [634] = {.lex_state = 149, .external_lex_state = 2}, - [635] = {.lex_state = 149, .external_lex_state = 2}, - [636] = {.lex_state = 149, .external_lex_state = 2}, - [637] = {.lex_state = 149, .external_lex_state = 2}, - [638] = {.lex_state = 149, .external_lex_state = 2}, - [639] = {.lex_state = 149, .external_lex_state = 2}, - [640] = {.lex_state = 149, .external_lex_state = 2}, - [641] = {.lex_state = 149, .external_lex_state = 2}, - [642] = {.lex_state = 149, .external_lex_state = 2}, - [643] = {.lex_state = 149, .external_lex_state = 2}, - [644] = {.lex_state = 149, .external_lex_state = 2}, - [645] = {.lex_state = 149, .external_lex_state = 2}, - [646] = {.lex_state = 149, .external_lex_state = 2}, - [647] = {.lex_state = 149, .external_lex_state = 2}, - [648] = {.lex_state = 149, .external_lex_state = 2}, - [649] = {.lex_state = 149, .external_lex_state = 2}, - [650] = {.lex_state = 149, .external_lex_state = 2}, - [651] = {.lex_state = 149, .external_lex_state = 2}, - [652] = {.lex_state = 149, .external_lex_state = 2}, - [653] = {.lex_state = 149, .external_lex_state = 2}, - [654] = {.lex_state = 149, .external_lex_state = 2}, - [655] = {.lex_state = 149, .external_lex_state = 2}, - [656] = {.lex_state = 149, .external_lex_state = 2}, - [657] = {.lex_state = 149, .external_lex_state = 2}, - [658] = {.lex_state = 6, .external_lex_state = 4}, - [659] = {.lex_state = 6, .external_lex_state = 4}, - [660] = {.lex_state = 6, .external_lex_state = 4}, - [661] = {.lex_state = 5, .external_lex_state = 4}, - [662] = {.lex_state = 5, .external_lex_state = 4}, - [663] = {.lex_state = 5, .external_lex_state = 4}, - [664] = {.lex_state = 5, .external_lex_state = 4}, - [665] = {.lex_state = 5, .external_lex_state = 4}, - [666] = {.lex_state = 5, .external_lex_state = 4}, - [667] = {.lex_state = 6, .external_lex_state = 4}, - [668] = {.lex_state = 6, .external_lex_state = 4}, - [669] = {.lex_state = 6, .external_lex_state = 4}, - [670] = {.lex_state = 5, .external_lex_state = 4}, - [671] = {.lex_state = 5, .external_lex_state = 4}, - [672] = {.lex_state = 5, .external_lex_state = 4}, - [673] = {.lex_state = 5, .external_lex_state = 4}, - [674] = {.lex_state = 5, .external_lex_state = 4}, - [675] = {.lex_state = 5, .external_lex_state = 4}, - [676] = {.lex_state = 5, .external_lex_state = 4}, - [677] = {.lex_state = 149, .external_lex_state = 2}, - [678] = {.lex_state = 149, .external_lex_state = 2}, - [679] = {.lex_state = 5, .external_lex_state = 4}, - [680] = {.lex_state = 5, .external_lex_state = 4}, - [681] = {.lex_state = 5, .external_lex_state = 4}, - [682] = {.lex_state = 149, .external_lex_state = 2}, - [683] = {.lex_state = 5, .external_lex_state = 4}, - [684] = {.lex_state = 149, .external_lex_state = 2}, - [685] = {.lex_state = 149, .external_lex_state = 2}, - [686] = {.lex_state = 5, .external_lex_state = 4}, - [687] = {.lex_state = 149, .external_lex_state = 2}, - [688] = {.lex_state = 149, .external_lex_state = 2}, - [689] = {.lex_state = 5, .external_lex_state = 4}, - [690] = {.lex_state = 5, .external_lex_state = 4}, - [691] = {.lex_state = 5, .external_lex_state = 4}, - [692] = {.lex_state = 5, .external_lex_state = 4}, - [693] = {.lex_state = 5, .external_lex_state = 4}, - [694] = {.lex_state = 5, .external_lex_state = 4}, - [695] = {.lex_state = 5, .external_lex_state = 4}, - [696] = {.lex_state = 5, .external_lex_state = 4}, - [697] = {.lex_state = 5, .external_lex_state = 4}, - [698] = {.lex_state = 5, .external_lex_state = 3}, - [699] = {.lex_state = 5, .external_lex_state = 3}, - [700] = {.lex_state = 5, .external_lex_state = 3}, - [701] = {.lex_state = 5, .external_lex_state = 3}, - [702] = {.lex_state = 5, .external_lex_state = 3}, - [703] = {.lex_state = 5, .external_lex_state = 3}, - [704] = {.lex_state = 5, .external_lex_state = 4}, - [705] = {.lex_state = 5, .external_lex_state = 4}, - [706] = {.lex_state = 5, .external_lex_state = 4}, - [707] = {.lex_state = 5, .external_lex_state = 4}, - [708] = {.lex_state = 5, .external_lex_state = 4}, - [709] = {.lex_state = 5, .external_lex_state = 4}, - [710] = {.lex_state = 5, .external_lex_state = 4}, - [711] = {.lex_state = 149, .external_lex_state = 2}, - [712] = {.lex_state = 5, .external_lex_state = 3}, - [713] = {.lex_state = 149, .external_lex_state = 5}, - [714] = {.lex_state = 5, .external_lex_state = 3}, - [715] = {.lex_state = 6, .external_lex_state = 3}, - [716] = {.lex_state = 6, .external_lex_state = 3}, - [717] = {.lex_state = 149, .external_lex_state = 5}, - [718] = {.lex_state = 5, .external_lex_state = 4}, - [719] = {.lex_state = 5, .external_lex_state = 3}, - [720] = {.lex_state = 5, .external_lex_state = 4}, - [721] = {.lex_state = 149, .external_lex_state = 5}, - [722] = {.lex_state = 149, .external_lex_state = 5}, - [723] = {.lex_state = 5, .external_lex_state = 3}, - [724] = {.lex_state = 149, .external_lex_state = 5}, - [725] = {.lex_state = 149, .external_lex_state = 5}, - [726] = {.lex_state = 149, .external_lex_state = 5}, - [727] = {.lex_state = 149, .external_lex_state = 5}, - [728] = {.lex_state = 5, .external_lex_state = 3}, - [729] = {.lex_state = 5, .external_lex_state = 3}, - [730] = {.lex_state = 5, .external_lex_state = 4}, - [731] = {.lex_state = 5, .external_lex_state = 4}, - [732] = {.lex_state = 5, .external_lex_state = 4}, - [733] = {.lex_state = 149, .external_lex_state = 2}, - [734] = {.lex_state = 149, .external_lex_state = 2}, - [735] = {.lex_state = 5, .external_lex_state = 3}, - [736] = {.lex_state = 5, .external_lex_state = 3}, - [737] = {.lex_state = 5, .external_lex_state = 3}, - [738] = {.lex_state = 149, .external_lex_state = 2}, - [739] = {.lex_state = 149, .external_lex_state = 2}, - [740] = {.lex_state = 5, .external_lex_state = 3}, - [741] = {.lex_state = 5, .external_lex_state = 3}, - [742] = {.lex_state = 5, .external_lex_state = 3}, - [743] = {.lex_state = 5, .external_lex_state = 3}, - [744] = {.lex_state = 149, .external_lex_state = 2}, - [745] = {.lex_state = 149, .external_lex_state = 2}, - [746] = {.lex_state = 5, .external_lex_state = 3}, - [747] = {.lex_state = 149, .external_lex_state = 2}, - [748] = {.lex_state = 149, .external_lex_state = 5}, - [749] = {.lex_state = 5, .external_lex_state = 3}, - [750] = {.lex_state = 149, .external_lex_state = 2}, - [751] = {.lex_state = 149, .external_lex_state = 2}, - [752] = {.lex_state = 5, .external_lex_state = 3}, - [753] = {.lex_state = 149, .external_lex_state = 5}, - [754] = {.lex_state = 5, .external_lex_state = 3}, - [755] = {.lex_state = 149, .external_lex_state = 5}, - [756] = {.lex_state = 149, .external_lex_state = 2}, - [757] = {.lex_state = 149, .external_lex_state = 5}, - [758] = {.lex_state = 149, .external_lex_state = 5}, - [759] = {.lex_state = 5, .external_lex_state = 3}, - [760] = {.lex_state = 149, .external_lex_state = 5}, - [761] = {.lex_state = 149, .external_lex_state = 5}, - [762] = {.lex_state = 149, .external_lex_state = 5}, - [763] = {.lex_state = 5, .external_lex_state = 3}, - [764] = {.lex_state = 149, .external_lex_state = 5}, - [765] = {.lex_state = 149, .external_lex_state = 5}, - [766] = {.lex_state = 5, .external_lex_state = 3}, - [767] = {.lex_state = 149, .external_lex_state = 2}, - [768] = {.lex_state = 149, .external_lex_state = 5}, - [769] = {.lex_state = 149, .external_lex_state = 5}, - [770] = {.lex_state = 149, .external_lex_state = 2}, - [771] = {.lex_state = 5, .external_lex_state = 3}, - [772] = {.lex_state = 149, .external_lex_state = 2}, - [773] = {.lex_state = 149, .external_lex_state = 5}, - [774] = {.lex_state = 149, .external_lex_state = 5}, - [775] = {.lex_state = 5, .external_lex_state = 3}, - [776] = {.lex_state = 149, .external_lex_state = 5}, - [777] = {.lex_state = 5, .external_lex_state = 3}, - [778] = {.lex_state = 149, .external_lex_state = 2}, - [779] = {.lex_state = 149, .external_lex_state = 2}, - [780] = {.lex_state = 149, .external_lex_state = 2}, - [781] = {.lex_state = 149, .external_lex_state = 2}, - [782] = {.lex_state = 149, .external_lex_state = 2}, - [783] = {.lex_state = 149, .external_lex_state = 2}, - [784] = {.lex_state = 149, .external_lex_state = 2}, - [785] = {.lex_state = 149, .external_lex_state = 2}, - [786] = {.lex_state = 12, .external_lex_state = 2}, - [787] = {.lex_state = 149, .external_lex_state = 2}, - [788] = {.lex_state = 149, .external_lex_state = 2}, - [789] = {.lex_state = 149, .external_lex_state = 2}, - [790] = {.lex_state = 149, .external_lex_state = 2}, - [791] = {.lex_state = 149, .external_lex_state = 2}, - [792] = {.lex_state = 12, .external_lex_state = 2}, - [793] = {.lex_state = 149, .external_lex_state = 2}, - [794] = {.lex_state = 149, .external_lex_state = 2}, - [795] = {.lex_state = 149, .external_lex_state = 2}, - [796] = {.lex_state = 149, .external_lex_state = 2}, - [797] = {.lex_state = 149, .external_lex_state = 2}, - [798] = {.lex_state = 149, .external_lex_state = 2}, - [799] = {.lex_state = 149, .external_lex_state = 2}, - [800] = {.lex_state = 149, .external_lex_state = 2}, - [801] = {.lex_state = 149, .external_lex_state = 2}, - [802] = {.lex_state = 149, .external_lex_state = 2}, - [803] = {.lex_state = 149, .external_lex_state = 2}, - [804] = {.lex_state = 149, .external_lex_state = 2}, - [805] = {.lex_state = 149, .external_lex_state = 2}, - [806] = {.lex_state = 12, .external_lex_state = 2}, - [807] = {.lex_state = 149, .external_lex_state = 2}, - [808] = {.lex_state = 149, .external_lex_state = 2}, - [809] = {.lex_state = 149, .external_lex_state = 2}, - [810] = {.lex_state = 149, .external_lex_state = 2}, - [811] = {.lex_state = 149, .external_lex_state = 2}, - [812] = {.lex_state = 149, .external_lex_state = 2}, - [813] = {.lex_state = 149, .external_lex_state = 2}, - [814] = {.lex_state = 149, .external_lex_state = 2}, - [815] = {.lex_state = 149, .external_lex_state = 2}, - [816] = {.lex_state = 149, .external_lex_state = 2}, - [817] = {.lex_state = 12, .external_lex_state = 2}, - [818] = {.lex_state = 149, .external_lex_state = 2}, - [819] = {.lex_state = 149, .external_lex_state = 2}, - [820] = {.lex_state = 149, .external_lex_state = 2}, - [821] = {.lex_state = 12, .external_lex_state = 2}, - [822] = {.lex_state = 149, .external_lex_state = 2}, - [823] = {.lex_state = 149, .external_lex_state = 2}, - [824] = {.lex_state = 149, .external_lex_state = 2}, - [825] = {.lex_state = 149, .external_lex_state = 2}, - [826] = {.lex_state = 149, .external_lex_state = 2}, - [827] = {.lex_state = 149, .external_lex_state = 2}, - [828] = {.lex_state = 149, .external_lex_state = 2}, - [829] = {.lex_state = 149, .external_lex_state = 2}, - [830] = {.lex_state = 149, .external_lex_state = 2}, - [831] = {.lex_state = 149, .external_lex_state = 2}, - [832] = {.lex_state = 149, .external_lex_state = 2}, - [833] = {.lex_state = 149, .external_lex_state = 2}, - [834] = {.lex_state = 149, .external_lex_state = 2}, - [835] = {.lex_state = 149, .external_lex_state = 2}, - [836] = {.lex_state = 149, .external_lex_state = 2}, - [837] = {.lex_state = 149, .external_lex_state = 2}, - [838] = {.lex_state = 149, .external_lex_state = 2}, - [839] = {.lex_state = 149, .external_lex_state = 2}, - [840] = {.lex_state = 149, .external_lex_state = 2}, - [841] = {.lex_state = 149, .external_lex_state = 2}, - [842] = {.lex_state = 149, .external_lex_state = 2}, - [843] = {.lex_state = 149, .external_lex_state = 2}, - [844] = {.lex_state = 149, .external_lex_state = 2}, - [845] = {.lex_state = 149, .external_lex_state = 2}, - [846] = {.lex_state = 149, .external_lex_state = 2}, - [847] = {.lex_state = 149, .external_lex_state = 2}, - [848] = {.lex_state = 149, .external_lex_state = 2}, - [849] = {.lex_state = 149, .external_lex_state = 2}, - [850] = {.lex_state = 149, .external_lex_state = 2}, - [851] = {.lex_state = 149, .external_lex_state = 2}, - [852] = {.lex_state = 149, .external_lex_state = 2}, - [853] = {.lex_state = 149, .external_lex_state = 2}, - [854] = {.lex_state = 149, .external_lex_state = 2}, - [855] = {.lex_state = 149, .external_lex_state = 2}, - [856] = {.lex_state = 149, .external_lex_state = 2}, - [857] = {.lex_state = 149, .external_lex_state = 2}, - [858] = {.lex_state = 149, .external_lex_state = 2}, - [859] = {.lex_state = 149, .external_lex_state = 2}, - [860] = {.lex_state = 149, .external_lex_state = 2}, - [861] = {.lex_state = 149, .external_lex_state = 2}, - [862] = {.lex_state = 149, .external_lex_state = 2}, - [863] = {.lex_state = 149, .external_lex_state = 2}, - [864] = {.lex_state = 149, .external_lex_state = 2}, - [865] = {.lex_state = 149, .external_lex_state = 2}, - [866] = {.lex_state = 149, .external_lex_state = 2}, - [867] = {.lex_state = 149, .external_lex_state = 2}, - [868] = {.lex_state = 149, .external_lex_state = 2}, - [869] = {.lex_state = 149, .external_lex_state = 2}, - [870] = {.lex_state = 149, .external_lex_state = 2}, - [871] = {.lex_state = 149, .external_lex_state = 2}, - [872] = {.lex_state = 149, .external_lex_state = 2}, - [873] = {.lex_state = 149, .external_lex_state = 2}, - [874] = {.lex_state = 149, .external_lex_state = 2}, - [875] = {.lex_state = 149, .external_lex_state = 2}, - [876] = {.lex_state = 149, .external_lex_state = 2}, - [877] = {.lex_state = 149, .external_lex_state = 2}, - [878] = {.lex_state = 149, .external_lex_state = 2}, - [879] = {.lex_state = 149, .external_lex_state = 2}, - [880] = {.lex_state = 149, .external_lex_state = 2}, - [881] = {.lex_state = 149, .external_lex_state = 2}, - [882] = {.lex_state = 149, .external_lex_state = 2}, - [883] = {.lex_state = 149, .external_lex_state = 2}, - [884] = {.lex_state = 149, .external_lex_state = 2}, - [885] = {.lex_state = 149, .external_lex_state = 2}, - [886] = {.lex_state = 149, .external_lex_state = 2}, - [887] = {.lex_state = 149, .external_lex_state = 2}, - [888] = {.lex_state = 149, .external_lex_state = 2}, - [889] = {.lex_state = 149, .external_lex_state = 2}, - [890] = {.lex_state = 149, .external_lex_state = 2}, - [891] = {.lex_state = 149, .external_lex_state = 2}, - [892] = {.lex_state = 149, .external_lex_state = 2}, - [893] = {.lex_state = 149, .external_lex_state = 2}, - [894] = {.lex_state = 149, .external_lex_state = 2}, - [895] = {.lex_state = 149, .external_lex_state = 2}, - [896] = {.lex_state = 149, .external_lex_state = 2}, - [897] = {.lex_state = 149, .external_lex_state = 2}, - [898] = {.lex_state = 149, .external_lex_state = 2}, - [899] = {.lex_state = 149, .external_lex_state = 2}, - [900] = {.lex_state = 149, .external_lex_state = 2}, - [901] = {.lex_state = 149, .external_lex_state = 2}, - [902] = {.lex_state = 149, .external_lex_state = 2}, - [903] = {.lex_state = 149, .external_lex_state = 2}, - [904] = {.lex_state = 149, .external_lex_state = 2}, - [905] = {.lex_state = 149, .external_lex_state = 2}, - [906] = {.lex_state = 12, .external_lex_state = 2}, - [907] = {.lex_state = 12, .external_lex_state = 2}, - [908] = {.lex_state = 12, .external_lex_state = 2}, - [909] = {.lex_state = 12, .external_lex_state = 2}, - [910] = {.lex_state = 12, .external_lex_state = 2}, - [911] = {.lex_state = 12, .external_lex_state = 2}, - [912] = {.lex_state = 12, .external_lex_state = 2}, - [913] = {.lex_state = 12, .external_lex_state = 2}, - [914] = {.lex_state = 12, .external_lex_state = 2}, - [915] = {.lex_state = 12, .external_lex_state = 2}, - [916] = {.lex_state = 12, .external_lex_state = 2}, - [917] = {.lex_state = 149, .external_lex_state = 2}, - [918] = {.lex_state = 149, .external_lex_state = 2}, - [919] = {.lex_state = 149, .external_lex_state = 2}, - [920] = {.lex_state = 149, .external_lex_state = 2}, - [921] = {.lex_state = 149, .external_lex_state = 2}, - [922] = {.lex_state = 149, .external_lex_state = 2}, - [923] = {.lex_state = 149, .external_lex_state = 2}, - [924] = {.lex_state = 149, .external_lex_state = 2}, - [925] = {.lex_state = 149, .external_lex_state = 2}, - [926] = {.lex_state = 149, .external_lex_state = 2}, - [927] = {.lex_state = 149, .external_lex_state = 2}, - [928] = {.lex_state = 149, .external_lex_state = 2}, - [929] = {.lex_state = 149, .external_lex_state = 2}, - [930] = {.lex_state = 149, .external_lex_state = 2}, - [931] = {.lex_state = 12, .external_lex_state = 2}, - [932] = {.lex_state = 12, .external_lex_state = 2}, - [933] = {.lex_state = 12, .external_lex_state = 2}, - [934] = {.lex_state = 12, .external_lex_state = 2}, - [935] = {.lex_state = 12, .external_lex_state = 2}, - [936] = {.lex_state = 12, .external_lex_state = 2}, - [937] = {.lex_state = 12, .external_lex_state = 2}, - [938] = {.lex_state = 12, .external_lex_state = 2}, - [939] = {.lex_state = 12, .external_lex_state = 2}, - [940] = {.lex_state = 12, .external_lex_state = 2}, - [941] = {.lex_state = 12, .external_lex_state = 2}, - [942] = {.lex_state = 12, .external_lex_state = 2}, - [943] = {.lex_state = 12, .external_lex_state = 2}, - [944] = {.lex_state = 12, .external_lex_state = 2}, - [945] = {.lex_state = 12, .external_lex_state = 2}, - [946] = {.lex_state = 12, .external_lex_state = 2}, - [947] = {.lex_state = 12, .external_lex_state = 2}, - [948] = {.lex_state = 14, .external_lex_state = 2}, - [949] = {.lex_state = 14, .external_lex_state = 2}, - [950] = {.lex_state = 14, .external_lex_state = 2}, - [951] = {.lex_state = 12, .external_lex_state = 2}, - [952] = {.lex_state = 12, .external_lex_state = 2}, - [953] = {.lex_state = 16, .external_lex_state = 2}, - [954] = {.lex_state = 12, .external_lex_state = 2}, - [955] = {.lex_state = 12, .external_lex_state = 2}, - [956] = {.lex_state = 12, .external_lex_state = 2}, - [957] = {.lex_state = 12, .external_lex_state = 2}, - [958] = {.lex_state = 12, .external_lex_state = 2}, - [959] = {.lex_state = 12, .external_lex_state = 2}, - [960] = {.lex_state = 12, .external_lex_state = 2}, - [961] = {.lex_state = 12, .external_lex_state = 2}, - [962] = {.lex_state = 12, .external_lex_state = 2}, - [963] = {.lex_state = 12, .external_lex_state = 2}, - [964] = {.lex_state = 12, .external_lex_state = 2}, - [965] = {.lex_state = 12, .external_lex_state = 2}, - [966] = {.lex_state = 12, .external_lex_state = 2}, - [967] = {.lex_state = 12, .external_lex_state = 2}, - [968] = {.lex_state = 12, .external_lex_state = 2}, - [969] = {.lex_state = 12, .external_lex_state = 2}, - [970] = {.lex_state = 12, .external_lex_state = 2}, - [971] = {.lex_state = 12, .external_lex_state = 2}, - [972] = {.lex_state = 12, .external_lex_state = 2}, - [973] = {.lex_state = 12, .external_lex_state = 2}, - [974] = {.lex_state = 12, .external_lex_state = 2}, - [975] = {.lex_state = 12, .external_lex_state = 2}, - [976] = {.lex_state = 12, .external_lex_state = 2}, - [977] = {.lex_state = 12, .external_lex_state = 2}, - [978] = {.lex_state = 12, .external_lex_state = 2}, - [979] = {.lex_state = 12, .external_lex_state = 2}, - [980] = {.lex_state = 12, .external_lex_state = 2}, - [981] = {.lex_state = 12, .external_lex_state = 2}, - [982] = {.lex_state = 12, .external_lex_state = 2}, - [983] = {.lex_state = 12, .external_lex_state = 2}, - [984] = {.lex_state = 12, .external_lex_state = 2}, - [985] = {.lex_state = 12, .external_lex_state = 2}, - [986] = {.lex_state = 12, .external_lex_state = 2}, - [987] = {.lex_state = 12, .external_lex_state = 2}, - [988] = {.lex_state = 12, .external_lex_state = 2}, - [989] = {.lex_state = 12, .external_lex_state = 2}, - [990] = {.lex_state = 12, .external_lex_state = 2}, - [991] = {.lex_state = 12, .external_lex_state = 2}, - [992] = {.lex_state = 12, .external_lex_state = 2}, - [993] = {.lex_state = 12, .external_lex_state = 2}, - [994] = {.lex_state = 12, .external_lex_state = 2}, - [995] = {.lex_state = 12, .external_lex_state = 2}, - [996] = {.lex_state = 12, .external_lex_state = 2}, - [997] = {.lex_state = 12, .external_lex_state = 2}, - [998] = {.lex_state = 12, .external_lex_state = 2}, - [999] = {.lex_state = 12, .external_lex_state = 2}, - [1000] = {.lex_state = 12, .external_lex_state = 2}, - [1001] = {.lex_state = 12, .external_lex_state = 2}, - [1002] = {.lex_state = 12, .external_lex_state = 2}, - [1003] = {.lex_state = 12, .external_lex_state = 2}, - [1004] = {.lex_state = 12, .external_lex_state = 2}, - [1005] = {.lex_state = 12, .external_lex_state = 2}, - [1006] = {.lex_state = 12, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, - [1008] = {.lex_state = 12, .external_lex_state = 2}, - [1009] = {.lex_state = 12, .external_lex_state = 2}, - [1010] = {.lex_state = 12, .external_lex_state = 2}, - [1011] = {.lex_state = 12, .external_lex_state = 2}, - [1012] = {.lex_state = 12, .external_lex_state = 2}, - [1013] = {.lex_state = 12, .external_lex_state = 2}, - [1014] = {.lex_state = 12, .external_lex_state = 2}, - [1015] = {.lex_state = 12, .external_lex_state = 2}, - [1016] = {.lex_state = 12, .external_lex_state = 2}, - [1017] = {.lex_state = 12, .external_lex_state = 2}, - [1018] = {.lex_state = 12, .external_lex_state = 2}, - [1019] = {.lex_state = 12, .external_lex_state = 2}, - [1020] = {.lex_state = 12, .external_lex_state = 2}, - [1021] = {.lex_state = 12, .external_lex_state = 2}, - [1022] = {.lex_state = 12, .external_lex_state = 2}, - [1023] = {.lex_state = 12, .external_lex_state = 2}, - [1024] = {.lex_state = 12, .external_lex_state = 2}, - [1025] = {.lex_state = 12, .external_lex_state = 2}, - [1026] = {.lex_state = 12, .external_lex_state = 2}, - [1027] = {.lex_state = 12, .external_lex_state = 2}, - [1028] = {.lex_state = 12, .external_lex_state = 2}, - [1029] = {.lex_state = 12, .external_lex_state = 2}, - [1030] = {.lex_state = 12, .external_lex_state = 2}, - [1031] = {.lex_state = 12, .external_lex_state = 2}, - [1032] = {.lex_state = 12, .external_lex_state = 2}, - [1033] = {.lex_state = 12, .external_lex_state = 2}, - [1034] = {.lex_state = 12, .external_lex_state = 2}, - [1035] = {.lex_state = 12, .external_lex_state = 2}, - [1036] = {.lex_state = 12, .external_lex_state = 2}, - [1037] = {.lex_state = 12, .external_lex_state = 2}, - [1038] = {.lex_state = 12, .external_lex_state = 2}, - [1039] = {.lex_state = 12, .external_lex_state = 2}, - [1040] = {.lex_state = 12, .external_lex_state = 2}, - [1041] = {.lex_state = 12, .external_lex_state = 2}, - [1042] = {.lex_state = 12, .external_lex_state = 2}, - [1043] = {.lex_state = 12, .external_lex_state = 2}, - [1044] = {.lex_state = 12, .external_lex_state = 2}, - [1045] = {.lex_state = 12, .external_lex_state = 2}, - [1046] = {.lex_state = 12, .external_lex_state = 2}, - [1047] = {.lex_state = 12, .external_lex_state = 2}, - [1048] = {.lex_state = 12, .external_lex_state = 2}, - [1049] = {.lex_state = 12, .external_lex_state = 2}, - [1050] = {.lex_state = 12, .external_lex_state = 2}, - [1051] = {.lex_state = 12, .external_lex_state = 2}, - [1052] = {.lex_state = 12, .external_lex_state = 2}, - [1053] = {.lex_state = 12, .external_lex_state = 2}, - [1054] = {.lex_state = 12, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 12, .external_lex_state = 2}, - [1057] = {.lex_state = 12, .external_lex_state = 2}, - [1058] = {.lex_state = 12, .external_lex_state = 2}, - [1059] = {.lex_state = 12, .external_lex_state = 2}, - [1060] = {.lex_state = 12, .external_lex_state = 2}, - [1061] = {.lex_state = 12, .external_lex_state = 2}, - [1062] = {.lex_state = 12, .external_lex_state = 2}, - [1063] = {.lex_state = 12, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, - [1065] = {.lex_state = 12, .external_lex_state = 2}, - [1066] = {.lex_state = 12, .external_lex_state = 2}, - [1067] = {.lex_state = 12, .external_lex_state = 2}, - [1068] = {.lex_state = 12, .external_lex_state = 2}, - [1069] = {.lex_state = 12, .external_lex_state = 2}, - [1070] = {.lex_state = 12, .external_lex_state = 2}, - [1071] = {.lex_state = 12, .external_lex_state = 2}, - [1072] = {.lex_state = 12, .external_lex_state = 2}, - [1073] = {.lex_state = 12, .external_lex_state = 2}, - [1074] = {.lex_state = 12, .external_lex_state = 2}, - [1075] = {.lex_state = 12, .external_lex_state = 2}, - [1076] = {.lex_state = 12, .external_lex_state = 2}, - [1077] = {.lex_state = 12, .external_lex_state = 2}, - [1078] = {.lex_state = 12, .external_lex_state = 2}, - [1079] = {.lex_state = 12, .external_lex_state = 2}, - [1080] = {.lex_state = 12, .external_lex_state = 2}, - [1081] = {.lex_state = 12, .external_lex_state = 2}, - [1082] = {.lex_state = 12, .external_lex_state = 2}, - [1083] = {.lex_state = 12, .external_lex_state = 2}, - [1084] = {.lex_state = 12, .external_lex_state = 2}, - [1085] = {.lex_state = 12, .external_lex_state = 2}, - [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 12, .external_lex_state = 2}, - [1088] = {.lex_state = 12, .external_lex_state = 2}, - [1089] = {.lex_state = 12, .external_lex_state = 2}, - [1090] = {.lex_state = 12, .external_lex_state = 2}, - [1091] = {.lex_state = 12, .external_lex_state = 2}, - [1092] = {.lex_state = 12, .external_lex_state = 2}, - [1093] = {.lex_state = 12, .external_lex_state = 2}, - [1094] = {.lex_state = 12, .external_lex_state = 2}, - [1095] = {.lex_state = 12, .external_lex_state = 2}, - [1096] = {.lex_state = 12, .external_lex_state = 2}, - [1097] = {.lex_state = 12, .external_lex_state = 2}, - [1098] = {.lex_state = 12, .external_lex_state = 2}, - [1099] = {.lex_state = 12, .external_lex_state = 2}, - [1100] = {.lex_state = 12, .external_lex_state = 2}, - [1101] = {.lex_state = 12, .external_lex_state = 2}, - [1102] = {.lex_state = 12, .external_lex_state = 2}, - [1103] = {.lex_state = 12, .external_lex_state = 2}, - [1104] = {.lex_state = 12, .external_lex_state = 2}, - [1105] = {.lex_state = 12, .external_lex_state = 2}, - [1106] = {.lex_state = 12, .external_lex_state = 2}, - [1107] = {.lex_state = 12, .external_lex_state = 2}, - [1108] = {.lex_state = 12, .external_lex_state = 2}, - [1109] = {.lex_state = 12, .external_lex_state = 2}, - [1110] = {.lex_state = 12, .external_lex_state = 2}, - [1111] = {.lex_state = 12, .external_lex_state = 2}, - [1112] = {.lex_state = 12, .external_lex_state = 2}, - [1113] = {.lex_state = 12, .external_lex_state = 2}, - [1114] = {.lex_state = 12, .external_lex_state = 2}, - [1115] = {.lex_state = 12, .external_lex_state = 2}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, - [1117] = {.lex_state = 12, .external_lex_state = 2}, - [1118] = {.lex_state = 12, .external_lex_state = 2}, - [1119] = {.lex_state = 12, .external_lex_state = 2}, - [1120] = {.lex_state = 12, .external_lex_state = 2}, - [1121] = {.lex_state = 12, .external_lex_state = 2}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 12, .external_lex_state = 2}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, - [1125] = {.lex_state = 13, .external_lex_state = 2}, - [1126] = {.lex_state = 13, .external_lex_state = 2}, - [1127] = {.lex_state = 13, .external_lex_state = 2}, - [1128] = {.lex_state = 13, .external_lex_state = 2}, - [1129] = {.lex_state = 13, .external_lex_state = 2}, - [1130] = {.lex_state = 13, .external_lex_state = 2}, - [1131] = {.lex_state = 13, .external_lex_state = 2}, - [1132] = {.lex_state = 13, .external_lex_state = 2}, - [1133] = {.lex_state = 13, .external_lex_state = 2}, - [1134] = {.lex_state = 13, .external_lex_state = 2}, - [1135] = {.lex_state = 13, .external_lex_state = 2}, - [1136] = {.lex_state = 13, .external_lex_state = 2}, - [1137] = {.lex_state = 5, .external_lex_state = 4}, - [1138] = {.lex_state = 5, .external_lex_state = 4}, - [1139] = {.lex_state = 5, .external_lex_state = 4}, - [1140] = {.lex_state = 6, .external_lex_state = 4}, - [1141] = {.lex_state = 5, .external_lex_state = 4}, - [1142] = {.lex_state = 5, .external_lex_state = 4}, - [1143] = {.lex_state = 5, .external_lex_state = 4}, - [1144] = {.lex_state = 6, .external_lex_state = 4}, - [1145] = {.lex_state = 6, .external_lex_state = 4}, - [1146] = {.lex_state = 5, .external_lex_state = 3}, - [1147] = {.lex_state = 5, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 3}, - [1149] = {.lex_state = 5, .external_lex_state = 3}, - [1150] = {.lex_state = 5, .external_lex_state = 3}, - [1151] = {.lex_state = 13, .external_lex_state = 2}, - [1152] = {.lex_state = 13, .external_lex_state = 2}, - [1153] = {.lex_state = 5, .external_lex_state = 4}, - [1154] = {.lex_state = 5, .external_lex_state = 4}, - [1155] = {.lex_state = 5, .external_lex_state = 4}, - [1156] = {.lex_state = 6, .external_lex_state = 4}, - [1157] = {.lex_state = 5, .external_lex_state = 4}, - [1158] = {.lex_state = 5, .external_lex_state = 4}, - [1159] = {.lex_state = 6, .external_lex_state = 4}, - [1160] = {.lex_state = 5, .external_lex_state = 4}, - [1161] = {.lex_state = 5, .external_lex_state = 4}, - [1162] = {.lex_state = 5, .external_lex_state = 4}, - [1163] = {.lex_state = 5, .external_lex_state = 4}, - [1164] = {.lex_state = 5, .external_lex_state = 4}, - [1165] = {.lex_state = 5, .external_lex_state = 3}, - [1166] = {.lex_state = 6, .external_lex_state = 4}, - [1167] = {.lex_state = 6, .external_lex_state = 3}, - [1168] = {.lex_state = 5, .external_lex_state = 4}, - [1169] = {.lex_state = 6, .external_lex_state = 3}, - [1170] = {.lex_state = 6, .external_lex_state = 3}, - [1171] = {.lex_state = 6, .external_lex_state = 3}, - [1172] = {.lex_state = 6, .external_lex_state = 3}, - [1173] = {.lex_state = 6, .external_lex_state = 3}, - [1174] = {.lex_state = 6, .external_lex_state = 3}, - [1175] = {.lex_state = 6, .external_lex_state = 3}, - [1176] = {.lex_state = 6, .external_lex_state = 3}, - [1177] = {.lex_state = 6, .external_lex_state = 3}, - [1178] = {.lex_state = 5, .external_lex_state = 3}, - [1179] = {.lex_state = 5, .external_lex_state = 4}, - [1180] = {.lex_state = 6, .external_lex_state = 3}, - [1181] = {.lex_state = 5, .external_lex_state = 3}, - [1182] = {.lex_state = 5, .external_lex_state = 3}, - [1183] = {.lex_state = 6, .external_lex_state = 3}, - [1184] = {.lex_state = 5, .external_lex_state = 4}, - [1185] = {.lex_state = 5, .external_lex_state = 4}, - [1186] = {.lex_state = 5, .external_lex_state = 3}, - [1187] = {.lex_state = 5, .external_lex_state = 3}, - [1188] = {.lex_state = 5, .external_lex_state = 3}, - [1189] = {.lex_state = 5, .external_lex_state = 4}, - [1190] = {.lex_state = 5, .external_lex_state = 4}, - [1191] = {.lex_state = 5, .external_lex_state = 4}, - [1192] = {.lex_state = 5, .external_lex_state = 4}, - [1193] = {.lex_state = 5, .external_lex_state = 3}, - [1194] = {.lex_state = 6, .external_lex_state = 4}, - [1195] = {.lex_state = 5, .external_lex_state = 4}, - [1196] = {.lex_state = 6, .external_lex_state = 3}, - [1197] = {.lex_state = 5, .external_lex_state = 3}, - [1198] = {.lex_state = 5, .external_lex_state = 4}, - [1199] = {.lex_state = 5, .external_lex_state = 4}, - [1200] = {.lex_state = 6, .external_lex_state = 3}, - [1201] = {.lex_state = 6, .external_lex_state = 3}, - [1202] = {.lex_state = 5, .external_lex_state = 4}, - [1203] = {.lex_state = 5, .external_lex_state = 4}, - [1204] = {.lex_state = 5, .external_lex_state = 4}, - [1205] = {.lex_state = 5, .external_lex_state = 3}, - [1206] = {.lex_state = 5, .external_lex_state = 4}, - [1207] = {.lex_state = 6, .external_lex_state = 4}, - [1208] = {.lex_state = 5, .external_lex_state = 4}, - [1209] = {.lex_state = 5, .external_lex_state = 4}, - [1210] = {.lex_state = 5, .external_lex_state = 3}, - [1211] = {.lex_state = 5, .external_lex_state = 3}, - [1212] = {.lex_state = 5, .external_lex_state = 4}, - [1213] = {.lex_state = 149, .external_lex_state = 2}, - [1214] = {.lex_state = 5, .external_lex_state = 4}, - [1215] = {.lex_state = 5, .external_lex_state = 3}, - [1216] = {.lex_state = 5, .external_lex_state = 3}, - [1217] = {.lex_state = 5, .external_lex_state = 3}, - [1218] = {.lex_state = 5, .external_lex_state = 3}, - [1219] = {.lex_state = 5, .external_lex_state = 3}, - [1220] = {.lex_state = 5, .external_lex_state = 3}, - [1221] = {.lex_state = 5, .external_lex_state = 3}, - [1222] = {.lex_state = 5, .external_lex_state = 3}, - [1223] = {.lex_state = 5, .external_lex_state = 3}, - [1224] = {.lex_state = 5, .external_lex_state = 3}, - [1225] = {.lex_state = 5, .external_lex_state = 3}, - [1226] = {.lex_state = 5, .external_lex_state = 3}, - [1227] = {.lex_state = 5, .external_lex_state = 3}, - [1228] = {.lex_state = 5, .external_lex_state = 3}, - [1229] = {.lex_state = 5, .external_lex_state = 3}, - [1230] = {.lex_state = 5, .external_lex_state = 3}, - [1231] = {.lex_state = 149, .external_lex_state = 2}, - [1232] = {.lex_state = 149, .external_lex_state = 2}, - [1233] = {.lex_state = 5, .external_lex_state = 3}, - [1234] = {.lex_state = 5, .external_lex_state = 3}, - [1235] = {.lex_state = 5, .external_lex_state = 3}, - [1236] = {.lex_state = 5, .external_lex_state = 4}, - [1237] = {.lex_state = 5, .external_lex_state = 4}, - [1238] = {.lex_state = 149, .external_lex_state = 2}, - [1239] = {.lex_state = 5, .external_lex_state = 4}, - [1240] = {.lex_state = 5, .external_lex_state = 4}, - [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 6, .external_lex_state = 3}, - [1243] = {.lex_state = 5, .external_lex_state = 3}, - [1244] = {.lex_state = 5, .external_lex_state = 3}, - [1245] = {.lex_state = 5, .external_lex_state = 3}, - [1246] = {.lex_state = 5, .external_lex_state = 3}, - [1247] = {.lex_state = 5, .external_lex_state = 3}, - [1248] = {.lex_state = 149, .external_lex_state = 2}, - [1249] = {.lex_state = 5, .external_lex_state = 3}, - [1250] = {.lex_state = 6, .external_lex_state = 3}, - [1251] = {.lex_state = 5, .external_lex_state = 3}, - [1252] = {.lex_state = 5, .external_lex_state = 3}, - [1253] = {.lex_state = 5, .external_lex_state = 3}, - [1254] = {.lex_state = 5, .external_lex_state = 3}, - [1255] = {.lex_state = 5, .external_lex_state = 3}, - [1256] = {.lex_state = 149, .external_lex_state = 2}, - [1257] = {.lex_state = 5, .external_lex_state = 3}, - [1258] = {.lex_state = 5, .external_lex_state = 4}, - [1259] = {.lex_state = 5, .external_lex_state = 4}, - [1260] = {.lex_state = 5, .external_lex_state = 3}, - [1261] = {.lex_state = 5, .external_lex_state = 3}, - [1262] = {.lex_state = 5, .external_lex_state = 3}, - [1263] = {.lex_state = 5, .external_lex_state = 3}, - [1264] = {.lex_state = 5, .external_lex_state = 4}, - [1265] = {.lex_state = 149, .external_lex_state = 2}, - [1266] = {.lex_state = 5, .external_lex_state = 3}, - [1267] = {.lex_state = 149, .external_lex_state = 2}, - [1268] = {.lex_state = 5, .external_lex_state = 4}, - [1269] = {.lex_state = 5, .external_lex_state = 4}, - [1270] = {.lex_state = 5, .external_lex_state = 3}, - [1271] = {.lex_state = 5, .external_lex_state = 3}, - [1272] = {.lex_state = 5, .external_lex_state = 3}, - [1273] = {.lex_state = 5, .external_lex_state = 4}, - [1274] = {.lex_state = 5, .external_lex_state = 3}, - [1275] = {.lex_state = 5, .external_lex_state = 3}, - [1276] = {.lex_state = 5, .external_lex_state = 4}, - [1277] = {.lex_state = 5, .external_lex_state = 4}, - [1278] = {.lex_state = 5, .external_lex_state = 4}, - [1279] = {.lex_state = 5, .external_lex_state = 3}, - [1280] = {.lex_state = 149, .external_lex_state = 2}, - [1281] = {.lex_state = 6, .external_lex_state = 3}, - [1282] = {.lex_state = 5, .external_lex_state = 3}, - [1283] = {.lex_state = 5, .external_lex_state = 4}, - [1284] = {.lex_state = 5, .external_lex_state = 3}, - [1285] = {.lex_state = 5, .external_lex_state = 4}, - [1286] = {.lex_state = 5, .external_lex_state = 3}, - [1287] = {.lex_state = 5, .external_lex_state = 4}, - [1288] = {.lex_state = 5, .external_lex_state = 4}, - [1289] = {.lex_state = 5, .external_lex_state = 3}, - [1290] = {.lex_state = 5, .external_lex_state = 4}, - [1291] = {.lex_state = 5, .external_lex_state = 3}, - [1292] = {.lex_state = 5, .external_lex_state = 3}, - [1293] = {.lex_state = 5, .external_lex_state = 4}, - [1294] = {.lex_state = 5, .external_lex_state = 4}, - [1295] = {.lex_state = 5, .external_lex_state = 3}, - [1296] = {.lex_state = 5, .external_lex_state = 4}, - [1297] = {.lex_state = 5, .external_lex_state = 4}, - [1298] = {.lex_state = 5, .external_lex_state = 4}, - [1299] = {.lex_state = 5, .external_lex_state = 4}, - [1300] = {.lex_state = 5, .external_lex_state = 3}, - [1301] = {.lex_state = 5, .external_lex_state = 4}, - [1302] = {.lex_state = 5, .external_lex_state = 4}, - [1303] = {.lex_state = 5, .external_lex_state = 4}, - [1304] = {.lex_state = 5, .external_lex_state = 4}, - [1305] = {.lex_state = 5, .external_lex_state = 4}, - [1306] = {.lex_state = 5, .external_lex_state = 4}, - [1307] = {.lex_state = 5, .external_lex_state = 3}, - [1308] = {.lex_state = 5, .external_lex_state = 4}, - [1309] = {.lex_state = 5, .external_lex_state = 4}, - [1310] = {.lex_state = 5, .external_lex_state = 4}, - [1311] = {.lex_state = 5, .external_lex_state = 4}, - [1312] = {.lex_state = 5, .external_lex_state = 4}, - [1313] = {.lex_state = 5, .external_lex_state = 3}, - [1314] = {.lex_state = 5, .external_lex_state = 4}, - [1315] = {.lex_state = 5, .external_lex_state = 4}, - [1316] = {.lex_state = 5, .external_lex_state = 3}, - [1317] = {.lex_state = 5, .external_lex_state = 4}, - [1318] = {.lex_state = 5, .external_lex_state = 3}, - [1319] = {.lex_state = 5, .external_lex_state = 4}, - [1320] = {.lex_state = 6, .external_lex_state = 3}, - [1321] = {.lex_state = 5, .external_lex_state = 3}, - [1322] = {.lex_state = 5, .external_lex_state = 3}, - [1323] = {.lex_state = 5, .external_lex_state = 3}, - [1324] = {.lex_state = 5, .external_lex_state = 4}, - [1325] = {.lex_state = 5, .external_lex_state = 4}, - [1326] = {.lex_state = 5, .external_lex_state = 4}, - [1327] = {.lex_state = 5, .external_lex_state = 3}, - [1328] = {.lex_state = 5, .external_lex_state = 3}, - [1329] = {.lex_state = 6, .external_lex_state = 3}, - [1330] = {.lex_state = 5, .external_lex_state = 4}, - [1331] = {.lex_state = 5, .external_lex_state = 3}, - [1332] = {.lex_state = 5, .external_lex_state = 3}, - [1333] = {.lex_state = 6, .external_lex_state = 3}, - [1334] = {.lex_state = 5, .external_lex_state = 3}, - [1335] = {.lex_state = 5, .external_lex_state = 3}, - [1336] = {.lex_state = 5, .external_lex_state = 4}, - [1337] = {.lex_state = 5, .external_lex_state = 3}, - [1338] = {.lex_state = 6, .external_lex_state = 3}, - [1339] = {.lex_state = 5, .external_lex_state = 3}, - [1340] = {.lex_state = 5, .external_lex_state = 3}, - [1341] = {.lex_state = 6, .external_lex_state = 3}, - [1342] = {.lex_state = 5, .external_lex_state = 4}, - [1343] = {.lex_state = 5, .external_lex_state = 3}, - [1344] = {.lex_state = 5, .external_lex_state = 3}, - [1345] = {.lex_state = 5, .external_lex_state = 4}, - [1346] = {.lex_state = 12, .external_lex_state = 2}, - [1347] = {.lex_state = 5, .external_lex_state = 3}, - [1348] = {.lex_state = 5, .external_lex_state = 3}, - [1349] = {.lex_state = 5, .external_lex_state = 3}, - [1350] = {.lex_state = 5, .external_lex_state = 4}, - [1351] = {.lex_state = 12, .external_lex_state = 2}, - [1352] = {.lex_state = 12, .external_lex_state = 2}, - [1353] = {.lex_state = 5, .external_lex_state = 4}, - [1354] = {.lex_state = 5, .external_lex_state = 3}, - [1355] = {.lex_state = 12, .external_lex_state = 2}, - [1356] = {.lex_state = 5, .external_lex_state = 3}, - [1357] = {.lex_state = 5, .external_lex_state = 3}, - [1358] = {.lex_state = 5, .external_lex_state = 4}, - [1359] = {.lex_state = 12, .external_lex_state = 2}, - [1360] = {.lex_state = 5, .external_lex_state = 3}, - [1361] = {.lex_state = 5, .external_lex_state = 3}, - [1362] = {.lex_state = 5, .external_lex_state = 3}, - [1363] = {.lex_state = 5, .external_lex_state = 3}, - [1364] = {.lex_state = 5, .external_lex_state = 3}, - [1365] = {.lex_state = 6, .external_lex_state = 3}, - [1366] = {.lex_state = 5, .external_lex_state = 3}, - [1367] = {.lex_state = 12, .external_lex_state = 2}, - [1368] = {.lex_state = 5, .external_lex_state = 3}, - [1369] = {.lex_state = 5, .external_lex_state = 3}, - [1370] = {.lex_state = 5, .external_lex_state = 3}, - [1371] = {.lex_state = 5, .external_lex_state = 3}, - [1372] = {.lex_state = 5, .external_lex_state = 3}, - [1373] = {.lex_state = 5, .external_lex_state = 4}, - [1374] = {.lex_state = 5, .external_lex_state = 3}, - [1375] = {.lex_state = 5, .external_lex_state = 3}, - [1376] = {.lex_state = 5, .external_lex_state = 3}, - [1377] = {.lex_state = 5, .external_lex_state = 3}, - [1378] = {.lex_state = 5, .external_lex_state = 3}, - [1379] = {.lex_state = 5, .external_lex_state = 3}, - [1380] = {.lex_state = 5, .external_lex_state = 3}, - [1381] = {.lex_state = 5, .external_lex_state = 3}, - [1382] = {.lex_state = 5, .external_lex_state = 3}, - [1383] = {.lex_state = 5, .external_lex_state = 3}, - [1384] = {.lex_state = 5, .external_lex_state = 3}, - [1385] = {.lex_state = 12, .external_lex_state = 2}, - [1386] = {.lex_state = 12, .external_lex_state = 2}, - [1387] = {.lex_state = 5, .external_lex_state = 3}, - [1388] = {.lex_state = 12, .external_lex_state = 2}, - [1389] = {.lex_state = 12, .external_lex_state = 2}, - [1390] = {.lex_state = 5, .external_lex_state = 3}, - [1391] = {.lex_state = 12, .external_lex_state = 2}, - [1392] = {.lex_state = 12, .external_lex_state = 2}, - [1393] = {.lex_state = 5, .external_lex_state = 3}, - [1394] = {.lex_state = 5, .external_lex_state = 3}, - [1395] = {.lex_state = 12, .external_lex_state = 2}, - [1396] = {.lex_state = 12, .external_lex_state = 2}, - [1397] = {.lex_state = 12, .external_lex_state = 2}, - [1398] = {.lex_state = 5, .external_lex_state = 3}, - [1399] = {.lex_state = 5, .external_lex_state = 3}, - [1400] = {.lex_state = 5, .external_lex_state = 3}, - [1401] = {.lex_state = 5, .external_lex_state = 3}, - [1402] = {.lex_state = 12, .external_lex_state = 2}, - [1403] = {.lex_state = 12, .external_lex_state = 2}, - [1404] = {.lex_state = 5, .external_lex_state = 3}, - [1405] = {.lex_state = 12, .external_lex_state = 2}, - [1406] = {.lex_state = 5, .external_lex_state = 3}, - [1407] = {.lex_state = 5, .external_lex_state = 3}, - [1408] = {.lex_state = 5, .external_lex_state = 3}, - [1409] = {.lex_state = 5, .external_lex_state = 3}, - [1410] = {.lex_state = 5, .external_lex_state = 3}, - [1411] = {.lex_state = 5, .external_lex_state = 3}, - [1412] = {.lex_state = 12, .external_lex_state = 2}, - [1413] = {.lex_state = 5, .external_lex_state = 3}, - [1414] = {.lex_state = 5, .external_lex_state = 3}, - [1415] = {.lex_state = 5, .external_lex_state = 3}, - [1416] = {.lex_state = 5, .external_lex_state = 3}, - [1417] = {.lex_state = 12, .external_lex_state = 2}, - [1418] = {.lex_state = 12, .external_lex_state = 2}, - [1419] = {.lex_state = 5, .external_lex_state = 3}, - [1420] = {.lex_state = 12, .external_lex_state = 2}, - [1421] = {.lex_state = 12, .external_lex_state = 2}, - [1422] = {.lex_state = 12, .external_lex_state = 2}, - [1423] = {.lex_state = 5, .external_lex_state = 3}, - [1424] = {.lex_state = 5, .external_lex_state = 3}, - [1425] = {.lex_state = 5, .external_lex_state = 3}, - [1426] = {.lex_state = 5, .external_lex_state = 3}, - [1427] = {.lex_state = 5, .external_lex_state = 3}, - [1428] = {.lex_state = 5, .external_lex_state = 3}, - [1429] = {.lex_state = 5, .external_lex_state = 3}, - [1430] = {.lex_state = 5, .external_lex_state = 3}, - [1431] = {.lex_state = 5, .external_lex_state = 3}, - [1432] = {.lex_state = 5, .external_lex_state = 3}, - [1433] = {.lex_state = 12, .external_lex_state = 2}, - [1434] = {.lex_state = 12, .external_lex_state = 2}, - [1435] = {.lex_state = 12, .external_lex_state = 2}, - [1436] = {.lex_state = 12, .external_lex_state = 2}, - [1437] = {.lex_state = 12, .external_lex_state = 2}, - [1438] = {.lex_state = 12, .external_lex_state = 2}, - [1439] = {.lex_state = 12, .external_lex_state = 2}, - [1440] = {.lex_state = 12, .external_lex_state = 2}, - [1441] = {.lex_state = 12, .external_lex_state = 2}, - [1442] = {.lex_state = 13, .external_lex_state = 5}, - [1443] = {.lex_state = 12, .external_lex_state = 2}, - [1444] = {.lex_state = 13, .external_lex_state = 5}, - [1445] = {.lex_state = 12, .external_lex_state = 2}, - [1446] = {.lex_state = 12, .external_lex_state = 2}, - [1447] = {.lex_state = 12, .external_lex_state = 2}, - [1448] = {.lex_state = 13, .external_lex_state = 5}, - [1449] = {.lex_state = 12, .external_lex_state = 2}, - [1450] = {.lex_state = 12, .external_lex_state = 2}, - [1451] = {.lex_state = 12, .external_lex_state = 2}, - [1452] = {.lex_state = 13, .external_lex_state = 5}, - [1453] = {.lex_state = 12, .external_lex_state = 2}, - [1454] = {.lex_state = 13, .external_lex_state = 5}, - [1455] = {.lex_state = 12, .external_lex_state = 2}, - [1456] = {.lex_state = 149, .external_lex_state = 2}, - [1457] = {.lex_state = 149, .external_lex_state = 2}, - [1458] = {.lex_state = 149, .external_lex_state = 2}, - [1459] = {.lex_state = 149, .external_lex_state = 2}, - [1460] = {.lex_state = 7, .external_lex_state = 3}, - [1461] = {.lex_state = 149, .external_lex_state = 2}, - [1462] = {.lex_state = 149, .external_lex_state = 2}, - [1463] = {.lex_state = 13, .external_lex_state = 5}, - [1464] = {.lex_state = 7, .external_lex_state = 4}, - [1465] = {.lex_state = 13, .external_lex_state = 5}, - [1466] = {.lex_state = 7, .external_lex_state = 3}, - [1467] = {.lex_state = 7, .external_lex_state = 3}, - [1468] = {.lex_state = 7, .external_lex_state = 4}, - [1469] = {.lex_state = 7, .external_lex_state = 3}, - [1470] = {.lex_state = 7, .external_lex_state = 3}, - [1471] = {.lex_state = 7, .external_lex_state = 3}, - [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 7, .external_lex_state = 4}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 7, .external_lex_state = 3}, - [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 7, .external_lex_state = 3}, - [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 7, .external_lex_state = 3}, - [1483] = {.lex_state = 149, .external_lex_state = 2}, - [1484] = {.lex_state = 7, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 3}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 7, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 7, .external_lex_state = 3}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 7, .external_lex_state = 3}, - [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 4}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, - [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 4}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 7, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 4}, - [1511] = {.lex_state = 7, .external_lex_state = 3}, - [1512] = {.lex_state = 7, .external_lex_state = 4}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 3}, - [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, - [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, - [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 7, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 7, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 3}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 7, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 4}, - [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 12, .external_lex_state = 5}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 12, .external_lex_state = 5}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 4}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 12, .external_lex_state = 5}, - [1656] = {.lex_state = 12, .external_lex_state = 5}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 7, .external_lex_state = 3}, - [1669] = {.lex_state = 7, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 4}, - [1679] = {.lex_state = 7, .external_lex_state = 4}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.lex_state = 7, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 12, .external_lex_state = 5}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, - [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 7, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 3}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, - [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 7, .external_lex_state = 3}, - [1721] = {.lex_state = 7, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 4}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .external_lex_state = 4}, - [1731] = {.lex_state = 7, .external_lex_state = 4}, - [1732] = {.lex_state = 7, .external_lex_state = 3}, - [1733] = {.lex_state = 7, .external_lex_state = 4}, - [1734] = {.lex_state = 12, .external_lex_state = 5}, - [1735] = {.lex_state = 12, .external_lex_state = 5}, - [1736] = {.lex_state = 12, .external_lex_state = 5}, - [1737] = {.lex_state = 7, .external_lex_state = 4}, - [1738] = {.lex_state = 12, .external_lex_state = 5}, - [1739] = {.lex_state = 7, .external_lex_state = 3}, - [1740] = {.lex_state = 12, .external_lex_state = 5}, - [1741] = {.lex_state = 7, .external_lex_state = 4}, - [1742] = {.lex_state = 7, .external_lex_state = 4}, - [1743] = {.lex_state = 12, .external_lex_state = 5}, - [1744] = {.lex_state = 7, .external_lex_state = 4}, - [1745] = {.lex_state = 12, .external_lex_state = 5}, - [1746] = {.lex_state = 7, .external_lex_state = 4}, - [1747] = {.lex_state = 7, .external_lex_state = 4}, - [1748] = {.lex_state = 12, .external_lex_state = 5}, - [1749] = {.lex_state = 13, .external_lex_state = 5}, - [1750] = {.lex_state = 12, .external_lex_state = 5}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 12, .external_lex_state = 5}, - [1753] = {.lex_state = 12, .external_lex_state = 5}, - [1754] = {.lex_state = 7, .external_lex_state = 3}, - [1755] = {.lex_state = 7, .external_lex_state = 4}, - [1756] = {.lex_state = 12, .external_lex_state = 5}, - [1757] = {.lex_state = 7, .external_lex_state = 4}, - [1758] = {.lex_state = 7, .external_lex_state = 4}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 4}, - [1761] = {.lex_state = 7, .external_lex_state = 4}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 4}, - [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 4}, - [1767] = {.lex_state = 7, .external_lex_state = 4}, - [1768] = {.lex_state = 7, .external_lex_state = 4}, - [1769] = {.lex_state = 7, .external_lex_state = 4}, - [1770] = {.lex_state = 8, .external_lex_state = 3}, - [1771] = {.lex_state = 7, .external_lex_state = 4}, - [1772] = {.lex_state = 7, .external_lex_state = 4}, - [1773] = {.lex_state = 7, .external_lex_state = 4}, - [1774] = {.lex_state = 7, .external_lex_state = 4}, - [1775] = {.lex_state = 7, .external_lex_state = 4}, - [1776] = {.lex_state = 7, .external_lex_state = 4}, - [1777] = {.lex_state = 7, .external_lex_state = 4}, - [1778] = {.lex_state = 7, .external_lex_state = 4}, - [1779] = {.lex_state = 7, .external_lex_state = 4}, - [1780] = {.lex_state = 7, .external_lex_state = 4}, - [1781] = {.lex_state = 7, .external_lex_state = 4}, - [1782] = {.lex_state = 7, .external_lex_state = 4}, - [1783] = {.lex_state = 7, .external_lex_state = 4}, - [1784] = {.lex_state = 7, .external_lex_state = 4}, - [1785] = {.lex_state = 7, .external_lex_state = 4}, - [1786] = {.lex_state = 7, .external_lex_state = 4}, - [1787] = {.lex_state = 12, .external_lex_state = 5}, - [1788] = {.lex_state = 7, .external_lex_state = 4}, - [1789] = {.lex_state = 7, .external_lex_state = 4}, - [1790] = {.lex_state = 7, .external_lex_state = 4}, - [1791] = {.lex_state = 7, .external_lex_state = 4}, - [1792] = {.lex_state = 7, .external_lex_state = 4}, - [1793] = {.lex_state = 12, .external_lex_state = 5}, - [1794] = {.lex_state = 7, .external_lex_state = 3}, - [1795] = {.lex_state = 7, .external_lex_state = 4}, - [1796] = {.lex_state = 7, .external_lex_state = 3}, - [1797] = {.lex_state = 7, .external_lex_state = 3}, - [1798] = {.lex_state = 7, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 4}, - [1802] = {.lex_state = 7, .external_lex_state = 4}, - [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 7, .external_lex_state = 3}, - [1805] = {.lex_state = 12, .external_lex_state = 5}, - [1806] = {.lex_state = 7, .external_lex_state = 4}, - [1807] = {.lex_state = 7, .external_lex_state = 4}, - [1808] = {.lex_state = 7, .external_lex_state = 4}, - [1809] = {.lex_state = 7, .external_lex_state = 4}, - [1810] = {.lex_state = 7, .external_lex_state = 4}, - [1811] = {.lex_state = 7, .external_lex_state = 4}, - [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 7, .external_lex_state = 4}, - [1814] = {.lex_state = 7, .external_lex_state = 4}, - [1815] = {.lex_state = 7, .external_lex_state = 4}, - [1816] = {.lex_state = 7, .external_lex_state = 4}, - [1817] = {.lex_state = 12, .external_lex_state = 5}, - [1818] = {.lex_state = 12, .external_lex_state = 5}, - [1819] = {.lex_state = 7, .external_lex_state = 4}, - [1820] = {.lex_state = 7, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 4}, - [1822] = {.lex_state = 7, .external_lex_state = 4}, - [1823] = {.lex_state = 12, .external_lex_state = 5}, - [1824] = {.lex_state = 7, .external_lex_state = 3}, - [1825] = {.lex_state = 7, .external_lex_state = 4}, - [1826] = {.lex_state = 7, .external_lex_state = 4}, - [1827] = {.lex_state = 7, .external_lex_state = 4}, - [1828] = {.lex_state = 7, .external_lex_state = 4}, - [1829] = {.lex_state = 7, .external_lex_state = 4}, - [1830] = {.lex_state = 7, .external_lex_state = 4}, - [1831] = {.lex_state = 7, .external_lex_state = 4}, - [1832] = {.lex_state = 7, .external_lex_state = 4}, - [1833] = {.lex_state = 7, .external_lex_state = 4}, - [1834] = {.lex_state = 7, .external_lex_state = 4}, - [1835] = {.lex_state = 7, .external_lex_state = 4}, - [1836] = {.lex_state = 7, .external_lex_state = 4}, - [1837] = {.lex_state = 7, .external_lex_state = 4}, - [1838] = {.lex_state = 7, .external_lex_state = 4}, - [1839] = {.lex_state = 7, .external_lex_state = 4}, - [1840] = {.lex_state = 7, .external_lex_state = 4}, - [1841] = {.lex_state = 7, .external_lex_state = 4}, - [1842] = {.lex_state = 7, .external_lex_state = 4}, - [1843] = {.lex_state = 7, .external_lex_state = 4}, - [1844] = {.lex_state = 7, .external_lex_state = 4}, - [1845] = {.lex_state = 7, .external_lex_state = 4}, - [1846] = {.lex_state = 7, .external_lex_state = 4}, - [1847] = {.lex_state = 7, .external_lex_state = 4}, - [1848] = {.lex_state = 7, .external_lex_state = 4}, - [1849] = {.lex_state = 7, .external_lex_state = 4}, - [1850] = {.lex_state = 12, .external_lex_state = 5}, - [1851] = {.lex_state = 7, .external_lex_state = 4}, - [1852] = {.lex_state = 7, .external_lex_state = 4}, - [1853] = {.lex_state = 12, .external_lex_state = 5}, - [1854] = {.lex_state = 7, .external_lex_state = 4}, - [1855] = {.lex_state = 7, .external_lex_state = 4}, - [1856] = {.lex_state = 7, .external_lex_state = 4}, - [1857] = {.lex_state = 7, .external_lex_state = 4}, - [1858] = {.lex_state = 7, .external_lex_state = 4}, - [1859] = {.lex_state = 7, .external_lex_state = 4}, - [1860] = {.lex_state = 7, .external_lex_state = 4}, - [1861] = {.lex_state = 7, .external_lex_state = 4}, - [1862] = {.lex_state = 7, .external_lex_state = 4}, - [1863] = {.lex_state = 7, .external_lex_state = 4}, - [1864] = {.lex_state = 7, .external_lex_state = 4}, - [1865] = {.lex_state = 7, .external_lex_state = 4}, - [1866] = {.lex_state = 7, .external_lex_state = 4}, - [1867] = {.lex_state = 7, .external_lex_state = 4}, - [1868] = {.lex_state = 7, .external_lex_state = 4}, - [1869] = {.lex_state = 7, .external_lex_state = 4}, - [1870] = {.lex_state = 7, .external_lex_state = 4}, - [1871] = {.lex_state = 7, .external_lex_state = 4}, - [1872] = {.lex_state = 7, .external_lex_state = 4}, - [1873] = {.lex_state = 7, .external_lex_state = 4}, - [1874] = {.lex_state = 7, .external_lex_state = 4}, - [1875] = {.lex_state = 7, .external_lex_state = 4}, - [1876] = {.lex_state = 7, .external_lex_state = 4}, - [1877] = {.lex_state = 7, .external_lex_state = 4}, - [1878] = {.lex_state = 7, .external_lex_state = 4}, - [1879] = {.lex_state = 7, .external_lex_state = 4}, - [1880] = {.lex_state = 7, .external_lex_state = 4}, - [1881] = {.lex_state = 7, .external_lex_state = 4}, - [1882] = {.lex_state = 7, .external_lex_state = 4}, - [1883] = {.lex_state = 7, .external_lex_state = 4}, - [1884] = {.lex_state = 7, .external_lex_state = 4}, - [1885] = {.lex_state = 7, .external_lex_state = 4}, - [1886] = {.lex_state = 7, .external_lex_state = 4}, - [1887] = {.lex_state = 7, .external_lex_state = 4}, - [1888] = {.lex_state = 7, .external_lex_state = 4}, - [1889] = {.lex_state = 7, .external_lex_state = 4}, - [1890] = {.lex_state = 7, .external_lex_state = 4}, - [1891] = {.lex_state = 7, .external_lex_state = 4}, - [1892] = {.lex_state = 7, .external_lex_state = 4}, - [1893] = {.lex_state = 7, .external_lex_state = 4}, - [1894] = {.lex_state = 7, .external_lex_state = 4}, - [1895] = {.lex_state = 7, .external_lex_state = 4}, - [1896] = {.lex_state = 7, .external_lex_state = 4}, - [1897] = {.lex_state = 7, .external_lex_state = 4}, - [1898] = {.lex_state = 7, .external_lex_state = 4}, - [1899] = {.lex_state = 7, .external_lex_state = 4}, - [1900] = {.lex_state = 7, .external_lex_state = 4}, - [1901] = {.lex_state = 7, .external_lex_state = 4}, - [1902] = {.lex_state = 7, .external_lex_state = 4}, - [1903] = {.lex_state = 7, .external_lex_state = 4}, - [1904] = {.lex_state = 7, .external_lex_state = 4}, - [1905] = {.lex_state = 7, .external_lex_state = 4}, - [1906] = {.lex_state = 7, .external_lex_state = 4}, - [1907] = {.lex_state = 7, .external_lex_state = 4}, - [1908] = {.lex_state = 7, .external_lex_state = 4}, - [1909] = {.lex_state = 7, .external_lex_state = 4}, - [1910] = {.lex_state = 12, .external_lex_state = 2}, - [1911] = {.lex_state = 7, .external_lex_state = 4}, - [1912] = {.lex_state = 7, .external_lex_state = 4}, - [1913] = {.lex_state = 7, .external_lex_state = 3}, - [1914] = {.lex_state = 7, .external_lex_state = 4}, - [1915] = {.lex_state = 7, .external_lex_state = 4}, - [1916] = {.lex_state = 7, .external_lex_state = 4}, - [1917] = {.lex_state = 7, .external_lex_state = 3}, - [1918] = {.lex_state = 7, .external_lex_state = 4}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, - [1920] = {.lex_state = 7, .external_lex_state = 4}, - [1921] = {.lex_state = 7, .external_lex_state = 4}, - [1922] = {.lex_state = 7, .external_lex_state = 4}, - [1923] = {.lex_state = 7, .external_lex_state = 4}, - [1924] = {.lex_state = 7, .external_lex_state = 4}, - [1925] = {.lex_state = 7, .external_lex_state = 4}, - [1926] = {.lex_state = 7, .external_lex_state = 4}, - [1927] = {.lex_state = 7, .external_lex_state = 4}, - [1928] = {.lex_state = 7, .external_lex_state = 4}, - [1929] = {.lex_state = 12, .external_lex_state = 2}, - [1930] = {.lex_state = 7, .external_lex_state = 4}, - [1931] = {.lex_state = 7, .external_lex_state = 3}, - [1932] = {.lex_state = 7, .external_lex_state = 3}, - [1933] = {.lex_state = 7, .external_lex_state = 3}, - [1934] = {.lex_state = 7, .external_lex_state = 4}, - [1935] = {.lex_state = 7, .external_lex_state = 4}, - [1936] = {.lex_state = 7, .external_lex_state = 4}, - [1937] = {.lex_state = 7, .external_lex_state = 4}, - [1938] = {.lex_state = 7, .external_lex_state = 3}, - [1939] = {.lex_state = 7, .external_lex_state = 4}, - [1940] = {.lex_state = 12, .external_lex_state = 5}, - [1941] = {.lex_state = 12, .external_lex_state = 5}, - [1942] = {.lex_state = 7, .external_lex_state = 4}, - [1943] = {.lex_state = 12, .external_lex_state = 5}, - [1944] = {.lex_state = 12, .external_lex_state = 5}, - [1945] = {.lex_state = 7, .external_lex_state = 4}, - [1946] = {.lex_state = 12, .external_lex_state = 5}, - [1947] = {.lex_state = 12, .external_lex_state = 2}, - [1948] = {.lex_state = 7, .external_lex_state = 3}, - [1949] = {.lex_state = 7, .external_lex_state = 3}, - [1950] = {.lex_state = 7, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 3}, - [1952] = {.lex_state = 7, .external_lex_state = 4}, - [1953] = {.lex_state = 7, .external_lex_state = 4}, - [1954] = {.lex_state = 7, .external_lex_state = 4}, - [1955] = {.lex_state = 12, .external_lex_state = 2}, - [1956] = {.lex_state = 7, .external_lex_state = 3}, - [1957] = {.lex_state = 7, .external_lex_state = 3}, - [1958] = {.lex_state = 7, .external_lex_state = 4}, - [1959] = {.lex_state = 7, .external_lex_state = 4}, - [1960] = {.lex_state = 7, .external_lex_state = 4}, - [1961] = {.lex_state = 7, .external_lex_state = 4}, - [1962] = {.lex_state = 7, .external_lex_state = 4}, - [1963] = {.lex_state = 7, .external_lex_state = 4}, - [1964] = {.lex_state = 7, .external_lex_state = 4}, - [1965] = {.lex_state = 149, .external_lex_state = 2}, - [1966] = {.lex_state = 7, .external_lex_state = 4}, - [1967] = {.lex_state = 7, .external_lex_state = 4}, - [1968] = {.lex_state = 7, .external_lex_state = 4}, - [1969] = {.lex_state = 7, .external_lex_state = 4}, - [1970] = {.lex_state = 7, .external_lex_state = 4}, - [1971] = {.lex_state = 12, .external_lex_state = 5}, - [1972] = {.lex_state = 7, .external_lex_state = 4}, - [1973] = {.lex_state = 7, .external_lex_state = 4}, - [1974] = {.lex_state = 7, .external_lex_state = 4}, - [1975] = {.lex_state = 7, .external_lex_state = 4}, - [1976] = {.lex_state = 7, .external_lex_state = 4}, - [1977] = {.lex_state = 7, .external_lex_state = 4}, - [1978] = {.lex_state = 7, .external_lex_state = 4}, - [1979] = {.lex_state = 7, .external_lex_state = 4}, - [1980] = {.lex_state = 7, .external_lex_state = 4}, - [1981] = {.lex_state = 7, .external_lex_state = 4}, - [1982] = {.lex_state = 7, .external_lex_state = 4}, - [1983] = {.lex_state = 7, .external_lex_state = 4}, - [1984] = {.lex_state = 7, .external_lex_state = 4}, - [1985] = {.lex_state = 7, .external_lex_state = 4}, - [1986] = {.lex_state = 149, .external_lex_state = 2}, - [1987] = {.lex_state = 7, .external_lex_state = 4}, - [1988] = {.lex_state = 12, .external_lex_state = 5}, - [1989] = {.lex_state = 7, .external_lex_state = 4}, - [1990] = {.lex_state = 7, .external_lex_state = 4}, - [1991] = {.lex_state = 7, .external_lex_state = 4}, - [1992] = {.lex_state = 12, .external_lex_state = 2}, - [1993] = {.lex_state = 7, .external_lex_state = 4}, - [1994] = {.lex_state = 7, .external_lex_state = 4}, - [1995] = {.lex_state = 7, .external_lex_state = 4}, - [1996] = {.lex_state = 7, .external_lex_state = 4}, - [1997] = {.lex_state = 7, .external_lex_state = 4}, - [1998] = {.lex_state = 7, .external_lex_state = 4}, - [1999] = {.lex_state = 7, .external_lex_state = 4}, - [2000] = {.lex_state = 7, .external_lex_state = 4}, - [2001] = {.lex_state = 7, .external_lex_state = 4}, - [2002] = {.lex_state = 7, .external_lex_state = 4}, - [2003] = {.lex_state = 7, .external_lex_state = 4}, - [2004] = {.lex_state = 7, .external_lex_state = 4}, - [2005] = {.lex_state = 7, .external_lex_state = 4}, - [2006] = {.lex_state = 7, .external_lex_state = 4}, - [2007] = {.lex_state = 7, .external_lex_state = 4}, - [2008] = {.lex_state = 7, .external_lex_state = 4}, - [2009] = {.lex_state = 7, .external_lex_state = 4}, - [2010] = {.lex_state = 7, .external_lex_state = 4}, - [2011] = {.lex_state = 7, .external_lex_state = 4}, - [2012] = {.lex_state = 7, .external_lex_state = 4}, - [2013] = {.lex_state = 12, .external_lex_state = 5}, - [2014] = {.lex_state = 12, .external_lex_state = 5}, - [2015] = {.lex_state = 7, .external_lex_state = 4}, - [2016] = {.lex_state = 12, .external_lex_state = 5}, - [2017] = {.lex_state = 7, .external_lex_state = 3}, - [2018] = {.lex_state = 7, .external_lex_state = 3}, - [2019] = {.lex_state = 7, .external_lex_state = 4}, - [2020] = {.lex_state = 7, .external_lex_state = 4}, - [2021] = {.lex_state = 12, .external_lex_state = 5}, - [2022] = {.lex_state = 7, .external_lex_state = 4}, - [2023] = {.lex_state = 12, .external_lex_state = 5}, - [2024] = {.lex_state = 7, .external_lex_state = 4}, - [2025] = {.lex_state = 12, .external_lex_state = 2}, - [2026] = {.lex_state = 12, .external_lex_state = 5}, - [2027] = {.lex_state = 7, .external_lex_state = 4}, - [2028] = {.lex_state = 7, .external_lex_state = 4}, - [2029] = {.lex_state = 7, .external_lex_state = 4}, - [2030] = {.lex_state = 7, .external_lex_state = 4}, - [2031] = {.lex_state = 7, .external_lex_state = 3}, - [2032] = {.lex_state = 7, .external_lex_state = 3}, - [2033] = {.lex_state = 7, .external_lex_state = 3}, - [2034] = {.lex_state = 7, .external_lex_state = 3}, - [2035] = {.lex_state = 7, .external_lex_state = 3}, - [2036] = {.lex_state = 7, .external_lex_state = 3}, - [2037] = {.lex_state = 7, .external_lex_state = 3}, - [2038] = {.lex_state = 7, .external_lex_state = 3}, - [2039] = {.lex_state = 7, .external_lex_state = 3}, - [2040] = {.lex_state = 7, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 3}, - [2042] = {.lex_state = 7, .external_lex_state = 3}, - [2043] = {.lex_state = 7, .external_lex_state = 3}, - [2044] = {.lex_state = 7, .external_lex_state = 3}, - [2045] = {.lex_state = 7, .external_lex_state = 3}, - [2046] = {.lex_state = 7, .external_lex_state = 3}, - [2047] = {.lex_state = 7, .external_lex_state = 3}, - [2048] = {.lex_state = 7, .external_lex_state = 3}, - [2049] = {.lex_state = 7, .external_lex_state = 3}, - [2050] = {.lex_state = 7, .external_lex_state = 3}, - [2051] = {.lex_state = 7, .external_lex_state = 3}, - [2052] = {.lex_state = 7, .external_lex_state = 3}, - [2053] = {.lex_state = 7, .external_lex_state = 3}, - [2054] = {.lex_state = 7, .external_lex_state = 3}, - [2055] = {.lex_state = 7, .external_lex_state = 3}, - [2056] = {.lex_state = 7, .external_lex_state = 3}, - [2057] = {.lex_state = 7, .external_lex_state = 3}, - [2058] = {.lex_state = 7, .external_lex_state = 3}, - [2059] = {.lex_state = 7, .external_lex_state = 3}, - [2060] = {.lex_state = 7, .external_lex_state = 4}, - [2061] = {.lex_state = 7, .external_lex_state = 4}, - [2062] = {.lex_state = 7, .external_lex_state = 4}, - [2063] = {.lex_state = 7, .external_lex_state = 3}, - [2064] = {.lex_state = 7, .external_lex_state = 3}, - [2065] = {.lex_state = 7, .external_lex_state = 3}, - [2066] = {.lex_state = 7, .external_lex_state = 4}, - [2067] = {.lex_state = 7, .external_lex_state = 4}, - [2068] = {.lex_state = 7, .external_lex_state = 4}, - [2069] = {.lex_state = 12, .external_lex_state = 5}, - [2070] = {.lex_state = 7, .external_lex_state = 3}, - [2071] = {.lex_state = 7, .external_lex_state = 4}, - [2072] = {.lex_state = 7, .external_lex_state = 3}, - [2073] = {.lex_state = 12, .external_lex_state = 5}, - [2074] = {.lex_state = 12, .external_lex_state = 5}, - [2075] = {.lex_state = 7, .external_lex_state = 3}, - [2076] = {.lex_state = 7, .external_lex_state = 4}, - [2077] = {.lex_state = 7, .external_lex_state = 3}, - [2078] = {.lex_state = 7, .external_lex_state = 3}, - [2079] = {.lex_state = 7, .external_lex_state = 4}, - [2080] = {.lex_state = 7, .external_lex_state = 4}, - [2081] = {.lex_state = 7, .external_lex_state = 4}, - [2082] = {.lex_state = 12, .external_lex_state = 5}, - [2083] = {.lex_state = 7, .external_lex_state = 3}, - [2084] = {.lex_state = 12, .external_lex_state = 5}, - [2085] = {.lex_state = 12, .external_lex_state = 2}, - [2086] = {.lex_state = 12, .external_lex_state = 5}, - [2087] = {.lex_state = 12, .external_lex_state = 2}, - [2088] = {.lex_state = 7, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 4}, - [2090] = {.lex_state = 7, .external_lex_state = 4}, - [2091] = {.lex_state = 12, .external_lex_state = 2}, - [2092] = {.lex_state = 7, .external_lex_state = 3}, - [2093] = {.lex_state = 12, .external_lex_state = 5}, - [2094] = {.lex_state = 12, .external_lex_state = 2}, - [2095] = {.lex_state = 12, .external_lex_state = 2}, - [2096] = {.lex_state = 7, .external_lex_state = 4}, - [2097] = {.lex_state = 12, .external_lex_state = 2}, - [2098] = {.lex_state = 12, .external_lex_state = 5}, - [2099] = {.lex_state = 12, .external_lex_state = 5}, - [2100] = {.lex_state = 7, .external_lex_state = 4}, - [2101] = {.lex_state = 12, .external_lex_state = 5}, - [2102] = {.lex_state = 12, .external_lex_state = 5}, - [2103] = {.lex_state = 7, .external_lex_state = 4}, - [2104] = {.lex_state = 7, .external_lex_state = 4}, - [2105] = {.lex_state = 7, .external_lex_state = 4}, - [2106] = {.lex_state = 12, .external_lex_state = 5}, - [2107] = {.lex_state = 12, .external_lex_state = 5}, - [2108] = {.lex_state = 12, .external_lex_state = 5}, - [2109] = {.lex_state = 7, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, - [2111] = {.lex_state = 12, .external_lex_state = 5}, - [2112] = {.lex_state = 12, .external_lex_state = 5}, - [2113] = {.lex_state = 12, .external_lex_state = 5}, - [2114] = {.lex_state = 12, .external_lex_state = 5}, - [2115] = {.lex_state = 12, .external_lex_state = 5}, - [2116] = {.lex_state = 7, .external_lex_state = 4}, - [2117] = {.lex_state = 12, .external_lex_state = 5}, - [2118] = {.lex_state = 12, .external_lex_state = 5}, - [2119] = {.lex_state = 12, .external_lex_state = 5}, - [2120] = {.lex_state = 7, .external_lex_state = 4}, - [2121] = {.lex_state = 7, .external_lex_state = 4}, - [2122] = {.lex_state = 7, .external_lex_state = 4}, - [2123] = {.lex_state = 7, .external_lex_state = 4}, - [2124] = {.lex_state = 7, .external_lex_state = 4}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, - [2126] = {.lex_state = 7, .external_lex_state = 4}, - [2127] = {.lex_state = 7, .external_lex_state = 4}, - [2128] = {.lex_state = 7, .external_lex_state = 4}, - [2129] = {.lex_state = 7, .external_lex_state = 3}, - [2130] = {.lex_state = 7, .external_lex_state = 4}, - [2131] = {.lex_state = 7, .external_lex_state = 4}, - [2132] = {.lex_state = 7, .external_lex_state = 4}, - [2133] = {.lex_state = 7, .external_lex_state = 4}, - [2134] = {.lex_state = 7, .external_lex_state = 4}, - [2135] = {.lex_state = 7, .external_lex_state = 4}, - [2136] = {.lex_state = 7, .external_lex_state = 4}, - [2137] = {.lex_state = 7, .external_lex_state = 4}, - [2138] = {.lex_state = 7, .external_lex_state = 4}, - [2139] = {.lex_state = 7, .external_lex_state = 4}, - [2140] = {.lex_state = 7, .external_lex_state = 4}, - [2141] = {.lex_state = 7, .external_lex_state = 4}, - [2142] = {.lex_state = 7, .external_lex_state = 4}, - [2143] = {.lex_state = 7, .external_lex_state = 4}, - [2144] = {.lex_state = 7, .external_lex_state = 4}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 7, .external_lex_state = 4}, - [2147] = {.lex_state = 7, .external_lex_state = 3}, - [2148] = {.lex_state = 7, .external_lex_state = 4}, - [2149] = {.lex_state = 7, .external_lex_state = 4}, - [2150] = {.lex_state = 7, .external_lex_state = 4}, - [2151] = {.lex_state = 7, .external_lex_state = 4}, - [2152] = {.lex_state = 7, .external_lex_state = 4}, - [2153] = {.lex_state = 7, .external_lex_state = 4}, - [2154] = {.lex_state = 7, .external_lex_state = 4}, - [2155] = {.lex_state = 7, .external_lex_state = 4}, - [2156] = {.lex_state = 7, .external_lex_state = 4}, - [2157] = {.lex_state = 7, .external_lex_state = 4}, - [2158] = {.lex_state = 7, .external_lex_state = 4}, - [2159] = {.lex_state = 7, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 4}, - [2161] = {.lex_state = 7, .external_lex_state = 4}, - [2162] = {.lex_state = 7, .external_lex_state = 4}, - [2163] = {.lex_state = 7, .external_lex_state = 4}, - [2164] = {.lex_state = 7, .external_lex_state = 4}, - [2165] = {.lex_state = 7, .external_lex_state = 4}, - [2166] = {.lex_state = 7, .external_lex_state = 4}, - [2167] = {.lex_state = 7, .external_lex_state = 3}, - [2168] = {.lex_state = 7, .external_lex_state = 4}, - [2169] = {.lex_state = 12, .external_lex_state = 5}, - [2170] = {.lex_state = 7, .external_lex_state = 4}, - [2171] = {.lex_state = 7, .external_lex_state = 4}, - [2172] = {.lex_state = 7, .external_lex_state = 4}, - [2173] = {.lex_state = 7, .external_lex_state = 3}, - [2174] = {.lex_state = 7, .external_lex_state = 3}, - [2175] = {.lex_state = 7, .external_lex_state = 4}, - [2176] = {.lex_state = 8, .external_lex_state = 4}, - [2177] = {.lex_state = 7, .external_lex_state = 4}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, - [2179] = {.lex_state = 7, .external_lex_state = 4}, - [2180] = {.lex_state = 7, .external_lex_state = 4}, - [2181] = {.lex_state = 7, .external_lex_state = 4}, - [2182] = {.lex_state = 7, .external_lex_state = 3}, - [2183] = {.lex_state = 7, .external_lex_state = 4}, - [2184] = {.lex_state = 7, .external_lex_state = 4}, - [2185] = {.lex_state = 7, .external_lex_state = 3}, - [2186] = {.lex_state = 7, .external_lex_state = 4}, - [2187] = {.lex_state = 7, .external_lex_state = 4}, - [2188] = {.lex_state = 7, .external_lex_state = 4}, - [2189] = {.lex_state = 7, .external_lex_state = 4}, - [2190] = {.lex_state = 7, .external_lex_state = 3}, - [2191] = {.lex_state = 7, .external_lex_state = 4}, - [2192] = {.lex_state = 7, .external_lex_state = 4}, - [2193] = {.lex_state = 7, .external_lex_state = 4}, - [2194] = {.lex_state = 7, .external_lex_state = 4}, - [2195] = {.lex_state = 7, .external_lex_state = 4}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 7, .external_lex_state = 3}, - [2198] = {.lex_state = 7, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 7, .external_lex_state = 3}, - [2201] = {.lex_state = 7, .external_lex_state = 3}, - [2202] = {.lex_state = 7, .external_lex_state = 3}, - [2203] = {.lex_state = 7, .external_lex_state = 3}, - [2204] = {.lex_state = 7, .external_lex_state = 3}, - [2205] = {.lex_state = 7, .external_lex_state = 3}, - [2206] = {.lex_state = 7, .external_lex_state = 3}, - [2207] = {.lex_state = 7, .external_lex_state = 4}, - [2208] = {.lex_state = 7, .external_lex_state = 4}, - [2209] = {.lex_state = 7, .external_lex_state = 4}, - [2210] = {.lex_state = 7, .external_lex_state = 4}, - [2211] = {.lex_state = 7, .external_lex_state = 3}, - [2212] = {.lex_state = 12, .external_lex_state = 5}, - [2213] = {.lex_state = 7, .external_lex_state = 4}, - [2214] = {.lex_state = 7, .external_lex_state = 4}, - [2215] = {.lex_state = 12, .external_lex_state = 5}, - [2216] = {.lex_state = 7, .external_lex_state = 3}, - [2217] = {.lex_state = 12, .external_lex_state = 5}, - [2218] = {.lex_state = 7, .external_lex_state = 4}, - [2219] = {.lex_state = 7, .external_lex_state = 4}, - [2220] = {.lex_state = 7, .external_lex_state = 3}, - [2221] = {.lex_state = 7, .external_lex_state = 4}, - [2222] = {.lex_state = 7, .external_lex_state = 4}, - [2223] = {.lex_state = 7, .external_lex_state = 4}, - [2224] = {.lex_state = 7, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 4}, - [2226] = {.lex_state = 7, .external_lex_state = 4}, - [2227] = {.lex_state = 12, .external_lex_state = 2}, - [2228] = {.lex_state = 7, .external_lex_state = 4}, - [2229] = {.lex_state = 12, .external_lex_state = 2}, - [2230] = {.lex_state = 12, .external_lex_state = 5}, - [2231] = {.lex_state = 7, .external_lex_state = 4}, - [2232] = {.lex_state = 7, .external_lex_state = 4}, - [2233] = {.lex_state = 7, .external_lex_state = 3}, - [2234] = {.lex_state = 7, .external_lex_state = 3}, - [2235] = {.lex_state = 12, .external_lex_state = 5}, - [2236] = {.lex_state = 12, .external_lex_state = 5}, - [2237] = {.lex_state = 7, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 7, .external_lex_state = 3}, - [2240] = {.lex_state = 12, .external_lex_state = 5}, - [2241] = {.lex_state = 7, .external_lex_state = 3}, - [2242] = {.lex_state = 12, .external_lex_state = 5}, - [2243] = {.lex_state = 7, .external_lex_state = 3}, - [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 7, .external_lex_state = 3}, - [2246] = {.lex_state = 12, .external_lex_state = 5}, - [2247] = {.lex_state = 12, .external_lex_state = 5}, - [2248] = {.lex_state = 12, .external_lex_state = 5}, - [2249] = {.lex_state = 7, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 7, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 3}, - [2255] = {.lex_state = 7, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 3}, - [2260] = {.lex_state = 7, .external_lex_state = 3}, - [2261] = {.lex_state = 7, .external_lex_state = 3}, - [2262] = {.lex_state = 7, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, - [2264] = {.lex_state = 7, .external_lex_state = 3}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 3}, - [2267] = {.lex_state = 7, .external_lex_state = 3}, - [2268] = {.lex_state = 7, .external_lex_state = 3}, - [2269] = {.lex_state = 7, .external_lex_state = 3}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 7, .external_lex_state = 4}, - [2275] = {.lex_state = 7, .external_lex_state = 4}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 4}, - [2278] = {.lex_state = 149, .external_lex_state = 2}, - [2279] = {.lex_state = 7, .external_lex_state = 3}, - [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 7, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 4}, - [2284] = {.lex_state = 7, .external_lex_state = 4}, - [2285] = {.lex_state = 7, .external_lex_state = 4}, - [2286] = {.lex_state = 7, .external_lex_state = 4}, - [2287] = {.lex_state = 7, .external_lex_state = 3}, - [2288] = {.lex_state = 7, .external_lex_state = 4}, - [2289] = {.lex_state = 12, .external_lex_state = 5}, - [2290] = {.lex_state = 12, .external_lex_state = 5}, - [2291] = {.lex_state = 7, .external_lex_state = 4}, - [2292] = {.lex_state = 12, .external_lex_state = 2}, - [2293] = {.lex_state = 7, .external_lex_state = 4}, - [2294] = {.lex_state = 12, .external_lex_state = 2}, - [2295] = {.lex_state = 12, .external_lex_state = 5}, - [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 12, .external_lex_state = 5}, - [2298] = {.lex_state = 7, .external_lex_state = 4}, - [2299] = {.lex_state = 7, .external_lex_state = 4}, - [2300] = {.lex_state = 7, .external_lex_state = 4}, - [2301] = {.lex_state = 7, .external_lex_state = 4}, - [2302] = {.lex_state = 7, .external_lex_state = 4}, - [2303] = {.lex_state = 7, .external_lex_state = 4}, - [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 4}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, - [2307] = {.lex_state = 7, .external_lex_state = 3}, - [2308] = {.lex_state = 7, .external_lex_state = 3}, - [2309] = {.lex_state = 12, .external_lex_state = 5}, - [2310] = {.lex_state = 7, .external_lex_state = 3}, - [2311] = {.lex_state = 7, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, - [2313] = {.lex_state = 12, .external_lex_state = 5}, - [2314] = {.lex_state = 12, .external_lex_state = 5}, - [2315] = {.lex_state = 7, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, - [2317] = {.lex_state = 7, .external_lex_state = 3}, - [2318] = {.lex_state = 7, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 4}, - [2320] = {.lex_state = 7, .external_lex_state = 4}, - [2321] = {.lex_state = 7, .external_lex_state = 4}, - [2322] = {.lex_state = 7, .external_lex_state = 4}, - [2323] = {.lex_state = 7, .external_lex_state = 4}, - [2324] = {.lex_state = 7, .external_lex_state = 4}, - [2325] = {.lex_state = 7, .external_lex_state = 4}, - [2326] = {.lex_state = 7, .external_lex_state = 4}, - [2327] = {.lex_state = 7, .external_lex_state = 4}, - [2328] = {.lex_state = 7, .external_lex_state = 4}, - [2329] = {.lex_state = 7, .external_lex_state = 4}, - [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 12, .external_lex_state = 5}, - [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 7, .external_lex_state = 3}, - [2334] = {.lex_state = 12, .external_lex_state = 2}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, - [2336] = {.lex_state = 12, .external_lex_state = 2}, - [2337] = {.lex_state = 149, .external_lex_state = 2}, - [2338] = {.lex_state = 7, .external_lex_state = 4}, - [2339] = {.lex_state = 7, .external_lex_state = 4}, - [2340] = {.lex_state = 8, .external_lex_state = 4}, - [2341] = {.lex_state = 7, .external_lex_state = 4}, - [2342] = {.lex_state = 7, .external_lex_state = 3}, - [2343] = {.lex_state = 12, .external_lex_state = 5}, - [2344] = {.lex_state = 12, .external_lex_state = 5}, - [2345] = {.lex_state = 12, .external_lex_state = 5}, - [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, - [2349] = {.lex_state = 7, .external_lex_state = 3}, - [2350] = {.lex_state = 7, .external_lex_state = 4}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, - [2352] = {.lex_state = 7, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 7, .external_lex_state = 4}, - [2355] = {.lex_state = 7, .external_lex_state = 4}, - [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, - [2358] = {.lex_state = 12, .external_lex_state = 5}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 7, .external_lex_state = 3}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, - [2364] = {.lex_state = 7, .external_lex_state = 3}, - [2365] = {.lex_state = 7, .external_lex_state = 3}, - [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, - [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 7, .external_lex_state = 3}, - [2370] = {.lex_state = 7, .external_lex_state = 3}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 7, .external_lex_state = 3}, - [2373] = {.lex_state = 7, .external_lex_state = 3}, - [2374] = {.lex_state = 7, .external_lex_state = 3}, - [2375] = {.lex_state = 12, .external_lex_state = 2}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 4}, - [2378] = {.lex_state = 12, .external_lex_state = 2}, - [2379] = {.lex_state = 7, .external_lex_state = 4}, - [2380] = {.lex_state = 7, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 12, .external_lex_state = 5}, - [2383] = {.lex_state = 7, .external_lex_state = 3}, - [2384] = {.lex_state = 7, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, - [2386] = {.lex_state = 12, .external_lex_state = 2}, - [2387] = {.lex_state = 7, .external_lex_state = 4}, - [2388] = {.lex_state = 7, .external_lex_state = 3}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 12, .external_lex_state = 5}, - [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 12, .external_lex_state = 5}, - [2393] = {.lex_state = 12, .external_lex_state = 5}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 12, .external_lex_state = 5}, - [2396] = {.lex_state = 149, .external_lex_state = 2}, - [2397] = {.lex_state = 12, .external_lex_state = 5}, - [2398] = {.lex_state = 12, .external_lex_state = 5}, - [2399] = {.lex_state = 12, .external_lex_state = 5}, - [2400] = {.lex_state = 12, .external_lex_state = 2}, - [2401] = {.lex_state = 12, .external_lex_state = 5}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 12, .external_lex_state = 5}, - [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 12, .external_lex_state = 2}, - [2406] = {.lex_state = 12, .external_lex_state = 5}, - [2407] = {.lex_state = 12, .external_lex_state = 5}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, - [2409] = {.lex_state = 12, .external_lex_state = 5}, - [2410] = {.lex_state = 12, .external_lex_state = 5}, - [2411] = {.lex_state = 7, .external_lex_state = 4}, - [2412] = {.lex_state = 7, .external_lex_state = 4}, - [2413] = {.lex_state = 7, .external_lex_state = 4}, - [2414] = {.lex_state = 12, .external_lex_state = 5}, - [2415] = {.lex_state = 12, .external_lex_state = 5}, - [2416] = {.lex_state = 7, .external_lex_state = 4}, - [2417] = {.lex_state = 12, .external_lex_state = 5}, - [2418] = {.lex_state = 12, .external_lex_state = 5}, - [2419] = {.lex_state = 7, .external_lex_state = 4}, - [2420] = {.lex_state = 12, .external_lex_state = 5}, - [2421] = {.lex_state = 12, .external_lex_state = 5}, - [2422] = {.lex_state = 7, .external_lex_state = 3}, - [2423] = {.lex_state = 7, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 3}, - [2425] = {.lex_state = 12, .external_lex_state = 2}, - [2426] = {.lex_state = 12, .external_lex_state = 2}, - [2427] = {.lex_state = 149, .external_lex_state = 2}, - [2428] = {.lex_state = 12, .external_lex_state = 5}, - [2429] = {.lex_state = 7, .external_lex_state = 3}, - [2430] = {.lex_state = 8, .external_lex_state = 3}, - [2431] = {.lex_state = 7, .external_lex_state = 4}, - [2432] = {.lex_state = 7, .external_lex_state = 3}, - [2433] = {.lex_state = 7, .external_lex_state = 4}, - [2434] = {.lex_state = 7, .external_lex_state = 3}, - [2435] = {.lex_state = 7, .external_lex_state = 3}, - [2436] = {.lex_state = 7, .external_lex_state = 3}, - [2437] = {.lex_state = 7, .external_lex_state = 3}, - [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 7, .external_lex_state = 3}, - [2440] = {.lex_state = 7, .external_lex_state = 3}, - [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 3}, - [2443] = {.lex_state = 7, .external_lex_state = 3}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, - [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 7, .external_lex_state = 3}, - [2448] = {.lex_state = 7, .external_lex_state = 3}, - [2449] = {.lex_state = 7, .external_lex_state = 3}, - [2450] = {.lex_state = 7, .external_lex_state = 3}, - [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 7, .external_lex_state = 3}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, - [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 7, .external_lex_state = 3}, - [2456] = {.lex_state = 7, .external_lex_state = 3}, - [2457] = {.lex_state = 7, .external_lex_state = 3}, - [2458] = {.lex_state = 7, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 4}, - [2461] = {.lex_state = 12, .external_lex_state = 5}, - [2462] = {.lex_state = 12, .external_lex_state = 5}, - [2463] = {.lex_state = 7, .external_lex_state = 4}, - [2464] = {.lex_state = 12, .external_lex_state = 5}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 7, .external_lex_state = 3}, - [2467] = {.lex_state = 7, .external_lex_state = 3}, - [2468] = {.lex_state = 7, .external_lex_state = 3}, - [2469] = {.lex_state = 7, .external_lex_state = 3}, - [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 7, .external_lex_state = 3}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.lex_state = 7, .external_lex_state = 3}, - [2474] = {.lex_state = 7, .external_lex_state = 3}, - [2475] = {.lex_state = 7, .external_lex_state = 3}, - [2476] = {.lex_state = 7, .external_lex_state = 3}, - [2477] = {.lex_state = 7, .external_lex_state = 3}, - [2478] = {.lex_state = 7, .external_lex_state = 3}, - [2479] = {.lex_state = 7, .external_lex_state = 3}, - [2480] = {.lex_state = 7, .external_lex_state = 3}, - [2481] = {.lex_state = 12, .external_lex_state = 2}, - [2482] = {.lex_state = 7, .external_lex_state = 3}, - [2483] = {.lex_state = 7, .external_lex_state = 3}, - [2484] = {.lex_state = 7, .external_lex_state = 3}, - [2485] = {.lex_state = 7, .external_lex_state = 3}, - [2486] = {.lex_state = 149, .external_lex_state = 5}, - [2487] = {.lex_state = 149, .external_lex_state = 5}, - [2488] = {.lex_state = 7, .external_lex_state = 3}, - [2489] = {.lex_state = 7, .external_lex_state = 3}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, - [2491] = {.lex_state = 7, .external_lex_state = 3}, - [2492] = {.lex_state = 7, .external_lex_state = 3}, - [2493] = {.lex_state = 149, .external_lex_state = 2}, - [2494] = {.lex_state = 7, .external_lex_state = 3}, - [2495] = {.lex_state = 149, .external_lex_state = 2}, - [2496] = {.lex_state = 12, .external_lex_state = 5}, - [2497] = {.lex_state = 7, .external_lex_state = 3}, - [2498] = {.lex_state = 149, .external_lex_state = 2}, - [2499] = {.lex_state = 7, .external_lex_state = 3}, - [2500] = {.lex_state = 12, .external_lex_state = 5}, - [2501] = {.lex_state = 7, .external_lex_state = 3}, - [2502] = {.lex_state = 7, .external_lex_state = 3}, - [2503] = {.lex_state = 7, .external_lex_state = 3}, - [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 7, .external_lex_state = 3}, - [2506] = {.lex_state = 7, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .external_lex_state = 3}, - [2508] = {.lex_state = 7, .external_lex_state = 3}, - [2509] = {.lex_state = 7, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, - [2511] = {.lex_state = 7, .external_lex_state = 3}, - [2512] = {.lex_state = 7, .external_lex_state = 3}, - [2513] = {.lex_state = 7, .external_lex_state = 3}, - [2514] = {.lex_state = 7, .external_lex_state = 3}, - [2515] = {.lex_state = 7, .external_lex_state = 3}, - [2516] = {.lex_state = 7, .external_lex_state = 3}, - [2517] = {.lex_state = 7, .external_lex_state = 3}, - [2518] = {.lex_state = 7, .external_lex_state = 3}, - [2519] = {.lex_state = 7, .external_lex_state = 3}, - [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 7, .external_lex_state = 3}, - [2523] = {.lex_state = 7, .external_lex_state = 3}, - [2524] = {.lex_state = 7, .external_lex_state = 3}, - [2525] = {.lex_state = 7, .external_lex_state = 3}, - [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 7, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, - [2529] = {.lex_state = 7, .external_lex_state = 3}, - [2530] = {.lex_state = 7, .external_lex_state = 3}, - [2531] = {.lex_state = 12, .external_lex_state = 2}, - [2532] = {.lex_state = 12, .external_lex_state = 2}, - [2533] = {.lex_state = 12, .external_lex_state = 2}, - [2534] = {.lex_state = 12, .external_lex_state = 2}, - [2535] = {.lex_state = 12, .external_lex_state = 2}, - [2536] = {.lex_state = 7, .external_lex_state = 3}, - [2537] = {.lex_state = 7, .external_lex_state = 3}, - [2538] = {.lex_state = 7, .external_lex_state = 3}, - [2539] = {.lex_state = 7, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, - [2541] = {.lex_state = 149, .external_lex_state = 5}, - [2542] = {.lex_state = 149, .external_lex_state = 5}, - [2543] = {.lex_state = 149, .external_lex_state = 5}, - [2544] = {.lex_state = 149, .external_lex_state = 5}, - [2545] = {.lex_state = 7, .external_lex_state = 3}, - [2546] = {.lex_state = 7, .external_lex_state = 3}, - [2547] = {.lex_state = 7, .external_lex_state = 3}, - [2548] = {.lex_state = 7, .external_lex_state = 3}, - [2549] = {.lex_state = 7, .external_lex_state = 3}, - [2550] = {.lex_state = 7, .external_lex_state = 3}, - [2551] = {.lex_state = 7, .external_lex_state = 3}, - [2552] = {.lex_state = 7, .external_lex_state = 3}, - [2553] = {.lex_state = 7, .external_lex_state = 3}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, - [2555] = {.lex_state = 7, .external_lex_state = 4}, - [2556] = {.lex_state = 7, .external_lex_state = 3}, - [2557] = {.lex_state = 149, .external_lex_state = 5}, - [2558] = {.lex_state = 149, .external_lex_state = 5}, - [2559] = {.lex_state = 149, .external_lex_state = 5}, - [2560] = {.lex_state = 149, .external_lex_state = 5}, - [2561] = {.lex_state = 7, .external_lex_state = 3}, - [2562] = {.lex_state = 7, .external_lex_state = 3}, - [2563] = {.lex_state = 7, .external_lex_state = 3}, - [2564] = {.lex_state = 7, .external_lex_state = 3}, - [2565] = {.lex_state = 7, .external_lex_state = 3}, - [2566] = {.lex_state = 12, .external_lex_state = 2}, - [2567] = {.lex_state = 149, .external_lex_state = 5}, - [2568] = {.lex_state = 8, .external_lex_state = 3}, - [2569] = {.lex_state = 149, .external_lex_state = 5}, - [2570] = {.lex_state = 149, .external_lex_state = 5}, - [2571] = {.lex_state = 149, .external_lex_state = 5}, - [2572] = {.lex_state = 149, .external_lex_state = 5}, - [2573] = {.lex_state = 149, .external_lex_state = 5}, - [2574] = {.lex_state = 149, .external_lex_state = 5}, - [2575] = {.lex_state = 12, .external_lex_state = 2}, - [2576] = {.lex_state = 12, .external_lex_state = 2}, - [2577] = {.lex_state = 12, .external_lex_state = 2}, - [2578] = {.lex_state = 149, .external_lex_state = 5}, - [2579] = {.lex_state = 12, .external_lex_state = 2}, - [2580] = {.lex_state = 12, .external_lex_state = 2}, - [2581] = {.lex_state = 12, .external_lex_state = 2}, - [2582] = {.lex_state = 12, .external_lex_state = 2}, - [2583] = {.lex_state = 149, .external_lex_state = 5}, - [2584] = {.lex_state = 7, .external_lex_state = 3}, - [2585] = {.lex_state = 12, .external_lex_state = 2}, - [2586] = {.lex_state = 149, .external_lex_state = 5}, - [2587] = {.lex_state = 149, .external_lex_state = 5}, - [2588] = {.lex_state = 12, .external_lex_state = 2}, - [2589] = {.lex_state = 12, .external_lex_state = 2}, - [2590] = {.lex_state = 149, .external_lex_state = 5}, - [2591] = {.lex_state = 149, .external_lex_state = 5}, - [2592] = {.lex_state = 7, .external_lex_state = 3}, - [2593] = {.lex_state = 149, .external_lex_state = 5}, - [2594] = {.lex_state = 12, .external_lex_state = 2}, - [2595] = {.lex_state = 12, .external_lex_state = 2}, - [2596] = {.lex_state = 7, .external_lex_state = 3}, - [2597] = {.lex_state = 12, .external_lex_state = 2}, - [2598] = {.lex_state = 12, .external_lex_state = 2}, - [2599] = {.lex_state = 149, .external_lex_state = 5}, - [2600] = {.lex_state = 149, .external_lex_state = 5}, - [2601] = {.lex_state = 7, .external_lex_state = 3}, - [2602] = {.lex_state = 7, .external_lex_state = 3}, - [2603] = {.lex_state = 12, .external_lex_state = 2}, - [2604] = {.lex_state = 12, .external_lex_state = 5}, - [2605] = {.lex_state = 7, .external_lex_state = 3}, - [2606] = {.lex_state = 12, .external_lex_state = 5}, - [2607] = {.lex_state = 12, .external_lex_state = 5}, - [2608] = {.lex_state = 7, .external_lex_state = 3}, - [2609] = {.lex_state = 12, .external_lex_state = 2}, - [2610] = {.lex_state = 12, .external_lex_state = 5}, - [2611] = {.lex_state = 12, .external_lex_state = 5}, - [2612] = {.lex_state = 12, .external_lex_state = 5}, - [2613] = {.lex_state = 12, .external_lex_state = 5}, - [2614] = {.lex_state = 12, .external_lex_state = 5}, - [2615] = {.lex_state = 12, .external_lex_state = 5}, - [2616] = {.lex_state = 12, .external_lex_state = 5}, - [2617] = {.lex_state = 12, .external_lex_state = 5}, - [2618] = {.lex_state = 12, .external_lex_state = 5}, - [2619] = {.lex_state = 7, .external_lex_state = 3}, - [2620] = {.lex_state = 12, .external_lex_state = 5}, - [2621] = {.lex_state = 12, .external_lex_state = 5}, - [2622] = {.lex_state = 12, .external_lex_state = 5}, - [2623] = {.lex_state = 12, .external_lex_state = 5}, - [2624] = {.lex_state = 12, .external_lex_state = 5}, - [2625] = {.lex_state = 12, .external_lex_state = 5}, - [2626] = {.lex_state = 12, .external_lex_state = 5}, - [2627] = {.lex_state = 7, .external_lex_state = 3}, - [2628] = {.lex_state = 12, .external_lex_state = 5}, - [2629] = {.lex_state = 12, .external_lex_state = 5}, - [2630] = {.lex_state = 12, .external_lex_state = 5}, - [2631] = {.lex_state = 12, .external_lex_state = 5}, - [2632] = {.lex_state = 12, .external_lex_state = 5}, - [2633] = {.lex_state = 12, .external_lex_state = 5}, - [2634] = {.lex_state = 12, .external_lex_state = 5}, - [2635] = {.lex_state = 7, .external_lex_state = 3}, - [2636] = {.lex_state = 12, .external_lex_state = 5}, - [2637] = {.lex_state = 12, .external_lex_state = 5}, - [2638] = {.lex_state = 7, .external_lex_state = 3}, - [2639] = {.lex_state = 12, .external_lex_state = 5}, - [2640] = {.lex_state = 12, .external_lex_state = 5}, - [2641] = {.lex_state = 12, .external_lex_state = 5}, - [2642] = {.lex_state = 12, .external_lex_state = 5}, - [2643] = {.lex_state = 7, .external_lex_state = 3}, - [2644] = {.lex_state = 12, .external_lex_state = 5}, - [2645] = {.lex_state = 12, .external_lex_state = 5}, - [2646] = {.lex_state = 12, .external_lex_state = 5}, - [2647] = {.lex_state = 12, .external_lex_state = 5}, - [2648] = {.lex_state = 7, .external_lex_state = 3}, - [2649] = {.lex_state = 12, .external_lex_state = 5}, - [2650] = {.lex_state = 12, .external_lex_state = 5}, - [2651] = {.lex_state = 12, .external_lex_state = 5}, - [2652] = {.lex_state = 12, .external_lex_state = 5}, - [2653] = {.lex_state = 12, .external_lex_state = 5}, - [2654] = {.lex_state = 12, .external_lex_state = 5}, - [2655] = {.lex_state = 12, .external_lex_state = 5}, - [2656] = {.lex_state = 12, .external_lex_state = 5}, - [2657] = {.lex_state = 12, .external_lex_state = 5}, - [2658] = {.lex_state = 12, .external_lex_state = 5}, - [2659] = {.lex_state = 12, .external_lex_state = 2}, - [2660] = {.lex_state = 12, .external_lex_state = 5}, - [2661] = {.lex_state = 7, .external_lex_state = 3}, - [2662] = {.lex_state = 12, .external_lex_state = 5}, - [2663] = {.lex_state = 12, .external_lex_state = 5}, - [2664] = {.lex_state = 12, .external_lex_state = 5}, - [2665] = {.lex_state = 7, .external_lex_state = 3}, - [2666] = {.lex_state = 12, .external_lex_state = 5}, - [2667] = {.lex_state = 12, .external_lex_state = 2}, - [2668] = {.lex_state = 12, .external_lex_state = 5}, - [2669] = {.lex_state = 7, .external_lex_state = 3}, - [2670] = {.lex_state = 12, .external_lex_state = 2}, - [2671] = {.lex_state = 12, .external_lex_state = 2}, - [2672] = {.lex_state = 12, .external_lex_state = 2}, - [2673] = {.lex_state = 12, .external_lex_state = 2}, - [2674] = {.lex_state = 12, .external_lex_state = 2}, - [2675] = {.lex_state = 12, .external_lex_state = 2}, - [2676] = {.lex_state = 12, .external_lex_state = 2}, - [2677] = {.lex_state = 12, .external_lex_state = 2}, - [2678] = {.lex_state = 12, .external_lex_state = 2}, - [2679] = {.lex_state = 12, .external_lex_state = 2}, - [2680] = {.lex_state = 12, .external_lex_state = 2}, - [2681] = {.lex_state = 12, .external_lex_state = 2}, - [2682] = {.lex_state = 149, .external_lex_state = 2}, - [2683] = {.lex_state = 12, .external_lex_state = 2}, - [2684] = {.lex_state = 149, .external_lex_state = 2}, - [2685] = {.lex_state = 12, .external_lex_state = 2}, - [2686] = {.lex_state = 12, .external_lex_state = 2}, - [2687] = {.lex_state = 12, .external_lex_state = 2}, - [2688] = {.lex_state = 12, .external_lex_state = 2}, - [2689] = {.lex_state = 12, .external_lex_state = 2}, - [2690] = {.lex_state = 12, .external_lex_state = 2}, - [2691] = {.lex_state = 12, .external_lex_state = 2}, - [2692] = {.lex_state = 12, .external_lex_state = 2}, - [2693] = {.lex_state = 12, .external_lex_state = 2}, - [2694] = {.lex_state = 149, .external_lex_state = 2}, - [2695] = {.lex_state = 12, .external_lex_state = 2}, - [2696] = {.lex_state = 12, .external_lex_state = 2}, - [2697] = {.lex_state = 12, .external_lex_state = 2}, - [2698] = {.lex_state = 12, .external_lex_state = 2}, - [2699] = {.lex_state = 12, .external_lex_state = 2}, - [2700] = {.lex_state = 12, .external_lex_state = 2}, - [2701] = {.lex_state = 12, .external_lex_state = 2}, - [2702] = {.lex_state = 149, .external_lex_state = 2}, - [2703] = {.lex_state = 12, .external_lex_state = 2}, - [2704] = {.lex_state = 12, .external_lex_state = 2}, - [2705] = {.lex_state = 149, .external_lex_state = 2}, - [2706] = {.lex_state = 12, .external_lex_state = 2}, - [2707] = {.lex_state = 12, .external_lex_state = 2}, - [2708] = {.lex_state = 12, .external_lex_state = 2}, - [2709] = {.lex_state = 12, .external_lex_state = 2}, - [2710] = {.lex_state = 12, .external_lex_state = 2}, - [2711] = {.lex_state = 12, .external_lex_state = 2}, - [2712] = {.lex_state = 12, .external_lex_state = 2}, - [2713] = {.lex_state = 12, .external_lex_state = 2}, - [2714] = {.lex_state = 12, .external_lex_state = 2}, - [2715] = {.lex_state = 12, .external_lex_state = 2}, - [2716] = {.lex_state = 12, .external_lex_state = 2}, - [2717] = {.lex_state = 12, .external_lex_state = 2}, - [2718] = {.lex_state = 12, .external_lex_state = 2}, - [2719] = {.lex_state = 12, .external_lex_state = 2}, - [2720] = {.lex_state = 12, .external_lex_state = 2}, - [2721] = {.lex_state = 12, .external_lex_state = 2}, - [2722] = {.lex_state = 12, .external_lex_state = 2}, - [2723] = {.lex_state = 12, .external_lex_state = 2}, - [2724] = {.lex_state = 149, .external_lex_state = 2}, - [2725] = {.lex_state = 149, .external_lex_state = 2}, - [2726] = {.lex_state = 149, .external_lex_state = 2}, - [2727] = {.lex_state = 149, .external_lex_state = 2}, - [2728] = {.lex_state = 149, .external_lex_state = 2}, - [2729] = {.lex_state = 149, .external_lex_state = 2}, - [2730] = {.lex_state = 149, .external_lex_state = 2}, - [2731] = {.lex_state = 149, .external_lex_state = 2}, - [2732] = {.lex_state = 149, .external_lex_state = 2}, - [2733] = {.lex_state = 149, .external_lex_state = 2}, - [2734] = {.lex_state = 149, .external_lex_state = 2}, - [2735] = {.lex_state = 149, .external_lex_state = 2}, - [2736] = {.lex_state = 149, .external_lex_state = 2}, - [2737] = {.lex_state = 149, .external_lex_state = 2}, - [2738] = {.lex_state = 149, .external_lex_state = 2}, - [2739] = {.lex_state = 149, .external_lex_state = 2}, - [2740] = {.lex_state = 149, .external_lex_state = 2}, - [2741] = {.lex_state = 149, .external_lex_state = 2}, - [2742] = {.lex_state = 149, .external_lex_state = 2}, - [2743] = {.lex_state = 149, .external_lex_state = 2}, - [2744] = {.lex_state = 149, .external_lex_state = 2}, - [2745] = {.lex_state = 149, .external_lex_state = 2}, - [2746] = {.lex_state = 149, .external_lex_state = 2}, - [2747] = {.lex_state = 149, .external_lex_state = 2}, - [2748] = {.lex_state = 149, .external_lex_state = 2}, - [2749] = {.lex_state = 149, .external_lex_state = 2}, - [2750] = {.lex_state = 149, .external_lex_state = 2}, - [2751] = {.lex_state = 149, .external_lex_state = 2}, - [2752] = {.lex_state = 149, .external_lex_state = 2}, - [2753] = {.lex_state = 149, .external_lex_state = 2}, - [2754] = {.lex_state = 149, .external_lex_state = 2}, - [2755] = {.lex_state = 149, .external_lex_state = 2}, - [2756] = {.lex_state = 149, .external_lex_state = 2}, - [2757] = {.lex_state = 149, .external_lex_state = 2}, - [2758] = {.lex_state = 149, .external_lex_state = 2}, - [2759] = {.lex_state = 149, .external_lex_state = 2}, - [2760] = {.lex_state = 149, .external_lex_state = 2}, - [2761] = {.lex_state = 149, .external_lex_state = 2}, - [2762] = {.lex_state = 149, .external_lex_state = 2}, - [2763] = {.lex_state = 149, .external_lex_state = 2}, - [2764] = {.lex_state = 149, .external_lex_state = 2}, - [2765] = {.lex_state = 12, .external_lex_state = 2}, - [2766] = {.lex_state = 149, .external_lex_state = 2}, - [2767] = {.lex_state = 149, .external_lex_state = 2}, - [2768] = {.lex_state = 149, .external_lex_state = 2}, - [2769] = {.lex_state = 149, .external_lex_state = 2}, - [2770] = {.lex_state = 149, .external_lex_state = 2}, - [2771] = {.lex_state = 149, .external_lex_state = 2}, - [2772] = {.lex_state = 149, .external_lex_state = 2}, - [2773] = {.lex_state = 149, .external_lex_state = 2}, - [2774] = {.lex_state = 149, .external_lex_state = 2}, - [2775] = {.lex_state = 149, .external_lex_state = 2}, - [2776] = {.lex_state = 149, .external_lex_state = 2}, - [2777] = {.lex_state = 149, .external_lex_state = 2}, - [2778] = {.lex_state = 149, .external_lex_state = 2}, - [2779] = {.lex_state = 149, .external_lex_state = 2}, - [2780] = {.lex_state = 149, .external_lex_state = 2}, - [2781] = {.lex_state = 149, .external_lex_state = 2}, - [2782] = {.lex_state = 149, .external_lex_state = 2}, - [2783] = {.lex_state = 149, .external_lex_state = 2}, - [2784] = {.lex_state = 149, .external_lex_state = 2}, - [2785] = {.lex_state = 149, .external_lex_state = 2}, - [2786] = {.lex_state = 149, .external_lex_state = 2}, - [2787] = {.lex_state = 149, .external_lex_state = 2}, - [2788] = {.lex_state = 149, .external_lex_state = 2}, - [2789] = {.lex_state = 149, .external_lex_state = 2}, - [2790] = {.lex_state = 149, .external_lex_state = 2}, - [2791] = {.lex_state = 149, .external_lex_state = 2}, - [2792] = {.lex_state = 149, .external_lex_state = 2}, - [2793] = {.lex_state = 149, .external_lex_state = 2}, - [2794] = {.lex_state = 149, .external_lex_state = 2}, - [2795] = {.lex_state = 149, .external_lex_state = 2}, - [2796] = {.lex_state = 149, .external_lex_state = 2}, - [2797] = {.lex_state = 149, .external_lex_state = 2}, - [2798] = {.lex_state = 149, .external_lex_state = 2}, - [2799] = {.lex_state = 149, .external_lex_state = 2}, - [2800] = {.lex_state = 149, .external_lex_state = 2}, - [2801] = {.lex_state = 149, .external_lex_state = 2}, - [2802] = {.lex_state = 149, .external_lex_state = 2}, - [2803] = {.lex_state = 149, .external_lex_state = 2}, - [2804] = {.lex_state = 149, .external_lex_state = 2}, - [2805] = {.lex_state = 149, .external_lex_state = 2}, - [2806] = {.lex_state = 149, .external_lex_state = 2}, - [2807] = {.lex_state = 149, .external_lex_state = 2}, - [2808] = {.lex_state = 149, .external_lex_state = 2}, - [2809] = {.lex_state = 149, .external_lex_state = 2}, - [2810] = {.lex_state = 149, .external_lex_state = 2}, - [2811] = {.lex_state = 149, .external_lex_state = 2}, - [2812] = {.lex_state = 149, .external_lex_state = 2}, - [2813] = {.lex_state = 149, .external_lex_state = 2}, - [2814] = {.lex_state = 149, .external_lex_state = 2}, - [2815] = {.lex_state = 149, .external_lex_state = 2}, - [2816] = {.lex_state = 149, .external_lex_state = 2}, - [2817] = {.lex_state = 149, .external_lex_state = 2}, - [2818] = {.lex_state = 149, .external_lex_state = 2}, - [2819] = {.lex_state = 149, .external_lex_state = 2}, - [2820] = {.lex_state = 149, .external_lex_state = 2}, - [2821] = {.lex_state = 149, .external_lex_state = 2}, - [2822] = {.lex_state = 149, .external_lex_state = 2}, - [2823] = {.lex_state = 149, .external_lex_state = 2}, - [2824] = {.lex_state = 149, .external_lex_state = 2}, - [2825] = {.lex_state = 149, .external_lex_state = 2}, - [2826] = {.lex_state = 149, .external_lex_state = 2}, - [2827] = {.lex_state = 149, .external_lex_state = 2}, - [2828] = {.lex_state = 149, .external_lex_state = 2}, - [2829] = {.lex_state = 149, .external_lex_state = 2}, - [2830] = {.lex_state = 149, .external_lex_state = 2}, - [2831] = {.lex_state = 149, .external_lex_state = 2}, - [2832] = {.lex_state = 149, .external_lex_state = 2}, - [2833] = {.lex_state = 15, .external_lex_state = 2}, - [2834] = {.lex_state = 15, .external_lex_state = 2}, - [2835] = {.lex_state = 15, .external_lex_state = 2}, - [2836] = {.lex_state = 15, .external_lex_state = 2}, - [2837] = {.lex_state = 15, .external_lex_state = 2}, - [2838] = {.lex_state = 15, .external_lex_state = 2}, - [2839] = {.lex_state = 15, .external_lex_state = 2}, - [2840] = {.lex_state = 15, .external_lex_state = 2}, - [2841] = {.lex_state = 15, .external_lex_state = 2}, - [2842] = {.lex_state = 15, .external_lex_state = 2}, - [2843] = {.lex_state = 15, .external_lex_state = 2}, - [2844] = {.lex_state = 15, .external_lex_state = 2}, - [2845] = {.lex_state = 15, .external_lex_state = 2}, - [2846] = {.lex_state = 15, .external_lex_state = 2}, - [2847] = {.lex_state = 15, .external_lex_state = 2}, - [2848] = {.lex_state = 15, .external_lex_state = 2}, - [2849] = {.lex_state = 15, .external_lex_state = 2}, - [2850] = {.lex_state = 15, .external_lex_state = 2}, - [2851] = {.lex_state = 15, .external_lex_state = 2}, - [2852] = {.lex_state = 15, .external_lex_state = 2}, - [2853] = {.lex_state = 15, .external_lex_state = 2}, - [2854] = {.lex_state = 15, .external_lex_state = 2}, - [2855] = {.lex_state = 15, .external_lex_state = 2}, - [2856] = {.lex_state = 15, .external_lex_state = 2}, - [2857] = {.lex_state = 15, .external_lex_state = 2}, - [2858] = {.lex_state = 15, .external_lex_state = 2}, - [2859] = {.lex_state = 15, .external_lex_state = 2}, - [2860] = {.lex_state = 15, .external_lex_state = 2}, - [2861] = {.lex_state = 15, .external_lex_state = 2}, - [2862] = {.lex_state = 15, .external_lex_state = 2}, - [2863] = {.lex_state = 15, .external_lex_state = 2}, - [2864] = {.lex_state = 15, .external_lex_state = 2}, - [2865] = {.lex_state = 15, .external_lex_state = 2}, - [2866] = {.lex_state = 15, .external_lex_state = 2}, - [2867] = {.lex_state = 15, .external_lex_state = 2}, - [2868] = {.lex_state = 15, .external_lex_state = 2}, - [2869] = {.lex_state = 15, .external_lex_state = 2}, - [2870] = {.lex_state = 13, .external_lex_state = 2}, - [2871] = {.lex_state = 13, .external_lex_state = 5}, - [2872] = {.lex_state = 25, .external_lex_state = 2}, - [2873] = {.lex_state = 25, .external_lex_state = 2}, - [2874] = {.lex_state = 13, .external_lex_state = 5}, - [2875] = {.lex_state = 149, .external_lex_state = 2}, - [2876] = {.lex_state = 15, .external_lex_state = 5}, - [2877] = {.lex_state = 149, .external_lex_state = 2}, - [2878] = {.lex_state = 14, .external_lex_state = 2}, - [2879] = {.lex_state = 13, .external_lex_state = 2}, - [2880] = {.lex_state = 149, .external_lex_state = 2}, - [2881] = {.lex_state = 149, .external_lex_state = 2}, - [2882] = {.lex_state = 15, .external_lex_state = 5}, - [2883] = {.lex_state = 14, .external_lex_state = 2}, - [2884] = {.lex_state = 13, .external_lex_state = 2}, - [2885] = {.lex_state = 13, .external_lex_state = 2}, - [2886] = {.lex_state = 14, .external_lex_state = 2}, - [2887] = {.lex_state = 14, .external_lex_state = 2}, - [2888] = {.lex_state = 149, .external_lex_state = 2}, - [2889] = {.lex_state = 13, .external_lex_state = 2}, - [2890] = {.lex_state = 15, .external_lex_state = 5}, - [2891] = {.lex_state = 14, .external_lex_state = 2}, - [2892] = {.lex_state = 15, .external_lex_state = 2}, - [2893] = {.lex_state = 149, .external_lex_state = 2}, - [2894] = {.lex_state = 149, .external_lex_state = 2}, - [2895] = {.lex_state = 149, .external_lex_state = 2}, - [2896] = {.lex_state = 149, .external_lex_state = 2}, - [2897] = {.lex_state = 149, .external_lex_state = 2}, - [2898] = {.lex_state = 149, .external_lex_state = 2}, - [2899] = {.lex_state = 149, .external_lex_state = 2}, - [2900] = {.lex_state = 149, .external_lex_state = 2}, - [2901] = {.lex_state = 149, .external_lex_state = 2}, - [2902] = {.lex_state = 149, .external_lex_state = 2}, - [2903] = {.lex_state = 15, .external_lex_state = 5}, - [2904] = {.lex_state = 149, .external_lex_state = 2}, - [2905] = {.lex_state = 149, .external_lex_state = 2}, - [2906] = {.lex_state = 15, .external_lex_state = 5}, - [2907] = {.lex_state = 15, .external_lex_state = 5}, - [2908] = {.lex_state = 149, .external_lex_state = 2}, - [2909] = {.lex_state = 15, .external_lex_state = 5}, - [2910] = {.lex_state = 15, .external_lex_state = 5}, - [2911] = {.lex_state = 15, .external_lex_state = 5}, - [2912] = {.lex_state = 15, .external_lex_state = 5}, - [2913] = {.lex_state = 15, .external_lex_state = 5}, - [2914] = {.lex_state = 15, .external_lex_state = 5}, - [2915] = {.lex_state = 15, .external_lex_state = 5}, - [2916] = {.lex_state = 15, .external_lex_state = 5}, - [2917] = {.lex_state = 15, .external_lex_state = 5}, - [2918] = {.lex_state = 15, .external_lex_state = 5}, - [2919] = {.lex_state = 149, .external_lex_state = 2}, - [2920] = {.lex_state = 149, .external_lex_state = 2}, - [2921] = {.lex_state = 149, .external_lex_state = 2}, - [2922] = {.lex_state = 149, .external_lex_state = 2}, - [2923] = {.lex_state = 15, .external_lex_state = 5}, - [2924] = {.lex_state = 149, .external_lex_state = 2}, - [2925] = {.lex_state = 4, .external_lex_state = 2}, - [2926] = {.lex_state = 149, .external_lex_state = 2}, - [2927] = {.lex_state = 15, .external_lex_state = 5}, - [2928] = {.lex_state = 15, .external_lex_state = 5}, - [2929] = {.lex_state = 15, .external_lex_state = 5}, - [2930] = {.lex_state = 15, .external_lex_state = 5}, - [2931] = {.lex_state = 15, .external_lex_state = 5}, - [2932] = {.lex_state = 15, .external_lex_state = 5}, - [2933] = {.lex_state = 15, .external_lex_state = 5}, - [2934] = {.lex_state = 15, .external_lex_state = 5}, - [2935] = {.lex_state = 15, .external_lex_state = 5}, - [2936] = {.lex_state = 15, .external_lex_state = 5}, - [2937] = {.lex_state = 15, .external_lex_state = 5}, - [2938] = {.lex_state = 15, .external_lex_state = 5}, - [2939] = {.lex_state = 15, .external_lex_state = 5}, - [2940] = {.lex_state = 15, .external_lex_state = 5}, - [2941] = {.lex_state = 15, .external_lex_state = 5}, - [2942] = {.lex_state = 15, .external_lex_state = 5}, - [2943] = {.lex_state = 15, .external_lex_state = 5}, - [2944] = {.lex_state = 15, .external_lex_state = 5}, - [2945] = {.lex_state = 15, .external_lex_state = 5}, - [2946] = {.lex_state = 15, .external_lex_state = 5}, - [2947] = {.lex_state = 13, .external_lex_state = 5}, - [2948] = {.lex_state = 149, .external_lex_state = 2}, - [2949] = {.lex_state = 4, .external_lex_state = 2}, - [2950] = {.lex_state = 149, .external_lex_state = 2}, - [2951] = {.lex_state = 149, .external_lex_state = 2}, - [2952] = {.lex_state = 149, .external_lex_state = 2}, - [2953] = {.lex_state = 149, .external_lex_state = 2}, - [2954] = {.lex_state = 149, .external_lex_state = 2}, - [2955] = {.lex_state = 149, .external_lex_state = 2}, - [2956] = {.lex_state = 149, .external_lex_state = 2}, - [2957] = {.lex_state = 4, .external_lex_state = 2}, - [2958] = {.lex_state = 149, .external_lex_state = 2}, - [2959] = {.lex_state = 149, .external_lex_state = 2}, - [2960] = {.lex_state = 149, .external_lex_state = 2}, - [2961] = {.lex_state = 149, .external_lex_state = 2}, - [2962] = {.lex_state = 149, .external_lex_state = 2}, - [2963] = {.lex_state = 149, .external_lex_state = 2}, - [2964] = {.lex_state = 149, .external_lex_state = 2}, - [2965] = {.lex_state = 149, .external_lex_state = 2}, - [2966] = {.lex_state = 149, .external_lex_state = 2}, - [2967] = {.lex_state = 149, .external_lex_state = 2}, - [2968] = {.lex_state = 149, .external_lex_state = 2}, - [2969] = {.lex_state = 149, .external_lex_state = 2}, - [2970] = {.lex_state = 149, .external_lex_state = 2}, - [2971] = {.lex_state = 4, .external_lex_state = 2}, - [2972] = {.lex_state = 149, .external_lex_state = 2}, - [2973] = {.lex_state = 149, .external_lex_state = 2}, - [2974] = {.lex_state = 149, .external_lex_state = 2}, - [2975] = {.lex_state = 149, .external_lex_state = 2}, - [2976] = {.lex_state = 4, .external_lex_state = 2}, - [2977] = {.lex_state = 149, .external_lex_state = 2}, - [2978] = {.lex_state = 149, .external_lex_state = 2}, - [2979] = {.lex_state = 149, .external_lex_state = 2}, - [2980] = {.lex_state = 149, .external_lex_state = 2}, - [2981] = {.lex_state = 149, .external_lex_state = 2}, - [2982] = {.lex_state = 15, .external_lex_state = 6}, - [2983] = {.lex_state = 4, .external_lex_state = 2}, - [2984] = {.lex_state = 15, .external_lex_state = 6}, - [2985] = {.lex_state = 15, .external_lex_state = 6}, - [2986] = {.lex_state = 4, .external_lex_state = 2}, - [2987] = {.lex_state = 149, .external_lex_state = 2}, - [2988] = {.lex_state = 149, .external_lex_state = 2}, - [2989] = {.lex_state = 149, .external_lex_state = 2}, - [2990] = {.lex_state = 149, .external_lex_state = 2}, - [2991] = {.lex_state = 4, .external_lex_state = 2}, - [2992] = {.lex_state = 149, .external_lex_state = 2}, - [2993] = {.lex_state = 149, .external_lex_state = 2}, - [2994] = {.lex_state = 4, .external_lex_state = 2}, - [2995] = {.lex_state = 149, .external_lex_state = 2}, - [2996] = {.lex_state = 149, .external_lex_state = 2}, - [2997] = {.lex_state = 149, .external_lex_state = 2}, - [2998] = {.lex_state = 149, .external_lex_state = 2}, - [2999] = {.lex_state = 149, .external_lex_state = 2}, - [3000] = {.lex_state = 149, .external_lex_state = 2}, - [3001] = {.lex_state = 149, .external_lex_state = 2}, - [3002] = {.lex_state = 149, .external_lex_state = 2}, - [3003] = {.lex_state = 149, .external_lex_state = 2}, - [3004] = {.lex_state = 12, .external_lex_state = 5}, - [3005] = {.lex_state = 12, .external_lex_state = 5}, - [3006] = {.lex_state = 149, .external_lex_state = 2}, - [3007] = {.lex_state = 149, .external_lex_state = 2}, - [3008] = {.lex_state = 149, .external_lex_state = 2}, - [3009] = {.lex_state = 12, .external_lex_state = 5}, - [3010] = {.lex_state = 12, .external_lex_state = 5}, - [3011] = {.lex_state = 12, .external_lex_state = 5}, - [3012] = {.lex_state = 12, .external_lex_state = 5}, - [3013] = {.lex_state = 12, .external_lex_state = 5}, - [3014] = {.lex_state = 149, .external_lex_state = 2}, - [3015] = {.lex_state = 25, .external_lex_state = 2}, - [3016] = {.lex_state = 12, .external_lex_state = 5}, - [3017] = {.lex_state = 12, .external_lex_state = 5}, - [3018] = {.lex_state = 12, .external_lex_state = 5}, - [3019] = {.lex_state = 149, .external_lex_state = 2}, - [3020] = {.lex_state = 12, .external_lex_state = 5}, - [3021] = {.lex_state = 149, .external_lex_state = 2}, - [3022] = {.lex_state = 12, .external_lex_state = 5}, - [3023] = {.lex_state = 12, .external_lex_state = 5}, - [3024] = {.lex_state = 12, .external_lex_state = 5}, - [3025] = {.lex_state = 12, .external_lex_state = 5}, - [3026] = {.lex_state = 149, .external_lex_state = 2}, - [3027] = {.lex_state = 12, .external_lex_state = 5}, - [3028] = {.lex_state = 12, .external_lex_state = 5}, - [3029] = {.lex_state = 149, .external_lex_state = 2}, - [3030] = {.lex_state = 12, .external_lex_state = 5}, - [3031] = {.lex_state = 12, .external_lex_state = 5}, - [3032] = {.lex_state = 12, .external_lex_state = 5}, - [3033] = {.lex_state = 12, .external_lex_state = 5}, - [3034] = {.lex_state = 12, .external_lex_state = 5}, - [3035] = {.lex_state = 149, .external_lex_state = 2}, - [3036] = {.lex_state = 149, .external_lex_state = 2}, - [3037] = {.lex_state = 12, .external_lex_state = 5}, - [3038] = {.lex_state = 12, .external_lex_state = 5}, - [3039] = {.lex_state = 12, .external_lex_state = 5}, - [3040] = {.lex_state = 12, .external_lex_state = 5}, - [3041] = {.lex_state = 149, .external_lex_state = 2}, - [3042] = {.lex_state = 13, .external_lex_state = 5}, - [3043] = {.lex_state = 12, .external_lex_state = 5}, - [3044] = {.lex_state = 149, .external_lex_state = 5}, - [3045] = {.lex_state = 12, .external_lex_state = 5}, - [3046] = {.lex_state = 15, .external_lex_state = 6}, - [3047] = {.lex_state = 12, .external_lex_state = 5}, - [3048] = {.lex_state = 14, .external_lex_state = 5}, - [3049] = {.lex_state = 14, .external_lex_state = 5}, - [3050] = {.lex_state = 12, .external_lex_state = 5}, - [3051] = {.lex_state = 149, .external_lex_state = 2}, - [3052] = {.lex_state = 14, .external_lex_state = 5}, - [3053] = {.lex_state = 149, .external_lex_state = 2}, - [3054] = {.lex_state = 149, .external_lex_state = 2}, - [3055] = {.lex_state = 13, .external_lex_state = 6}, - [3056] = {.lex_state = 12, .external_lex_state = 5}, - [3057] = {.lex_state = 13, .external_lex_state = 5}, - [3058] = {.lex_state = 12, .external_lex_state = 5}, - [3059] = {.lex_state = 14, .external_lex_state = 5}, - [3060] = {.lex_state = 14, .external_lex_state = 5}, - [3061] = {.lex_state = 149, .external_lex_state = 5}, - [3062] = {.lex_state = 149, .external_lex_state = 5}, - [3063] = {.lex_state = 149, .external_lex_state = 2}, - [3064] = {.lex_state = 149, .external_lex_state = 2}, - [3065] = {.lex_state = 13, .external_lex_state = 5}, - [3066] = {.lex_state = 14, .external_lex_state = 5}, - [3067] = {.lex_state = 149, .external_lex_state = 2}, - [3068] = {.lex_state = 149, .external_lex_state = 5}, - [3069] = {.lex_state = 149, .external_lex_state = 5}, - [3070] = {.lex_state = 12, .external_lex_state = 5}, - [3071] = {.lex_state = 149, .external_lex_state = 5}, - [3072] = {.lex_state = 25, .external_lex_state = 2}, - [3073] = {.lex_state = 25, .external_lex_state = 2}, - [3074] = {.lex_state = 15, .external_lex_state = 6}, - [3075] = {.lex_state = 149, .external_lex_state = 2}, - [3076] = {.lex_state = 12, .external_lex_state = 5}, - [3077] = {.lex_state = 12, .external_lex_state = 5}, - [3078] = {.lex_state = 15, .external_lex_state = 6}, - [3079] = {.lex_state = 15, .external_lex_state = 6}, - [3080] = {.lex_state = 15, .external_lex_state = 6}, - [3081] = {.lex_state = 15, .external_lex_state = 6}, - [3082] = {.lex_state = 15, .external_lex_state = 6}, - [3083] = {.lex_state = 15, .external_lex_state = 6}, - [3084] = {.lex_state = 12, .external_lex_state = 5}, - [3085] = {.lex_state = 15, .external_lex_state = 6}, - [3086] = {.lex_state = 15, .external_lex_state = 6}, - [3087] = {.lex_state = 15, .external_lex_state = 6}, - [3088] = {.lex_state = 15, .external_lex_state = 6}, - [3089] = {.lex_state = 15, .external_lex_state = 6}, - [3090] = {.lex_state = 15, .external_lex_state = 6}, - [3091] = {.lex_state = 14, .external_lex_state = 5}, - [3092] = {.lex_state = 149, .external_lex_state = 2}, - [3093] = {.lex_state = 12, .external_lex_state = 5}, - [3094] = {.lex_state = 15, .external_lex_state = 6}, - [3095] = {.lex_state = 15, .external_lex_state = 6}, - [3096] = {.lex_state = 15, .external_lex_state = 6}, - [3097] = {.lex_state = 15, .external_lex_state = 6}, - [3098] = {.lex_state = 15, .external_lex_state = 6}, - [3099] = {.lex_state = 15, .external_lex_state = 6}, - [3100] = {.lex_state = 15, .external_lex_state = 6}, - [3101] = {.lex_state = 14, .external_lex_state = 5}, - [3102] = {.lex_state = 15, .external_lex_state = 6}, - [3103] = {.lex_state = 15, .external_lex_state = 6}, - [3104] = {.lex_state = 15, .external_lex_state = 6}, - [3105] = {.lex_state = 15, .external_lex_state = 6}, - [3106] = {.lex_state = 15, .external_lex_state = 6}, - [3107] = {.lex_state = 15, .external_lex_state = 6}, - [3108] = {.lex_state = 13, .external_lex_state = 5}, - [3109] = {.lex_state = 149, .external_lex_state = 5}, - [3110] = {.lex_state = 15, .external_lex_state = 6}, - [3111] = {.lex_state = 15, .external_lex_state = 6}, - [3112] = {.lex_state = 15, .external_lex_state = 6}, - [3113] = {.lex_state = 15, .external_lex_state = 6}, - [3114] = {.lex_state = 15, .external_lex_state = 6}, - [3115] = {.lex_state = 12, .external_lex_state = 5}, - [3116] = {.lex_state = 149, .external_lex_state = 2}, - [3117] = {.lex_state = 149, .external_lex_state = 2}, - [3118] = {.lex_state = 15, .external_lex_state = 6}, - [3119] = {.lex_state = 15, .external_lex_state = 6}, - [3120] = {.lex_state = 12, .external_lex_state = 5}, - [3121] = {.lex_state = 12, .external_lex_state = 5}, - [3122] = {.lex_state = 25, .external_lex_state = 2}, - [3123] = {.lex_state = 12, .external_lex_state = 5}, - [3124] = {.lex_state = 12, .external_lex_state = 5}, - [3125] = {.lex_state = 12, .external_lex_state = 5}, - [3126] = {.lex_state = 12, .external_lex_state = 5}, - [3127] = {.lex_state = 12, .external_lex_state = 5}, - [3128] = {.lex_state = 149, .external_lex_state = 5}, - [3129] = {.lex_state = 12, .external_lex_state = 5}, - [3130] = {.lex_state = 12, .external_lex_state = 5}, - [3131] = {.lex_state = 12, .external_lex_state = 5}, - [3132] = {.lex_state = 12, .external_lex_state = 5}, - [3133] = {.lex_state = 149, .external_lex_state = 5}, - [3134] = {.lex_state = 12, .external_lex_state = 5}, - [3135] = {.lex_state = 149, .external_lex_state = 5}, - [3136] = {.lex_state = 12, .external_lex_state = 5}, - [3137] = {.lex_state = 149, .external_lex_state = 5}, - [3138] = {.lex_state = 149, .external_lex_state = 2}, - [3139] = {.lex_state = 149, .external_lex_state = 5}, - [3140] = {.lex_state = 15, .external_lex_state = 2}, - [3141] = {.lex_state = 149, .external_lex_state = 5}, - [3142] = {.lex_state = 25, .external_lex_state = 2}, - [3143] = {.lex_state = 12, .external_lex_state = 5}, - [3144] = {.lex_state = 12, .external_lex_state = 5}, - [3145] = {.lex_state = 12, .external_lex_state = 5}, - [3146] = {.lex_state = 12, .external_lex_state = 5}, - [3147] = {.lex_state = 12, .external_lex_state = 5}, - [3148] = {.lex_state = 12, .external_lex_state = 5}, - [3149] = {.lex_state = 12, .external_lex_state = 2}, - [3150] = {.lex_state = 15, .external_lex_state = 2}, - [3151] = {.lex_state = 12, .external_lex_state = 5}, - [3152] = {.lex_state = 12, .external_lex_state = 5}, - [3153] = {.lex_state = 12, .external_lex_state = 5}, - [3154] = {.lex_state = 12, .external_lex_state = 5}, - [3155] = {.lex_state = 149, .external_lex_state = 5}, - [3156] = {.lex_state = 149, .external_lex_state = 5}, - [3157] = {.lex_state = 15, .external_lex_state = 2}, - [3158] = {.lex_state = 12, .external_lex_state = 5}, - [3159] = {.lex_state = 12, .external_lex_state = 2}, - [3160] = {.lex_state = 12, .external_lex_state = 5}, - [3161] = {.lex_state = 12, .external_lex_state = 5}, - [3162] = {.lex_state = 12, .external_lex_state = 5}, - [3163] = {.lex_state = 12, .external_lex_state = 5}, - [3164] = {.lex_state = 12, .external_lex_state = 5}, - [3165] = {.lex_state = 12, .external_lex_state = 5}, - [3166] = {.lex_state = 25, .external_lex_state = 2}, - [3167] = {.lex_state = 12, .external_lex_state = 5}, - [3168] = {.lex_state = 13, .external_lex_state = 6}, - [3169] = {.lex_state = 149, .external_lex_state = 6}, - [3170] = {.lex_state = 149, .external_lex_state = 2}, - [3171] = {.lex_state = 12, .external_lex_state = 5}, - [3172] = {.lex_state = 149, .external_lex_state = 5}, - [3173] = {.lex_state = 12, .external_lex_state = 2}, - [3174] = {.lex_state = 12, .external_lex_state = 5}, - [3175] = {.lex_state = 12, .external_lex_state = 5}, - [3176] = {.lex_state = 149, .external_lex_state = 5}, - [3177] = {.lex_state = 12, .external_lex_state = 5}, - [3178] = {.lex_state = 12, .external_lex_state = 5}, - [3179] = {.lex_state = 12, .external_lex_state = 5}, - [3180] = {.lex_state = 12, .external_lex_state = 5}, - [3181] = {.lex_state = 25, .external_lex_state = 2}, - [3182] = {.lex_state = 12, .external_lex_state = 5}, - [3183] = {.lex_state = 149, .external_lex_state = 5}, - [3184] = {.lex_state = 149, .external_lex_state = 5}, - [3185] = {.lex_state = 149, .external_lex_state = 5}, - [3186] = {.lex_state = 149, .external_lex_state = 5}, - [3187] = {.lex_state = 13, .external_lex_state = 6}, - [3188] = {.lex_state = 149, .external_lex_state = 5}, - [3189] = {.lex_state = 149, .external_lex_state = 5}, - [3190] = {.lex_state = 23, .external_lex_state = 7}, - [3191] = {.lex_state = 149, .external_lex_state = 5}, - [3192] = {.lex_state = 149, .external_lex_state = 5}, - [3193] = {.lex_state = 23, .external_lex_state = 7}, - [3194] = {.lex_state = 23, .external_lex_state = 7}, - [3195] = {.lex_state = 149, .external_lex_state = 5}, - [3196] = {.lex_state = 23, .external_lex_state = 7}, - [3197] = {.lex_state = 23, .external_lex_state = 7}, - [3198] = {.lex_state = 149, .external_lex_state = 5}, - [3199] = {.lex_state = 149, .external_lex_state = 5}, - [3200] = {.lex_state = 149, .external_lex_state = 5}, - [3201] = {.lex_state = 149, .external_lex_state = 5}, - [3202] = {.lex_state = 149, .external_lex_state = 5}, - [3203] = {.lex_state = 149, .external_lex_state = 5}, - [3204] = {.lex_state = 149, .external_lex_state = 5}, - [3205] = {.lex_state = 149, .external_lex_state = 5}, - [3206] = {.lex_state = 149, .external_lex_state = 5}, - [3207] = {.lex_state = 149, .external_lex_state = 5}, - [3208] = {.lex_state = 149, .external_lex_state = 5}, - [3209] = {.lex_state = 149, .external_lex_state = 5}, - [3210] = {.lex_state = 149, .external_lex_state = 5}, - [3211] = {.lex_state = 149, .external_lex_state = 5}, - [3212] = {.lex_state = 149, .external_lex_state = 5}, - [3213] = {.lex_state = 12, .external_lex_state = 5}, - [3214] = {.lex_state = 23, .external_lex_state = 7}, - [3215] = {.lex_state = 12, .external_lex_state = 5}, - [3216] = {.lex_state = 149, .external_lex_state = 5}, - [3217] = {.lex_state = 149, .external_lex_state = 5}, - [3218] = {.lex_state = 149, .external_lex_state = 5}, - [3219] = {.lex_state = 149, .external_lex_state = 5}, - [3220] = {.lex_state = 149, .external_lex_state = 5}, - [3221] = {.lex_state = 149, .external_lex_state = 5}, - [3222] = {.lex_state = 13, .external_lex_state = 6}, - [3223] = {.lex_state = 149, .external_lex_state = 5}, - [3224] = {.lex_state = 149, .external_lex_state = 5}, - [3225] = {.lex_state = 149, .external_lex_state = 5}, - [3226] = {.lex_state = 149, .external_lex_state = 5}, - [3227] = {.lex_state = 14, .external_lex_state = 6}, - [3228] = {.lex_state = 149, .external_lex_state = 5}, - [3229] = {.lex_state = 149, .external_lex_state = 5}, - [3230] = {.lex_state = 23, .external_lex_state = 7}, - [3231] = {.lex_state = 149, .external_lex_state = 5}, - [3232] = {.lex_state = 14, .external_lex_state = 6}, - [3233] = {.lex_state = 14, .external_lex_state = 6}, - [3234] = {.lex_state = 149, .external_lex_state = 5}, - [3235] = {.lex_state = 14, .external_lex_state = 6}, - [3236] = {.lex_state = 12, .external_lex_state = 2}, - [3237] = {.lex_state = 12, .external_lex_state = 5}, - [3238] = {.lex_state = 14, .external_lex_state = 6}, - [3239] = {.lex_state = 14, .external_lex_state = 6}, - [3240] = {.lex_state = 14, .external_lex_state = 6}, - [3241] = {.lex_state = 149, .external_lex_state = 2}, - [3242] = {.lex_state = 149, .external_lex_state = 6}, - [3243] = {.lex_state = 149, .external_lex_state = 6}, - [3244] = {.lex_state = 149, .external_lex_state = 6}, - [3245] = {.lex_state = 149, .external_lex_state = 6}, - [3246] = {.lex_state = 149, .external_lex_state = 6}, - [3247] = {.lex_state = 149, .external_lex_state = 6}, - [3248] = {.lex_state = 14, .external_lex_state = 6}, - [3249] = {.lex_state = 149, .external_lex_state = 5}, - [3250] = {.lex_state = 149, .external_lex_state = 5}, - [3251] = {.lex_state = 149, .external_lex_state = 5}, - [3252] = {.lex_state = 149, .external_lex_state = 5}, - [3253] = {.lex_state = 13, .external_lex_state = 6}, - [3254] = {.lex_state = 149, .external_lex_state = 5}, - [3255] = {.lex_state = 149, .external_lex_state = 5}, - [3256] = {.lex_state = 149, .external_lex_state = 5}, - [3257] = {.lex_state = 149, .external_lex_state = 5}, - [3258] = {.lex_state = 149, .external_lex_state = 5}, - [3259] = {.lex_state = 149, .external_lex_state = 5}, - [3260] = {.lex_state = 149, .external_lex_state = 5}, - [3261] = {.lex_state = 149, .external_lex_state = 5}, - [3262] = {.lex_state = 149, .external_lex_state = 5}, - [3263] = {.lex_state = 23, .external_lex_state = 7}, - [3264] = {.lex_state = 149, .external_lex_state = 2}, - [3265] = {.lex_state = 149, .external_lex_state = 6}, - [3266] = {.lex_state = 13, .external_lex_state = 2}, - [3267] = {.lex_state = 23, .external_lex_state = 7}, - [3268] = {.lex_state = 13, .external_lex_state = 2}, - [3269] = {.lex_state = 13, .external_lex_state = 2}, - [3270] = {.lex_state = 25, .external_lex_state = 2}, - [3271] = {.lex_state = 149, .external_lex_state = 6}, - [3272] = {.lex_state = 13, .external_lex_state = 2}, - [3273] = {.lex_state = 12, .external_lex_state = 2}, - [3274] = {.lex_state = 149, .external_lex_state = 6}, - [3275] = {.lex_state = 149, .external_lex_state = 2}, - [3276] = {.lex_state = 149, .external_lex_state = 5}, - [3277] = {.lex_state = 12, .external_lex_state = 5}, - [3278] = {.lex_state = 25, .external_lex_state = 2}, - [3279] = {.lex_state = 13, .external_lex_state = 2}, - [3280] = {.lex_state = 25, .external_lex_state = 2}, - [3281] = {.lex_state = 13, .external_lex_state = 2}, - [3282] = {.lex_state = 149, .external_lex_state = 6}, - [3283] = {.lex_state = 149, .external_lex_state = 5}, - [3284] = {.lex_state = 149, .external_lex_state = 5}, - [3285] = {.lex_state = 13, .external_lex_state = 2}, - [3286] = {.lex_state = 149, .external_lex_state = 2}, - [3287] = {.lex_state = 13, .external_lex_state = 2}, - [3288] = {.lex_state = 13, .external_lex_state = 2}, - [3289] = {.lex_state = 149, .external_lex_state = 6}, - [3290] = {.lex_state = 13, .external_lex_state = 2}, - [3291] = {.lex_state = 13, .external_lex_state = 2}, - [3292] = {.lex_state = 149, .external_lex_state = 6}, - [3293] = {.lex_state = 149, .external_lex_state = 2}, - [3294] = {.lex_state = 149, .external_lex_state = 6}, - [3295] = {.lex_state = 25, .external_lex_state = 2}, - [3296] = {.lex_state = 149, .external_lex_state = 6}, - [3297] = {.lex_state = 149, .external_lex_state = 5}, - [3298] = {.lex_state = 149, .external_lex_state = 5}, - [3299] = {.lex_state = 149, .external_lex_state = 2}, - [3300] = {.lex_state = 149, .external_lex_state = 6}, - [3301] = {.lex_state = 149, .external_lex_state = 5}, - [3302] = {.lex_state = 149, .external_lex_state = 5}, - [3303] = {.lex_state = 149, .external_lex_state = 5}, - [3304] = {.lex_state = 149, .external_lex_state = 5}, - [3305] = {.lex_state = 149, .external_lex_state = 5}, - [3306] = {.lex_state = 13, .external_lex_state = 2}, - [3307] = {.lex_state = 13, .external_lex_state = 2}, - [3308] = {.lex_state = 149, .external_lex_state = 5}, - [3309] = {.lex_state = 149, .external_lex_state = 5}, - [3310] = {.lex_state = 25, .external_lex_state = 2}, - [3311] = {.lex_state = 13, .external_lex_state = 2}, - [3312] = {.lex_state = 149, .external_lex_state = 5}, - [3313] = {.lex_state = 13, .external_lex_state = 2}, - [3314] = {.lex_state = 25, .external_lex_state = 2}, - [3315] = {.lex_state = 25, .external_lex_state = 2}, - [3316] = {.lex_state = 13, .external_lex_state = 2}, - [3317] = {.lex_state = 12, .external_lex_state = 2}, - [3318] = {.lex_state = 149, .external_lex_state = 5}, - [3319] = {.lex_state = 25, .external_lex_state = 2}, - [3320] = {.lex_state = 149, .external_lex_state = 5}, - [3321] = {.lex_state = 149, .external_lex_state = 6}, - [3322] = {.lex_state = 25, .external_lex_state = 2}, - [3323] = {.lex_state = 25, .external_lex_state = 2}, - [3324] = {.lex_state = 149, .external_lex_state = 5}, - [3325] = {.lex_state = 25, .external_lex_state = 2}, - [3326] = {.lex_state = 149, .external_lex_state = 5}, - [3327] = {.lex_state = 25, .external_lex_state = 2}, - [3328] = {.lex_state = 149, .external_lex_state = 2}, - [3329] = {.lex_state = 149, .external_lex_state = 6}, - [3330] = {.lex_state = 149, .external_lex_state = 6}, - [3331] = {.lex_state = 25, .external_lex_state = 2}, - [3332] = {.lex_state = 25, .external_lex_state = 2}, - [3333] = {.lex_state = 25, .external_lex_state = 2}, - [3334] = {.lex_state = 149, .external_lex_state = 5}, - [3335] = {.lex_state = 149, .external_lex_state = 6}, - [3336] = {.lex_state = 25, .external_lex_state = 2}, - [3337] = {.lex_state = 13, .external_lex_state = 2}, - [3338] = {.lex_state = 25, .external_lex_state = 2}, - [3339] = {.lex_state = 149, .external_lex_state = 6}, - [3340] = {.lex_state = 149, .external_lex_state = 2}, - [3341] = {.lex_state = 149, .external_lex_state = 6}, - [3342] = {.lex_state = 149, .external_lex_state = 6}, - [3343] = {.lex_state = 149, .external_lex_state = 5}, - [3344] = {.lex_state = 13, .external_lex_state = 2}, - [3345] = {.lex_state = 149, .external_lex_state = 5}, - [3346] = {.lex_state = 149, .external_lex_state = 5}, - [3347] = {.lex_state = 149, .external_lex_state = 6}, - [3348] = {.lex_state = 149, .external_lex_state = 2}, - [3349] = {.lex_state = 25, .external_lex_state = 2}, - [3350] = {.lex_state = 25, .external_lex_state = 2}, - [3351] = {.lex_state = 12, .external_lex_state = 2}, - [3352] = {.lex_state = 149, .external_lex_state = 6}, - [3353] = {.lex_state = 149, .external_lex_state = 6}, - [3354] = {.lex_state = 149, .external_lex_state = 5}, - [3355] = {.lex_state = 149, .external_lex_state = 5}, - [3356] = {.lex_state = 149, .external_lex_state = 5}, - [3357] = {.lex_state = 149, .external_lex_state = 5}, - [3358] = {.lex_state = 149, .external_lex_state = 5}, - [3359] = {.lex_state = 25, .external_lex_state = 2}, - [3360] = {.lex_state = 25, .external_lex_state = 2}, - [3361] = {.lex_state = 25, .external_lex_state = 2}, - [3362] = {.lex_state = 25, .external_lex_state = 2}, - [3363] = {.lex_state = 25, .external_lex_state = 2}, - [3364] = {.lex_state = 149, .external_lex_state = 5}, - [3365] = {.lex_state = 25, .external_lex_state = 2}, - [3366] = {.lex_state = 149, .external_lex_state = 5}, - [3367] = {.lex_state = 149, .external_lex_state = 5}, - [3368] = {.lex_state = 13, .external_lex_state = 2}, - [3369] = {.lex_state = 149, .external_lex_state = 6}, - [3370] = {.lex_state = 25, .external_lex_state = 2}, - [3371] = {.lex_state = 149, .external_lex_state = 6}, - [3372] = {.lex_state = 13, .external_lex_state = 2}, - [3373] = {.lex_state = 25, .external_lex_state = 2}, - [3374] = {.lex_state = 13, .external_lex_state = 2}, - [3375] = {.lex_state = 149, .external_lex_state = 5}, - [3376] = {.lex_state = 149, .external_lex_state = 6}, - [3377] = {.lex_state = 13, .external_lex_state = 2}, - [3378] = {.lex_state = 13, .external_lex_state = 2}, - [3379] = {.lex_state = 149, .external_lex_state = 2}, - [3380] = {.lex_state = 149, .external_lex_state = 5}, - [3381] = {.lex_state = 149, .external_lex_state = 5}, - [3382] = {.lex_state = 149, .external_lex_state = 6}, - [3383] = {.lex_state = 149, .external_lex_state = 5}, - [3384] = {.lex_state = 13, .external_lex_state = 2}, - [3385] = {.lex_state = 149, .external_lex_state = 6}, - [3386] = {.lex_state = 149, .external_lex_state = 5}, - [3387] = {.lex_state = 149, .external_lex_state = 6}, - [3388] = {.lex_state = 149, .external_lex_state = 5}, - [3389] = {.lex_state = 149, .external_lex_state = 6}, - [3390] = {.lex_state = 149, .external_lex_state = 6}, - [3391] = {.lex_state = 149, .external_lex_state = 6}, - [3392] = {.lex_state = 149, .external_lex_state = 6}, - [3393] = {.lex_state = 149, .external_lex_state = 6}, - [3394] = {.lex_state = 149, .external_lex_state = 6}, - [3395] = {.lex_state = 149, .external_lex_state = 6}, - [3396] = {.lex_state = 13, .external_lex_state = 2}, - [3397] = {.lex_state = 13, .external_lex_state = 2}, - [3398] = {.lex_state = 149, .external_lex_state = 5}, - [3399] = {.lex_state = 149, .external_lex_state = 2}, - [3400] = {.lex_state = 149, .external_lex_state = 5}, - [3401] = {.lex_state = 25, .external_lex_state = 2}, - [3402] = {.lex_state = 149, .external_lex_state = 6}, - [3403] = {.lex_state = 25, .external_lex_state = 2}, - [3404] = {.lex_state = 25, .external_lex_state = 2}, - [3405] = {.lex_state = 13, .external_lex_state = 2}, - [3406] = {.lex_state = 149, .external_lex_state = 6}, - [3407] = {.lex_state = 25, .external_lex_state = 2}, - [3408] = {.lex_state = 149, .external_lex_state = 5}, - [3409] = {.lex_state = 149, .external_lex_state = 6}, - [3410] = {.lex_state = 149, .external_lex_state = 2}, - [3411] = {.lex_state = 149, .external_lex_state = 5}, - [3412] = {.lex_state = 149, .external_lex_state = 6}, - [3413] = {.lex_state = 149, .external_lex_state = 5}, - [3414] = {.lex_state = 149, .external_lex_state = 5}, - [3415] = {.lex_state = 149, .external_lex_state = 5}, - [3416] = {.lex_state = 149, .external_lex_state = 6}, - [3417] = {.lex_state = 149, .external_lex_state = 6}, - [3418] = {.lex_state = 149, .external_lex_state = 6}, - [3419] = {.lex_state = 149, .external_lex_state = 5}, - [3420] = {.lex_state = 149, .external_lex_state = 5}, - [3421] = {.lex_state = 149, .external_lex_state = 6}, - [3422] = {.lex_state = 149, .external_lex_state = 5}, - [3423] = {.lex_state = 149, .external_lex_state = 5}, - [3424] = {.lex_state = 149, .external_lex_state = 5}, - [3425] = {.lex_state = 149, .external_lex_state = 5}, - [3426] = {.lex_state = 149, .external_lex_state = 6}, - [3427] = {.lex_state = 149, .external_lex_state = 6}, - [3428] = {.lex_state = 149, .external_lex_state = 6}, - [3429] = {.lex_state = 13, .external_lex_state = 2}, - [3430] = {.lex_state = 13, .external_lex_state = 2}, - [3431] = {.lex_state = 25, .external_lex_state = 2}, - [3432] = {.lex_state = 25, .external_lex_state = 2}, - [3433] = {.lex_state = 149, .external_lex_state = 6}, - [3434] = {.lex_state = 149, .external_lex_state = 6}, - [3435] = {.lex_state = 149, .external_lex_state = 6}, - [3436] = {.lex_state = 25, .external_lex_state = 2}, - [3437] = {.lex_state = 25, .external_lex_state = 2}, - [3438] = {.lex_state = 149, .external_lex_state = 6}, - [3439] = {.lex_state = 149, .external_lex_state = 5}, - [3440] = {.lex_state = 149, .external_lex_state = 6}, - [3441] = {.lex_state = 25, .external_lex_state = 2}, - [3442] = {.lex_state = 149, .external_lex_state = 5}, - [3443] = {.lex_state = 149, .external_lex_state = 5}, - [3444] = {.lex_state = 25, .external_lex_state = 2}, - [3445] = {.lex_state = 149, .external_lex_state = 5}, - [3446] = {.lex_state = 13, .external_lex_state = 2}, - [3447] = {.lex_state = 149, .external_lex_state = 5}, - [3448] = {.lex_state = 25, .external_lex_state = 2}, - [3449] = {.lex_state = 13, .external_lex_state = 2}, - [3450] = {.lex_state = 149, .external_lex_state = 2}, - [3451] = {.lex_state = 149, .external_lex_state = 6}, - [3452] = {.lex_state = 149, .external_lex_state = 6}, - [3453] = {.lex_state = 12, .external_lex_state = 2}, - [3454] = {.lex_state = 12, .external_lex_state = 2}, - [3455] = {.lex_state = 149, .external_lex_state = 6}, - [3456] = {.lex_state = 149, .external_lex_state = 6}, - [3457] = {.lex_state = 149, .external_lex_state = 6}, - [3458] = {.lex_state = 149, .external_lex_state = 6}, - [3459] = {.lex_state = 149, .external_lex_state = 6}, - [3460] = {.lex_state = 149, .external_lex_state = 6}, - [3461] = {.lex_state = 149, .external_lex_state = 6}, - [3462] = {.lex_state = 12, .external_lex_state = 2}, - [3463] = {.lex_state = 25, .external_lex_state = 2}, - [3464] = {.lex_state = 25, .external_lex_state = 2}, - [3465] = {.lex_state = 25, .external_lex_state = 2}, - [3466] = {.lex_state = 149, .external_lex_state = 6}, - [3467] = {.lex_state = 149, .external_lex_state = 6}, - [3468] = {.lex_state = 149, .external_lex_state = 2}, - [3469] = {.lex_state = 149, .external_lex_state = 2}, - [3470] = {.lex_state = 12, .external_lex_state = 2}, - [3471] = {.lex_state = 149, .external_lex_state = 6}, - [3472] = {.lex_state = 149, .external_lex_state = 6}, - [3473] = {.lex_state = 149, .external_lex_state = 6}, - [3474] = {.lex_state = 149, .external_lex_state = 5}, - [3475] = {.lex_state = 149, .external_lex_state = 6}, - [3476] = {.lex_state = 149, .external_lex_state = 2}, - [3477] = {.lex_state = 149, .external_lex_state = 5}, - [3478] = {.lex_state = 12, .external_lex_state = 2}, - [3479] = {.lex_state = 149, .external_lex_state = 5}, - [3480] = {.lex_state = 13, .external_lex_state = 2}, - [3481] = {.lex_state = 149, .external_lex_state = 6}, - [3482] = {.lex_state = 25, .external_lex_state = 2}, - [3483] = {.lex_state = 25, .external_lex_state = 2}, - [3484] = {.lex_state = 23, .external_lex_state = 8}, - [3485] = {.lex_state = 149, .external_lex_state = 2}, - [3486] = {.lex_state = 14, .external_lex_state = 2}, - [3487] = {.lex_state = 23, .external_lex_state = 8}, - [3488] = {.lex_state = 149, .external_lex_state = 5}, - [3489] = {.lex_state = 149, .external_lex_state = 5}, - [3490] = {.lex_state = 16, .external_lex_state = 2}, - [3491] = {.lex_state = 149, .external_lex_state = 2}, - [3492] = {.lex_state = 23, .external_lex_state = 8}, - [3493] = {.lex_state = 23, .external_lex_state = 8}, - [3494] = {.lex_state = 149, .external_lex_state = 5}, - [3495] = {.lex_state = 16, .external_lex_state = 2}, - [3496] = {.lex_state = 23, .external_lex_state = 8}, - [3497] = {.lex_state = 149, .external_lex_state = 5}, - [3498] = {.lex_state = 149, .external_lex_state = 2}, - [3499] = {.lex_state = 149, .external_lex_state = 2}, - [3500] = {.lex_state = 149, .external_lex_state = 2}, - [3501] = {.lex_state = 149, .external_lex_state = 2}, - [3502] = {.lex_state = 14, .external_lex_state = 2}, - [3503] = {.lex_state = 25, .external_lex_state = 2}, - [3504] = {.lex_state = 149, .external_lex_state = 2}, - [3505] = {.lex_state = 149, .external_lex_state = 5}, - [3506] = {.lex_state = 149, .external_lex_state = 2}, - [3507] = {.lex_state = 149, .external_lex_state = 6}, - [3508] = {.lex_state = 149, .external_lex_state = 2}, - [3509] = {.lex_state = 14, .external_lex_state = 2}, - [3510] = {.lex_state = 149, .external_lex_state = 2}, - [3511] = {.lex_state = 23, .external_lex_state = 8}, - [3512] = {.lex_state = 149, .external_lex_state = 2}, - [3513] = {.lex_state = 149, .external_lex_state = 2}, - [3514] = {.lex_state = 23, .external_lex_state = 8}, - [3515] = {.lex_state = 25, .external_lex_state = 2}, - [3516] = {.lex_state = 25, .external_lex_state = 2}, - [3517] = {.lex_state = 25, .external_lex_state = 2}, - [3518] = {.lex_state = 149, .external_lex_state = 2}, - [3519] = {.lex_state = 149, .external_lex_state = 5}, - [3520] = {.lex_state = 25, .external_lex_state = 2}, - [3521] = {.lex_state = 23, .external_lex_state = 8}, - [3522] = {.lex_state = 25, .external_lex_state = 2}, - [3523] = {.lex_state = 25, .external_lex_state = 2}, - [3524] = {.lex_state = 25, .external_lex_state = 2}, - [3525] = {.lex_state = 25, .external_lex_state = 2}, - [3526] = {.lex_state = 149, .external_lex_state = 5}, - [3527] = {.lex_state = 149, .external_lex_state = 5}, - [3528] = {.lex_state = 12, .external_lex_state = 2}, - [3529] = {.lex_state = 149, .external_lex_state = 5}, - [3530] = {.lex_state = 149, .external_lex_state = 5}, - [3531] = {.lex_state = 149, .external_lex_state = 5}, - [3532] = {.lex_state = 149, .external_lex_state = 2}, - [3533] = {.lex_state = 149, .external_lex_state = 5}, - [3534] = {.lex_state = 149, .external_lex_state = 2}, - [3535] = {.lex_state = 149, .external_lex_state = 5}, - [3536] = {.lex_state = 149, .external_lex_state = 2}, - [3537] = {.lex_state = 149, .external_lex_state = 2}, - [3538] = {.lex_state = 149, .external_lex_state = 5}, - [3539] = {.lex_state = 149, .external_lex_state = 5}, - [3540] = {.lex_state = 25, .external_lex_state = 2}, - [3541] = {.lex_state = 149, .external_lex_state = 5}, - [3542] = {.lex_state = 149, .external_lex_state = 5}, - [3543] = {.lex_state = 149, .external_lex_state = 5}, - [3544] = {.lex_state = 149, .external_lex_state = 2}, - [3545] = {.lex_state = 149, .external_lex_state = 2}, - [3546] = {.lex_state = 149, .external_lex_state = 2}, - [3547] = {.lex_state = 149, .external_lex_state = 5}, - [3548] = {.lex_state = 12, .external_lex_state = 2}, - [3549] = {.lex_state = 149, .external_lex_state = 5}, - [3550] = {.lex_state = 149, .external_lex_state = 5}, - [3551] = {.lex_state = 149, .external_lex_state = 5}, - [3552] = {.lex_state = 15, .external_lex_state = 2}, - [3553] = {.lex_state = 149, .external_lex_state = 5}, - [3554] = {.lex_state = 149, .external_lex_state = 2}, - [3555] = {.lex_state = 149, .external_lex_state = 5}, - [3556] = {.lex_state = 149, .external_lex_state = 5}, - [3557] = {.lex_state = 149, .external_lex_state = 5}, - [3558] = {.lex_state = 149, .external_lex_state = 5}, - [3559] = {.lex_state = 12, .external_lex_state = 2}, - [3560] = {.lex_state = 149, .external_lex_state = 5}, - [3561] = {.lex_state = 149, .external_lex_state = 5}, - [3562] = {.lex_state = 149, .external_lex_state = 5}, - [3563] = {.lex_state = 149, .external_lex_state = 5}, - [3564] = {.lex_state = 149, .external_lex_state = 5}, - [3565] = {.lex_state = 149, .external_lex_state = 2}, - [3566] = {.lex_state = 149, .external_lex_state = 5}, - [3567] = {.lex_state = 15, .external_lex_state = 2}, - [3568] = {.lex_state = 149, .external_lex_state = 5}, - [3569] = {.lex_state = 12, .external_lex_state = 2}, - [3570] = {.lex_state = 149, .external_lex_state = 5}, - [3571] = {.lex_state = 149, .external_lex_state = 5}, - [3572] = {.lex_state = 149, .external_lex_state = 5}, - [3573] = {.lex_state = 149, .external_lex_state = 5}, - [3574] = {.lex_state = 149, .external_lex_state = 5}, - [3575] = {.lex_state = 149, .external_lex_state = 5}, - [3576] = {.lex_state = 149, .external_lex_state = 5}, - [3577] = {.lex_state = 149, .external_lex_state = 5}, - [3578] = {.lex_state = 149, .external_lex_state = 5}, - [3579] = {.lex_state = 15, .external_lex_state = 2}, - [3580] = {.lex_state = 149, .external_lex_state = 5}, - [3581] = {.lex_state = 149, .external_lex_state = 5}, - [3582] = {.lex_state = 149, .external_lex_state = 5}, - [3583] = {.lex_state = 149, .external_lex_state = 5}, - [3584] = {.lex_state = 149, .external_lex_state = 5}, - [3585] = {.lex_state = 149, .external_lex_state = 5}, - [3586] = {.lex_state = 149, .external_lex_state = 5}, - [3587] = {.lex_state = 149, .external_lex_state = 5}, - [3588] = {.lex_state = 149, .external_lex_state = 5}, - [3589] = {.lex_state = 149, .external_lex_state = 5}, - [3590] = {.lex_state = 149, .external_lex_state = 5}, - [3591] = {.lex_state = 149, .external_lex_state = 5}, - [3592] = {.lex_state = 15, .external_lex_state = 2}, - [3593] = {.lex_state = 149, .external_lex_state = 5}, - [3594] = {.lex_state = 149, .external_lex_state = 2}, - [3595] = {.lex_state = 149, .external_lex_state = 2}, - [3596] = {.lex_state = 149, .external_lex_state = 2}, - [3597] = {.lex_state = 149, .external_lex_state = 5}, - [3598] = {.lex_state = 149, .external_lex_state = 5}, - [3599] = {.lex_state = 149, .external_lex_state = 5}, - [3600] = {.lex_state = 149, .external_lex_state = 5}, - [3601] = {.lex_state = 149, .external_lex_state = 5}, - [3602] = {.lex_state = 149, .external_lex_state = 5}, - [3603] = {.lex_state = 15, .external_lex_state = 2}, - [3604] = {.lex_state = 149, .external_lex_state = 5}, - [3605] = {.lex_state = 149, .external_lex_state = 5}, - [3606] = {.lex_state = 149, .external_lex_state = 2}, - [3607] = {.lex_state = 12, .external_lex_state = 2}, - [3608] = {.lex_state = 149, .external_lex_state = 5}, - [3609] = {.lex_state = 149, .external_lex_state = 5}, - [3610] = {.lex_state = 149, .external_lex_state = 2}, - [3611] = {.lex_state = 149, .external_lex_state = 2}, - [3612] = {.lex_state = 149, .external_lex_state = 2}, - [3613] = {.lex_state = 15, .external_lex_state = 2}, - [3614] = {.lex_state = 149, .external_lex_state = 5}, - [3615] = {.lex_state = 149, .external_lex_state = 5}, - [3616] = {.lex_state = 149, .external_lex_state = 2}, - [3617] = {.lex_state = 149, .external_lex_state = 5}, - [3618] = {.lex_state = 149, .external_lex_state = 5}, - [3619] = {.lex_state = 149, .external_lex_state = 5}, - [3620] = {.lex_state = 149, .external_lex_state = 2}, - [3621] = {.lex_state = 149, .external_lex_state = 2}, - [3622] = {.lex_state = 149, .external_lex_state = 2}, - [3623] = {.lex_state = 149, .external_lex_state = 2}, - [3624] = {.lex_state = 149, .external_lex_state = 2}, - [3625] = {.lex_state = 149, .external_lex_state = 2}, - [3626] = {.lex_state = 149, .external_lex_state = 2}, - [3627] = {.lex_state = 149, .external_lex_state = 2}, - [3628] = {.lex_state = 149, .external_lex_state = 5}, - [3629] = {.lex_state = 149, .external_lex_state = 5}, - [3630] = {.lex_state = 149, .external_lex_state = 2}, - [3631] = {.lex_state = 149, .external_lex_state = 5}, - [3632] = {.lex_state = 149, .external_lex_state = 2}, - [3633] = {.lex_state = 149, .external_lex_state = 5}, - [3634] = {.lex_state = 149, .external_lex_state = 2}, - [3635] = {.lex_state = 149, .external_lex_state = 5}, - [3636] = {.lex_state = 149, .external_lex_state = 5}, - [3637] = {.lex_state = 149, .external_lex_state = 5}, - [3638] = {.lex_state = 149, .external_lex_state = 5}, - [3639] = {.lex_state = 12, .external_lex_state = 2}, - [3640] = {.lex_state = 12, .external_lex_state = 2}, - [3641] = {.lex_state = 149, .external_lex_state = 5}, - [3642] = {.lex_state = 149, .external_lex_state = 5}, - [3643] = {.lex_state = 149, .external_lex_state = 2}, - [3644] = {.lex_state = 149, .external_lex_state = 5}, - [3645] = {.lex_state = 149, .external_lex_state = 2}, - [3646] = {.lex_state = 12, .external_lex_state = 2}, - [3647] = {.lex_state = 149, .external_lex_state = 5}, - [3648] = {.lex_state = 15, .external_lex_state = 2}, - [3649] = {.lex_state = 149, .external_lex_state = 2}, - [3650] = {.lex_state = 149, .external_lex_state = 5}, - [3651] = {.lex_state = 149, .external_lex_state = 5}, - [3652] = {.lex_state = 12, .external_lex_state = 2}, - [3653] = {.lex_state = 12, .external_lex_state = 2}, - [3654] = {.lex_state = 149, .external_lex_state = 2}, - [3655] = {.lex_state = 149, .external_lex_state = 5}, - [3656] = {.lex_state = 149, .external_lex_state = 5}, - [3657] = {.lex_state = 149, .external_lex_state = 5}, - [3658] = {.lex_state = 149, .external_lex_state = 2}, - [3659] = {.lex_state = 15, .external_lex_state = 2}, - [3660] = {.lex_state = 149, .external_lex_state = 5}, - [3661] = {.lex_state = 149, .external_lex_state = 5}, - [3662] = {.lex_state = 149, .external_lex_state = 2}, - [3663] = {.lex_state = 149, .external_lex_state = 2}, - [3664] = {.lex_state = 149, .external_lex_state = 2}, - [3665] = {.lex_state = 149, .external_lex_state = 5}, - [3666] = {.lex_state = 149, .external_lex_state = 2}, - [3667] = {.lex_state = 149, .external_lex_state = 2}, - [3668] = {.lex_state = 149, .external_lex_state = 2}, - [3669] = {.lex_state = 149, .external_lex_state = 2}, - [3670] = {.lex_state = 15, .external_lex_state = 2}, - [3671] = {.lex_state = 149, .external_lex_state = 5}, - [3672] = {.lex_state = 149, .external_lex_state = 5}, - [3673] = {.lex_state = 149, .external_lex_state = 2}, - [3674] = {.lex_state = 149, .external_lex_state = 2}, - [3675] = {.lex_state = 149, .external_lex_state = 2}, - [3676] = {.lex_state = 149, .external_lex_state = 2}, - [3677] = {.lex_state = 149, .external_lex_state = 5}, - [3678] = {.lex_state = 149, .external_lex_state = 5}, - [3679] = {.lex_state = 12, .external_lex_state = 2}, - [3680] = {.lex_state = 149, .external_lex_state = 5}, - [3681] = {.lex_state = 12, .external_lex_state = 2}, - [3682] = {.lex_state = 12, .external_lex_state = 2}, - [3683] = {.lex_state = 149, .external_lex_state = 5}, - [3684] = {.lex_state = 149, .external_lex_state = 5}, - [3685] = {.lex_state = 149, .external_lex_state = 5}, - [3686] = {.lex_state = 149, .external_lex_state = 5}, - [3687] = {.lex_state = 149, .external_lex_state = 5}, - [3688] = {.lex_state = 149, .external_lex_state = 5}, - [3689] = {.lex_state = 149, .external_lex_state = 5}, - [3690] = {.lex_state = 149, .external_lex_state = 2}, - [3691] = {.lex_state = 149, .external_lex_state = 5}, - [3692] = {.lex_state = 149, .external_lex_state = 5}, - [3693] = {.lex_state = 149, .external_lex_state = 5}, - [3694] = {.lex_state = 149, .external_lex_state = 5}, - [3695] = {.lex_state = 149, .external_lex_state = 5}, - [3696] = {.lex_state = 149, .external_lex_state = 5}, - [3697] = {.lex_state = 149, .external_lex_state = 2}, - [3698] = {.lex_state = 149, .external_lex_state = 2}, - [3699] = {.lex_state = 149, .external_lex_state = 5}, - [3700] = {.lex_state = 149, .external_lex_state = 5}, - [3701] = {.lex_state = 149, .external_lex_state = 5}, - [3702] = {.lex_state = 149, .external_lex_state = 5}, - [3703] = {.lex_state = 149, .external_lex_state = 5}, - [3704] = {.lex_state = 149, .external_lex_state = 5}, - [3705] = {.lex_state = 149, .external_lex_state = 5}, - [3706] = {.lex_state = 149, .external_lex_state = 5}, - [3707] = {.lex_state = 149, .external_lex_state = 2}, - [3708] = {.lex_state = 149, .external_lex_state = 5}, - [3709] = {.lex_state = 149, .external_lex_state = 5}, - [3710] = {.lex_state = 149, .external_lex_state = 5}, - [3711] = {.lex_state = 149, .external_lex_state = 2}, - [3712] = {.lex_state = 149, .external_lex_state = 5}, - [3713] = {.lex_state = 149, .external_lex_state = 5}, - [3714] = {.lex_state = 15, .external_lex_state = 2}, - [3715] = {.lex_state = 149, .external_lex_state = 2}, - [3716] = {.lex_state = 149, .external_lex_state = 2}, - [3717] = {.lex_state = 149, .external_lex_state = 2}, - [3718] = {.lex_state = 12, .external_lex_state = 2}, - [3719] = {.lex_state = 149, .external_lex_state = 5}, - [3720] = {.lex_state = 15, .external_lex_state = 2}, - [3721] = {.lex_state = 149, .external_lex_state = 5}, - [3722] = {.lex_state = 12, .external_lex_state = 2}, - [3723] = {.lex_state = 149, .external_lex_state = 5}, - [3724] = {.lex_state = 149, .external_lex_state = 5}, - [3725] = {.lex_state = 12, .external_lex_state = 2}, - [3726] = {.lex_state = 149, .external_lex_state = 5}, - [3727] = {.lex_state = 149, .external_lex_state = 5}, - [3728] = {.lex_state = 149, .external_lex_state = 5}, - [3729] = {.lex_state = 149, .external_lex_state = 5}, - [3730] = {.lex_state = 149, .external_lex_state = 2}, - [3731] = {.lex_state = 149, .external_lex_state = 5}, - [3732] = {.lex_state = 12, .external_lex_state = 2}, - [3733] = {.lex_state = 149, .external_lex_state = 5}, - [3734] = {.lex_state = 149, .external_lex_state = 2}, - [3735] = {.lex_state = 149, .external_lex_state = 5}, - [3736] = {.lex_state = 149, .external_lex_state = 5}, - [3737] = {.lex_state = 149, .external_lex_state = 5}, - [3738] = {.lex_state = 149, .external_lex_state = 5}, - [3739] = {.lex_state = 149, .external_lex_state = 5}, - [3740] = {.lex_state = 149, .external_lex_state = 2}, - [3741] = {.lex_state = 149, .external_lex_state = 5}, - [3742] = {.lex_state = 12, .external_lex_state = 2}, - [3743] = {.lex_state = 149, .external_lex_state = 5}, - [3744] = {.lex_state = 149, .external_lex_state = 5}, - [3745] = {.lex_state = 149, .external_lex_state = 2}, - [3746] = {.lex_state = 12, .external_lex_state = 2}, - [3747] = {.lex_state = 149, .external_lex_state = 5}, - [3748] = {.lex_state = 149, .external_lex_state = 5}, - [3749] = {.lex_state = 149, .external_lex_state = 5}, - [3750] = {.lex_state = 149, .external_lex_state = 5}, - [3751] = {.lex_state = 15, .external_lex_state = 2}, - [3752] = {.lex_state = 149, .external_lex_state = 5}, - [3753] = {.lex_state = 15, .external_lex_state = 2}, - [3754] = {.lex_state = 149, .external_lex_state = 5}, - [3755] = {.lex_state = 149, .external_lex_state = 5}, - [3756] = {.lex_state = 149, .external_lex_state = 5}, - [3757] = {.lex_state = 149, .external_lex_state = 5}, - [3758] = {.lex_state = 149, .external_lex_state = 5}, - [3759] = {.lex_state = 15, .external_lex_state = 2}, - [3760] = {.lex_state = 15, .external_lex_state = 2}, - [3761] = {.lex_state = 149, .external_lex_state = 5}, - [3762] = {.lex_state = 12, .external_lex_state = 2}, - [3763] = {.lex_state = 149, .external_lex_state = 5}, - [3764] = {.lex_state = 149, .external_lex_state = 5}, - [3765] = {.lex_state = 149, .external_lex_state = 2}, - [3766] = {.lex_state = 149, .external_lex_state = 5}, - [3767] = {.lex_state = 149, .external_lex_state = 5}, - [3768] = {.lex_state = 149, .external_lex_state = 5}, - [3769] = {.lex_state = 149, .external_lex_state = 5}, - [3770] = {.lex_state = 149, .external_lex_state = 5}, - [3771] = {.lex_state = 15, .external_lex_state = 2}, - [3772] = {.lex_state = 12, .external_lex_state = 2}, - [3773] = {.lex_state = 149, .external_lex_state = 2}, - [3774] = {.lex_state = 25, .external_lex_state = 2}, - [3775] = {.lex_state = 12, .external_lex_state = 2}, - [3776] = {.lex_state = 149, .external_lex_state = 2}, - [3777] = {.lex_state = 12, .external_lex_state = 2}, - [3778] = {.lex_state = 12, .external_lex_state = 2}, - [3779] = {.lex_state = 149, .external_lex_state = 5}, - [3780] = {.lex_state = 149, .external_lex_state = 6}, - [3781] = {.lex_state = 12, .external_lex_state = 2}, - [3782] = {.lex_state = 149, .external_lex_state = 2}, - [3783] = {.lex_state = 149, .external_lex_state = 2}, - [3784] = {.lex_state = 12, .external_lex_state = 2}, - [3785] = {.lex_state = 149, .external_lex_state = 6}, - [3786] = {.lex_state = 12, .external_lex_state = 2}, - [3787] = {.lex_state = 149, .external_lex_state = 5}, - [3788] = {.lex_state = 149, .external_lex_state = 6}, - [3789] = {.lex_state = 149, .external_lex_state = 6}, - [3790] = {.lex_state = 12, .external_lex_state = 2}, - [3791] = {.lex_state = 149, .external_lex_state = 5}, - [3792] = {.lex_state = 149, .external_lex_state = 6}, - [3793] = {.lex_state = 149, .external_lex_state = 2}, - [3794] = {.lex_state = 149, .external_lex_state = 6}, - [3795] = {.lex_state = 12, .external_lex_state = 2}, - [3796] = {.lex_state = 149, .external_lex_state = 5}, - [3797] = {.lex_state = 23, .external_lex_state = 8}, - [3798] = {.lex_state = 149, .external_lex_state = 2}, - [3799] = {.lex_state = 149, .external_lex_state = 2}, - [3800] = {.lex_state = 12, .external_lex_state = 2}, - [3801] = {.lex_state = 16, .external_lex_state = 2}, - [3802] = {.lex_state = 149, .external_lex_state = 2}, - [3803] = {.lex_state = 149, .external_lex_state = 2}, - [3804] = {.lex_state = 12, .external_lex_state = 2}, - [3805] = {.lex_state = 12, .external_lex_state = 2}, - [3806] = {.lex_state = 149, .external_lex_state = 2}, - [3807] = {.lex_state = 12, .external_lex_state = 2}, - [3808] = {.lex_state = 149, .external_lex_state = 2}, - [3809] = {.lex_state = 149, .external_lex_state = 2}, - [3810] = {.lex_state = 149, .external_lex_state = 2}, - [3811] = {.lex_state = 149, .external_lex_state = 6}, - [3812] = {.lex_state = 149, .external_lex_state = 2}, - [3813] = {.lex_state = 149, .external_lex_state = 2}, - [3814] = {.lex_state = 149, .external_lex_state = 6}, - [3815] = {.lex_state = 12, .external_lex_state = 2}, - [3816] = {.lex_state = 12, .external_lex_state = 2}, - [3817] = {.lex_state = 149, .external_lex_state = 2}, - [3818] = {.lex_state = 149, .external_lex_state = 5}, - [3819] = {.lex_state = 25, .external_lex_state = 2}, - [3820] = {.lex_state = 149, .external_lex_state = 2}, - [3821] = {.lex_state = 12, .external_lex_state = 2}, - [3822] = {.lex_state = 149, .external_lex_state = 2}, - [3823] = {.lex_state = 12, .external_lex_state = 2}, - [3824] = {.lex_state = 12, .external_lex_state = 2}, - [3825] = {.lex_state = 12, .external_lex_state = 2}, - [3826] = {.lex_state = 149, .external_lex_state = 5}, - [3827] = {.lex_state = 149, .external_lex_state = 6}, - [3828] = {.lex_state = 149, .external_lex_state = 5}, - [3829] = {.lex_state = 12, .external_lex_state = 2}, - [3830] = {.lex_state = 149, .external_lex_state = 2}, - [3831] = {.lex_state = 12, .external_lex_state = 2}, - [3832] = {.lex_state = 149, .external_lex_state = 2}, - [3833] = {.lex_state = 149, .external_lex_state = 2}, - [3834] = {.lex_state = 149, .external_lex_state = 2}, - [3835] = {.lex_state = 149, .external_lex_state = 6}, - [3836] = {.lex_state = 149, .external_lex_state = 5}, - [3837] = {.lex_state = 149, .external_lex_state = 5}, - [3838] = {.lex_state = 149, .external_lex_state = 5}, - [3839] = {.lex_state = 12, .external_lex_state = 2}, - [3840] = {.lex_state = 12, .external_lex_state = 2}, - [3841] = {.lex_state = 149, .external_lex_state = 2}, - [3842] = {.lex_state = 149, .external_lex_state = 5}, - [3843] = {.lex_state = 149, .external_lex_state = 6}, - [3844] = {.lex_state = 23, .external_lex_state = 8}, - [3845] = {.lex_state = 12, .external_lex_state = 2}, - [3846] = {.lex_state = 149, .external_lex_state = 2}, - [3847] = {.lex_state = 149, .external_lex_state = 2}, - [3848] = {.lex_state = 149, .external_lex_state = 2}, - [3849] = {.lex_state = 149, .external_lex_state = 2}, - [3850] = {.lex_state = 12, .external_lex_state = 2}, - [3851] = {.lex_state = 16, .external_lex_state = 2}, - [3852] = {.lex_state = 149, .external_lex_state = 5}, - [3853] = {.lex_state = 149, .external_lex_state = 5}, - [3854] = {.lex_state = 149, .external_lex_state = 5}, - [3855] = {.lex_state = 149, .external_lex_state = 6}, - [3856] = {.lex_state = 149, .external_lex_state = 5}, - [3857] = {.lex_state = 25, .external_lex_state = 2}, - [3858] = {.lex_state = 149, .external_lex_state = 2}, - [3859] = {.lex_state = 149, .external_lex_state = 6}, - [3860] = {.lex_state = 149, .external_lex_state = 6}, - [3861] = {.lex_state = 149, .external_lex_state = 2}, - [3862] = {.lex_state = 149, .external_lex_state = 6}, - [3863] = {.lex_state = 149, .external_lex_state = 2}, - [3864] = {.lex_state = 12, .external_lex_state = 2}, - [3865] = {.lex_state = 149, .external_lex_state = 5}, - [3866] = {.lex_state = 12, .external_lex_state = 2}, - [3867] = {.lex_state = 149, .external_lex_state = 5}, - [3868] = {.lex_state = 149, .external_lex_state = 5}, - [3869] = {.lex_state = 149, .external_lex_state = 6}, - [3870] = {.lex_state = 149, .external_lex_state = 2}, - [3871] = {.lex_state = 12, .external_lex_state = 2}, - [3872] = {.lex_state = 149, .external_lex_state = 5}, - [3873] = {.lex_state = 149, .external_lex_state = 2}, - [3874] = {.lex_state = 149, .external_lex_state = 5}, - [3875] = {.lex_state = 12, .external_lex_state = 2}, - [3876] = {.lex_state = 12, .external_lex_state = 2}, - [3877] = {.lex_state = 149, .external_lex_state = 2}, - [3878] = {.lex_state = 149, .external_lex_state = 2}, - [3879] = {.lex_state = 149, .external_lex_state = 2}, - [3880] = {.lex_state = 12, .external_lex_state = 2}, - [3881] = {.lex_state = 12, .external_lex_state = 2}, - [3882] = {.lex_state = 12, .external_lex_state = 2}, - [3883] = {.lex_state = 149, .external_lex_state = 2}, - [3884] = {.lex_state = 149, .external_lex_state = 2}, - [3885] = {.lex_state = 149, .external_lex_state = 5}, - [3886] = {.lex_state = 12, .external_lex_state = 2}, - [3887] = {.lex_state = 149, .external_lex_state = 5}, - [3888] = {.lex_state = 149, .external_lex_state = 6}, - [3889] = {.lex_state = 23, .external_lex_state = 8}, - [3890] = {.lex_state = 149, .external_lex_state = 6}, - [3891] = {.lex_state = 149, .external_lex_state = 5}, - [3892] = {.lex_state = 149, .external_lex_state = 2}, - [3893] = {.lex_state = 12, .external_lex_state = 2}, - [3894] = {.lex_state = 12, .external_lex_state = 2}, - [3895] = {.lex_state = 149, .external_lex_state = 2}, - [3896] = {.lex_state = 149, .external_lex_state = 6}, - [3897] = {.lex_state = 12, .external_lex_state = 2}, - [3898] = {.lex_state = 149, .external_lex_state = 2}, - [3899] = {.lex_state = 149, .external_lex_state = 6}, - [3900] = {.lex_state = 12, .external_lex_state = 2}, - [3901] = {.lex_state = 12, .external_lex_state = 2}, - [3902] = {.lex_state = 149, .external_lex_state = 5}, - [3903] = {.lex_state = 12, .external_lex_state = 2}, - [3904] = {.lex_state = 149, .external_lex_state = 6}, - [3905] = {.lex_state = 25, .external_lex_state = 2}, - [3906] = {.lex_state = 149, .external_lex_state = 6}, - [3907] = {.lex_state = 149, .external_lex_state = 5}, - [3908] = {.lex_state = 149, .external_lex_state = 6}, - [3909] = {.lex_state = 149, .external_lex_state = 5}, - [3910] = {.lex_state = 23, .external_lex_state = 8}, - [3911] = {.lex_state = 149, .external_lex_state = 2}, - [3912] = {.lex_state = 149, .external_lex_state = 5}, - [3913] = {.lex_state = 23, .external_lex_state = 8}, - [3914] = {.lex_state = 12, .external_lex_state = 2}, - [3915] = {.lex_state = 149, .external_lex_state = 5}, - [3916] = {.lex_state = 149, .external_lex_state = 2}, - [3917] = {.lex_state = 149, .external_lex_state = 6}, - [3918] = {.lex_state = 149, .external_lex_state = 2}, - [3919] = {.lex_state = 12, .external_lex_state = 2}, - [3920] = {.lex_state = 12, .external_lex_state = 2}, - [3921] = {.lex_state = 25, .external_lex_state = 2}, - [3922] = {.lex_state = 12, .external_lex_state = 2}, - [3923] = {.lex_state = 12, .external_lex_state = 2}, - [3924] = {.lex_state = 12, .external_lex_state = 2}, - [3925] = {.lex_state = 12, .external_lex_state = 2}, - [3926] = {.lex_state = 12, .external_lex_state = 2}, - [3927] = {.lex_state = 149, .external_lex_state = 2}, - [3928] = {.lex_state = 149, .external_lex_state = 6}, - [3929] = {.lex_state = 149, .external_lex_state = 5}, - [3930] = {.lex_state = 12, .external_lex_state = 2}, - [3931] = {.lex_state = 149, .external_lex_state = 6}, - [3932] = {.lex_state = 149, .external_lex_state = 2}, - [3933] = {.lex_state = 12, .external_lex_state = 2}, - [3934] = {.lex_state = 149, .external_lex_state = 5}, - [3935] = {.lex_state = 149, .external_lex_state = 5}, - [3936] = {.lex_state = 149, .external_lex_state = 5}, - [3937] = {.lex_state = 149, .external_lex_state = 2}, - [3938] = {.lex_state = 149, .external_lex_state = 2}, - [3939] = {.lex_state = 149, .external_lex_state = 5}, - [3940] = {.lex_state = 149, .external_lex_state = 5}, - [3941] = {.lex_state = 149, .external_lex_state = 5}, - [3942] = {.lex_state = 12, .external_lex_state = 2}, - [3943] = {.lex_state = 149, .external_lex_state = 5}, - [3944] = {.lex_state = 12, .external_lex_state = 2}, - [3945] = {.lex_state = 149, .external_lex_state = 5}, - [3946] = {.lex_state = 149, .external_lex_state = 6}, - [3947] = {.lex_state = 23, .external_lex_state = 9}, - [3948] = {.lex_state = 149, .external_lex_state = 5}, - [3949] = {.lex_state = 149, .external_lex_state = 5}, - [3950] = {.lex_state = 149, .external_lex_state = 5}, - [3951] = {.lex_state = 149, .external_lex_state = 5}, - [3952] = {.lex_state = 149, .external_lex_state = 5}, - [3953] = {.lex_state = 149, .external_lex_state = 5}, - [3954] = {.lex_state = 23, .external_lex_state = 7}, - [3955] = {.lex_state = 25, .external_lex_state = 2}, - [3956] = {.lex_state = 149, .external_lex_state = 5}, - [3957] = {.lex_state = 149, .external_lex_state = 5}, - [3958] = {.lex_state = 149, .external_lex_state = 5}, - [3959] = {.lex_state = 149, .external_lex_state = 5}, - [3960] = {.lex_state = 149, .external_lex_state = 5}, - [3961] = {.lex_state = 149, .external_lex_state = 5}, - [3962] = {.lex_state = 23, .external_lex_state = 7}, - [3963] = {.lex_state = 149, .external_lex_state = 5}, - [3964] = {.lex_state = 149, .external_lex_state = 5}, - [3965] = {.lex_state = 149, .external_lex_state = 2}, - [3966] = {.lex_state = 149, .external_lex_state = 5}, - [3967] = {.lex_state = 149, .external_lex_state = 5}, - [3968] = {.lex_state = 4, .external_lex_state = 2}, - [3969] = {.lex_state = 149, .external_lex_state = 5}, - [3970] = {.lex_state = 25, .external_lex_state = 2}, - [3971] = {.lex_state = 149, .external_lex_state = 2}, - [3972] = {.lex_state = 149, .external_lex_state = 5}, - [3973] = {.lex_state = 149, .external_lex_state = 6}, - [3974] = {.lex_state = 149, .external_lex_state = 6}, - [3975] = {.lex_state = 149, .external_lex_state = 6}, - [3976] = {.lex_state = 149, .external_lex_state = 5}, - [3977] = {.lex_state = 12, .external_lex_state = 2}, - [3978] = {.lex_state = 149, .external_lex_state = 5}, - [3979] = {.lex_state = 149, .external_lex_state = 5}, - [3980] = {.lex_state = 12, .external_lex_state = 2}, - [3981] = {.lex_state = 149, .external_lex_state = 6}, - [3982] = {.lex_state = 149, .external_lex_state = 5}, - [3983] = {.lex_state = 149, .external_lex_state = 5}, - [3984] = {.lex_state = 149, .external_lex_state = 5}, - [3985] = {.lex_state = 149, .external_lex_state = 5}, - [3986] = {.lex_state = 149, .external_lex_state = 5}, - [3987] = {.lex_state = 149, .external_lex_state = 5}, - [3988] = {.lex_state = 149, .external_lex_state = 5}, - [3989] = {.lex_state = 149, .external_lex_state = 5}, - [3990] = {.lex_state = 149, .external_lex_state = 2}, - [3991] = {.lex_state = 149, .external_lex_state = 5}, - [3992] = {.lex_state = 149, .external_lex_state = 5}, - [3993] = {.lex_state = 149, .external_lex_state = 5}, - [3994] = {.lex_state = 149, .external_lex_state = 2}, - [3995] = {.lex_state = 149, .external_lex_state = 5}, - [3996] = {.lex_state = 149, .external_lex_state = 5}, - [3997] = {.lex_state = 149, .external_lex_state = 5}, - [3998] = {.lex_state = 149, .external_lex_state = 5}, - [3999] = {.lex_state = 149, .external_lex_state = 5}, - [4000] = {.lex_state = 149, .external_lex_state = 5}, - [4001] = {.lex_state = 149, .external_lex_state = 5}, - [4002] = {.lex_state = 16, .external_lex_state = 2}, - [4003] = {.lex_state = 149, .external_lex_state = 5}, - [4004] = {.lex_state = 23, .external_lex_state = 7}, - [4005] = {.lex_state = 149, .external_lex_state = 5}, - [4006] = {.lex_state = 149, .external_lex_state = 2}, - [4007] = {.lex_state = 149, .external_lex_state = 5}, - [4008] = {.lex_state = 149, .external_lex_state = 2}, - [4009] = {.lex_state = 149, .external_lex_state = 5}, - [4010] = {.lex_state = 23, .external_lex_state = 7}, - [4011] = {.lex_state = 149, .external_lex_state = 5}, - [4012] = {.lex_state = 23, .external_lex_state = 7}, - [4013] = {.lex_state = 149, .external_lex_state = 5}, - [4014] = {.lex_state = 23, .external_lex_state = 7}, - [4015] = {.lex_state = 23, .external_lex_state = 9}, - [4016] = {.lex_state = 23, .external_lex_state = 7}, - [4017] = {.lex_state = 149, .external_lex_state = 5}, - [4018] = {.lex_state = 149, .external_lex_state = 6}, - [4019] = {.lex_state = 149, .external_lex_state = 5}, - [4020] = {.lex_state = 149, .external_lex_state = 5}, - [4021] = {.lex_state = 4, .external_lex_state = 2}, - [4022] = {.lex_state = 149, .external_lex_state = 5}, - [4023] = {.lex_state = 149, .external_lex_state = 2}, - [4024] = {.lex_state = 149, .external_lex_state = 5}, - [4025] = {.lex_state = 149, .external_lex_state = 5}, - [4026] = {.lex_state = 149, .external_lex_state = 5}, - [4027] = {.lex_state = 149, .external_lex_state = 5}, - [4028] = {.lex_state = 23, .external_lex_state = 7}, - [4029] = {.lex_state = 149, .external_lex_state = 5}, - [4030] = {.lex_state = 149, .external_lex_state = 2}, - [4031] = {.lex_state = 149, .external_lex_state = 5}, - [4032] = {.lex_state = 149, .external_lex_state = 2}, - [4033] = {.lex_state = 149, .external_lex_state = 2}, - [4034] = {.lex_state = 149, .external_lex_state = 5}, - [4035] = {.lex_state = 149, .external_lex_state = 5}, - [4036] = {.lex_state = 149, .external_lex_state = 6}, - [4037] = {.lex_state = 149, .external_lex_state = 5}, - [4038] = {.lex_state = 149, .external_lex_state = 5}, - [4039] = {.lex_state = 149, .external_lex_state = 5}, - [4040] = {.lex_state = 149, .external_lex_state = 5}, - [4041] = {.lex_state = 149, .external_lex_state = 5}, - [4042] = {.lex_state = 23, .external_lex_state = 9}, - [4043] = {.lex_state = 15, .external_lex_state = 2}, - [4044] = {.lex_state = 149, .external_lex_state = 6}, - [4045] = {.lex_state = 23, .external_lex_state = 7}, - [4046] = {.lex_state = 149, .external_lex_state = 5}, - [4047] = {.lex_state = 149, .external_lex_state = 2}, - [4048] = {.lex_state = 149, .external_lex_state = 2}, - [4049] = {.lex_state = 149, .external_lex_state = 2}, - [4050] = {.lex_state = 149, .external_lex_state = 5}, - [4051] = {.lex_state = 149, .external_lex_state = 5}, - [4052] = {.lex_state = 25, .external_lex_state = 2}, - [4053] = {.lex_state = 149, .external_lex_state = 6}, - [4054] = {.lex_state = 149, .external_lex_state = 5}, - [4055] = {.lex_state = 149, .external_lex_state = 5}, - [4056] = {.lex_state = 149, .external_lex_state = 5}, - [4057] = {.lex_state = 12, .external_lex_state = 2}, - [4058] = {.lex_state = 149, .external_lex_state = 5}, - [4059] = {.lex_state = 149, .external_lex_state = 5}, - [4060] = {.lex_state = 149, .external_lex_state = 5}, - [4061] = {.lex_state = 149, .external_lex_state = 5}, - [4062] = {.lex_state = 149, .external_lex_state = 5}, - [4063] = {.lex_state = 149, .external_lex_state = 5}, - [4064] = {.lex_state = 149, .external_lex_state = 5}, - [4065] = {.lex_state = 149, .external_lex_state = 5}, - [4066] = {.lex_state = 149, .external_lex_state = 5}, - [4067] = {.lex_state = 149, .external_lex_state = 2}, - [4068] = {.lex_state = 149, .external_lex_state = 5}, - [4069] = {.lex_state = 149, .external_lex_state = 5}, - [4070] = {.lex_state = 149, .external_lex_state = 5}, - [4071] = {.lex_state = 149, .external_lex_state = 5}, - [4072] = {.lex_state = 149, .external_lex_state = 2}, - [4073] = {.lex_state = 149, .external_lex_state = 5}, - [4074] = {.lex_state = 149, .external_lex_state = 5}, - [4075] = {.lex_state = 149, .external_lex_state = 5}, - [4076] = {.lex_state = 149, .external_lex_state = 5}, - [4077] = {.lex_state = 149, .external_lex_state = 5}, - [4078] = {.lex_state = 149, .external_lex_state = 2}, - [4079] = {.lex_state = 12, .external_lex_state = 2}, - [4080] = {.lex_state = 149, .external_lex_state = 5}, - [4081] = {.lex_state = 149, .external_lex_state = 5}, - [4082] = {.lex_state = 12, .external_lex_state = 2}, - [4083] = {.lex_state = 149, .external_lex_state = 2}, - [4084] = {.lex_state = 12, .external_lex_state = 2}, - [4085] = {.lex_state = 149, .external_lex_state = 5}, - [4086] = {.lex_state = 12, .external_lex_state = 2}, - [4087] = {.lex_state = 149, .external_lex_state = 5}, - [4088] = {.lex_state = 149, .external_lex_state = 5}, - [4089] = {.lex_state = 149, .external_lex_state = 5}, - [4090] = {.lex_state = 149, .external_lex_state = 5}, - [4091] = {.lex_state = 149, .external_lex_state = 5}, - [4092] = {.lex_state = 149, .external_lex_state = 5}, - [4093] = {.lex_state = 149, .external_lex_state = 5}, - [4094] = {.lex_state = 149, .external_lex_state = 5}, - [4095] = {.lex_state = 149, .external_lex_state = 5}, - [4096] = {.lex_state = 149, .external_lex_state = 5}, - [4097] = {.lex_state = 149, .external_lex_state = 5}, - [4098] = {.lex_state = 149, .external_lex_state = 5}, - [4099] = {.lex_state = 149, .external_lex_state = 5}, - [4100] = {.lex_state = 149, .external_lex_state = 5}, - [4101] = {.lex_state = 149, .external_lex_state = 5}, - [4102] = {.lex_state = 149, .external_lex_state = 5}, - [4103] = {.lex_state = 149, .external_lex_state = 2}, - [4104] = {.lex_state = 149, .external_lex_state = 5}, - [4105] = {.lex_state = 149, .external_lex_state = 2}, - [4106] = {.lex_state = 149, .external_lex_state = 2}, - [4107] = {.lex_state = 149, .external_lex_state = 5}, - [4108] = {.lex_state = 149, .external_lex_state = 5}, - [4109] = {.lex_state = 149, .external_lex_state = 2}, - [4110] = {.lex_state = 23, .external_lex_state = 7}, - [4111] = {.lex_state = 23, .external_lex_state = 7}, - [4112] = {.lex_state = 149, .external_lex_state = 5}, - [4113] = {.lex_state = 12, .external_lex_state = 2}, - [4114] = {.lex_state = 149, .external_lex_state = 5}, - [4115] = {.lex_state = 12, .external_lex_state = 2}, - [4116] = {.lex_state = 149, .external_lex_state = 5}, - [4117] = {.lex_state = 149, .external_lex_state = 5}, - [4118] = {.lex_state = 149, .external_lex_state = 5}, - [4119] = {.lex_state = 16, .external_lex_state = 2}, - [4120] = {.lex_state = 149, .external_lex_state = 5}, - [4121] = {.lex_state = 149, .external_lex_state = 5}, - [4122] = {.lex_state = 149, .external_lex_state = 5}, - [4123] = {.lex_state = 149, .external_lex_state = 5}, - [4124] = {.lex_state = 149, .external_lex_state = 5}, - [4125] = {.lex_state = 149, .external_lex_state = 5}, - [4126] = {.lex_state = 23, .external_lex_state = 9}, - [4127] = {.lex_state = 149, .external_lex_state = 6}, - [4128] = {.lex_state = 149, .external_lex_state = 5}, - [4129] = {.lex_state = 149, .external_lex_state = 5}, - [4130] = {.lex_state = 149, .external_lex_state = 5}, - [4131] = {.lex_state = 149, .external_lex_state = 5}, - [4132] = {.lex_state = 149, .external_lex_state = 2}, - [4133] = {.lex_state = 149, .external_lex_state = 5}, - [4134] = {.lex_state = 149, .external_lex_state = 5}, - [4135] = {.lex_state = 149, .external_lex_state = 5}, - [4136] = {.lex_state = 23, .external_lex_state = 9}, - [4137] = {.lex_state = 149, .external_lex_state = 6}, - [4138] = {.lex_state = 149, .external_lex_state = 5}, - [4139] = {.lex_state = 149, .external_lex_state = 5}, - [4140] = {.lex_state = 149, .external_lex_state = 2}, - [4141] = {.lex_state = 12, .external_lex_state = 2}, - [4142] = {.lex_state = 149, .external_lex_state = 5}, - [4143] = {.lex_state = 149, .external_lex_state = 5}, - [4144] = {.lex_state = 149, .external_lex_state = 5}, - [4145] = {.lex_state = 12, .external_lex_state = 2}, - [4146] = {.lex_state = 149, .external_lex_state = 6}, - [4147] = {.lex_state = 149, .external_lex_state = 2}, - [4148] = {.lex_state = 149, .external_lex_state = 5}, - [4149] = {.lex_state = 12, .external_lex_state = 2}, - [4150] = {.lex_state = 16, .external_lex_state = 2}, - [4151] = {.lex_state = 23, .external_lex_state = 9}, - [4152] = {.lex_state = 149, .external_lex_state = 5}, - [4153] = {.lex_state = 149, .external_lex_state = 5}, - [4154] = {.lex_state = 12, .external_lex_state = 2}, - [4155] = {.lex_state = 149, .external_lex_state = 5}, - [4156] = {.lex_state = 149, .external_lex_state = 5}, - [4157] = {.lex_state = 149, .external_lex_state = 5}, - [4158] = {.lex_state = 149, .external_lex_state = 5}, - [4159] = {.lex_state = 149, .external_lex_state = 5}, - [4160] = {.lex_state = 149, .external_lex_state = 5}, - [4161] = {.lex_state = 12, .external_lex_state = 2}, - [4162] = {.lex_state = 149, .external_lex_state = 5}, - [4163] = {.lex_state = 149, .external_lex_state = 5}, - [4164] = {.lex_state = 149, .external_lex_state = 5}, - [4165] = {.lex_state = 23, .external_lex_state = 9}, - [4166] = {.lex_state = 149, .external_lex_state = 5}, - [4167] = {.lex_state = 149, .external_lex_state = 5}, - [4168] = {.lex_state = 149, .external_lex_state = 5}, - [4169] = {.lex_state = 149, .external_lex_state = 5}, - [4170] = {.lex_state = 149, .external_lex_state = 5}, - [4171] = {.lex_state = 149, .external_lex_state = 5}, - [4172] = {.lex_state = 149, .external_lex_state = 5}, - [4173] = {.lex_state = 149, .external_lex_state = 5}, - [4174] = {.lex_state = 12, .external_lex_state = 2}, - [4175] = {.lex_state = 12, .external_lex_state = 2}, - [4176] = {.lex_state = 149, .external_lex_state = 5}, - [4177] = {.lex_state = 149, .external_lex_state = 5}, - [4178] = {.lex_state = 23, .external_lex_state = 9}, - [4179] = {.lex_state = 149, .external_lex_state = 5}, - [4180] = {.lex_state = 23, .external_lex_state = 9}, - [4181] = {.lex_state = 149, .external_lex_state = 5}, - [4182] = {.lex_state = 12, .external_lex_state = 2}, - [4183] = {.lex_state = 149, .external_lex_state = 5}, - [4184] = {.lex_state = 149, .external_lex_state = 5}, - [4185] = {.lex_state = 149, .external_lex_state = 5}, - [4186] = {.lex_state = 149, .external_lex_state = 5}, - [4187] = {.lex_state = 149, .external_lex_state = 5}, - [4188] = {.lex_state = 149, .external_lex_state = 5}, - [4189] = {.lex_state = 149, .external_lex_state = 5}, - [4190] = {.lex_state = 149, .external_lex_state = 5}, - [4191] = {.lex_state = 149, .external_lex_state = 5}, - [4192] = {.lex_state = 149, .external_lex_state = 5}, - [4193] = {.lex_state = 149, .external_lex_state = 5}, - [4194] = {.lex_state = 12, .external_lex_state = 2}, - [4195] = {.lex_state = 149, .external_lex_state = 5}, - [4196] = {.lex_state = 149, .external_lex_state = 5}, - [4197] = {.lex_state = 149, .external_lex_state = 5}, - [4198] = {.lex_state = 149, .external_lex_state = 5}, - [4199] = {.lex_state = 149, .external_lex_state = 5}, - [4200] = {.lex_state = 149, .external_lex_state = 2}, - [4201] = {.lex_state = 149, .external_lex_state = 5}, - [4202] = {.lex_state = 12, .external_lex_state = 2}, - [4203] = {.lex_state = 149, .external_lex_state = 6}, - [4204] = {.lex_state = 149, .external_lex_state = 2}, - [4205] = {.lex_state = 149, .external_lex_state = 2}, - [4206] = {.lex_state = 149, .external_lex_state = 5}, - [4207] = {.lex_state = 12, .external_lex_state = 2}, - [4208] = {.lex_state = 149, .external_lex_state = 5}, - [4209] = {.lex_state = 149, .external_lex_state = 2}, - [4210] = {.lex_state = 12, .external_lex_state = 2}, - [4211] = {.lex_state = 149, .external_lex_state = 5}, - [4212] = {.lex_state = 149, .external_lex_state = 5}, - [4213] = {.lex_state = 149, .external_lex_state = 5}, - [4214] = {.lex_state = 12, .external_lex_state = 2}, - [4215] = {.lex_state = 23, .external_lex_state = 7}, - [4216] = {.lex_state = 23, .external_lex_state = 7}, - [4217] = {.lex_state = 149, .external_lex_state = 2}, - [4218] = {.lex_state = 12, .external_lex_state = 2}, - [4219] = {.lex_state = 149, .external_lex_state = 5}, - [4220] = {.lex_state = 149, .external_lex_state = 5}, - [4221] = {.lex_state = 12, .external_lex_state = 2}, - [4222] = {.lex_state = 149, .external_lex_state = 5}, - [4223] = {.lex_state = 149, .external_lex_state = 5}, - [4224] = {.lex_state = 149, .external_lex_state = 5}, - [4225] = {.lex_state = 12, .external_lex_state = 2}, - [4226] = {.lex_state = 12, .external_lex_state = 2}, - [4227] = {.lex_state = 149, .external_lex_state = 5}, - [4228] = {.lex_state = 149, .external_lex_state = 5}, - [4229] = {.lex_state = 149, .external_lex_state = 5}, - [4230] = {.lex_state = 149, .external_lex_state = 5}, - [4231] = {.lex_state = 149, .external_lex_state = 5}, - [4232] = {.lex_state = 149, .external_lex_state = 5}, - [4233] = {.lex_state = 149, .external_lex_state = 5}, - [4234] = {.lex_state = 23, .external_lex_state = 7}, - [4235] = {.lex_state = 23, .external_lex_state = 7}, - [4236] = {.lex_state = 149, .external_lex_state = 5}, - [4237] = {.lex_state = 149, .external_lex_state = 5}, - [4238] = {.lex_state = 12, .external_lex_state = 2}, - [4239] = {.lex_state = 12, .external_lex_state = 2}, - [4240] = {.lex_state = 149, .external_lex_state = 5}, - [4241] = {.lex_state = 12, .external_lex_state = 2}, - [4242] = {.lex_state = 12, .external_lex_state = 2}, - [4243] = {.lex_state = 23, .external_lex_state = 7}, - [4244] = {.lex_state = 23, .external_lex_state = 7}, - [4245] = {.lex_state = 149, .external_lex_state = 5}, - [4246] = {.lex_state = 149, .external_lex_state = 5}, - [4247] = {.lex_state = 149, .external_lex_state = 5}, - [4248] = {.lex_state = 12, .external_lex_state = 2}, - [4249] = {.lex_state = 149, .external_lex_state = 5}, - [4250] = {.lex_state = 12, .external_lex_state = 2}, - [4251] = {.lex_state = 12, .external_lex_state = 2}, - [4252] = {.lex_state = 149, .external_lex_state = 5}, - [4253] = {.lex_state = 149, .external_lex_state = 5}, - [4254] = {.lex_state = 149, .external_lex_state = 5}, - [4255] = {.lex_state = 149, .external_lex_state = 5}, - [4256] = {.lex_state = 149, .external_lex_state = 5}, - [4257] = {.lex_state = 12, .external_lex_state = 2}, - [4258] = {.lex_state = 149, .external_lex_state = 5}, - [4259] = {.lex_state = 149, .external_lex_state = 5}, - [4260] = {.lex_state = 23, .external_lex_state = 7}, - [4261] = {.lex_state = 23, .external_lex_state = 7}, - [4262] = {.lex_state = 23, .external_lex_state = 7}, - [4263] = {.lex_state = 23, .external_lex_state = 7}, - [4264] = {.lex_state = 12, .external_lex_state = 2}, - [4265] = {.lex_state = 23, .external_lex_state = 7}, - [4266] = {.lex_state = 23, .external_lex_state = 7}, - [4267] = {.lex_state = 149, .external_lex_state = 5}, - [4268] = {.lex_state = 12, .external_lex_state = 2}, - [4269] = {.lex_state = 149, .external_lex_state = 5}, - [4270] = {.lex_state = 12, .external_lex_state = 2}, - [4271] = {.lex_state = 12, .external_lex_state = 2}, - [4272] = {.lex_state = 149, .external_lex_state = 5}, - [4273] = {.lex_state = 12, .external_lex_state = 2}, - [4274] = {.lex_state = 149, .external_lex_state = 5}, - [4275] = {.lex_state = 23, .external_lex_state = 7}, - [4276] = {.lex_state = 23, .external_lex_state = 7}, - [4277] = {.lex_state = 149, .external_lex_state = 5}, - [4278] = {.lex_state = 149, .external_lex_state = 5}, - [4279] = {.lex_state = 149, .external_lex_state = 5}, - [4280] = {.lex_state = 149, .external_lex_state = 5}, - [4281] = {.lex_state = 149, .external_lex_state = 5}, - [4282] = {.lex_state = 149, .external_lex_state = 5}, - [4283] = {.lex_state = 149, .external_lex_state = 5}, - [4284] = {.lex_state = 149, .external_lex_state = 5}, - [4285] = {.lex_state = 149, .external_lex_state = 5}, - [4286] = {.lex_state = 25, .external_lex_state = 2}, - [4287] = {.lex_state = 149, .external_lex_state = 5}, - [4288] = {.lex_state = 149, .external_lex_state = 5}, - [4289] = {.lex_state = 149, .external_lex_state = 5}, - [4290] = {.lex_state = 149, .external_lex_state = 5}, - [4291] = {.lex_state = 149, .external_lex_state = 5}, - [4292] = {.lex_state = 149, .external_lex_state = 5}, - [4293] = {.lex_state = 23, .external_lex_state = 7}, - [4294] = {.lex_state = 23, .external_lex_state = 7}, - [4295] = {.lex_state = 149, .external_lex_state = 5}, - [4296] = {.lex_state = 12, .external_lex_state = 2}, - [4297] = {.lex_state = 149, .external_lex_state = 5}, - [4298] = {.lex_state = 149, .external_lex_state = 5}, - [4299] = {.lex_state = 149, .external_lex_state = 5}, - [4300] = {.lex_state = 149, .external_lex_state = 5}, - [4301] = {.lex_state = 149, .external_lex_state = 5}, - [4302] = {.lex_state = 12, .external_lex_state = 2}, - [4303] = {.lex_state = 149, .external_lex_state = 5}, - [4304] = {.lex_state = 12, .external_lex_state = 2}, - [4305] = {.lex_state = 149, .external_lex_state = 2}, - [4306] = {.lex_state = 149, .external_lex_state = 2}, - [4307] = {.lex_state = 149, .external_lex_state = 5}, - [4308] = {.lex_state = 149, .external_lex_state = 5}, - [4309] = {.lex_state = 149, .external_lex_state = 2}, - [4310] = {.lex_state = 23, .external_lex_state = 9}, - [4311] = {.lex_state = 149, .external_lex_state = 2}, - [4312] = {.lex_state = 149, .external_lex_state = 5}, - [4313] = {.lex_state = 149, .external_lex_state = 5}, - [4314] = {.lex_state = 149, .external_lex_state = 2}, - [4315] = {.lex_state = 12, .external_lex_state = 2}, - [4316] = {.lex_state = 12, .external_lex_state = 2}, - [4317] = {.lex_state = 149, .external_lex_state = 5}, - [4318] = {.lex_state = 149, .external_lex_state = 5}, - [4319] = {.lex_state = 149, .external_lex_state = 5}, - [4320] = {.lex_state = 12, .external_lex_state = 2}, - [4321] = {.lex_state = 12, .external_lex_state = 2}, - [4322] = {.lex_state = 149, .external_lex_state = 5}, - [4323] = {.lex_state = 149, .external_lex_state = 5}, - [4324] = {.lex_state = 25, .external_lex_state = 2}, - [4325] = {.lex_state = 25, .external_lex_state = 2}, - [4326] = {.lex_state = 23, .external_lex_state = 7}, - [4327] = {.lex_state = 23, .external_lex_state = 7}, - [4328] = {.lex_state = 149, .external_lex_state = 2}, - [4329] = {.lex_state = 12, .external_lex_state = 2}, - [4330] = {.lex_state = 25, .external_lex_state = 2}, - [4331] = {.lex_state = 25, .external_lex_state = 2}, - [4332] = {.lex_state = 149, .external_lex_state = 5}, - [4333] = {.lex_state = 149, .external_lex_state = 5}, - [4334] = {.lex_state = 12, .external_lex_state = 2}, - [4335] = {.lex_state = 149, .external_lex_state = 5}, - [4336] = {.lex_state = 149, .external_lex_state = 5}, - [4337] = {.lex_state = 149, .external_lex_state = 5}, - [4338] = {.lex_state = 25, .external_lex_state = 2}, - [4339] = {.lex_state = 25, .external_lex_state = 2}, - [4340] = {.lex_state = 149, .external_lex_state = 5}, - [4341] = {.lex_state = 149, .external_lex_state = 5}, - [4342] = {.lex_state = 25, .external_lex_state = 2}, - [4343] = {.lex_state = 25, .external_lex_state = 2}, - [4344] = {.lex_state = 149, .external_lex_state = 5}, - [4345] = {.lex_state = 149, .external_lex_state = 5}, - [4346] = {.lex_state = 149, .external_lex_state = 2}, - [4347] = {.lex_state = 149, .external_lex_state = 5}, - [4348] = {.lex_state = 12, .external_lex_state = 2}, - [4349] = {.lex_state = 149, .external_lex_state = 5}, - [4350] = {.lex_state = 149, .external_lex_state = 5}, - [4351] = {.lex_state = 149, .external_lex_state = 5}, - [4352] = {.lex_state = 12, .external_lex_state = 2}, - [4353] = {.lex_state = 149, .external_lex_state = 2}, - [4354] = {.lex_state = 149, .external_lex_state = 2}, - [4355] = {.lex_state = 25, .external_lex_state = 2}, - [4356] = {.lex_state = 25, .external_lex_state = 2}, - [4357] = {.lex_state = 25, .external_lex_state = 2}, - [4358] = {.lex_state = 25, .external_lex_state = 2}, - [4359] = {.lex_state = 25, .external_lex_state = 2}, - [4360] = {.lex_state = 25, .external_lex_state = 2}, - [4361] = {.lex_state = 149, .external_lex_state = 5}, - [4362] = {.lex_state = 149, .external_lex_state = 2}, - [4363] = {.lex_state = 149, .external_lex_state = 5}, - [4364] = {.lex_state = 149, .external_lex_state = 2}, - [4365] = {.lex_state = 149, .external_lex_state = 5}, - [4366] = {.lex_state = 25, .external_lex_state = 2}, - [4367] = {.lex_state = 149, .external_lex_state = 2}, - [4368] = {.lex_state = 149, .external_lex_state = 2}, - [4369] = {.lex_state = 25, .external_lex_state = 2}, - [4370] = {.lex_state = 149, .external_lex_state = 5}, - [4371] = {.lex_state = 12, .external_lex_state = 2}, - [4372] = {.lex_state = 149, .external_lex_state = 2}, - [4373] = {.lex_state = 149, .external_lex_state = 5}, - [4374] = {.lex_state = 149, .external_lex_state = 5}, - [4375] = {.lex_state = 149, .external_lex_state = 5}, - [4376] = {.lex_state = 149, .external_lex_state = 5}, - [4377] = {.lex_state = 149, .external_lex_state = 2}, - [4378] = {.lex_state = 149, .external_lex_state = 5}, - [4379] = {.lex_state = 25, .external_lex_state = 2}, - [4380] = {.lex_state = 25, .external_lex_state = 2}, - [4381] = {.lex_state = 149, .external_lex_state = 5}, - [4382] = {.lex_state = 12, .external_lex_state = 2}, - [4383] = {.lex_state = 149, .external_lex_state = 5}, - [4384] = {.lex_state = 149, .external_lex_state = 5}, - [4385] = {.lex_state = 149, .external_lex_state = 5}, - [4386] = {.lex_state = 149, .external_lex_state = 5}, - [4387] = {.lex_state = 149, .external_lex_state = 5}, - [4388] = {.lex_state = 149, .external_lex_state = 5}, - [4389] = {.lex_state = 149, .external_lex_state = 5}, - [4390] = {.lex_state = 149, .external_lex_state = 2}, - [4391] = {.lex_state = 149, .external_lex_state = 5}, - [4392] = {.lex_state = 149, .external_lex_state = 5}, - [4393] = {.lex_state = 12, .external_lex_state = 2}, - [4394] = {.lex_state = 149, .external_lex_state = 2}, - [4395] = {.lex_state = 149, .external_lex_state = 2}, - [4396] = {.lex_state = 149, .external_lex_state = 2}, - [4397] = {.lex_state = 12, .external_lex_state = 2}, - [4398] = {.lex_state = 149, .external_lex_state = 5}, - [4399] = {.lex_state = 12, .external_lex_state = 2}, - [4400] = {.lex_state = 149, .external_lex_state = 5}, - [4401] = {.lex_state = 149, .external_lex_state = 5}, - [4402] = {.lex_state = 149, .external_lex_state = 2}, - [4403] = {.lex_state = 149, .external_lex_state = 5}, - [4404] = {.lex_state = 149, .external_lex_state = 5}, - [4405] = {.lex_state = 149, .external_lex_state = 5}, - [4406] = {.lex_state = 16, .external_lex_state = 2}, - [4407] = {.lex_state = 149, .external_lex_state = 5}, - [4408] = {.lex_state = 149, .external_lex_state = 5}, - [4409] = {.lex_state = 149, .external_lex_state = 5}, - [4410] = {.lex_state = 149, .external_lex_state = 5}, - [4411] = {.lex_state = 149, .external_lex_state = 5}, - [4412] = {.lex_state = 149, .external_lex_state = 5}, - [4413] = {.lex_state = 149, .external_lex_state = 5}, - [4414] = {.lex_state = 149, .external_lex_state = 5}, - [4415] = {.lex_state = 149, .external_lex_state = 5}, - [4416] = {.lex_state = 149, .external_lex_state = 5}, - [4417] = {.lex_state = 149, .external_lex_state = 5}, - [4418] = {.lex_state = 149, .external_lex_state = 5}, - [4419] = {.lex_state = 12, .external_lex_state = 2}, - [4420] = {.lex_state = 149, .external_lex_state = 5}, - [4421] = {.lex_state = 149, .external_lex_state = 5}, - [4422] = {.lex_state = 149, .external_lex_state = 5}, - [4423] = {.lex_state = 149, .external_lex_state = 5}, - [4424] = {.lex_state = 149, .external_lex_state = 5}, - [4425] = {.lex_state = 149, .external_lex_state = 5}, - [4426] = {.lex_state = 149, .external_lex_state = 2}, - [4427] = {.lex_state = 149, .external_lex_state = 5}, - [4428] = {.lex_state = 12, .external_lex_state = 2}, - [4429] = {.lex_state = 149, .external_lex_state = 5}, - [4430] = {.lex_state = 149, .external_lex_state = 5}, - [4431] = {.lex_state = 149, .external_lex_state = 5}, - [4432] = {.lex_state = 149, .external_lex_state = 5}, - [4433] = {.lex_state = 149, .external_lex_state = 5}, - [4434] = {.lex_state = 149, .external_lex_state = 5}, - [4435] = {.lex_state = 12, .external_lex_state = 2}, - [4436] = {.lex_state = 149, .external_lex_state = 5}, - [4437] = {.lex_state = 149, .external_lex_state = 5}, - [4438] = {.lex_state = 149, .external_lex_state = 5}, - [4439] = {.lex_state = 149, .external_lex_state = 5}, - [4440] = {.lex_state = 149, .external_lex_state = 5}, - [4441] = {.lex_state = 149, .external_lex_state = 5}, - [4442] = {.lex_state = 149, .external_lex_state = 5}, - [4443] = {.lex_state = 149, .external_lex_state = 5}, - [4444] = {.lex_state = 149, .external_lex_state = 5}, - [4445] = {.lex_state = 12, .external_lex_state = 2}, - [4446] = {.lex_state = 149, .external_lex_state = 5}, - [4447] = {.lex_state = 149, .external_lex_state = 5}, - [4448] = {.lex_state = 12, .external_lex_state = 2}, - [4449] = {.lex_state = 149, .external_lex_state = 5}, - [4450] = {.lex_state = 12, .external_lex_state = 2}, - [4451] = {.lex_state = 23, .external_lex_state = 9}, - [4452] = {.lex_state = 12, .external_lex_state = 2}, - [4453] = {.lex_state = 149, .external_lex_state = 5}, - [4454] = {.lex_state = 149, .external_lex_state = 6}, - [4455] = {.lex_state = 149, .external_lex_state = 5}, - [4456] = {.lex_state = 149, .external_lex_state = 5}, - [4457] = {.lex_state = 149, .external_lex_state = 5}, - [4458] = {.lex_state = 149, .external_lex_state = 5}, - [4459] = {.lex_state = 149, .external_lex_state = 5}, - [4460] = {.lex_state = 15, .external_lex_state = 2}, - [4461] = {.lex_state = 149, .external_lex_state = 5}, - [4462] = {.lex_state = 149, .external_lex_state = 5}, - [4463] = {.lex_state = 149, .external_lex_state = 5}, - [4464] = {.lex_state = 25, .external_lex_state = 2}, - [4465] = {.lex_state = 149, .external_lex_state = 5}, - [4466] = {.lex_state = 12, .external_lex_state = 2}, - [4467] = {.lex_state = 149, .external_lex_state = 5}, - [4468] = {.lex_state = 28, .external_lex_state = 10}, - [4469] = {.lex_state = 149, .external_lex_state = 2}, - [4470] = {.lex_state = 149, .external_lex_state = 5}, - [4471] = {.lex_state = 149, .external_lex_state = 5}, - [4472] = {.lex_state = 149, .external_lex_state = 2}, - [4473] = {.lex_state = 149, .external_lex_state = 2}, - [4474] = {.lex_state = 4, .external_lex_state = 2}, - [4475] = {.lex_state = 149, .external_lex_state = 2}, - [4476] = {.lex_state = 12, .external_lex_state = 2}, - [4477] = {.lex_state = 149, .external_lex_state = 5}, - [4478] = {.lex_state = 19, .external_lex_state = 10}, - [4479] = {.lex_state = 149, .external_lex_state = 2}, - [4480] = {.lex_state = 17, .external_lex_state = 2}, - [4481] = {.lex_state = 28, .external_lex_state = 10}, - [4482] = {.lex_state = 149, .external_lex_state = 2}, - [4483] = {.lex_state = 12, .external_lex_state = 2}, - [4484] = {.lex_state = 149, .external_lex_state = 2}, - [4485] = {.lex_state = 15, .external_lex_state = 2}, - [4486] = {.lex_state = 12, .external_lex_state = 2}, - [4487] = {.lex_state = 19, .external_lex_state = 10}, - [4488] = {.lex_state = 12, .external_lex_state = 2}, - [4489] = {.lex_state = 28, .external_lex_state = 10}, - [4490] = {.lex_state = 12, .external_lex_state = 2}, - [4491] = {.lex_state = 149, .external_lex_state = 5}, - [4492] = {.lex_state = 19, .external_lex_state = 10}, - [4493] = {.lex_state = 26, .external_lex_state = 2}, - [4494] = {.lex_state = 28, .external_lex_state = 10}, - [4495] = {.lex_state = 149, .external_lex_state = 5}, - [4496] = {.lex_state = 149, .external_lex_state = 2}, - [4497] = {.lex_state = 12, .external_lex_state = 2}, - [4498] = {.lex_state = 12, .external_lex_state = 2}, - [4499] = {.lex_state = 28, .external_lex_state = 10}, - [4500] = {.lex_state = 149, .external_lex_state = 2}, - [4501] = {.lex_state = 149, .external_lex_state = 2}, - [4502] = {.lex_state = 12, .external_lex_state = 2}, - [4503] = {.lex_state = 149, .external_lex_state = 2}, - [4504] = {.lex_state = 149, .external_lex_state = 2}, - [4505] = {.lex_state = 12, .external_lex_state = 2}, - [4506] = {.lex_state = 23, .external_lex_state = 8}, - [4507] = {.lex_state = 149, .external_lex_state = 2}, - [4508] = {.lex_state = 149, .external_lex_state = 2}, - [4509] = {.lex_state = 149, .external_lex_state = 5}, - [4510] = {.lex_state = 149, .external_lex_state = 2}, - [4511] = {.lex_state = 12, .external_lex_state = 2}, - [4512] = {.lex_state = 149, .external_lex_state = 2}, - [4513] = {.lex_state = 149, .external_lex_state = 2}, - [4514] = {.lex_state = 19, .external_lex_state = 10}, - [4515] = {.lex_state = 28, .external_lex_state = 10}, - [4516] = {.lex_state = 149, .external_lex_state = 2}, - [4517] = {.lex_state = 149, .external_lex_state = 2}, - [4518] = {.lex_state = 149, .external_lex_state = 5}, - [4519] = {.lex_state = 149, .external_lex_state = 5}, - [4520] = {.lex_state = 149, .external_lex_state = 2}, - [4521] = {.lex_state = 149, .external_lex_state = 5}, - [4522] = {.lex_state = 149, .external_lex_state = 2}, - [4523] = {.lex_state = 12, .external_lex_state = 2}, - [4524] = {.lex_state = 19, .external_lex_state = 10}, - [4525] = {.lex_state = 12, .external_lex_state = 2}, - [4526] = {.lex_state = 12, .external_lex_state = 2}, - [4527] = {.lex_state = 149, .external_lex_state = 2}, - [4528] = {.lex_state = 149, .external_lex_state = 2}, - [4529] = {.lex_state = 28, .external_lex_state = 10}, - [4530] = {.lex_state = 149, .external_lex_state = 2}, - [4531] = {.lex_state = 149, .external_lex_state = 2}, - [4532] = {.lex_state = 19, .external_lex_state = 10}, - [4533] = {.lex_state = 17, .external_lex_state = 2}, - [4534] = {.lex_state = 26, .external_lex_state = 2}, - [4535] = {.lex_state = 149, .external_lex_state = 2}, - [4536] = {.lex_state = 19, .external_lex_state = 10}, - [4537] = {.lex_state = 28, .external_lex_state = 10}, - [4538] = {.lex_state = 19, .external_lex_state = 10}, - [4539] = {.lex_state = 12, .external_lex_state = 2}, - [4540] = {.lex_state = 149, .external_lex_state = 2}, - [4541] = {.lex_state = 19, .external_lex_state = 10}, - [4542] = {.lex_state = 149, .external_lex_state = 2}, - [4543] = {.lex_state = 4, .external_lex_state = 2}, - [4544] = {.lex_state = 149, .external_lex_state = 5}, - [4545] = {.lex_state = 4, .external_lex_state = 2}, - [4546] = {.lex_state = 149, .external_lex_state = 2}, - [4547] = {.lex_state = 149, .external_lex_state = 2}, - [4548] = {.lex_state = 19, .external_lex_state = 10}, - [4549] = {.lex_state = 19, .external_lex_state = 10}, - [4550] = {.lex_state = 149, .external_lex_state = 2}, - [4551] = {.lex_state = 28, .external_lex_state = 10}, - [4552] = {.lex_state = 19, .external_lex_state = 10}, - [4553] = {.lex_state = 28, .external_lex_state = 10}, - [4554] = {.lex_state = 28, .external_lex_state = 10}, - [4555] = {.lex_state = 149, .external_lex_state = 2}, - [4556] = {.lex_state = 149, .external_lex_state = 2}, - [4557] = {.lex_state = 28, .external_lex_state = 10}, - [4558] = {.lex_state = 149, .external_lex_state = 5}, - [4559] = {.lex_state = 149, .external_lex_state = 5}, - [4560] = {.lex_state = 149, .external_lex_state = 2}, - [4561] = {.lex_state = 149, .external_lex_state = 2}, - [4562] = {.lex_state = 149, .external_lex_state = 2}, - [4563] = {.lex_state = 19, .external_lex_state = 10}, - [4564] = {.lex_state = 28, .external_lex_state = 10}, - [4565] = {.lex_state = 149, .external_lex_state = 5}, - [4566] = {.lex_state = 149, .external_lex_state = 6}, - [4567] = {.lex_state = 149, .external_lex_state = 2}, - [4568] = {.lex_state = 149, .external_lex_state = 2}, - [4569] = {.lex_state = 149, .external_lex_state = 2}, - [4570] = {.lex_state = 12, .external_lex_state = 2}, - [4571] = {.lex_state = 19, .external_lex_state = 10}, - [4572] = {.lex_state = 149, .external_lex_state = 2}, - [4573] = {.lex_state = 12, .external_lex_state = 2}, - [4574] = {.lex_state = 4, .external_lex_state = 2}, - [4575] = {.lex_state = 149, .external_lex_state = 2}, - [4576] = {.lex_state = 149, .external_lex_state = 2}, - [4577] = {.lex_state = 149, .external_lex_state = 2}, - [4578] = {.lex_state = 149, .external_lex_state = 2}, - [4579] = {.lex_state = 15, .external_lex_state = 2}, - [4580] = {.lex_state = 149, .external_lex_state = 5}, - [4581] = {.lex_state = 12, .external_lex_state = 2}, - [4582] = {.lex_state = 149, .external_lex_state = 2}, - [4583] = {.lex_state = 149, .external_lex_state = 2}, - [4584] = {.lex_state = 19, .external_lex_state = 10}, - [4585] = {.lex_state = 149, .external_lex_state = 2}, - [4586] = {.lex_state = 28, .external_lex_state = 10}, - [4587] = {.lex_state = 149, .external_lex_state = 2}, - [4588] = {.lex_state = 12, .external_lex_state = 2}, - [4589] = {.lex_state = 149, .external_lex_state = 2}, - [4590] = {.lex_state = 149, .external_lex_state = 2}, - [4591] = {.lex_state = 149, .external_lex_state = 2}, - [4592] = {.lex_state = 149, .external_lex_state = 5}, - [4593] = {.lex_state = 149, .external_lex_state = 2}, - [4594] = {.lex_state = 12, .external_lex_state = 2}, - [4595] = {.lex_state = 12, .external_lex_state = 2}, - [4596] = {.lex_state = 23, .external_lex_state = 8}, - [4597] = {.lex_state = 12, .external_lex_state = 2}, - [4598] = {.lex_state = 12, .external_lex_state = 2}, - [4599] = {.lex_state = 149, .external_lex_state = 2}, - [4600] = {.lex_state = 28, .external_lex_state = 10}, - [4601] = {.lex_state = 12, .external_lex_state = 2}, - [4602] = {.lex_state = 149, .external_lex_state = 5}, - [4603] = {.lex_state = 149, .external_lex_state = 2}, - [4604] = {.lex_state = 149, .external_lex_state = 2}, - [4605] = {.lex_state = 17, .external_lex_state = 2}, - [4606] = {.lex_state = 26, .external_lex_state = 2}, - [4607] = {.lex_state = 149, .external_lex_state = 2}, - [4608] = {.lex_state = 149, .external_lex_state = 5}, - [4609] = {.lex_state = 149, .external_lex_state = 2}, - [4610] = {.lex_state = 149, .external_lex_state = 2}, - [4611] = {.lex_state = 4, .external_lex_state = 2}, - [4612] = {.lex_state = 149, .external_lex_state = 5}, - [4613] = {.lex_state = 4, .external_lex_state = 2}, - [4614] = {.lex_state = 149, .external_lex_state = 5}, - [4615] = {.lex_state = 149, .external_lex_state = 2}, - [4616] = {.lex_state = 149, .external_lex_state = 2}, - [4617] = {.lex_state = 149, .external_lex_state = 2}, - [4618] = {.lex_state = 149, .external_lex_state = 2}, - [4619] = {.lex_state = 149, .external_lex_state = 2}, - [4620] = {.lex_state = 149, .external_lex_state = 5}, - [4621] = {.lex_state = 149, .external_lex_state = 2}, - [4622] = {.lex_state = 149, .external_lex_state = 5}, - [4623] = {.lex_state = 149, .external_lex_state = 2}, - [4624] = {.lex_state = 149, .external_lex_state = 2}, - [4625] = {.lex_state = 149, .external_lex_state = 2}, - [4626] = {.lex_state = 149, .external_lex_state = 5}, - [4627] = {.lex_state = 149, .external_lex_state = 5}, - [4628] = {.lex_state = 149, .external_lex_state = 5}, - [4629] = {.lex_state = 4, .external_lex_state = 2}, - [4630] = {.lex_state = 149, .external_lex_state = 5}, - [4631] = {.lex_state = 149, .external_lex_state = 5}, - [4632] = {.lex_state = 149, .external_lex_state = 5}, - [4633] = {.lex_state = 149, .external_lex_state = 2}, - [4634] = {.lex_state = 149, .external_lex_state = 5}, - [4635] = {.lex_state = 149, .external_lex_state = 2}, - [4636] = {.lex_state = 149, .external_lex_state = 2}, - [4637] = {.lex_state = 149, .external_lex_state = 2}, - [4638] = {.lex_state = 149, .external_lex_state = 5}, - [4639] = {.lex_state = 149, .external_lex_state = 5}, - [4640] = {.lex_state = 149, .external_lex_state = 5}, - [4641] = {.lex_state = 149, .external_lex_state = 2}, - [4642] = {.lex_state = 149, .external_lex_state = 5}, - [4643] = {.lex_state = 149, .external_lex_state = 5}, - [4644] = {.lex_state = 149, .external_lex_state = 5}, - [4645] = {.lex_state = 149, .external_lex_state = 2}, - [4646] = {.lex_state = 149, .external_lex_state = 2}, - [4647] = {.lex_state = 149, .external_lex_state = 2}, - [4648] = {.lex_state = 149, .external_lex_state = 2}, - [4649] = {.lex_state = 149, .external_lex_state = 5}, - [4650] = {.lex_state = 149, .external_lex_state = 2}, - [4651] = {.lex_state = 1, .external_lex_state = 2}, - [4652] = {.lex_state = 149, .external_lex_state = 2}, - [4653] = {.lex_state = 149, .external_lex_state = 5}, - [4654] = {.lex_state = 149, .external_lex_state = 5}, - [4655] = {.lex_state = 149, .external_lex_state = 5}, - [4656] = {.lex_state = 149, .external_lex_state = 2}, - [4657] = {.lex_state = 149, .external_lex_state = 5}, - [4658] = {.lex_state = 4, .external_lex_state = 2}, - [4659] = {.lex_state = 149, .external_lex_state = 5}, - [4660] = {.lex_state = 149, .external_lex_state = 5}, - [4661] = {.lex_state = 149, .external_lex_state = 5}, - [4662] = {.lex_state = 149, .external_lex_state = 2}, - [4663] = {.lex_state = 149, .external_lex_state = 2}, - [4664] = {.lex_state = 149, .external_lex_state = 5}, - [4665] = {.lex_state = 149, .external_lex_state = 5}, - [4666] = {.lex_state = 149, .external_lex_state = 5}, - [4667] = {.lex_state = 149, .external_lex_state = 5}, - [4668] = {.lex_state = 149, .external_lex_state = 2}, - [4669] = {.lex_state = 149, .external_lex_state = 5}, - [4670] = {.lex_state = 149, .external_lex_state = 2}, - [4671] = {.lex_state = 149, .external_lex_state = 2}, - [4672] = {.lex_state = 149, .external_lex_state = 5}, - [4673] = {.lex_state = 149, .external_lex_state = 2}, - [4674] = {.lex_state = 149, .external_lex_state = 5}, - [4675] = {.lex_state = 149, .external_lex_state = 5}, - [4676] = {.lex_state = 149, .external_lex_state = 5}, - [4677] = {.lex_state = 149, .external_lex_state = 2}, - [4678] = {.lex_state = 149, .external_lex_state = 2}, - [4679] = {.lex_state = 149, .external_lex_state = 2}, - [4680] = {.lex_state = 149, .external_lex_state = 2}, - [4681] = {.lex_state = 149, .external_lex_state = 2}, - [4682] = {.lex_state = 149, .external_lex_state = 2}, - [4683] = {.lex_state = 149, .external_lex_state = 5}, - [4684] = {.lex_state = 149, .external_lex_state = 5}, - [4685] = {.lex_state = 149, .external_lex_state = 2}, - [4686] = {.lex_state = 149, .external_lex_state = 2}, - [4687] = {.lex_state = 149, .external_lex_state = 2}, - [4688] = {.lex_state = 149, .external_lex_state = 2}, - [4689] = {.lex_state = 149, .external_lex_state = 2}, - [4690] = {.lex_state = 149, .external_lex_state = 2}, - [4691] = {.lex_state = 149, .external_lex_state = 5}, - [4692] = {.lex_state = 149, .external_lex_state = 2}, - [4693] = {.lex_state = 149, .external_lex_state = 2}, - [4694] = {.lex_state = 149, .external_lex_state = 5}, - [4695] = {.lex_state = 149, .external_lex_state = 2}, - [4696] = {.lex_state = 149, .external_lex_state = 2}, - [4697] = {.lex_state = 149, .external_lex_state = 5}, - [4698] = {.lex_state = 149, .external_lex_state = 5}, - [4699] = {.lex_state = 149, .external_lex_state = 2}, - [4700] = {.lex_state = 149, .external_lex_state = 2}, - [4701] = {.lex_state = 149, .external_lex_state = 5}, - [4702] = {.lex_state = 149, .external_lex_state = 5}, - [4703] = {.lex_state = 149, .external_lex_state = 5}, - [4704] = {.lex_state = 149, .external_lex_state = 5}, - [4705] = {.lex_state = 149, .external_lex_state = 2}, - [4706] = {.lex_state = 149, .external_lex_state = 2}, - [4707] = {.lex_state = 149, .external_lex_state = 5}, - [4708] = {.lex_state = 149, .external_lex_state = 5}, - [4709] = {.lex_state = 149, .external_lex_state = 5}, - [4710] = {.lex_state = 149, .external_lex_state = 5}, - [4711] = {.lex_state = 149, .external_lex_state = 5}, - [4712] = {.lex_state = 149, .external_lex_state = 5}, - [4713] = {.lex_state = 149, .external_lex_state = 2}, - [4714] = {.lex_state = 149, .external_lex_state = 5}, - [4715] = {.lex_state = 149, .external_lex_state = 2}, - [4716] = {.lex_state = 149, .external_lex_state = 2}, - [4717] = {.lex_state = 149, .external_lex_state = 5}, - [4718] = {.lex_state = 4, .external_lex_state = 2}, - [4719] = {.lex_state = 149, .external_lex_state = 5}, - [4720] = {.lex_state = 149, .external_lex_state = 5}, - [4721] = {.lex_state = 149, .external_lex_state = 2}, - [4722] = {.lex_state = 149, .external_lex_state = 5}, - [4723] = {.lex_state = 149, .external_lex_state = 2}, - [4724] = {.lex_state = 149, .external_lex_state = 5}, - [4725] = {.lex_state = 149, .external_lex_state = 5}, - [4726] = {.lex_state = 149, .external_lex_state = 5}, - [4727] = {.lex_state = 149, .external_lex_state = 5}, - [4728] = {.lex_state = 149, .external_lex_state = 5}, - [4729] = {.lex_state = 149, .external_lex_state = 5}, - [4730] = {.lex_state = 149, .external_lex_state = 2}, - [4731] = {.lex_state = 149, .external_lex_state = 5}, - [4732] = {.lex_state = 149, .external_lex_state = 2}, - [4733] = {.lex_state = 149, .external_lex_state = 5}, - [4734] = {.lex_state = 149, .external_lex_state = 5}, - [4735] = {.lex_state = 149, .external_lex_state = 5}, - [4736] = {.lex_state = 149, .external_lex_state = 2}, - [4737] = {.lex_state = 149, .external_lex_state = 2}, - [4738] = {.lex_state = 149, .external_lex_state = 5}, - [4739] = {.lex_state = 149, .external_lex_state = 5}, - [4740] = {.lex_state = 149, .external_lex_state = 5}, - [4741] = {.lex_state = 149, .external_lex_state = 5}, - [4742] = {.lex_state = 149, .external_lex_state = 2}, - [4743] = {.lex_state = 149, .external_lex_state = 5}, - [4744] = {.lex_state = 149, .external_lex_state = 5}, - [4745] = {.lex_state = 149, .external_lex_state = 5}, - [4746] = {.lex_state = 149, .external_lex_state = 5}, - [4747] = {.lex_state = 149, .external_lex_state = 2}, - [4748] = {.lex_state = 149, .external_lex_state = 5}, - [4749] = {.lex_state = 149, .external_lex_state = 2}, - [4750] = {.lex_state = 149, .external_lex_state = 2}, - [4751] = {.lex_state = 149, .external_lex_state = 5}, - [4752] = {.lex_state = 149, .external_lex_state = 5}, - [4753] = {.lex_state = 149, .external_lex_state = 5}, - [4754] = {.lex_state = 149, .external_lex_state = 5}, - [4755] = {.lex_state = 149, .external_lex_state = 5}, - [4756] = {.lex_state = 149, .external_lex_state = 2}, - [4757] = {.lex_state = 149, .external_lex_state = 5}, - [4758] = {.lex_state = 149, .external_lex_state = 5}, - [4759] = {.lex_state = 149, .external_lex_state = 5}, - [4760] = {.lex_state = 149, .external_lex_state = 2}, - [4761] = {.lex_state = 149, .external_lex_state = 5}, - [4762] = {.lex_state = 149, .external_lex_state = 2}, - [4763] = {.lex_state = 149, .external_lex_state = 5}, - [4764] = {.lex_state = 149, .external_lex_state = 2}, - [4765] = {.lex_state = 149, .external_lex_state = 2}, - [4766] = {.lex_state = 149, .external_lex_state = 5}, - [4767] = {.lex_state = 149, .external_lex_state = 5}, - [4768] = {.lex_state = 149, .external_lex_state = 5}, - [4769] = {.lex_state = 149, .external_lex_state = 5}, - [4770] = {.lex_state = 149, .external_lex_state = 5}, - [4771] = {.lex_state = 149, .external_lex_state = 5}, - [4772] = {.lex_state = 149, .external_lex_state = 5}, - [4773] = {.lex_state = 149, .external_lex_state = 5}, - [4774] = {.lex_state = 149, .external_lex_state = 5}, - [4775] = {.lex_state = 149, .external_lex_state = 5}, - [4776] = {.lex_state = 149, .external_lex_state = 5}, - [4777] = {.lex_state = 149, .external_lex_state = 2}, - [4778] = {.lex_state = 149, .external_lex_state = 5}, - [4779] = {.lex_state = 149, .external_lex_state = 5}, - [4780] = {.lex_state = 149, .external_lex_state = 5}, - [4781] = {.lex_state = 149, .external_lex_state = 5}, - [4782] = {.lex_state = 149, .external_lex_state = 5}, - [4783] = {.lex_state = 149, .external_lex_state = 5}, - [4784] = {.lex_state = 149, .external_lex_state = 5}, - [4785] = {.lex_state = 149, .external_lex_state = 5}, - [4786] = {.lex_state = 149, .external_lex_state = 5}, - [4787] = {.lex_state = 149, .external_lex_state = 5}, - [4788] = {.lex_state = 149, .external_lex_state = 5}, - [4789] = {.lex_state = 149, .external_lex_state = 5}, - [4790] = {.lex_state = 149, .external_lex_state = 5}, - [4791] = {.lex_state = 4, .external_lex_state = 2}, - [4792] = {.lex_state = 149, .external_lex_state = 5}, - [4793] = {.lex_state = 149, .external_lex_state = 5}, - [4794] = {.lex_state = 149, .external_lex_state = 2}, - [4795] = {.lex_state = 149, .external_lex_state = 5}, - [4796] = {.lex_state = 149, .external_lex_state = 5}, - [4797] = {.lex_state = 149, .external_lex_state = 2}, - [4798] = {.lex_state = 149, .external_lex_state = 5}, - [4799] = {.lex_state = 149, .external_lex_state = 5}, - [4800] = {.lex_state = 149, .external_lex_state = 5}, - [4801] = {.lex_state = 149, .external_lex_state = 2}, - [4802] = {.lex_state = 149, .external_lex_state = 2}, - [4803] = {.lex_state = 149, .external_lex_state = 2}, - [4804] = {.lex_state = 149, .external_lex_state = 5}, - [4805] = {.lex_state = 149, .external_lex_state = 5}, - [4806] = {.lex_state = 149, .external_lex_state = 5}, - [4807] = {.lex_state = 149, .external_lex_state = 5}, - [4808] = {.lex_state = 149, .external_lex_state = 5}, - [4809] = {.lex_state = 149, .external_lex_state = 5}, - [4810] = {.lex_state = 149, .external_lex_state = 5}, - [4811] = {.lex_state = 149, .external_lex_state = 5}, - [4812] = {.lex_state = 149, .external_lex_state = 5}, - [4813] = {.lex_state = 149, .external_lex_state = 5}, - [4814] = {.lex_state = 149, .external_lex_state = 5}, - [4815] = {.lex_state = 149, .external_lex_state = 5}, - [4816] = {.lex_state = 149, .external_lex_state = 2}, - [4817] = {.lex_state = 149, .external_lex_state = 5}, - [4818] = {.lex_state = 149, .external_lex_state = 5}, - [4819] = {.lex_state = 149, .external_lex_state = 5}, - [4820] = {.lex_state = 149, .external_lex_state = 5}, - [4821] = {.lex_state = 149, .external_lex_state = 5}, - [4822] = {.lex_state = 149, .external_lex_state = 5}, - [4823] = {.lex_state = 149, .external_lex_state = 5}, - [4824] = {.lex_state = 149, .external_lex_state = 5}, - [4825] = {.lex_state = 149, .external_lex_state = 5}, - [4826] = {.lex_state = 149, .external_lex_state = 5}, - [4827] = {.lex_state = 149, .external_lex_state = 2}, - [4828] = {.lex_state = 149, .external_lex_state = 5}, - [4829] = {.lex_state = 149, .external_lex_state = 2}, - [4830] = {.lex_state = 149, .external_lex_state = 2}, - [4831] = {.lex_state = 149, .external_lex_state = 2}, - [4832] = {.lex_state = 149, .external_lex_state = 5}, - [4833] = {.lex_state = 149, .external_lex_state = 5}, - [4834] = {.lex_state = 149, .external_lex_state = 2}, - [4835] = {.lex_state = 149, .external_lex_state = 5}, - [4836] = {.lex_state = 149, .external_lex_state = 5}, - [4837] = {.lex_state = 149, .external_lex_state = 5}, - [4838] = {.lex_state = 149, .external_lex_state = 2}, - [4839] = {.lex_state = 149, .external_lex_state = 5}, - [4840] = {.lex_state = 149, .external_lex_state = 5}, - [4841] = {.lex_state = 149, .external_lex_state = 2}, - [4842] = {.lex_state = 149, .external_lex_state = 5}, - [4843] = {.lex_state = 4, .external_lex_state = 2}, - [4844] = {.lex_state = 149, .external_lex_state = 2}, - [4845] = {.lex_state = 149, .external_lex_state = 5}, - [4846] = {.lex_state = 149, .external_lex_state = 5}, - [4847] = {.lex_state = 149, .external_lex_state = 5}, - [4848] = {.lex_state = 149, .external_lex_state = 5}, - [4849] = {.lex_state = 149, .external_lex_state = 5}, - [4850] = {.lex_state = 149, .external_lex_state = 5}, - [4851] = {.lex_state = 149, .external_lex_state = 5}, - [4852] = {.lex_state = 149, .external_lex_state = 5}, - [4853] = {.lex_state = 149, .external_lex_state = 5}, - [4854] = {.lex_state = 149, .external_lex_state = 2}, - [4855] = {.lex_state = 149, .external_lex_state = 5}, - [4856] = {.lex_state = 149, .external_lex_state = 2}, - [4857] = {.lex_state = 149, .external_lex_state = 5}, - [4858] = {.lex_state = 149, .external_lex_state = 5}, - [4859] = {.lex_state = 149, .external_lex_state = 5}, - [4860] = {.lex_state = 149, .external_lex_state = 5}, - [4861] = {.lex_state = 149, .external_lex_state = 5}, - [4862] = {.lex_state = 149, .external_lex_state = 5}, - [4863] = {.lex_state = 149, .external_lex_state = 5}, - [4864] = {.lex_state = 149, .external_lex_state = 5}, - [4865] = {.lex_state = 149, .external_lex_state = 5}, - [4866] = {.lex_state = 4, .external_lex_state = 2}, - [4867] = {.lex_state = 149, .external_lex_state = 5}, - [4868] = {.lex_state = 149, .external_lex_state = 2}, - [4869] = {.lex_state = 149, .external_lex_state = 5}, - [4870] = {.lex_state = 149, .external_lex_state = 2}, - [4871] = {.lex_state = 149, .external_lex_state = 5}, - [4872] = {.lex_state = 149, .external_lex_state = 2}, - [4873] = {.lex_state = 149, .external_lex_state = 5}, - [4874] = {.lex_state = 149, .external_lex_state = 5}, - [4875] = {.lex_state = 149, .external_lex_state = 2}, - [4876] = {.lex_state = 149, .external_lex_state = 2}, - [4877] = {.lex_state = 149, .external_lex_state = 5}, - [4878] = {.lex_state = 149, .external_lex_state = 5}, - [4879] = {.lex_state = 149, .external_lex_state = 2}, - [4880] = {.lex_state = 149, .external_lex_state = 5}, - [4881] = {.lex_state = 149, .external_lex_state = 5}, - [4882] = {.lex_state = 149, .external_lex_state = 5}, - [4883] = {.lex_state = 149, .external_lex_state = 5}, - [4884] = {.lex_state = 149, .external_lex_state = 5}, - [4885] = {.lex_state = 149, .external_lex_state = 5}, - [4886] = {.lex_state = 149, .external_lex_state = 5}, - [4887] = {.lex_state = 149, .external_lex_state = 5}, - [4888] = {.lex_state = 149, .external_lex_state = 5}, - [4889] = {.lex_state = 149, .external_lex_state = 5}, - [4890] = {.lex_state = 149, .external_lex_state = 5}, - [4891] = {.lex_state = 149, .external_lex_state = 5}, - [4892] = {.lex_state = 149, .external_lex_state = 5}, - [4893] = {.lex_state = 149, .external_lex_state = 5}, - [4894] = {.lex_state = 149, .external_lex_state = 5}, - [4895] = {.lex_state = 149, .external_lex_state = 2}, - [4896] = {.lex_state = 149, .external_lex_state = 5}, - [4897] = {.lex_state = 149, .external_lex_state = 2}, - [4898] = {.lex_state = 149, .external_lex_state = 2}, - [4899] = {.lex_state = 149, .external_lex_state = 2}, - [4900] = {.lex_state = 149, .external_lex_state = 2}, - [4901] = {.lex_state = 149, .external_lex_state = 5}, - [4902] = {.lex_state = 149, .external_lex_state = 2}, - [4903] = {.lex_state = 149, .external_lex_state = 2}, - [4904] = {.lex_state = 149, .external_lex_state = 2}, - [4905] = {.lex_state = 149, .external_lex_state = 2}, - [4906] = {.lex_state = 149, .external_lex_state = 2}, - [4907] = {.lex_state = 149, .external_lex_state = 2}, - [4908] = {.lex_state = 149, .external_lex_state = 5}, - [4909] = {.lex_state = 149, .external_lex_state = 2}, - [4910] = {.lex_state = 149, .external_lex_state = 5}, - [4911] = {.lex_state = 149, .external_lex_state = 5}, - [4912] = {.lex_state = 149, .external_lex_state = 2}, - [4913] = {.lex_state = 149, .external_lex_state = 5}, - [4914] = {.lex_state = 1, .external_lex_state = 2}, - [4915] = {.lex_state = 149, .external_lex_state = 5}, - [4916] = {.lex_state = 149, .external_lex_state = 5}, - [4917] = {.lex_state = 149, .external_lex_state = 5}, - [4918] = {.lex_state = 149, .external_lex_state = 5}, - [4919] = {.lex_state = 149, .external_lex_state = 5}, - [4920] = {.lex_state = 149, .external_lex_state = 5}, - [4921] = {.lex_state = 149, .external_lex_state = 5}, - [4922] = {.lex_state = 149, .external_lex_state = 2}, - [4923] = {.lex_state = 149, .external_lex_state = 5}, - [4924] = {.lex_state = 149, .external_lex_state = 5}, - [4925] = {.lex_state = 149, .external_lex_state = 2}, - [4926] = {.lex_state = 149, .external_lex_state = 5}, - [4927] = {.lex_state = 149, .external_lex_state = 5}, - [4928] = {.lex_state = 149, .external_lex_state = 5}, - [4929] = {.lex_state = 149, .external_lex_state = 2}, - [4930] = {.lex_state = 149, .external_lex_state = 2}, - [4931] = {.lex_state = 149, .external_lex_state = 5}, - [4932] = {.lex_state = 4, .external_lex_state = 2}, - [4933] = {.lex_state = 149, .external_lex_state = 2}, - [4934] = {.lex_state = 149, .external_lex_state = 2}, - [4935] = {.lex_state = 149, .external_lex_state = 2}, - [4936] = {.lex_state = 149, .external_lex_state = 5}, - [4937] = {.lex_state = 149, .external_lex_state = 5}, - [4938] = {.lex_state = 149, .external_lex_state = 2}, - [4939] = {.lex_state = 149, .external_lex_state = 5}, - [4940] = {.lex_state = 149, .external_lex_state = 2}, - [4941] = {.lex_state = 149, .external_lex_state = 5}, - [4942] = {.lex_state = 149, .external_lex_state = 2}, - [4943] = {.lex_state = 149, .external_lex_state = 5}, - [4944] = {.lex_state = 149, .external_lex_state = 5}, - [4945] = {.lex_state = 149, .external_lex_state = 5}, - [4946] = {.lex_state = 149, .external_lex_state = 5}, - [4947] = {.lex_state = 149, .external_lex_state = 5}, - [4948] = {.lex_state = 149, .external_lex_state = 5}, - [4949] = {.lex_state = 149, .external_lex_state = 5}, - [4950] = {.lex_state = 149, .external_lex_state = 5}, - [4951] = {.lex_state = 149, .external_lex_state = 5}, - [4952] = {.lex_state = 149, .external_lex_state = 5}, - [4953] = {.lex_state = 149, .external_lex_state = 5}, - [4954] = {.lex_state = 149, .external_lex_state = 5}, - [4955] = {.lex_state = 149, .external_lex_state = 5}, - [4956] = {.lex_state = 149, .external_lex_state = 5}, - [4957] = {.lex_state = 149, .external_lex_state = 2}, - [4958] = {.lex_state = 149, .external_lex_state = 2}, - [4959] = {.lex_state = 149, .external_lex_state = 5}, - [4960] = {.lex_state = 149, .external_lex_state = 5}, - [4961] = {.lex_state = 149, .external_lex_state = 5}, - [4962] = {.lex_state = 149, .external_lex_state = 5}, - [4963] = {.lex_state = 149, .external_lex_state = 5}, - [4964] = {.lex_state = 149, .external_lex_state = 5}, - [4965] = {.lex_state = 149, .external_lex_state = 5}, - [4966] = {.lex_state = 149, .external_lex_state = 5}, - [4967] = {.lex_state = 149, .external_lex_state = 5}, - [4968] = {.lex_state = 149, .external_lex_state = 5}, - [4969] = {.lex_state = 149, .external_lex_state = 5}, - [4970] = {.lex_state = 149, .external_lex_state = 5}, - [4971] = {.lex_state = 149, .external_lex_state = 5}, - [4972] = {.lex_state = 149, .external_lex_state = 5}, - [4973] = {.lex_state = 149, .external_lex_state = 5}, - [4974] = {.lex_state = 149, .external_lex_state = 5}, - [4975] = {.lex_state = 149, .external_lex_state = 5}, - [4976] = {.lex_state = 149, .external_lex_state = 5}, - [4977] = {.lex_state = 149, .external_lex_state = 2}, - [4978] = {.lex_state = 149, .external_lex_state = 5}, - [4979] = {.lex_state = 149, .external_lex_state = 5}, - [4980] = {.lex_state = 149, .external_lex_state = 2}, - [4981] = {.lex_state = 149, .external_lex_state = 2}, - [4982] = {.lex_state = 149, .external_lex_state = 5}, - [4983] = {.lex_state = 149, .external_lex_state = 2}, - [4984] = {.lex_state = 149, .external_lex_state = 2}, - [4985] = {.lex_state = 149, .external_lex_state = 5}, - [4986] = {.lex_state = 149, .external_lex_state = 2}, - [4987] = {.lex_state = 149, .external_lex_state = 5}, - [4988] = {.lex_state = 149, .external_lex_state = 5}, - [4989] = {.lex_state = 149, .external_lex_state = 5}, - [4990] = {.lex_state = 149, .external_lex_state = 5}, - [4991] = {.lex_state = 149, .external_lex_state = 5}, - [4992] = {.lex_state = 149, .external_lex_state = 5}, - [4993] = {.lex_state = 149, .external_lex_state = 5}, - [4994] = {.lex_state = 149, .external_lex_state = 5}, - [4995] = {.lex_state = 149, .external_lex_state = 5}, - [4996] = {.lex_state = 149, .external_lex_state = 5}, - [4997] = {.lex_state = 149, .external_lex_state = 5}, - [4998] = {.lex_state = 149, .external_lex_state = 5}, - [4999] = {.lex_state = 149, .external_lex_state = 5}, - [5000] = {.lex_state = 149, .external_lex_state = 5}, - [5001] = {.lex_state = 149, .external_lex_state = 2}, - [5002] = {.lex_state = 149, .external_lex_state = 2}, - [5003] = {.lex_state = 149, .external_lex_state = 5}, - [5004] = {.lex_state = 149, .external_lex_state = 5}, - [5005] = {.lex_state = 149, .external_lex_state = 2}, - [5006] = {.lex_state = 149, .external_lex_state = 2}, - [5007] = {.lex_state = 149, .external_lex_state = 5}, - [5008] = {.lex_state = 149, .external_lex_state = 5}, - [5009] = {.lex_state = 149, .external_lex_state = 2}, - [5010] = {.lex_state = 149, .external_lex_state = 5}, - [5011] = {.lex_state = 149, .external_lex_state = 5}, - [5012] = {.lex_state = 149, .external_lex_state = 5}, - [5013] = {.lex_state = 149, .external_lex_state = 2}, - [5014] = {.lex_state = 149, .external_lex_state = 5}, - [5015] = {.lex_state = 149, .external_lex_state = 5}, - [5016] = {.lex_state = 149, .external_lex_state = 5}, - [5017] = {.lex_state = 149, .external_lex_state = 5}, - [5018] = {.lex_state = 149, .external_lex_state = 5}, - [5019] = {.lex_state = 149, .external_lex_state = 2}, - [5020] = {.lex_state = 149, .external_lex_state = 2}, - [5021] = {.lex_state = 149, .external_lex_state = 5}, - [5022] = {.lex_state = 149, .external_lex_state = 5}, - [5023] = {.lex_state = 149, .external_lex_state = 5}, - [5024] = {.lex_state = 149, .external_lex_state = 5}, - [5025] = {.lex_state = 149, .external_lex_state = 5}, - [5026] = {.lex_state = 149, .external_lex_state = 5}, - [5027] = {.lex_state = 149, .external_lex_state = 5}, - [5028] = {.lex_state = 149, .external_lex_state = 5}, - [5029] = {.lex_state = 149, .external_lex_state = 5}, - [5030] = {.lex_state = 149, .external_lex_state = 5}, - [5031] = {.lex_state = 149, .external_lex_state = 2}, - [5032] = {.lex_state = 149, .external_lex_state = 5}, - [5033] = {.lex_state = 149, .external_lex_state = 5}, - [5034] = {.lex_state = 149, .external_lex_state = 5}, - [5035] = {.lex_state = 149, .external_lex_state = 5}, - [5036] = {.lex_state = 149, .external_lex_state = 5}, - [5037] = {.lex_state = 149, .external_lex_state = 2}, - [5038] = {.lex_state = 149, .external_lex_state = 5}, - [5039] = {.lex_state = 149, .external_lex_state = 5}, - [5040] = {.lex_state = 149, .external_lex_state = 5}, - [5041] = {.lex_state = 12, .external_lex_state = 2}, - [5042] = {.lex_state = 149, .external_lex_state = 5}, - [5043] = {.lex_state = 149, .external_lex_state = 5}, - [5044] = {.lex_state = 149, .external_lex_state = 5}, - [5045] = {.lex_state = 149, .external_lex_state = 2}, - [5046] = {.lex_state = 4, .external_lex_state = 2}, - [5047] = {.lex_state = 149, .external_lex_state = 2}, - [5048] = {.lex_state = 149, .external_lex_state = 2}, - [5049] = {.lex_state = 149, .external_lex_state = 5}, - [5050] = {.lex_state = 149, .external_lex_state = 5}, - [5051] = {.lex_state = 149, .external_lex_state = 5}, - [5052] = {.lex_state = 149, .external_lex_state = 5}, - [5053] = {.lex_state = 149, .external_lex_state = 5}, - [5054] = {.lex_state = 149, .external_lex_state = 5}, - [5055] = {.lex_state = 149, .external_lex_state = 5}, - [5056] = {.lex_state = 149, .external_lex_state = 5}, - [5057] = {.lex_state = 149, .external_lex_state = 5}, - [5058] = {.lex_state = 149, .external_lex_state = 5}, - [5059] = {.lex_state = 149, .external_lex_state = 5}, - [5060] = {.lex_state = 149, .external_lex_state = 5}, - [5061] = {.lex_state = 149, .external_lex_state = 5}, - [5062] = {.lex_state = 149, .external_lex_state = 5}, - [5063] = {.lex_state = 149, .external_lex_state = 5}, - [5064] = {.lex_state = 149, .external_lex_state = 5}, - [5065] = {.lex_state = 149, .external_lex_state = 2}, - [5066] = {.lex_state = 149, .external_lex_state = 5}, - [5067] = {.lex_state = 149, .external_lex_state = 5}, - [5068] = {.lex_state = 149, .external_lex_state = 5}, - [5069] = {.lex_state = 149, .external_lex_state = 5}, - [5070] = {.lex_state = 149, .external_lex_state = 2}, - [5071] = {.lex_state = 149, .external_lex_state = 5}, - [5072] = {.lex_state = 4, .external_lex_state = 2}, - [5073] = {.lex_state = 149, .external_lex_state = 5}, - [5074] = {.lex_state = 149, .external_lex_state = 5}, - [5075] = {.lex_state = 149, .external_lex_state = 5}, - [5076] = {.lex_state = 4, .external_lex_state = 2}, - [5077] = {.lex_state = 149, .external_lex_state = 5}, - [5078] = {.lex_state = 149, .external_lex_state = 5}, - [5079] = {.lex_state = 149, .external_lex_state = 5}, - [5080] = {.lex_state = 149, .external_lex_state = 5}, - [5081] = {.lex_state = 149, .external_lex_state = 5}, - [5082] = {.lex_state = 149, .external_lex_state = 5}, - [5083] = {.lex_state = 149, .external_lex_state = 5}, - [5084] = {.lex_state = 149, .external_lex_state = 5}, - [5085] = {.lex_state = 149, .external_lex_state = 5}, - [5086] = {.lex_state = 149, .external_lex_state = 5}, - [5087] = {.lex_state = 149, .external_lex_state = 5}, - [5088] = {.lex_state = 149, .external_lex_state = 2}, - [5089] = {.lex_state = 149, .external_lex_state = 5}, - [5090] = {.lex_state = 149, .external_lex_state = 5}, - [5091] = {.lex_state = 149, .external_lex_state = 2}, - [5092] = {.lex_state = 149, .external_lex_state = 5}, - [5093] = {.lex_state = 149, .external_lex_state = 2}, - [5094] = {.lex_state = 149, .external_lex_state = 5}, - [5095] = {.lex_state = 149, .external_lex_state = 5}, - [5096] = {.lex_state = 149, .external_lex_state = 5}, - [5097] = {.lex_state = 149, .external_lex_state = 5}, - [5098] = {.lex_state = 149, .external_lex_state = 5}, - [5099] = {.lex_state = 149, .external_lex_state = 5}, - [5100] = {.lex_state = 149, .external_lex_state = 5}, - [5101] = {.lex_state = 149, .external_lex_state = 5}, - [5102] = {.lex_state = 149, .external_lex_state = 5}, - [5103] = {.lex_state = 149, .external_lex_state = 5}, - [5104] = {.lex_state = 149, .external_lex_state = 5}, - [5105] = {.lex_state = 149, .external_lex_state = 2}, - [5106] = {.lex_state = 149, .external_lex_state = 5}, - [5107] = {.lex_state = 149, .external_lex_state = 5}, - [5108] = {.lex_state = 149, .external_lex_state = 5}, - [5109] = {.lex_state = 149, .external_lex_state = 5}, - [5110] = {.lex_state = 149, .external_lex_state = 5}, - [5111] = {.lex_state = 149, .external_lex_state = 5}, - [5112] = {.lex_state = 149, .external_lex_state = 5}, - [5113] = {.lex_state = 149, .external_lex_state = 2}, - [5114] = {.lex_state = 149, .external_lex_state = 5}, - [5115] = {.lex_state = 149, .external_lex_state = 5}, - [5116] = {.lex_state = 149, .external_lex_state = 5}, - [5117] = {.lex_state = 149, .external_lex_state = 5}, - [5118] = {.lex_state = 149, .external_lex_state = 5}, - [5119] = {.lex_state = 149, .external_lex_state = 2}, - [5120] = {.lex_state = 149, .external_lex_state = 5}, - [5121] = {.lex_state = 149, .external_lex_state = 5}, - [5122] = {.lex_state = 149, .external_lex_state = 5}, - [5123] = {.lex_state = 149, .external_lex_state = 5}, - [5124] = {.lex_state = 149, .external_lex_state = 5}, - [5125] = {.lex_state = 149, .external_lex_state = 5}, - [5126] = {.lex_state = 149, .external_lex_state = 5}, - [5127] = {.lex_state = 149, .external_lex_state = 5}, - [5128] = {.lex_state = 149, .external_lex_state = 5}, - [5129] = {.lex_state = 149, .external_lex_state = 5}, - [5130] = {.lex_state = 149, .external_lex_state = 5}, - [5131] = {.lex_state = 149, .external_lex_state = 5}, - [5132] = {.lex_state = 149, .external_lex_state = 5}, - [5133] = {.lex_state = 149, .external_lex_state = 5}, - [5134] = {.lex_state = 149, .external_lex_state = 5}, - [5135] = {.lex_state = 149, .external_lex_state = 5}, - [5136] = {.lex_state = 149, .external_lex_state = 5}, - [5137] = {.lex_state = 149, .external_lex_state = 5}, - [5138] = {.lex_state = 149, .external_lex_state = 5}, - [5139] = {.lex_state = 149, .external_lex_state = 5}, - [5140] = {.lex_state = 149, .external_lex_state = 5}, - [5141] = {.lex_state = 149, .external_lex_state = 5}, - [5142] = {.lex_state = 149, .external_lex_state = 5}, - [5143] = {.lex_state = 149, .external_lex_state = 5}, - [5144] = {.lex_state = 149, .external_lex_state = 5}, - [5145] = {.lex_state = 149, .external_lex_state = 5}, - [5146] = {.lex_state = 149, .external_lex_state = 5}, - [5147] = {.lex_state = 149, .external_lex_state = 5}, - [5148] = {.lex_state = 149, .external_lex_state = 2}, - [5149] = {.lex_state = 149, .external_lex_state = 2}, - [5150] = {.lex_state = 149, .external_lex_state = 2}, - [5151] = {.lex_state = 149, .external_lex_state = 5}, - [5152] = {.lex_state = 149, .external_lex_state = 5}, - [5153] = {.lex_state = 149, .external_lex_state = 2}, - [5154] = {.lex_state = 149, .external_lex_state = 5}, - [5155] = {.lex_state = 149, .external_lex_state = 2}, - [5156] = {.lex_state = 12, .external_lex_state = 2}, - [5157] = {.lex_state = 149, .external_lex_state = 2}, - [5158] = {.lex_state = 149, .external_lex_state = 2}, - [5159] = {.lex_state = 149, .external_lex_state = 5}, - [5160] = {.lex_state = 149, .external_lex_state = 2}, - [5161] = {.lex_state = 149, .external_lex_state = 5}, - [5162] = {.lex_state = 1, .external_lex_state = 2}, - [5163] = {.lex_state = 149, .external_lex_state = 2}, - [5164] = {.lex_state = 4, .external_lex_state = 2}, - [5165] = {.lex_state = 149, .external_lex_state = 5}, - [5166] = {.lex_state = 4, .external_lex_state = 2}, - [5167] = {.lex_state = 149, .external_lex_state = 5}, - [5168] = {.lex_state = 1, .external_lex_state = 2}, - [5169] = {.lex_state = 149, .external_lex_state = 2}, - [5170] = {.lex_state = 149, .external_lex_state = 5}, - [5171] = {.lex_state = 149, .external_lex_state = 2}, - [5172] = {.lex_state = 149, .external_lex_state = 5}, - [5173] = {.lex_state = 149, .external_lex_state = 2}, - [5174] = {.lex_state = 149, .external_lex_state = 5}, - [5175] = {.lex_state = 149, .external_lex_state = 2}, - [5176] = {.lex_state = 149, .external_lex_state = 5}, - [5177] = {.lex_state = 149, .external_lex_state = 5}, - [5178] = {.lex_state = 149, .external_lex_state = 5}, - [5179] = {.lex_state = 149, .external_lex_state = 2}, - [5180] = {.lex_state = 149, .external_lex_state = 2}, - [5181] = {.lex_state = 149, .external_lex_state = 2}, - [5182] = {.lex_state = 149, .external_lex_state = 5}, - [5183] = {.lex_state = 149, .external_lex_state = 2}, - [5184] = {.lex_state = 149, .external_lex_state = 2}, - [5185] = {.lex_state = 149, .external_lex_state = 5}, - [5186] = {.lex_state = 149, .external_lex_state = 5}, - [5187] = {.lex_state = 149, .external_lex_state = 2}, - [5188] = {.lex_state = 149, .external_lex_state = 2}, - [5189] = {.lex_state = 149, .external_lex_state = 2}, - [5190] = {.lex_state = 149, .external_lex_state = 2}, - [5191] = {.lex_state = 149, .external_lex_state = 2}, - [5192] = {.lex_state = 149, .external_lex_state = 5}, - [5193] = {.lex_state = 149, .external_lex_state = 5}, - [5194] = {.lex_state = 149, .external_lex_state = 5}, - [5195] = {.lex_state = 149, .external_lex_state = 5}, - [5196] = {.lex_state = 149, .external_lex_state = 2}, - [5197] = {.lex_state = 149, .external_lex_state = 5}, - [5198] = {.lex_state = 12, .external_lex_state = 2}, - [5199] = {.lex_state = 149, .external_lex_state = 2}, - [5200] = {.lex_state = 149, .external_lex_state = 2}, - [5201] = {.lex_state = 1, .external_lex_state = 2}, - [5202] = {.lex_state = 149, .external_lex_state = 5}, - [5203] = {.lex_state = 149, .external_lex_state = 2}, - [5204] = {.lex_state = 149, .external_lex_state = 5}, - [5205] = {.lex_state = 149, .external_lex_state = 2}, - [5206] = {.lex_state = 149, .external_lex_state = 5}, - [5207] = {.lex_state = 149, .external_lex_state = 5}, - [5208] = {.lex_state = 149, .external_lex_state = 5}, - [5209] = {.lex_state = 149, .external_lex_state = 5}, - [5210] = {.lex_state = 149, .external_lex_state = 5}, - [5211] = {.lex_state = 149, .external_lex_state = 2}, - [5212] = {.lex_state = 149, .external_lex_state = 2}, - [5213] = {.lex_state = 149, .external_lex_state = 5}, - [5214] = {.lex_state = 149, .external_lex_state = 5}, - [5215] = {.lex_state = 149, .external_lex_state = 5}, - [5216] = {.lex_state = 149, .external_lex_state = 2}, - [5217] = {.lex_state = 149, .external_lex_state = 5}, - [5218] = {.lex_state = 23, .external_lex_state = 9}, - [5219] = {.lex_state = 149, .external_lex_state = 5}, - [5220] = {.lex_state = 149, .external_lex_state = 2}, - [5221] = {.lex_state = 149, .external_lex_state = 5}, - [5222] = {.lex_state = 149, .external_lex_state = 5}, - [5223] = {.lex_state = 149, .external_lex_state = 5}, - [5224] = {.lex_state = 149, .external_lex_state = 5}, - [5225] = {.lex_state = 149, .external_lex_state = 5}, - [5226] = {.lex_state = 149, .external_lex_state = 5}, - [5227] = {.lex_state = 149, .external_lex_state = 2}, - [5228] = {.lex_state = 149, .external_lex_state = 5}, - [5229] = {.lex_state = 149, .external_lex_state = 2}, - [5230] = {.lex_state = 149, .external_lex_state = 5}, - [5231] = {.lex_state = 149, .external_lex_state = 5}, - [5232] = {.lex_state = 149, .external_lex_state = 2}, - [5233] = {.lex_state = 149, .external_lex_state = 2}, - [5234] = {.lex_state = 149, .external_lex_state = 2}, - [5235] = {.lex_state = 149, .external_lex_state = 2}, - [5236] = {.lex_state = 149, .external_lex_state = 2}, - [5237] = {.lex_state = 149, .external_lex_state = 2}, - [5238] = {.lex_state = 149, .external_lex_state = 2}, - [5239] = {.lex_state = 149, .external_lex_state = 2}, - [5240] = {.lex_state = 149, .external_lex_state = 2}, - [5241] = {.lex_state = 149, .external_lex_state = 2}, - [5242] = {.lex_state = 149, .external_lex_state = 2}, - [5243] = {.lex_state = 149, .external_lex_state = 2}, - [5244] = {.lex_state = 149, .external_lex_state = 2}, - [5245] = {.lex_state = 149, .external_lex_state = 2}, - [5246] = {.lex_state = 149, .external_lex_state = 2}, - [5247] = {.lex_state = 149, .external_lex_state = 2}, - [5248] = {.lex_state = 149, .external_lex_state = 2}, - [5249] = {.lex_state = 149, .external_lex_state = 2}, - [5250] = {.lex_state = 149, .external_lex_state = 2}, - [5251] = {.lex_state = 149, .external_lex_state = 2}, - [5252] = {.lex_state = 149, .external_lex_state = 2}, - [5253] = {.lex_state = 149, .external_lex_state = 2}, - [5254] = {.lex_state = 149, .external_lex_state = 2}, - [5255] = {.lex_state = 149, .external_lex_state = 2}, - [5256] = {.lex_state = 149, .external_lex_state = 5}, - [5257] = {.lex_state = 149, .external_lex_state = 2}, - [5258] = {.lex_state = 149, .external_lex_state = 2}, - [5259] = {.lex_state = 149, .external_lex_state = 2}, - [5260] = {.lex_state = 149, .external_lex_state = 2}, - [5261] = {.lex_state = 149, .external_lex_state = 2}, - [5262] = {.lex_state = 149, .external_lex_state = 2}, - [5263] = {.lex_state = 149, .external_lex_state = 2}, - [5264] = {.lex_state = 149, .external_lex_state = 2}, - [5265] = {.lex_state = 149, .external_lex_state = 5}, - [5266] = {.lex_state = 149, .external_lex_state = 2}, - [5267] = {.lex_state = 149, .external_lex_state = 2}, - [5268] = {.lex_state = 149, .external_lex_state = 2}, - [5269] = {.lex_state = 149, .external_lex_state = 5}, - [5270] = {.lex_state = 149, .external_lex_state = 2}, - [5271] = {.lex_state = 149, .external_lex_state = 2}, - [5272] = {.lex_state = 149, .external_lex_state = 2}, - [5273] = {.lex_state = 149, .external_lex_state = 2}, - [5274] = {.lex_state = 149, .external_lex_state = 2}, - [5275] = {.lex_state = 149, .external_lex_state = 2}, - [5276] = {.lex_state = 149, .external_lex_state = 2}, - [5277] = {.lex_state = 149, .external_lex_state = 2}, - [5278] = {.lex_state = 149, .external_lex_state = 2}, - [5279] = {.lex_state = 149, .external_lex_state = 2}, - [5280] = {.lex_state = 149, .external_lex_state = 2}, - [5281] = {.lex_state = 149, .external_lex_state = 2}, - [5282] = {.lex_state = 149, .external_lex_state = 2}, - [5283] = {.lex_state = 149, .external_lex_state = 2}, - [5284] = {.lex_state = 149, .external_lex_state = 2}, - [5285] = {.lex_state = 149, .external_lex_state = 2}, - [5286] = {.lex_state = 149, .external_lex_state = 2}, - [5287] = {.lex_state = 149, .external_lex_state = 2}, - [5288] = {.lex_state = 149, .external_lex_state = 2}, - [5289] = {.lex_state = 149, .external_lex_state = 2}, - [5290] = {.lex_state = 149, .external_lex_state = 2}, - [5291] = {.lex_state = 149, .external_lex_state = 2}, - [5292] = {.lex_state = 149, .external_lex_state = 2}, - [5293] = {.lex_state = 149, .external_lex_state = 2}, - [5294] = {.lex_state = 149, .external_lex_state = 2}, - [5295] = {.lex_state = 149, .external_lex_state = 2}, - [5296] = {.lex_state = 149, .external_lex_state = 2}, - [5297] = {.lex_state = 149, .external_lex_state = 2}, - [5298] = {.lex_state = 149, .external_lex_state = 2}, - [5299] = {.lex_state = 149, .external_lex_state = 2}, - [5300] = {.lex_state = 16, .external_lex_state = 2}, - [5301] = {.lex_state = 149, .external_lex_state = 2}, - [5302] = {.lex_state = 149, .external_lex_state = 2}, - [5303] = {.lex_state = 149, .external_lex_state = 2}, - [5304] = {.lex_state = 149, .external_lex_state = 2}, - [5305] = {.lex_state = 149, .external_lex_state = 2}, - [5306] = {.lex_state = 149, .external_lex_state = 2}, - [5307] = {.lex_state = 149, .external_lex_state = 2}, - [5308] = {.lex_state = 149, .external_lex_state = 2}, - [5309] = {.lex_state = 149, .external_lex_state = 2}, - [5310] = {.lex_state = 149, .external_lex_state = 2}, - [5311] = {.lex_state = 149, .external_lex_state = 5}, - [5312] = {.lex_state = 149, .external_lex_state = 2}, - [5313] = {.lex_state = 149, .external_lex_state = 2}, - [5314] = {.lex_state = 149, .external_lex_state = 2}, - [5315] = {.lex_state = 149, .external_lex_state = 2}, - [5316] = {.lex_state = 149, .external_lex_state = 2}, - [5317] = {.lex_state = 149, .external_lex_state = 2}, - [5318] = {.lex_state = 149, .external_lex_state = 2}, - [5319] = {.lex_state = 149, .external_lex_state = 5}, - [5320] = {.lex_state = 149, .external_lex_state = 2}, - [5321] = {.lex_state = 149, .external_lex_state = 2}, - [5322] = {.lex_state = 149, .external_lex_state = 2}, - [5323] = {.lex_state = 149, .external_lex_state = 2}, - [5324] = {.lex_state = 149, .external_lex_state = 2}, - [5325] = {.lex_state = 149, .external_lex_state = 2}, - [5326] = {.lex_state = 149, .external_lex_state = 2}, - [5327] = {.lex_state = 149, .external_lex_state = 2}, - [5328] = {.lex_state = 149, .external_lex_state = 2}, - [5329] = {.lex_state = 149, .external_lex_state = 5}, - [5330] = {.lex_state = 149, .external_lex_state = 2}, - [5331] = {.lex_state = 149, .external_lex_state = 2}, - [5332] = {.lex_state = 149, .external_lex_state = 5}, - [5333] = {.lex_state = 149, .external_lex_state = 2}, - [5334] = {.lex_state = 149, .external_lex_state = 2}, - [5335] = {.lex_state = 149, .external_lex_state = 2}, - [5336] = {.lex_state = 149, .external_lex_state = 2}, - [5337] = {.lex_state = 149, .external_lex_state = 2}, - [5338] = {.lex_state = 149, .external_lex_state = 2}, - [5339] = {.lex_state = 149, .external_lex_state = 2}, - [5340] = {.lex_state = 149, .external_lex_state = 2}, - [5341] = {.lex_state = 149, .external_lex_state = 2}, - [5342] = {.lex_state = 149, .external_lex_state = 2}, - [5343] = {.lex_state = 149, .external_lex_state = 2}, - [5344] = {.lex_state = 149, .external_lex_state = 5}, - [5345] = {.lex_state = 149, .external_lex_state = 2}, - [5346] = {.lex_state = 149, .external_lex_state = 2}, - [5347] = {.lex_state = 149, .external_lex_state = 2}, - [5348] = {.lex_state = 149, .external_lex_state = 2}, - [5349] = {.lex_state = 149, .external_lex_state = 2}, - [5350] = {.lex_state = 149, .external_lex_state = 2}, - [5351] = {.lex_state = 149, .external_lex_state = 2}, - [5352] = {.lex_state = 149, .external_lex_state = 2}, - [5353] = {.lex_state = 149, .external_lex_state = 2}, - [5354] = {.lex_state = 149, .external_lex_state = 2}, - [5355] = {.lex_state = 149, .external_lex_state = 2}, - [5356] = {.lex_state = 149, .external_lex_state = 2}, - [5357] = {.lex_state = 149, .external_lex_state = 2}, - [5358] = {.lex_state = 149, .external_lex_state = 2}, - [5359] = {.lex_state = 149, .external_lex_state = 2}, - [5360] = {.lex_state = 149, .external_lex_state = 2}, - [5361] = {.lex_state = 149, .external_lex_state = 2}, - [5362] = {.lex_state = 149, .external_lex_state = 2}, - [5363] = {.lex_state = 149, .external_lex_state = 2}, - [5364] = {.lex_state = 149, .external_lex_state = 2}, - [5365] = {.lex_state = 149, .external_lex_state = 2}, - [5366] = {.lex_state = 149, .external_lex_state = 2}, - [5367] = {.lex_state = 149, .external_lex_state = 2}, - [5368] = {.lex_state = 149, .external_lex_state = 2}, - [5369] = {.lex_state = 149, .external_lex_state = 2}, - [5370] = {.lex_state = 149, .external_lex_state = 2}, - [5371] = {.lex_state = 149, .external_lex_state = 2}, - [5372] = {.lex_state = 149, .external_lex_state = 2}, - [5373] = {.lex_state = 149, .external_lex_state = 2}, - [5374] = {.lex_state = 149, .external_lex_state = 2}, - [5375] = {.lex_state = 149, .external_lex_state = 2}, - [5376] = {.lex_state = 149, .external_lex_state = 2}, - [5377] = {.lex_state = 149, .external_lex_state = 2}, - [5378] = {.lex_state = 149, .external_lex_state = 2}, - [5379] = {.lex_state = 149, .external_lex_state = 2}, - [5380] = {.lex_state = 149, .external_lex_state = 2}, - [5381] = {.lex_state = 149, .external_lex_state = 2}, - [5382] = {.lex_state = 149, .external_lex_state = 2}, - [5383] = {.lex_state = 149, .external_lex_state = 2}, - [5384] = {.lex_state = 149, .external_lex_state = 2}, - [5385] = {.lex_state = 149, .external_lex_state = 2}, - [5386] = {.lex_state = 149, .external_lex_state = 2}, - [5387] = {.lex_state = 149, .external_lex_state = 2}, - [5388] = {.lex_state = 149, .external_lex_state = 2}, - [5389] = {.lex_state = 149, .external_lex_state = 2}, - [5390] = {.lex_state = 149, .external_lex_state = 2}, - [5391] = {.lex_state = 149, .external_lex_state = 2}, - [5392] = {.lex_state = 149, .external_lex_state = 2}, - [5393] = {.lex_state = 149, .external_lex_state = 2}, - [5394] = {.lex_state = 149, .external_lex_state = 2}, - [5395] = {.lex_state = 149, .external_lex_state = 2}, - [5396] = {.lex_state = 149, .external_lex_state = 2}, - [5397] = {.lex_state = 149, .external_lex_state = 2}, - [5398] = {.lex_state = 149, .external_lex_state = 2}, - [5399] = {.lex_state = 149, .external_lex_state = 2}, - [5400] = {.lex_state = 149, .external_lex_state = 2}, - [5401] = {.lex_state = 149, .external_lex_state = 2}, - [5402] = {.lex_state = 149, .external_lex_state = 2}, - [5403] = {.lex_state = 149, .external_lex_state = 5}, - [5404] = {.lex_state = 149, .external_lex_state = 2}, - [5405] = {.lex_state = 149, .external_lex_state = 2}, - [5406] = {.lex_state = 149, .external_lex_state = 2}, - [5407] = {.lex_state = 149, .external_lex_state = 2}, - [5408] = {.lex_state = 149, .external_lex_state = 2}, - [5409] = {.lex_state = 149, .external_lex_state = 2}, - [5410] = {.lex_state = 149, .external_lex_state = 2}, - [5411] = {.lex_state = 149, .external_lex_state = 2}, - [5412] = {.lex_state = 149, .external_lex_state = 2}, - [5413] = {.lex_state = 149, .external_lex_state = 2}, - [5414] = {.lex_state = 149, .external_lex_state = 2}, - [5415] = {.lex_state = 149, .external_lex_state = 2}, - [5416] = {.lex_state = 149, .external_lex_state = 2}, - [5417] = {.lex_state = 149, .external_lex_state = 2}, - [5418] = {.lex_state = 149, .external_lex_state = 2}, - [5419] = {.lex_state = 149, .external_lex_state = 2}, - [5420] = {.lex_state = 149, .external_lex_state = 2}, - [5421] = {.lex_state = 149, .external_lex_state = 2}, - [5422] = {.lex_state = 149, .external_lex_state = 2}, - [5423] = {.lex_state = 149, .external_lex_state = 2}, - [5424] = {.lex_state = 149, .external_lex_state = 2}, - [5425] = {.lex_state = 149, .external_lex_state = 2}, - [5426] = {.lex_state = 149, .external_lex_state = 2}, - [5427] = {.lex_state = 149, .external_lex_state = 2}, - [5428] = {.lex_state = 149, .external_lex_state = 2}, - [5429] = {.lex_state = 149, .external_lex_state = 2}, - [5430] = {.lex_state = 149, .external_lex_state = 5}, - [5431] = {.lex_state = 149, .external_lex_state = 2}, - [5432] = {.lex_state = 149, .external_lex_state = 2}, - [5433] = {.lex_state = 149, .external_lex_state = 2}, - [5434] = {.lex_state = 149, .external_lex_state = 2}, - [5435] = {.lex_state = 149, .external_lex_state = 2}, - [5436] = {.lex_state = 149, .external_lex_state = 2}, - [5437] = {.lex_state = 149, .external_lex_state = 2}, - [5438] = {.lex_state = 149, .external_lex_state = 5}, - [5439] = {.lex_state = 149, .external_lex_state = 2}, - [5440] = {.lex_state = 149, .external_lex_state = 5}, - [5441] = {.lex_state = 149, .external_lex_state = 2}, - [5442] = {.lex_state = 149, .external_lex_state = 2}, - [5443] = {.lex_state = 149, .external_lex_state = 2}, - [5444] = {.lex_state = 149, .external_lex_state = 2}, - [5445] = {.lex_state = 149, .external_lex_state = 2}, - [5446] = {.lex_state = 149, .external_lex_state = 2}, - [5447] = {.lex_state = 149, .external_lex_state = 2}, - [5448] = {.lex_state = 149, .external_lex_state = 2}, - [5449] = {.lex_state = 149, .external_lex_state = 5}, - [5450] = {.lex_state = 149, .external_lex_state = 2}, - [5451] = {.lex_state = 149, .external_lex_state = 2}, - [5452] = {.lex_state = 149, .external_lex_state = 2}, - [5453] = {.lex_state = 149, .external_lex_state = 2}, - [5454] = {.lex_state = 149, .external_lex_state = 5}, - [5455] = {.lex_state = 149, .external_lex_state = 2}, - [5456] = {.lex_state = 149, .external_lex_state = 2}, - [5457] = {.lex_state = 149, .external_lex_state = 2}, - [5458] = {.lex_state = 149, .external_lex_state = 2}, - [5459] = {.lex_state = 149, .external_lex_state = 2}, - [5460] = {.lex_state = 149, .external_lex_state = 5}, - [5461] = {.lex_state = 149, .external_lex_state = 2}, - [5462] = {.lex_state = 149, .external_lex_state = 5}, - [5463] = {.lex_state = 149, .external_lex_state = 2}, - [5464] = {.lex_state = 149, .external_lex_state = 2}, - [5465] = {.lex_state = 149, .external_lex_state = 5}, - [5466] = {.lex_state = 149, .external_lex_state = 2}, - [5467] = {.lex_state = 149, .external_lex_state = 5}, - [5468] = {.lex_state = 149, .external_lex_state = 2}, - [5469] = {.lex_state = 149, .external_lex_state = 2}, - [5470] = {.lex_state = 149, .external_lex_state = 5}, - [5471] = {.lex_state = 149, .external_lex_state = 2}, - [5472] = {.lex_state = 149, .external_lex_state = 2}, - [5473] = {.lex_state = 149, .external_lex_state = 5}, - [5474] = {.lex_state = 149, .external_lex_state = 2}, - [5475] = {.lex_state = 149, .external_lex_state = 5}, - [5476] = {.lex_state = 149, .external_lex_state = 2}, - [5477] = {.lex_state = 149, .external_lex_state = 5}, - [5478] = {.lex_state = 149, .external_lex_state = 2}, - [5479] = {.lex_state = 149, .external_lex_state = 2}, - [5480] = {.lex_state = 149, .external_lex_state = 2}, - [5481] = {.lex_state = 149, .external_lex_state = 5}, - [5482] = {.lex_state = 149, .external_lex_state = 2}, - [5483] = {.lex_state = 149, .external_lex_state = 5}, - [5484] = {.lex_state = 149, .external_lex_state = 2}, - [5485] = {.lex_state = 149, .external_lex_state = 5}, - [5486] = {.lex_state = 149, .external_lex_state = 2}, - [5487] = {.lex_state = 149, .external_lex_state = 2}, - [5488] = {.lex_state = 149, .external_lex_state = 2}, - [5489] = {.lex_state = 149, .external_lex_state = 2}, - [5490] = {.lex_state = 149, .external_lex_state = 2}, - [5491] = {.lex_state = 149, .external_lex_state = 2}, - [5492] = {.lex_state = 149, .external_lex_state = 2}, - [5493] = {.lex_state = 149, .external_lex_state = 2}, - [5494] = {.lex_state = 149, .external_lex_state = 2}, - [5495] = {.lex_state = 149, .external_lex_state = 2}, - [5496] = {.lex_state = 149, .external_lex_state = 2}, - [5497] = {.lex_state = 149, .external_lex_state = 2}, - [5498] = {.lex_state = 149, .external_lex_state = 2}, - [5499] = {.lex_state = 149, .external_lex_state = 2}, - [5500] = {.lex_state = 149, .external_lex_state = 2}, - [5501] = {.lex_state = 149, .external_lex_state = 2}, - [5502] = {.lex_state = 149, .external_lex_state = 5}, - [5503] = {.lex_state = 149, .external_lex_state = 2}, - [5504] = {.lex_state = 149, .external_lex_state = 2}, - [5505] = {.lex_state = 149, .external_lex_state = 2}, - [5506] = {.lex_state = 149, .external_lex_state = 2}, - [5507] = {.lex_state = 149, .external_lex_state = 2}, - [5508] = {.lex_state = 149, .external_lex_state = 2}, - [5509] = {.lex_state = 149, .external_lex_state = 2}, - [5510] = {.lex_state = 149, .external_lex_state = 2}, - [5511] = {.lex_state = 149, .external_lex_state = 2}, - [5512] = {.lex_state = 149, .external_lex_state = 2}, - [5513] = {.lex_state = 149, .external_lex_state = 2}, - [5514] = {.lex_state = 149, .external_lex_state = 2}, - [5515] = {.lex_state = 149, .external_lex_state = 2}, - [5516] = {.lex_state = 149, .external_lex_state = 5}, - [5517] = {.lex_state = 149, .external_lex_state = 2}, - [5518] = {.lex_state = 149, .external_lex_state = 2}, - [5519] = {.lex_state = 149, .external_lex_state = 2}, - [5520] = {.lex_state = 149, .external_lex_state = 2}, - [5521] = {.lex_state = 149, .external_lex_state = 2}, - [5522] = {.lex_state = 149, .external_lex_state = 2}, - [5523] = {.lex_state = 149, .external_lex_state = 2}, - [5524] = {.lex_state = 149, .external_lex_state = 2}, - [5525] = {.lex_state = 149, .external_lex_state = 2}, - [5526] = {.lex_state = 149, .external_lex_state = 2}, - [5527] = {.lex_state = 149, .external_lex_state = 2}, - [5528] = {.lex_state = 149, .external_lex_state = 2}, - [5529] = {.lex_state = 149, .external_lex_state = 2}, - [5530] = {.lex_state = 149, .external_lex_state = 2}, - [5531] = {.lex_state = 149, .external_lex_state = 2}, - [5532] = {.lex_state = 149, .external_lex_state = 2}, - [5533] = {.lex_state = 149, .external_lex_state = 2}, - [5534] = {.lex_state = 149, .external_lex_state = 2}, - [5535] = {.lex_state = 149, .external_lex_state = 2}, - [5536] = {.lex_state = 149, .external_lex_state = 2}, - [5537] = {.lex_state = 149, .external_lex_state = 2}, - [5538] = {.lex_state = 149, .external_lex_state = 2}, - [5539] = {.lex_state = 149, .external_lex_state = 2}, - [5540] = {.lex_state = 149, .external_lex_state = 2}, - [5541] = {.lex_state = 149, .external_lex_state = 2}, - [5542] = {.lex_state = 149, .external_lex_state = 2}, - [5543] = {.lex_state = 149, .external_lex_state = 2}, - [5544] = {.lex_state = 149, .external_lex_state = 2}, - [5545] = {.lex_state = 149, .external_lex_state = 2}, - [5546] = {.lex_state = 149, .external_lex_state = 2}, - [5547] = {.lex_state = 149, .external_lex_state = 2}, - [5548] = {.lex_state = 149, .external_lex_state = 2}, - [5549] = {.lex_state = 149, .external_lex_state = 2}, - [5550] = {.lex_state = 149, .external_lex_state = 2}, - [5551] = {.lex_state = 149, .external_lex_state = 2}, - [5552] = {.lex_state = 149, .external_lex_state = 2}, - [5553] = {.lex_state = 149, .external_lex_state = 2}, - [5554] = {.lex_state = 149, .external_lex_state = 2}, - [5555] = {.lex_state = 149, .external_lex_state = 2}, - [5556] = {.lex_state = 149, .external_lex_state = 2}, - [5557] = {.lex_state = 149, .external_lex_state = 2}, - [5558] = {.lex_state = 149, .external_lex_state = 2}, - [5559] = {.lex_state = 149, .external_lex_state = 2}, - [5560] = {.lex_state = 149, .external_lex_state = 2}, - [5561] = {.lex_state = 149, .external_lex_state = 2}, - [5562] = {.lex_state = 149, .external_lex_state = 2}, - [5563] = {.lex_state = 149, .external_lex_state = 2}, - [5564] = {.lex_state = 149, .external_lex_state = 2}, - [5565] = {.lex_state = 149, .external_lex_state = 2}, - [5566] = {.lex_state = 149, .external_lex_state = 2}, - [5567] = {.lex_state = 149, .external_lex_state = 2}, - [5568] = {.lex_state = 149, .external_lex_state = 2}, - [5569] = {.lex_state = 149, .external_lex_state = 2}, - [5570] = {.lex_state = 149, .external_lex_state = 2}, - [5571] = {.lex_state = 149, .external_lex_state = 5}, - [5572] = {.lex_state = 149, .external_lex_state = 2}, - [5573] = {.lex_state = 149, .external_lex_state = 2}, - [5574] = {.lex_state = 149, .external_lex_state = 2}, - [5575] = {.lex_state = 149, .external_lex_state = 2}, - [5576] = {.lex_state = 149, .external_lex_state = 2}, - [5577] = {.lex_state = 149, .external_lex_state = 2}, - [5578] = {.lex_state = 149, .external_lex_state = 2}, - [5579] = {.lex_state = 149, .external_lex_state = 2}, - [5580] = {.lex_state = 149, .external_lex_state = 2}, - [5581] = {.lex_state = 149, .external_lex_state = 2}, - [5582] = {.lex_state = 149, .external_lex_state = 2}, - [5583] = {.lex_state = 149, .external_lex_state = 2}, - [5584] = {.lex_state = 149, .external_lex_state = 2}, - [5585] = {.lex_state = 149, .external_lex_state = 2}, - [5586] = {.lex_state = 149, .external_lex_state = 2}, - [5587] = {.lex_state = 149, .external_lex_state = 2}, - [5588] = {.lex_state = 149, .external_lex_state = 2}, - [5589] = {.lex_state = 149, .external_lex_state = 2}, - [5590] = {.lex_state = 149, .external_lex_state = 2}, - [5591] = {.lex_state = 149, .external_lex_state = 2}, - [5592] = {.lex_state = 149, .external_lex_state = 2}, - [5593] = {.lex_state = 149, .external_lex_state = 2}, - [5594] = {.lex_state = 149, .external_lex_state = 2}, - [5595] = {.lex_state = 38, .external_lex_state = 2}, - [5596] = {.lex_state = 149, .external_lex_state = 2}, - [5597] = {.lex_state = 149, .external_lex_state = 2}, - [5598] = {.lex_state = 149, .external_lex_state = 2}, - [5599] = {.lex_state = 149, .external_lex_state = 2}, - [5600] = {.lex_state = 149, .external_lex_state = 2}, - [5601] = {.lex_state = 149, .external_lex_state = 2}, - [5602] = {.lex_state = 149, .external_lex_state = 2}, - [5603] = {.lex_state = 149, .external_lex_state = 2}, - [5604] = {.lex_state = 149, .external_lex_state = 2}, - [5605] = {.lex_state = 149, .external_lex_state = 2}, - [5606] = {.lex_state = 149, .external_lex_state = 2}, - [5607] = {.lex_state = 149, .external_lex_state = 2}, - [5608] = {.lex_state = 149, .external_lex_state = 2}, - [5609] = {.lex_state = 149, .external_lex_state = 2}, - [5610] = {.lex_state = 149, .external_lex_state = 2}, - [5611] = {.lex_state = 149, .external_lex_state = 2}, - [5612] = {.lex_state = 149, .external_lex_state = 2}, - [5613] = {.lex_state = 149, .external_lex_state = 2}, - [5614] = {.lex_state = 149, .external_lex_state = 2}, - [5615] = {.lex_state = 149, .external_lex_state = 2}, - [5616] = {.lex_state = 149, .external_lex_state = 2}, - [5617] = {.lex_state = 149, .external_lex_state = 2}, - [5618] = {.lex_state = 149, .external_lex_state = 2}, - [5619] = {.lex_state = 149, .external_lex_state = 2}, - [5620] = {.lex_state = 149, .external_lex_state = 2}, - [5621] = {.lex_state = 149, .external_lex_state = 2}, - [5622] = {.lex_state = 149, .external_lex_state = 2}, - [5623] = {.lex_state = 149, .external_lex_state = 2}, - [5624] = {.lex_state = 149, .external_lex_state = 2}, - [5625] = {.lex_state = 149, .external_lex_state = 2}, - [5626] = {.lex_state = 149, .external_lex_state = 2}, - [5627] = {.lex_state = 149, .external_lex_state = 2}, - [5628] = {.lex_state = 149, .external_lex_state = 2}, - [5629] = {.lex_state = 149, .external_lex_state = 2}, - [5630] = {.lex_state = 149, .external_lex_state = 2}, - [5631] = {.lex_state = 149, .external_lex_state = 2}, - [5632] = {.lex_state = 149, .external_lex_state = 2}, - [5633] = {.lex_state = 149, .external_lex_state = 2}, - [5634] = {.lex_state = 149, .external_lex_state = 2}, - [5635] = {.lex_state = 149, .external_lex_state = 2}, - [5636] = {.lex_state = 149, .external_lex_state = 2}, - [5637] = {.lex_state = 149, .external_lex_state = 2}, - [5638] = {.lex_state = 149, .external_lex_state = 2}, - [5639] = {.lex_state = 149, .external_lex_state = 2}, - [5640] = {.lex_state = 149, .external_lex_state = 2}, - [5641] = {.lex_state = 149, .external_lex_state = 2}, - [5642] = {.lex_state = 149, .external_lex_state = 2}, - [5643] = {.lex_state = 149, .external_lex_state = 2}, - [5644] = {.lex_state = 149, .external_lex_state = 2}, - [5645] = {.lex_state = 149, .external_lex_state = 2}, - [5646] = {.lex_state = 149, .external_lex_state = 2}, - [5647] = {.lex_state = 149, .external_lex_state = 2}, - [5648] = {.lex_state = 149, .external_lex_state = 2}, - [5649] = {.lex_state = 149, .external_lex_state = 2}, - [5650] = {.lex_state = 149, .external_lex_state = 2}, - [5651] = {.lex_state = 149, .external_lex_state = 2}, - [5652] = {.lex_state = 149, .external_lex_state = 2}, - [5653] = {.lex_state = 149, .external_lex_state = 2}, - [5654] = {.lex_state = 149, .external_lex_state = 2}, - [5655] = {.lex_state = 149, .external_lex_state = 2}, - [5656] = {.lex_state = 149, .external_lex_state = 2}, - [5657] = {.lex_state = 149, .external_lex_state = 2}, - [5658] = {.lex_state = 149, .external_lex_state = 2}, - [5659] = {.lex_state = 149, .external_lex_state = 2}, - [5660] = {.lex_state = 149, .external_lex_state = 2}, - [5661] = {.lex_state = 149, .external_lex_state = 2}, - [5662] = {.lex_state = 149, .external_lex_state = 2}, - [5663] = {.lex_state = 149, .external_lex_state = 2}, - [5664] = {.lex_state = 149, .external_lex_state = 2}, - [5665] = {.lex_state = 149, .external_lex_state = 2}, - [5666] = {.lex_state = 149, .external_lex_state = 2}, - [5667] = {.lex_state = 149, .external_lex_state = 2}, - [5668] = {.lex_state = 149, .external_lex_state = 2}, - [5669] = {.lex_state = 149, .external_lex_state = 2}, - [5670] = {.lex_state = 149, .external_lex_state = 2}, - [5671] = {.lex_state = 149, .external_lex_state = 2}, - [5672] = {.lex_state = 149, .external_lex_state = 2}, - [5673] = {.lex_state = 149, .external_lex_state = 2}, - [5674] = {.lex_state = 38, .external_lex_state = 2}, - [5675] = {.lex_state = 149, .external_lex_state = 2}, - [5676] = {.lex_state = 149, .external_lex_state = 2}, - [5677] = {.lex_state = 149, .external_lex_state = 2}, - [5678] = {.lex_state = 149, .external_lex_state = 2}, - [5679] = {.lex_state = 149, .external_lex_state = 2}, - [5680] = {.lex_state = 149, .external_lex_state = 2}, - [5681] = {.lex_state = 149, .external_lex_state = 2}, - [5682] = {.lex_state = 149, .external_lex_state = 2}, - [5683] = {.lex_state = 149, .external_lex_state = 2}, - [5684] = {.lex_state = 149, .external_lex_state = 2}, - [5685] = {.lex_state = 149, .external_lex_state = 2}, - [5686] = {.lex_state = 149, .external_lex_state = 2}, - [5687] = {.lex_state = 2, .external_lex_state = 11}, - [5688] = {.lex_state = 149, .external_lex_state = 2}, - [5689] = {.lex_state = 149, .external_lex_state = 2}, - [5690] = {.lex_state = 149, .external_lex_state = 2}, - [5691] = {.lex_state = 149, .external_lex_state = 2}, - [5692] = {.lex_state = 149, .external_lex_state = 2}, - [5693] = {.lex_state = 149, .external_lex_state = 2}, - [5694] = {.lex_state = 149, .external_lex_state = 2}, - [5695] = {.lex_state = 149, .external_lex_state = 2}, - [5696] = {.lex_state = 149, .external_lex_state = 2}, - [5697] = {.lex_state = 149, .external_lex_state = 2}, - [5698] = {.lex_state = 149, .external_lex_state = 2}, - [5699] = {.lex_state = 149, .external_lex_state = 2}, - [5700] = {.lex_state = 149, .external_lex_state = 2}, - [5701] = {.lex_state = 149, .external_lex_state = 2}, - [5702] = {.lex_state = 149, .external_lex_state = 2}, - [5703] = {.lex_state = 149, .external_lex_state = 2}, - [5704] = {.lex_state = 149, .external_lex_state = 2}, - [5705] = {.lex_state = 149, .external_lex_state = 2}, - [5706] = {.lex_state = 149, .external_lex_state = 2}, - [5707] = {.lex_state = 149, .external_lex_state = 2}, - [5708] = {.lex_state = 149, .external_lex_state = 2}, - [5709] = {.lex_state = 149, .external_lex_state = 2}, - [5710] = {.lex_state = 149, .external_lex_state = 2}, - [5711] = {.lex_state = 149, .external_lex_state = 2}, - [5712] = {.lex_state = 149, .external_lex_state = 2}, - [5713] = {.lex_state = 149, .external_lex_state = 2}, - [5714] = {.lex_state = 149, .external_lex_state = 2}, - [5715] = {.lex_state = 149, .external_lex_state = 2}, - [5716] = {.lex_state = 149, .external_lex_state = 2}, - [5717] = {.lex_state = 149, .external_lex_state = 2}, - [5718] = {.lex_state = 149, .external_lex_state = 2}, - [5719] = {.lex_state = 149, .external_lex_state = 2}, - [5720] = {.lex_state = 149, .external_lex_state = 2}, - [5721] = {.lex_state = 149, .external_lex_state = 2}, - [5722] = {.lex_state = 149, .external_lex_state = 2}, - [5723] = {.lex_state = 149, .external_lex_state = 2}, - [5724] = {.lex_state = 149, .external_lex_state = 2}, - [5725] = {.lex_state = 149, .external_lex_state = 2}, - [5726] = {.lex_state = 149, .external_lex_state = 2}, - [5727] = {.lex_state = 149, .external_lex_state = 2}, - [5728] = {.lex_state = 149, .external_lex_state = 2}, - [5729] = {.lex_state = 149, .external_lex_state = 2}, - [5730] = {.lex_state = 149, .external_lex_state = 2}, - [5731] = {.lex_state = 149, .external_lex_state = 2}, - [5732] = {.lex_state = 149, .external_lex_state = 2}, - [5733] = {.lex_state = 149, .external_lex_state = 2}, - [5734] = {.lex_state = 149, .external_lex_state = 2}, - [5735] = {.lex_state = 149, .external_lex_state = 2}, - [5736] = {.lex_state = 149, .external_lex_state = 2}, - [5737] = {.lex_state = 149, .external_lex_state = 2}, - [5738] = {.lex_state = 149, .external_lex_state = 2}, - [5739] = {.lex_state = 149, .external_lex_state = 2}, - [5740] = {.lex_state = 149, .external_lex_state = 2}, - [5741] = {.lex_state = 149, .external_lex_state = 2}, - [5742] = {.lex_state = 149, .external_lex_state = 2}, - [5743] = {.lex_state = 149, .external_lex_state = 2}, - [5744] = {.lex_state = 149, .external_lex_state = 2}, - [5745] = {.lex_state = 149, .external_lex_state = 2}, - [5746] = {.lex_state = 149, .external_lex_state = 2}, - [5747] = {.lex_state = 149, .external_lex_state = 2}, - [5748] = {.lex_state = 149, .external_lex_state = 2}, - [5749] = {.lex_state = 149, .external_lex_state = 2}, - [5750] = {.lex_state = 149, .external_lex_state = 2}, - [5751] = {.lex_state = 149, .external_lex_state = 2}, - [5752] = {.lex_state = 149, .external_lex_state = 2}, - [5753] = {.lex_state = 149, .external_lex_state = 2}, - [5754] = {.lex_state = 149, .external_lex_state = 2}, - [5755] = {.lex_state = 149, .external_lex_state = 2}, - [5756] = {.lex_state = 149, .external_lex_state = 2}, - [5757] = {.lex_state = 149, .external_lex_state = 2}, - [5758] = {.lex_state = 149, .external_lex_state = 2}, - [5759] = {.lex_state = 149, .external_lex_state = 2}, - [5760] = {.lex_state = 149, .external_lex_state = 2}, - [5761] = {.lex_state = 149, .external_lex_state = 2}, - [5762] = {.lex_state = 149, .external_lex_state = 2}, - [5763] = {.lex_state = 149, .external_lex_state = 2}, - [5764] = {.lex_state = 2, .external_lex_state = 11}, - [5765] = {.lex_state = 149, .external_lex_state = 2}, - [5766] = {.lex_state = 149, .external_lex_state = 2}, - [5767] = {.lex_state = 149, .external_lex_state = 2}, - [5768] = {.lex_state = 149, .external_lex_state = 2}, - [5769] = {.lex_state = 149, .external_lex_state = 2}, - [5770] = {.lex_state = 149, .external_lex_state = 2}, - [5771] = {.lex_state = 149, .external_lex_state = 2}, - [5772] = {.lex_state = 38, .external_lex_state = 2}, - [5773] = {.lex_state = 149, .external_lex_state = 2}, - [5774] = {.lex_state = 149, .external_lex_state = 2}, - [5775] = {.lex_state = 149, .external_lex_state = 2}, - [5776] = {.lex_state = 149, .external_lex_state = 2}, - [5777] = {.lex_state = 149, .external_lex_state = 2}, - [5778] = {.lex_state = 149, .external_lex_state = 2}, - [5779] = {.lex_state = 149, .external_lex_state = 2}, - [5780] = {.lex_state = 149, .external_lex_state = 2}, - [5781] = {.lex_state = 149, .external_lex_state = 2}, - [5782] = {.lex_state = 149, .external_lex_state = 2}, - [5783] = {.lex_state = 149, .external_lex_state = 2}, - [5784] = {.lex_state = 149, .external_lex_state = 2}, - [5785] = {.lex_state = 149, .external_lex_state = 2}, - [5786] = {.lex_state = 149, .external_lex_state = 2}, - [5787] = {.lex_state = 149, .external_lex_state = 2}, - [5788] = {.lex_state = 149, .external_lex_state = 2}, - [5789] = {.lex_state = 2, .external_lex_state = 11}, - [5790] = {.lex_state = 149, .external_lex_state = 2}, - [5791] = {.lex_state = 149, .external_lex_state = 2}, - [5792] = {.lex_state = 149, .external_lex_state = 2}, - [5793] = {.lex_state = 149, .external_lex_state = 2}, - [5794] = {.lex_state = 149, .external_lex_state = 2}, - [5795] = {.lex_state = 149, .external_lex_state = 2}, - [5796] = {.lex_state = 149, .external_lex_state = 2}, - [5797] = {.lex_state = 149, .external_lex_state = 2}, - [5798] = {.lex_state = 149, .external_lex_state = 2}, - [5799] = {.lex_state = 149, .external_lex_state = 2}, - [5800] = {.lex_state = 149, .external_lex_state = 2}, - [5801] = {.lex_state = 149, .external_lex_state = 2}, - [5802] = {.lex_state = 149, .external_lex_state = 2}, - [5803] = {.lex_state = 149, .external_lex_state = 2}, - [5804] = {.lex_state = 149, .external_lex_state = 2}, - [5805] = {.lex_state = 149, .external_lex_state = 2}, - [5806] = {.lex_state = 149, .external_lex_state = 2}, - [5807] = {.lex_state = 149, .external_lex_state = 2}, - [5808] = {.lex_state = 149, .external_lex_state = 2}, - [5809] = {.lex_state = 149, .external_lex_state = 2}, - [5810] = {.lex_state = 149, .external_lex_state = 2}, - [5811] = {.lex_state = 149, .external_lex_state = 2}, - [5812] = {.lex_state = 149, .external_lex_state = 2}, - [5813] = {.lex_state = 149, .external_lex_state = 2}, - [5814] = {.lex_state = 149, .external_lex_state = 2}, - [5815] = {.lex_state = 149, .external_lex_state = 2}, - [5816] = {.lex_state = 149, .external_lex_state = 2}, - [5817] = {.lex_state = 149, .external_lex_state = 2}, - [5818] = {.lex_state = 149, .external_lex_state = 2}, - [5819] = {.lex_state = 149, .external_lex_state = 2}, - [5820] = {.lex_state = 149, .external_lex_state = 2}, - [5821] = {.lex_state = 149, .external_lex_state = 2}, - [5822] = {.lex_state = 149, .external_lex_state = 2}, - [5823] = {.lex_state = 149, .external_lex_state = 2}, - [5824] = {.lex_state = 149, .external_lex_state = 2}, - [5825] = {.lex_state = 149, .external_lex_state = 2}, - [5826] = {.lex_state = 149, .external_lex_state = 2}, - [5827] = {.lex_state = 149, .external_lex_state = 2}, - [5828] = {.lex_state = 149, .external_lex_state = 2}, - [5829] = {.lex_state = 149, .external_lex_state = 2}, - [5830] = {.lex_state = 149, .external_lex_state = 2}, - [5831] = {.lex_state = 149, .external_lex_state = 2}, - [5832] = {.lex_state = 149, .external_lex_state = 2}, - [5833] = {.lex_state = 149, .external_lex_state = 2}, - [5834] = {.lex_state = 149, .external_lex_state = 2}, - [5835] = {.lex_state = 149, .external_lex_state = 2}, - [5836] = {.lex_state = 149, .external_lex_state = 2}, - [5837] = {.lex_state = 149, .external_lex_state = 2}, - [5838] = {.lex_state = 149, .external_lex_state = 2}, - [5839] = {.lex_state = 149, .external_lex_state = 2}, - [5840] = {.lex_state = 149, .external_lex_state = 2}, - [5841] = {.lex_state = 149, .external_lex_state = 2}, - [5842] = {.lex_state = 149, .external_lex_state = 2}, - [5843] = {.lex_state = 149, .external_lex_state = 2}, - [5844] = {.lex_state = 149, .external_lex_state = 2}, - [5845] = {.lex_state = 149, .external_lex_state = 2}, - [5846] = {.lex_state = 149, .external_lex_state = 2}, - [5847] = {.lex_state = 149, .external_lex_state = 2}, - [5848] = {.lex_state = 149, .external_lex_state = 2}, - [5849] = {.lex_state = 149, .external_lex_state = 2}, - [5850] = {.lex_state = 149, .external_lex_state = 2}, - [5851] = {.lex_state = 149, .external_lex_state = 2}, - [5852] = {.lex_state = 149, .external_lex_state = 2}, - [5853] = {.lex_state = 149, .external_lex_state = 2}, - [5854] = {.lex_state = 149, .external_lex_state = 2}, - [5855] = {.lex_state = 149, .external_lex_state = 2}, - [5856] = {.lex_state = 149, .external_lex_state = 2}, - [5857] = {.lex_state = 149, .external_lex_state = 2}, - [5858] = {.lex_state = 149, .external_lex_state = 2}, - [5859] = {.lex_state = 149, .external_lex_state = 2}, - [5860] = {.lex_state = 2, .external_lex_state = 11}, - [5861] = {.lex_state = 149, .external_lex_state = 2}, - [5862] = {.lex_state = 149, .external_lex_state = 2}, - [5863] = {.lex_state = 149, .external_lex_state = 2}, - [5864] = {.lex_state = 149, .external_lex_state = 2}, - [5865] = {.lex_state = 149, .external_lex_state = 2}, - [5866] = {.lex_state = 149, .external_lex_state = 2}, - [5867] = {.lex_state = 149, .external_lex_state = 2}, - [5868] = {.lex_state = 149, .external_lex_state = 2}, - [5869] = {.lex_state = 149, .external_lex_state = 2}, - [5870] = {.lex_state = 149, .external_lex_state = 2}, - [5871] = {.lex_state = 149, .external_lex_state = 2}, - [5872] = {.lex_state = 149, .external_lex_state = 2}, - [5873] = {.lex_state = 149, .external_lex_state = 2}, - [5874] = {.lex_state = 149, .external_lex_state = 2}, - [5875] = {.lex_state = 149, .external_lex_state = 2}, - [5876] = {.lex_state = 149, .external_lex_state = 2}, - [5877] = {.lex_state = 149, .external_lex_state = 2}, - [5878] = {.lex_state = 149, .external_lex_state = 2}, - [5879] = {.lex_state = 149, .external_lex_state = 2}, - [5880] = {.lex_state = 149, .external_lex_state = 2}, - [5881] = {.lex_state = 149, .external_lex_state = 2}, - [5882] = {.lex_state = 149, .external_lex_state = 2}, - [5883] = {.lex_state = 149, .external_lex_state = 2}, - [5884] = {.lex_state = 149, .external_lex_state = 2}, - [5885] = {.lex_state = 149, .external_lex_state = 2}, - [5886] = {.lex_state = 149, .external_lex_state = 2}, - [5887] = {.lex_state = 149, .external_lex_state = 2}, - [5888] = {.lex_state = 149, .external_lex_state = 2}, - [5889] = {.lex_state = 149, .external_lex_state = 2}, - [5890] = {.lex_state = 149, .external_lex_state = 2}, - [5891] = {.lex_state = 149, .external_lex_state = 2}, - [5892] = {.lex_state = 149, .external_lex_state = 2}, - [5893] = {.lex_state = 149, .external_lex_state = 2}, - [5894] = {.lex_state = 149, .external_lex_state = 2}, - [5895] = {.lex_state = 149, .external_lex_state = 2}, - [5896] = {.lex_state = 149, .external_lex_state = 2}, - [5897] = {.lex_state = 149, .external_lex_state = 2}, - [5898] = {.lex_state = 149, .external_lex_state = 2}, - [5899] = {.lex_state = 149, .external_lex_state = 2}, - [5900] = {.lex_state = 149, .external_lex_state = 2}, - [5901] = {.lex_state = 149, .external_lex_state = 2}, - [5902] = {.lex_state = 149, .external_lex_state = 2}, - [5903] = {.lex_state = 149, .external_lex_state = 2}, - [5904] = {.lex_state = 149, .external_lex_state = 2}, - [5905] = {.lex_state = 149, .external_lex_state = 2}, - [5906] = {.lex_state = 149, .external_lex_state = 2}, - [5907] = {.lex_state = 149, .external_lex_state = 2}, - [5908] = {.lex_state = 149, .external_lex_state = 2}, - [5909] = {.lex_state = 149, .external_lex_state = 2}, - [5910] = {.lex_state = 149, .external_lex_state = 2}, - [5911] = {.lex_state = 149, .external_lex_state = 2}, - [5912] = {.lex_state = 38, .external_lex_state = 2}, - [5913] = {.lex_state = 149, .external_lex_state = 2}, - [5914] = {.lex_state = 149, .external_lex_state = 2}, - [5915] = {.lex_state = 149, .external_lex_state = 2}, - [5916] = {.lex_state = 149, .external_lex_state = 2}, - [5917] = {.lex_state = 149, .external_lex_state = 2}, - [5918] = {.lex_state = 149, .external_lex_state = 2}, - [5919] = {.lex_state = 149, .external_lex_state = 2}, - [5920] = {.lex_state = 149, .external_lex_state = 2}, - [5921] = {.lex_state = 149, .external_lex_state = 2}, - [5922] = {.lex_state = 149, .external_lex_state = 2}, - [5923] = {.lex_state = 149, .external_lex_state = 2}, - [5924] = {.lex_state = 149, .external_lex_state = 2}, - [5925] = {.lex_state = 149, .external_lex_state = 2}, - [5926] = {.lex_state = 149, .external_lex_state = 2}, - [5927] = {.lex_state = 149, .external_lex_state = 2}, - [5928] = {.lex_state = 149, .external_lex_state = 2}, - [5929] = {.lex_state = 149, .external_lex_state = 2}, - [5930] = {.lex_state = 149, .external_lex_state = 2}, - [5931] = {.lex_state = 149, .external_lex_state = 2}, - [5932] = {.lex_state = 149, .external_lex_state = 2}, - [5933] = {.lex_state = 149, .external_lex_state = 2}, - [5934] = {.lex_state = 149, .external_lex_state = 2}, - [5935] = {.lex_state = 149, .external_lex_state = 2}, - [5936] = {.lex_state = 149, .external_lex_state = 2}, - [5937] = {.lex_state = 149, .external_lex_state = 2}, - [5938] = {.lex_state = 149, .external_lex_state = 2}, - [5939] = {.lex_state = 149, .external_lex_state = 2}, - [5940] = {.lex_state = 149, .external_lex_state = 2}, - [5941] = {.lex_state = 149, .external_lex_state = 2}, - [5942] = {.lex_state = 149, .external_lex_state = 2}, - [5943] = {.lex_state = 149, .external_lex_state = 2}, - [5944] = {.lex_state = 149, .external_lex_state = 2}, - [5945] = {.lex_state = 149, .external_lex_state = 2}, - [5946] = {.lex_state = 149, .external_lex_state = 2}, - [5947] = {.lex_state = 149, .external_lex_state = 2}, - [5948] = {.lex_state = 149, .external_lex_state = 2}, - [5949] = {.lex_state = 149, .external_lex_state = 2}, - [5950] = {.lex_state = 149, .external_lex_state = 2}, - [5951] = {.lex_state = 149, .external_lex_state = 2}, - [5952] = {.lex_state = 149, .external_lex_state = 2}, - [5953] = {.lex_state = 149, .external_lex_state = 2}, - [5954] = {.lex_state = 149, .external_lex_state = 2}, - [5955] = {.lex_state = 149, .external_lex_state = 2}, - [5956] = {.lex_state = 149, .external_lex_state = 2}, - [5957] = {.lex_state = 149, .external_lex_state = 2}, - [5958] = {.lex_state = 149, .external_lex_state = 2}, - [5959] = {.lex_state = 149, .external_lex_state = 2}, - [5960] = {.lex_state = 149, .external_lex_state = 2}, - [5961] = {.lex_state = 149, .external_lex_state = 2}, - [5962] = {.lex_state = 149, .external_lex_state = 2}, - [5963] = {.lex_state = 149, .external_lex_state = 2}, - [5964] = {.lex_state = 149, .external_lex_state = 2}, - [5965] = {.lex_state = 149, .external_lex_state = 2}, - [5966] = {.lex_state = 149, .external_lex_state = 2}, - [5967] = {.lex_state = 149, .external_lex_state = 2}, - [5968] = {.lex_state = 149, .external_lex_state = 2}, - [5969] = {.lex_state = 149, .external_lex_state = 2}, - [5970] = {.lex_state = 149, .external_lex_state = 2}, - [5971] = {.lex_state = 149, .external_lex_state = 2}, - [5972] = {.lex_state = 149, .external_lex_state = 2}, - [5973] = {.lex_state = 2, .external_lex_state = 11}, - [5974] = {.lex_state = 38, .external_lex_state = 2}, - [5975] = {.lex_state = 149, .external_lex_state = 2}, - [5976] = {.lex_state = 149, .external_lex_state = 2}, - [5977] = {.lex_state = 149, .external_lex_state = 2}, - [5978] = {.lex_state = 149, .external_lex_state = 2}, - [5979] = {.lex_state = 149, .external_lex_state = 2}, - [5980] = {.lex_state = 149, .external_lex_state = 2}, - [5981] = {.lex_state = 149, .external_lex_state = 2}, - [5982] = {.lex_state = 149, .external_lex_state = 2}, - [5983] = {.lex_state = 149, .external_lex_state = 2}, - [5984] = {.lex_state = 149, .external_lex_state = 2}, - [5985] = {.lex_state = 149, .external_lex_state = 2}, - [5986] = {.lex_state = 149, .external_lex_state = 2}, - [5987] = {.lex_state = 149, .external_lex_state = 2}, - [5988] = {.lex_state = 149, .external_lex_state = 2}, - [5989] = {.lex_state = 149, .external_lex_state = 2}, - [5990] = {.lex_state = 149, .external_lex_state = 2}, - [5991] = {.lex_state = 149, .external_lex_state = 2}, - [5992] = {.lex_state = 149, .external_lex_state = 2}, - [5993] = {.lex_state = 149, .external_lex_state = 2}, - [5994] = {.lex_state = 149, .external_lex_state = 2}, - [5995] = {.lex_state = 149, .external_lex_state = 2}, - [5996] = {.lex_state = 149, .external_lex_state = 2}, - [5997] = {.lex_state = 149, .external_lex_state = 2}, + [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}, + [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 = 128, .external_lex_state = 2}, + [681] = {.lex_state = 128, .external_lex_state = 2}, + [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}, + [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 = 4}, + [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}, + [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}, + [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}, + [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}, + [726] = {.lex_state = 2, .external_lex_state = 3}, + [727] = {.lex_state = 128, .external_lex_state = 2}, + [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}, + [736] = {.lex_state = 2, .external_lex_state = 3}, + [737] = {.lex_state = 128, .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}, + [743] = {.lex_state = 2, .external_lex_state = 3}, + [744] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [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}, + [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}, + [916] = {.lex_state = 9, .external_lex_state = 2}, + [917] = {.lex_state = 128, .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}, + [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}, + [938] = {.lex_state = 9, .external_lex_state = 2}, + [939] = {.lex_state = 9, .external_lex_state = 2}, + [940] = {.lex_state = 9, .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}, + [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}, + [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}, + [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}, + [961] = {.lex_state = 9, .external_lex_state = 2}, + [962] = {.lex_state = 9, .external_lex_state = 2}, + [963] = {.lex_state = 9, .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 = 2, .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}, + [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 = 3, .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}, + [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}, + [1164] = {.lex_state = 3, .external_lex_state = 4}, + [1165] = {.lex_state = 3, .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}, + [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}, + [1173] = {.lex_state = 3, .external_lex_state = 3}, + [1174] = {.lex_state = 3, .external_lex_state = 3}, + [1175] = {.lex_state = 2, .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}, + [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}, + [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}, + [1191] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 2, .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}, + [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}, + [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}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1212] = {.lex_state = 2, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 4}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 4}, + [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}, + [1220] = {.lex_state = 2, .external_lex_state = 3}, + [1221] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 3, .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}, + [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}, + [1245] = {.lex_state = 2, .external_lex_state = 3}, + [1246] = {.lex_state = 2, .external_lex_state = 3}, + [1247] = {.lex_state = 128, .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}, + [1254] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [1260] = {.lex_state = 2, .external_lex_state = 3}, + [1261] = {.lex_state = 2, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [1275] = {.lex_state = 2, .external_lex_state = 4}, + [1276] = {.lex_state = 3, .external_lex_state = 3}, + [1277] = {.lex_state = 2, .external_lex_state = 4}, + [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}, + [1285] = {.lex_state = 2, .external_lex_state = 4}, + [1286] = {.lex_state = 2, .external_lex_state = 3}, + [1287] = {.lex_state = 2, .external_lex_state = 4}, + [1288] = {.lex_state = 2, .external_lex_state = 4}, + [1289] = {.lex_state = 2, .external_lex_state = 4}, + [1290] = {.lex_state = 128, .external_lex_state = 2}, + [1291] = {.lex_state = 2, .external_lex_state = 4}, + [1292] = {.lex_state = 2, .external_lex_state = 4}, + [1293] = {.lex_state = 2, .external_lex_state = 4}, + [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}, + [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}, + [1303] = {.lex_state = 2, .external_lex_state = 4}, + [1304] = {.lex_state = 2, .external_lex_state = 4}, + [1305] = {.lex_state = 2, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [1351] = {.lex_state = 9, .external_lex_state = 2}, + [1352] = {.lex_state = 9, .external_lex_state = 2}, + [1353] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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}, + [1362] = {.lex_state = 2, .external_lex_state = 3}, + [1363] = {.lex_state = 9, .external_lex_state = 2}, + [1364] = {.lex_state = 2, .external_lex_state = 3}, + [1365] = {.lex_state = 3, .external_lex_state = 3}, + [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1367] = {.lex_state = 2, .external_lex_state = 4}, + [1368] = {.lex_state = 2, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 3}, + [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}, + [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 = 2, .external_lex_state = 3}, + [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}, + [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 = 9, .external_lex_state = 2}, + [1403] = {.lex_state = 2, .external_lex_state = 3}, + [1404] = {.lex_state = 9, .external_lex_state = 2}, + [1405] = {.lex_state = 9, .external_lex_state = 2}, + [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}, + [1413] = {.lex_state = 2, .external_lex_state = 3}, + [1414] = {.lex_state = 9, .external_lex_state = 2}, + [1415] = {.lex_state = 2, .external_lex_state = 3}, + [1416] = {.lex_state = 2, .external_lex_state = 3}, + [1417] = {.lex_state = 2, .external_lex_state = 3}, + [1418] = {.lex_state = 9, .external_lex_state = 2}, + [1419] = {.lex_state = 9, .external_lex_state = 2}, + [1420] = {.lex_state = 2, .external_lex_state = 3}, + [1421] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 128, .external_lex_state = 5}, + [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}, + [1445] = {.lex_state = 9, .external_lex_state = 2}, + [1446] = {.lex_state = 128, .external_lex_state = 5}, + [1447] = {.lex_state = 128, .external_lex_state = 5}, + [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}, + [1452] = {.lex_state = 9, .external_lex_state = 2}, + [1453] = {.lex_state = 9, .external_lex_state = 2}, + [1454] = {.lex_state = 128, .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}, + [2601] = {.lex_state = 9, .external_lex_state = 5}, + [2602] = {.lex_state = 9, .external_lex_state = 5}, + [2603] = {.lex_state = 127, .external_lex_state = 3}, + [2604] = {.lex_state = 9, .external_lex_state = 5}, + [2605] = {.lex_state = 9, .external_lex_state = 5}, + [2606] = {.lex_state = 128, .external_lex_state = 2}, + [2607] = {.lex_state = 9, .external_lex_state = 5}, + [2608] = {.lex_state = 9, .external_lex_state = 5}, + [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}, + [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 = 127, .external_lex_state = 3}, + [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}, + [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}, + [2634] = {.lex_state = 9, .external_lex_state = 5}, + [2635] = {.lex_state = 9, .external_lex_state = 5}, + [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}, + [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}, + [2644] = {.lex_state = 9, .external_lex_state = 5}, + [2645] = {.lex_state = 9, .external_lex_state = 5}, + [2646] = {.lex_state = 9, .external_lex_state = 5}, + [2647] = {.lex_state = 9, .external_lex_state = 5}, + [2648] = {.lex_state = 9, .external_lex_state = 5}, + [2649] = {.lex_state = 9, .external_lex_state = 5}, + [2650] = {.lex_state = 9, .external_lex_state = 5}, + [2651] = {.lex_state = 9, .external_lex_state = 5}, + [2652] = {.lex_state = 9, .external_lex_state = 5}, + [2653] = {.lex_state = 9, .external_lex_state = 5}, + [2654] = {.lex_state = 9, .external_lex_state = 5}, + [2655] = {.lex_state = 127, .external_lex_state = 3}, + [2656] = {.lex_state = 9, .external_lex_state = 5}, + [2657] = {.lex_state = 9, .external_lex_state = 5}, + [2658] = {.lex_state = 127, .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}, + [2662] = {.lex_state = 9, .external_lex_state = 5}, + [2663] = {.lex_state = 9, .external_lex_state = 5}, + [2664] = {.lex_state = 128, .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}, + [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}, + [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}, + [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 = 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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [2951] = {.lex_state = 7, .external_lex_state = 5}, + [2952] = {.lex_state = 128, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [3076] = {.lex_state = 7, .external_lex_state = 6}, + [3077] = {.lex_state = 7, .external_lex_state = 6}, + [3078] = {.lex_state = 7, .external_lex_state = 5}, + [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}, + [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}, + [3090] = {.lex_state = 7, .external_lex_state = 6}, + [3091] = {.lex_state = 7, .external_lex_state = 6}, + [3092] = {.lex_state = 7, .external_lex_state = 6}, + [3093] = {.lex_state = 7, .external_lex_state = 6}, + [3094] = {.lex_state = 7, .external_lex_state = 6}, + [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}, + [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}, + [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}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -20047,7 +19725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [sym_glimmer_opening_tag] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_LT_SLASH] = ACTIONS(1), @@ -20165,87 +19842,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5783), - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -20276,539 +19952,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [2] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(174), + [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(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_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [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_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(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_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_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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(174), + [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(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_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [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_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(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(5019), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(231), - [anon_sym_export] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(237), - [anon_sym_namespace] = ACTIONS(239), + [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), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(243), + [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(245), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20826,163 +20496,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(249), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(251), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(261), - [anon_sym_get] = ACTIONS(263), - [anon_sym_set] = ACTIONS(263), - [anon_sym_declare] = ACTIONS(265), - [anon_sym_public] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_override] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_any] = ACTIONS(273), - [anon_sym_number] = ACTIONS(273), - [anon_sym_boolean] = ACTIONS(273), - [anon_sym_string] = ACTIONS(273), - [anon_sym_symbol] = ACTIONS(273), - [anon_sym_object] = ACTIONS(273), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [5] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(4829), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(281), + [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), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(285), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21000,163 +20668,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(287), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(289), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(291), - [anon_sym_readonly] = ACTIONS(293), - [anon_sym_get] = ACTIONS(295), - [anon_sym_set] = ACTIONS(295), - [anon_sym_declare] = ACTIONS(297), - [anon_sym_public] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_override] = ACTIONS(301), - [anon_sym_module] = ACTIONS(303), - [anon_sym_any] = ACTIONS(305), - [anon_sym_number] = ACTIONS(305), - [anon_sym_boolean] = ACTIONS(305), - [anon_sym_string] = ACTIONS(305), - [anon_sym_symbol] = ACTIONS(305), - [anon_sym_object] = ACTIONS(305), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [6] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(5019), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(231), - [anon_sym_export] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(237), - [anon_sym_namespace] = ACTIONS(239), + [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), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(277), + [anon_sym_namespace] = ACTIONS(279), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(245), + [anon_sym_let] = ACTIONS(283), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21174,163 +20840,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(249), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(251), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(285), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(287), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(261), - [anon_sym_get] = ACTIONS(263), - [anon_sym_set] = ACTIONS(263), - [anon_sym_declare] = ACTIONS(265), - [anon_sym_public] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_override] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_any] = ACTIONS(273), - [anon_sym_number] = ACTIONS(273), - [anon_sym_boolean] = ACTIONS(273), - [anon_sym_string] = ACTIONS(273), - [anon_sym_symbol] = ACTIONS(273), - [anon_sym_object] = ACTIONS(273), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(5019), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(231), - [anon_sym_export] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(237), - [anon_sym_namespace] = ACTIONS(239), + [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), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(245), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21348,163 +21012,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(249), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(251), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(261), - [anon_sym_get] = ACTIONS(263), - [anon_sym_set] = ACTIONS(263), - [anon_sym_declare] = ACTIONS(265), - [anon_sym_public] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_override] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_any] = ACTIONS(273), - [anon_sym_number] = ACTIONS(273), - [anon_sym_boolean] = ACTIONS(273), - [anon_sym_string] = ACTIONS(273), - [anon_sym_symbol] = ACTIONS(273), - [anon_sym_object] = ACTIONS(273), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [8] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(4829), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(311), - [anon_sym_export] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(315), - [anon_sym_namespace] = ACTIONS(317), + [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), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(311), + [anon_sym_namespace] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(319), + [anon_sym_let] = ACTIONS(315), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21522,307 +21184,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(321), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(323), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(317), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(319), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(325), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_get] = ACTIONS(329), - [anon_sym_set] = ACTIONS(329), - [anon_sym_declare] = ACTIONS(331), - [anon_sym_public] = ACTIONS(333), - [anon_sym_private] = ACTIONS(333), - [anon_sym_protected] = ACTIONS(333), - [anon_sym_override] = ACTIONS(335), - [anon_sym_module] = ACTIONS(337), - [anon_sym_any] = ACTIONS(339), - [anon_sym_number] = ACTIONS(339), - [anon_sym_boolean] = ACTIONS(339), - [anon_sym_string] = ACTIONS(339), - [anon_sym_symbol] = ACTIONS(339), - [anon_sym_object] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(321), + [anon_sym_readonly] = ACTIONS(323), + [anon_sym_get] = ACTIONS(325), + [anon_sym_set] = ACTIONS(325), + [anon_sym_declare] = ACTIONS(327), + [anon_sym_public] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_override] = ACTIONS(331), + [anon_sym_module] = ACTIONS(333), + [anon_sym_any] = ACTIONS(335), + [anon_sym_number] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_string] = ACTIONS(335), + [anon_sym_symbol] = ACTIONS(335), + [anon_sym_object] = ACTIONS(335), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [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(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [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(3782), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_identifier] = ACTIONS(343), - [anon_sym_export] = ACTIONS(346), - [anon_sym_default] = ACTIONS(349), - [anon_sym_type] = ACTIONS(351), - [anon_sym_namespace] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_typeof] = ACTIONS(360), - [anon_sym_import] = ACTIONS(363), - [anon_sym_with] = ACTIONS(366), - [anon_sym_var] = ACTIONS(369), - [anon_sym_let] = ACTIONS(372), - [anon_sym_const] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(378), - [anon_sym_if] = ACTIONS(381), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_for] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_await] = ACTIONS(396), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(402), - [anon_sym_try] = ACTIONS(405), - [anon_sym_break] = ACTIONS(408), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_debugger] = ACTIONS(414), - [anon_sym_return] = ACTIONS(417), - [anon_sym_throw] = ACTIONS(420), - [anon_sym_case] = ACTIONS(349), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(426), - [sym_glimmer_opening_tag] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_SQUOTE] = ACTIONS(435), - [anon_sym_class] = ACTIONS(438), - [anon_sym_async] = ACTIONS(441), - [anon_sym_function] = ACTIONS(444), - [anon_sym_new] = ACTIONS(447), - [anon_sym_using] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(360), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_void] = ACTIONS(360), - [anon_sym_delete] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(462), - [sym_number] = ACTIONS(465), - [sym_private_property_identifier] = ACTIONS(468), - [sym_this] = ACTIONS(471), - [sym_super] = ACTIONS(471), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_null] = ACTIONS(471), - [sym_undefined] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_static] = ACTIONS(480), - [anon_sym_readonly] = ACTIONS(480), - [anon_sym_get] = ACTIONS(480), - [anon_sym_set] = ACTIONS(480), - [anon_sym_declare] = ACTIONS(483), - [anon_sym_public] = ACTIONS(480), - [anon_sym_private] = ACTIONS(480), - [anon_sym_protected] = ACTIONS(480), - [anon_sym_override] = ACTIONS(480), - [anon_sym_module] = ACTIONS(486), - [anon_sym_any] = ACTIONS(480), - [anon_sym_number] = ACTIONS(480), - [anon_sym_boolean] = ACTIONS(480), - [anon_sym_string] = ACTIONS(480), - [anon_sym_symbol] = ACTIONS(480), - [anon_sym_object] = ACTIONS(480), - [anon_sym_abstract] = ACTIONS(489), - [anon_sym_interface] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(495), + [aux_sym_export_statement_repeat1] = STATE(3919), + [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), }, [10] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(498), + [anon_sym_default] = ACTIONS(491), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21844,146 +21502,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(498), + [anon_sym_case] = ACTIONS(491), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [11] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [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), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(502), + [anon_sym_default] = ACTIONS(495), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22005,146 +21661,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(502), + [anon_sym_case] = ACTIONS(495), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [12] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [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), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(506), + [anon_sym_default] = ACTIONS(499), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22166,146 +21820,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(506), + [anon_sym_case] = ACTIONS(499), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [13] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [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(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [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(3782), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(510), + [anon_sym_default] = ACTIONS(503), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(505), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22327,145 +21979,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(510), + [anon_sym_case] = ACTIONS(503), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [14] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), + [ts_builtin_sym_end] = ACTIONS(507), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22489,137 +22139,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [15] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [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(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [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(3782), - [ts_builtin_sym_end] = ACTIONS(516), + [aux_sym_export_statement_repeat1] = STATE(3919), + [ts_builtin_sym_end] = ACTIONS(509), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22648,142 +22296,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [16] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [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(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [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(3782), - [ts_builtin_sym_end] = ACTIONS(518), + [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), + [anon_sym_RBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22807,142 +22453,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [17] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(513), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22966,142 +22610,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [18] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3782), - [ts_builtin_sym_end] = ACTIONS(518), + [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), [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), @@ -23125,142 +22767,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [19] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [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(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [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(3782), + [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), - [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23284,142 +22924,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [20] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [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(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [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(3782), + [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), - [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(519), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23443,142 +23081,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [21] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(521), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23602,142 +23238,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [22] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(523), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23761,142 +23395,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [23] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23920,142 +23552,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [24] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [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(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [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(3782), + [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), - [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24079,142 +23709,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [25] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24238,142 +23866,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [26] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24397,142 +24023,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [27] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24556,142 +24180,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [28] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(30), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24715,142 +24337,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [29] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(27), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24874,142 +24494,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [30] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(544), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -25033,154 +24651,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [31] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(871), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), + [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(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25190,154 +24806,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [32] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(5187), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25347,135 +24961,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(805), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25504,135 +25116,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [34] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(767), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25661,135 +25271,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, [35] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(842), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25818,154 +25581,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [36] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(856), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [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(25), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25975,135 +25736,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [37] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(891), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26132,135 +25891,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [38] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26289,135 +26046,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [39] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(782), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26446,135 +26201,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [40] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(791), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26603,135 +26356,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [41] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(793), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26760,135 +26511,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [42] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26917,135 +26666,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [43] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(800), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27074,135 +26821,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [44] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(781), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), @@ -27231,135 +26976,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [45] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(801), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27388,154 +27131,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [46] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(801), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27545,154 +27286,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [47] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(805), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27702,154 +27441,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [48] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(4760), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27859,154 +27596,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(856), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28016,154 +27751,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [50] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(781), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28173,154 +27906,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [51] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), + [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(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28330,311 +28061,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [52] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(630), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), }, - [53] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(842), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28644,154 +28371,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [54] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(891), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28801,154 +28526,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [55] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28958,154 +28681,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [56] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(782), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29115,154 +28836,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [57] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(791), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29272,154 +28991,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [58] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(793), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29429,154 +29146,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [59] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29586,154 +29301,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [60] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(800), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29743,135 +29456,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [61] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29900,763 +29766,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [62] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(672), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [63] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(674), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), }, [64] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(676), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(678), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [66] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(871), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -30685,939 +30076,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [67] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(680), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [68] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(682), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [69] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(684), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [70] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [71] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5211), - [sym_optional_tuple_parameter] = STATE(5211), - [sym_optional_type] = STATE(5211), - [sym_rest_type] = STATE(5211), - [sym__tuple_type_member] = STATE(5211), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(690), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [72] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(801), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), + [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(588), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31627,154 +30231,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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), }, - [73] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(805), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31784,154 +30386,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(856), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31941,154 +31316,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(781), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32098,154 +31471,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32255,154 +31626,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(871), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32412,154 +31781,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(842), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32569,154 +31936,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(891), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32726,154 +32091,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32883,154 +32246,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(782), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33040,154 +32401,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(791), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33197,154 +32556,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(793), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33354,154 +32711,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33511,154 +32866,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(800), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33668,154 +33021,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(5616), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [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), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33825,21362 +33176,21021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_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_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(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_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), + [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(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [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_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(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [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_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(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [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_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(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4353), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(751), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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_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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4354), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(757), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4200), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(759), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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(790), + [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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5747), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4562), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(761), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(769), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(771), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(783), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(791), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(799), - [anon_sym_number] = ACTIONS(799), - [anon_sym_boolean] = ACTIONS(799), - [anon_sym_string] = ACTIONS(799), - [anon_sym_symbol] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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(792), + [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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5607), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4562), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(761), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(769), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(771), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(783), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(791), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(799), - [anon_sym_number] = ACTIONS(799), - [anon_sym_boolean] = ACTIONS(799), - [anon_sym_string] = ACTIONS(799), - [anon_sym_symbol] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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(794), + [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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4204), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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_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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4209), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(805), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_COMMA] = ACTIONS(126), + [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(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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_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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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(800), + [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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4364), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(807), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5747), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4484), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(761), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(769), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(771), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(783), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(791), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(799), - [anon_sym_number] = ACTIONS(799), - [anon_sym_boolean] = ACTIONS(799), - [anon_sym_string] = ACTIONS(799), - [anon_sym_symbol] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [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(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_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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4562), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(128), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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), + [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_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), }, [103] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_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_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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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), }, [104] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4589), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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), + [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_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), }, [105] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(855), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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), + [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_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), }, [106] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4503), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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), + [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_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), }, [107] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_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_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_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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4604), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(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), + [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), }, [109] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4484), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(117), + [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_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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), }, [110] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(861), - [anon_sym_export] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(869), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(873), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - [anon_sym_object] = ACTIONS(863), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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), }, [113] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(142), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_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(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_yield] = ACTIONS(142), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [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), + [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(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(864), + [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(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(874), + [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(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_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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(864), + [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(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(874), + [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(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_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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(142), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_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_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(861), - [anon_sym_export] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(869), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(873), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - [anon_sym_object] = ACTIONS(863), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_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_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(117), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(885), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_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), }, [124] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [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(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_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), }, [125] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(885), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(883), + [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), }, [126] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [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(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_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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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), }, [127] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [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(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_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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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), }, [128] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(924), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(914), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_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(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_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [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(913), + [anon_sym_function] = ACTIONS(710), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(924), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(914), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(930), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [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(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_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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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), }, [131] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(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_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [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(913), + [anon_sym_function] = ACTIONS(710), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_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__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4395), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5565), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [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(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_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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), }, [133] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(932), - [anon_sym_export] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(940), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(934), - [anon_sym_get] = ACTIONS(934), - [anon_sym_set] = ACTIONS(934), - [anon_sym_declare] = ACTIONS(934), - [anon_sym_public] = ACTIONS(934), - [anon_sym_private] = ACTIONS(934), - [anon_sym_protected] = ACTIONS(934), - [anon_sym_override] = ACTIONS(934), - [anon_sym_module] = ACTIONS(934), - [anon_sym_any] = ACTIONS(934), - [anon_sym_number] = ACTIONS(934), - [anon_sym_boolean] = ACTIONS(934), - [anon_sym_string] = ACTIONS(934), - [anon_sym_symbol] = ACTIONS(934), - [anon_sym_object] = ACTIONS(934), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(117), + [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_in] = ACTIONS(120), + [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_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), }, [134] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(944), - [anon_sym_export] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(952), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(956), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(946), - [anon_sym_readonly] = ACTIONS(946), - [anon_sym_get] = ACTIONS(946), - [anon_sym_set] = ACTIONS(946), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(946), - [anon_sym_private] = ACTIONS(946), - [anon_sym_protected] = ACTIONS(946), - [anon_sym_override] = ACTIONS(946), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(946), - [anon_sym_number] = ACTIONS(946), - [anon_sym_boolean] = ACTIONS(946), - [anon_sym_string] = ACTIONS(946), - [anon_sym_symbol] = ACTIONS(946), - [anon_sym_object] = ACTIONS(946), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(925), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(117), + [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_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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), }, [136] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4048), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5474), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), + [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_in] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(949), + [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(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_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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), }, [138] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), + [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_in] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(949), + [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(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_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(932), - [anon_sym_export] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(940), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(934), - [anon_sym_get] = ACTIONS(934), - [anon_sym_set] = ACTIONS(934), - [anon_sym_declare] = ACTIONS(934), - [anon_sym_public] = ACTIONS(934), - [anon_sym_private] = ACTIONS(934), - [anon_sym_protected] = ACTIONS(934), - [anon_sym_override] = ACTIONS(934), - [anon_sym_module] = ACTIONS(934), - [anon_sym_any] = ACTIONS(934), - [anon_sym_number] = ACTIONS(934), - [anon_sym_boolean] = ACTIONS(934), - [anon_sym_string] = ACTIONS(934), - [anon_sym_symbol] = ACTIONS(934), - [anon_sym_object] = ACTIONS(934), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(925), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(944), - [anon_sym_export] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(952), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(956), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(946), - [anon_sym_readonly] = ACTIONS(946), - [anon_sym_get] = ACTIONS(946), - [anon_sym_set] = ACTIONS(946), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(946), - [anon_sym_private] = ACTIONS(946), - [anon_sym_protected] = ACTIONS(946), - [anon_sym_override] = ACTIONS(946), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(946), - [anon_sym_number] = ACTIONS(946), - [anon_sym_boolean] = ACTIONS(946), - [anon_sym_string] = ACTIONS(946), - [anon_sym_symbol] = ACTIONS(946), - [anon_sym_object] = ACTIONS(946), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_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_in] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(958), - [anon_sym_export] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(970), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(960), - [anon_sym_readonly] = ACTIONS(960), - [anon_sym_get] = ACTIONS(960), - [anon_sym_set] = ACTIONS(960), - [anon_sym_declare] = ACTIONS(960), - [anon_sym_public] = ACTIONS(960), - [anon_sym_private] = ACTIONS(960), - [anon_sym_protected] = ACTIONS(960), - [anon_sym_override] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_any] = ACTIONS(960), - [anon_sym_number] = ACTIONS(960), - [anon_sym_boolean] = ACTIONS(960), - [anon_sym_string] = ACTIONS(960), - [anon_sym_symbol] = ACTIONS(960), - [anon_sym_object] = ACTIONS(960), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_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(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_in] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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), }, [143] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_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(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_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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), }, [145] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [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(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_in] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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), }, [146] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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(120), + [anon_sym_COLON] = ACTIONS(834), + [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), }, [147] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(958), - [anon_sym_export] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(970), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(960), - [anon_sym_readonly] = ACTIONS(960), - [anon_sym_get] = ACTIONS(960), - [anon_sym_set] = ACTIONS(960), - [anon_sym_declare] = ACTIONS(960), - [anon_sym_public] = ACTIONS(960), - [anon_sym_private] = ACTIONS(960), - [anon_sym_protected] = ACTIONS(960), - [anon_sym_override] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_any] = ACTIONS(960), - [anon_sym_number] = ACTIONS(960), - [anon_sym_boolean] = ACTIONS(960), - [anon_sym_string] = ACTIONS(960), - [anon_sym_symbol] = ACTIONS(960), - [anon_sym_object] = ACTIONS(960), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(120), + [anon_sym_of] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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), }, [148] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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), + [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(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_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_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(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_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(967), + [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_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), }, [150] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(969), + [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_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), }, [151] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(971), + [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_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), }, [152] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(973), + [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_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), }, [153] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(120), + [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), }, [154] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(975), + [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_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), }, [155] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(977), + [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_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), }, [156] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(979), + [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_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), }, [157] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(981), + [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_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), }, [158] = { - [sym_import] = STATE(3751), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5503), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5618), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1958), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4032), - [sym_pattern] = STATE(4827), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5393), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(988), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_typeof] = ACTIONS(994), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1000), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1002), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(1010), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1012), - [sym_number] = ACTIONS(1014), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1016), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1018), - [sym_false] = ACTIONS(1018), - [sym_null] = ACTIONS(1018), - [sym_undefined] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(1026), - [anon_sym_number] = ACTIONS(1026), - [anon_sym_boolean] = ACTIONS(1026), - [anon_sym_string] = ACTIONS(1026), - [anon_sym_symbol] = ACTIONS(1026), - [anon_sym_object] = ACTIONS(1026), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(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(120), + [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), }, [159] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(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_in] = ACTIONS(120), + [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), }, [161] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5706), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(4309), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(4507), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1044), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1052), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1058), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1062), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1064), - [anon_sym_number] = ACTIONS(1064), - [anon_sym_boolean] = ACTIONS(1064), - [anon_sym_string] = ACTIONS(1064), - [anon_sym_symbol] = ACTIONS(1064), - [anon_sym_object] = ACTIONS(1064), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1037), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(605), + [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_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(1045), + [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(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), + [sym_this] = ACTIONS(1051), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_null] = ACTIONS(776), + [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_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(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(3579), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(1982), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1066), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_typeof] = ACTIONS(1074), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1078), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1086), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_number] = ACTIONS(1090), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1092), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_undefined] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1100), - [anon_sym_number] = ACTIONS(1100), - [anon_sym_boolean] = ACTIONS(1100), - [anon_sym_string] = ACTIONS(1100), - [anon_sym_symbol] = ACTIONS(1100), - [anon_sym_object] = ACTIONS(1100), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(605), + [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_let] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(138), + [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_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1079), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [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(196), + [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(782), + [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(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(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1720), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_typeof] = ACTIONS(1106), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1108), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1112), - [sym_number] = ACTIONS(1114), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1116), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1062), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1122), - [anon_sym_number] = ACTIONS(1122), - [anon_sym_boolean] = ACTIONS(1122), - [anon_sym_string] = ACTIONS(1122), - [anon_sym_symbol] = ACTIONS(1122), - [anon_sym_object] = ACTIONS(1122), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(605), + [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_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_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1151), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_QMARK] = ACTIONS(782), + [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(3567), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_typeof] = ACTIONS(1132), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1144), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1150), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1166), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1170), - [anon_sym_number] = ACTIONS(1170), - [anon_sym_boolean] = ACTIONS(1170), - [anon_sym_string] = ACTIONS(1170), - [anon_sym_symbol] = ACTIONS(1170), - [anon_sym_object] = ACTIONS(1170), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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(3714), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_typeof] = ACTIONS(1178), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1188), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1194), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1204), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1206), - [anon_sym_number] = ACTIONS(1206), - [anon_sym_boolean] = ACTIONS(1206), - [anon_sym_string] = ACTIONS(1206), - [anon_sym_symbol] = ACTIONS(1206), - [anon_sym_object] = ACTIONS(1206), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(4305), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(4305), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1332), - [sym_subscript_expression] = STATE(1332), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(4305), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1332), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4306), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_namespace] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1218), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(1220), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1222), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1224), - [anon_sym_number] = ACTIONS(1224), - [anon_sym_boolean] = ACTIONS(1224), - [anon_sym_string] = ACTIONS(1224), - [anon_sym_symbol] = ACTIONS(1224), - [anon_sym_object] = ACTIONS(1224), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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(3567), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3654), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3654), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3654), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2502), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1387), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4306), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1226), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1228), - [anon_sym_namespace] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_typeof] = ACTIONS(1234), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1236), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1240), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1244), - [sym_number] = ACTIONS(1246), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1248), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [sym_null] = ACTIONS(1250), - [sym_undefined] = ACTIONS(1252), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1228), - [anon_sym_set] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1228), - [anon_sym_public] = ACTIONS(1228), - [anon_sym_private] = ACTIONS(1228), - [anon_sym_protected] = ACTIONS(1228), - [anon_sym_override] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_any] = ACTIONS(1256), - [anon_sym_number] = ACTIONS(1256), - [anon_sym_boolean] = ACTIONS(1256), - [anon_sym_string] = ACTIONS(1256), - [anon_sym_symbol] = ACTIONS(1256), - [anon_sym_object] = ACTIONS(1256), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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(3579), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(1982), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1258), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_typeof] = ACTIONS(1264), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1078), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1280), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_number] = ACTIONS(1090), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(1092), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_undefined] = ACTIONS(1288), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1290), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1292), - [anon_sym_number] = ACTIONS(1292), - [anon_sym_boolean] = ACTIONS(1292), - [anon_sym_string] = ACTIONS(1292), - [anon_sym_symbol] = ACTIONS(1292), - [anon_sym_object] = ACTIONS(1292), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(605), + [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_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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [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), + [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_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(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(3603), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2036), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1720), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_typeof] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1108), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1310), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1316), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1112), - [sym_number] = ACTIONS(1114), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(1116), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), - [sym_undefined] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1326), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1328), - [anon_sym_number] = ACTIONS(1328), - [anon_sym_boolean] = ACTIONS(1328), - [anon_sym_string] = ACTIONS(1328), - [anon_sym_symbol] = ACTIONS(1328), - [anon_sym_object] = ACTIONS(1328), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(605), + [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_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_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(782), + [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(3567), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1330), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1348), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1364), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1366), - [anon_sym_number] = ACTIONS(1366), - [anon_sym_boolean] = ACTIONS(1366), - [anon_sym_string] = ACTIONS(1366), - [anon_sym_symbol] = ACTIONS(1366), - [anon_sym_object] = ACTIONS(1366), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1337), + [sym_number] = ACTIONS(1339), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1341), + [sym_super] = ACTIONS(93), + [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_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_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(3648), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2413), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1368), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_typeof] = ACTIONS(1376), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1384), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_number] = ACTIONS(1402), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(1406), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_null] = ACTIONS(1408), - [sym_undefined] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1412), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_number] = ACTIONS(1414), - [anon_sym_boolean] = ACTIONS(1414), - [anon_sym_string] = ACTIONS(1414), - [anon_sym_symbol] = ACTIONS(1414), - [anon_sym_object] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_typeof] = ACTIONS(1357), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(138), + [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_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1367), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [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(196), + [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(782), + [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(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(3567), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(1418), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1420), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1424), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_number] = ACTIONS(1428), - [anon_sym_boolean] = ACTIONS(1428), - [anon_sym_string] = ACTIONS(1428), - [anon_sym_symbol] = ACTIONS(1428), - [anon_sym_object] = ACTIONS(1428), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_typeof] = ACTIONS(1393), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1279), + [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_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1403), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [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), + [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_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_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(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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1693), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(624), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1436), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [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), + [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_COMMA] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(617), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [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(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [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(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_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), + [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), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1429), [anon_sym_await] = ACTIONS(45), - [anon_sym_in] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(1427), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), + [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(1329), + [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_AMP] = 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(83), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__automatic_semicolon] = ACTIONS(1436), - [sym__ternary_qmark] = ACTIONS(1436), + [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), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1282), + [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), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1411), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_of] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_of] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__automatic_semicolon] = ACTIONS(1436), - [sym__ternary_qmark] = ACTIONS(1436), + [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_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1447), + [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_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_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(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_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), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1396), + [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), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1269), + [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(1436), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__automatic_semicolon] = ACTIONS(1436), - [sym__ternary_qmark] = ACTIONS(1436), + [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_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [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(1297), + [anon_sym_DASH] = ACTIONS(1297), + [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(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_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(3759), + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2058), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), - [anon_sym_satisfies] = ACTIONS(1434), - [anon_sym_implements] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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_satisfies] = ACTIONS(1427), + [anon_sym_implements] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [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_STAR] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(820), + [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_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(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1471), + [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_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_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(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_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_of] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [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), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1223), + [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_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [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_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [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(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [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(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), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2383), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1436), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [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), + [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_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(820), + [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_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(1365), + [anon_sym_function] = ACTIONS(154), + [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_AMP] = 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(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(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_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_type] = ACTIONS(819), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [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), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(812), + [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_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [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_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [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(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [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(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(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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(158), + [anon_sym_RBRACE] = ACTIONS(158), + [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_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(158), + [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), }, [183] = { - [sym_declaration] = STATE(795), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(158), + [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_SEMI] = ACTIONS(158), + [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(870), + [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), }, [184] = { - [sym_declaration] = STATE(832), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [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_SEMI] = ACTIONS(158), + [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(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_declaration] = STATE(795), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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_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), }, [186] = { - [sym_declaration] = STATE(832), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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(832), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4078), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), + [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), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1529), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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_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(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(4060), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(4422), - [sym_lexical_declaration] = STATE(4422), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(4422), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(4422), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(4422), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(4422), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(4422), - [sym_abstract_class_declaration] = STATE(4422), - [sym_module] = STATE(4422), - [sym_internal_module] = STATE(2411), - [sym_import_alias] = STATE(4422), - [sym_interface_declaration] = STATE(4422), - [sym_enum_declaration] = STATE(4422), - [sym_type_alias_declaration] = STATE(4422), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4311), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1378), + [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_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_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1564), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(1570), - [anon_sym_interface] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1574), + [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_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(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), }, [189] = { - [sym_declaration] = STATE(4456), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(4422), - [sym_lexical_declaration] = STATE(4422), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(4422), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(4422), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(4422), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(4422), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(4422), - [sym_abstract_class_declaration] = STATE(4422), - [sym_module] = STATE(4422), - [sym_internal_module] = STATE(2411), - [sym_import_alias] = STATE(4422), - [sym_interface_declaration] = STATE(4422), - [sym_enum_declaration] = STATE(4422), - [sym_type_alias_declaration] = STATE(4422), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4311), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1378), + [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), + [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_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1564), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(1570), - [anon_sym_interface] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1574), + [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_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(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(795), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4078), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), + [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_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1529), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [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_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(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), }, [191] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [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_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(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_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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [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_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(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_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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [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_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(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_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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [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_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(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_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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3206), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1610), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), - [sym__ternary_qmark] = ACTIONS(161), + [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(939), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(158), + [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_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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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_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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3667), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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(909), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(158), + [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(915), + [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), }, [198] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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(925), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(158), + [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(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_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), }, [199] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1611), + [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(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_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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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(814), + [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_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_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_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), }, [201] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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(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(133), + [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_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_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), }, [202] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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(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(133), + [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(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), }, [203] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [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(814), + [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_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(225), + [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), }, [204] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5607), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1626), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(1630), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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), + [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_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(1621), + [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(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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5747), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1626), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(1630), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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), + [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_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(1621), + [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(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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_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_RPAREN] = ACTIONS(1627), + [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(1631), + [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(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_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), }, [207] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_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_RPAREN] = ACTIONS(1635), + [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(1631), + [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(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_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), }, [208] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5119), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5119), - [sym_optional_parameter] = STATE(5119), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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), + [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_RPAREN] = ACTIONS(1637), + [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(1631), + [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(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_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), }, [209] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_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_RPAREN] = ACTIONS(1639), + [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(1631), + [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(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_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), }, [210] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_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_RPAREN] = ACTIONS(1641), + [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(1631), + [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(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_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), }, [211] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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), + [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_RPAREN] = ACTIONS(758), + [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(1631), + [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(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_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), }, [212] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1648), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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), + [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_RPAREN] = ACTIONS(1643), + [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(1631), + [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(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_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), }, [213] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4879), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4879), - [sym_optional_parameter] = STATE(4879), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_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_RPAREN] = ACTIONS(1645), + [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(1631), + [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(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_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), }, [214] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1652), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_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_RPAREN] = ACTIONS(1647), + [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(1631), + [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(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_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), }, [215] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1656), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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), + [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(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_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), }, [216] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1658), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1660), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1658), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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_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(1631), + [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(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_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), }, [219] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1662), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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(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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1664), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1666), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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), + [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(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_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), }, [222] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_RBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1668), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [anon_sym_extends] = ACTIONS(1670), + [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), + [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(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_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), }, [223] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_statement_block] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_as] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1678), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_QMARK_DOT] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_GT_GT_GT] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_CARET] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_QMARK_QMARK] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_satisfies] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [sym__automatic_semicolon] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1672), + [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), + [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(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_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), }, [225] = { - [sym_statement_block] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_as] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_QMARK_DOT] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_GT_GT_GT] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_CARET] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_QMARK_QMARK] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_satisfies] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [sym__automatic_semicolon] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1672), + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [anon_sym_extends] = ACTIONS(1670), - [anon_sym_PIPE_RBRACE] = ACTIONS(1668), - [sym__automatic_semicolon] = ACTIONS(1668), + [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_statement_block] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_as] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_QMARK_DOT] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_GT_GT_GT] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_CARET] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_QMARK_QMARK] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_satisfies] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [sym__automatic_semicolon] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1672), + [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), + [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(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_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), }, [228] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5203), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5203), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5203), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_mapped_type_clause] = STATE(5612), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_namespace] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_RBRACK] = ACTIONS(1694), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1696), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_readonly] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_declare] = ACTIONS(1684), - [anon_sym_public] = ACTIONS(1684), - [anon_sym_private] = ACTIONS(1684), - [anon_sym_protected] = ACTIONS(1684), - [anon_sym_override] = ACTIONS(1684), - [anon_sym_module] = ACTIONS(1684), - [anon_sym_any] = ACTIONS(1684), - [anon_sym_number] = ACTIONS(1684), - [anon_sym_boolean] = ACTIONS(1684), - [anon_sym_string] = ACTIONS(1684), - [anon_sym_symbol] = ACTIONS(1684), - [anon_sym_object] = ACTIONS(1684), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_namespace] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_COMMA] = ACTIONS(1695), + [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(1693), + [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(1693), + [anon_sym_DOT] = ACTIONS(1693), + [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_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_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_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_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(1693), + [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(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_EQ] = ACTIONS(1708), - [anon_sym_as] = ACTIONS(1706), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1706), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_QMARK_DOT] = ACTIONS(1710), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1710), - [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_GT_GT] = ACTIONS(1706), - [anon_sym_GT_GT_GT] = ACTIONS(1710), - [anon_sym_LT_LT] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_PERCENT] = ACTIONS(1710), - [anon_sym_STAR_STAR] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1710), - [anon_sym_EQ_EQ] = ACTIONS(1706), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1710), - [anon_sym_BANG_EQ] = ACTIONS(1706), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1710), - [anon_sym_GT_EQ] = ACTIONS(1710), - [anon_sym_QMARK_QMARK] = ACTIONS(1710), - [anon_sym_instanceof] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_satisfies] = ACTIONS(1706), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(1712), - [sym__ternary_qmark] = ACTIONS(1710), + [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), + [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_QMARK_DOT] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1701), + [anon_sym_GT_GT_GT] = ACTIONS(1699), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1701), + [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_PERCENT] = ACTIONS(1699), + [anon_sym_STAR_STAR] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1701), + [anon_sym_LT_EQ] = ACTIONS(1699), + [anon_sym_EQ_EQ] = ACTIONS(1701), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1701), + [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), + [sym__ternary_qmark] = ACTIONS(1699), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1709), + [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(1707), + [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(1707), + [anon_sym_DOT] = ACTIONS(1707), + [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_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_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_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_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(1707), + [anon_sym_interface] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [sym__automatic_semicolon] = ACTIONS(1711), + [sym__ternary_qmark] = ACTIONS(1709), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5203), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5203), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5203), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1721), - [anon_sym_export] = ACTIONS(1723), - [anon_sym_type] = ACTIONS(1723), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_RBRACK] = ACTIONS(1694), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1727), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_readonly] = ACTIONS(1723), - [anon_sym_get] = ACTIONS(1723), - [anon_sym_set] = ACTIONS(1723), - [anon_sym_declare] = ACTIONS(1723), - [anon_sym_public] = ACTIONS(1723), - [anon_sym_private] = ACTIONS(1723), - [anon_sym_protected] = ACTIONS(1723), - [anon_sym_override] = ACTIONS(1723), - [anon_sym_module] = ACTIONS(1723), - [anon_sym_any] = ACTIONS(1723), - [anon_sym_number] = ACTIONS(1723), - [anon_sym_boolean] = ACTIONS(1723), - [anon_sym_string] = ACTIONS(1723), - [anon_sym_symbol] = ACTIONS(1723), - [anon_sym_object] = ACTIONS(1723), + [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_AMP] = 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), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_namespace] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1733), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_with] = ACTIONS(1733), - [anon_sym_var] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_switch] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_await] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_debugger] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_throw] = ACTIONS(1733), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [sym_glimmer_opening_tag] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_function] = ACTIONS(1733), - [anon_sym_QMARK_DOT] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_using] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1733), - [anon_sym_GT_GT_GT] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_PERCENT] = ACTIONS(1731), - [anon_sym_STAR_STAR] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1733), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1733), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1731), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_QMARK_QMARK] = ACTIONS(1731), - [anon_sym_instanceof] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_delete] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_number] = ACTIONS(1731), - [sym_private_property_identifier] = ACTIONS(1731), - [sym_this] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_true] = ACTIONS(1733), - [sym_false] = ACTIONS(1733), - [sym_null] = ACTIONS(1733), - [sym_undefined] = ACTIONS(1733), - [anon_sym_AT] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_readonly] = ACTIONS(1733), - [anon_sym_get] = ACTIONS(1733), - [anon_sym_set] = ACTIONS(1733), - [anon_sym_declare] = ACTIONS(1733), - [anon_sym_public] = ACTIONS(1733), - [anon_sym_private] = ACTIONS(1733), - [anon_sym_protected] = ACTIONS(1733), - [anon_sym_override] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_any] = ACTIONS(1733), - [anon_sym_number] = ACTIONS(1733), - [anon_sym_boolean] = ACTIONS(1733), - [anon_sym_string] = ACTIONS(1733), - [anon_sym_symbol] = ACTIONS(1733), - [anon_sym_object] = ACTIONS(1733), - [anon_sym_abstract] = ACTIONS(1733), - [anon_sym_satisfies] = ACTIONS(1733), - [anon_sym_interface] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [sym__automatic_semicolon] = ACTIONS(1731), - [sym__ternary_qmark] = ACTIONS(1731), + [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_AMP] = 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), }, [233] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1714), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [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_AMP] = 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), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_typeof] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_var] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_in] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_debugger] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [sym_glimmer_opening_tag] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1737), - [anon_sym_QMARK_DOT] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_GT_GT_GT] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_PERCENT] = ACTIONS(1735), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_QMARK_QMARK] = ACTIONS(1735), - [anon_sym_instanceof] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1735), - [sym_number] = ACTIONS(1735), - [sym_private_property_identifier] = ACTIONS(1735), - [sym_this] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_undefined] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_readonly] = ACTIONS(1737), - [anon_sym_get] = ACTIONS(1737), - [anon_sym_set] = ACTIONS(1737), - [anon_sym_declare] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_private] = ACTIONS(1737), - [anon_sym_protected] = ACTIONS(1737), - [anon_sym_override] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_object] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(1737), - [anon_sym_satisfies] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [sym__automatic_semicolon] = ACTIONS(1735), - [sym__ternary_qmark] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_as] = 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(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(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_GT] = ACTIONS(1739), + [anon_sym_DOT] = ACTIONS(1739), + [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_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_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_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_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(1739), + [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(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_var] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_debugger] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_throw] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [sym_glimmer_opening_tag] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_function] = ACTIONS(1741), - [anon_sym_QMARK_DOT] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_GT_GT_GT] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_STAR_STAR] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1741), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1741), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1739), - [anon_sym_GT_EQ] = ACTIONS(1739), - [anon_sym_QMARK_QMARK] = ACTIONS(1739), - [anon_sym_instanceof] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_delete] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_private_property_identifier] = ACTIONS(1739), - [sym_this] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_null] = ACTIONS(1741), - [sym_undefined] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_object] = ACTIONS(1741), - [anon_sym_abstract] = ACTIONS(1741), - [anon_sym_satisfies] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [sym__automatic_semicolon] = ACTIONS(1739), - [sym__ternary_qmark] = ACTIONS(1739), + [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] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1743), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [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(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), - [sym_glimmer_opening_tag] = 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_AMP] = 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), + [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), + [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_QMARK_DOT] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1763), + [anon_sym_using] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1765), + [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_PERCENT] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [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), + [sym__ternary_qmark] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [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), - [sym_glimmer_opening_tag] = 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_AMP] = 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_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), + [anon_sym_export] = 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_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_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), [sym_html_comment] = ACTIONS(5), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1773), - [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(1771), - [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), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1771), - [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(1773), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_using] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_PIPE_PIPE] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_GT_GT_GT] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1773), - [anon_sym_STAR_STAR] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1773), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1773), - [anon_sym_QMARK_QMARK] = ACTIONS(1773), - [anon_sym_instanceof] = ACTIONS(1771), - [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(1771), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), - [sym__ternary_qmark] = ACTIONS(1773), + [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(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_var] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_debugger] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1781), - [anon_sym_GT_GT_GT] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_PERCENT] = ACTIONS(1783), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_QMARK_QMARK] = ACTIONS(1783), - [anon_sym_instanceof] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_void] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1777), - [sym_number] = ACTIONS(1777), - [sym_private_property_identifier] = ACTIONS(1777), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_abstract] = ACTIONS(1779), - [anon_sym_satisfies] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(1785), - [sym__ternary_qmark] = ACTIONS(1783), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [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_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_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_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_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_EQ_EQ] = ACTIONS(1799), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), + [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_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_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(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_export] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_COMMA] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_typeof] = ACTIONS(1789), - [anon_sym_import] = ACTIONS(1789), - [anon_sym_with] = ACTIONS(1789), - [anon_sym_var] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_switch] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_do] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_debugger] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_throw] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1789), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [sym_glimmer_opening_tag] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1789), - [anon_sym_using] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1793), - [anon_sym_PIPE_PIPE] = ACTIONS(1793), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1793), - [anon_sym_LT_LT] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1789), - [anon_sym_PERCENT] = ACTIONS(1793), - [anon_sym_STAR_STAR] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1793), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1793), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1793), - [anon_sym_GT_EQ] = ACTIONS(1793), - [anon_sym_QMARK_QMARK] = ACTIONS(1793), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_void] = ACTIONS(1789), - [anon_sym_delete] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1787), - [sym_number] = ACTIONS(1787), - [sym_private_property_identifier] = ACTIONS(1787), - [sym_this] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_null] = ACTIONS(1789), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_readonly] = ACTIONS(1789), - [anon_sym_get] = ACTIONS(1789), - [anon_sym_set] = ACTIONS(1789), - [anon_sym_declare] = ACTIONS(1789), - [anon_sym_public] = ACTIONS(1789), - [anon_sym_private] = ACTIONS(1789), - [anon_sym_protected] = ACTIONS(1789), - [anon_sym_override] = ACTIONS(1789), - [anon_sym_module] = ACTIONS(1789), - [anon_sym_any] = ACTIONS(1789), - [anon_sym_number] = ACTIONS(1789), - [anon_sym_boolean] = ACTIONS(1789), - [anon_sym_string] = ACTIONS(1789), - [anon_sym_symbol] = ACTIONS(1789), - [anon_sym_object] = ACTIONS(1789), - [anon_sym_abstract] = ACTIONS(1789), - [anon_sym_satisfies] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [sym__automatic_semicolon] = ACTIONS(1795), - [sym__ternary_qmark] = ACTIONS(1793), - [sym_html_comment] = ACTIONS(5), - }, - [242] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(4895), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4531), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(4907), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_RBRACK] = ACTIONS(1797), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [sym_html_comment] = ACTIONS(5), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), + [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(1799), - [anon_sym_typeof] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_with] = ACTIONS(1801), - [anon_sym_var] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_switch] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_in] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_debugger] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_throw] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [sym_glimmer_opening_tag] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_DOT] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_function] = ACTIONS(1801), + [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(1801), - [anon_sym_using] = ACTIONS(1801), + [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(1803), + [anon_sym_GT_GT] = ACTIONS(1807), [anon_sym_GT_GT_GT] = ACTIONS(1805), [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1807), [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1801), + [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(1801), + [anon_sym_LT] = ACTIONS(1807), [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_EQ_EQ] = ACTIONS(1807), [anon_sym_EQ_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1803), + [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(1803), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_delete] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_number] = ACTIONS(1799), - [sym_private_property_identifier] = ACTIONS(1799), - [sym_this] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_undefined] = ACTIONS(1801), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_readonly] = ACTIONS(1801), - [anon_sym_get] = ACTIONS(1801), - [anon_sym_set] = ACTIONS(1801), - [anon_sym_declare] = ACTIONS(1801), - [anon_sym_public] = ACTIONS(1801), - [anon_sym_private] = ACTIONS(1801), - [anon_sym_protected] = ACTIONS(1801), - [anon_sym_override] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_any] = ACTIONS(1801), - [anon_sym_number] = ACTIONS(1801), - [anon_sym_boolean] = ACTIONS(1801), - [anon_sym_string] = ACTIONS(1801), - [anon_sym_symbol] = ACTIONS(1801), - [anon_sym_object] = ACTIONS(1801), - [anon_sym_abstract] = ACTIONS(1801), - [anon_sym_satisfies] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1807), + [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), }, - [244] = { - [sym_import] = STATE(3759), - [sym_variable_declaration] = STATE(313), - [sym_lexical_declaration] = STATE(313), - [sym_empty_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5020), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5020), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5020), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5613), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1809), + [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_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(99), + [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), @@ -55197,323 +54207,760 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [anon_sym_export] = ACTIONS(1835), [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), [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_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_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), - [sym_glimmer_opening_tag] = ACTIONS(1831), + [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_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_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_GT_GT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1833), + [anon_sym_LT_LT] = ACTIONS(1833), [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1833), [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_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_EQ_EQ] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1833), [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_BANG_EQ_EQ] = ACTIONS(1833), + [anon_sym_GT_EQ] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1833), [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_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_satisfies] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [sym__automatic_semicolon] = ACTIONS(1839), - [sym__ternary_qmark] = ACTIONS(1837), + [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(1841), - [sym_identifier] = ACTIONS(1843), - [anon_sym_export] = ACTIONS(1843), + [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), + [sym__automatic_semicolon] = ACTIONS(1839), + [sym__ternary_qmark] = ACTIONS(1839), + [sym_html_comment] = ACTIONS(5), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), [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_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_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), - [sym_glimmer_opening_tag] = ACTIONS(1841), + [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_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_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_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1843), [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_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_EQ_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), [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_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_QMARK_QMARK] = ACTIONS(1843), [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_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_satisfies] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(1849), - [sym__ternary_qmark] = ACTIONS(1847), + [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), }, - [247] = { - [sym_import] = STATE(3759), - [sym_variable_declaration] = STATE(314), - [sym_lexical_declaration] = STATE(314), - [sym_empty_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(2078), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5020), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5020), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5020), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5989), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1809), + [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_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(99), + [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), @@ -55530,339 +54977,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1811), [anon_sym_symbol] = ACTIONS(1811), [anon_sym_object] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_as] = ACTIONS(1704), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_QMARK_DOT] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_GT_GT_GT] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_STAR_STAR] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1704), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1702), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_QMARK_QMARK] = ACTIONS(1702), - [anon_sym_instanceof] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_satisfies] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(1851), - [sym__ternary_qmark] = ACTIONS(1702), - [sym_html_comment] = ACTIONS(5), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_QMARK_DOT] = ACTIONS(1853), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_STAR_STAR] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_QMARK_QMARK] = ACTIONS(1853), - [anon_sym_instanceof] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_satisfies] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [sym__automatic_semicolon] = ACTIONS(1853), - [sym__ternary_qmark] = ACTIONS(1853), + [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(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_QMARK_DOT] = ACTIONS(1853), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_STAR_STAR] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_QMARK_QMARK] = ACTIONS(1853), - [anon_sym_instanceof] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_satisfies] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), + [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(1853), + [sym__ternary_qmark] = ACTIONS(1855), [sym_html_comment] = ACTIONS(5), }, [251] = { @@ -55903,7 +55133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1861), [anon_sym_yield] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), [anon_sym_GT] = ACTIONS(1863), [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DQUOTE] = ACTIONS(1859), @@ -56014,7 +55243,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1871), [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(1869), - [sym_glimmer_opening_tag] = ACTIONS(1869), [anon_sym_GT] = ACTIONS(1871), [anon_sym_DOT] = ACTIONS(1871), [anon_sym_DQUOTE] = ACTIONS(1869), @@ -56091,13 +55319,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1873), [sym_identifier] = ACTIONS(1875), [anon_sym_export] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1877), [anon_sym_default] = ACTIONS(1875), [anon_sym_type] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1877), [anon_sym_namespace] = ACTIONS(1875), [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1879), [anon_sym_RBRACE] = ACTIONS(1873), [anon_sym_typeof] = ACTIONS(1875), [anon_sym_import] = ACTIONS(1875), @@ -56113,7 +55341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1873), [anon_sym_await] = ACTIONS(1875), - [anon_sym_in] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1877), [anon_sym_while] = ACTIONS(1875), [anon_sym_do] = ACTIONS(1875), [anon_sym_try] = ACTIONS(1875), @@ -56125,39 +55353,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1875), [anon_sym_yield] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1875), + [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_async] = ACTIONS(1875), [anon_sym_function] = ACTIONS(1875), - [anon_sym_QMARK_DOT] = ACTIONS(1873), + [anon_sym_QMARK_DOT] = ACTIONS(1879), [anon_sym_new] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_PIPE_PIPE] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1875), - [anon_sym_GT_GT_GT] = ACTIONS(1873), - [anon_sym_LT_LT] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_CARET] = ACTIONS(1873), - [anon_sym_PIPE] = 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(1873), - [anon_sym_STAR_STAR] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_STAR_STAR] = ACTIONS(1879), [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1873), - [anon_sym_EQ_EQ] = ACTIONS(1875), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1873), - [anon_sym_GT_EQ] = ACTIONS(1873), - [anon_sym_QMARK_QMARK] = ACTIONS(1873), - [anon_sym_instanceof] = 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), @@ -56191,51992 +55418,51905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1875), [anon_sym_object] = ACTIONS(1875), [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_satisfies] = ACTIONS(1875), + [anon_sym_satisfies] = ACTIONS(1877), [anon_sym_interface] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), - [sym__automatic_semicolon] = ACTIONS(1873), - [sym__ternary_qmark] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(1879), + [sym__ternary_qmark] = ACTIONS(1879), [sym_html_comment] = ACTIONS(5), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_typeof] = ACTIONS(1879), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_with] = ACTIONS(1879), - [anon_sym_var] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_await] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_debugger] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_throw] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1877), - [sym_glimmer_opening_tag] = ACTIONS(1877), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_function] = ACTIONS(1879), - [anon_sym_QMARK_DOT] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_AMP_AMP] = ACTIONS(1883), - [anon_sym_PIPE_PIPE] = ACTIONS(1883), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1883), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1883), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1883), - [anon_sym_STAR_STAR] = ACTIONS(1883), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1883), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1883), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1883), - [anon_sym_GT_EQ] = ACTIONS(1883), - [anon_sym_QMARK_QMARK] = ACTIONS(1883), - [anon_sym_instanceof] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_void] = ACTIONS(1879), - [anon_sym_delete] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1877), - [sym_number] = ACTIONS(1877), - [sym_private_property_identifier] = ACTIONS(1877), - [sym_this] = ACTIONS(1879), - [sym_super] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), - [sym_undefined] = ACTIONS(1879), - [anon_sym_AT] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_readonly] = ACTIONS(1879), - [anon_sym_get] = ACTIONS(1879), - [anon_sym_set] = ACTIONS(1879), - [anon_sym_declare] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [anon_sym_override] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_any] = ACTIONS(1879), - [anon_sym_number] = ACTIONS(1879), - [anon_sym_boolean] = ACTIONS(1879), - [anon_sym_string] = ACTIONS(1879), - [anon_sym_symbol] = ACTIONS(1879), - [anon_sym_object] = ACTIONS(1879), - [anon_sym_abstract] = ACTIONS(1879), - [anon_sym_satisfies] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [sym__automatic_semicolon] = ACTIONS(1885), - [sym__ternary_qmark] = ACTIONS(1883), + [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_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] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1889), + [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), + [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_COMMA] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(1889), - [anon_sym_import] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_debugger] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_throw] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [sym_glimmer_opening_tag] = ACTIONS(1887), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_function] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1889), - [anon_sym_using] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_PIPE_PIPE] = ACTIONS(1893), - [anon_sym_GT_GT] = ACTIONS(1891), - [anon_sym_GT_GT_GT] = ACTIONS(1893), - [anon_sym_LT_LT] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1893), - [anon_sym_STAR_STAR] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ] = ACTIONS(1891), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1893), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_QMARK_QMARK] = ACTIONS(1893), - [anon_sym_instanceof] = ACTIONS(1891), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_void] = ACTIONS(1889), - [anon_sym_delete] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1887), - [sym_number] = ACTIONS(1887), - [sym_private_property_identifier] = ACTIONS(1887), - [sym_this] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_undefined] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_readonly] = ACTIONS(1889), - [anon_sym_get] = ACTIONS(1889), - [anon_sym_set] = ACTIONS(1889), - [anon_sym_declare] = ACTIONS(1889), - [anon_sym_public] = ACTIONS(1889), - [anon_sym_private] = ACTIONS(1889), - [anon_sym_protected] = ACTIONS(1889), - [anon_sym_override] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1889), - [anon_sym_number] = ACTIONS(1889), - [anon_sym_boolean] = ACTIONS(1889), - [anon_sym_string] = ACTIONS(1889), - [anon_sym_symbol] = ACTIONS(1889), - [anon_sym_object] = ACTIONS(1889), - [anon_sym_abstract] = ACTIONS(1889), - [anon_sym_satisfies] = ACTIONS(1891), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [sym__automatic_semicolon] = ACTIONS(1895), - [sym__ternary_qmark] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1893), + [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(1895), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(154), + [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), + [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), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1897), + [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), + [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_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_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(154), [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1897), - [anon_sym_STAR_STAR] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_QMARK_QMARK] = ACTIONS(1897), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_satisfies] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym__ternary_qmark] = ACTIONS(1897), + [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(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), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_QMARK_DOT] = ACTIONS(1907), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_AMP_AMP] = ACTIONS(1907), - [anon_sym_PIPE_PIPE] = ACTIONS(1907), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1907), - [anon_sym_LT_LT] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_PERCENT] = ACTIONS(1907), - [anon_sym_STAR_STAR] = ACTIONS(1907), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1907), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1907), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(1907), - [anon_sym_QMARK_QMARK] = ACTIONS(1907), - [anon_sym_instanceof] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_satisfies] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [sym__automatic_semicolon] = ACTIONS(1907), - [sym__ternary_qmark] = ACTIONS(1907), + [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), + [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_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_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(154), + [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), + [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), }, [258] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_RBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_extends] = ACTIONS(1670), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_RBRACK] = ACTIONS(1694), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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(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_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), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_as] = ACTIONS(1911), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(1911), - [anon_sym_import] = ACTIONS(1911), - [anon_sym_with] = ACTIONS(1911), - [anon_sym_var] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_switch] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_debugger] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_throw] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1909), - [sym_glimmer_opening_tag] = ACTIONS(1909), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_class] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_function] = ACTIONS(1911), - [anon_sym_QMARK_DOT] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1911), - [anon_sym_AMP_AMP] = ACTIONS(1909), - [anon_sym_PIPE_PIPE] = ACTIONS(1909), - [anon_sym_GT_GT] = ACTIONS(1911), - [anon_sym_GT_GT_GT] = ACTIONS(1909), - [anon_sym_LT_LT] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_PERCENT] = ACTIONS(1909), - [anon_sym_STAR_STAR] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_LT_EQ] = ACTIONS(1909), - [anon_sym_EQ_EQ] = ACTIONS(1911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1909), - [anon_sym_BANG_EQ] = ACTIONS(1911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1909), - [anon_sym_GT_EQ] = ACTIONS(1909), - [anon_sym_QMARK_QMARK] = ACTIONS(1909), - [anon_sym_instanceof] = ACTIONS(1911), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(1911), - [anon_sym_delete] = ACTIONS(1911), - [anon_sym_PLUS_PLUS] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1909), - [sym_number] = ACTIONS(1909), - [sym_private_property_identifier] = ACTIONS(1909), - [sym_this] = ACTIONS(1911), - [sym_super] = ACTIONS(1911), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [sym_null] = ACTIONS(1911), - [sym_undefined] = ACTIONS(1911), - [anon_sym_AT] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_readonly] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1911), - [anon_sym_private] = ACTIONS(1911), - [anon_sym_protected] = ACTIONS(1911), - [anon_sym_override] = ACTIONS(1911), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1911), - [anon_sym_number] = ACTIONS(1911), - [anon_sym_boolean] = ACTIONS(1911), - [anon_sym_string] = ACTIONS(1911), - [anon_sym_symbol] = ACTIONS(1911), - [anon_sym_object] = ACTIONS(1911), - [anon_sym_abstract] = ACTIONS(1911), - [anon_sym_satisfies] = ACTIONS(1911), - [anon_sym_interface] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [sym__automatic_semicolon] = ACTIONS(1909), - [sym__ternary_qmark] = ACTIONS(1909), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_namespace] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_typeof] = ACTIONS(1915), - [anon_sym_import] = ACTIONS(1915), - [anon_sym_with] = ACTIONS(1915), - [anon_sym_var] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_switch] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_await] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_debugger] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_throw] = ACTIONS(1915), - [anon_sym_case] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [sym_glimmer_opening_tag] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_class] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_function] = ACTIONS(1915), - [anon_sym_QMARK_DOT] = ACTIONS(1919), - [anon_sym_new] = ACTIONS(1915), - [anon_sym_using] = ACTIONS(1915), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1919), - [anon_sym_STAR_STAR] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1919), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1919), - [anon_sym_QMARK_QMARK] = ACTIONS(1919), - [anon_sym_instanceof] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_void] = ACTIONS(1915), - [anon_sym_delete] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1913), - [sym_number] = ACTIONS(1913), - [sym_private_property_identifier] = ACTIONS(1913), - [sym_this] = ACTIONS(1915), - [sym_super] = ACTIONS(1915), - [sym_true] = ACTIONS(1915), - [sym_false] = ACTIONS(1915), - [sym_null] = ACTIONS(1915), - [sym_undefined] = ACTIONS(1915), - [anon_sym_AT] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1915), - [anon_sym_readonly] = ACTIONS(1915), - [anon_sym_get] = ACTIONS(1915), - [anon_sym_set] = ACTIONS(1915), - [anon_sym_declare] = ACTIONS(1915), - [anon_sym_public] = ACTIONS(1915), - [anon_sym_private] = ACTIONS(1915), - [anon_sym_protected] = ACTIONS(1915), - [anon_sym_override] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_any] = ACTIONS(1915), - [anon_sym_number] = ACTIONS(1915), - [anon_sym_boolean] = ACTIONS(1915), - [anon_sym_string] = ACTIONS(1915), - [anon_sym_symbol] = ACTIONS(1915), - [anon_sym_object] = ACTIONS(1915), - [anon_sym_abstract] = ACTIONS(1915), - [anon_sym_satisfies] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [sym__automatic_semicolon] = ACTIONS(1921), - [sym__ternary_qmark] = ACTIONS(1919), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_namespace] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_typeof] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(1925), - [anon_sym_with] = ACTIONS(1925), - [anon_sym_var] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_switch] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_in] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_debugger] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_throw] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1923), - [sym_glimmer_opening_tag] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_class] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(1925), - [anon_sym_QMARK_DOT] = ACTIONS(1923), - [anon_sym_new] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_GT_GT_GT] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_PERCENT] = ACTIONS(1923), - [anon_sym_STAR_STAR] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_LT_EQ] = ACTIONS(1923), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1923), - [anon_sym_BANG_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(1923), - [anon_sym_QMARK_QMARK] = ACTIONS(1923), - [anon_sym_instanceof] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_void] = ACTIONS(1925), - [anon_sym_delete] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_number] = ACTIONS(1923), - [sym_private_property_identifier] = ACTIONS(1923), - [sym_this] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_undefined] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_readonly] = ACTIONS(1925), - [anon_sym_get] = ACTIONS(1925), - [anon_sym_set] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1925), - [anon_sym_public] = ACTIONS(1925), - [anon_sym_private] = ACTIONS(1925), - [anon_sym_protected] = ACTIONS(1925), - [anon_sym_override] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [anon_sym_object] = ACTIONS(1925), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_satisfies] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), - [sym__automatic_semicolon] = ACTIONS(1923), - [sym__ternary_qmark] = ACTIONS(1923), + [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_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_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_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_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_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), }, [263] = { - [sym_import] = STATE(3759), - [sym_variable_declaration] = STATE(312), - [sym_lexical_declaration] = STATE(312), - [sym_empty_statement] = STATE(312), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(2353), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5020), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5020), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5020), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5960), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(99), - [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), + [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), + [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_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_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_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_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), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(1927), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_default] = ACTIONS(1929), - [anon_sym_type] = ACTIONS(1929), - [anon_sym_as] = ACTIONS(1929), - [anon_sym_namespace] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_typeof] = ACTIONS(1929), - [anon_sym_import] = ACTIONS(1929), - [anon_sym_with] = ACTIONS(1929), - [anon_sym_var] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_switch] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_in] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_throw] = ACTIONS(1929), - [anon_sym_case] = ACTIONS(1929), - [anon_sym_yield] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1927), - [sym_glimmer_opening_tag] = ACTIONS(1927), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_class] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1929), - [anon_sym_function] = ACTIONS(1929), - [anon_sym_QMARK_DOT] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1929), - [anon_sym_using] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_GT_GT_GT] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_CARET] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_SLASH] = ACTIONS(1929), - [anon_sym_PERCENT] = ACTIONS(1927), - [anon_sym_STAR_STAR] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_LT_EQ] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1927), - [anon_sym_BANG_EQ] = ACTIONS(1929), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1927), - [anon_sym_QMARK_QMARK] = ACTIONS(1927), - [anon_sym_instanceof] = ACTIONS(1929), - [anon_sym_TILDE] = ACTIONS(1927), - [anon_sym_void] = ACTIONS(1929), - [anon_sym_delete] = ACTIONS(1929), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1927), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [sym_this] = ACTIONS(1929), - [sym_super] = ACTIONS(1929), - [sym_true] = ACTIONS(1929), - [sym_false] = ACTIONS(1929), - [sym_null] = ACTIONS(1929), - [sym_undefined] = ACTIONS(1929), - [anon_sym_AT] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_readonly] = ACTIONS(1929), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_declare] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_protected] = ACTIONS(1929), - [anon_sym_override] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_any] = ACTIONS(1929), - [anon_sym_number] = ACTIONS(1929), - [anon_sym_boolean] = ACTIONS(1929), - [anon_sym_string] = ACTIONS(1929), - [anon_sym_symbol] = ACTIONS(1929), - [anon_sym_object] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_satisfies] = ACTIONS(1929), - [anon_sym_interface] = ACTIONS(1929), - [anon_sym_enum] = ACTIONS(1929), - [sym__automatic_semicolon] = ACTIONS(1927), - [sym__ternary_qmark] = ACTIONS(1927), + [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(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_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), }, [265] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_RBRACK] = ACTIONS(1931), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(1926), + [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_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_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_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), }, [266] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4394), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(293), - [sym_override_modifier] = STATE(308), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(1933), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1935), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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), + [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_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), }, [267] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), - [anon_sym_extends] = ACTIONS(1670), + [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), + [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_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), }, [268] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [anon_sym_extends] = ACTIONS(1670), + [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_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(223), + [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_await] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [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(158), + [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_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_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(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(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(750), + [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(158), [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [anon_sym_extends] = ACTIONS(1670), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2145), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4662), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4663), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4715), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4716), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), }, [272] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4670), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4671), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4700), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1951), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), - [anon_sym_extends] = ACTIONS(1670), + [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), + [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_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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), }, [276] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2185), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5188), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5189), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1683), + [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(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(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [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_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(1685), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2190), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4636), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4637), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_extends] = ACTIONS(1670), + [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), + [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_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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), }, [279] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), - [anon_sym_extends] = ACTIONS(1670), + [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), + [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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [anon_sym_extends] = ACTIONS(1670), + [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), + [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_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_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_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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), }, [281] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4695), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [282] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2182), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5978), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5978), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [283] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1963), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [284] = { - [sym_import] = STATE(3771), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1967), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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_COMMA] = ACTIONS(1683), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(1329), + [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_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + [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), + [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_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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), + }, + [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), + [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_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_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [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), + [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), + }, + [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] = { - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(1971), - [anon_sym_import] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1973), - [sym_glimmer_opening_tag] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_class] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_function] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_using] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1971), - [anon_sym_delete] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1973), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [sym_this] = ACTIONS(1971), - [sym_super] = ACTIONS(1971), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_null] = ACTIONS(1971), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [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_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_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(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(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(750), + [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(158), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1975), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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_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_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), }, [287] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1977), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1979), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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(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), + [sym_this] = ACTIONS(1968), + [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), }, [288] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(5503), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4827), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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(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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5503), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4827), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_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(3720), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2890), - [sym__type_query_call_expression] = STATE(3066), - [sym__type_query_instantiation_expression] = STATE(3195), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1983), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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(196), + [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(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), }, [291] = { - [sym_import] = STATE(3670), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1985), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), + [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_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_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), + [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), }, [292] = { - [sym_import] = STATE(3771), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1987), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4362), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_override_modifier] = STATE(315), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1989), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_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(1982), + [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), }, [294] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_override_modifier] = STATE(311), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1971), - [anon_sym_import] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1973), - [sym_glimmer_opening_tag] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_class] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_function] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_using] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1971), - [anon_sym_delete] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1973), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [sym_this] = ACTIONS(1971), - [sym_super] = ACTIONS(1971), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_null] = ACTIONS(1971), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2159), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5995), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5995), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [sym_this] = ACTIONS(1968), + [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), }, [297] = { - [sym_import] = STATE(3670), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1999), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), + [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), }, [298] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2001), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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(3613), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2003), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1999), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(2005), - [anon_sym_import] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(2005), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2007), - [sym_glimmer_opening_tag] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_function] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_using] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_SLASH] = ACTIONS(2005), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_void] = ACTIONS(2005), - [anon_sym_delete] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2007), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [sym_this] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_true] = ACTIONS(2005), - [sym_false] = ACTIONS(2005), - [sym_null] = ACTIONS(2005), - [sym_undefined] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(3670), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1979), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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(1964), + [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), }, [302] = { - [sym_import] = STATE(3659), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2011), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(2004), + [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), }, [303] = { - [sym_import] = STATE(3592), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(2013), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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(3670), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2015), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(2005), - [anon_sym_import] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(2005), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2007), - [sym_glimmer_opening_tag] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_function] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_using] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_SLASH] = ACTIONS(2005), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_void] = ACTIONS(2005), - [anon_sym_delete] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2007), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [sym_this] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_true] = ACTIONS(2005), - [sym_false] = ACTIONS(2005), - [sym_null] = ACTIONS(2005), - [sym_undefined] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(1964), + [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), }, [306] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [sym_html_comment] = ACTIONS(5), - }, - [307] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(323), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2203), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5672), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [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_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_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [308] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4372), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(2017), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2019), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [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), }, - [309] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5438), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2012), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym__automatic_semicolon] = ACTIONS(2021), + [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), }, - [310] = { - [sym_import] = STATE(3759), + [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), + [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(2014), + [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(2016), + [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), + }, + [309] = { + [sym_import] = STATE(3644), [sym_empty_statement] = STATE(318), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5701), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [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), + [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_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + }, + [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), + [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(796), + [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(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), }, [311] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4353), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(751), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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), + [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_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_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_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), }, [312] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(327), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2315), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5683), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [313] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(317), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5793), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [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), + [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_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), }, [314] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(319), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2351), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5917), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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(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), }, [315] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4205), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(2025), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2027), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_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), + [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_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_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), }, [316] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(322), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5920), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [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), + [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_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), }, [317] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2202), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5656), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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_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), }, [318] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5711), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [319] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2346), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5867), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [320] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5871), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [321] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2306), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5928), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5873), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2039), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [323] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2307), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5935), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [324] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5746), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [325] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5876), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [326] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1390), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5070), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5070), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1390), - [sym_subscript_expression] = STATE(1390), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5070), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1390), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2047), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2059), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2063), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_readonly] = ACTIONS(2049), - [anon_sym_get] = ACTIONS(2049), - [anon_sym_set] = ACTIONS(2049), - [anon_sym_declare] = ACTIONS(2049), - [anon_sym_public] = ACTIONS(2049), - [anon_sym_private] = ACTIONS(2049), - [anon_sym_protected] = ACTIONS(2049), - [anon_sym_override] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(2049), - [anon_sym_any] = ACTIONS(2049), - [anon_sym_number] = ACTIONS(2049), - [anon_sym_boolean] = ACTIONS(2049), - [anon_sym_string] = ACTIONS(2049), - [anon_sym_symbol] = ACTIONS(2049), - [anon_sym_object] = ACTIONS(2049), + [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), + [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_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_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), }, [327] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2234), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5669), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [328] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5740), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [329] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2238), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5708), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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), }, [330] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2333), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5785), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1936), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5454), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, [332] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1702), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [333] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2304), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5902), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [335] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [336] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [337] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [338] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [339] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [341] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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_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), }, [343] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2525), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [344] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [345] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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_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), }, [346] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2183), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [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), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, [347] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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), }, [348] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5814), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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), }, [349] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2183), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2135), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), }, [350] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_mapped_type_clause] = STATE(5612), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_readonly] = ACTIONS(2079), - [anon_sym_get] = ACTIONS(2079), - [anon_sym_set] = ACTIONS(2079), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_public] = ACTIONS(2079), - [anon_sym_private] = ACTIONS(2079), - [anon_sym_protected] = ACTIONS(2079), - [anon_sym_override] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_any] = ACTIONS(2079), - [anon_sym_number] = ACTIONS(2079), - [anon_sym_boolean] = ACTIONS(2079), - [anon_sym_string] = ACTIONS(2079), - [anon_sym_symbol] = ACTIONS(2079), - [anon_sym_object] = ACTIONS(2079), + [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), + [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), }, [351] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5719), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [352] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5706), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5651), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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), }, [354] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2183), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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_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), }, [355] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2228), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2143), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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_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_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), }, [356] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2228), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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_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), }, [357] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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_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), }, [358] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2031), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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_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_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), }, [359] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2035), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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_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), }, [360] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2147), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5676), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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_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_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(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2048), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2226), + [sym_parenthesized_expression] = STATE(1335), + [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_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_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_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(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2050), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), + [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_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_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(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2051), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), + [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_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_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(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), + [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_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_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(3760), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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), + [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_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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), }, [366] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2174), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5982), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [367] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2124), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), + [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), }, [368] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2126), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), + [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), }, [369] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2200), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5615), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [370] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1620), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2233), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5629), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [372] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2243), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5796), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1655), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [374] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2330), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5603), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [375] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2228), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + [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), }, [376] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5652), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [377] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + [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), }, [378] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2162), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [379] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [380] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2124), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2163), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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_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(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2253), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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_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), }, [382] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2266), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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_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), + [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), }, [383] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2268), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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_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), + [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), }, [384] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2269), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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_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), + [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), }, [385] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), + [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), + [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_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), + [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), + }, + [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), + [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_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), + [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), + }, + [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), + [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_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), + [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), + }, + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [386] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2270), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [sym_html_comment] = ACTIONS(5), - }, - [387] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2126), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2164), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [sym_html_comment] = ACTIONS(5), - }, - [388] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_mapped_type_clause] = STATE(5882), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2087), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), + [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), }, [389] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [390] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2124), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [391] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2126), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + }, + [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_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), }, [392] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [393] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2167), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5673), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [394] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5892), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [395] = { - [sym_import] = STATE(3759), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1719), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2077), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym__extends_clause_single] = STATE(4856), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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_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), }, [396] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, [397] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, [398] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, [399] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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_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(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2371), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, [402] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1617), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [403] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2077), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym__extends_clause_single] = STATE(4572), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), + [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), }, [404] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2224), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5994), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [405] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1969), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [408] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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_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), + }, + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [409] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [410] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [411] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [412] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [413] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1785), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [414] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [415] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(4305), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(4305), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1332), - [sym_subscript_expression] = STATE(1332), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(4305), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1332), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_namespace] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2099), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2101), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), + [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), + [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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(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), + [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), + }, + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [417] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1712), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), }, - [418] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1725), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [420] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), }, - [421] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [422] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [423] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [424] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [425] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1653), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [426] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [427] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [428] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1618), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [429] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1626), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [430] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1646), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [431] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1659), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [432] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1666), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [433] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [434] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [435] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1660), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), }, [436] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1610), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1911), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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_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), }, [440] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, [441] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1635), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [444] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + }, + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1641), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1680), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [448] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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_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(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), - [sym_html_comment] = ACTIONS(5), - }, - [449] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2072), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + }, + [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_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_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_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), }, [451] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2484), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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_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_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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [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_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(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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_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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [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_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(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2107), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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_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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [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_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(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3654), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3654), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1257), - [sym_subscript_expression] = STATE(1257), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3654), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1257), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), + [sym_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_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_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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [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_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(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2107), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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_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_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(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2170), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + [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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2123), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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_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), }, [464] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1425), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5972), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5972), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1425), - [sym_subscript_expression] = STATE(1425), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5972), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1425), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), + [sym_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), + [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), }, [465] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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), + [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(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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_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(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2138), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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_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(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), }, [468] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2142), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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_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(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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_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_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(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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_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), }, [471] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [472] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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), + [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(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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(2144), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), + [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), }, [474] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [475] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2149), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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), + [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(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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_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), }, [476] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2150), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [477] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2151), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2152), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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), + [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(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), }, [479] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2153), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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_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), }, [480] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2154), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [481] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2155), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [482] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2157), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [483] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2158), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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), + [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(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2161), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [485] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, [486] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2165), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [487] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2166), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [488] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [489] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [490] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + [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), }, [491] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2168), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, [492] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [493] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [494] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [495] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [496] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [498] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [499] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [500] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [502] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [503] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [504] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [505] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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_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(2118), + [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), }, [506] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [sym_html_comment] = ACTIONS(5), - }, - [507] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [sym_html_comment] = ACTIONS(5), - }, - [508] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [sym_html_comment] = ACTIONS(5), - }, - [509] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), }, [510] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5768), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5768), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5768), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1429), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2143), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_readonly] = ACTIONS(2139), - [anon_sym_get] = ACTIONS(2139), - [anon_sym_set] = ACTIONS(2139), - [anon_sym_declare] = ACTIONS(2139), - [anon_sym_public] = ACTIONS(2139), - [anon_sym_private] = ACTIONS(2139), - [anon_sym_protected] = ACTIONS(2139), - [anon_sym_override] = ACTIONS(2139), - [anon_sym_module] = ACTIONS(2139), - [anon_sym_any] = ACTIONS(2139), - [anon_sym_number] = ACTIONS(2139), - [anon_sym_boolean] = ACTIONS(2139), - [anon_sym_string] = ACTIONS(2139), - [anon_sym_symbol] = ACTIONS(2139), - [anon_sym_object] = ACTIONS(2139), + [sym_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_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), }, [511] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [512] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [513] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [514] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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_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), }, [516] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [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), + [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), }, [517] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5879), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5879), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5879), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1431), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), + [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(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [523] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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), }, [525] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [526] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [527] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [528] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2564), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [529] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [530] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [531] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [532] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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), }, [533] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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_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(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), }, [534] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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_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(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), }, [536] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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), + [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(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), }, [537] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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), + [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(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), }, [538] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [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(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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), }, [540] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [542] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2252), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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_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), }, [544] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2255), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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_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), }, [546] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2257), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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_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), }, [549] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [551] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2261), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [552] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [553] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2263), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2264), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [555] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [556] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [557] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2271), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [558] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [560] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2273), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [561] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [562] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [563] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5732), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5732), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5732), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1427), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2161), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [564] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [565] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [566] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [567] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [568] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [569] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(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), + [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), }, [570] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [571] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2360), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [575] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, [578] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, [580] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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(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), [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(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), + [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), }, [583] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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(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), [sym_html_comment] = ACTIONS(5), }, [584] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(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), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [585] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2374), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), }, [586] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [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_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_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), + [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_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(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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_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), }, [588] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1426), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5857), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5857), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1426), - [sym_subscript_expression] = STATE(1426), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5857), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1426), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), + [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(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, [590] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [591] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [592] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [595] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [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), + [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), }, [596] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [597] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [598] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2444), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [599] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [600] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [601] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [602] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [603] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [604] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [605] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [606] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [607] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [608] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2466), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1430), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5980), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5980), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1430), - [sym_subscript_expression] = STATE(1430), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5980), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1430), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(2187), - [anon_sym_set] = ACTIONS(2187), - [anon_sym_declare] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_private] = ACTIONS(2187), - [anon_sym_protected] = ACTIONS(2187), - [anon_sym_override] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_any] = ACTIONS(2187), - [anon_sym_number] = ACTIONS(2187), - [anon_sym_boolean] = ACTIONS(2187), - [anon_sym_string] = ACTIONS(2187), - [anon_sym_symbol] = ACTIONS(2187), - [anon_sym_object] = ACTIONS(2187), + [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), }, - [614] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2554), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [sym_html_comment] = ACTIONS(5), - }, - [615] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [616] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), }, - [617] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2208), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), + [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), }, - [618] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2210), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [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), + [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(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [sym_html_comment] = ACTIONS(5), - }, - [619] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [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), }, - [620] = { - [sym_import] = STATE(3759), + [601] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2059), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [621] = { - [sym_import] = STATE(3759), + [602] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2032), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [622] = { - [sym_import] = STATE(3759), + [603] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2033), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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(3759), + [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(2034), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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(3759), + [606] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2036), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [625] = { - [sym_import] = STATE(3759), + [607] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2037), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [626] = { - [sym_import] = STATE(3759), + [608] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2038), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [627] = { - [sym_import] = STATE(3759), + [609] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2039), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [628] = { - [sym_import] = STATE(3759), + [610] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [629] = { - [sym_import] = STATE(3759), + [611] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2041), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [630] = { - [sym_import] = STATE(3759), + [612] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2042), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [631] = { - [sym_import] = STATE(3759), + [613] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2043), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [632] = { - [sym_import] = STATE(3759), + [614] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2044), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [633] = { - [sym_import] = STATE(3759), + [615] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [634] = { - [sym_import] = STATE(3759), + [616] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2046), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [635] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2047), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), }, - [636] = { - [sym_import] = STATE(3759), + [618] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2049), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [637] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2053), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), }, - [638] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), + [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), }, - [639] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [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), }, - [640] = { - [sym_import] = STATE(3759), + [622] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [641] = { - [sym_import] = STATE(3759), + [623] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [642] = { - [sym_import] = STATE(3759), + [624] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [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(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [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(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), - [sym_html_comment] = ACTIONS(5), - }, - [643] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = 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), }, - [644] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [645] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [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), }, - [646] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [647] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1432), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5810), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5810), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1432), - [sym_subscript_expression] = STATE(1432), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5810), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1432), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), + [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), + [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), }, - [648] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, - [649] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), + [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_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), }, - [650] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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_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), }, - [651] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2282), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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), }, - [652] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [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), + [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), }, - [653] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5634), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5634), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5634), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_object] = ACTIONS(2211), + [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), + [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), }, - [654] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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(704), - [anon_sym_let] = ACTIONS(1068), + [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [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(83), - [anon_sym_LT] = ACTIONS(85), + [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(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [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), }, - [655] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [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), + [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_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), }, - [656] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1428), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5910), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5910), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1428), - [sym_subscript_expression] = STATE(1428), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5910), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1428), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), + [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), + [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), }, - [657] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [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(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [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), }, - [658] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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), [sym_html_comment] = ACTIONS(5), }, - [659] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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), + }, + [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), + [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_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_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_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), + }, + [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), + [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_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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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_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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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_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), + }, + [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), + [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), + }, + [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), + [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(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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(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_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_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), + [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(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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(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_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_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(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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(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_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_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(5884), - [sym_string] = STATE(3922), - [sym_formal_parameters] = STATE(3849), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_type_parameters] = STATE(5338), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2279), - [anon_sym_get] = ACTIONS(2303), - [anon_sym_set] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_private] = ACTIONS(2279), - [anon_sym_protected] = ACTIONS(2279), - [anon_sym_override] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_any] = ACTIONS(2279), - [anon_sym_number] = ACTIONS(2279), - [anon_sym_boolean] = ACTIONS(2279), - [anon_sym_string] = ACTIONS(2279), - [anon_sym_symbol] = ACTIONS(2279), - [anon_sym_object] = ACTIONS(2279), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2288), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym__call_signature] = STATE(5884), - [sym_string] = STATE(3922), - [sym_formal_parameters] = STATE(3849), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_type_parameters] = STATE(5338), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2279), - [anon_sym_get] = ACTIONS(2303), - [anon_sym_set] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_private] = ACTIONS(2279), - [anon_sym_protected] = ACTIONS(2279), - [anon_sym_override] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_any] = ACTIONS(2279), - [anon_sym_number] = ACTIONS(2279), - [anon_sym_boolean] = ACTIONS(2279), - [anon_sym_string] = ACTIONS(2279), - [anon_sym_symbol] = ACTIONS(2279), - [anon_sym_object] = ACTIONS(2279), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2288), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym__call_signature] = STATE(5884), - [sym_string] = STATE(3922), - [sym_formal_parameters] = STATE(3849), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_type_parameters] = STATE(5338), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2279), - [anon_sym_get] = ACTIONS(2303), - [anon_sym_set] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_private] = ACTIONS(2279), - [anon_sym_protected] = ACTIONS(2279), - [anon_sym_override] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_any] = ACTIONS(2279), - [anon_sym_number] = ACTIONS(2279), - [anon_sym_boolean] = ACTIONS(2279), - [anon_sym_string] = ACTIONS(2279), - [anon_sym_symbol] = ACTIONS(2279), - [anon_sym_object] = ACTIONS(2279), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2288), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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(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_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_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(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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(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_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_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(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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(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_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_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(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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(2310), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [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(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [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(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [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), }, [670] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_override_modifier] = STATE(2768), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_override_modifier] = STATE(2768), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_override_modifier] = STATE(2768), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [674] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [675] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [676] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(1927), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_default] = ACTIONS(1929), - [anon_sym_type] = ACTIONS(1929), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_namespace] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_typeof] = ACTIONS(1929), - [anon_sym_import] = ACTIONS(1929), - [anon_sym_from] = ACTIONS(1929), - [anon_sym_with] = ACTIONS(1929), - [anon_sym_var] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_switch] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_throw] = ACTIONS(1929), - [anon_sym_COLON] = ACTIONS(1927), - [anon_sym_case] = ACTIONS(1929), - [anon_sym_yield] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_RBRACK] = ACTIONS(1927), - [sym_glimmer_opening_tag] = ACTIONS(1927), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_class] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1929), - [anon_sym_function] = ACTIONS(1929), - [anon_sym_EQ_GT] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1929), - [anon_sym_using] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_SLASH] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_TILDE] = ACTIONS(1927), - [anon_sym_void] = ACTIONS(1929), - [anon_sym_delete] = ACTIONS(1929), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1927), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [sym_this] = ACTIONS(1929), - [sym_super] = ACTIONS(1929), - [sym_true] = ACTIONS(1929), - [sym_false] = ACTIONS(1929), - [sym_null] = ACTIONS(1929), - [sym_undefined] = ACTIONS(1929), - [anon_sym_AT] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_readonly] = ACTIONS(1929), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1927), - [anon_sym_declare] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_protected] = ACTIONS(1929), - [anon_sym_override] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_any] = ACTIONS(1929), - [anon_sym_number] = ACTIONS(1929), - [anon_sym_boolean] = ACTIONS(1929), - [anon_sym_string] = ACTIONS(1929), - [anon_sym_symbol] = ACTIONS(1929), - [anon_sym_object] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_extends] = ACTIONS(1929), - [anon_sym_interface] = ACTIONS(1929), - [anon_sym_enum] = ACTIONS(1929), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [678] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_namespace] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1733), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_from] = ACTIONS(1733), - [anon_sym_with] = ACTIONS(1733), - [anon_sym_var] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_switch] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_await] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_debugger] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_throw] = ACTIONS(1733), - [anon_sym_COLON] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(1731), - [sym_glimmer_opening_tag] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_function] = ACTIONS(1733), - [anon_sym_EQ_GT] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_using] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_delete] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_number] = ACTIONS(1731), - [sym_private_property_identifier] = ACTIONS(1731), - [sym_this] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_true] = ACTIONS(1733), - [sym_false] = ACTIONS(1733), - [sym_null] = ACTIONS(1733), - [sym_undefined] = ACTIONS(1733), - [anon_sym_AT] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_readonly] = ACTIONS(1733), - [anon_sym_get] = ACTIONS(1733), - [anon_sym_set] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_declare] = ACTIONS(1733), - [anon_sym_public] = ACTIONS(1733), - [anon_sym_private] = ACTIONS(1733), - [anon_sym_protected] = ACTIONS(1733), - [anon_sym_override] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_any] = ACTIONS(1733), - [anon_sym_number] = ACTIONS(1733), - [anon_sym_boolean] = ACTIONS(1733), - [anon_sym_string] = ACTIONS(1733), - [anon_sym_symbol] = ACTIONS(1733), - [anon_sym_object] = ACTIONS(1733), - [anon_sym_abstract] = ACTIONS(1733), - [anon_sym_extends] = ACTIONS(1733), - [anon_sym_interface] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), + [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), + [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(158), + [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_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(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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), [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2333), - [sym_identifier] = ACTIONS(2335), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_default] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_EQ] = ACTIONS(2335), - [anon_sym_namespace] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_COMMA] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_typeof] = ACTIONS(2335), - [anon_sym_import] = ACTIONS(2335), - [anon_sym_with] = ACTIONS(2335), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_switch] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_await] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_do] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_debugger] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_throw] = ACTIONS(2335), - [anon_sym_COLON] = ACTIONS(2333), - [anon_sym_case] = ACTIONS(2335), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_RBRACK] = ACTIONS(2333), - [sym_glimmer_opening_tag] = ACTIONS(2333), - [anon_sym_GT] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_function] = ACTIONS(2335), - [anon_sym_EQ_GT] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_using] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_void] = ACTIONS(2335), - [anon_sym_delete] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2333), - [sym_number] = ACTIONS(2333), - [sym_private_property_identifier] = ACTIONS(2333), - [sym_this] = ACTIONS(2335), - [sym_super] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_null] = ACTIONS(2335), - [sym_undefined] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_readonly] = ACTIONS(2335), - [anon_sym_get] = ACTIONS(2335), - [anon_sym_set] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2333), - [anon_sym_declare] = ACTIONS(2335), - [anon_sym_public] = ACTIONS(2335), - [anon_sym_private] = ACTIONS(2335), - [anon_sym_protected] = ACTIONS(2335), - [anon_sym_override] = ACTIONS(2335), - [anon_sym_module] = ACTIONS(2335), - [anon_sym_any] = ACTIONS(2335), - [anon_sym_number] = ACTIONS(2335), - [anon_sym_boolean] = ACTIONS(2335), - [anon_sym_string] = ACTIONS(2335), - [anon_sym_symbol] = ACTIONS(2335), - [anon_sym_object] = ACTIONS(2335), - [anon_sym_abstract] = ACTIONS(2335), - [anon_sym_extends] = ACTIONS(2335), - [anon_sym_interface] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), + [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(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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(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), }, [683] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(158), + [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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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(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), }, [684] = { - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2339), - [anon_sym_export] = ACTIONS(2339), - [anon_sym_default] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_EQ] = ACTIONS(2339), - [anon_sym_namespace] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_typeof] = ACTIONS(2339), - [anon_sym_import] = ACTIONS(2339), - [anon_sym_with] = ACTIONS(2339), - [anon_sym_var] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_switch] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_do] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_debugger] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_throw] = ACTIONS(2339), - [anon_sym_COLON] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2339), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_RBRACK] = ACTIONS(2337), - [sym_glimmer_opening_tag] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [anon_sym_SQUOTE] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_function] = ACTIONS(2339), - [anon_sym_EQ_GT] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2339), - [anon_sym_using] = ACTIONS(2339), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2339), - [anon_sym_SLASH] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2337), - [anon_sym_void] = ACTIONS(2339), - [anon_sym_delete] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2337), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2337), - [sym_number] = ACTIONS(2337), - [sym_private_property_identifier] = ACTIONS(2337), - [sym_this] = ACTIONS(2339), - [sym_super] = ACTIONS(2339), - [sym_true] = ACTIONS(2339), - [sym_false] = ACTIONS(2339), - [sym_null] = ACTIONS(2339), - [sym_undefined] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2339), - [anon_sym_readonly] = ACTIONS(2339), - [anon_sym_get] = ACTIONS(2339), - [anon_sym_set] = ACTIONS(2339), - [anon_sym_QMARK] = ACTIONS(2337), - [anon_sym_declare] = ACTIONS(2339), - [anon_sym_public] = ACTIONS(2339), - [anon_sym_private] = ACTIONS(2339), - [anon_sym_protected] = ACTIONS(2339), - [anon_sym_override] = ACTIONS(2339), - [anon_sym_module] = ACTIONS(2339), - [anon_sym_any] = ACTIONS(2339), - [anon_sym_number] = ACTIONS(2339), - [anon_sym_boolean] = ACTIONS(2339), - [anon_sym_string] = ACTIONS(2339), - [anon_sym_symbol] = ACTIONS(2339), - [anon_sym_object] = ACTIONS(2339), - [anon_sym_abstract] = ACTIONS(2339), - [anon_sym_extends] = ACTIONS(2339), - [anon_sym_interface] = ACTIONS(2339), - [anon_sym_enum] = ACTIONS(2339), + [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_AMP] = 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), }, [685] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2343), - [anon_sym_export] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2343), - [anon_sym_namespace] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_COMMA] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_typeof] = ACTIONS(2343), - [anon_sym_import] = ACTIONS(2343), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_var] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [anon_sym_BANG] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_switch] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_debugger] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_throw] = ACTIONS(2343), - [anon_sym_COLON] = ACTIONS(2341), - [anon_sym_case] = ACTIONS(2343), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_RBRACK] = ACTIONS(2341), - [sym_glimmer_opening_tag] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2343), - [anon_sym_async] = ACTIONS(2343), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_EQ_GT] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_using] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_SLASH] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2341), - [anon_sym_void] = ACTIONS(2343), - [anon_sym_delete] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2341), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2341), - [sym_number] = ACTIONS(2341), - [sym_private_property_identifier] = ACTIONS(2341), - [sym_this] = ACTIONS(2343), - [sym_super] = ACTIONS(2343), - [sym_true] = ACTIONS(2343), - [sym_false] = ACTIONS(2343), - [sym_null] = ACTIONS(2343), - [sym_undefined] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_readonly] = ACTIONS(2343), - [anon_sym_get] = ACTIONS(2343), - [anon_sym_set] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2341), - [anon_sym_declare] = ACTIONS(2343), - [anon_sym_public] = ACTIONS(2343), - [anon_sym_private] = ACTIONS(2343), - [anon_sym_protected] = ACTIONS(2343), - [anon_sym_override] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_any] = ACTIONS(2343), - [anon_sym_number] = ACTIONS(2343), - [anon_sym_boolean] = ACTIONS(2343), - [anon_sym_string] = ACTIONS(2343), - [anon_sym_symbol] = ACTIONS(2343), - [anon_sym_object] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2343), - [anon_sym_extends] = ACTIONS(2343), - [anon_sym_interface] = ACTIONS(2343), - [anon_sym_enum] = ACTIONS(2343), + [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_AMP] = 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), }, [686] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_AMP] = 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), }, [687] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2349), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_typeof] = ACTIONS(2349), - [anon_sym_import] = ACTIONS(2349), - [anon_sym_with] = ACTIONS(2349), - [anon_sym_var] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_debugger] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_COLON] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [sym_glimmer_opening_tag] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_EQ_GT] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_using] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_SLASH] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_void] = ACTIONS(2349), - [anon_sym_delete] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2347), - [sym_number] = ACTIONS(2347), - [sym_private_property_identifier] = ACTIONS(2347), - [sym_this] = ACTIONS(2349), - [sym_super] = ACTIONS(2349), - [sym_true] = ACTIONS(2349), - [sym_false] = ACTIONS(2349), - [sym_null] = ACTIONS(2349), - [sym_undefined] = ACTIONS(2349), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_readonly] = ACTIONS(2349), - [anon_sym_get] = ACTIONS(2349), - [anon_sym_set] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_declare] = ACTIONS(2349), - [anon_sym_public] = ACTIONS(2349), - [anon_sym_private] = ACTIONS(2349), - [anon_sym_protected] = ACTIONS(2349), - [anon_sym_override] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_any] = ACTIONS(2349), - [anon_sym_number] = ACTIONS(2349), - [anon_sym_boolean] = ACTIONS(2349), - [anon_sym_string] = ACTIONS(2349), - [anon_sym_symbol] = ACTIONS(2349), - [anon_sym_object] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_extends] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), + [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_AMP] = 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), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_EQ] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_typeof] = ACTIONS(2353), - [anon_sym_import] = ACTIONS(2353), - [anon_sym_with] = ACTIONS(2353), - [anon_sym_var] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_debugger] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_COLON] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_RBRACK] = ACTIONS(2351), - [sym_glimmer_opening_tag] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [anon_sym_SQUOTE] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_EQ_GT] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_using] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_void] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2351), - [sym_number] = ACTIONS(2351), - [sym_private_property_identifier] = ACTIONS(2351), - [sym_this] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [sym_undefined] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(2353), - [anon_sym_set] = ACTIONS(2353), - [anon_sym_QMARK] = ACTIONS(2351), - [anon_sym_declare] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_private] = ACTIONS(2353), - [anon_sym_protected] = ACTIONS(2353), - [anon_sym_override] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_any] = ACTIONS(2353), - [anon_sym_number] = ACTIONS(2353), - [anon_sym_boolean] = ACTIONS(2353), - [anon_sym_string] = ACTIONS(2353), - [anon_sym_symbol] = ACTIONS(2353), - [anon_sym_object] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_extends] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), + [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_AMP] = 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), }, [689] = { - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [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_async] = ACTIONS(1940), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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_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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [690] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5191), + [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), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(158), + [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_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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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), [sym_html_comment] = ACTIONS(5), }, [691] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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(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(4446), - [sym_variable_declaration] = STATE(4422), - [sym_lexical_declaration] = STATE(4422), - [sym_class_declaration] = STATE(4422), - [sym_function_declaration] = STATE(4422), - [sym_generator_function_declaration] = STATE(4422), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(4422), - [sym_ambient_declaration] = STATE(4422), - [sym_abstract_class_declaration] = STATE(4422), - [sym_module] = STATE(4422), - [sym_internal_module] = STATE(4425), - [sym_import_alias] = STATE(4422), - [sym_interface_declaration] = STATE(4422), - [sym_enum_declaration] = STATE(4422), - [sym_type_alias_declaration] = STATE(4422), - [aux_sym_export_statement_repeat1] = STATE(4377), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2359), - [anon_sym_var] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2371), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2379), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2383), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_EQ] = ACTIONS(909), + [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(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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(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), [sym_html_comment] = ACTIONS(5), }, [693] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [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_async] = ACTIONS(1940), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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_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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [694] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5191), + [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), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(158), + [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_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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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), [sym_html_comment] = ACTIONS(5), }, [695] = { - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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(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), [sym_html_comment] = ACTIONS(5), }, [696] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [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_async] = ACTIONS(1940), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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_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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [697] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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), + [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), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2378), + [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(158), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_QMARK] = ACTIONS(750), + [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_html_comment] = ACTIONS(5), }, [699] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(223), + [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_QMARK] = ACTIONS(750), + [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), }, [700] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [701] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [702] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(814), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(834), + [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_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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5889), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2394), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [704] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [705] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2407), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5889), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2394), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [706] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2407), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_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_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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [707] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [708] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2286), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [709] = { - [sym__call_signature] = STATE(5901), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2411), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2411), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_readonly] = ACTIONS(2411), - [anon_sym_get] = ACTIONS(2411), - [anon_sym_set] = ACTIONS(2411), - [anon_sym_declare] = ACTIONS(2411), - [anon_sym_public] = ACTIONS(2411), - [anon_sym_private] = ACTIONS(2411), - [anon_sym_protected] = ACTIONS(2411), - [anon_sym_override] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_any] = ACTIONS(2411), - [anon_sym_number] = ACTIONS(2411), - [anon_sym_boolean] = ACTIONS(2411), - [anon_sym_string] = ACTIONS(2411), - [anon_sym_symbol] = ACTIONS(2411), - [anon_sym_object] = ACTIONS(2411), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2400), + [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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [710] = { - [sym__call_signature] = STATE(5901), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2411), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2411), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_readonly] = ACTIONS(2411), - [anon_sym_get] = ACTIONS(2411), - [anon_sym_set] = ACTIONS(2411), - [anon_sym_declare] = ACTIONS(2411), - [anon_sym_public] = ACTIONS(2411), - [anon_sym_private] = ACTIONS(2411), - [anon_sym_protected] = ACTIONS(2411), - [anon_sym_override] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_any] = ACTIONS(2411), - [anon_sym_number] = ACTIONS(2411), - [anon_sym_boolean] = ACTIONS(2411), - [anon_sym_string] = ACTIONS(2411), - [anon_sym_symbol] = ACTIONS(2411), - [anon_sym_object] = ACTIONS(2411), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [711] = { - [sym_catch_clause] = STATE(744), - [sym_finally_clause] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(2413), - [sym_identifier] = ACTIONS(2415), - [anon_sym_export] = ACTIONS(2415), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2415), - [anon_sym_namespace] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_typeof] = ACTIONS(2415), - [anon_sym_import] = ACTIONS(2415), - [anon_sym_with] = ACTIONS(2415), - [anon_sym_var] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_switch] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_do] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_debugger] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_throw] = ACTIONS(2415), - [anon_sym_case] = ACTIONS(2415), - [anon_sym_catch] = ACTIONS(2417), - [anon_sym_finally] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2413), - [sym_glimmer_opening_tag] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(2413), - [anon_sym_SQUOTE] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_function] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2415), - [anon_sym_using] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_SLASH] = ACTIONS(2415), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_void] = ACTIONS(2415), - [anon_sym_delete] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2413), - [anon_sym_DASH_DASH] = ACTIONS(2413), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2413), - [sym_number] = ACTIONS(2413), - [sym_private_property_identifier] = ACTIONS(2413), - [sym_this] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_true] = ACTIONS(2415), - [sym_false] = ACTIONS(2415), - [sym_null] = ACTIONS(2415), - [sym_undefined] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_readonly] = ACTIONS(2415), - [anon_sym_get] = ACTIONS(2415), - [anon_sym_set] = ACTIONS(2415), - [anon_sym_declare] = ACTIONS(2415), - [anon_sym_public] = ACTIONS(2415), - [anon_sym_private] = ACTIONS(2415), - [anon_sym_protected] = ACTIONS(2415), - [anon_sym_override] = ACTIONS(2415), - [anon_sym_module] = ACTIONS(2415), - [anon_sym_any] = ACTIONS(2415), - [anon_sym_number] = ACTIONS(2415), - [anon_sym_boolean] = ACTIONS(2415), - [anon_sym_string] = ACTIONS(2415), - [anon_sym_symbol] = ACTIONS(2415), - [anon_sym_object] = ACTIONS(2415), - [anon_sym_abstract] = ACTIONS(2415), - [anon_sym_interface] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), + [sym__call_signature] = STATE(5790), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_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_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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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(158), [sym_html_comment] = ACTIONS(5), }, [712] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(223), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_catch] = ACTIONS(1704), - [anon_sym_finally] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(1712), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2378), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [714] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5790), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(939), + [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_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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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(158), [sym_html_comment] = ACTIONS(5), }, [715] = { - [sym__call_signature] = STATE(5802), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2425), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_readonly] = ACTIONS(2427), - [anon_sym_get] = ACTIONS(2427), - [anon_sym_set] = ACTIONS(2427), - [anon_sym_declare] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_protected] = ACTIONS(2427), - [anon_sym_override] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_any] = ACTIONS(2427), - [anon_sym_number] = ACTIONS(2427), - [anon_sym_boolean] = ACTIONS(2427), - [anon_sym_string] = ACTIONS(2427), - [anon_sym_symbol] = ACTIONS(2427), - [anon_sym_object] = ACTIONS(2427), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(5802), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2425), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_readonly] = ACTIONS(2427), - [anon_sym_get] = ACTIONS(2427), - [anon_sym_set] = ACTIONS(2427), - [anon_sym_declare] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_protected] = ACTIONS(2427), - [anon_sym_override] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_any] = ACTIONS(2427), - [anon_sym_number] = ACTIONS(2427), - [anon_sym_boolean] = ACTIONS(2427), - [anon_sym_string] = ACTIONS(2427), - [anon_sym_symbol] = ACTIONS(2427), - [anon_sym_object] = ACTIONS(2427), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(919), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [717] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_finally] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [sym__automatic_semicolon] = ACTIONS(2429), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2286), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [718] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2420), + [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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [719] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [720] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2420), + [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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [721] = { - [ts_builtin_sym_end] = ACTIONS(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_namespace] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_typeof] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(1925), - [anon_sym_with] = ACTIONS(1925), - [anon_sym_var] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_switch] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_debugger] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_throw] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1923), - [sym_glimmer_opening_tag] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_class] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_void] = ACTIONS(1925), - [anon_sym_delete] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_number] = ACTIONS(1923), - [sym_private_property_identifier] = ACTIONS(1923), - [sym_this] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_undefined] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_readonly] = ACTIONS(1925), - [anon_sym_get] = ACTIONS(1925), - [anon_sym_set] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1925), - [anon_sym_public] = ACTIONS(1925), - [anon_sym_private] = ACTIONS(1925), - [anon_sym_protected] = ACTIONS(1925), - [anon_sym_override] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [anon_sym_object] = ACTIONS(1925), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), - [anon_sym_PIPE_RBRACE] = ACTIONS(1923), - [sym__automatic_semicolon] = ACTIONS(1923), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [722] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_var] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_debugger] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_throw] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [sym_glimmer_opening_tag] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_function] = ACTIONS(1741), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_delete] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_private_property_identifier] = ACTIONS(1739), - [sym_this] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_null] = ACTIONS(1741), - [sym_undefined] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_object] = ACTIONS(1741), - [anon_sym_abstract] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_PIPE_RBRACE] = ACTIONS(1739), - [sym__automatic_semicolon] = ACTIONS(1739), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [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_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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [723] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2402), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [724] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_PIPE_RBRACE] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(1853), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(223), + [anon_sym_let] = ACTIONS(2410), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [725] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [anon_sym_PIPE_RBRACE] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(2435), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_typeof] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_var] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_debugger] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [sym_glimmer_opening_tag] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1735), - [sym_number] = ACTIONS(1735), - [sym_private_property_identifier] = ACTIONS(1735), - [sym_this] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_undefined] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_readonly] = ACTIONS(1737), - [anon_sym_get] = ACTIONS(1737), - [anon_sym_set] = ACTIONS(1737), - [anon_sym_declare] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_private] = ACTIONS(1737), - [anon_sym_protected] = ACTIONS(1737), - [anon_sym_override] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_object] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_PIPE_RBRACE] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1735), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [727] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_PIPE_RBRACE] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(2437), + [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_html_comment] = ACTIONS(5), }, [728] = { - [sym__call_signature] = STATE(5724), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_readonly] = ACTIONS(2441), - [anon_sym_get] = ACTIONS(2441), - [anon_sym_set] = ACTIONS(2441), - [anon_sym_declare] = ACTIONS(2441), - [anon_sym_public] = ACTIONS(2441), - [anon_sym_private] = ACTIONS(2441), - [anon_sym_protected] = ACTIONS(2441), - [anon_sym_override] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_any] = ACTIONS(2441), - [anon_sym_number] = ACTIONS(2441), - [anon_sym_boolean] = ACTIONS(2441), - [anon_sym_string] = ACTIONS(2441), - [anon_sym_symbol] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(2441), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [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(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [729] = { - [sym__call_signature] = STATE(5724), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_readonly] = ACTIONS(2441), - [anon_sym_get] = ACTIONS(2441), - [anon_sym_set] = ACTIONS(2441), - [anon_sym_declare] = ACTIONS(2441), - [anon_sym_public] = ACTIONS(2441), - [anon_sym_private] = ACTIONS(2441), - [anon_sym_protected] = ACTIONS(2441), - [anon_sym_override] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_any] = ACTIONS(2441), - [anon_sym_number] = ACTIONS(2441), - [anon_sym_boolean] = ACTIONS(2441), - [anon_sym_string] = ACTIONS(2441), - [anon_sym_symbol] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(2441), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2407), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(814), + [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(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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_html_comment] = ACTIONS(5), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_finally] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), + [sym__call_signature] = STATE(5936), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2436), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_typeof] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_var] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_debugger] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_finally] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [sym_glimmer_opening_tag] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1735), - [sym_number] = ACTIONS(1735), - [sym_private_property_identifier] = ACTIONS(1735), - [sym_this] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_undefined] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_readonly] = ACTIONS(1737), - [anon_sym_get] = ACTIONS(1737), - [anon_sym_set] = ACTIONS(1737), - [anon_sym_declare] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_private] = ACTIONS(1737), - [anon_sym_protected] = ACTIONS(1737), - [anon_sym_override] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_object] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), + [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(814), + [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_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), }, [735] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(814), + [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_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), }, [737] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_html_comment] = ACTIONS(5), }, [738] = { - [sym_statement_block] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), + [sym__call_signature] = STATE(5936), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [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_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2436), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(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] = { - [sym_statement_block] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), + [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] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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), [sym_html_comment] = ACTIONS(5), }, [741] = { - [sym__call_signature] = STATE(5970), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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__call_signature] = STATE(5970), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_finally_clause] = STATE(903), + [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(2430), + [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), }, [743] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(977), + [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), }, [744] = { - [sym_finally_clause] = STATE(905), - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_identifier] = ACTIONS(2457), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_default] = ACTIONS(2457), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_import] = ACTIONS(2457), - [anon_sym_with] = ACTIONS(2457), - [anon_sym_var] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_debugger] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_case] = ACTIONS(2457), - [anon_sym_finally] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [sym_glimmer_opening_tag] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_SLASH] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_void] = ACTIONS(2457), - [anon_sym_delete] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2455), - [sym_number] = ACTIONS(2455), - [sym_private_property_identifier] = ACTIONS(2455), - [sym_this] = ACTIONS(2457), - [sym_super] = ACTIONS(2457), - [sym_true] = ACTIONS(2457), - [sym_false] = ACTIONS(2457), - [sym_null] = ACTIONS(2457), - [sym_undefined] = ACTIONS(2457), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_readonly] = ACTIONS(2457), - [anon_sym_get] = ACTIONS(2457), - [anon_sym_set] = ACTIONS(2457), - [anon_sym_declare] = ACTIONS(2457), - [anon_sym_public] = ACTIONS(2457), - [anon_sym_private] = ACTIONS(2457), - [anon_sym_protected] = ACTIONS(2457), - [anon_sym_override] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_any] = ACTIONS(2457), - [anon_sym_number] = ACTIONS(2457), - [anon_sym_boolean] = ACTIONS(2457), - [anon_sym_string] = ACTIONS(2457), - [anon_sym_symbol] = ACTIONS(2457), - [anon_sym_object] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), + [sym__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(979), + [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), }, [745] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [sym_identifier] = ACTIONS(2461), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_default] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_typeof] = ACTIONS(2461), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_var] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_debugger] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_case] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_glimmer_opening_tag] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_void] = ACTIONS(2461), - [anon_sym_delete] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2459), - [sym_number] = ACTIONS(2459), - [sym_private_property_identifier] = ACTIONS(2459), - [sym_this] = ACTIONS(2461), - [sym_super] = ACTIONS(2461), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_null] = ACTIONS(2461), - [sym_undefined] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_readonly] = ACTIONS(2461), - [anon_sym_get] = ACTIONS(2461), - [anon_sym_set] = ACTIONS(2461), - [anon_sym_declare] = ACTIONS(2461), - [anon_sym_public] = ACTIONS(2461), - [anon_sym_private] = ACTIONS(2461), - [anon_sym_protected] = ACTIONS(2461), - [anon_sym_override] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_any] = ACTIONS(2461), - [anon_sym_number] = ACTIONS(2461), - [anon_sym_boolean] = ACTIONS(2461), - [anon_sym_string] = ACTIONS(2461), - [anon_sym_symbol] = ACTIONS(2461), - [anon_sym_object] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), + [sym__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(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_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), }, [746] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(981), + [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), }, [747] = { - [sym_statement_block] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), + [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(973), + [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), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_typeof] = ACTIONS(2465), - [anon_sym_import] = ACTIONS(2465), - [anon_sym_with] = ACTIONS(2465), - [anon_sym_var] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_debugger] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [sym_glimmer_opening_tag] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_void] = ACTIONS(2465), - [anon_sym_delete] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2463), - [sym_number] = ACTIONS(2463), - [sym_private_property_identifier] = ACTIONS(2463), - [sym_this] = ACTIONS(2465), - [sym_super] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [sym_undefined] = ACTIONS(2465), - [anon_sym_AT] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_readonly] = ACTIONS(2465), - [anon_sym_get] = ACTIONS(2465), - [anon_sym_set] = ACTIONS(2465), - [anon_sym_declare] = ACTIONS(2465), - [anon_sym_public] = ACTIONS(2465), - [anon_sym_private] = ACTIONS(2465), - [anon_sym_protected] = ACTIONS(2465), - [anon_sym_override] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_any] = ACTIONS(2465), - [anon_sym_number] = ACTIONS(2465), - [anon_sym_boolean] = ACTIONS(2465), - [anon_sym_string] = ACTIONS(2465), - [anon_sym_symbol] = ACTIONS(2465), - [anon_sym_object] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [sym__automatic_semicolon] = ACTIONS(2467), + [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(814), + [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), }, [749] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(967), + [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), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_export] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_namespace] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_typeof] = ACTIONS(2471), - [anon_sym_import] = ACTIONS(2471), - [anon_sym_with] = ACTIONS(2471), - [anon_sym_var] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_debugger] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_throw] = ACTIONS(2471), - [anon_sym_case] = ACTIONS(2471), - [anon_sym_finally] = ACTIONS(2471), - [anon_sym_yield] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [sym_glimmer_opening_tag] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_async] = ACTIONS(2471), - [anon_sym_function] = ACTIONS(2471), - [anon_sym_new] = ACTIONS(2471), - [anon_sym_using] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_SLASH] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_void] = ACTIONS(2471), - [anon_sym_delete] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2469), - [sym_number] = ACTIONS(2469), - [sym_private_property_identifier] = ACTIONS(2469), - [sym_this] = ACTIONS(2471), - [sym_super] = ACTIONS(2471), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_null] = ACTIONS(2471), - [sym_undefined] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_readonly] = ACTIONS(2471), - [anon_sym_get] = ACTIONS(2471), - [anon_sym_set] = ACTIONS(2471), - [anon_sym_declare] = ACTIONS(2471), - [anon_sym_public] = ACTIONS(2471), - [anon_sym_private] = ACTIONS(2471), - [anon_sym_protected] = ACTIONS(2471), - [anon_sym_override] = ACTIONS(2471), - [anon_sym_module] = ACTIONS(2471), - [anon_sym_any] = ACTIONS(2471), - [anon_sym_number] = ACTIONS(2471), - [anon_sym_boolean] = ACTIONS(2471), - [anon_sym_string] = ACTIONS(2471), - [anon_sym_symbol] = ACTIONS(2471), - [anon_sym_object] = ACTIONS(2471), - [anon_sym_abstract] = ACTIONS(2471), - [anon_sym_interface] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), + [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(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] = { - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_export] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_typeof] = ACTIONS(2475), - [anon_sym_import] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2475), - [anon_sym_var] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_await] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_debugger] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_finally] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [sym_glimmer_opening_tag] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_void] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2473), - [sym_number] = ACTIONS(2473), - [sym_private_property_identifier] = ACTIONS(2473), - [sym_this] = ACTIONS(2475), - [sym_super] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_undefined] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_readonly] = ACTIONS(2475), - [anon_sym_get] = ACTIONS(2475), - [anon_sym_set] = ACTIONS(2475), - [anon_sym_declare] = ACTIONS(2475), - [anon_sym_public] = ACTIONS(2475), - [anon_sym_private] = ACTIONS(2475), - [anon_sym_protected] = ACTIONS(2475), - [anon_sym_override] = ACTIONS(2475), - [anon_sym_module] = ACTIONS(2475), - [anon_sym_any] = ACTIONS(2475), - [anon_sym_number] = ACTIONS(2475), - [anon_sym_boolean] = ACTIONS(2475), - [anon_sym_string] = ACTIONS(2475), - [anon_sym_symbol] = ACTIONS(2475), - [anon_sym_object] = ACTIONS(2475), - [anon_sym_abstract] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), + [sym_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(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2479), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_typeof] = ACTIONS(2479), - [anon_sym_import] = ACTIONS(2479), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_var] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_await] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_debugger] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2477), - [sym_glimmer_opening_tag] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_SLASH] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_void] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2477), - [sym_number] = ACTIONS(2477), - [sym_private_property_identifier] = ACTIONS(2477), - [sym_this] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_undefined] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_override] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), - [anon_sym_object] = ACTIONS(2479), - [anon_sym_abstract] = ACTIONS(2479), - [anon_sym_interface] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [sym__automatic_semicolon] = ACTIONS(2477), + [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(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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(971), + [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), }, [755] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_namespace] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_typeof] = ACTIONS(1915), - [anon_sym_import] = ACTIONS(1915), - [anon_sym_with] = ACTIONS(1915), - [anon_sym_var] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_switch] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_await] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_debugger] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_throw] = ACTIONS(1915), - [anon_sym_case] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [sym_glimmer_opening_tag] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_class] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_function] = ACTIONS(1915), - [anon_sym_new] = ACTIONS(1915), - [anon_sym_using] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_void] = ACTIONS(1915), - [anon_sym_delete] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1913), - [sym_number] = ACTIONS(1913), - [sym_private_property_identifier] = ACTIONS(1913), - [sym_this] = ACTIONS(1915), - [sym_super] = ACTIONS(1915), - [sym_true] = ACTIONS(1915), - [sym_false] = ACTIONS(1915), - [sym_null] = ACTIONS(1915), - [sym_undefined] = ACTIONS(1915), - [anon_sym_AT] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1915), - [anon_sym_readonly] = ACTIONS(1915), - [anon_sym_get] = ACTIONS(1915), - [anon_sym_set] = ACTIONS(1915), - [anon_sym_declare] = ACTIONS(1915), - [anon_sym_public] = ACTIONS(1915), - [anon_sym_private] = ACTIONS(1915), - [anon_sym_protected] = ACTIONS(1915), - [anon_sym_override] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_any] = ACTIONS(1915), - [anon_sym_number] = ACTIONS(1915), - [anon_sym_boolean] = ACTIONS(1915), - [anon_sym_string] = ACTIONS(1915), - [anon_sym_symbol] = ACTIONS(1915), - [anon_sym_object] = ACTIONS(1915), - [anon_sym_abstract] = ACTIONS(1915), - [anon_sym_interface] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [sym__automatic_semicolon] = ACTIONS(1921), + [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(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_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(2450), [sym_html_comment] = ACTIONS(5), }, [756] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [anon_sym_export] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_typeof] = ACTIONS(2483), - [anon_sym_import] = ACTIONS(2483), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_var] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_await] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_debugger] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_finally] = ACTIONS(2483), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2481), - [sym_glimmer_opening_tag] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_void] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2481), - [sym_number] = ACTIONS(2481), - [sym_private_property_identifier] = ACTIONS(2481), - [sym_this] = ACTIONS(2483), - [sym_super] = ACTIONS(2483), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_undefined] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_readonly] = ACTIONS(2483), - [anon_sym_get] = ACTIONS(2483), - [anon_sym_set] = ACTIONS(2483), - [anon_sym_declare] = ACTIONS(2483), - [anon_sym_public] = ACTIONS(2483), - [anon_sym_private] = ACTIONS(2483), - [anon_sym_protected] = ACTIONS(2483), - [anon_sym_override] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_any] = ACTIONS(2483), - [anon_sym_number] = ACTIONS(2483), - [anon_sym_boolean] = ACTIONS(2483), - [anon_sym_string] = ACTIONS(2483), - [anon_sym_symbol] = ACTIONS(2483), - [anon_sym_object] = ACTIONS(2483), - [anon_sym_abstract] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), + [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(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), - [sym_glimmer_opening_tag] = 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(1833), - [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), + [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(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), - [sym_glimmer_opening_tag] = 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(1759), - [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), + [ts_builtin_sym_end] = ACTIONS(2458), + [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] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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] = { - [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), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [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(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_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2487), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_typeof] = ACTIONS(2487), - [anon_sym_import] = ACTIONS(2487), - [anon_sym_with] = ACTIONS(2487), - [anon_sym_var] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_debugger] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2485), - [sym_glimmer_opening_tag] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_function] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_void] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2485), - [sym_number] = ACTIONS(2485), - [sym_private_property_identifier] = ACTIONS(2485), - [sym_this] = ACTIONS(2487), - [sym_super] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_undefined] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_readonly] = ACTIONS(2487), - [anon_sym_get] = ACTIONS(2487), - [anon_sym_set] = ACTIONS(2487), - [anon_sym_declare] = ACTIONS(2487), - [anon_sym_public] = ACTIONS(2487), - [anon_sym_private] = ACTIONS(2487), - [anon_sym_protected] = ACTIONS(2487), - [anon_sym_override] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_any] = ACTIONS(2487), - [anon_sym_number] = ACTIONS(2487), - [anon_sym_boolean] = ACTIONS(2487), - [anon_sym_string] = ACTIONS(2487), - [anon_sym_symbol] = ACTIONS(2487), - [anon_sym_object] = ACTIONS(2487), - [anon_sym_abstract] = ACTIONS(2487), - [anon_sym_interface] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [sym__automatic_semicolon] = ACTIONS(2485), + [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] = { - [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), - [sym_glimmer_opening_tag] = 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(1843), - [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_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_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2484), + [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(2486), + [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), }, [763] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2488), + [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(2490), + [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), }, [764] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_namespace] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_typeof] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_with] = ACTIONS(1801), - [anon_sym_var] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_switch] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_debugger] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_throw] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [sym_glimmer_opening_tag] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_function] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_using] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_delete] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_number] = ACTIONS(1799), - [sym_private_property_identifier] = ACTIONS(1799), - [sym_this] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_undefined] = ACTIONS(1801), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_readonly] = ACTIONS(1801), - [anon_sym_get] = ACTIONS(1801), - [anon_sym_set] = ACTIONS(1801), - [anon_sym_declare] = ACTIONS(1801), - [anon_sym_public] = ACTIONS(1801), - [anon_sym_private] = ACTIONS(1801), - [anon_sym_protected] = ACTIONS(1801), - [anon_sym_override] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_any] = ACTIONS(1801), - [anon_sym_number] = ACTIONS(1801), - [anon_sym_boolean] = ACTIONS(1801), - [anon_sym_string] = ACTIONS(1801), - [anon_sym_symbol] = ACTIONS(1801), - [anon_sym_object] = ACTIONS(1801), - [anon_sym_abstract] = ACTIONS(1801), - [anon_sym_interface] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1807), + [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), @@ -108210,7 +107350,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1861), [anon_sym_yield] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), [anon_sym_DQUOTE] = ACTIONS(1859), [anon_sym_SQUOTE] = ACTIONS(1859), [anon_sym_class] = ACTIONS(1861), @@ -108221,7 +107360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1861), [anon_sym_DASH] = ACTIONS(1861), [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1859), [anon_sym_TILDE] = ACTIONS(1859), [anon_sym_void] = ACTIONS(1861), [anon_sym_delete] = ACTIONS(1861), @@ -108260,511 +107399,2967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1867), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), }, - [767] = { - [sym_else_clause] = STATE(904), - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_identifier] = ACTIONS(2491), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_typeof] = ACTIONS(2491), - [anon_sym_import] = ACTIONS(2491), - [anon_sym_with] = ACTIONS(2491), - [anon_sym_var] = ACTIONS(2491), - [anon_sym_let] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_await] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_debugger] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_yield] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2489), - [sym_glimmer_opening_tag] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_async] = ACTIONS(2491), - [anon_sym_function] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_SLASH] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_void] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2489), - [sym_number] = ACTIONS(2489), - [sym_private_property_identifier] = ACTIONS(2489), - [sym_this] = ACTIONS(2491), - [sym_super] = ACTIONS(2491), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_undefined] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_readonly] = ACTIONS(2491), - [anon_sym_get] = ACTIONS(2491), - [anon_sym_set] = ACTIONS(2491), - [anon_sym_declare] = ACTIONS(2491), - [anon_sym_public] = ACTIONS(2491), - [anon_sym_private] = ACTIONS(2491), - [anon_sym_protected] = ACTIONS(2491), - [anon_sym_override] = ACTIONS(2491), - [anon_sym_module] = ACTIONS(2491), - [anon_sym_any] = ACTIONS(2491), - [anon_sym_number] = ACTIONS(2491), - [anon_sym_boolean] = ACTIONS(2491), - [anon_sym_string] = ACTIONS(2491), - [anon_sym_symbol] = ACTIONS(2491), - [anon_sym_object] = ACTIONS(2491), - [anon_sym_abstract] = ACTIONS(2491), - [anon_sym_interface] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), + [776] = { + [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), }, - [768] = { - [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), - [sym_glimmer_opening_tag] = 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(1749), - [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), + [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), + [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), }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_var] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_debugger] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_void] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1777), - [sym_number] = ACTIONS(1777), - [sym_private_property_identifier] = ACTIONS(1777), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_abstract] = ACTIONS(1779), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(1785), + [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_finally] = 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), }, - [770] = { - [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), - [sym_glimmer_opening_tag] = ACTIONS(1869), - [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_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(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_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), + [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), }, - [771] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [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), }, - [772] = { + [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), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2510), + [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(2512), + [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), + }, + [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), + }, + [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), + [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(2518), + [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), + }, + [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_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(2548), + [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), + }, + [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_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(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), + [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), + }, + [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_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(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), + [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), + }, + [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_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(2570), + [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), + }, + [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_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(2576), + [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), + }, + [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_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(2578), + [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), + }, + [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), @@ -108798,8 +110393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1875), [anon_sym_yield] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(1875), [anon_sym_DQUOTE] = ACTIONS(1873), [anon_sym_SQUOTE] = ACTIONS(1873), [anon_sym_class] = ACTIONS(1875), @@ -108810,7 +110403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1875), [anon_sym_DASH] = ACTIONS(1875), [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1873), [anon_sym_TILDE] = ACTIONS(1873), [anon_sym_void] = ACTIONS(1875), [anon_sym_delete] = ACTIONS(1875), @@ -108848,30444 +110441,27088 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1875), [sym_html_comment] = ACTIONS(5), }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_typeof] = ACTIONS(1879), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_with] = ACTIONS(1879), - [anon_sym_var] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_await] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_debugger] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_throw] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1877), - [sym_glimmer_opening_tag] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_function] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_void] = ACTIONS(1879), - [anon_sym_delete] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1877), - [sym_number] = ACTIONS(1877), - [sym_private_property_identifier] = ACTIONS(1877), - [sym_this] = ACTIONS(1879), - [sym_super] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), - [sym_undefined] = ACTIONS(1879), - [anon_sym_AT] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_readonly] = ACTIONS(1879), - [anon_sym_get] = ACTIONS(1879), - [anon_sym_set] = ACTIONS(1879), - [anon_sym_declare] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [anon_sym_override] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_any] = ACTIONS(1879), - [anon_sym_number] = ACTIONS(1879), - [anon_sym_boolean] = ACTIONS(1879), - [anon_sym_string] = ACTIONS(1879), - [anon_sym_symbol] = ACTIONS(1879), - [anon_sym_object] = ACTIONS(1879), - [anon_sym_abstract] = ACTIONS(1879), - [anon_sym_interface] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [sym__automatic_semicolon] = ACTIONS(1885), - [sym_html_comment] = ACTIONS(5), - }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(1889), - [anon_sym_import] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_debugger] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_throw] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [sym_glimmer_opening_tag] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_function] = ACTIONS(1889), - [anon_sym_new] = ACTIONS(1889), - [anon_sym_using] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_void] = ACTIONS(1889), - [anon_sym_delete] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1887), - [sym_number] = ACTIONS(1887), - [sym_private_property_identifier] = ACTIONS(1887), - [sym_this] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_undefined] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_readonly] = ACTIONS(1889), - [anon_sym_get] = ACTIONS(1889), - [anon_sym_set] = ACTIONS(1889), - [anon_sym_declare] = ACTIONS(1889), - [anon_sym_public] = ACTIONS(1889), - [anon_sym_private] = ACTIONS(1889), - [anon_sym_protected] = ACTIONS(1889), - [anon_sym_override] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1889), - [anon_sym_number] = ACTIONS(1889), - [anon_sym_boolean] = ACTIONS(1889), - [anon_sym_string] = ACTIONS(1889), - [anon_sym_symbol] = ACTIONS(1889), - [anon_sym_object] = ACTIONS(1889), - [anon_sym_abstract] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [sym__automatic_semicolon] = ACTIONS(1895), - [sym_html_comment] = ACTIONS(5), - }, - [775] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_export] = ACTIONS(1789), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_namespace] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_typeof] = ACTIONS(1789), - [anon_sym_import] = ACTIONS(1789), - [anon_sym_with] = ACTIONS(1789), - [anon_sym_var] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_else] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_switch] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_do] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_debugger] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_throw] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1789), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [sym_glimmer_opening_tag] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1789), - [anon_sym_using] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_void] = ACTIONS(1789), - [anon_sym_delete] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1787), - [sym_number] = ACTIONS(1787), - [sym_private_property_identifier] = ACTIONS(1787), - [sym_this] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_null] = ACTIONS(1789), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_readonly] = ACTIONS(1789), - [anon_sym_get] = ACTIONS(1789), - [anon_sym_set] = ACTIONS(1789), - [anon_sym_declare] = ACTIONS(1789), - [anon_sym_public] = ACTIONS(1789), - [anon_sym_private] = ACTIONS(1789), - [anon_sym_protected] = ACTIONS(1789), - [anon_sym_override] = ACTIONS(1789), - [anon_sym_module] = ACTIONS(1789), - [anon_sym_any] = ACTIONS(1789), - [anon_sym_number] = ACTIONS(1789), - [anon_sym_boolean] = ACTIONS(1789), - [anon_sym_string] = ACTIONS(1789), - [anon_sym_symbol] = ACTIONS(1789), - [anon_sym_object] = ACTIONS(1789), - [anon_sym_abstract] = ACTIONS(1789), - [anon_sym_interface] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [sym__automatic_semicolon] = ACTIONS(1795), - [sym_html_comment] = ACTIONS(5), - }, - [777] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [778] = { - [ts_builtin_sym_end] = ACTIONS(2495), - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_default] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_case] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [sym_glimmer_opening_tag] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2495), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_using] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2495), - [sym_number] = ACTIONS(2495), - [sym_private_property_identifier] = ACTIONS(2495), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_object] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - [sym_html_comment] = ACTIONS(5), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_default] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_case] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [sym_glimmer_opening_tag] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_private_property_identifier] = ACTIONS(2499), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_object] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [sym_html_comment] = ACTIONS(5), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2505), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_default] = ACTIONS(2505), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2505), - [anon_sym_import] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_var] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_debugger] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_case] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [sym_glimmer_opening_tag] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2505), - [anon_sym_delete] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_private_property_identifier] = ACTIONS(2503), - [sym_this] = ACTIONS(2505), - [sym_super] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_null] = ACTIONS(2505), - [sym_undefined] = ACTIONS(2505), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_readonly] = ACTIONS(2505), - [anon_sym_get] = ACTIONS(2505), - [anon_sym_set] = ACTIONS(2505), - [anon_sym_declare] = ACTIONS(2505), - [anon_sym_public] = ACTIONS(2505), - [anon_sym_private] = ACTIONS(2505), - [anon_sym_protected] = ACTIONS(2505), - [anon_sym_override] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_any] = ACTIONS(2505), - [anon_sym_number] = ACTIONS(2505), - [anon_sym_boolean] = ACTIONS(2505), - [anon_sym_string] = ACTIONS(2505), - [anon_sym_symbol] = ACTIONS(2505), - [anon_sym_object] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_typeof] = ACTIONS(2509), - [anon_sym_import] = ACTIONS(2509), - [anon_sym_with] = ACTIONS(2509), - [anon_sym_var] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_debugger] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_case] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [sym_glimmer_opening_tag] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_void] = ACTIONS(2509), - [anon_sym_delete] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2507), - [sym_number] = ACTIONS(2507), - [sym_private_property_identifier] = ACTIONS(2507), - [sym_this] = ACTIONS(2509), - [sym_super] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_null] = ACTIONS(2509), - [sym_undefined] = ACTIONS(2509), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_readonly] = ACTIONS(2509), - [anon_sym_get] = ACTIONS(2509), - [anon_sym_set] = ACTIONS(2509), - [anon_sym_declare] = ACTIONS(2509), - [anon_sym_public] = ACTIONS(2509), - [anon_sym_private] = ACTIONS(2509), - [anon_sym_protected] = ACTIONS(2509), - [anon_sym_override] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_any] = ACTIONS(2509), - [anon_sym_number] = ACTIONS(2509), - [anon_sym_boolean] = ACTIONS(2509), - [anon_sym_string] = ACTIONS(2509), - [anon_sym_symbol] = ACTIONS(2509), - [anon_sym_object] = ACTIONS(2509), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_default] = ACTIONS(2513), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_typeof] = ACTIONS(2513), - [anon_sym_import] = ACTIONS(2513), - [anon_sym_with] = ACTIONS(2513), - [anon_sym_var] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_debugger] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_case] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [sym_glimmer_opening_tag] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_void] = ACTIONS(2513), - [anon_sym_delete] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2511), - [sym_number] = ACTIONS(2511), - [sym_private_property_identifier] = ACTIONS(2511), - [sym_this] = ACTIONS(2513), - [sym_super] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_null] = ACTIONS(2513), - [sym_undefined] = ACTIONS(2513), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_readonly] = ACTIONS(2513), - [anon_sym_get] = ACTIONS(2513), - [anon_sym_set] = ACTIONS(2513), - [anon_sym_declare] = ACTIONS(2513), - [anon_sym_public] = ACTIONS(2513), - [anon_sym_private] = ACTIONS(2513), - [anon_sym_protected] = ACTIONS(2513), - [anon_sym_override] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_any] = ACTIONS(2513), - [anon_sym_number] = ACTIONS(2513), - [anon_sym_boolean] = ACTIONS(2513), - [anon_sym_string] = ACTIONS(2513), - [anon_sym_symbol] = ACTIONS(2513), - [anon_sym_object] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [sym_html_comment] = ACTIONS(5), - }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(2515), - [sym_identifier] = ACTIONS(2517), - [anon_sym_export] = ACTIONS(2517), - [anon_sym_default] = ACTIONS(2517), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_typeof] = ACTIONS(2517), - [anon_sym_import] = ACTIONS(2517), - [anon_sym_with] = ACTIONS(2517), - [anon_sym_var] = ACTIONS(2517), - [anon_sym_let] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_debugger] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_case] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [sym_glimmer_opening_tag] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_SLASH] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_void] = ACTIONS(2517), - [anon_sym_delete] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2515), - [sym_number] = ACTIONS(2515), - [sym_private_property_identifier] = ACTIONS(2515), - [sym_this] = ACTIONS(2517), - [sym_super] = ACTIONS(2517), - [sym_true] = ACTIONS(2517), - [sym_false] = ACTIONS(2517), - [sym_null] = ACTIONS(2517), - [sym_undefined] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_readonly] = ACTIONS(2517), - [anon_sym_get] = ACTIONS(2517), - [anon_sym_set] = ACTIONS(2517), - [anon_sym_declare] = ACTIONS(2517), - [anon_sym_public] = ACTIONS(2517), - [anon_sym_private] = ACTIONS(2517), - [anon_sym_protected] = ACTIONS(2517), - [anon_sym_override] = ACTIONS(2517), - [anon_sym_module] = ACTIONS(2517), - [anon_sym_any] = ACTIONS(2517), - [anon_sym_number] = ACTIONS(2517), - [anon_sym_boolean] = ACTIONS(2517), - [anon_sym_string] = ACTIONS(2517), - [anon_sym_symbol] = ACTIONS(2517), - [anon_sym_object] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [sym_html_comment] = ACTIONS(5), - }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2521), - [anon_sym_export] = ACTIONS(2521), - [anon_sym_default] = ACTIONS(2521), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_typeof] = ACTIONS(2521), - [anon_sym_import] = ACTIONS(2521), - [anon_sym_with] = ACTIONS(2521), - [anon_sym_var] = ACTIONS(2521), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_debugger] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_case] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [sym_glimmer_opening_tag] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(2519), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_void] = ACTIONS(2521), - [anon_sym_delete] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2519), - [sym_number] = ACTIONS(2519), - [sym_private_property_identifier] = ACTIONS(2519), - [sym_this] = ACTIONS(2521), - [sym_super] = ACTIONS(2521), - [sym_true] = ACTIONS(2521), - [sym_false] = ACTIONS(2521), - [sym_null] = ACTIONS(2521), - [sym_undefined] = ACTIONS(2521), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_readonly] = ACTIONS(2521), - [anon_sym_get] = ACTIONS(2521), - [anon_sym_set] = ACTIONS(2521), - [anon_sym_declare] = ACTIONS(2521), - [anon_sym_public] = ACTIONS(2521), - [anon_sym_private] = ACTIONS(2521), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_override] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_any] = ACTIONS(2521), - [anon_sym_number] = ACTIONS(2521), - [anon_sym_boolean] = ACTIONS(2521), - [anon_sym_string] = ACTIONS(2521), - [anon_sym_symbol] = ACTIONS(2521), - [anon_sym_object] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [sym_html_comment] = ACTIONS(5), - }, - [785] = { - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2525), - [anon_sym_export] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_typeof] = ACTIONS(2525), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_with] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2525), - [anon_sym_let] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_debugger] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2523), - [sym_glimmer_opening_tag] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_void] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2523), - [sym_number] = ACTIONS(2523), - [sym_private_property_identifier] = ACTIONS(2523), - [sym_this] = ACTIONS(2525), - [sym_super] = ACTIONS(2525), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_undefined] = ACTIONS(2525), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_readonly] = ACTIONS(2525), - [anon_sym_get] = ACTIONS(2525), - [anon_sym_set] = ACTIONS(2525), - [anon_sym_declare] = ACTIONS(2525), - [anon_sym_public] = ACTIONS(2525), - [anon_sym_private] = ACTIONS(2525), - [anon_sym_protected] = ACTIONS(2525), - [anon_sym_override] = ACTIONS(2525), - [anon_sym_module] = ACTIONS(2525), - [anon_sym_any] = ACTIONS(2525), - [anon_sym_number] = ACTIONS(2525), - [anon_sym_boolean] = ACTIONS(2525), - [anon_sym_string] = ACTIONS(2525), - [anon_sym_symbol] = ACTIONS(2525), - [anon_sym_object] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [sym_html_comment] = ACTIONS(5), - }, - [786] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(4756), - [sym_optional_tuple_parameter] = STATE(4756), - [sym_optional_type] = STATE(4756), - [sym_rest_type] = STATE(4756), - [sym__tuple_type_member] = STATE(4756), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2529), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2531), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(2539), - [sym_identifier] = ACTIONS(2541), - [anon_sym_export] = ACTIONS(2541), - [anon_sym_default] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_typeof] = ACTIONS(2541), - [anon_sym_import] = ACTIONS(2541), - [anon_sym_with] = ACTIONS(2541), - [anon_sym_var] = ACTIONS(2541), - [anon_sym_let] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_debugger] = ACTIONS(2541), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_case] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2539), - [sym_glimmer_opening_tag] = ACTIONS(2539), - [anon_sym_DQUOTE] = ACTIONS(2539), - [anon_sym_SQUOTE] = ACTIONS(2539), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_SLASH] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_TILDE] = ACTIONS(2539), - [anon_sym_void] = ACTIONS(2541), - [anon_sym_delete] = ACTIONS(2541), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2539), - [sym_number] = ACTIONS(2539), - [sym_private_property_identifier] = ACTIONS(2539), - [sym_this] = ACTIONS(2541), - [sym_super] = ACTIONS(2541), - [sym_true] = ACTIONS(2541), - [sym_false] = ACTIONS(2541), - [sym_null] = ACTIONS(2541), - [sym_undefined] = ACTIONS(2541), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_readonly] = ACTIONS(2541), - [anon_sym_get] = ACTIONS(2541), - [anon_sym_set] = ACTIONS(2541), - [anon_sym_declare] = ACTIONS(2541), - [anon_sym_public] = ACTIONS(2541), - [anon_sym_private] = ACTIONS(2541), - [anon_sym_protected] = ACTIONS(2541), - [anon_sym_override] = ACTIONS(2541), - [anon_sym_module] = ACTIONS(2541), - [anon_sym_any] = ACTIONS(2541), - [anon_sym_number] = ACTIONS(2541), - [anon_sym_boolean] = ACTIONS(2541), - [anon_sym_string] = ACTIONS(2541), - [anon_sym_symbol] = ACTIONS(2541), - [anon_sym_object] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [sym_html_comment] = ACTIONS(5), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(2543), - [sym_identifier] = ACTIONS(2545), - [anon_sym_export] = ACTIONS(2545), - [anon_sym_default] = ACTIONS(2545), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_typeof] = ACTIONS(2545), - [anon_sym_import] = ACTIONS(2545), - [anon_sym_with] = ACTIONS(2545), - [anon_sym_var] = ACTIONS(2545), - [anon_sym_let] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_debugger] = ACTIONS(2545), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2543), - [sym_glimmer_opening_tag] = ACTIONS(2543), - [anon_sym_DQUOTE] = ACTIONS(2543), - [anon_sym_SQUOTE] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_SLASH] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_void] = ACTIONS(2545), - [anon_sym_delete] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2543), - [sym_number] = ACTIONS(2543), - [sym_private_property_identifier] = ACTIONS(2543), - [sym_this] = ACTIONS(2545), - [sym_super] = ACTIONS(2545), - [sym_true] = ACTIONS(2545), - [sym_false] = ACTIONS(2545), - [sym_null] = ACTIONS(2545), - [sym_undefined] = ACTIONS(2545), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_readonly] = ACTIONS(2545), - [anon_sym_get] = ACTIONS(2545), - [anon_sym_set] = ACTIONS(2545), - [anon_sym_declare] = ACTIONS(2545), - [anon_sym_public] = ACTIONS(2545), - [anon_sym_private] = ACTIONS(2545), - [anon_sym_protected] = ACTIONS(2545), - [anon_sym_override] = ACTIONS(2545), - [anon_sym_module] = ACTIONS(2545), - [anon_sym_any] = ACTIONS(2545), - [anon_sym_number] = ACTIONS(2545), - [anon_sym_boolean] = ACTIONS(2545), - [anon_sym_string] = ACTIONS(2545), - [anon_sym_symbol] = ACTIONS(2545), - [anon_sym_object] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [sym_html_comment] = ACTIONS(5), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [sym_html_comment] = ACTIONS(5), - }, - [790] = { - [ts_builtin_sym_end] = ACTIONS(2547), - [sym_identifier] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2549), - [anon_sym_default] = ACTIONS(2549), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_typeof] = ACTIONS(2549), - [anon_sym_import] = ACTIONS(2549), - [anon_sym_with] = ACTIONS(2549), - [anon_sym_var] = ACTIONS(2549), - [anon_sym_let] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_else] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_debugger] = ACTIONS(2549), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_case] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2547), - [sym_glimmer_opening_tag] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_SLASH] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_void] = ACTIONS(2549), - [anon_sym_delete] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2547), - [sym_number] = ACTIONS(2547), - [sym_private_property_identifier] = ACTIONS(2547), - [sym_this] = ACTIONS(2549), - [sym_super] = ACTIONS(2549), - [sym_true] = ACTIONS(2549), - [sym_false] = ACTIONS(2549), - [sym_null] = ACTIONS(2549), - [sym_undefined] = ACTIONS(2549), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_readonly] = ACTIONS(2549), - [anon_sym_get] = ACTIONS(2549), - [anon_sym_set] = ACTIONS(2549), - [anon_sym_declare] = ACTIONS(2549), - [anon_sym_public] = ACTIONS(2549), - [anon_sym_private] = ACTIONS(2549), - [anon_sym_protected] = ACTIONS(2549), - [anon_sym_override] = ACTIONS(2549), - [anon_sym_module] = ACTIONS(2549), - [anon_sym_any] = ACTIONS(2549), - [anon_sym_number] = ACTIONS(2549), - [anon_sym_boolean] = ACTIONS(2549), - [anon_sym_string] = ACTIONS(2549), - [anon_sym_symbol] = ACTIONS(2549), - [anon_sym_object] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [sym_html_comment] = ACTIONS(5), - }, - [791] = { - [ts_builtin_sym_end] = ACTIONS(2551), - [sym_identifier] = ACTIONS(2553), - [anon_sym_export] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_type] = ACTIONS(2553), - [anon_sym_namespace] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_typeof] = ACTIONS(2553), - [anon_sym_import] = ACTIONS(2553), - [anon_sym_with] = ACTIONS(2553), - [anon_sym_var] = ACTIONS(2553), - [anon_sym_let] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_debugger] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_throw] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2551), - [sym_glimmer_opening_tag] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2551), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_class] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(2553), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_SLASH] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_void] = ACTIONS(2553), - [anon_sym_delete] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2551), - [sym_number] = ACTIONS(2551), - [sym_private_property_identifier] = ACTIONS(2551), - [sym_this] = ACTIONS(2553), - [sym_super] = ACTIONS(2553), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_undefined] = ACTIONS(2553), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_readonly] = ACTIONS(2553), - [anon_sym_get] = ACTIONS(2553), - [anon_sym_set] = ACTIONS(2553), - [anon_sym_declare] = ACTIONS(2553), - [anon_sym_public] = ACTIONS(2553), - [anon_sym_private] = ACTIONS(2553), - [anon_sym_protected] = ACTIONS(2553), - [anon_sym_override] = ACTIONS(2553), - [anon_sym_module] = ACTIONS(2553), - [anon_sym_any] = ACTIONS(2553), - [anon_sym_number] = ACTIONS(2553), - [anon_sym_boolean] = ACTIONS(2553), - [anon_sym_string] = ACTIONS(2553), - [anon_sym_symbol] = ACTIONS(2553), - [anon_sym_object] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_interface] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [sym_html_comment] = ACTIONS(5), - }, - [792] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2555), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(2559), - [sym_identifier] = ACTIONS(2561), - [anon_sym_export] = ACTIONS(2561), - [anon_sym_default] = ACTIONS(2561), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_namespace] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_typeof] = ACTIONS(2561), - [anon_sym_import] = ACTIONS(2561), - [anon_sym_with] = ACTIONS(2561), - [anon_sym_var] = ACTIONS(2561), - [anon_sym_let] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_switch] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_debugger] = ACTIONS(2561), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_case] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2559), - [sym_glimmer_opening_tag] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2561), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_SLASH] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_void] = ACTIONS(2561), - [anon_sym_delete] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2559), - [sym_number] = ACTIONS(2559), - [sym_private_property_identifier] = ACTIONS(2559), - [sym_this] = ACTIONS(2561), - [sym_super] = ACTIONS(2561), - [sym_true] = ACTIONS(2561), - [sym_false] = ACTIONS(2561), - [sym_null] = ACTIONS(2561), - [sym_undefined] = ACTIONS(2561), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2561), - [anon_sym_readonly] = ACTIONS(2561), - [anon_sym_get] = ACTIONS(2561), - [anon_sym_set] = ACTIONS(2561), - [anon_sym_declare] = ACTIONS(2561), - [anon_sym_public] = ACTIONS(2561), - [anon_sym_private] = ACTIONS(2561), - [anon_sym_protected] = ACTIONS(2561), - [anon_sym_override] = ACTIONS(2561), - [anon_sym_module] = ACTIONS(2561), - [anon_sym_any] = ACTIONS(2561), - [anon_sym_number] = ACTIONS(2561), - [anon_sym_boolean] = ACTIONS(2561), - [anon_sym_string] = ACTIONS(2561), - [anon_sym_symbol] = ACTIONS(2561), - [anon_sym_object] = ACTIONS(2561), - [anon_sym_abstract] = ACTIONS(2561), - [anon_sym_interface] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2561), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(2563), - [sym_identifier] = ACTIONS(2565), - [anon_sym_export] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_typeof] = ACTIONS(2565), - [anon_sym_import] = ACTIONS(2565), - [anon_sym_with] = ACTIONS(2565), - [anon_sym_var] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_debugger] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_case] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(2563), - [sym_glimmer_opening_tag] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2563), - [anon_sym_SQUOTE] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_void] = ACTIONS(2565), - [anon_sym_delete] = ACTIONS(2565), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2563), - [sym_number] = ACTIONS(2563), - [sym_private_property_identifier] = ACTIONS(2563), - [sym_this] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_true] = ACTIONS(2565), - [sym_false] = ACTIONS(2565), - [sym_null] = ACTIONS(2565), - [sym_undefined] = ACTIONS(2565), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_readonly] = ACTIONS(2565), - [anon_sym_get] = ACTIONS(2565), - [anon_sym_set] = ACTIONS(2565), - [anon_sym_declare] = ACTIONS(2565), - [anon_sym_public] = ACTIONS(2565), - [anon_sym_private] = ACTIONS(2565), - [anon_sym_protected] = ACTIONS(2565), - [anon_sym_override] = ACTIONS(2565), - [anon_sym_module] = ACTIONS(2565), - [anon_sym_any] = ACTIONS(2565), - [anon_sym_number] = ACTIONS(2565), - [anon_sym_boolean] = ACTIONS(2565), - [anon_sym_string] = ACTIONS(2565), - [anon_sym_symbol] = ACTIONS(2565), - [anon_sym_object] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [sym_html_comment] = ACTIONS(5), - }, - [795] = { - [ts_builtin_sym_end] = ACTIONS(2567), - [sym_identifier] = ACTIONS(2569), - [anon_sym_export] = ACTIONS(2569), - [anon_sym_default] = ACTIONS(2569), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_typeof] = ACTIONS(2569), - [anon_sym_import] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2569), - [anon_sym_var] = ACTIONS(2569), - [anon_sym_let] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_debugger] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_case] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2567), - [sym_glimmer_opening_tag] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_SQUOTE] = ACTIONS(2567), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_SLASH] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_void] = ACTIONS(2569), - [anon_sym_delete] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2567), - [sym_number] = ACTIONS(2567), - [sym_private_property_identifier] = ACTIONS(2567), - [sym_this] = ACTIONS(2569), - [sym_super] = ACTIONS(2569), - [sym_true] = ACTIONS(2569), - [sym_false] = ACTIONS(2569), - [sym_null] = ACTIONS(2569), - [sym_undefined] = ACTIONS(2569), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_readonly] = ACTIONS(2569), - [anon_sym_get] = ACTIONS(2569), - [anon_sym_set] = ACTIONS(2569), - [anon_sym_declare] = ACTIONS(2569), - [anon_sym_public] = ACTIONS(2569), - [anon_sym_private] = ACTIONS(2569), - [anon_sym_protected] = ACTIONS(2569), - [anon_sym_override] = ACTIONS(2569), - [anon_sym_module] = ACTIONS(2569), - [anon_sym_any] = ACTIONS(2569), - [anon_sym_number] = ACTIONS(2569), - [anon_sym_boolean] = ACTIONS(2569), - [anon_sym_string] = ACTIONS(2569), - [anon_sym_symbol] = ACTIONS(2569), - [anon_sym_object] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [sym_html_comment] = ACTIONS(5), - }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(2571), - [sym_identifier] = ACTIONS(2573), - [anon_sym_export] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_typeof] = ACTIONS(2573), - [anon_sym_import] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2573), - [anon_sym_var] = ACTIONS(2573), - [anon_sym_let] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_debugger] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2571), - [sym_glimmer_opening_tag] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_void] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2571), - [sym_number] = ACTIONS(2571), - [sym_private_property_identifier] = ACTIONS(2571), - [sym_this] = ACTIONS(2573), - [sym_super] = ACTIONS(2573), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [sym_null] = ACTIONS(2573), - [sym_undefined] = ACTIONS(2573), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_get] = ACTIONS(2573), - [anon_sym_set] = ACTIONS(2573), - [anon_sym_declare] = ACTIONS(2573), - [anon_sym_public] = ACTIONS(2573), - [anon_sym_private] = ACTIONS(2573), - [anon_sym_protected] = ACTIONS(2573), - [anon_sym_override] = ACTIONS(2573), - [anon_sym_module] = ACTIONS(2573), - [anon_sym_any] = ACTIONS(2573), - [anon_sym_number] = ACTIONS(2573), - [anon_sym_boolean] = ACTIONS(2573), - [anon_sym_string] = ACTIONS(2573), - [anon_sym_symbol] = ACTIONS(2573), - [anon_sym_object] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [sym_html_comment] = ACTIONS(5), - }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2577), - [anon_sym_export] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_typeof] = ACTIONS(2577), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_var] = ACTIONS(2577), - [anon_sym_let] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_debugger] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_glimmer_opening_tag] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_void] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2575), - [sym_number] = ACTIONS(2575), - [sym_private_property_identifier] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_super] = ACTIONS(2577), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_undefined] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_readonly] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2577), - [anon_sym_set] = ACTIONS(2577), - [anon_sym_declare] = ACTIONS(2577), - [anon_sym_public] = ACTIONS(2577), - [anon_sym_private] = ACTIONS(2577), - [anon_sym_protected] = ACTIONS(2577), - [anon_sym_override] = ACTIONS(2577), - [anon_sym_module] = ACTIONS(2577), - [anon_sym_any] = ACTIONS(2577), - [anon_sym_number] = ACTIONS(2577), - [anon_sym_boolean] = ACTIONS(2577), - [anon_sym_string] = ACTIONS(2577), - [anon_sym_symbol] = ACTIONS(2577), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [sym_html_comment] = ACTIONS(5), - }, - [798] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2577), - [anon_sym_export] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_typeof] = ACTIONS(2577), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_var] = ACTIONS(2577), - [anon_sym_let] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_debugger] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_glimmer_opening_tag] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_void] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2575), - [sym_number] = ACTIONS(2575), - [sym_private_property_identifier] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_super] = ACTIONS(2577), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_undefined] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_readonly] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2577), - [anon_sym_set] = ACTIONS(2577), - [anon_sym_declare] = ACTIONS(2577), - [anon_sym_public] = ACTIONS(2577), - [anon_sym_private] = ACTIONS(2577), - [anon_sym_protected] = ACTIONS(2577), - [anon_sym_override] = ACTIONS(2577), - [anon_sym_module] = ACTIONS(2577), - [anon_sym_any] = ACTIONS(2577), - [anon_sym_number] = ACTIONS(2577), - [anon_sym_boolean] = ACTIONS(2577), - [anon_sym_string] = ACTIONS(2577), - [anon_sym_symbol] = ACTIONS(2577), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [sym_html_comment] = ACTIONS(5), - }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2577), - [anon_sym_export] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_typeof] = ACTIONS(2577), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_var] = ACTIONS(2577), - [anon_sym_let] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_debugger] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_glimmer_opening_tag] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_void] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2575), - [sym_number] = ACTIONS(2575), - [sym_private_property_identifier] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_super] = ACTIONS(2577), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_undefined] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_readonly] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2577), - [anon_sym_set] = ACTIONS(2577), - [anon_sym_declare] = ACTIONS(2577), - [anon_sym_public] = ACTIONS(2577), - [anon_sym_private] = ACTIONS(2577), - [anon_sym_protected] = ACTIONS(2577), - [anon_sym_override] = ACTIONS(2577), - [anon_sym_module] = ACTIONS(2577), - [anon_sym_any] = ACTIONS(2577), - [anon_sym_number] = ACTIONS(2577), - [anon_sym_boolean] = ACTIONS(2577), - [anon_sym_string] = ACTIONS(2577), - [anon_sym_symbol] = ACTIONS(2577), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [sym_html_comment] = ACTIONS(5), - }, - [800] = { - [ts_builtin_sym_end] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2581), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_default] = ACTIONS(2581), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_typeof] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_else] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_debugger] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [sym_glimmer_opening_tag] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_void] = ACTIONS(2581), - [anon_sym_delete] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2579), - [sym_number] = ACTIONS(2579), - [sym_private_property_identifier] = ACTIONS(2579), - [sym_this] = ACTIONS(2581), - [sym_super] = ACTIONS(2581), - [sym_true] = ACTIONS(2581), - [sym_false] = ACTIONS(2581), - [sym_null] = ACTIONS(2581), - [sym_undefined] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_get] = ACTIONS(2581), - [anon_sym_set] = ACTIONS(2581), - [anon_sym_declare] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_protected] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_any] = ACTIONS(2581), - [anon_sym_number] = ACTIONS(2581), - [anon_sym_boolean] = ACTIONS(2581), - [anon_sym_string] = ACTIONS(2581), - [anon_sym_symbol] = ACTIONS(2581), - [anon_sym_object] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [sym_html_comment] = ACTIONS(5), - }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2585), - [anon_sym_export] = ACTIONS(2585), - [anon_sym_default] = ACTIONS(2585), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_typeof] = ACTIONS(2585), - [anon_sym_import] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2585), - [anon_sym_var] = ACTIONS(2585), - [anon_sym_let] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_debugger] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_case] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [sym_glimmer_opening_tag] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_void] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2583), - [sym_number] = ACTIONS(2583), - [sym_private_property_identifier] = ACTIONS(2583), - [sym_this] = ACTIONS(2585), - [sym_super] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_null] = ACTIONS(2585), - [sym_undefined] = ACTIONS(2585), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_readonly] = ACTIONS(2585), - [anon_sym_get] = ACTIONS(2585), - [anon_sym_set] = ACTIONS(2585), - [anon_sym_declare] = ACTIONS(2585), - [anon_sym_public] = ACTIONS(2585), - [anon_sym_private] = ACTIONS(2585), - [anon_sym_protected] = ACTIONS(2585), - [anon_sym_override] = ACTIONS(2585), - [anon_sym_module] = ACTIONS(2585), - [anon_sym_any] = ACTIONS(2585), - [anon_sym_number] = ACTIONS(2585), - [anon_sym_boolean] = ACTIONS(2585), - [anon_sym_string] = ACTIONS(2585), - [anon_sym_symbol] = ACTIONS(2585), - [anon_sym_object] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [sym_html_comment] = ACTIONS(5), - }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2589), - [anon_sym_export] = ACTIONS(2589), - [anon_sym_default] = ACTIONS(2589), - [anon_sym_type] = ACTIONS(2589), - [anon_sym_namespace] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_typeof] = ACTIONS(2589), - [anon_sym_import] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2589), - [anon_sym_var] = ACTIONS(2589), - [anon_sym_let] = ACTIONS(2589), - [anon_sym_const] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2589), - [anon_sym_if] = ACTIONS(2589), - [anon_sym_switch] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2589), - [anon_sym_while] = ACTIONS(2589), - [anon_sym_do] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2589), - [anon_sym_break] = ACTIONS(2589), - [anon_sym_continue] = ACTIONS(2589), - [anon_sym_debugger] = ACTIONS(2589), - [anon_sym_return] = ACTIONS(2589), - [anon_sym_throw] = ACTIONS(2589), - [anon_sym_case] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [sym_glimmer_opening_tag] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_SQUOTE] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2589), - [anon_sym_async] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2589), - [anon_sym_using] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_SLASH] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_void] = ACTIONS(2589), - [anon_sym_delete] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2587), - [sym_number] = ACTIONS(2587), - [sym_private_property_identifier] = ACTIONS(2587), - [sym_this] = ACTIONS(2589), - [sym_super] = ACTIONS(2589), - [sym_true] = ACTIONS(2589), - [sym_false] = ACTIONS(2589), - [sym_null] = ACTIONS(2589), - [sym_undefined] = ACTIONS(2589), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2589), - [anon_sym_readonly] = ACTIONS(2589), - [anon_sym_get] = ACTIONS(2589), - [anon_sym_set] = ACTIONS(2589), - [anon_sym_declare] = ACTIONS(2589), - [anon_sym_public] = ACTIONS(2589), - [anon_sym_private] = ACTIONS(2589), - [anon_sym_protected] = ACTIONS(2589), - [anon_sym_override] = ACTIONS(2589), - [anon_sym_module] = ACTIONS(2589), - [anon_sym_any] = ACTIONS(2589), - [anon_sym_number] = ACTIONS(2589), - [anon_sym_boolean] = ACTIONS(2589), - [anon_sym_string] = ACTIONS(2589), - [anon_sym_symbol] = ACTIONS(2589), - [anon_sym_object] = ACTIONS(2589), - [anon_sym_abstract] = ACTIONS(2589), - [anon_sym_interface] = ACTIONS(2589), - [anon_sym_enum] = ACTIONS(2589), - [sym_html_comment] = ACTIONS(5), - }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(2591), - [sym_identifier] = ACTIONS(2593), - [anon_sym_export] = ACTIONS(2593), - [anon_sym_default] = ACTIONS(2593), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_typeof] = ACTIONS(2593), - [anon_sym_import] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2593), - [anon_sym_var] = ACTIONS(2593), - [anon_sym_let] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_debugger] = ACTIONS(2593), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_case] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [sym_glimmer_opening_tag] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_SQUOTE] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_SLASH] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2591), - [anon_sym_void] = ACTIONS(2593), - [anon_sym_delete] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2591), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2591), - [sym_number] = ACTIONS(2591), - [sym_private_property_identifier] = ACTIONS(2591), - [sym_this] = ACTIONS(2593), - [sym_super] = ACTIONS(2593), - [sym_true] = ACTIONS(2593), - [sym_false] = ACTIONS(2593), - [sym_null] = ACTIONS(2593), - [sym_undefined] = ACTIONS(2593), - [anon_sym_AT] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_readonly] = ACTIONS(2593), - [anon_sym_get] = ACTIONS(2593), - [anon_sym_set] = ACTIONS(2593), - [anon_sym_declare] = ACTIONS(2593), - [anon_sym_public] = ACTIONS(2593), - [anon_sym_private] = ACTIONS(2593), - [anon_sym_protected] = ACTIONS(2593), - [anon_sym_override] = ACTIONS(2593), - [anon_sym_module] = ACTIONS(2593), - [anon_sym_any] = ACTIONS(2593), - [anon_sym_number] = ACTIONS(2593), - [anon_sym_boolean] = ACTIONS(2593), - [anon_sym_string] = ACTIONS(2593), - [anon_sym_symbol] = ACTIONS(2593), - [anon_sym_object] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [sym_html_comment] = ACTIONS(5), - }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(2595), - [sym_identifier] = ACTIONS(2597), - [anon_sym_export] = ACTIONS(2597), - [anon_sym_default] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_typeof] = ACTIONS(2597), - [anon_sym_import] = ACTIONS(2597), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_var] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_const] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_switch] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_debugger] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_throw] = ACTIONS(2597), - [anon_sym_case] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [sym_glimmer_opening_tag] = ACTIONS(2595), - [anon_sym_DQUOTE] = ACTIONS(2595), - [anon_sym_SQUOTE] = ACTIONS(2595), - [anon_sym_class] = ACTIONS(2597), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_using] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_SLASH] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_void] = ACTIONS(2597), - [anon_sym_delete] = ACTIONS(2597), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2595), - [sym_number] = ACTIONS(2595), - [sym_private_property_identifier] = ACTIONS(2595), - [sym_this] = ACTIONS(2597), - [sym_super] = ACTIONS(2597), - [sym_true] = ACTIONS(2597), - [sym_false] = ACTIONS(2597), - [sym_null] = ACTIONS(2597), - [sym_undefined] = ACTIONS(2597), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2597), - [anon_sym_readonly] = ACTIONS(2597), - [anon_sym_get] = ACTIONS(2597), - [anon_sym_set] = ACTIONS(2597), - [anon_sym_declare] = ACTIONS(2597), - [anon_sym_public] = ACTIONS(2597), - [anon_sym_private] = ACTIONS(2597), - [anon_sym_protected] = ACTIONS(2597), - [anon_sym_override] = ACTIONS(2597), - [anon_sym_module] = ACTIONS(2597), - [anon_sym_any] = ACTIONS(2597), - [anon_sym_number] = ACTIONS(2597), - [anon_sym_boolean] = ACTIONS(2597), - [anon_sym_string] = ACTIONS(2597), - [anon_sym_symbol] = ACTIONS(2597), - [anon_sym_object] = ACTIONS(2597), - [anon_sym_abstract] = ACTIONS(2597), - [anon_sym_interface] = ACTIONS(2597), - [anon_sym_enum] = ACTIONS(2597), - [sym_html_comment] = ACTIONS(5), - }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(2599), - [sym_identifier] = ACTIONS(2601), - [anon_sym_export] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_typeof] = ACTIONS(2601), - [anon_sym_import] = ACTIONS(2601), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_var] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_debugger] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [sym_glimmer_opening_tag] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_SLASH] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2599), - [anon_sym_void] = ACTIONS(2601), - [anon_sym_delete] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2599), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2599), - [sym_number] = ACTIONS(2599), - [sym_private_property_identifier] = ACTIONS(2599), - [sym_this] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_true] = ACTIONS(2601), - [sym_false] = ACTIONS(2601), - [sym_null] = ACTIONS(2601), - [sym_undefined] = ACTIONS(2601), - [anon_sym_AT] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_readonly] = ACTIONS(2601), - [anon_sym_get] = ACTIONS(2601), - [anon_sym_set] = ACTIONS(2601), - [anon_sym_declare] = ACTIONS(2601), - [anon_sym_public] = ACTIONS(2601), - [anon_sym_private] = ACTIONS(2601), - [anon_sym_protected] = ACTIONS(2601), - [anon_sym_override] = ACTIONS(2601), - [anon_sym_module] = ACTIONS(2601), - [anon_sym_any] = ACTIONS(2601), - [anon_sym_number] = ACTIONS(2601), - [anon_sym_boolean] = ACTIONS(2601), - [anon_sym_string] = ACTIONS(2601), - [anon_sym_symbol] = ACTIONS(2601), - [anon_sym_object] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [sym_html_comment] = ACTIONS(5), - }, - [806] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5211), - [sym_optional_tuple_parameter] = STATE(5211), - [sym_optional_type] = STATE(5211), - [sym_rest_type] = STATE(5211), - [sym__tuple_type_member] = STATE(5211), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2609), - [anon_sym_export] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_typeof] = ACTIONS(2609), - [anon_sym_import] = ACTIONS(2609), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_var] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_else] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_debugger] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2607), - [sym_glimmer_opening_tag] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_SLASH] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_void] = ACTIONS(2609), - [anon_sym_delete] = ACTIONS(2609), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2607), - [sym_number] = ACTIONS(2607), - [sym_private_property_identifier] = ACTIONS(2607), - [sym_this] = ACTIONS(2609), - [sym_super] = ACTIONS(2609), - [sym_true] = ACTIONS(2609), - [sym_false] = ACTIONS(2609), - [sym_null] = ACTIONS(2609), - [sym_undefined] = ACTIONS(2609), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_readonly] = ACTIONS(2609), - [anon_sym_get] = ACTIONS(2609), - [anon_sym_set] = ACTIONS(2609), - [anon_sym_declare] = ACTIONS(2609), - [anon_sym_public] = ACTIONS(2609), - [anon_sym_private] = ACTIONS(2609), - [anon_sym_protected] = ACTIONS(2609), - [anon_sym_override] = ACTIONS(2609), - [anon_sym_module] = ACTIONS(2609), - [anon_sym_any] = ACTIONS(2609), - [anon_sym_number] = ACTIONS(2609), - [anon_sym_boolean] = ACTIONS(2609), - [anon_sym_string] = ACTIONS(2609), - [anon_sym_symbol] = ACTIONS(2609), - [anon_sym_object] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [sym_html_comment] = ACTIONS(5), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2613), - [anon_sym_export] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_type] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_typeof] = ACTIONS(2613), - [anon_sym_import] = ACTIONS(2613), - [anon_sym_with] = ACTIONS(2613), - [anon_sym_var] = ACTIONS(2613), - [anon_sym_let] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_debugger] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [sym_glimmer_opening_tag] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_function] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_void] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2611), - [sym_number] = ACTIONS(2611), - [sym_private_property_identifier] = ACTIONS(2611), - [sym_this] = ACTIONS(2613), - [sym_super] = ACTIONS(2613), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [sym_undefined] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_readonly] = ACTIONS(2613), - [anon_sym_get] = ACTIONS(2613), - [anon_sym_set] = ACTIONS(2613), - [anon_sym_declare] = ACTIONS(2613), - [anon_sym_public] = ACTIONS(2613), - [anon_sym_private] = ACTIONS(2613), - [anon_sym_protected] = ACTIONS(2613), - [anon_sym_override] = ACTIONS(2613), - [anon_sym_module] = ACTIONS(2613), - [anon_sym_any] = ACTIONS(2613), - [anon_sym_number] = ACTIONS(2613), - [anon_sym_boolean] = ACTIONS(2613), - [anon_sym_string] = ACTIONS(2613), - [anon_sym_symbol] = ACTIONS(2613), - [anon_sym_object] = ACTIONS(2613), - [anon_sym_abstract] = ACTIONS(2613), - [anon_sym_interface] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [sym_html_comment] = ACTIONS(5), - }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2617), - [anon_sym_export] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_type] = ACTIONS(2617), - [anon_sym_namespace] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_typeof] = ACTIONS(2617), - [anon_sym_import] = ACTIONS(2617), - [anon_sym_with] = ACTIONS(2617), - [anon_sym_var] = ACTIONS(2617), - [anon_sym_let] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_await] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_debugger] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_throw] = ACTIONS(2617), - [anon_sym_case] = ACTIONS(2617), - [anon_sym_yield] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2615), - [sym_glimmer_opening_tag] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2617), - [anon_sym_async] = ACTIONS(2617), - [anon_sym_function] = ACTIONS(2617), - [anon_sym_new] = ACTIONS(2617), - [anon_sym_using] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_void] = ACTIONS(2617), - [anon_sym_delete] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2615), - [sym_number] = ACTIONS(2615), - [sym_private_property_identifier] = ACTIONS(2615), - [sym_this] = ACTIONS(2617), - [sym_super] = ACTIONS(2617), - [sym_true] = ACTIONS(2617), - [sym_false] = ACTIONS(2617), - [sym_null] = ACTIONS(2617), - [sym_undefined] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_readonly] = ACTIONS(2617), - [anon_sym_get] = ACTIONS(2617), - [anon_sym_set] = ACTIONS(2617), - [anon_sym_declare] = ACTIONS(2617), - [anon_sym_public] = ACTIONS(2617), - [anon_sym_private] = ACTIONS(2617), - [anon_sym_protected] = ACTIONS(2617), - [anon_sym_override] = ACTIONS(2617), - [anon_sym_module] = ACTIONS(2617), - [anon_sym_any] = ACTIONS(2617), - [anon_sym_number] = ACTIONS(2617), - [anon_sym_boolean] = ACTIONS(2617), - [anon_sym_string] = ACTIONS(2617), - [anon_sym_symbol] = ACTIONS(2617), - [anon_sym_object] = ACTIONS(2617), - [anon_sym_abstract] = ACTIONS(2617), - [anon_sym_interface] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [sym_html_comment] = ACTIONS(5), - }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [sym_html_comment] = ACTIONS(5), - }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(2619), - [sym_identifier] = ACTIONS(2621), - [anon_sym_export] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_type] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_import] = ACTIONS(2621), - [anon_sym_with] = ACTIONS(2621), - [anon_sym_var] = ACTIONS(2621), - [anon_sym_let] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_await] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_debugger] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_yield] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [sym_glimmer_opening_tag] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_async] = ACTIONS(2621), - [anon_sym_function] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2619), - [anon_sym_void] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2619), - [sym_number] = ACTIONS(2619), - [sym_private_property_identifier] = ACTIONS(2619), - [sym_this] = ACTIONS(2621), - [sym_super] = ACTIONS(2621), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [sym_null] = ACTIONS(2621), - [sym_undefined] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_readonly] = ACTIONS(2621), - [anon_sym_get] = ACTIONS(2621), - [anon_sym_set] = ACTIONS(2621), - [anon_sym_declare] = ACTIONS(2621), - [anon_sym_public] = ACTIONS(2621), - [anon_sym_private] = ACTIONS(2621), - [anon_sym_protected] = ACTIONS(2621), - [anon_sym_override] = ACTIONS(2621), - [anon_sym_module] = ACTIONS(2621), - [anon_sym_any] = ACTIONS(2621), - [anon_sym_number] = ACTIONS(2621), - [anon_sym_boolean] = ACTIONS(2621), - [anon_sym_string] = ACTIONS(2621), - [anon_sym_symbol] = ACTIONS(2621), - [anon_sym_object] = ACTIONS(2621), - [anon_sym_abstract] = ACTIONS(2621), - [anon_sym_interface] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [sym_html_comment] = ACTIONS(5), - }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [sym_identifier] = ACTIONS(2625), - [anon_sym_export] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_type] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_typeof] = ACTIONS(2625), - [anon_sym_import] = ACTIONS(2625), - [anon_sym_with] = ACTIONS(2625), - [anon_sym_var] = ACTIONS(2625), - [anon_sym_let] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_await] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_debugger] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_yield] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [sym_glimmer_opening_tag] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_async] = ACTIONS(2625), - [anon_sym_function] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_void] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2623), - [sym_number] = ACTIONS(2623), - [sym_private_property_identifier] = ACTIONS(2623), - [sym_this] = ACTIONS(2625), - [sym_super] = ACTIONS(2625), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [sym_null] = ACTIONS(2625), - [sym_undefined] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_readonly] = ACTIONS(2625), - [anon_sym_get] = ACTIONS(2625), - [anon_sym_set] = ACTIONS(2625), - [anon_sym_declare] = ACTIONS(2625), - [anon_sym_public] = ACTIONS(2625), - [anon_sym_private] = ACTIONS(2625), - [anon_sym_protected] = ACTIONS(2625), - [anon_sym_override] = ACTIONS(2625), - [anon_sym_module] = ACTIONS(2625), - [anon_sym_any] = ACTIONS(2625), - [anon_sym_number] = ACTIONS(2625), - [anon_sym_boolean] = ACTIONS(2625), - [anon_sym_string] = ACTIONS(2625), - [anon_sym_symbol] = ACTIONS(2625), - [anon_sym_object] = ACTIONS(2625), - [anon_sym_abstract] = ACTIONS(2625), - [anon_sym_interface] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), + [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(2627), - [sym_identifier] = ACTIONS(2629), - [anon_sym_export] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_type] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_typeof] = ACTIONS(2629), - [anon_sym_import] = ACTIONS(2629), - [anon_sym_with] = ACTIONS(2629), - [anon_sym_var] = ACTIONS(2629), - [anon_sym_let] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_await] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_debugger] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_yield] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [sym_glimmer_opening_tag] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_async] = ACTIONS(2629), - [anon_sym_function] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_void] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2627), - [sym_number] = ACTIONS(2627), - [sym_private_property_identifier] = ACTIONS(2627), - [sym_this] = ACTIONS(2629), - [sym_super] = ACTIONS(2629), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [sym_null] = ACTIONS(2629), - [sym_undefined] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_readonly] = ACTIONS(2629), - [anon_sym_get] = ACTIONS(2629), - [anon_sym_set] = ACTIONS(2629), - [anon_sym_declare] = ACTIONS(2629), - [anon_sym_public] = ACTIONS(2629), - [anon_sym_private] = ACTIONS(2629), - [anon_sym_protected] = ACTIONS(2629), - [anon_sym_override] = ACTIONS(2629), - [anon_sym_module] = ACTIONS(2629), - [anon_sym_any] = ACTIONS(2629), - [anon_sym_number] = ACTIONS(2629), - [anon_sym_boolean] = ACTIONS(2629), - [anon_sym_string] = ACTIONS(2629), - [anon_sym_symbol] = ACTIONS(2629), - [anon_sym_object] = ACTIONS(2629), - [anon_sym_abstract] = ACTIONS(2629), - [anon_sym_interface] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), + [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(2631), - [sym_identifier] = ACTIONS(2633), - [anon_sym_export] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_type] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_typeof] = ACTIONS(2633), - [anon_sym_import] = ACTIONS(2633), - [anon_sym_with] = ACTIONS(2633), - [anon_sym_var] = ACTIONS(2633), - [anon_sym_let] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_await] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_debugger] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_yield] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [sym_glimmer_opening_tag] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_async] = ACTIONS(2633), - [anon_sym_function] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_void] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2631), - [sym_number] = ACTIONS(2631), - [sym_private_property_identifier] = ACTIONS(2631), - [sym_this] = ACTIONS(2633), - [sym_super] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_null] = ACTIONS(2633), - [sym_undefined] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_readonly] = ACTIONS(2633), - [anon_sym_get] = ACTIONS(2633), - [anon_sym_set] = ACTIONS(2633), - [anon_sym_declare] = ACTIONS(2633), - [anon_sym_public] = ACTIONS(2633), - [anon_sym_private] = ACTIONS(2633), - [anon_sym_protected] = ACTIONS(2633), - [anon_sym_override] = ACTIONS(2633), - [anon_sym_module] = ACTIONS(2633), - [anon_sym_any] = ACTIONS(2633), - [anon_sym_number] = ACTIONS(2633), - [anon_sym_boolean] = ACTIONS(2633), - [anon_sym_string] = ACTIONS(2633), - [anon_sym_symbol] = ACTIONS(2633), - [anon_sym_object] = ACTIONS(2633), - [anon_sym_abstract] = ACTIONS(2633), - [anon_sym_interface] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), + [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(2635), - [sym_identifier] = ACTIONS(2637), - [anon_sym_export] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_type] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_typeof] = ACTIONS(2637), - [anon_sym_import] = ACTIONS(2637), - [anon_sym_with] = ACTIONS(2637), - [anon_sym_var] = ACTIONS(2637), - [anon_sym_let] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_await] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_debugger] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_yield] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [sym_glimmer_opening_tag] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_async] = ACTIONS(2637), - [anon_sym_function] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2635), - [sym_number] = ACTIONS(2635), - [sym_private_property_identifier] = ACTIONS(2635), - [sym_this] = ACTIONS(2637), - [sym_super] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_null] = ACTIONS(2637), - [sym_undefined] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_readonly] = ACTIONS(2637), - [anon_sym_get] = ACTIONS(2637), - [anon_sym_set] = ACTIONS(2637), - [anon_sym_declare] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2637), - [anon_sym_module] = ACTIONS(2637), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2637), - [anon_sym_interface] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), + [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(2639), - [sym_identifier] = ACTIONS(2641), - [anon_sym_export] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_type] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_typeof] = ACTIONS(2641), - [anon_sym_import] = ACTIONS(2641), - [anon_sym_with] = ACTIONS(2641), - [anon_sym_var] = ACTIONS(2641), - [anon_sym_let] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_await] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_debugger] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_yield] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [sym_glimmer_opening_tag] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_function] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_void] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2639), - [sym_private_property_identifier] = ACTIONS(2639), - [sym_this] = ACTIONS(2641), - [sym_super] = ACTIONS(2641), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [sym_null] = ACTIONS(2641), - [sym_undefined] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_readonly] = ACTIONS(2641), - [anon_sym_get] = ACTIONS(2641), - [anon_sym_set] = ACTIONS(2641), - [anon_sym_declare] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_override] = ACTIONS(2641), - [anon_sym_module] = ACTIONS(2641), - [anon_sym_any] = ACTIONS(2641), - [anon_sym_number] = ACTIONS(2641), - [anon_sym_boolean] = ACTIONS(2641), - [anon_sym_string] = ACTIONS(2641), - [anon_sym_symbol] = ACTIONS(2641), - [anon_sym_object] = ACTIONS(2641), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_interface] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), + [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] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(4645), - [sym_optional_tuple_parameter] = STATE(4645), - [sym_optional_type] = STATE(4645), - [sym_rest_type] = STATE(4645), - [sym__tuple_type_member] = STATE(4645), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), }, [818] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_export] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_typeof] = ACTIONS(2649), - [anon_sym_import] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_var] = ACTIONS(2649), - [anon_sym_let] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_await] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_debugger] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [sym_glimmer_opening_tag] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_async] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_void] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2647), - [sym_number] = ACTIONS(2647), - [sym_private_property_identifier] = ACTIONS(2647), - [sym_this] = ACTIONS(2649), - [sym_super] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_null] = ACTIONS(2649), - [sym_undefined] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_readonly] = ACTIONS(2649), - [anon_sym_get] = ACTIONS(2649), - [anon_sym_set] = ACTIONS(2649), - [anon_sym_declare] = ACTIONS(2649), - [anon_sym_public] = ACTIONS(2649), - [anon_sym_private] = ACTIONS(2649), - [anon_sym_protected] = ACTIONS(2649), - [anon_sym_override] = ACTIONS(2649), - [anon_sym_module] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2649), - [anon_sym_number] = ACTIONS(2649), - [anon_sym_boolean] = ACTIONS(2649), - [anon_sym_string] = ACTIONS(2649), - [anon_sym_symbol] = ACTIONS(2649), - [anon_sym_object] = ACTIONS(2649), - [anon_sym_abstract] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), + [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), }, [819] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2637), - [anon_sym_export] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_type] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_typeof] = ACTIONS(2637), - [anon_sym_import] = ACTIONS(2637), - [anon_sym_with] = ACTIONS(2637), - [anon_sym_var] = ACTIONS(2637), - [anon_sym_let] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_await] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_debugger] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_yield] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [sym_glimmer_opening_tag] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_async] = ACTIONS(2637), - [anon_sym_function] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2635), - [sym_number] = ACTIONS(2635), - [sym_private_property_identifier] = ACTIONS(2635), - [sym_this] = ACTIONS(2637), - [sym_super] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_null] = ACTIONS(2637), - [sym_undefined] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_readonly] = ACTIONS(2637), - [anon_sym_get] = ACTIONS(2637), - [anon_sym_set] = ACTIONS(2637), - [anon_sym_declare] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2637), - [anon_sym_module] = ACTIONS(2637), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2637), - [anon_sym_interface] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), + [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), }, [820] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2653), - [anon_sym_export] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2653), - [anon_sym_type] = ACTIONS(2653), - [anon_sym_namespace] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_import] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2653), - [anon_sym_var] = ACTIONS(2653), - [anon_sym_let] = ACTIONS(2653), - [anon_sym_const] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_else] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_while] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_break] = ACTIONS(2653), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_debugger] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2653), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2651), - [sym_glimmer_opening_tag] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2653), - [anon_sym_using] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_void] = ACTIONS(2653), - [anon_sym_delete] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2651), - [sym_number] = ACTIONS(2651), - [sym_private_property_identifier] = ACTIONS(2651), - [sym_this] = ACTIONS(2653), - [sym_super] = ACTIONS(2653), - [sym_true] = ACTIONS(2653), - [sym_false] = ACTIONS(2653), - [sym_null] = ACTIONS(2653), - [sym_undefined] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_readonly] = ACTIONS(2653), - [anon_sym_get] = ACTIONS(2653), - [anon_sym_set] = ACTIONS(2653), - [anon_sym_declare] = ACTIONS(2653), - [anon_sym_public] = ACTIONS(2653), - [anon_sym_private] = ACTIONS(2653), - [anon_sym_protected] = ACTIONS(2653), - [anon_sym_override] = ACTIONS(2653), - [anon_sym_module] = ACTIONS(2653), - [anon_sym_any] = ACTIONS(2653), - [anon_sym_number] = ACTIONS(2653), - [anon_sym_boolean] = ACTIONS(2653), - [anon_sym_string] = ACTIONS(2653), - [anon_sym_symbol] = ACTIONS(2653), - [anon_sym_object] = ACTIONS(2653), - [anon_sym_abstract] = ACTIONS(2653), - [anon_sym_interface] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), + [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), }, [821] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(4677), - [sym_optional_tuple_parameter] = STATE(4677), - [sym_optional_type] = STATE(4677), - [sym_rest_type] = STATE(4677), - [sym__tuple_type_member] = STATE(4677), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_identifier] = ACTIONS(2661), - [anon_sym_export] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_type] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_typeof] = ACTIONS(2661), - [anon_sym_import] = ACTIONS(2661), - [anon_sym_with] = ACTIONS(2661), - [anon_sym_var] = ACTIONS(2661), - [anon_sym_let] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_await] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_debugger] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_yield] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [sym_glimmer_opening_tag] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_async] = ACTIONS(2661), - [anon_sym_function] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_void] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2659), - [sym_number] = ACTIONS(2659), - [sym_private_property_identifier] = ACTIONS(2659), - [sym_this] = ACTIONS(2661), - [sym_super] = ACTIONS(2661), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_undefined] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_readonly] = ACTIONS(2661), - [anon_sym_get] = ACTIONS(2661), - [anon_sym_set] = ACTIONS(2661), - [anon_sym_declare] = ACTIONS(2661), - [anon_sym_public] = ACTIONS(2661), - [anon_sym_private] = ACTIONS(2661), - [anon_sym_protected] = ACTIONS(2661), - [anon_sym_override] = ACTIONS(2661), - [anon_sym_module] = ACTIONS(2661), - [anon_sym_any] = ACTIONS(2661), - [anon_sym_number] = ACTIONS(2661), - [anon_sym_boolean] = ACTIONS(2661), - [anon_sym_string] = ACTIONS(2661), - [anon_sym_symbol] = ACTIONS(2661), - [anon_sym_object] = ACTIONS(2661), - [anon_sym_abstract] = ACTIONS(2661), - [anon_sym_interface] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), + [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), }, [823] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_identifier] = ACTIONS(2661), - [anon_sym_export] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_type] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_typeof] = ACTIONS(2661), - [anon_sym_import] = ACTIONS(2661), - [anon_sym_with] = ACTIONS(2661), - [anon_sym_var] = ACTIONS(2661), - [anon_sym_let] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_await] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_debugger] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_yield] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [sym_glimmer_opening_tag] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_async] = ACTIONS(2661), - [anon_sym_function] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_void] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2659), - [sym_number] = ACTIONS(2659), - [sym_private_property_identifier] = ACTIONS(2659), - [sym_this] = ACTIONS(2661), - [sym_super] = ACTIONS(2661), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_undefined] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_readonly] = ACTIONS(2661), - [anon_sym_get] = ACTIONS(2661), - [anon_sym_set] = ACTIONS(2661), - [anon_sym_declare] = ACTIONS(2661), - [anon_sym_public] = ACTIONS(2661), - [anon_sym_private] = ACTIONS(2661), - [anon_sym_protected] = ACTIONS(2661), - [anon_sym_override] = ACTIONS(2661), - [anon_sym_module] = ACTIONS(2661), - [anon_sym_any] = ACTIONS(2661), - [anon_sym_number] = ACTIONS(2661), - [anon_sym_boolean] = ACTIONS(2661), - [anon_sym_string] = ACTIONS(2661), - [anon_sym_symbol] = ACTIONS(2661), - [anon_sym_object] = ACTIONS(2661), - [anon_sym_abstract] = ACTIONS(2661), - [anon_sym_interface] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), + [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), }, [824] = { - [ts_builtin_sym_end] = ACTIONS(2663), - [sym_identifier] = ACTIONS(2665), - [anon_sym_export] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_type] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_typeof] = ACTIONS(2665), - [anon_sym_import] = ACTIONS(2665), - [anon_sym_with] = ACTIONS(2665), - [anon_sym_var] = ACTIONS(2665), - [anon_sym_let] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_debugger] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_yield] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_glimmer_opening_tag] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_function] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_void] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2663), - [sym_number] = ACTIONS(2663), - [sym_private_property_identifier] = ACTIONS(2663), - [sym_this] = ACTIONS(2665), - [sym_super] = ACTIONS(2665), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_undefined] = ACTIONS(2665), - [anon_sym_AT] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_readonly] = ACTIONS(2665), - [anon_sym_get] = ACTIONS(2665), - [anon_sym_set] = ACTIONS(2665), - [anon_sym_declare] = ACTIONS(2665), - [anon_sym_public] = ACTIONS(2665), - [anon_sym_private] = ACTIONS(2665), - [anon_sym_protected] = ACTIONS(2665), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_module] = ACTIONS(2665), - [anon_sym_any] = ACTIONS(2665), - [anon_sym_number] = ACTIONS(2665), - [anon_sym_boolean] = ACTIONS(2665), - [anon_sym_string] = ACTIONS(2665), - [anon_sym_symbol] = ACTIONS(2665), - [anon_sym_object] = ACTIONS(2665), - [anon_sym_abstract] = ACTIONS(2665), - [anon_sym_interface] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), + [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), }, [825] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_export] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_typeof] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2669), - [anon_sym_let] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_await] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_debugger] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2667), - [sym_glimmer_opening_tag] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_void] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2667), - [sym_number] = ACTIONS(2667), - [sym_private_property_identifier] = ACTIONS(2667), - [sym_this] = ACTIONS(2669), - [sym_super] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_undefined] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_readonly] = ACTIONS(2669), - [anon_sym_get] = ACTIONS(2669), - [anon_sym_set] = ACTIONS(2669), - [anon_sym_declare] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_protected] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_module] = ACTIONS(2669), - [anon_sym_any] = ACTIONS(2669), - [anon_sym_number] = ACTIONS(2669), - [anon_sym_boolean] = ACTIONS(2669), - [anon_sym_string] = ACTIONS(2669), - [anon_sym_symbol] = ACTIONS(2669), - [anon_sym_object] = ACTIONS(2669), - [anon_sym_abstract] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), + [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), }, [826] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [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), }, [827] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [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), }, [828] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2677), - [anon_sym_export] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_type] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_typeof] = ACTIONS(2677), - [anon_sym_import] = ACTIONS(2677), - [anon_sym_with] = ACTIONS(2677), - [anon_sym_var] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_await] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_debugger] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2675), - [sym_glimmer_opening_tag] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_async] = ACTIONS(2677), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_SLASH] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_void] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2675), - [sym_number] = ACTIONS(2675), - [sym_private_property_identifier] = ACTIONS(2675), - [sym_this] = ACTIONS(2677), - [sym_super] = ACTIONS(2677), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_undefined] = ACTIONS(2677), - [anon_sym_AT] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_readonly] = ACTIONS(2677), - [anon_sym_get] = ACTIONS(2677), - [anon_sym_set] = ACTIONS(2677), - [anon_sym_declare] = ACTIONS(2677), - [anon_sym_public] = ACTIONS(2677), - [anon_sym_private] = ACTIONS(2677), - [anon_sym_protected] = ACTIONS(2677), - [anon_sym_override] = ACTIONS(2677), - [anon_sym_module] = ACTIONS(2677), - [anon_sym_any] = ACTIONS(2677), - [anon_sym_number] = ACTIONS(2677), - [anon_sym_boolean] = ACTIONS(2677), - [anon_sym_string] = ACTIONS(2677), - [anon_sym_symbol] = ACTIONS(2677), - [anon_sym_object] = ACTIONS(2677), - [anon_sym_abstract] = ACTIONS(2677), - [anon_sym_interface] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), + [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), }, [829] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2681), - [anon_sym_export] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_type] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_typeof] = ACTIONS(2681), - [anon_sym_import] = ACTIONS(2681), - [anon_sym_with] = ACTIONS(2681), - [anon_sym_var] = ACTIONS(2681), - [anon_sym_let] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_await] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_debugger] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_yield] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2679), - [sym_glimmer_opening_tag] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_async] = ACTIONS(2681), - [anon_sym_function] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_void] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2679), - [sym_number] = ACTIONS(2679), - [sym_private_property_identifier] = ACTIONS(2679), - [sym_this] = ACTIONS(2681), - [sym_super] = ACTIONS(2681), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_undefined] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_readonly] = ACTIONS(2681), - [anon_sym_get] = ACTIONS(2681), - [anon_sym_set] = ACTIONS(2681), - [anon_sym_declare] = ACTIONS(2681), - [anon_sym_public] = ACTIONS(2681), - [anon_sym_private] = ACTIONS(2681), - [anon_sym_protected] = ACTIONS(2681), - [anon_sym_override] = ACTIONS(2681), - [anon_sym_module] = ACTIONS(2681), - [anon_sym_any] = ACTIONS(2681), - [anon_sym_number] = ACTIONS(2681), - [anon_sym_boolean] = ACTIONS(2681), - [anon_sym_string] = ACTIONS(2681), - [anon_sym_symbol] = ACTIONS(2681), - [anon_sym_object] = ACTIONS(2681), - [anon_sym_abstract] = ACTIONS(2681), - [anon_sym_interface] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), + [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), }, [830] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_export] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_type] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_typeof] = ACTIONS(2685), - [anon_sym_import] = ACTIONS(2685), - [anon_sym_with] = ACTIONS(2685), - [anon_sym_var] = ACTIONS(2685), - [anon_sym_let] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_debugger] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_yield] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [sym_glimmer_opening_tag] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2683), - [sym_number] = ACTIONS(2683), - [sym_private_property_identifier] = ACTIONS(2683), - [sym_this] = ACTIONS(2685), - [sym_super] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_undefined] = ACTIONS(2685), - [anon_sym_AT] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_readonly] = ACTIONS(2685), - [anon_sym_get] = ACTIONS(2685), - [anon_sym_set] = ACTIONS(2685), - [anon_sym_declare] = ACTIONS(2685), - [anon_sym_public] = ACTIONS(2685), - [anon_sym_private] = ACTIONS(2685), - [anon_sym_protected] = ACTIONS(2685), - [anon_sym_override] = ACTIONS(2685), - [anon_sym_module] = ACTIONS(2685), - [anon_sym_any] = ACTIONS(2685), - [anon_sym_number] = ACTIONS(2685), - [anon_sym_boolean] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_symbol] = ACTIONS(2685), - [anon_sym_object] = ACTIONS(2685), - [anon_sym_abstract] = ACTIONS(2685), - [anon_sym_interface] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), + [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), }, [831] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2689), - [anon_sym_export] = ACTIONS(2689), - [anon_sym_default] = ACTIONS(2689), - [anon_sym_type] = ACTIONS(2689), - [anon_sym_namespace] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_typeof] = ACTIONS(2689), - [anon_sym_import] = ACTIONS(2689), - [anon_sym_with] = ACTIONS(2689), - [anon_sym_var] = ACTIONS(2689), - [anon_sym_let] = ACTIONS(2689), - [anon_sym_const] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2689), - [anon_sym_switch] = ACTIONS(2689), - [anon_sym_for] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_await] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2689), - [anon_sym_do] = ACTIONS(2689), - [anon_sym_try] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2689), - [anon_sym_continue] = ACTIONS(2689), - [anon_sym_debugger] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2689), - [anon_sym_throw] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_yield] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2687), - [sym_glimmer_opening_tag] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_async] = ACTIONS(2689), - [anon_sym_function] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2689), - [anon_sym_using] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_void] = ACTIONS(2689), - [anon_sym_delete] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2687), - [sym_number] = ACTIONS(2687), - [sym_private_property_identifier] = ACTIONS(2687), - [sym_this] = ACTIONS(2689), - [sym_super] = ACTIONS(2689), - [sym_true] = ACTIONS(2689), - [sym_false] = ACTIONS(2689), - [sym_null] = ACTIONS(2689), - [sym_undefined] = ACTIONS(2689), - [anon_sym_AT] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_readonly] = ACTIONS(2689), - [anon_sym_get] = ACTIONS(2689), - [anon_sym_set] = ACTIONS(2689), - [anon_sym_declare] = ACTIONS(2689), - [anon_sym_public] = ACTIONS(2689), - [anon_sym_private] = ACTIONS(2689), - [anon_sym_protected] = ACTIONS(2689), - [anon_sym_override] = ACTIONS(2689), - [anon_sym_module] = ACTIONS(2689), - [anon_sym_any] = ACTIONS(2689), - [anon_sym_number] = ACTIONS(2689), - [anon_sym_boolean] = ACTIONS(2689), - [anon_sym_string] = ACTIONS(2689), - [anon_sym_symbol] = ACTIONS(2689), - [anon_sym_object] = ACTIONS(2689), - [anon_sym_abstract] = ACTIONS(2689), - [anon_sym_interface] = ACTIONS(2689), - [anon_sym_enum] = ACTIONS(2689), + [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), }, [832] = { - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2693), - [anon_sym_export] = ACTIONS(2693), - [anon_sym_default] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_namespace] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [anon_sym_typeof] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_with] = ACTIONS(2693), - [anon_sym_var] = ACTIONS(2693), - [anon_sym_let] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2691), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_do] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_debugger] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_throw] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [sym_glimmer_opening_tag] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_function] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_using] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_void] = ACTIONS(2693), - [anon_sym_delete] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2691), - [sym_number] = ACTIONS(2691), - [sym_private_property_identifier] = ACTIONS(2691), - [sym_this] = ACTIONS(2693), - [sym_super] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), - [sym_undefined] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_get] = ACTIONS(2693), - [anon_sym_set] = ACTIONS(2693), - [anon_sym_declare] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_module] = ACTIONS(2693), - [anon_sym_any] = ACTIONS(2693), - [anon_sym_number] = ACTIONS(2693), - [anon_sym_boolean] = ACTIONS(2693), - [anon_sym_string] = ACTIONS(2693), - [anon_sym_symbol] = ACTIONS(2693), - [anon_sym_object] = ACTIONS(2693), - [anon_sym_abstract] = ACTIONS(2693), - [anon_sym_interface] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), + [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), }, [833] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2697), - [anon_sym_export] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_type] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_typeof] = ACTIONS(2697), - [anon_sym_import] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_var] = ACTIONS(2697), - [anon_sym_let] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_await] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_debugger] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_yield] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [sym_glimmer_opening_tag] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_async] = ACTIONS(2697), - [anon_sym_function] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_SLASH] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_void] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2695), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [sym_this] = ACTIONS(2697), - [sym_super] = ACTIONS(2697), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_undefined] = ACTIONS(2697), - [anon_sym_AT] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2697), - [anon_sym_get] = ACTIONS(2697), - [anon_sym_set] = ACTIONS(2697), - [anon_sym_declare] = ACTIONS(2697), - [anon_sym_public] = ACTIONS(2697), - [anon_sym_private] = ACTIONS(2697), - [anon_sym_protected] = ACTIONS(2697), - [anon_sym_override] = ACTIONS(2697), - [anon_sym_module] = ACTIONS(2697), - [anon_sym_any] = ACTIONS(2697), - [anon_sym_number] = ACTIONS(2697), - [anon_sym_boolean] = ACTIONS(2697), - [anon_sym_string] = ACTIONS(2697), - [anon_sym_symbol] = ACTIONS(2697), - [anon_sym_object] = ACTIONS(2697), - [anon_sym_abstract] = ACTIONS(2697), - [anon_sym_interface] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), + [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), }, [834] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_typeof] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_var] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_await] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_debugger] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [sym_glimmer_opening_tag] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_async] = ACTIONS(2701), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_SLASH] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2699), - [sym_number] = ACTIONS(2699), - [sym_private_property_identifier] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_super] = ACTIONS(2701), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_readonly] = ACTIONS(2701), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2701), - [anon_sym_public] = ACTIONS(2701), - [anon_sym_private] = ACTIONS(2701), - [anon_sym_protected] = ACTIONS(2701), - [anon_sym_override] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_any] = ACTIONS(2701), - [anon_sym_number] = ACTIONS(2701), - [anon_sym_boolean] = ACTIONS(2701), - [anon_sym_string] = ACTIONS(2701), - [anon_sym_symbol] = ACTIONS(2701), - [anon_sym_object] = ACTIONS(2701), - [anon_sym_abstract] = ACTIONS(2701), - [anon_sym_interface] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), + [sym_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(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_typeof] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_var] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_await] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_debugger] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [sym_glimmer_opening_tag] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_async] = ACTIONS(2701), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_SLASH] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2699), - [sym_number] = ACTIONS(2699), - [sym_private_property_identifier] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_super] = ACTIONS(2701), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_readonly] = ACTIONS(2701), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2701), - [anon_sym_public] = ACTIONS(2701), - [anon_sym_private] = ACTIONS(2701), - [anon_sym_protected] = ACTIONS(2701), - [anon_sym_override] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_any] = ACTIONS(2701), - [anon_sym_number] = ACTIONS(2701), - [anon_sym_boolean] = ACTIONS(2701), - [anon_sym_string] = ACTIONS(2701), - [anon_sym_symbol] = ACTIONS(2701), - [anon_sym_object] = ACTIONS(2701), - [anon_sym_abstract] = ACTIONS(2701), - [anon_sym_interface] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), + [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(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [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(2703), - [sym_identifier] = ACTIONS(2705), - [anon_sym_export] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_type] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_typeof] = ACTIONS(2705), - [anon_sym_import] = ACTIONS(2705), - [anon_sym_with] = ACTIONS(2705), - [anon_sym_var] = ACTIONS(2705), - [anon_sym_let] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_await] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_debugger] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_yield] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2703), - [sym_glimmer_opening_tag] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_async] = ACTIONS(2705), - [anon_sym_function] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2703), - [anon_sym_void] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2703), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2703), - [sym_number] = ACTIONS(2703), - [sym_private_property_identifier] = ACTIONS(2703), - [sym_this] = ACTIONS(2705), - [sym_super] = ACTIONS(2705), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_undefined] = ACTIONS(2705), - [anon_sym_AT] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_get] = ACTIONS(2705), - [anon_sym_set] = ACTIONS(2705), - [anon_sym_declare] = ACTIONS(2705), - [anon_sym_public] = ACTIONS(2705), - [anon_sym_private] = ACTIONS(2705), - [anon_sym_protected] = ACTIONS(2705), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_module] = ACTIONS(2705), - [anon_sym_any] = ACTIONS(2705), - [anon_sym_number] = ACTIONS(2705), - [anon_sym_boolean] = ACTIONS(2705), - [anon_sym_string] = ACTIONS(2705), - [anon_sym_symbol] = ACTIONS(2705), - [anon_sym_object] = ACTIONS(2705), - [anon_sym_abstract] = ACTIONS(2705), - [anon_sym_interface] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), + [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(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [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(2707), - [sym_identifier] = ACTIONS(2709), - [anon_sym_export] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_type] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_typeof] = ACTIONS(2709), - [anon_sym_import] = ACTIONS(2709), - [anon_sym_with] = ACTIONS(2709), - [anon_sym_var] = ACTIONS(2709), - [anon_sym_let] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_await] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_debugger] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_yield] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2707), - [sym_glimmer_opening_tag] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_async] = ACTIONS(2709), - [anon_sym_function] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_void] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2707), - [sym_number] = ACTIONS(2707), - [sym_private_property_identifier] = ACTIONS(2707), - [sym_this] = ACTIONS(2709), - [sym_super] = ACTIONS(2709), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_undefined] = ACTIONS(2709), - [anon_sym_AT] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_readonly] = ACTIONS(2709), - [anon_sym_get] = ACTIONS(2709), - [anon_sym_set] = ACTIONS(2709), - [anon_sym_declare] = ACTIONS(2709), - [anon_sym_public] = ACTIONS(2709), - [anon_sym_private] = ACTIONS(2709), - [anon_sym_protected] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2709), - [anon_sym_module] = ACTIONS(2709), - [anon_sym_any] = ACTIONS(2709), - [anon_sym_number] = ACTIONS(2709), - [anon_sym_boolean] = ACTIONS(2709), - [anon_sym_string] = ACTIONS(2709), - [anon_sym_symbol] = ACTIONS(2709), - [anon_sym_object] = ACTIONS(2709), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_interface] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), + [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(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_namespace] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_typeof] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(1925), - [anon_sym_with] = ACTIONS(1925), - [anon_sym_var] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_switch] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_debugger] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_throw] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1923), - [sym_glimmer_opening_tag] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_class] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_void] = ACTIONS(1925), - [anon_sym_delete] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_number] = ACTIONS(1923), - [sym_private_property_identifier] = ACTIONS(1923), - [sym_this] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_undefined] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_readonly] = ACTIONS(1925), - [anon_sym_get] = ACTIONS(1925), - [anon_sym_set] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1925), - [anon_sym_public] = ACTIONS(1925), - [anon_sym_private] = ACTIONS(1925), - [anon_sym_protected] = ACTIONS(1925), - [anon_sym_override] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [anon_sym_object] = ACTIONS(1925), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), + [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(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_var] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_debugger] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_throw] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [sym_glimmer_opening_tag] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_function] = ACTIONS(1741), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_delete] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_private_property_identifier] = ACTIONS(1739), - [sym_this] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_null] = ACTIONS(1741), - [sym_undefined] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_object] = ACTIONS(1741), - [anon_sym_abstract] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), + [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(2711), - [sym_identifier] = ACTIONS(2713), - [anon_sym_export] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_type] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_typeof] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2713), - [anon_sym_with] = ACTIONS(2713), - [anon_sym_var] = ACTIONS(2713), - [anon_sym_let] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_await] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_debugger] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_yield] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2711), - [sym_glimmer_opening_tag] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_async] = ACTIONS(2713), - [anon_sym_function] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_SLASH] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_void] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2711), - [sym_number] = ACTIONS(2711), - [sym_private_property_identifier] = ACTIONS(2711), - [sym_this] = ACTIONS(2713), - [sym_super] = ACTIONS(2713), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_undefined] = ACTIONS(2713), - [anon_sym_AT] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_readonly] = ACTIONS(2713), - [anon_sym_get] = ACTIONS(2713), - [anon_sym_set] = ACTIONS(2713), - [anon_sym_declare] = ACTIONS(2713), - [anon_sym_public] = ACTIONS(2713), - [anon_sym_private] = ACTIONS(2713), - [anon_sym_protected] = ACTIONS(2713), - [anon_sym_override] = ACTIONS(2713), - [anon_sym_module] = ACTIONS(2713), - [anon_sym_any] = ACTIONS(2713), - [anon_sym_number] = ACTIONS(2713), - [anon_sym_boolean] = ACTIONS(2713), - [anon_sym_string] = ACTIONS(2713), - [anon_sym_symbol] = ACTIONS(2713), - [anon_sym_object] = ACTIONS(2713), - [anon_sym_abstract] = ACTIONS(2713), - [anon_sym_interface] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), + [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(2715), - [sym_identifier] = ACTIONS(2717), - [anon_sym_export] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_type] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_typeof] = ACTIONS(2717), - [anon_sym_import] = ACTIONS(2717), - [anon_sym_with] = ACTIONS(2717), - [anon_sym_var] = ACTIONS(2717), - [anon_sym_let] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_await] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_debugger] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_yield] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2715), - [sym_glimmer_opening_tag] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_async] = ACTIONS(2717), - [anon_sym_function] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_void] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2715), - [sym_number] = ACTIONS(2715), - [sym_private_property_identifier] = ACTIONS(2715), - [sym_this] = ACTIONS(2717), - [sym_super] = ACTIONS(2717), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_undefined] = ACTIONS(2717), - [anon_sym_AT] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_readonly] = ACTIONS(2717), - [anon_sym_get] = ACTIONS(2717), - [anon_sym_set] = ACTIONS(2717), - [anon_sym_declare] = ACTIONS(2717), - [anon_sym_public] = ACTIONS(2717), - [anon_sym_private] = ACTIONS(2717), - [anon_sym_protected] = ACTIONS(2717), - [anon_sym_override] = ACTIONS(2717), - [anon_sym_module] = ACTIONS(2717), - [anon_sym_any] = ACTIONS(2717), - [anon_sym_number] = ACTIONS(2717), - [anon_sym_boolean] = ACTIONS(2717), - [anon_sym_string] = ACTIONS(2717), - [anon_sym_symbol] = ACTIONS(2717), - [anon_sym_object] = ACTIONS(2717), - [anon_sym_abstract] = ACTIONS(2717), - [anon_sym_interface] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), + [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(2719), - [sym_identifier] = ACTIONS(2721), - [anon_sym_export] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_type] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_typeof] = ACTIONS(2721), - [anon_sym_import] = ACTIONS(2721), - [anon_sym_with] = ACTIONS(2721), - [anon_sym_var] = ACTIONS(2721), - [anon_sym_let] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_await] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_debugger] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_yield] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2719), - [sym_glimmer_opening_tag] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_async] = ACTIONS(2721), - [anon_sym_function] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_SLASH] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_void] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2719), - [sym_number] = ACTIONS(2719), - [sym_private_property_identifier] = ACTIONS(2719), - [sym_this] = ACTIONS(2721), - [sym_super] = ACTIONS(2721), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_undefined] = ACTIONS(2721), - [anon_sym_AT] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_readonly] = ACTIONS(2721), - [anon_sym_get] = ACTIONS(2721), - [anon_sym_set] = ACTIONS(2721), - [anon_sym_declare] = ACTIONS(2721), - [anon_sym_public] = ACTIONS(2721), - [anon_sym_private] = ACTIONS(2721), - [anon_sym_protected] = ACTIONS(2721), - [anon_sym_override] = ACTIONS(2721), - [anon_sym_module] = ACTIONS(2721), - [anon_sym_any] = ACTIONS(2721), - [anon_sym_number] = ACTIONS(2721), - [anon_sym_boolean] = ACTIONS(2721), - [anon_sym_string] = ACTIONS(2721), - [anon_sym_symbol] = ACTIONS(2721), - [anon_sym_object] = ACTIONS(2721), - [anon_sym_abstract] = ACTIONS(2721), - [anon_sym_interface] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), + [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(2723), - [sym_identifier] = ACTIONS(2725), - [anon_sym_export] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_type] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_typeof] = ACTIONS(2725), - [anon_sym_import] = ACTIONS(2725), - [anon_sym_with] = ACTIONS(2725), - [anon_sym_var] = ACTIONS(2725), - [anon_sym_let] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_await] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_debugger] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_yield] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2723), - [sym_glimmer_opening_tag] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_async] = ACTIONS(2725), - [anon_sym_function] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_void] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2723), - [sym_number] = ACTIONS(2723), - [sym_private_property_identifier] = ACTIONS(2723), - [sym_this] = ACTIONS(2725), - [sym_super] = ACTIONS(2725), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_undefined] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_readonly] = ACTIONS(2725), - [anon_sym_get] = ACTIONS(2725), - [anon_sym_set] = ACTIONS(2725), - [anon_sym_declare] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_protected] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_module] = ACTIONS(2725), - [anon_sym_any] = ACTIONS(2725), - [anon_sym_number] = ACTIONS(2725), - [anon_sym_boolean] = ACTIONS(2725), - [anon_sym_string] = ACTIONS(2725), - [anon_sym_symbol] = ACTIONS(2725), - [anon_sym_object] = ACTIONS(2725), - [anon_sym_abstract] = ACTIONS(2725), - [anon_sym_interface] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), + [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(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [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(2727), - [sym_identifier] = ACTIONS(2729), - [anon_sym_export] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_type] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_typeof] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_with] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_debugger] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2727), - [sym_glimmer_opening_tag] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_void] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2727), - [sym_number] = ACTIONS(2727), - [sym_private_property_identifier] = ACTIONS(2727), - [sym_this] = ACTIONS(2729), - [sym_super] = ACTIONS(2729), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_undefined] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_readonly] = ACTIONS(2729), - [anon_sym_get] = ACTIONS(2729), - [anon_sym_set] = ACTIONS(2729), - [anon_sym_declare] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_protected] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_module] = ACTIONS(2729), - [anon_sym_any] = ACTIONS(2729), - [anon_sym_number] = ACTIONS(2729), - [anon_sym_boolean] = ACTIONS(2729), - [anon_sym_string] = ACTIONS(2729), - [anon_sym_symbol] = ACTIONS(2729), - [anon_sym_object] = ACTIONS(2729), - [anon_sym_abstract] = ACTIONS(2729), - [anon_sym_interface] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), + [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(2731), - [sym_identifier] = ACTIONS(2733), - [anon_sym_export] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_type] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_typeof] = ACTIONS(2733), - [anon_sym_import] = ACTIONS(2733), - [anon_sym_with] = ACTIONS(2733), - [anon_sym_var] = ACTIONS(2733), - [anon_sym_let] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_await] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_debugger] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_yield] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2731), - [sym_glimmer_opening_tag] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_async] = ACTIONS(2733), - [anon_sym_function] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_LT] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_void] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2731), - [sym_number] = ACTIONS(2731), - [sym_private_property_identifier] = ACTIONS(2731), - [sym_this] = ACTIONS(2733), - [sym_super] = ACTIONS(2733), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_undefined] = ACTIONS(2733), - [anon_sym_AT] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_readonly] = ACTIONS(2733), - [anon_sym_get] = ACTIONS(2733), - [anon_sym_set] = ACTIONS(2733), - [anon_sym_declare] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2733), - [anon_sym_private] = ACTIONS(2733), - [anon_sym_protected] = ACTIONS(2733), - [anon_sym_override] = ACTIONS(2733), - [anon_sym_module] = ACTIONS(2733), - [anon_sym_any] = ACTIONS(2733), - [anon_sym_number] = ACTIONS(2733), - [anon_sym_boolean] = ACTIONS(2733), - [anon_sym_string] = ACTIONS(2733), - [anon_sym_symbol] = ACTIONS(2733), - [anon_sym_object] = ACTIONS(2733), - [anon_sym_abstract] = ACTIONS(2733), - [anon_sym_interface] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), + [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(2735), - [sym_identifier] = ACTIONS(2737), - [anon_sym_export] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_type] = ACTIONS(2737), - [anon_sym_namespace] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_typeof] = ACTIONS(2737), - [anon_sym_import] = ACTIONS(2737), - [anon_sym_with] = ACTIONS(2737), - [anon_sym_var] = ACTIONS(2737), - [anon_sym_let] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_switch] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_await] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_do] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_debugger] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_throw] = ACTIONS(2737), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_yield] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2735), - [sym_glimmer_opening_tag] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2737), - [anon_sym_async] = ACTIONS(2737), - [anon_sym_function] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2737), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_SLASH] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_void] = ACTIONS(2737), - [anon_sym_delete] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2735), - [sym_number] = ACTIONS(2735), - [sym_private_property_identifier] = ACTIONS(2735), - [sym_this] = ACTIONS(2737), - [sym_super] = ACTIONS(2737), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_null] = ACTIONS(2737), - [sym_undefined] = ACTIONS(2737), - [anon_sym_AT] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2737), - [anon_sym_readonly] = ACTIONS(2737), - [anon_sym_get] = ACTIONS(2737), - [anon_sym_set] = ACTIONS(2737), - [anon_sym_declare] = ACTIONS(2737), - [anon_sym_public] = ACTIONS(2737), - [anon_sym_private] = ACTIONS(2737), - [anon_sym_protected] = ACTIONS(2737), - [anon_sym_override] = ACTIONS(2737), - [anon_sym_module] = ACTIONS(2737), - [anon_sym_any] = ACTIONS(2737), - [anon_sym_number] = ACTIONS(2737), - [anon_sym_boolean] = ACTIONS(2737), - [anon_sym_string] = ACTIONS(2737), - [anon_sym_symbol] = ACTIONS(2737), - [anon_sym_object] = ACTIONS(2737), - [anon_sym_abstract] = ACTIONS(2737), - [anon_sym_interface] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), + [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(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_export] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_namespace] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_typeof] = ACTIONS(2741), - [anon_sym_import] = ACTIONS(2741), - [anon_sym_with] = ACTIONS(2741), - [anon_sym_var] = ACTIONS(2741), - [anon_sym_let] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_switch] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_await] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(2741), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_debugger] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2741), - [anon_sym_case] = ACTIONS(2741), - [anon_sym_yield] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [sym_glimmer_opening_tag] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2741), - [anon_sym_async] = ACTIONS(2741), - [anon_sym_function] = ACTIONS(2741), - [anon_sym_new] = ACTIONS(2741), - [anon_sym_using] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_void] = ACTIONS(2741), - [anon_sym_delete] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2739), - [sym_number] = ACTIONS(2739), - [sym_private_property_identifier] = ACTIONS(2739), - [sym_this] = ACTIONS(2741), - [sym_super] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_null] = ACTIONS(2741), - [sym_undefined] = ACTIONS(2741), - [anon_sym_AT] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2741), - [anon_sym_readonly] = ACTIONS(2741), - [anon_sym_get] = ACTIONS(2741), - [anon_sym_set] = ACTIONS(2741), - [anon_sym_declare] = ACTIONS(2741), - [anon_sym_public] = ACTIONS(2741), - [anon_sym_private] = ACTIONS(2741), - [anon_sym_protected] = ACTIONS(2741), - [anon_sym_override] = ACTIONS(2741), - [anon_sym_module] = ACTIONS(2741), - [anon_sym_any] = ACTIONS(2741), - [anon_sym_number] = ACTIONS(2741), - [anon_sym_boolean] = ACTIONS(2741), - [anon_sym_string] = ACTIONS(2741), - [anon_sym_symbol] = ACTIONS(2741), - [anon_sym_object] = ACTIONS(2741), - [anon_sym_abstract] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), + [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(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [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(2731), - [sym_identifier] = ACTIONS(2733), - [anon_sym_export] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_type] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_typeof] = ACTIONS(2733), - [anon_sym_import] = ACTIONS(2733), - [anon_sym_with] = ACTIONS(2733), - [anon_sym_var] = ACTIONS(2733), - [anon_sym_let] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_await] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_debugger] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_yield] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2731), - [sym_glimmer_opening_tag] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_async] = ACTIONS(2733), - [anon_sym_function] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_LT] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_void] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2731), - [sym_number] = ACTIONS(2731), - [sym_private_property_identifier] = ACTIONS(2731), - [sym_this] = ACTIONS(2733), - [sym_super] = ACTIONS(2733), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_undefined] = ACTIONS(2733), - [anon_sym_AT] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_readonly] = ACTIONS(2733), - [anon_sym_get] = ACTIONS(2733), - [anon_sym_set] = ACTIONS(2733), - [anon_sym_declare] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2733), - [anon_sym_private] = ACTIONS(2733), - [anon_sym_protected] = ACTIONS(2733), - [anon_sym_override] = ACTIONS(2733), - [anon_sym_module] = ACTIONS(2733), - [anon_sym_any] = ACTIONS(2733), - [anon_sym_number] = ACTIONS(2733), - [anon_sym_boolean] = ACTIONS(2733), - [anon_sym_string] = ACTIONS(2733), - [anon_sym_symbol] = ACTIONS(2733), - [anon_sym_object] = ACTIONS(2733), - [anon_sym_abstract] = ACTIONS(2733), - [anon_sym_interface] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), + [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(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_export] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2745), - [anon_sym_type] = ACTIONS(2745), - [anon_sym_namespace] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_typeof] = ACTIONS(2745), - [anon_sym_import] = ACTIONS(2745), - [anon_sym_with] = ACTIONS(2745), - [anon_sym_var] = ACTIONS(2745), - [anon_sym_let] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_switch] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2743), - [anon_sym_await] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_do] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_debugger] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_throw] = ACTIONS(2745), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_yield] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2743), - [sym_glimmer_opening_tag] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_function] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2745), - [anon_sym_using] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_void] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2743), - [sym_number] = ACTIONS(2743), - [sym_private_property_identifier] = ACTIONS(2743), - [sym_this] = ACTIONS(2745), - [sym_super] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_null] = ACTIONS(2745), - [sym_undefined] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2745), - [anon_sym_readonly] = ACTIONS(2745), - [anon_sym_get] = ACTIONS(2745), - [anon_sym_set] = ACTIONS(2745), - [anon_sym_declare] = ACTIONS(2745), - [anon_sym_public] = ACTIONS(2745), - [anon_sym_private] = ACTIONS(2745), - [anon_sym_protected] = ACTIONS(2745), - [anon_sym_override] = ACTIONS(2745), - [anon_sym_module] = ACTIONS(2745), - [anon_sym_any] = ACTIONS(2745), - [anon_sym_number] = ACTIONS(2745), - [anon_sym_boolean] = ACTIONS(2745), - [anon_sym_string] = ACTIONS(2745), - [anon_sym_symbol] = ACTIONS(2745), - [anon_sym_object] = ACTIONS(2745), - [anon_sym_abstract] = ACTIONS(2745), - [anon_sym_interface] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), + [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_html_comment] = ACTIONS(5), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_export] = ACTIONS(2749), - [anon_sym_default] = ACTIONS(2749), - [anon_sym_type] = ACTIONS(2749), - [anon_sym_namespace] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_typeof] = ACTIONS(2749), - [anon_sym_import] = ACTIONS(2749), - [anon_sym_with] = ACTIONS(2749), - [anon_sym_var] = ACTIONS(2749), - [anon_sym_let] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_switch] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_await] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_do] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_debugger] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_throw] = ACTIONS(2749), - [anon_sym_case] = ACTIONS(2749), - [anon_sym_yield] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [sym_glimmer_opening_tag] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2749), - [anon_sym_async] = ACTIONS(2749), - [anon_sym_function] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(2749), - [anon_sym_using] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_void] = ACTIONS(2749), - [anon_sym_delete] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2747), - [sym_number] = ACTIONS(2747), - [sym_private_property_identifier] = ACTIONS(2747), - [sym_this] = ACTIONS(2749), - [sym_super] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_null] = ACTIONS(2749), - [sym_undefined] = ACTIONS(2749), - [anon_sym_AT] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2749), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_get] = ACTIONS(2749), - [anon_sym_set] = ACTIONS(2749), - [anon_sym_declare] = ACTIONS(2749), - [anon_sym_public] = ACTIONS(2749), - [anon_sym_private] = ACTIONS(2749), - [anon_sym_protected] = ACTIONS(2749), - [anon_sym_override] = ACTIONS(2749), - [anon_sym_module] = ACTIONS(2749), - [anon_sym_any] = ACTIONS(2749), - [anon_sym_number] = ACTIONS(2749), - [anon_sym_boolean] = ACTIONS(2749), - [anon_sym_string] = ACTIONS(2749), - [anon_sym_symbol] = ACTIONS(2749), - [anon_sym_object] = ACTIONS(2749), - [anon_sym_abstract] = ACTIONS(2749), - [anon_sym_interface] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), + [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), }, [855] = { - [ts_builtin_sym_end] = ACTIONS(2751), - [sym_identifier] = ACTIONS(2753), - [anon_sym_export] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_type] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_typeof] = ACTIONS(2753), - [anon_sym_import] = ACTIONS(2753), - [anon_sym_with] = ACTIONS(2753), - [anon_sym_var] = ACTIONS(2753), - [anon_sym_let] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_await] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_debugger] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_yield] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2751), - [sym_glimmer_opening_tag] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2751), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_async] = ACTIONS(2753), - [anon_sym_function] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_SLASH] = ACTIONS(2753), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_void] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2751), - [sym_number] = ACTIONS(2751), - [sym_private_property_identifier] = ACTIONS(2751), - [sym_this] = ACTIONS(2753), - [sym_super] = ACTIONS(2753), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), - [sym_undefined] = ACTIONS(2753), - [anon_sym_AT] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_readonly] = ACTIONS(2753), - [anon_sym_get] = ACTIONS(2753), - [anon_sym_set] = ACTIONS(2753), - [anon_sym_declare] = ACTIONS(2753), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_protected] = ACTIONS(2753), - [anon_sym_override] = ACTIONS(2753), - [anon_sym_module] = ACTIONS(2753), - [anon_sym_any] = ACTIONS(2753), - [anon_sym_number] = ACTIONS(2753), - [anon_sym_boolean] = ACTIONS(2753), - [anon_sym_string] = ACTIONS(2753), - [anon_sym_symbol] = ACTIONS(2753), - [anon_sym_object] = ACTIONS(2753), - [anon_sym_abstract] = ACTIONS(2753), - [anon_sym_interface] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_export] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_typeof] = ACTIONS(2757), - [anon_sym_import] = ACTIONS(2757), - [anon_sym_with] = ACTIONS(2757), - [anon_sym_var] = ACTIONS(2757), - [anon_sym_let] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_await] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_debugger] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_yield] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [sym_glimmer_opening_tag] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_async] = ACTIONS(2757), - [anon_sym_function] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_void] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2755), - [sym_number] = ACTIONS(2755), - [sym_private_property_identifier] = ACTIONS(2755), - [sym_this] = ACTIONS(2757), - [sym_super] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_undefined] = ACTIONS(2757), - [anon_sym_AT] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_readonly] = ACTIONS(2757), - [anon_sym_get] = ACTIONS(2757), - [anon_sym_set] = ACTIONS(2757), - [anon_sym_declare] = ACTIONS(2757), - [anon_sym_public] = ACTIONS(2757), - [anon_sym_private] = ACTIONS(2757), - [anon_sym_protected] = ACTIONS(2757), - [anon_sym_override] = ACTIONS(2757), - [anon_sym_module] = ACTIONS(2757), - [anon_sym_any] = ACTIONS(2757), - [anon_sym_number] = ACTIONS(2757), - [anon_sym_boolean] = ACTIONS(2757), - [anon_sym_string] = ACTIONS(2757), - [anon_sym_symbol] = ACTIONS(2757), - [anon_sym_object] = ACTIONS(2757), - [anon_sym_abstract] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), + [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), }, [857] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_export] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_namespace] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_typeof] = ACTIONS(2761), - [anon_sym_import] = ACTIONS(2761), - [anon_sym_with] = ACTIONS(2761), - [anon_sym_var] = ACTIONS(2761), - [anon_sym_let] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_switch] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_await] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_do] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_debugger] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_throw] = ACTIONS(2761), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_yield] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [sym_glimmer_opening_tag] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_function] = ACTIONS(2761), - [anon_sym_new] = ACTIONS(2761), - [anon_sym_using] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_void] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2759), - [sym_number] = ACTIONS(2759), - [sym_private_property_identifier] = ACTIONS(2759), - [sym_this] = ACTIONS(2761), - [sym_super] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), - [sym_undefined] = ACTIONS(2761), - [anon_sym_AT] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_readonly] = ACTIONS(2761), - [anon_sym_get] = ACTIONS(2761), - [anon_sym_set] = ACTIONS(2761), - [anon_sym_declare] = ACTIONS(2761), - [anon_sym_public] = ACTIONS(2761), - [anon_sym_private] = ACTIONS(2761), - [anon_sym_protected] = ACTIONS(2761), - [anon_sym_override] = ACTIONS(2761), - [anon_sym_module] = ACTIONS(2761), - [anon_sym_any] = ACTIONS(2761), - [anon_sym_number] = ACTIONS(2761), - [anon_sym_boolean] = ACTIONS(2761), - [anon_sym_string] = ACTIONS(2761), - [anon_sym_symbol] = ACTIONS(2761), - [anon_sym_object] = ACTIONS(2761), - [anon_sym_abstract] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), + [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), }, [858] = { - [ts_builtin_sym_end] = ACTIONS(2763), - [sym_identifier] = ACTIONS(2765), - [anon_sym_export] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_type] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_RBRACE] = ACTIONS(2763), - [anon_sym_typeof] = ACTIONS(2765), - [anon_sym_import] = ACTIONS(2765), - [anon_sym_with] = ACTIONS(2765), - [anon_sym_var] = ACTIONS(2765), - [anon_sym_let] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym_await] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_debugger] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_yield] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2763), - [sym_glimmer_opening_tag] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_async] = ACTIONS(2765), - [anon_sym_function] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_void] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2763), - [sym_number] = ACTIONS(2763), - [sym_private_property_identifier] = ACTIONS(2763), - [sym_this] = ACTIONS(2765), - [sym_super] = ACTIONS(2765), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_undefined] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_get] = ACTIONS(2765), - [anon_sym_set] = ACTIONS(2765), - [anon_sym_declare] = ACTIONS(2765), - [anon_sym_public] = ACTIONS(2765), - [anon_sym_private] = ACTIONS(2765), - [anon_sym_protected] = ACTIONS(2765), - [anon_sym_override] = ACTIONS(2765), - [anon_sym_module] = ACTIONS(2765), - [anon_sym_any] = ACTIONS(2765), - [anon_sym_number] = ACTIONS(2765), - [anon_sym_boolean] = ACTIONS(2765), - [anon_sym_string] = ACTIONS(2765), - [anon_sym_symbol] = ACTIONS(2765), - [anon_sym_object] = ACTIONS(2765), - [anon_sym_abstract] = ACTIONS(2765), - [anon_sym_interface] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), + [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), }, [859] = { - [ts_builtin_sym_end] = ACTIONS(2767), - [sym_identifier] = ACTIONS(2769), - [anon_sym_export] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_type] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_typeof] = ACTIONS(2769), - [anon_sym_import] = ACTIONS(2769), - [anon_sym_with] = ACTIONS(2769), - [anon_sym_var] = ACTIONS(2769), - [anon_sym_let] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_await] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_debugger] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_yield] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2767), - [sym_glimmer_opening_tag] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_async] = ACTIONS(2769), - [anon_sym_function] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_SLASH] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_void] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2767), - [sym_number] = ACTIONS(2767), - [sym_private_property_identifier] = ACTIONS(2767), - [sym_this] = ACTIONS(2769), - [sym_super] = ACTIONS(2769), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_undefined] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_readonly] = ACTIONS(2769), - [anon_sym_get] = ACTIONS(2769), - [anon_sym_set] = ACTIONS(2769), - [anon_sym_declare] = ACTIONS(2769), - [anon_sym_public] = ACTIONS(2769), - [anon_sym_private] = ACTIONS(2769), - [anon_sym_protected] = ACTIONS(2769), - [anon_sym_override] = ACTIONS(2769), - [anon_sym_module] = ACTIONS(2769), - [anon_sym_any] = ACTIONS(2769), - [anon_sym_number] = ACTIONS(2769), - [anon_sym_boolean] = ACTIONS(2769), - [anon_sym_string] = ACTIONS(2769), - [anon_sym_symbol] = ACTIONS(2769), - [anon_sym_object] = ACTIONS(2769), - [anon_sym_abstract] = ACTIONS(2769), - [anon_sym_interface] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), + [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), }, [860] = { - [ts_builtin_sym_end] = ACTIONS(2771), - [sym_identifier] = ACTIONS(2773), - [anon_sym_export] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_type] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_typeof] = ACTIONS(2773), - [anon_sym_import] = ACTIONS(2773), - [anon_sym_with] = ACTIONS(2773), - [anon_sym_var] = ACTIONS(2773), - [anon_sym_let] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_await] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_debugger] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_yield] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2771), - [sym_glimmer_opening_tag] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_async] = ACTIONS(2773), - [anon_sym_function] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_SLASH] = ACTIONS(2773), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_void] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2771), - [sym_number] = ACTIONS(2771), - [sym_private_property_identifier] = ACTIONS(2771), - [sym_this] = ACTIONS(2773), - [sym_super] = ACTIONS(2773), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_undefined] = ACTIONS(2773), - [anon_sym_AT] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_get] = ACTIONS(2773), - [anon_sym_set] = ACTIONS(2773), - [anon_sym_declare] = ACTIONS(2773), - [anon_sym_public] = ACTIONS(2773), - [anon_sym_private] = ACTIONS(2773), - [anon_sym_protected] = ACTIONS(2773), - [anon_sym_override] = ACTIONS(2773), - [anon_sym_module] = ACTIONS(2773), - [anon_sym_any] = ACTIONS(2773), - [anon_sym_number] = ACTIONS(2773), - [anon_sym_boolean] = ACTIONS(2773), - [anon_sym_string] = ACTIONS(2773), - [anon_sym_symbol] = ACTIONS(2773), - [anon_sym_object] = ACTIONS(2773), - [anon_sym_abstract] = ACTIONS(2773), - [anon_sym_interface] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), + [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), }, [861] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2777), - [anon_sym_export] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_type] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_typeof] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_with] = ACTIONS(2777), - [anon_sym_var] = ACTIONS(2777), - [anon_sym_let] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_await] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_debugger] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_yield] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2775), - [sym_glimmer_opening_tag] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_async] = ACTIONS(2777), - [anon_sym_function] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_SLASH] = ACTIONS(2777), - [anon_sym_LT] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_void] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2775), - [sym_number] = ACTIONS(2775), - [sym_private_property_identifier] = ACTIONS(2775), - [sym_this] = ACTIONS(2777), - [sym_super] = ACTIONS(2777), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_undefined] = ACTIONS(2777), - [anon_sym_AT] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_readonly] = ACTIONS(2777), - [anon_sym_get] = ACTIONS(2777), - [anon_sym_set] = ACTIONS(2777), - [anon_sym_declare] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_private] = ACTIONS(2777), - [anon_sym_protected] = ACTIONS(2777), - [anon_sym_override] = ACTIONS(2777), - [anon_sym_module] = ACTIONS(2777), - [anon_sym_any] = ACTIONS(2777), - [anon_sym_number] = ACTIONS(2777), - [anon_sym_boolean] = ACTIONS(2777), - [anon_sym_string] = ACTIONS(2777), - [anon_sym_symbol] = ACTIONS(2777), - [anon_sym_object] = ACTIONS(2777), - [anon_sym_abstract] = ACTIONS(2777), - [anon_sym_interface] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), + [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), }, [862] = { - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2781), - [anon_sym_export] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_type] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_typeof] = ACTIONS(2781), - [anon_sym_import] = ACTIONS(2781), - [anon_sym_with] = ACTIONS(2781), - [anon_sym_var] = ACTIONS(2781), - [anon_sym_let] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_else] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_await] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_debugger] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_yield] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2779), - [sym_glimmer_opening_tag] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_async] = ACTIONS(2781), - [anon_sym_function] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_void] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2779), - [sym_number] = ACTIONS(2779), - [sym_private_property_identifier] = ACTIONS(2779), - [sym_this] = ACTIONS(2781), - [sym_super] = ACTIONS(2781), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [sym_null] = ACTIONS(2781), - [sym_undefined] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_readonly] = ACTIONS(2781), - [anon_sym_get] = ACTIONS(2781), - [anon_sym_set] = ACTIONS(2781), - [anon_sym_declare] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_protected] = ACTIONS(2781), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_module] = ACTIONS(2781), - [anon_sym_any] = ACTIONS(2781), - [anon_sym_number] = ACTIONS(2781), - [anon_sym_boolean] = ACTIONS(2781), - [anon_sym_string] = ACTIONS(2781), - [anon_sym_symbol] = ACTIONS(2781), - [anon_sym_object] = ACTIONS(2781), - [anon_sym_abstract] = ACTIONS(2781), - [anon_sym_interface] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), + [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), }, [863] = { - [ts_builtin_sym_end] = ACTIONS(2783), - [sym_identifier] = ACTIONS(2785), - [anon_sym_export] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_type] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_typeof] = ACTIONS(2785), - [anon_sym_import] = ACTIONS(2785), - [anon_sym_with] = ACTIONS(2785), - [anon_sym_var] = ACTIONS(2785), - [anon_sym_let] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_else] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_await] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_debugger] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_yield] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2783), - [sym_glimmer_opening_tag] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_async] = ACTIONS(2785), - [anon_sym_function] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_SLASH] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_void] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2783), - [sym_number] = ACTIONS(2783), - [sym_private_property_identifier] = ACTIONS(2783), - [sym_this] = ACTIONS(2785), - [sym_super] = ACTIONS(2785), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [sym_null] = ACTIONS(2785), - [sym_undefined] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_readonly] = ACTIONS(2785), - [anon_sym_get] = ACTIONS(2785), - [anon_sym_set] = ACTIONS(2785), - [anon_sym_declare] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_protected] = ACTIONS(2785), - [anon_sym_override] = ACTIONS(2785), - [anon_sym_module] = ACTIONS(2785), - [anon_sym_any] = ACTIONS(2785), - [anon_sym_number] = ACTIONS(2785), - [anon_sym_boolean] = ACTIONS(2785), - [anon_sym_string] = ACTIONS(2785), - [anon_sym_symbol] = ACTIONS(2785), - [anon_sym_object] = ACTIONS(2785), - [anon_sym_abstract] = ACTIONS(2785), - [anon_sym_interface] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), + [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), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(2787), - [sym_identifier] = ACTIONS(2789), - [anon_sym_export] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_type] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_typeof] = ACTIONS(2789), - [anon_sym_import] = ACTIONS(2789), - [anon_sym_with] = ACTIONS(2789), - [anon_sym_var] = ACTIONS(2789), - [anon_sym_let] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_await] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_debugger] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_yield] = ACTIONS(2789), - [anon_sym_LBRACK] = ACTIONS(2787), - [sym_glimmer_opening_tag] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_async] = ACTIONS(2789), - [anon_sym_function] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_void] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2787), - [sym_number] = ACTIONS(2787), - [sym_private_property_identifier] = ACTIONS(2787), - [sym_this] = ACTIONS(2789), - [sym_super] = ACTIONS(2789), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_undefined] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_readonly] = ACTIONS(2789), - [anon_sym_get] = ACTIONS(2789), - [anon_sym_set] = ACTIONS(2789), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_public] = ACTIONS(2789), - [anon_sym_private] = ACTIONS(2789), - [anon_sym_protected] = ACTIONS(2789), - [anon_sym_override] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2789), - [anon_sym_any] = ACTIONS(2789), - [anon_sym_number] = ACTIONS(2789), - [anon_sym_boolean] = ACTIONS(2789), - [anon_sym_string] = ACTIONS(2789), - [anon_sym_symbol] = ACTIONS(2789), - [anon_sym_object] = ACTIONS(2789), - [anon_sym_abstract] = ACTIONS(2789), - [anon_sym_interface] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), + [sym_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(2766), + [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), }, [865] = { - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2793), - [anon_sym_export] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_type] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_typeof] = ACTIONS(2793), - [anon_sym_import] = ACTIONS(2793), - [anon_sym_with] = ACTIONS(2793), - [anon_sym_var] = ACTIONS(2793), - [anon_sym_let] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_else] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_await] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_debugger] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_yield] = ACTIONS(2793), - [anon_sym_LBRACK] = ACTIONS(2791), - [sym_glimmer_opening_tag] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_async] = ACTIONS(2793), - [anon_sym_function] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_SLASH] = ACTIONS(2793), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_void] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2791), - [sym_number] = ACTIONS(2791), - [sym_private_property_identifier] = ACTIONS(2791), - [sym_this] = ACTIONS(2793), - [sym_super] = ACTIONS(2793), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_undefined] = ACTIONS(2793), - [anon_sym_AT] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_readonly] = ACTIONS(2793), - [anon_sym_get] = ACTIONS(2793), - [anon_sym_set] = ACTIONS(2793), - [anon_sym_declare] = ACTIONS(2793), - [anon_sym_public] = ACTIONS(2793), - [anon_sym_private] = ACTIONS(2793), - [anon_sym_protected] = ACTIONS(2793), - [anon_sym_override] = ACTIONS(2793), - [anon_sym_module] = ACTIONS(2793), - [anon_sym_any] = ACTIONS(2793), - [anon_sym_number] = ACTIONS(2793), - [anon_sym_boolean] = ACTIONS(2793), - [anon_sym_string] = ACTIONS(2793), - [anon_sym_symbol] = ACTIONS(2793), - [anon_sym_object] = ACTIONS(2793), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_interface] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), + [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(2795), - [sym_identifier] = ACTIONS(2797), - [anon_sym_export] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_type] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_typeof] = ACTIONS(2797), - [anon_sym_import] = ACTIONS(2797), - [anon_sym_with] = ACTIONS(2797), - [anon_sym_var] = ACTIONS(2797), - [anon_sym_let] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_await] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_debugger] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_yield] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2795), - [sym_glimmer_opening_tag] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_function] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_void] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2795), - [sym_number] = ACTIONS(2795), - [sym_private_property_identifier] = ACTIONS(2795), - [sym_this] = ACTIONS(2797), - [sym_super] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_undefined] = ACTIONS(2797), - [anon_sym_AT] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_readonly] = ACTIONS(2797), - [anon_sym_get] = ACTIONS(2797), - [anon_sym_set] = ACTIONS(2797), - [anon_sym_declare] = ACTIONS(2797), - [anon_sym_public] = ACTIONS(2797), - [anon_sym_private] = ACTIONS(2797), - [anon_sym_protected] = ACTIONS(2797), - [anon_sym_override] = ACTIONS(2797), - [anon_sym_module] = ACTIONS(2797), - [anon_sym_any] = ACTIONS(2797), - [anon_sym_number] = ACTIONS(2797), - [anon_sym_boolean] = ACTIONS(2797), - [anon_sym_string] = ACTIONS(2797), - [anon_sym_symbol] = ACTIONS(2797), - [anon_sym_object] = ACTIONS(2797), - [anon_sym_abstract] = ACTIONS(2797), - [anon_sym_interface] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), + [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(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_export] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_typeof] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_var] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_debugger] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2799), - [sym_glimmer_opening_tag] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_function] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_void] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2799), - [sym_number] = ACTIONS(2799), - [sym_private_property_identifier] = ACTIONS(2799), - [sym_this] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_undefined] = ACTIONS(2801), - [anon_sym_AT] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_readonly] = ACTIONS(2801), - [anon_sym_get] = ACTIONS(2801), - [anon_sym_set] = ACTIONS(2801), - [anon_sym_declare] = ACTIONS(2801), - [anon_sym_public] = ACTIONS(2801), - [anon_sym_private] = ACTIONS(2801), - [anon_sym_protected] = ACTIONS(2801), - [anon_sym_override] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_any] = ACTIONS(2801), - [anon_sym_number] = ACTIONS(2801), - [anon_sym_boolean] = ACTIONS(2801), - [anon_sym_string] = ACTIONS(2801), - [anon_sym_symbol] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_abstract] = ACTIONS(2801), - [anon_sym_interface] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), + [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(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_export] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_typeof] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_var] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_debugger] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2799), - [sym_glimmer_opening_tag] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_function] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_void] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2799), - [sym_number] = ACTIONS(2799), - [sym_private_property_identifier] = ACTIONS(2799), - [sym_this] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_undefined] = ACTIONS(2801), - [anon_sym_AT] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_readonly] = ACTIONS(2801), - [anon_sym_get] = ACTIONS(2801), - [anon_sym_set] = ACTIONS(2801), - [anon_sym_declare] = ACTIONS(2801), - [anon_sym_public] = ACTIONS(2801), - [anon_sym_private] = ACTIONS(2801), - [anon_sym_protected] = ACTIONS(2801), - [anon_sym_override] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_any] = ACTIONS(2801), - [anon_sym_number] = ACTIONS(2801), - [anon_sym_boolean] = ACTIONS(2801), - [anon_sym_string] = ACTIONS(2801), - [anon_sym_symbol] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_abstract] = ACTIONS(2801), - [anon_sym_interface] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), + [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(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(1911), - [anon_sym_import] = ACTIONS(1911), - [anon_sym_with] = ACTIONS(1911), - [anon_sym_var] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_switch] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_debugger] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_throw] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1909), - [sym_glimmer_opening_tag] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_class] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_function] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(1911), - [anon_sym_delete] = ACTIONS(1911), - [anon_sym_PLUS_PLUS] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1909), - [sym_number] = ACTIONS(1909), - [sym_private_property_identifier] = ACTIONS(1909), - [sym_this] = ACTIONS(1911), - [sym_super] = ACTIONS(1911), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [sym_null] = ACTIONS(1911), - [sym_undefined] = ACTIONS(1911), - [anon_sym_AT] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_readonly] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1911), - [anon_sym_private] = ACTIONS(1911), - [anon_sym_protected] = ACTIONS(1911), - [anon_sym_override] = ACTIONS(1911), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1911), - [anon_sym_number] = ACTIONS(1911), - [anon_sym_boolean] = ACTIONS(1911), - [anon_sym_string] = ACTIONS(1911), - [anon_sym_symbol] = ACTIONS(1911), - [anon_sym_object] = ACTIONS(1911), - [anon_sym_abstract] = ACTIONS(1911), - [anon_sym_interface] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), + [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(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_export] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_typeof] = ACTIONS(2805), - [anon_sym_import] = ACTIONS(2805), - [anon_sym_with] = ACTIONS(2805), - [anon_sym_var] = ACTIONS(2805), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_switch] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_await] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_do] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_debugger] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_throw] = ACTIONS(2805), - [anon_sym_case] = ACTIONS(2805), - [anon_sym_yield] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2803), - [sym_glimmer_opening_tag] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_function] = ACTIONS(2805), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_using] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_SLASH] = ACTIONS(2805), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_void] = ACTIONS(2805), - [anon_sym_delete] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2803), - [sym_number] = ACTIONS(2803), - [sym_private_property_identifier] = ACTIONS(2803), - [sym_this] = ACTIONS(2805), - [sym_super] = ACTIONS(2805), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_null] = ACTIONS(2805), - [sym_undefined] = ACTIONS(2805), - [anon_sym_AT] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_readonly] = ACTIONS(2805), - [anon_sym_get] = ACTIONS(2805), - [anon_sym_set] = ACTIONS(2805), - [anon_sym_declare] = ACTIONS(2805), - [anon_sym_public] = ACTIONS(2805), - [anon_sym_private] = ACTIONS(2805), - [anon_sym_protected] = ACTIONS(2805), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_module] = ACTIONS(2805), - [anon_sym_any] = ACTIONS(2805), - [anon_sym_number] = ACTIONS(2805), - [anon_sym_boolean] = ACTIONS(2805), - [anon_sym_string] = ACTIONS(2805), - [anon_sym_symbol] = ACTIONS(2805), - [anon_sym_object] = ACTIONS(2805), - [anon_sym_abstract] = ACTIONS(2805), - [anon_sym_interface] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), + [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(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_export] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_type] = ACTIONS(2809), - [anon_sym_namespace] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_typeof] = ACTIONS(2809), - [anon_sym_import] = ACTIONS(2809), - [anon_sym_with] = ACTIONS(2809), - [anon_sym_var] = ACTIONS(2809), - [anon_sym_let] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_else] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_switch] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_await] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_debugger] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_throw] = ACTIONS(2809), - [anon_sym_case] = ACTIONS(2809), - [anon_sym_yield] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2807), - [sym_glimmer_opening_tag] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2809), - [anon_sym_async] = ACTIONS(2809), - [anon_sym_function] = ACTIONS(2809), - [anon_sym_new] = ACTIONS(2809), - [anon_sym_using] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_void] = ACTIONS(2809), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2807), - [sym_number] = ACTIONS(2807), - [sym_private_property_identifier] = ACTIONS(2807), - [sym_this] = ACTIONS(2809), - [sym_super] = ACTIONS(2809), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_null] = ACTIONS(2809), - [sym_undefined] = ACTIONS(2809), - [anon_sym_AT] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_readonly] = ACTIONS(2809), - [anon_sym_get] = ACTIONS(2809), - [anon_sym_set] = ACTIONS(2809), - [anon_sym_declare] = ACTIONS(2809), - [anon_sym_public] = ACTIONS(2809), - [anon_sym_private] = ACTIONS(2809), - [anon_sym_protected] = ACTIONS(2809), - [anon_sym_override] = ACTIONS(2809), - [anon_sym_module] = ACTIONS(2809), - [anon_sym_any] = ACTIONS(2809), - [anon_sym_number] = ACTIONS(2809), - [anon_sym_boolean] = ACTIONS(2809), - [anon_sym_string] = ACTIONS(2809), - [anon_sym_symbol] = ACTIONS(2809), - [anon_sym_object] = ACTIONS(2809), - [anon_sym_abstract] = ACTIONS(2809), - [anon_sym_interface] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), + [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(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_export] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_typeof] = ACTIONS(2813), - [anon_sym_import] = ACTIONS(2813), - [anon_sym_with] = ACTIONS(2813), - [anon_sym_var] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_await] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_debugger] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_yield] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2811), - [sym_glimmer_opening_tag] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_function] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_SLASH] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_void] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2811), - [sym_number] = ACTIONS(2811), - [sym_private_property_identifier] = ACTIONS(2811), - [sym_this] = ACTIONS(2813), - [sym_super] = ACTIONS(2813), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_null] = ACTIONS(2813), - [sym_undefined] = ACTIONS(2813), - [anon_sym_AT] = ACTIONS(2811), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_readonly] = ACTIONS(2813), - [anon_sym_get] = ACTIONS(2813), - [anon_sym_set] = ACTIONS(2813), - [anon_sym_declare] = ACTIONS(2813), - [anon_sym_public] = ACTIONS(2813), - [anon_sym_private] = ACTIONS(2813), - [anon_sym_protected] = ACTIONS(2813), - [anon_sym_override] = ACTIONS(2813), - [anon_sym_module] = ACTIONS(2813), - [anon_sym_any] = ACTIONS(2813), - [anon_sym_number] = ACTIONS(2813), - [anon_sym_boolean] = ACTIONS(2813), - [anon_sym_string] = ACTIONS(2813), - [anon_sym_symbol] = ACTIONS(2813), - [anon_sym_object] = ACTIONS(2813), - [anon_sym_abstract] = ACTIONS(2813), - [anon_sym_interface] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), + [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(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_export] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_namespace] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_typeof] = ACTIONS(2817), - [anon_sym_import] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2817), - [anon_sym_var] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_else] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_switch] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_do] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_debugger] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_throw] = ACTIONS(2817), - [anon_sym_case] = ACTIONS(2817), - [anon_sym_yield] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2815), - [sym_glimmer_opening_tag] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2817), - [anon_sym_async] = ACTIONS(2817), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_using] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_SLASH] = ACTIONS(2817), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_void] = ACTIONS(2817), - [anon_sym_delete] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2815), - [sym_number] = ACTIONS(2815), - [sym_private_property_identifier] = ACTIONS(2815), - [sym_this] = ACTIONS(2817), - [sym_super] = ACTIONS(2817), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [sym_undefined] = ACTIONS(2817), - [anon_sym_AT] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_get] = ACTIONS(2817), - [anon_sym_set] = ACTIONS(2817), - [anon_sym_declare] = ACTIONS(2817), - [anon_sym_public] = ACTIONS(2817), - [anon_sym_private] = ACTIONS(2817), - [anon_sym_protected] = ACTIONS(2817), - [anon_sym_override] = ACTIONS(2817), - [anon_sym_module] = ACTIONS(2817), - [anon_sym_any] = ACTIONS(2817), - [anon_sym_number] = ACTIONS(2817), - [anon_sym_boolean] = ACTIONS(2817), - [anon_sym_string] = ACTIONS(2817), - [anon_sym_symbol] = ACTIONS(2817), - [anon_sym_object] = ACTIONS(2817), - [anon_sym_abstract] = ACTIONS(2817), - [anon_sym_interface] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), + [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(2819), - [sym_identifier] = ACTIONS(2821), - [anon_sym_export] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_type] = ACTIONS(2821), - [anon_sym_namespace] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_typeof] = ACTIONS(2821), - [anon_sym_import] = ACTIONS(2821), - [anon_sym_with] = ACTIONS(2821), - [anon_sym_var] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_else] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_switch] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_await] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_debugger] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_throw] = ACTIONS(2821), - [anon_sym_case] = ACTIONS(2821), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(2819), - [sym_glimmer_opening_tag] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_class] = ACTIONS(2821), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_function] = ACTIONS(2821), - [anon_sym_new] = ACTIONS(2821), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_SLASH] = ACTIONS(2821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_void] = ACTIONS(2821), - [anon_sym_delete] = ACTIONS(2821), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2819), - [sym_number] = ACTIONS(2819), - [sym_private_property_identifier] = ACTIONS(2819), - [sym_this] = ACTIONS(2821), - [sym_super] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_null] = ACTIONS(2821), - [sym_undefined] = ACTIONS(2821), - [anon_sym_AT] = ACTIONS(2819), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_get] = ACTIONS(2821), - [anon_sym_set] = ACTIONS(2821), - [anon_sym_declare] = ACTIONS(2821), - [anon_sym_public] = ACTIONS(2821), - [anon_sym_private] = ACTIONS(2821), - [anon_sym_protected] = ACTIONS(2821), - [anon_sym_override] = ACTIONS(2821), - [anon_sym_module] = ACTIONS(2821), - [anon_sym_any] = ACTIONS(2821), - [anon_sym_number] = ACTIONS(2821), - [anon_sym_boolean] = ACTIONS(2821), - [anon_sym_string] = ACTIONS(2821), - [anon_sym_symbol] = ACTIONS(2821), - [anon_sym_object] = ACTIONS(2821), - [anon_sym_abstract] = ACTIONS(2821), - [anon_sym_interface] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), + [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(2823), - [sym_identifier] = ACTIONS(2825), - [anon_sym_export] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_type] = ACTIONS(2825), - [anon_sym_namespace] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_typeof] = ACTIONS(2825), - [anon_sym_import] = ACTIONS(2825), - [anon_sym_with] = ACTIONS(2825), - [anon_sym_var] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_else] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_switch] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_await] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_do] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_debugger] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_throw] = ACTIONS(2825), - [anon_sym_case] = ACTIONS(2825), - [anon_sym_yield] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2823), - [sym_glimmer_opening_tag] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_async] = ACTIONS(2825), - [anon_sym_function] = ACTIONS(2825), - [anon_sym_new] = ACTIONS(2825), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_SLASH] = ACTIONS(2825), - [anon_sym_LT] = ACTIONS(2825), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_void] = ACTIONS(2825), - [anon_sym_delete] = ACTIONS(2825), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2823), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [sym_this] = ACTIONS(2825), - [sym_super] = ACTIONS(2825), - [sym_true] = ACTIONS(2825), - [sym_false] = ACTIONS(2825), - [sym_null] = ACTIONS(2825), - [sym_undefined] = ACTIONS(2825), - [anon_sym_AT] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_readonly] = ACTIONS(2825), - [anon_sym_get] = ACTIONS(2825), - [anon_sym_set] = ACTIONS(2825), - [anon_sym_declare] = ACTIONS(2825), - [anon_sym_public] = ACTIONS(2825), - [anon_sym_private] = ACTIONS(2825), - [anon_sym_protected] = ACTIONS(2825), - [anon_sym_override] = ACTIONS(2825), - [anon_sym_module] = ACTIONS(2825), - [anon_sym_any] = ACTIONS(2825), - [anon_sym_number] = ACTIONS(2825), - [anon_sym_boolean] = ACTIONS(2825), - [anon_sym_string] = ACTIONS(2825), - [anon_sym_symbol] = ACTIONS(2825), - [anon_sym_object] = ACTIONS(2825), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_interface] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), + [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(2827), - [sym_identifier] = ACTIONS(2829), - [anon_sym_export] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_type] = ACTIONS(2829), - [anon_sym_namespace] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_typeof] = ACTIONS(2829), - [anon_sym_import] = ACTIONS(2829), - [anon_sym_with] = ACTIONS(2829), - [anon_sym_var] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_else] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_switch] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_await] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_do] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_debugger] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_throw] = ACTIONS(2829), - [anon_sym_case] = ACTIONS(2829), - [anon_sym_yield] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(2827), - [sym_glimmer_opening_tag] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2829), - [anon_sym_async] = ACTIONS(2829), - [anon_sym_function] = ACTIONS(2829), - [anon_sym_new] = ACTIONS(2829), - [anon_sym_using] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_SLASH] = ACTIONS(2829), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_void] = ACTIONS(2829), - [anon_sym_delete] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2827), - [sym_number] = ACTIONS(2827), - [sym_private_property_identifier] = ACTIONS(2827), - [sym_this] = ACTIONS(2829), - [sym_super] = ACTIONS(2829), - [sym_true] = ACTIONS(2829), - [sym_false] = ACTIONS(2829), - [sym_null] = ACTIONS(2829), - [sym_undefined] = ACTIONS(2829), - [anon_sym_AT] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_readonly] = ACTIONS(2829), - [anon_sym_get] = ACTIONS(2829), - [anon_sym_set] = ACTIONS(2829), - [anon_sym_declare] = ACTIONS(2829), - [anon_sym_public] = ACTIONS(2829), - [anon_sym_private] = ACTIONS(2829), - [anon_sym_protected] = ACTIONS(2829), - [anon_sym_override] = ACTIONS(2829), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_any] = ACTIONS(2829), - [anon_sym_number] = ACTIONS(2829), - [anon_sym_boolean] = ACTIONS(2829), - [anon_sym_string] = ACTIONS(2829), - [anon_sym_symbol] = ACTIONS(2829), - [anon_sym_object] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2829), - [anon_sym_interface] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), + [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(2831), - [sym_identifier] = ACTIONS(2833), - [anon_sym_export] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_type] = ACTIONS(2833), - [anon_sym_namespace] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_typeof] = ACTIONS(2833), - [anon_sym_import] = ACTIONS(2833), - [anon_sym_with] = ACTIONS(2833), - [anon_sym_var] = ACTIONS(2833), - [anon_sym_let] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_else] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_switch] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_await] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_do] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_debugger] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_throw] = ACTIONS(2833), - [anon_sym_case] = ACTIONS(2833), - [anon_sym_yield] = ACTIONS(2833), - [anon_sym_LBRACK] = ACTIONS(2831), - [sym_glimmer_opening_tag] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_async] = ACTIONS(2833), - [anon_sym_function] = ACTIONS(2833), - [anon_sym_new] = ACTIONS(2833), - [anon_sym_using] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_SLASH] = ACTIONS(2833), - [anon_sym_LT] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_void] = ACTIONS(2833), - [anon_sym_delete] = ACTIONS(2833), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2831), - [sym_number] = ACTIONS(2831), - [sym_private_property_identifier] = ACTIONS(2831), - [sym_this] = ACTIONS(2833), - [sym_super] = ACTIONS(2833), - [sym_true] = ACTIONS(2833), - [sym_false] = ACTIONS(2833), - [sym_null] = ACTIONS(2833), - [sym_undefined] = ACTIONS(2833), - [anon_sym_AT] = ACTIONS(2831), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_readonly] = ACTIONS(2833), - [anon_sym_get] = ACTIONS(2833), - [anon_sym_set] = ACTIONS(2833), - [anon_sym_declare] = ACTIONS(2833), - [anon_sym_public] = ACTIONS(2833), - [anon_sym_private] = ACTIONS(2833), - [anon_sym_protected] = ACTIONS(2833), - [anon_sym_override] = ACTIONS(2833), - [anon_sym_module] = ACTIONS(2833), - [anon_sym_any] = ACTIONS(2833), - [anon_sym_number] = ACTIONS(2833), - [anon_sym_boolean] = ACTIONS(2833), - [anon_sym_string] = ACTIONS(2833), - [anon_sym_symbol] = ACTIONS(2833), - [anon_sym_object] = ACTIONS(2833), - [anon_sym_abstract] = ACTIONS(2833), - [anon_sym_interface] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), + [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(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_export] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_namespace] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_typeof] = ACTIONS(2837), - [anon_sym_import] = ACTIONS(2837), - [anon_sym_with] = ACTIONS(2837), - [anon_sym_var] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_else] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_switch] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_await] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_do] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_debugger] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_throw] = ACTIONS(2837), - [anon_sym_case] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [sym_glimmer_opening_tag] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_async] = ACTIONS(2837), - [anon_sym_function] = ACTIONS(2837), - [anon_sym_new] = ACTIONS(2837), - [anon_sym_using] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_void] = ACTIONS(2837), - [anon_sym_delete] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2835), - [sym_number] = ACTIONS(2835), - [sym_private_property_identifier] = ACTIONS(2835), - [sym_this] = ACTIONS(2837), - [sym_super] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_null] = ACTIONS(2837), - [sym_undefined] = ACTIONS(2837), - [anon_sym_AT] = ACTIONS(2835), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_readonly] = ACTIONS(2837), - [anon_sym_get] = ACTIONS(2837), - [anon_sym_set] = ACTIONS(2837), - [anon_sym_declare] = ACTIONS(2837), - [anon_sym_public] = ACTIONS(2837), - [anon_sym_private] = ACTIONS(2837), - [anon_sym_protected] = ACTIONS(2837), - [anon_sym_override] = ACTIONS(2837), - [anon_sym_module] = ACTIONS(2837), - [anon_sym_any] = ACTIONS(2837), - [anon_sym_number] = ACTIONS(2837), - [anon_sym_boolean] = ACTIONS(2837), - [anon_sym_string] = ACTIONS(2837), - [anon_sym_symbol] = ACTIONS(2837), - [anon_sym_object] = ACTIONS(2837), - [anon_sym_abstract] = ACTIONS(2837), - [anon_sym_interface] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), + [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(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_export] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_typeof] = ACTIONS(2841), - [anon_sym_import] = ACTIONS(2841), - [anon_sym_with] = ACTIONS(2841), - [anon_sym_var] = ACTIONS(2841), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_await] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_debugger] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2839), - [sym_glimmer_opening_tag] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_function] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_void] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2839), - [sym_number] = ACTIONS(2839), - [sym_private_property_identifier] = ACTIONS(2839), - [sym_this] = ACTIONS(2841), - [sym_super] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), - [sym_undefined] = ACTIONS(2841), - [anon_sym_AT] = ACTIONS(2839), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_readonly] = ACTIONS(2841), - [anon_sym_get] = ACTIONS(2841), - [anon_sym_set] = ACTIONS(2841), - [anon_sym_declare] = ACTIONS(2841), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_override] = ACTIONS(2841), - [anon_sym_module] = ACTIONS(2841), - [anon_sym_any] = ACTIONS(2841), - [anon_sym_number] = ACTIONS(2841), - [anon_sym_boolean] = ACTIONS(2841), - [anon_sym_string] = ACTIONS(2841), - [anon_sym_symbol] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_abstract] = ACTIONS(2841), - [anon_sym_interface] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), + [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(2843), - [sym_identifier] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_namespace] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_typeof] = ACTIONS(2845), - [anon_sym_import] = ACTIONS(2845), - [anon_sym_with] = ACTIONS(2845), - [anon_sym_var] = ACTIONS(2845), - [anon_sym_let] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_switch] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_await] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_debugger] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_case] = ACTIONS(2845), - [anon_sym_yield] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2843), - [sym_glimmer_opening_tag] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_function] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_using] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_void] = ACTIONS(2845), - [anon_sym_delete] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2843), - [sym_number] = ACTIONS(2843), - [sym_private_property_identifier] = ACTIONS(2843), - [sym_this] = ACTIONS(2845), - [sym_super] = ACTIONS(2845), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_null] = ACTIONS(2845), - [sym_undefined] = ACTIONS(2845), - [anon_sym_AT] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_readonly] = ACTIONS(2845), - [anon_sym_get] = ACTIONS(2845), - [anon_sym_set] = ACTIONS(2845), - [anon_sym_declare] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2845), - [anon_sym_private] = ACTIONS(2845), - [anon_sym_protected] = ACTIONS(2845), - [anon_sym_override] = ACTIONS(2845), - [anon_sym_module] = ACTIONS(2845), - [anon_sym_any] = ACTIONS(2845), - [anon_sym_number] = ACTIONS(2845), - [anon_sym_boolean] = ACTIONS(2845), - [anon_sym_string] = ACTIONS(2845), - [anon_sym_symbol] = ACTIONS(2845), - [anon_sym_object] = ACTIONS(2845), - [anon_sym_abstract] = ACTIONS(2845), - [anon_sym_interface] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), + [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(2847), - [sym_identifier] = ACTIONS(2849), - [anon_sym_export] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_type] = ACTIONS(2849), - [anon_sym_namespace] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_typeof] = ACTIONS(2849), - [anon_sym_import] = ACTIONS(2849), - [anon_sym_with] = ACTIONS(2849), - [anon_sym_var] = ACTIONS(2849), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_debugger] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2849), - [anon_sym_yield] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2847), - [sym_glimmer_opening_tag] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_async] = ACTIONS(2849), - [anon_sym_function] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_void] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2847), - [sym_number] = ACTIONS(2847), - [sym_private_property_identifier] = ACTIONS(2847), - [sym_this] = ACTIONS(2849), - [sym_super] = ACTIONS(2849), - [sym_true] = ACTIONS(2849), - [sym_false] = ACTIONS(2849), - [sym_null] = ACTIONS(2849), - [sym_undefined] = ACTIONS(2849), - [anon_sym_AT] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_readonly] = ACTIONS(2849), - [anon_sym_get] = ACTIONS(2849), - [anon_sym_set] = ACTIONS(2849), - [anon_sym_declare] = ACTIONS(2849), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_override] = ACTIONS(2849), - [anon_sym_module] = ACTIONS(2849), - [anon_sym_any] = ACTIONS(2849), - [anon_sym_number] = ACTIONS(2849), - [anon_sym_boolean] = ACTIONS(2849), - [anon_sym_string] = ACTIONS(2849), - [anon_sym_symbol] = ACTIONS(2849), - [anon_sym_object] = ACTIONS(2849), - [anon_sym_abstract] = ACTIONS(2849), - [anon_sym_interface] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), + [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(2851), - [sym_identifier] = ACTIONS(2853), - [anon_sym_export] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_type] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_typeof] = ACTIONS(2853), - [anon_sym_import] = ACTIONS(2853), - [anon_sym_with] = ACTIONS(2853), - [anon_sym_var] = ACTIONS(2853), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_await] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_debugger] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_yield] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2851), - [sym_glimmer_opening_tag] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_async] = ACTIONS(2853), - [anon_sym_function] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_void] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2851), - [sym_number] = ACTIONS(2851), - [sym_private_property_identifier] = ACTIONS(2851), - [sym_this] = ACTIONS(2853), - [sym_super] = ACTIONS(2853), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [sym_null] = ACTIONS(2853), - [sym_undefined] = ACTIONS(2853), - [anon_sym_AT] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_readonly] = ACTIONS(2853), - [anon_sym_get] = ACTIONS(2853), - [anon_sym_set] = ACTIONS(2853), - [anon_sym_declare] = ACTIONS(2853), - [anon_sym_public] = ACTIONS(2853), - [anon_sym_private] = ACTIONS(2853), - [anon_sym_protected] = ACTIONS(2853), - [anon_sym_override] = ACTIONS(2853), - [anon_sym_module] = ACTIONS(2853), - [anon_sym_any] = ACTIONS(2853), - [anon_sym_number] = ACTIONS(2853), - [anon_sym_boolean] = ACTIONS(2853), - [anon_sym_string] = ACTIONS(2853), - [anon_sym_symbol] = ACTIONS(2853), - [anon_sym_object] = ACTIONS(2853), - [anon_sym_abstract] = ACTIONS(2853), - [anon_sym_interface] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), + [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(2855), - [sym_identifier] = ACTIONS(2857), - [anon_sym_export] = ACTIONS(2857), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_type] = ACTIONS(2857), - [anon_sym_namespace] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_typeof] = ACTIONS(2857), - [anon_sym_import] = ACTIONS(2857), - [anon_sym_with] = ACTIONS(2857), - [anon_sym_var] = ACTIONS(2857), - [anon_sym_let] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2857), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_else] = ACTIONS(2857), - [anon_sym_if] = ACTIONS(2857), - [anon_sym_switch] = ACTIONS(2857), - [anon_sym_for] = ACTIONS(2857), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_await] = ACTIONS(2857), - [anon_sym_while] = ACTIONS(2857), - [anon_sym_do] = ACTIONS(2857), - [anon_sym_try] = ACTIONS(2857), - [anon_sym_break] = ACTIONS(2857), - [anon_sym_continue] = ACTIONS(2857), - [anon_sym_debugger] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2857), - [anon_sym_throw] = ACTIONS(2857), - [anon_sym_case] = ACTIONS(2857), - [anon_sym_yield] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2855), - [sym_glimmer_opening_tag] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2857), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_function] = ACTIONS(2857), - [anon_sym_new] = ACTIONS(2857), - [anon_sym_using] = ACTIONS(2857), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_void] = ACTIONS(2857), - [anon_sym_delete] = ACTIONS(2857), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2855), - [sym_number] = ACTIONS(2855), - [sym_private_property_identifier] = ACTIONS(2855), - [sym_this] = ACTIONS(2857), - [sym_super] = ACTIONS(2857), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_undefined] = ACTIONS(2857), - [anon_sym_AT] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2857), - [anon_sym_readonly] = ACTIONS(2857), - [anon_sym_get] = ACTIONS(2857), - [anon_sym_set] = ACTIONS(2857), - [anon_sym_declare] = ACTIONS(2857), - [anon_sym_public] = ACTIONS(2857), - [anon_sym_private] = ACTIONS(2857), - [anon_sym_protected] = ACTIONS(2857), - [anon_sym_override] = ACTIONS(2857), - [anon_sym_module] = ACTIONS(2857), - [anon_sym_any] = ACTIONS(2857), - [anon_sym_number] = ACTIONS(2857), - [anon_sym_boolean] = ACTIONS(2857), - [anon_sym_string] = ACTIONS(2857), - [anon_sym_symbol] = ACTIONS(2857), - [anon_sym_object] = ACTIONS(2857), - [anon_sym_abstract] = ACTIONS(2857), - [anon_sym_interface] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2857), + [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(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_export] = ACTIONS(2861), - [anon_sym_default] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_namespace] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_typeof] = ACTIONS(2861), - [anon_sym_import] = ACTIONS(2861), - [anon_sym_with] = ACTIONS(2861), - [anon_sym_var] = ACTIONS(2861), - [anon_sym_let] = ACTIONS(2861), - [anon_sym_const] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_switch] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2859), - [anon_sym_await] = ACTIONS(2861), - [anon_sym_while] = ACTIONS(2861), - [anon_sym_do] = ACTIONS(2861), - [anon_sym_try] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_debugger] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_throw] = ACTIONS(2861), - [anon_sym_case] = ACTIONS(2861), - [anon_sym_yield] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2859), - [sym_glimmer_opening_tag] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2861), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_function] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2861), - [anon_sym_using] = ACTIONS(2861), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_SLASH] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2859), - [anon_sym_void] = ACTIONS(2861), - [anon_sym_delete] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2859), - [sym_number] = ACTIONS(2859), - [sym_private_property_identifier] = ACTIONS(2859), - [sym_this] = ACTIONS(2861), - [sym_super] = ACTIONS(2861), - [sym_true] = ACTIONS(2861), - [sym_false] = ACTIONS(2861), - [sym_null] = ACTIONS(2861), - [sym_undefined] = ACTIONS(2861), - [anon_sym_AT] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2861), - [anon_sym_readonly] = ACTIONS(2861), - [anon_sym_get] = ACTIONS(2861), - [anon_sym_set] = ACTIONS(2861), - [anon_sym_declare] = ACTIONS(2861), - [anon_sym_public] = ACTIONS(2861), - [anon_sym_private] = ACTIONS(2861), - [anon_sym_protected] = ACTIONS(2861), - [anon_sym_override] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(2861), - [anon_sym_any] = ACTIONS(2861), - [anon_sym_number] = ACTIONS(2861), - [anon_sym_boolean] = ACTIONS(2861), - [anon_sym_string] = ACTIONS(2861), - [anon_sym_symbol] = ACTIONS(2861), - [anon_sym_object] = ACTIONS(2861), - [anon_sym_abstract] = ACTIONS(2861), - [anon_sym_interface] = ACTIONS(2861), - [anon_sym_enum] = ACTIONS(2861), + [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(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_export] = ACTIONS(2865), - [anon_sym_default] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_namespace] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_typeof] = ACTIONS(2865), - [anon_sym_import] = ACTIONS(2865), - [anon_sym_with] = ACTIONS(2865), - [anon_sym_var] = ACTIONS(2865), - [anon_sym_let] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_switch] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_await] = ACTIONS(2865), - [anon_sym_while] = ACTIONS(2865), - [anon_sym_do] = ACTIONS(2865), - [anon_sym_try] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_debugger] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_throw] = ACTIONS(2865), - [anon_sym_case] = ACTIONS(2865), - [anon_sym_yield] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [sym_glimmer_opening_tag] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2865), - [anon_sym_async] = ACTIONS(2865), - [anon_sym_function] = ACTIONS(2865), - [anon_sym_new] = ACTIONS(2865), - [anon_sym_using] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_void] = ACTIONS(2865), - [anon_sym_delete] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2863), - [sym_number] = ACTIONS(2863), - [sym_private_property_identifier] = ACTIONS(2863), - [sym_this] = ACTIONS(2865), - [sym_super] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_null] = ACTIONS(2865), - [sym_undefined] = ACTIONS(2865), - [anon_sym_AT] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2865), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_get] = ACTIONS(2865), - [anon_sym_set] = ACTIONS(2865), - [anon_sym_declare] = ACTIONS(2865), - [anon_sym_public] = ACTIONS(2865), - [anon_sym_private] = ACTIONS(2865), - [anon_sym_protected] = ACTIONS(2865), - [anon_sym_override] = ACTIONS(2865), - [anon_sym_module] = ACTIONS(2865), - [anon_sym_any] = ACTIONS(2865), - [anon_sym_number] = ACTIONS(2865), - [anon_sym_boolean] = ACTIONS(2865), - [anon_sym_string] = ACTIONS(2865), - [anon_sym_symbol] = ACTIONS(2865), - [anon_sym_object] = ACTIONS(2865), - [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), + [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(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_export] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_namespace] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_typeof] = ACTIONS(2869), - [anon_sym_import] = ACTIONS(2869), - [anon_sym_with] = ACTIONS(2869), - [anon_sym_var] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_await] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_debugger] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_yield] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [sym_glimmer_opening_tag] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_async] = ACTIONS(2869), - [anon_sym_function] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_void] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2867), - [sym_number] = ACTIONS(2867), - [sym_private_property_identifier] = ACTIONS(2867), - [sym_this] = ACTIONS(2869), - [sym_super] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_null] = ACTIONS(2869), - [sym_undefined] = ACTIONS(2869), - [anon_sym_AT] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_readonly] = ACTIONS(2869), - [anon_sym_get] = ACTIONS(2869), - [anon_sym_set] = ACTIONS(2869), - [anon_sym_declare] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_protected] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2869), - [anon_sym_module] = ACTIONS(2869), - [anon_sym_any] = ACTIONS(2869), - [anon_sym_number] = ACTIONS(2869), - [anon_sym_boolean] = ACTIONS(2869), - [anon_sym_string] = ACTIONS(2869), - [anon_sym_symbol] = ACTIONS(2869), - [anon_sym_object] = ACTIONS(2869), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_interface] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), + [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(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_export] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_typeof] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_with] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_await] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_debugger] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2871), - [sym_glimmer_opening_tag] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_function] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_void] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2871), - [sym_number] = ACTIONS(2871), - [sym_private_property_identifier] = ACTIONS(2871), - [sym_this] = ACTIONS(2873), - [sym_super] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_null] = ACTIONS(2873), - [sym_undefined] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_readonly] = ACTIONS(2873), - [anon_sym_get] = ACTIONS(2873), - [anon_sym_set] = ACTIONS(2873), - [anon_sym_declare] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_protected] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_module] = ACTIONS(2873), - [anon_sym_any] = ACTIONS(2873), - [anon_sym_number] = ACTIONS(2873), - [anon_sym_boolean] = ACTIONS(2873), - [anon_sym_string] = ACTIONS(2873), - [anon_sym_symbol] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_abstract] = ACTIONS(2873), - [anon_sym_interface] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), + [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(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_export] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_typeof] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_with] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_await] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_debugger] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2871), - [sym_glimmer_opening_tag] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_function] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_void] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2871), - [sym_number] = ACTIONS(2871), - [sym_private_property_identifier] = ACTIONS(2871), - [sym_this] = ACTIONS(2873), - [sym_super] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_null] = ACTIONS(2873), - [sym_undefined] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_readonly] = ACTIONS(2873), - [anon_sym_get] = ACTIONS(2873), - [anon_sym_set] = ACTIONS(2873), - [anon_sym_declare] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_protected] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_module] = ACTIONS(2873), - [anon_sym_any] = ACTIONS(2873), - [anon_sym_number] = ACTIONS(2873), - [anon_sym_boolean] = ACTIONS(2873), - [anon_sym_string] = ACTIONS(2873), - [anon_sym_symbol] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_abstract] = ACTIONS(2873), - [anon_sym_interface] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), + [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(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_export] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_namespace] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_typeof] = ACTIONS(2877), - [anon_sym_import] = ACTIONS(2877), - [anon_sym_with] = ACTIONS(2877), - [anon_sym_var] = ACTIONS(2877), - [anon_sym_let] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_await] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_debugger] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_yield] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_glimmer_opening_tag] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_async] = ACTIONS(2877), - [anon_sym_function] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_void] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2875), - [sym_number] = ACTIONS(2875), - [sym_private_property_identifier] = ACTIONS(2875), - [sym_this] = ACTIONS(2877), - [sym_super] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_null] = ACTIONS(2877), - [sym_undefined] = ACTIONS(2877), - [anon_sym_AT] = ACTIONS(2875), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_readonly] = ACTIONS(2877), - [anon_sym_get] = ACTIONS(2877), - [anon_sym_set] = ACTIONS(2877), - [anon_sym_declare] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_protected] = ACTIONS(2877), - [anon_sym_override] = ACTIONS(2877), - [anon_sym_module] = ACTIONS(2877), - [anon_sym_any] = ACTIONS(2877), - [anon_sym_number] = ACTIONS(2877), - [anon_sym_boolean] = ACTIONS(2877), - [anon_sym_string] = ACTIONS(2877), - [anon_sym_symbol] = ACTIONS(2877), - [anon_sym_object] = ACTIONS(2877), - [anon_sym_abstract] = ACTIONS(2877), - [anon_sym_interface] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), + [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(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), + [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(2879), - [sym_identifier] = ACTIONS(2881), - [anon_sym_export] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_type] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_typeof] = ACTIONS(2881), - [anon_sym_import] = ACTIONS(2881), - [anon_sym_with] = ACTIONS(2881), - [anon_sym_var] = ACTIONS(2881), - [anon_sym_let] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_await] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_debugger] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_yield] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2879), - [sym_glimmer_opening_tag] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_async] = ACTIONS(2881), - [anon_sym_function] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_void] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2879), - [sym_number] = ACTIONS(2879), - [sym_private_property_identifier] = ACTIONS(2879), - [sym_this] = ACTIONS(2881), - [sym_super] = ACTIONS(2881), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [sym_null] = ACTIONS(2881), - [sym_undefined] = ACTIONS(2881), - [anon_sym_AT] = ACTIONS(2879), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_readonly] = ACTIONS(2881), - [anon_sym_get] = ACTIONS(2881), - [anon_sym_set] = ACTIONS(2881), - [anon_sym_declare] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_protected] = ACTIONS(2881), - [anon_sym_override] = ACTIONS(2881), - [anon_sym_module] = ACTIONS(2881), - [anon_sym_any] = ACTIONS(2881), - [anon_sym_number] = ACTIONS(2881), - [anon_sym_boolean] = ACTIONS(2881), - [anon_sym_string] = ACTIONS(2881), - [anon_sym_symbol] = ACTIONS(2881), - [anon_sym_object] = ACTIONS(2881), - [anon_sym_abstract] = ACTIONS(2881), - [anon_sym_interface] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), + [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(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_export] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_type] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_typeof] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2885), - [anon_sym_with] = ACTIONS(2885), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_await] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_debugger] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_yield] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2883), - [sym_glimmer_opening_tag] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_async] = ACTIONS(2885), - [anon_sym_function] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_void] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2883), - [sym_number] = ACTIONS(2883), - [sym_private_property_identifier] = ACTIONS(2883), - [sym_this] = ACTIONS(2885), - [sym_super] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_null] = ACTIONS(2885), - [sym_undefined] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_readonly] = ACTIONS(2885), - [anon_sym_get] = ACTIONS(2885), - [anon_sym_set] = ACTIONS(2885), - [anon_sym_declare] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_protected] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_module] = ACTIONS(2885), - [anon_sym_any] = ACTIONS(2885), - [anon_sym_number] = ACTIONS(2885), - [anon_sym_boolean] = ACTIONS(2885), - [anon_sym_string] = ACTIONS(2885), - [anon_sym_symbol] = ACTIONS(2885), - [anon_sym_object] = ACTIONS(2885), - [anon_sym_abstract] = ACTIONS(2885), - [anon_sym_interface] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), + [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(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_export] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_typeof] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_with] = ACTIONS(2889), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_debugger] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2887), - [sym_glimmer_opening_tag] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_function] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2887), - [sym_number] = ACTIONS(2887), - [sym_private_property_identifier] = ACTIONS(2887), - [sym_this] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [sym_null] = ACTIONS(2889), - [sym_undefined] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_readonly] = ACTIONS(2889), - [anon_sym_get] = ACTIONS(2889), - [anon_sym_set] = ACTIONS(2889), - [anon_sym_declare] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_protected] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_module] = ACTIONS(2889), - [anon_sym_any] = ACTIONS(2889), - [anon_sym_number] = ACTIONS(2889), - [anon_sym_boolean] = ACTIONS(2889), - [anon_sym_string] = ACTIONS(2889), - [anon_sym_symbol] = ACTIONS(2889), - [anon_sym_object] = ACTIONS(2889), - [anon_sym_abstract] = ACTIONS(2889), - [anon_sym_interface] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), + [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(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_export] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_typeof] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_with] = ACTIONS(2889), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_debugger] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2887), - [sym_glimmer_opening_tag] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_function] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2887), - [sym_number] = ACTIONS(2887), - [sym_private_property_identifier] = ACTIONS(2887), - [sym_this] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [sym_null] = ACTIONS(2889), - [sym_undefined] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_readonly] = ACTIONS(2889), - [anon_sym_get] = ACTIONS(2889), - [anon_sym_set] = ACTIONS(2889), - [anon_sym_declare] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_protected] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_module] = ACTIONS(2889), - [anon_sym_any] = ACTIONS(2889), - [anon_sym_number] = ACTIONS(2889), - [anon_sym_boolean] = ACTIONS(2889), - [anon_sym_string] = ACTIONS(2889), - [anon_sym_symbol] = ACTIONS(2889), - [anon_sym_object] = ACTIONS(2889), - [anon_sym_abstract] = ACTIONS(2889), - [anon_sym_interface] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), + [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(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_export] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_typeof] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_with] = ACTIONS(2889), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_debugger] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2887), - [sym_glimmer_opening_tag] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_function] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2887), - [sym_number] = ACTIONS(2887), - [sym_private_property_identifier] = ACTIONS(2887), - [sym_this] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [sym_null] = ACTIONS(2889), - [sym_undefined] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_readonly] = ACTIONS(2889), - [anon_sym_get] = ACTIONS(2889), - [anon_sym_set] = ACTIONS(2889), - [anon_sym_declare] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_protected] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_module] = ACTIONS(2889), - [anon_sym_any] = ACTIONS(2889), - [anon_sym_number] = ACTIONS(2889), - [anon_sym_boolean] = ACTIONS(2889), - [anon_sym_string] = ACTIONS(2889), - [anon_sym_symbol] = ACTIONS(2889), - [anon_sym_object] = ACTIONS(2889), - [anon_sym_abstract] = ACTIONS(2889), - [anon_sym_interface] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), + [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(2891), - [sym_identifier] = ACTIONS(2893), - [anon_sym_export] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_type] = ACTIONS(2893), - [anon_sym_namespace] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_typeof] = ACTIONS(2893), - [anon_sym_import] = ACTIONS(2893), - [anon_sym_with] = ACTIONS(2893), - [anon_sym_var] = ACTIONS(2893), - [anon_sym_let] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_await] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_debugger] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_yield] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2891), - [sym_glimmer_opening_tag] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2893), - [anon_sym_function] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_using] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_void] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2891), - [sym_number] = ACTIONS(2891), - [sym_private_property_identifier] = ACTIONS(2891), - [sym_this] = ACTIONS(2893), - [sym_super] = ACTIONS(2893), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [sym_null] = ACTIONS(2893), - [sym_undefined] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_readonly] = ACTIONS(2893), - [anon_sym_get] = ACTIONS(2893), - [anon_sym_set] = ACTIONS(2893), - [anon_sym_declare] = ACTIONS(2893), - [anon_sym_public] = ACTIONS(2893), - [anon_sym_private] = ACTIONS(2893), - [anon_sym_protected] = ACTIONS(2893), - [anon_sym_override] = ACTIONS(2893), - [anon_sym_module] = ACTIONS(2893), - [anon_sym_any] = ACTIONS(2893), - [anon_sym_number] = ACTIONS(2893), - [anon_sym_boolean] = ACTIONS(2893), - [anon_sym_string] = ACTIONS(2893), - [anon_sym_symbol] = ACTIONS(2893), - [anon_sym_object] = ACTIONS(2893), - [anon_sym_abstract] = ACTIONS(2893), - [anon_sym_interface] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), + [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(2895), - [sym_identifier] = ACTIONS(2897), - [anon_sym_export] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_type] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_typeof] = ACTIONS(2897), - [anon_sym_import] = ACTIONS(2897), - [anon_sym_with] = ACTIONS(2897), - [anon_sym_var] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym_await] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_debugger] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_yield] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2895), - [sym_glimmer_opening_tag] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [anon_sym_function] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_void] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2895), - [sym_number] = ACTIONS(2895), - [sym_private_property_identifier] = ACTIONS(2895), - [sym_this] = ACTIONS(2897), - [sym_super] = ACTIONS(2897), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [sym_null] = ACTIONS(2897), - [sym_undefined] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_readonly] = ACTIONS(2897), - [anon_sym_get] = ACTIONS(2897), - [anon_sym_set] = ACTIONS(2897), - [anon_sym_declare] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_protected] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_module] = ACTIONS(2897), - [anon_sym_any] = ACTIONS(2897), - [anon_sym_number] = ACTIONS(2897), - [anon_sym_boolean] = ACTIONS(2897), - [anon_sym_string] = ACTIONS(2897), - [anon_sym_symbol] = ACTIONS(2897), - [anon_sym_object] = ACTIONS(2897), - [anon_sym_abstract] = ACTIONS(2897), - [anon_sym_interface] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), + [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(2899), - [sym_identifier] = ACTIONS(2901), - [anon_sym_export] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_type] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_typeof] = ACTIONS(2901), - [anon_sym_import] = ACTIONS(2901), - [anon_sym_with] = ACTIONS(2901), - [anon_sym_var] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_await] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_debugger] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2899), - [sym_glimmer_opening_tag] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_function] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_void] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2899), - [sym_number] = ACTIONS(2899), - [sym_private_property_identifier] = ACTIONS(2899), - [sym_this] = ACTIONS(2901), - [sym_super] = ACTIONS(2901), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [sym_null] = ACTIONS(2901), - [sym_undefined] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_readonly] = ACTIONS(2901), - [anon_sym_get] = ACTIONS(2901), - [anon_sym_set] = ACTIONS(2901), - [anon_sym_declare] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_protected] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_module] = ACTIONS(2901), - [anon_sym_any] = ACTIONS(2901), - [anon_sym_number] = ACTIONS(2901), - [anon_sym_boolean] = ACTIONS(2901), - [anon_sym_string] = ACTIONS(2901), - [anon_sym_symbol] = ACTIONS(2901), - [anon_sym_object] = ACTIONS(2901), - [anon_sym_abstract] = ACTIONS(2901), - [anon_sym_interface] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), + [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(2903), - [sym_identifier] = ACTIONS(2905), - [anon_sym_export] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_type] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_typeof] = ACTIONS(2905), - [anon_sym_import] = ACTIONS(2905), - [anon_sym_with] = ACTIONS(2905), - [anon_sym_var] = ACTIONS(2905), - [anon_sym_let] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_await] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_debugger] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_yield] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2903), - [sym_glimmer_opening_tag] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_async] = ACTIONS(2905), - [anon_sym_function] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_void] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2903), - [sym_number] = ACTIONS(2903), - [sym_private_property_identifier] = ACTIONS(2903), - [sym_this] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [sym_null] = ACTIONS(2905), - [sym_undefined] = ACTIONS(2905), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_readonly] = ACTIONS(2905), - [anon_sym_get] = ACTIONS(2905), - [anon_sym_set] = ACTIONS(2905), - [anon_sym_declare] = ACTIONS(2905), - [anon_sym_public] = ACTIONS(2905), - [anon_sym_private] = ACTIONS(2905), - [anon_sym_protected] = ACTIONS(2905), - [anon_sym_override] = ACTIONS(2905), - [anon_sym_module] = ACTIONS(2905), - [anon_sym_any] = ACTIONS(2905), - [anon_sym_number] = ACTIONS(2905), - [anon_sym_boolean] = ACTIONS(2905), - [anon_sym_string] = ACTIONS(2905), - [anon_sym_symbol] = ACTIONS(2905), - [anon_sym_object] = ACTIONS(2905), - [anon_sym_abstract] = ACTIONS(2905), - [anon_sym_interface] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), + [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(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_export] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym_import] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_debugger] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [sym_glimmer_opening_tag] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_function] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_void] = ACTIONS(2909), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2907), - [sym_number] = ACTIONS(2907), - [sym_private_property_identifier] = ACTIONS(2907), - [sym_this] = ACTIONS(2909), - [sym_super] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_null] = ACTIONS(2909), - [sym_undefined] = ACTIONS(2909), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_get] = ACTIONS(2909), - [anon_sym_set] = ACTIONS(2909), - [anon_sym_declare] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_module] = ACTIONS(2909), - [anon_sym_any] = ACTIONS(2909), - [anon_sym_number] = ACTIONS(2909), - [anon_sym_boolean] = ACTIONS(2909), - [anon_sym_string] = ACTIONS(2909), - [anon_sym_symbol] = ACTIONS(2909), - [anon_sym_object] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), + [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(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_export] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_typeof] = ACTIONS(2913), - [anon_sym_import] = ACTIONS(2913), - [anon_sym_with] = ACTIONS(2913), - [anon_sym_var] = ACTIONS(2913), - [anon_sym_let] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_await] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_debugger] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_yield] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [sym_glimmer_opening_tag] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_async] = ACTIONS(2913), - [anon_sym_function] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_void] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2911), - [sym_number] = ACTIONS(2911), - [sym_private_property_identifier] = ACTIONS(2911), - [sym_this] = ACTIONS(2913), - [sym_super] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_null] = ACTIONS(2913), - [sym_undefined] = ACTIONS(2913), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_readonly] = ACTIONS(2913), - [anon_sym_get] = ACTIONS(2913), - [anon_sym_set] = ACTIONS(2913), - [anon_sym_declare] = ACTIONS(2913), - [anon_sym_public] = ACTIONS(2913), - [anon_sym_private] = ACTIONS(2913), - [anon_sym_protected] = ACTIONS(2913), - [anon_sym_override] = ACTIONS(2913), - [anon_sym_module] = ACTIONS(2913), - [anon_sym_any] = ACTIONS(2913), - [anon_sym_number] = ACTIONS(2913), - [anon_sym_boolean] = ACTIONS(2913), - [anon_sym_string] = ACTIONS(2913), - [anon_sym_symbol] = ACTIONS(2913), - [anon_sym_object] = ACTIONS(2913), - [anon_sym_abstract] = ACTIONS(2913), - [anon_sym_interface] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), + [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(2915), - [sym_identifier] = ACTIONS(2917), - [anon_sym_export] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_typeof] = ACTIONS(2917), - [anon_sym_import] = ACTIONS(2917), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_var] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_await] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_debugger] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2915), - [sym_glimmer_opening_tag] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_async] = ACTIONS(2917), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_void] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2915), - [sym_number] = ACTIONS(2915), - [sym_private_property_identifier] = ACTIONS(2915), - [sym_this] = ACTIONS(2917), - [sym_super] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_null] = ACTIONS(2917), - [sym_undefined] = ACTIONS(2917), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_readonly] = ACTIONS(2917), - [anon_sym_get] = ACTIONS(2917), - [anon_sym_set] = ACTIONS(2917), - [anon_sym_declare] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_override] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_any] = ACTIONS(2917), - [anon_sym_number] = ACTIONS(2917), - [anon_sym_boolean] = ACTIONS(2917), - [anon_sym_string] = ACTIONS(2917), - [anon_sym_symbol] = ACTIONS(2917), - [anon_sym_object] = ACTIONS(2917), - [anon_sym_abstract] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), + [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(2919), - [sym_identifier] = ACTIONS(2921), - [anon_sym_export] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_type] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_typeof] = ACTIONS(2921), - [anon_sym_import] = ACTIONS(2921), - [anon_sym_with] = ACTIONS(2921), - [anon_sym_var] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_await] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_debugger] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2919), - [sym_glimmer_opening_tag] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_async] = ACTIONS(2921), - [anon_sym_function] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_void] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2919), - [sym_number] = ACTIONS(2919), - [sym_private_property_identifier] = ACTIONS(2919), - [sym_this] = ACTIONS(2921), - [sym_super] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_null] = ACTIONS(2921), - [sym_undefined] = ACTIONS(2921), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2921), - [anon_sym_get] = ACTIONS(2921), - [anon_sym_set] = ACTIONS(2921), - [anon_sym_declare] = ACTIONS(2921), - [anon_sym_public] = ACTIONS(2921), - [anon_sym_private] = ACTIONS(2921), - [anon_sym_protected] = ACTIONS(2921), - [anon_sym_override] = ACTIONS(2921), - [anon_sym_module] = ACTIONS(2921), - [anon_sym_any] = ACTIONS(2921), - [anon_sym_number] = ACTIONS(2921), - [anon_sym_boolean] = ACTIONS(2921), - [anon_sym_string] = ACTIONS(2921), - [anon_sym_symbol] = ACTIONS(2921), - [anon_sym_object] = ACTIONS(2921), - [anon_sym_abstract] = ACTIONS(2921), - [anon_sym_interface] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), + [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(2923), - [sym_identifier] = ACTIONS(2925), - [anon_sym_export] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_type] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_typeof] = ACTIONS(2925), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_with] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2925), - [anon_sym_let] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym_await] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_debugger] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_yield] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2923), - [sym_glimmer_opening_tag] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_async] = ACTIONS(2925), - [anon_sym_function] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_void] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2923), - [sym_number] = ACTIONS(2923), - [sym_private_property_identifier] = ACTIONS(2923), - [sym_this] = ACTIONS(2925), - [sym_super] = ACTIONS(2925), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_undefined] = ACTIONS(2925), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_readonly] = ACTIONS(2925), - [anon_sym_get] = ACTIONS(2925), - [anon_sym_set] = ACTIONS(2925), - [anon_sym_declare] = ACTIONS(2925), - [anon_sym_public] = ACTIONS(2925), - [anon_sym_private] = ACTIONS(2925), - [anon_sym_protected] = ACTIONS(2925), - [anon_sym_override] = ACTIONS(2925), - [anon_sym_module] = ACTIONS(2925), - [anon_sym_any] = ACTIONS(2925), - [anon_sym_number] = ACTIONS(2925), - [anon_sym_boolean] = ACTIONS(2925), - [anon_sym_string] = ACTIONS(2925), - [anon_sym_symbol] = ACTIONS(2925), - [anon_sym_object] = ACTIONS(2925), - [anon_sym_abstract] = ACTIONS(2925), - [anon_sym_interface] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), + [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(2927), - [sym_identifier] = ACTIONS(2929), - [anon_sym_export] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_type] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_typeof] = ACTIONS(2929), - [anon_sym_import] = ACTIONS(2929), - [anon_sym_with] = ACTIONS(2929), - [anon_sym_var] = ACTIONS(2929), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_await] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_debugger] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_yield] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2927), - [sym_glimmer_opening_tag] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_function] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_SLASH] = ACTIONS(2929), - [anon_sym_LT] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_void] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2927), - [sym_number] = ACTIONS(2927), - [sym_private_property_identifier] = ACTIONS(2927), - [sym_this] = ACTIONS(2929), - [sym_super] = ACTIONS(2929), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [sym_null] = ACTIONS(2929), - [sym_undefined] = ACTIONS(2929), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_readonly] = ACTIONS(2929), - [anon_sym_get] = ACTIONS(2929), - [anon_sym_set] = ACTIONS(2929), - [anon_sym_declare] = ACTIONS(2929), - [anon_sym_public] = ACTIONS(2929), - [anon_sym_private] = ACTIONS(2929), - [anon_sym_protected] = ACTIONS(2929), - [anon_sym_override] = ACTIONS(2929), - [anon_sym_module] = ACTIONS(2929), - [anon_sym_any] = ACTIONS(2929), - [anon_sym_number] = ACTIONS(2929), - [anon_sym_boolean] = ACTIONS(2929), - [anon_sym_string] = ACTIONS(2929), - [anon_sym_symbol] = ACTIONS(2929), - [anon_sym_object] = ACTIONS(2929), - [anon_sym_abstract] = ACTIONS(2929), - [anon_sym_interface] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), + [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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(2920), + [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), }, [907] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), }, [909] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), }, [910] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), }, [911] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), }, [916] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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), }, [917] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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_identifier] = ACTIONS(2955), - [anon_sym_export] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_typeof] = ACTIONS(2955), - [anon_sym_import] = ACTIONS(2955), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_var] = ACTIONS(2955), - [anon_sym_let] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_await] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_debugger] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_yield] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2957), - [sym_glimmer_opening_tag] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_async] = ACTIONS(2955), - [anon_sym_function] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_void] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2957), - [sym_number] = ACTIONS(2957), - [sym_private_property_identifier] = ACTIONS(2957), - [sym_this] = ACTIONS(2955), - [sym_super] = ACTIONS(2955), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_null] = ACTIONS(2955), - [sym_undefined] = ACTIONS(2955), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_readonly] = ACTIONS(2955), - [anon_sym_get] = ACTIONS(2955), - [anon_sym_set] = ACTIONS(2955), - [anon_sym_declare] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_override] = ACTIONS(2955), - [anon_sym_module] = ACTIONS(2955), - [anon_sym_any] = ACTIONS(2955), - [anon_sym_number] = ACTIONS(2955), - [anon_sym_boolean] = ACTIONS(2955), - [anon_sym_string] = ACTIONS(2955), - [anon_sym_symbol] = ACTIONS(2955), - [anon_sym_object] = ACTIONS(2955), - [anon_sym_abstract] = ACTIONS(2955), - [anon_sym_interface] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), + [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_identifier] = ACTIONS(2487), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_typeof] = ACTIONS(2487), - [anon_sym_import] = ACTIONS(2487), - [anon_sym_with] = ACTIONS(2487), - [anon_sym_var] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_debugger] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2485), - [sym_glimmer_opening_tag] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_function] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_void] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2485), - [sym_number] = ACTIONS(2485), - [sym_private_property_identifier] = ACTIONS(2485), - [sym_this] = ACTIONS(2487), - [sym_super] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_undefined] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_readonly] = ACTIONS(2487), - [anon_sym_get] = ACTIONS(2487), - [anon_sym_set] = ACTIONS(2487), - [anon_sym_declare] = ACTIONS(2487), - [anon_sym_public] = ACTIONS(2487), - [anon_sym_private] = ACTIONS(2487), - [anon_sym_protected] = ACTIONS(2487), - [anon_sym_override] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_any] = ACTIONS(2487), - [anon_sym_number] = ACTIONS(2487), - [anon_sym_boolean] = ACTIONS(2487), - [anon_sym_string] = ACTIONS(2487), - [anon_sym_symbol] = ACTIONS(2487), - [anon_sym_object] = ACTIONS(2487), - [anon_sym_abstract] = ACTIONS(2487), - [anon_sym_interface] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), + [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(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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_identifier] = ACTIONS(2479), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_typeof] = ACTIONS(2479), - [anon_sym_import] = ACTIONS(2479), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_var] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_await] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_debugger] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2477), - [sym_glimmer_opening_tag] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_SLASH] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_void] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2477), - [sym_number] = ACTIONS(2477), - [sym_private_property_identifier] = ACTIONS(2477), - [sym_this] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_undefined] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_override] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), - [anon_sym_object] = ACTIONS(2479), - [anon_sym_abstract] = ACTIONS(2479), - [anon_sym_interface] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), + [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_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_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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2960), + [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_identifier] = ACTIONS(2959), - [anon_sym_export] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_typeof] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_var] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_switch] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_debugger] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_throw] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2961), - [sym_glimmer_opening_tag] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_using] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_void] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2961), - [sym_number] = ACTIONS(2961), - [sym_private_property_identifier] = ACTIONS(2961), - [sym_this] = ACTIONS(2959), - [sym_super] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_null] = ACTIONS(2959), - [sym_undefined] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_get] = ACTIONS(2959), - [anon_sym_set] = ACTIONS(2959), - [anon_sym_declare] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_protected] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_any] = ACTIONS(2959), - [anon_sym_number] = ACTIONS(2959), - [anon_sym_boolean] = ACTIONS(2959), - [anon_sym_string] = ACTIONS(2959), - [anon_sym_symbol] = ACTIONS(2959), - [anon_sym_object] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), + [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_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(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), }, [923] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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_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(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(2963), - [anon_sym_export] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_namespace] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_typeof] = ACTIONS(2963), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_const] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_switch] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_debugger] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_throw] = ACTIONS(2963), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2965), - [sym_glimmer_opening_tag] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_async] = ACTIONS(2963), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_using] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_void] = ACTIONS(2963), - [anon_sym_delete] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2965), - [sym_number] = ACTIONS(2965), - [sym_private_property_identifier] = ACTIONS(2965), - [sym_this] = ACTIONS(2963), - [sym_super] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_null] = ACTIONS(2963), - [sym_undefined] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2963), - [anon_sym_readonly] = ACTIONS(2963), - [anon_sym_get] = ACTIONS(2963), - [anon_sym_set] = ACTIONS(2963), - [anon_sym_declare] = ACTIONS(2963), - [anon_sym_public] = ACTIONS(2963), - [anon_sym_private] = ACTIONS(2963), - [anon_sym_protected] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(2963), - [anon_sym_module] = ACTIONS(2963), - [anon_sym_any] = ACTIONS(2963), - [anon_sym_number] = ACTIONS(2963), - [anon_sym_boolean] = ACTIONS(2963), - [anon_sym_string] = ACTIONS(2963), - [anon_sym_symbol] = ACTIONS(2963), - [anon_sym_object] = ACTIONS(2963), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_interface] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), + [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(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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(2967), - [anon_sym_export] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_namespace] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2969), - [anon_sym_typeof] = ACTIONS(2967), - [anon_sym_import] = ACTIONS(2967), - [anon_sym_with] = ACTIONS(2967), - [anon_sym_var] = ACTIONS(2967), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_switch] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2969), - [anon_sym_await] = ACTIONS(2967), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_do] = ACTIONS(2967), - [anon_sym_try] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_debugger] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_throw] = ACTIONS(2967), - [anon_sym_yield] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2969), - [sym_glimmer_opening_tag] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_async] = ACTIONS(2967), - [anon_sym_function] = ACTIONS(2967), - [anon_sym_new] = ACTIONS(2967), - [anon_sym_using] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2969), - [anon_sym_void] = ACTIONS(2967), - [anon_sym_delete] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2969), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2969), - [sym_private_property_identifier] = ACTIONS(2969), - [sym_this] = ACTIONS(2967), - [sym_super] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_null] = ACTIONS(2967), - [sym_undefined] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2967), - [anon_sym_readonly] = ACTIONS(2967), - [anon_sym_get] = ACTIONS(2967), - [anon_sym_set] = ACTIONS(2967), - [anon_sym_declare] = ACTIONS(2967), - [anon_sym_public] = ACTIONS(2967), - [anon_sym_private] = ACTIONS(2967), - [anon_sym_protected] = ACTIONS(2967), - [anon_sym_override] = ACTIONS(2967), - [anon_sym_module] = ACTIONS(2967), - [anon_sym_any] = ACTIONS(2967), - [anon_sym_number] = ACTIONS(2967), - [anon_sym_boolean] = ACTIONS(2967), - [anon_sym_string] = ACTIONS(2967), - [anon_sym_symbol] = ACTIONS(2967), - [anon_sym_object] = ACTIONS(2967), - [anon_sym_abstract] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), + [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(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [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_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(3002), - [sym_type] = STATE(3117), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(3002), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3014), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_asserts] = ACTIONS(2975), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_asserts] = STATE(1876), - [sym_type] = STATE(1877), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_predicate] = STATE(1876), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1792), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3005), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_asserts] = ACTIONS(3015), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_asserts] = STATE(1569), - [sym_type] = STATE(1570), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_predicate] = STATE(1569), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1472), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3053), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_asserts] = ACTIONS(3063), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2964), - [sym_type] = STATE(3051), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(2964), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3014), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_asserts] = ACTIONS(2975), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(3002), - [sym_type] = STATE(3698), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(3002), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3510), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3075), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_asserts] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(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), + [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_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2964), - [sym_type] = STATE(3832), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(2964), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3626), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3091), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_asserts] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_asserts] = STATE(3865), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_predicate] = STATE(3909), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3139), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(3111), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_asserts] = ACTIONS(3113), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2964), - [sym_type] = STATE(3664), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(2964), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3510), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3075), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_asserts] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_asserts] = STATE(3973), - [sym_type] = STATE(3507), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_predicate] = STATE(3974), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3289), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3147), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_asserts] = ACTIONS(3157), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(5296), - [sym_type] = STATE(3469), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(5412), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3014), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_asserts] = ACTIONS(2975), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_asserts] = STATE(3427), - [sym_type] = STATE(3428), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_predicate] = STATE(3427), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3289), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3147), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_asserts] = ACTIONS(3157), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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_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_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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3158), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_asserts] = STATE(3189), - [sym_type] = STATE(3191), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_predicate] = STATE(3189), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3139), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(3111), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_asserts] = ACTIONS(3113), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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_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_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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2960), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_asserts] = STATE(3459), - [sym_type] = STATE(3460), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_predicate] = STATE(3459), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3289), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3147), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_asserts] = ACTIONS(3157), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3158), + [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_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_asserts] = STATE(3231), - [sym_type] = STATE(3234), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_predicate] = STATE(3231), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3139), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(3111), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_asserts] = ACTIONS(3113), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(3002), - [sym_type] = STATE(3861), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(3002), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3626), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3091), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_asserts] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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_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_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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2960), + [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_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_asserts] = STATE(1536), - [sym_type] = STATE(1538), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_predicate] = STATE(1536), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1472), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3053), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_asserts] = ACTIONS(3063), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_asserts] = STATE(2009), - [sym_type] = STATE(2010), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_predicate] = STATE(2009), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1792), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3005), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_asserts] = ACTIONS(3015), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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), }, [948] = { - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_RPAREN] = ACTIONS(3169), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3169), - [sym_glimmer_opening_tag] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_EQ_GT] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3169), - [sym_private_property_identifier] = ACTIONS(3169), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_extends] = ACTIONS(3167), + [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_identifier] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_EQ] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_RPAREN] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3173), - [sym_glimmer_opening_tag] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_function] = ACTIONS(3171), - [anon_sym_EQ_GT] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3173), - [sym_number] = ACTIONS(3173), - [sym_private_property_identifier] = ACTIONS(3173), - [sym_this] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_null] = ACTIONS(3171), - [sym_undefined] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_get] = ACTIONS(3171), - [anon_sym_set] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_declare] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_any] = ACTIONS(3171), - [anon_sym_number] = ACTIONS(3171), - [anon_sym_boolean] = ACTIONS(3171), - [anon_sym_string] = ACTIONS(3171), - [anon_sym_symbol] = ACTIONS(3171), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_extends] = ACTIONS(3171), + [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_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_GT] = 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), + [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(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_identifier] = ACTIONS(3175), - [anon_sym_export] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3177), - [sym_glimmer_opening_tag] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3175), - [anon_sym_EQ_GT] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_void] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3177), - [sym_number] = ACTIONS(3177), - [sym_private_property_identifier] = ACTIONS(3177), - [sym_this] = ACTIONS(3175), - [sym_super] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3175), - [anon_sym_set] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_declare] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_module] = ACTIONS(3175), - [anon_sym_any] = ACTIONS(3175), - [anon_sym_number] = ACTIONS(3175), - [anon_sym_boolean] = ACTIONS(3175), - [anon_sym_string] = ACTIONS(3175), - [anon_sym_symbol] = ACTIONS(3175), - [anon_sym_object] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_extends] = ACTIONS(3175), + [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), + [sym_identifier] = ACTIONS(1493), + [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(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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_GT] = ACTIONS(3170), + [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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_GT] = ACTIONS(3172), + [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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3918), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [sym_jsx_identifier] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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(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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4501), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_GT] = 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), + [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(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] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_AMP] = 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), }, [958] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_GT] = ACTIONS(3190), + [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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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), + [sym_jsx_identifier] = 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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_GT] = ACTIONS(3198), + [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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_GT] = 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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4508), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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(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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4530), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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(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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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_GT] = 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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4578), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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(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), + [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(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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4513), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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), }, [972] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4603), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3433), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3434), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3456), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3457), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3472), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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_identifier] = ACTIONS(1493), + [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_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), + [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(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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3473), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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_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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3321), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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_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_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), + [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(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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3451), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4550), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3075), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [983] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4555), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4556), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1532), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [986] = { [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1607), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3469), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2992), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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_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(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_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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3803), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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_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(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_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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3806), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4802), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2920), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4802), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2924), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2965), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3833), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3846), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3932), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1953), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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), + [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), }, [1000] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1961), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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), }, [1001] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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_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), }, [1002] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2956), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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_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), }, [1003] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2904), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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), + [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), }, [1004] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1967), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(5212), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4762), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1968), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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), }, [1007] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4762), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1970), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2992), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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), }, [1009] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3092), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3210), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3211), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2920), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2924), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2904), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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), }, [1016] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4006), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3918), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1561), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1574), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4206), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4148), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3494), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3519), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(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(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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1025] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1026] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(2020), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(2022), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1028] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4038), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(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(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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1029] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4055), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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_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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2965), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3669), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1032] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3674), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1033] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3675), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3690), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1036] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4075), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(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(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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1037] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2956), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1039] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4540), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1040] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2904), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3711), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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), }, [1042] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3341), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3342), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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), + [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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1873), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1874), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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(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_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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3489), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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_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(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_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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1891), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1892), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1904), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1905), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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_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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4560), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4561), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3892), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3200), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3201), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3206), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(5212), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5220), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3207), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4678), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3393), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4512), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5220), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3209), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3192), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3249), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(4309), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(4507), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2965), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3054), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1924), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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), + [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), }, [1069] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1925), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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), + [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), }, [1070] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4527), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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), }, [1071] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3252), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [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(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), + [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(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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3185), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [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(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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3858), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3224), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [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), }, [1075] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4482), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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), }, [1076] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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_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(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3257), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [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), }, [1078] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3258), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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), + [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), }, [1079] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1501), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1502), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1508), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4646), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1509), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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(5212), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4646), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1513), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3813), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4510), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3063), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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), }, [1087] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3064), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3793), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3895), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1543), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1544), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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(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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1563), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1565), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2992), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3666), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3667), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5088), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2920), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5088), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2924), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4575), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(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_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), }, [1100] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1989), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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(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_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), }, [1101] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1586), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1587), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3879), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(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_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), }, [1104] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4472), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4367), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4475), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1918), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1108] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1602), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1109] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1110] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3116), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1605), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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_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), }, [1113] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2956), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4517), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3387), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3389), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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), + [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), }, [1117] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4465), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [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(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3392), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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_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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4587), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1120] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4590), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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(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(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4593), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1122] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4599), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1123] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4610), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1124] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4678), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3395), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [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), + [sym_identifier] = ACTIONS(1493), + [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_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), + [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), }, [1125] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(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(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [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), + [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), }, [1126] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(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(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [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), + [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), }, [1127] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(3907), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3907), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3907), - [sym_property_signature] = STATE(3907), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3907), - [sym_index_signature] = STATE(3907), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3323), + [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(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(3312), + [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(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), + [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), }, [1129] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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), + [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_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3322), + [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(3338), [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(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_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(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), + [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), }, [1131] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3341), - [anon_sym_set] = ACTIONS(3341), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(3276), + [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), }, [1132] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3341), - [anon_sym_set] = ACTIONS(3341), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(3342), + [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), }, [1133] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(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(3344), + [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_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), + [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), }, [1134] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5019), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_any] = ACTIONS(3349), - [anon_sym_number] = ACTIONS(3349), - [anon_sym_boolean] = ACTIONS(3349), - [anon_sym_string] = ACTIONS(3349), - [anon_sym_symbol] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5019), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_any] = ACTIONS(3349), - [anon_sym_number] = ACTIONS(3349), - [anon_sym_boolean] = ACTIONS(3349), - [anon_sym_string] = ACTIONS(3349), - [anon_sym_symbol] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [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(3366), + [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), }, [1137] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1138] = { - [sym_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_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(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3380), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_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_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(724), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3380), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1142] = { - [sym_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_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_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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(722), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3380), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1144] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1145] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [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), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2259), + [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_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1146] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(223), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_QMARK] = ACTIONS(750), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1147] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1148] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1149] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(834), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_QMARK] = ACTIONS(836), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1150] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [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(158), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_QMARK] = ACTIONS(750), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3915), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(5287), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5294), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(5287), - [sym_method_definition] = STATE(5294), - [sym_pair] = STATE(5294), - [sym_pair_pattern] = STATE(5287), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3915), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3915), - [sym_property_signature] = STATE(3915), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3915), - [sym_index_signature] = STATE(3915), - [aux_sym_export_statement_repeat1] = STATE(4535), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_readonly] = ACTIONS(3402), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_abstract] = ACTIONS(3273), + [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_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(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [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), + [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), }, [1152] = { - [sym_export_statement] = STATE(3867), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(5287), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5294), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(5287), - [sym_method_definition] = STATE(5294), - [sym_pair] = STATE(5294), - [sym_pair_pattern] = STATE(5287), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3867), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3867), - [sym_property_signature] = STATE(3867), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3867), - [sym_index_signature] = STATE(3867), - [aux_sym_export_statement_repeat1] = STATE(4535), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_readonly] = ACTIONS(3402), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_abstract] = ACTIONS(3273), + [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), + [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(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [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), + [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), }, [1153] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1154] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [sym_identifier] = ACTIONS(3376), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(3380), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1155] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(223), + [sym_string] = STATE(216), + [sym__module] = STATE(245), + [sym_identifier] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1156] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(883), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1157] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(4574), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1158] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(751), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1159] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1160] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1161] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1162] = { - [sym_nested_identifier] = STATE(4585), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [sym_identifier] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(751), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1163] = { - [sym_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1164] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [sym_identifier] = ACTIONS(3376), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(3380), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1165] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [sym_identifier] = ACTIONS(3376), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(3380), + [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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1166] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [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_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [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(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_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 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(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3414), 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(3416), 39, + ACTIONS(158), 14, + 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_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, @@ -139301,44 +137538,58 @@ 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), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [71] = 14, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, + [93] = 14, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - ACTIONS(3418), 1, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3382), 1, sym_identifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + 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(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139350,7 +137601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139366,11 +137617,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(122), 23, + 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, @@ -139385,16 +137635,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, anon_sym_instanceof, anon_sym_satisfies, - [164] = 3, + [186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 23, + ACTIONS(3411), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139418,7 +137669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3422), 39, + ACTIONS(3413), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139458,49 +137709,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [235] = 3, + [257] = 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(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 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(3426), 39, + ACTIONS(158), 14, + 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_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, @@ -139516,21 +137764,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), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [306] = 3, + [350] = 4, + ACTIONS(3419), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3428), 23, + ACTIONS(3415), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139554,7 +137818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3430), 39, + ACTIONS(3417), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139563,7 +137827,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, @@ -139594,11 +137857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [377] = 3, + [423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3432), 23, + ACTIONS(3421), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139622,7 +137885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3434), 39, + ACTIONS(3423), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139662,13 +137925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [448] = 4, - ACTIONS(3436), 1, + [494] = 4, + ACTIONS(3429), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 23, + ACTIONS(3425), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139692,7 +137955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3422), 38, + ACTIONS(3427), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139731,13 +137994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [521] = 4, - ACTIONS(3438), 1, - anon_sym_extends, + [567] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 23, + ACTIONS(3431), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139761,7 +138022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3426), 38, + ACTIONS(3433), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139770,6 +138031,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, @@ -139800,49 +138062,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [594] = 3, + [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(3440), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3441), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3445), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3442), 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, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139858,6 +138106,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), 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, @@ -139867,32 +138123,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [665] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(916), 1, + 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, anon_sym_EQ, - ACTIONS(922), 1, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + 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(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 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, @@ -139903,7 +138180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139919,7 +138196,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(122), 25, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139938,18 +138215,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, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [754] = 3, + [824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3444), 23, + ACTIONS(3415), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139973,7 +138248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3446), 39, + ACTIONS(3417), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140013,35 +138288,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [825] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + [895] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3425), 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, - ACTIONS(3466), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_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(3427), 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, @@ -140057,14 +138346,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(3452), 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, @@ -140074,64 +138355,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 17, + anon_sym_implements, + [966] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3457), 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, - [918] = 14, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(725), 1, anon_sym_QMARK, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - ACTIONS(3418), 1, - sym_identifier, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(3459), 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_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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140147,9 +138414,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [1037] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140166,32 +138447,72 @@ 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(3463), 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, - [1011] = 12, - ACTIONS(149), 1, + anon_sym_implements, + [1108] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(922), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -140206,7 +138527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140222,7 +138543,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(122), 25, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140248,35 +138569,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [1100] = 14, - ACTIONS(149), 1, + [1197] = 15, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(908), 1, - anon_sym_of, - ACTIONS(3387), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 12, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140287,7 +138608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140303,10 +138624,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(122), 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, @@ -140327,34 +138649,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1193] = 15, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, + [1292] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(226), 1, - anon_sym_RBRACK, - ACTIONS(892), 1, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(897), 1, - anon_sym_COLON, - ACTIONS(901), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 14, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140366,7 +138684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140382,7 +138700,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(122), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140407,31 +138725,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1288] = 13, - ACTIONS(229), 1, + anon_sym_implements, + [1381] = 13, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(905), 1, + ACTIONS(878), 1, anon_sym_in, - ACTIONS(908), 1, + ACTIONS(881), 1, anon_sym_of, - ACTIONS(3383), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(3470), 1, + ACTIONS(3465), 1, sym_identifier, - STATE(4470), 1, + STATE(4496), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3320), 3, + STATE(3467), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(158), 13, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -140445,7 +138764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140461,7 +138780,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(122), 23, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140485,46 +138804,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1379] = 14, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - ACTIONS(3418), 1, - sym_identifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [1472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(2456), 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(2454), 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_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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140540,55 +138861,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(122), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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] = 12, - ACTIONS(948), 1, - anon_sym_EQ, - ACTIONS(954), 1, - anon_sym_EQ_GT, - ACTIONS(1510), 1, + anon_sym_implements, + [1542] = 14, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(3412), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, sym_identifier, - STATE(747), 1, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, sym_string, - STATE(875), 1, + STATE(1628), 1, sym__module, - STATE(4585), 1, - sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140599,7 +138908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140615,7 +138924,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140640,43 +138949,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1560] = 13, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [1634] = 14, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(930), 1, - anon_sym_COLON, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(3469), 1, + anon_sym_DOT, + ACTIONS(3471), 1, + anon_sym_QMARK_DOT, + ACTIONS(3473), 1, + anon_sym_LT, + STATE(3046), 1, + sym_arguments, + STATE(3197), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + 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_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140692,9 +139008,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(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140703,47 +139018,41 @@ 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, - [1650] = 13, - ACTIONS(149), 1, + [1726] = 12, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(897), 1, - anon_sym_COLON, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3407), 1, sym_identifier, - STATE(1488), 1, + STATE(781), 1, sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, + STATE(900), 1, sym__module, + STATE(4574), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(158), 14, + sym__automatic_semicolon, 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, @@ -140753,7 +139062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140769,7 +139078,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140794,32 +139103,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1740] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(936), 1, + [1814] = 11, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(3376), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + STATE(4487), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(158), 13, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140829,7 +139137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140845,7 +139153,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140870,30 +139178,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1828] = 12, - ACTIONS(948), 1, + [1900] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3480), 1, anon_sym_EQ_GT, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(3373), 1, - sym_identifier, - STATE(739), 1, - sym_nested_identifier, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, + ACTIONS(3482), 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(161), 14, + 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_LPAREN, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -140902,10 +139229,55 @@ 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3435), 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, + [1990] = 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(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140921,9 +139293,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(122), 24, - anon_sym_STAR, + 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, @@ -140940,35 +139329,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, - [1916] = 13, - ACTIONS(706), 1, + [2080] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(725), 1, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(729), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(3472), 1, - anon_sym_EQ, - ACTIONS(3474), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3479), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140984,7 +139370,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(3452), 17, + ACTIONS(158), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141002,7 +139388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141023,27 +139409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2006] = 12, - ACTIONS(948), 1, + [2170] = 12, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(1588), 1, + ACTIONS(3370), 1, + sym_identifier, + ACTIONS(3372), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(3374), 1, anon_sym_SQUOTE, - ACTIONS(3482), 1, - sym_identifier, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, + STATE(216), 1, sym_string, - STATE(4447), 1, + STATE(223), 1, + sym_nested_identifier, + STATE(245), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -141058,7 +139444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141074,7 +139460,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141099,32 +139485,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2094] = 12, - ACTIONS(948), 1, + [2258] = 11, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3375), 1, + ACTIONS(3376), 1, sym_identifier, - ACTIONS(3377), 1, - anon_sym_DQUOTE, - ACTIONS(3379), 1, - anon_sym_SQUOTE, - STATE(225), 1, - sym_string, - STATE(227), 1, - sym_nested_identifier, - STATE(256), 1, - sym__module, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + STATE(4496), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(158), 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, @@ -141134,7 +139519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141150,7 +139535,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141175,42 +139560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2182] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(853), 1, + [2344] = 5, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141226,9 +139582,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(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141249,33 +139604,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(3439), 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, - [2270] = 11, - ACTIONS(948), 1, + anon_sym_implements, + [2418] = 12, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3381), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3368), 1, sym_identifier, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - STATE(4470), 1, - sym_variable_declarator, + STATE(751), 1, + sym_nested_identifier, + STATE(781), 1, + sym_string, + STATE(900), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(158), 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, @@ -141285,7 +139664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141301,7 +139680,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141326,29 +139705,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2356] = 13, - ACTIONS(696), 1, + [2506] = 12, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3487), 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, - ACTIONS(167), 15, + ACTIONS(158), 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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141364,52 +139756,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(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [2446] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2479), 22, + ACTIONS(120), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141430,73 +139779,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2477), 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, - [2516] = 14, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, + [2594] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(226), 1, - anon_sym_RBRACK, - ACTIONS(892), 1, + ACTIONS(925), 1, anon_sym_EQ, - ACTIONS(901), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 14, sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141507,7 +139816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141523,7 +139832,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141548,29 +139857,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2608] = 13, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(706), 1, + [2682] = 13, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(725), 1, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3477), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, + ACTIONS(3480), 1, + anon_sym_EQ_GT, + ACTIONS(3482), 1, anon_sym_LT, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141586,7 +139895,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(161), 17, + ACTIONS(3439), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141604,7 +139913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141625,29 +139934,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2698] = 13, - ACTIONS(696), 1, + [2772] = 12, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(3405), 1, + sym_identifier, + STATE(1498), 1, + sym_nested_identifier, + STATE(1500), 1, + sym_string, + STATE(1740), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(158), 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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141663,26 +139985,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(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141699,16 +140004,49 @@ 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, - [2788] = 5, - ACTIONS(3484), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2860] = 13, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, anon_sym_EQ, + ACTIONS(919), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(158), 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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141724,8 +140062,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(3448), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141746,88 +140085,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3452), 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, - [2862] = 3, + [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, + ACTIONS(3501), 1, + anon_sym_extends, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 22, + 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(3435), 17, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2485), 39, + ACTIONS(3439), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -141837,30 +140163,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2932] = 13, - ACTIONS(706), 1, + [3038] = 13, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(725), 1, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(3472), 1, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3474), 1, - anon_sym_LPAREN, ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3480), 1, anon_sym_EQ_GT, - ACTIONS(3479), 1, + ACTIONS(3482), 1, anon_sym_LT, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141876,7 +140201,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(3452), 17, + ACTIONS(3439), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141894,7 +140219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141915,32 +140240,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3022] = 12, - ACTIONS(149), 1, + [3128] = 13, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 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, @@ -141950,7 +140276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141966,7 +140292,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141991,29 +140317,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3110] = 13, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(706), 1, + [3218] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(725), 1, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(3472), 1, - anon_sym_EQ, - ACTIONS(3474), 1, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3479), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(4673), 1, + STATE(5129), 1, aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142029,7 +140355,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(3452), 17, + ACTIONS(158), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142047,7 +140373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142068,30 +140394,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3200] = 12, - ACTIONS(3450), 1, + [3308] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - STATE(2908), 1, - sym_type_arguments, + 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(3486), 2, - anon_sym_COMMA, + ACTIONS(158), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3489), 3, + anon_sym_DOT, + 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, + 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, - ACTIONS(3466), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_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, + [3396] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(931), 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, + 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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142107,34 +140521,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 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_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_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(3452), 18, + anon_sym_instanceof, + anon_sym_satisfies, + [3484] = 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), 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, @@ -142144,50 +140612,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3288] = 14, - ACTIONS(3450), 1, + anon_sym_implements, + [3554] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3500), 1, + 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), 13, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(3502), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3504), 1, anon_sym_QMARK_DOT, - ACTIONS(3506), 1, + 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, + 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, - STATE(3048), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3641] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 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(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3452), 11, + ACTIONS(158), 13, 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142203,8 +140738,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(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142213,40 +140749,44 @@ 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, - [3380] = 11, - ACTIONS(948), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3728] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, - ACTIONS(3381), 1, + ACTIONS(3382), 1, sym_identifier, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - STATE(4495), 1, - sym_variable_declarator, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, - sym__automatic_semicolon, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142256,7 +140796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142272,11 +140812,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(122), 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, @@ -142297,31 +140838,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3466] = 12, - ACTIONS(69), 1, + [3815] = 13, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(948), 1, - anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3410), 1, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(834), 1, + anon_sym_COLON, + ACTIONS(3382), 1, sym_identifier, - STATE(1510), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1512), 1, + STATE(1503), 1, sym_string, - STATE(1731), 1, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142332,7 +140873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142348,7 +140889,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -142373,40 +140914,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3554] = 14, - ACTIONS(3456), 1, + [3904] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3480), 1, anon_sym_EQ_GT, - STATE(2886), 1, + ACTIONS(3503), 1, + anon_sym_EQ, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 14, + ACTIONS(3439), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142416,7 +140957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142432,7 +140973,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(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142450,24 +140991,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3645] = 9, - ACTIONS(229), 1, + [3995] = 9, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(1668), 1, + ACTIONS(1683), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 2, + ACTIONS(3505), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3515), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142483,7 +141024,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(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142502,7 +141043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(161), 19, + ACTIONS(158), 19, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -142522,39 +141063,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3726] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3456), 1, + [4076] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3455), 1, anon_sym_LT, - STATE(2886), 1, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(3513), 1, + anon_sym_EQ_GT, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3441), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3452), 13, + ACTIONS(3445), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142564,7 +141106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142580,11 +141122,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(3448), 18, + ACTIONS(3435), 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, @@ -142599,48 +141140,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3817] = 13, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, + [4167] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(3525), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_LT, - STATE(3205), 1, - sym_type_arguments, + ACTIONS(961), 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(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3521), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3498), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3452), 13, + ACTIONS(158), 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142656,44 +141189,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + 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_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3906] = 8, - ACTIONS(3456), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4254] = 8, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3535), 1, + ACTIONS(3519), 1, anon_sym_DOT, - ACTIONS(3537), 1, + ACTIONS(3521), 1, anon_sym_LT, - STATE(1231), 1, + STATE(1270), 1, sym_arguments, - STATE(5549), 1, + STATE(5556), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 14, + ACTIONS(3517), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, @@ -142704,7 +141243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3531), 41, + ACTIONS(3515), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142746,40 +141285,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [3985] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, + anon_sym_abstract, + [4333] = 16, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3523), 1, anon_sym_EQ, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_QMARK, + STATE(2909), 1, sym_type_arguments, + STATE(5414), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 14, - sym__automatic_semicolon, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142789,7 +141330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142805,10 +141346,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(3448), 17, + 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, @@ -142823,37 +141365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4076] = 16, - ACTIONS(3462), 1, + [4428] = 13, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(3486), 1, + ACTIONS(3489), 1, anon_sym_LBRACK, - ACTIONS(3492), 1, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3535), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3538), 1, anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3543), 1, - anon_sym_QMARK, - STATE(2908), 1, + STATE(3245), 1, sym_type_arguments, - STATE(5384), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3521), 2, + ACTIONS(3526), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3452), 13, + anon_sym_RBRACE, + ACTIONS(3501), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -142867,7 +141406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142883,7 +141422,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(3448), 18, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142902,41 +141441,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4171] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [4517] = 14, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + 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(161), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3445), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3439), 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(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142952,9 +141499,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(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142963,45 +141509,43 @@ 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, - [4258] = 12, - ACTIONS(149), 1, + [4608] = 14, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(901), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143011,7 +141555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143027,11 +141571,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(122), 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, @@ -143052,40 +141595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4345] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(962), 1, - anon_sym_EQ, - ACTIONS(968), 1, + [4699] = 6, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(842), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143101,12 +141619,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(122), 25, + ACTIONS(120), 21, 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, @@ -143125,30 +141641,47 @@ 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, - [4432] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(853), 1, + [4773] = 8, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(968), 1, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3548), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3544), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3439), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -143157,10 +141690,12 @@ 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143176,12 +141711,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(122), 25, + ACTIONS(3435), 21, 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, @@ -143200,31 +141733,27 @@ 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, - [4519] = 13, - ACTIONS(149), 1, + [4851] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(855), 1, - anon_sym_COLON, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143237,7 +141766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143253,7 +141782,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143278,44 +141807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4608] = 14, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [4937] = 6, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(908), 1, - anon_sym_of, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143331,10 +141831,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(122), 23, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143353,42 +141853,37 @@ 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, - [4699] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, + 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, - ACTIONS(167), 15, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143404,9 +141899,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(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143427,40 +141921,18 @@ 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, - [4785] = 15, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3551), 1, - anon_sym_RPAREN, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3556), 1, - anon_sym_QMARK, - STATE(2908), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3549), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3452), 13, + 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, @@ -143471,73 +141943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 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, - [4877] = 15, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3518), 1, + [5085] = 8, + ACTIONS(220), 1, anon_sym_EQ, - ACTIONS(3521), 1, - anon_sym_RPAREN, - ACTIONS(3556), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(750), 1, anon_sym_QMARK, - STATE(2908), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3558), 2, + ACTIONS(223), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3452), 13, + 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, @@ -143548,7 +141975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143564,7 +141991,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(3448), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143574,36 +142001,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, - [4969] = 12, - ACTIONS(149), 1, + [5163] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(973), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143616,7 +142046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143632,7 +142062,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143657,27 +142087,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5055] = 12, - ACTIONS(149), 1, + [5249] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(971), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143690,7 +142120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143706,7 +142136,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143731,109 +142161,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5141] = 8, - ACTIONS(223), 1, - anon_sym_EQ, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(226), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, + [5335] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3447), 1, anon_sym_DOT, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3455), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5219] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3561), 1, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(3563), 1, + ACTIONS(3552), 1, anon_sym_EQ_GT, - STATE(2886), 1, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 13, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143843,7 +142202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + anon_sym_implements, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143859,7 +142219,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(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143877,39 +142237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5309] = 8, - ACTIONS(3462), 1, + [5425] = 6, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3518), 1, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3452), 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143925,7 +142261,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(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143947,40 +142283,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5387] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, + 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, + 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, + 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143996,203 +142363,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 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, - [5473] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [5589] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, + ACTIONS(148), 1, 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(3565), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(981), 1, + anon_sym_EQ, + ACTIONS(3382), 1, 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, - [5541] = 3, + 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(3571), 16, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(158), 12, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3569), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [5609] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3464), 1, anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3458), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3454), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3452), 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144208,8 +142430,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(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144218,32 +142441,37 @@ 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, - [5699] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5675] = 8, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(857), 1, + ACTIONS(156), 1, + anon_sym_EQ_GT, + ACTIONS(750), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(855), 5, + ACTIONS(126), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -144259,7 +142487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144275,7 +142503,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(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144297,27 +142525,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5777] = 12, - ACTIONS(149), 1, + [5753] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(986), 1, + ACTIONS(977), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144330,7 +142558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144346,7 +142574,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -144371,30 +142599,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5863] = 12, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3492), 1, + [5839] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3539), 1, + ACTIONS(3558), 1, anon_sym_EQ, - STATE(2908), 1, + ACTIONS(3560), 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(3486), 2, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3489), 3, + anon_sym_extends, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3466), 15, + ACTIONS(3439), 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(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144410,24 +142657,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(3452), 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(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144445,42 +142675,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5949] = 9, - ACTIONS(223), 1, - anon_sym_EQ, - ACTIONS(229), 1, + [5929] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(969), 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(3515), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1668), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(161), 14, + ACTIONS(158), 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(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144496,8 +142724,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(122), 19, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144506,7 +142735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -144516,99 +142747,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6029] = 7, - ACTIONS(3577), 1, - anon_sym_class, - ACTIONS(3580), 1, - anon_sym_AT, - STATE(1248), 1, - aux_sym_export_statement_repeat1, - STATE(1267), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3575), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3573), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [6105] = 12, - ACTIONS(3492), 1, - anon_sym_DOT, + anon_sym_instanceof, + anon_sym_satisfies, + [6015] = 12, + ACTIONS(3480), 1, + anon_sym_EQ_GT, ACTIONS(3495), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, anon_sym_extends, - ACTIONS(3508), 1, + ACTIONS(3503), 1, anon_sym_EQ, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - STATE(2908), 1, + STATE(2909), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, + ACTIONS(3489), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3489), 3, + ACTIONS(3492), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144624,13 +142788,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(3452), 16, + ACTIONS(3439), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144641,7 +142805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144659,49 +142823,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6191] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(3585), 1, + [6101] = 12, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3562), 1, + sym_identifier, + ACTIONS(3564), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 13, - sym__automatic_semicolon, + STATE(4623), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(158), 11, sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, + 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144717,45 +142873,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(3448), 17, + 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_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6281] = 12, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6187] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(984), 1, + ACTIONS(967), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144768,7 +142930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144784,7 +142946,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -144809,31 +142971,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6367] = 12, - ACTIONS(159), 1, + [6273] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(975), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(908), 1, - anon_sym_of, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3587), 1, + ACTIONS(3382), 1, sym_identifier, - ACTIONS(3589), 1, - anon_sym_LBRACK, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4731), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 11, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144843,7 +143004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144859,10 +143020,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(122), 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, @@ -144883,15 +143045,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6453] = 6, - ACTIONS(229), 1, + [6359] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(979), 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(167), 15, + 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, @@ -144907,8 +143094,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(122), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144929,49 +143117,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(161), 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, - [6527] = 8, - ACTIONS(119), 1, + [6445] = 9, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(159), 1, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 5, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1683), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144983,7 +143154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144999,7 +143170,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(122), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145009,9 +143180,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, @@ -145021,40 +143190,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6605] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [6525] = 15, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(1040), 1, + 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(3523), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3526), 1, + anon_sym_RPAREN, + ACTIONS(3548), 1, + anon_sym_QMARK, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3492), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3567), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3439), 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(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145070,9 +143248,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(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145081,42 +143258,34 @@ 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, - [6691] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [6617] = 8, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(980), 1, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(836), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + 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, @@ -145125,10 +143294,12 @@ 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145144,9 +143315,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(122), 24, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145167,17 +143337,48 @@ 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, - [6777] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [6695] = 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(167), 15, + 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, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145193,7 +143394,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(122), 21, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145203,66 +143404,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(161), 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, - [6851] = 6, - ACTIONS(3580), 1, - anon_sym_AT, - STATE(1248), 1, - aux_sym_export_statement_repeat1, - STATE(1267), 1, - sym_decorator, + [6785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3575), 14, + ACTIONS(3572), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, + anon_sym_LT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3573), 42, + anon_sym_AT, + ACTIONS(3570), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145271,6 +143443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, + anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -145279,7 +143452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -145305,15 +143477,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6925] = 6, - ACTIONS(3462), 1, + anon_sym_abstract, + [6853] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3484), 1, + ACTIONS(814), 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(3466), 15, + 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, @@ -145329,8 +143527,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(3448), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145351,138 +143550,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3452), 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, - [6999] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, + [6939] = 15, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3592), 1, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(3546), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, + 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(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 13, + ACTIONS(3544), 2, + anon_sym_COMMA, + anon_sym_COLON, + 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(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 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, - [7089] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1042), 1, - anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 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_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145498,9 +143610,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(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145509,42 +143620,34 @@ 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, - [7175] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(976), 1, + [7031] = 8, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3579), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3577), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3439), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -145553,10 +143656,12 @@ 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145572,9 +143677,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(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145595,25 +143699,23 @@ 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, - [7261] = 8, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [7109] = 8, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(3598), 1, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3548), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 5, + ACTIONS(3567), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145629,7 +143731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145645,7 +143747,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145667,15 +143769,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7339] = 6, - ACTIONS(3450), 1, + [7187] = 12, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3511), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(3513), 1, anon_sym_EQ_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + 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, @@ -145691,72 +143808,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(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_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(3452), 21, + ACTIONS(3439), 16, + 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_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, - [7413] = 8, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145767,65 +143825,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 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, - [7491] = 3, + [7273] = 6, + ACTIONS(3585), 1, + anon_sym_AT, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 15, + ACTIONS(3583), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, + anon_sym_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), 43, + ACTIONS(3581), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145834,7 +143877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -145843,7 +143885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -145869,130 +143910,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [7558] = 7, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3598), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3596), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_abstract, + [7347] = 12, + ACTIONS(3489), 1, anon_sym_LBRACK, + ACTIONS(3495), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3498), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7633] = 4, - ACTIONS(3436), 1, - anon_sym_extends, + ACTIONS(3558), 1, + anon_sym_EQ, + ACTIONS(3560), 1, + anon_sym_EQ_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3492), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3422), 35, - sym__automatic_semicolon, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_COLON, 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, @@ -146002,24 +143950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7702] = 9, - ACTIONS(865), 1, - anon_sym_EQ, - ACTIONS(871), 1, - anon_sym_EQ_GT, - ACTIONS(1668), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3512), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146035,25 +143966,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(161), 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(122), 18, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146068,36 +143981,38 @@ 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, - [7781] = 11, - ACTIONS(119), 1, + [7432] = 13, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, - ACTIONS(3512), 1, + 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, + ACTIONS(3577), 1, + anon_sym_COLON, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1668), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3515), 2, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(3501), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146108,7 +144023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146124,7 +144039,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(122), 19, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146140,30 +144055,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, - [7864] = 7, - ACTIONS(3518), 1, + [7519] = 14, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + 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(3577), 1, + anon_sym_COLON, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 5, + ACTIONS(3492), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3588), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3452), 15, + ACTIONS(3439), 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, @@ -146174,7 +144098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146190,7 +144114,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(3448), 21, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146200,27 +144124,25 @@ 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, - [7939] = 4, + [7608] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3429), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(3420), 22, + anon_sym_PIPE_RBRACE, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146243,13 +144165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 33, + ACTIONS(3427), 32, 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, @@ -146277,89 +144198,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8008] = 4, + [7677] = 9, + ACTIONS(864), 1, + anon_sym_EQ, + ACTIONS(870), 1, + anon_sym_EQ_GT, + ACTIONS(1683), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3424), 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(3426), 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, - [8077] = 9, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(1668), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3512), 2, + ACTIONS(3505), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3515), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146375,13 +144231,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(161), 17, + ACTIONS(158), 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, @@ -146393,7 +144249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146412,158 +144268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8156] = 3, + [7756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3606), 15, + ACTIONS(3594), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3604), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [8223] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, anon_sym_LT, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(3610), 1, - anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 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(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 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, - [8312] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3614), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -146571,7 +144289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3612), 43, + ACTIONS(3592), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -146588,7 +144306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -146615,86 +144332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [8379] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(3585), 1, - anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + [7823] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(3429), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 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(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 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, - [8464] = 4, - ACTIONS(3438), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3424), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146717,15 +144363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 35, - sym__automatic_semicolon, + ACTIONS(3427), 33, 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, @@ -146753,47 +144397,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8533] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3462), 1, + [7892] = 8, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3596), 1, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(858), 1, anon_sym_COLON, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(3409), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3616), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3452), 13, + ACTIONS(158), 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, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146809,8 +144441,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(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146819,22 +144452,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8622] = 5, - ACTIONS(3450), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7969] = 5, + ACTIONS(3437), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146850,7 +144488,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146872,7 +144510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3452), 21, + ACTIONS(3439), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -146894,38 +144532,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8693] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, + [8040] = 12, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3620), 1, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, + STATE(2909), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(3501), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3492), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 12, + ACTIONS(3439), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146935,7 +144571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146951,7 +144587,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(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146969,102 +144605,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8782] = 8, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(879), 1, - anon_sym_COLON, - ACTIONS(3418), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + [8125] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3447), 1, anon_sym_DOT, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3455), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8859] = 11, - ACTIONS(223), 1, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(229), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, - ACTIONS(3512), 1, - anon_sym_LBRACK, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(226), 2, + ACTIONS(3441), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1668), 2, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3515), 2, + ACTIONS(3445), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(3439), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147074,7 +144646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147090,11 +144662,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(122), 19, + ACTIONS(3435), 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, @@ -147106,41 +144677,30 @@ 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, - [8942] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3484), 1, + [8214] = 7, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(3548), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 4, + ACTIONS(3544), 5, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3452), 11, + 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, @@ -147150,7 +144710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147166,7 +144726,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(3448), 18, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147176,25 +144736,25 @@ 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, - [9031] = 4, + [8289] = 4, + ACTIONS(3419), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3420), 22, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147217,12 +144777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 32, + 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, @@ -147250,85 +144813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9100] = 8, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(881), 1, - anon_sym_COLON, - ACTIONS(3418), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9177] = 4, + [8358] = 4, + ACTIONS(3429), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3424), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147351,12 +144842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 32, + ACTIONS(3427), 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, @@ -147384,21 +144878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9246] = 7, - ACTIONS(3546), 1, + [8427] = 7, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3556), 1, + ACTIONS(3548), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 5, + ACTIONS(3567), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147414,7 +144908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147430,7 +144924,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147452,44 +144946,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9321] = 3, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 15, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(223), 2, + 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, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3531), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, + anon_sym_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, + [8585] = 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_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -147516,35 +145082,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [9388] = 12, - ACTIONS(3492), 1, + [8652] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3592), 1, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(3606), 1, anon_sym_EQ_GT, - STATE(2908), 1, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3489), 3, + anon_sym_extends, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 15, + ACTIONS(3439), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147554,8 +145123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147571,7 +145139,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(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147589,36 +145157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9473] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, + [8741] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3561), 1, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3563), 1, + ACTIONS(3546), 1, anon_sym_EQ_GT, - STATE(2908), 1, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, + ACTIONS(3445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 15, + ACTIONS(3441), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3439), 11, 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, @@ -147628,7 +145197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147644,10 +145213,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(3448), 17, + 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, @@ -147662,24 +145232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9558] = 8, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, + [8830] = 7, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_COLON, - ACTIONS(3418), 1, - sym_identifier, + ACTIONS(3579), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3577), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147687,10 +145257,12 @@ 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147706,9 +145278,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(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147729,36 +145300,171 @@ 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, - [9635] = 13, - ACTIONS(3484), 1, + [8905] = 7, + ACTIONS(3585), 1, + anon_sym_AT, + ACTIONS(3608), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3583), 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(3581), 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, + [8980] = 9, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(3486), 1, + ACTIONS(1683), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3492), 1, + 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, + anon_sym_DOT, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(3552), 1, anon_sym_EQ_GT, - ACTIONS(3596), 1, - anon_sym_COLON, - STATE(2908), 1, + 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(3498), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3452), 13, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147770,7 +145476,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + anon_sym_implements, + 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_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, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(158), 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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147786,8 +145555,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(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147796,20 +145566,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9722] = 3, + anon_sym_instanceof, + anon_sym_satisfies, + [9221] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 22, + ACTIONS(3419), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147832,15 +145611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 35, - sym__automatic_semicolon, + ACTIONS(3417), 33, 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, @@ -147868,46 +145645,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9788] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [9290] = 8, + ACTIONS(712), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + 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(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3452), 11, + ACTIONS(158), 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, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147923,8 +145689,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(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147933,33 +145700,57 @@ 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, - [9876] = 9, - ACTIONS(948), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [9367] = 11, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3512), 1, + ACTIONS(750), 1, + anon_sym_QMARK, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, + ACTIONS(126), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1683), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147975,27 +145766,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(161), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 18, + 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, @@ -148011,11 +145786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9954] = 3, + [9450] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2479), 22, + ACTIONS(3419), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148038,15 +145818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2477), 35, - sym__automatic_semicolon, + ACTIONS(3417), 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, @@ -148074,27 +145851,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10020] = 11, - ACTIONS(229), 1, + [9519] = 11, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(834), 1, anon_sym_COLON, - ACTIONS(859), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(1668), 1, + ACTIONS(1683), 1, anon_sym_extends, - ACTIONS(3512), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 2, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3624), 2, + ACTIONS(3611), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148109,7 +145886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148125,7 +145902,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(122), 19, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148145,15 +145922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10102] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + [9601] = 6, + ACTIONS(712), 1, anon_sym_EQ_GT, + ACTIONS(814), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148169,14 +145946,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(3452), 19, + 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_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148189,7 +145966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148211,47 +145988,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10174] = 14, - ACTIONS(3456), 1, + [9673] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3517), 15, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, anon_sym_LT, - ACTIONS(3484), 1, + 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, anon_sym_EQ, - ACTIONS(3554), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(1683), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148267,7 +146084,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(3448), 17, + ACTIONS(158), 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, @@ -148282,36 +146116,34 @@ 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, - [10262] = 12, - ACTIONS(3450), 1, + [9817] = 10, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(1685), 1, + anon_sym_QMARK, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3489), 2, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 14, + ACTIONS(1683), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(158), 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, @@ -148322,7 +146154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148338,7 +146170,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(3448), 18, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148354,81 +146186,15 @@ 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, - [10346] = 7, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(881), 1, - anon_sym_COLON, + [9897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10420] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3420), 22, + ACTIONS(3431), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148451,7 +146217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 35, + ACTIONS(3433), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148487,58 +146253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10486] = 10, - ACTIONS(223), 1, - anon_sym_EQ, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(1670), 1, - anon_sym_QMARK, - ACTIONS(3512), 1, - anon_sym_LBRACK, + [9963] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1668), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(2456), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148547,7 +146268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148557,15 +146280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10566] = 6, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(2454), 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, @@ -148581,17 +146307,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(161), 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, @@ -148601,37 +146316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10638] = 6, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, + [10029] = 5, + ACTIONS(3485), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148647,7 +146338,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(161), 19, + ACTIONS(3439), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148655,6 +146346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148667,7 +146359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148689,15 +146381,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10710] = 6, - ACTIONS(865), 1, - anon_sym_EQ, - ACTIONS(871), 1, + [10099] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3617), 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(3615), 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, + [10165] = 7, + ACTIONS(858), 1, + anon_sym_COLON, + ACTIONS(3480), 1, anon_sym_EQ_GT, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148713,14 +146470,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(161), 19, + ACTIONS(3439), 18, 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, @@ -148733,7 +146489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148755,17 +146511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10782] = 7, - ACTIONS(717), 1, + [10239] = 7, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(877), 1, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(879), 1, + ACTIONS(858), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148781,7 +146537,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(161), 18, + ACTIONS(158), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148800,75 +146556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10856] = 8, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_COLON, - ACTIONS(859), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(885), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148890,11 +146578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10932] = 3, + [10313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3428), 22, + ACTIONS(3421), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148917,7 +146605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3430), 35, + ACTIONS(3423), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148953,15 +146641,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10998] = 6, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3484), 1, - anon_sym_EQ, + [10379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + 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, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_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, @@ -148977,17 +146695,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(3452), 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, @@ -148997,33 +146704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11070] = 3, + [10445] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149046,7 +146731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2485), 35, + ACTIONS(3427), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149082,17 +146767,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11136] = 7, - ACTIONS(881), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, + [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, + anon_sym_EQ_GT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149108,101 +146823,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 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(3448), 21, + ACTIONS(3435), 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, - [11210] = 3, + [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(3440), 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(3442), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(883), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(158), 15, + 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -149212,17 +146871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11276] = 7, - ACTIONS(879), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149238,26 +146887,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(3452), 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(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149279,24 +146909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11350] = 9, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(936), 1, + [10675] = 6, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(3513), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149312,12 +146933,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(161), 16, + ACTIONS(3439), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149329,16 +146953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + 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, @@ -149348,11 +146975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11428] = 3, + [10747] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3432), 22, + ACTIONS(3457), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149375,7 +147002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3434), 35, + ACTIONS(3459), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149411,53 +147038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11494] = 7, - ACTIONS(883), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, - anon_sym_EQ, + [10813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 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(3448), 21, + ACTIONS(3461), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149478,17 +147065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11568] = 7, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(3463), 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, @@ -149504,15 +147092,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(161), 18, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10879] = 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, + 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_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149523,7 +147138,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -149533,23 +147164,83 @@ 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, - [11642] = 3, + [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(3444), 22, + ACTIONS(2452), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149572,7 +147263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3446), 35, + ACTIONS(2450), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149608,13 +147299,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11708] = 3, + [11095] = 6, + ACTIONS(864), 1, + anon_sym_EQ, + ACTIONS(870), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3414), 22, + 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, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149635,18 +147365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3416), 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, + [11167] = 6, + ACTIONS(3480), 1, + anon_sym_EQ_GT, + ACTIONS(3503), 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, @@ -149662,38 +147389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11774] = 10, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(855), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3515), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1668), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 14, + 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, @@ -149705,23 +147409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149731,7 +147419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -149741,15 +147431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11854] = 6, - ACTIONS(3508), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + [11239] = 6, + ACTIONS(712), 1, anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149765,14 +147455,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(3452), 19, + 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_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149785,7 +147475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149807,15 +147497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11926] = 6, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, + [11311] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(870), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149831,14 +147521,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(3452), 19, + 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_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149851,7 +147541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149873,45 +147563,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11998] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3608), 1, + [11383] = 9, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(1683), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(3505), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3489), 3, + anon_sym_LBRACK, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149927,7 +147596,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(3448), 17, + ACTIONS(158), 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, @@ -149942,16 +147628,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12082] = 5, - ACTIONS(3484), 1, + [11461] = 9, + ACTIONS(925), 1, anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(1683), 2, + anon_sym_COMMA, + anon_sym_extends, + 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, @@ -149967,16 +147665,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(3452), 20, - sym__automatic_semicolon, + ACTIONS(158), 16, sym__ternary_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_LT_EQ, @@ -149988,19 +147682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 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, @@ -150010,45 +147701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12152] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(3622), 1, + [11539] = 6, + ACTIONS(3480), 1, anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(3485), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 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(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150064,33 +147725,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(3448), 17, + 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12236] = 6, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(871), 1, + [11611] = 7, + ACTIONS(856), 1, + anon_sym_COLON, + ACTIONS(3480), 1, anon_sym_EQ_GT, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150106,14 +147793,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(161), 19, + ACTIONS(3439), 18, 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, @@ -150126,7 +147812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150148,24 +147834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12308] = 9, - ACTIONS(916), 1, - anon_sym_EQ, - ACTIONS(922), 1, + [11685] = 7, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3480), 1, anon_sym_EQ_GT, - ACTIONS(1668), 1, - anon_sym_extends, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150181,11 +147860,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(161), 16, + ACTIONS(3439), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150197,17 +147879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 18, + 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, @@ -150217,17 +147901,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12386] = 5, - ACTIONS(3438), 1, - anon_sym_extends, - ACTIONS(3628), 1, - anon_sym_QMARK, + [11759] = 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(3424), 22, + 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, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150248,15 +147968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 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, + [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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150272,6 +147992,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(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, @@ -150281,19 +148012,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12455] = 8, - ACTIONS(229), 1, + 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, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(3630), 1, - anon_sym_of, + ACTIONS(856), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150309,7 +148060,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(161), 17, + ACTIONS(158), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -150327,9 +148079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150348,24 +148101,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12530] = 7, - ACTIONS(3450), 1, + [11979] = 12, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3632), 3, + ACTIONS(3501), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3452), 15, + anon_sym_extends, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150376,7 +148139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150392,67 +148155,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(3448), 21, + ACTIONS(3435), 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, - [12603] = 4, + [12063] = 10, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(814), 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(3436), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3420), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3508), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3422), 32, - sym__automatic_semicolon, + 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_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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150468,25 +148223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12670] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3438), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3424), 22, + ACTIONS(120), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150495,9 +148233,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, @@ -150507,65 +148243,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + [12143] = 12, + ACTIONS(3489), 1, anon_sym_LBRACK, + ACTIONS(3495), 1, 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, - [12737] = 7, - ACTIONS(948), 1, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(3418), 1, - sym_identifier, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150581,54 +148297,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 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, - [12810] = 9, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [12227] = 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(1668), 1, - anon_sym_extends, + ACTIONS(3546), 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(3512), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3515), 2, + ACTIONS(3445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 15, + ACTIONS(3441), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3439), 11, 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, @@ -150638,7 +148354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150654,7 +148370,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(122), 19, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150670,37 +148386,95 @@ 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, - [12887] = 12, - ACTIONS(3484), 1, + [12315] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3411), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3486), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3413), 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(3492), 1, anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3554), 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, + [12381] = 9, + ACTIONS(899), 1, anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(1683), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3489), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 13, + 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, @@ -150711,7 +148485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150727,7 +148501,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(3448), 17, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150742,54 +148516,21 @@ 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, - [12970] = 6, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(922), 1, - anon_sym_EQ_GT, + [12458] = 5, + ACTIONS(3419), 1, + anon_sym_extends, + ACTIONS(3623), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(3415), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150810,13 +148551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13041] = 5, - ACTIONS(3508), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, + 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, @@ -150832,17 +148575,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(3452), 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, @@ -150852,37 +148584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13110] = 5, - ACTIONS(3436), 1, + [12527] = 5, + ACTIONS(3429), 1, anon_sym_extends, - ACTIONS(3635), 1, + ACTIONS(3625), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150905,7 +148615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 32, + ACTIONS(3427), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -150938,23 +148648,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13179] = 7, - ACTIONS(3450), 1, + [12596] = 9, + ACTIONS(156), 1, + anon_sym_EQ_GT, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, + ACTIONS(1683), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3632), 3, - anon_sym_COMMA, + ACTIONS(3505), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3452), 15, + anon_sym_LBRACK, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(158), 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, @@ -150966,7 +148680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150982,7 +148696,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(3448), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150992,9 +148706,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, @@ -151004,15 +148716,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13252] = 6, - ACTIONS(916), 1, + [12673] = 7, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(922), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, + ACTIONS(3627), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(158), 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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151028,27 +148757,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(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -151069,65 +148780,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13323] = 9, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_LBRACK, + anon_sym_instanceof, + anon_sym_satisfies, + [12746] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, + ACTIONS(3429), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(3425), 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, @@ -151137,19 +148812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13400] = 8, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151165,15 +148836,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(3452), 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, @@ -151183,34 +148845,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 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, - [13475] = 5, - ACTIONS(3539), 1, + [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(3466), 15, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 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(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151226,70 +148898,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 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(3448), 21, + ACTIONS(3435), 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, - [13544] = 9, - ACTIONS(962), 1, + [12896] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(968), 1, - anon_sym_EQ_GT, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(3577), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, + ACTIONS(3629), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151301,7 +148944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151317,16 +148960,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(122), 18, + 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, @@ -151336,15 +148982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13621] = 6, - ACTIONS(3484), 1, + [12969] = 6, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151360,7 +149006,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(3452), 18, + ACTIONS(158), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -151379,7 +149025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151401,29 +149047,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13692] = 10, - ACTIONS(3549), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_RBRACK, - ACTIONS(3610), 1, - anon_sym_EQ_GT, - ACTIONS(3642), 1, - anon_sym_EQ, - ACTIONS(3645), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_COLON, + [13040] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_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), 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, @@ -151433,7 +149110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + [13107] = 8, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3449), 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(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151449,7 +149138,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(3448), 20, + ACTIONS(3439), 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(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -151470,21 +149177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13771] = 9, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(226), 1, + [13182] = 9, + ACTIONS(126), 1, anon_sym_RBRACK, - ACTIONS(892), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(897), 1, + ACTIONS(895), 1, anon_sym_COLON, - ACTIONS(901), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151500,7 +149207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151516,7 +149223,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(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151538,15 +149245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13848] = 6, - ACTIONS(3592), 1, + [13259] = 6, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151562,7 +149269,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(3452), 18, + ACTIONS(158), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -151581,7 +149288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151603,17 +149310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13919] = 7, - ACTIONS(948), 1, + [13330] = 7, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3649), 1, + ACTIONS(3409), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -151628,7 +149335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151644,7 +149351,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(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -151669,44 +149376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [13992] = 4, + [13403] = 5, + ACTIONS(3511), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3424), 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(3426), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151722,6 +149398,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(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, @@ -151731,19 +149418,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14058] = 8, - ACTIONS(3549), 1, + 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(3558), 1, + ACTIONS(3567), 1, anon_sym_RBRACK, - ACTIONS(3610), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, - ACTIONS(3642), 1, + ACTIONS(3637), 1, anon_sym_EQ, + ACTIONS(3640), 1, + anon_sym_in, + ACTIONS(3642), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151759,7 +149472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151775,10 +149488,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(3448), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151797,15 +149509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14132] = 6, - ACTIONS(853), 1, + [13551] = 5, + ACTIONS(3503), 1, anon_sym_EQ, - ACTIONS(954), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151821,10 +149531,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(161), 17, + 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, @@ -151839,7 +149551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151861,106 +149573,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14202] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, + [13620] = 9, + ACTIONS(955), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3251), 2, + ACTIONS(1683), 2, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3259), 2, + 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_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(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, - ACTIONS(3275), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3902), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [14322] = 7, - ACTIONS(3450), 1, + anon_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, anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + ACTIONS(3552), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151976,12 +149665,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(3452), 17, + ACTIONS(3439), 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, @@ -151994,9 +149683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + anon_sym_implements, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152015,15 +149706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14394] = 6, - ACTIONS(853), 1, + [13768] = 6, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(910), 1, + ACTIONS(3552), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152039,12 +149730,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(161), 17, + ACTIONS(3439), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152057,7 +149748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152079,39 +149771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14464] = 9, - ACTIONS(159), 1, + [13839] = 8, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(3644), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 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(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152127,16 +149799,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(122), 18, + ACTIONS(158), 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_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -152146,36 +149838,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14540] = 6, - ACTIONS(3583), 1, + [13914] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3585), 1, + ACTIONS(3449), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, - sym__automatic_semicolon, + 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_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152188,7 +149866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + 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, @@ -152210,193 +149904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14610] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3675), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3677), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3872), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [14730] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3679), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3681), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3791), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [14850] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3585), 1, + [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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152412,13 +149930,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(3452), 17, - sym__automatic_semicolon, + ACTIONS(158), 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, @@ -152430,7 +149947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152452,17 +149969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14920] = 7, - ACTIONS(897), 1, - anon_sym_COLON, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [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(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152478,7 +149997,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(161), 16, + ACTIONS(3439), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152495,10 +150014,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152517,83 +150035,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14992] = 31, - ACTIONS(99), 1, + [14133] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3307), 2, + ACTIONS(3652), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3323), 2, + ACTIONS(3654), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3907), 6, + STATE(3820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152606,17 +150124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15112] = 7, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [14253] = 6, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(930), 1, - anon_sym_COLON, + ACTIONS(3556), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152632,12 +150148,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(161), 16, + ACTIONS(3439), 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, @@ -152649,7 +150166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152671,19 +150188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15184] = 8, - ACTIONS(3608), 1, + [14323] = 6, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_in, - ACTIONS(3683), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152699,12 +150212,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(3452), 16, + ACTIONS(3439), 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, @@ -152716,9 +150230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152737,15 +150252,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15258] = 6, - ACTIONS(948), 1, - anon_sym_EQ, - ACTIONS(954), 1, + [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(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152761,13 +150278,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(161), 17, - sym__automatic_semicolon, + ACTIONS(158), 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, @@ -152779,7 +150295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152801,103 +150317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15328] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3685), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3687), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3842), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [15448] = 4, + [14465] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 2, + ACTIONS(3419), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3420), 22, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -152920,7 +150347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 31, + ACTIONS(3417), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152952,23 +150379,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15514] = 8, - ACTIONS(3608), 1, + [14531] = 8, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_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(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(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(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3878), 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, + [14725] = 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(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(3081), 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, + [14845] = 8, + ACTIONS(3596), 1, + anon_sym_EQ, + ACTIONS(3598), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_in, + ACTIONS(3682), 1, + anon_sym_COLON, + 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, @@ -152980,7 +150651,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(3452), 16, + ACTIONS(3439), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152997,7 +150668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -153018,15 +150689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15588] = 6, - ACTIONS(3561), 1, + [14919] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3563), 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(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153042,12 +150715,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(3452), 17, + ACTIONS(3439), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153060,10 +150733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153082,19 +150754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15658] = 8, - ACTIONS(128), 1, + [14991] = 8, + ACTIONS(3544), 1, anon_sym_COMMA, - ACTIONS(226), 1, + ACTIONS(3567), 1, anon_sym_RBRACK, - ACTIONS(892), 1, - anon_sym_EQ, - ACTIONS(901), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, + ACTIONS(3637), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153110,7 +150782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153126,8 +150798,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + 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, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -153148,15 +150850,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15732] = 6, - ACTIONS(3484), 1, + 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, anon_sym_EQ, - ACTIONS(3563), 1, + ACTIONS(3560), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153172,7 +150995,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(3452), 17, + ACTIONS(3439), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -153190,7 +151013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153212,13 +151035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15802] = 5, - ACTIONS(3592), 1, + [15321] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153234,12 +151059,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(3452), 18, + ACTIONS(158), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153252,8 +151077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153275,15 +151099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15870] = 6, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(936), 1, + [15391] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153299,12 +151123,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(161), 17, + ACTIONS(158), 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, @@ -153317,7 +151141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153339,83 +151163,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15940] = 31, - ACTIONS(99), 1, + [15461] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3689), 2, + ACTIONS(3684), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3691), 2, + ACTIONS(3686), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3818), 6, + STATE(3780), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153428,15 +151252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16060] = 6, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [15581] = 6, + ACTIONS(3485), 1, anon_sym_EQ, + ACTIONS(3560), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153452,12 +151276,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(161), 16, + ACTIONS(3439), 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, @@ -153469,7 +151294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153491,33 +151316,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16129] = 7, - ACTIONS(3549), 1, + [15651] = 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(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3322), 2, anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_RBRACK, - ACTIONS(3642), 1, + 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(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3903), 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, + [15771] = 6, + ACTIONS(925), 1, anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 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(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153533,7 +151429,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(3448), 21, + ACTIONS(158), 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, @@ -153555,15 +151469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16200] = 6, - ACTIONS(853), 1, + [15841] = 5, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(901), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153579,12 +151491,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(161), 16, + ACTIONS(3439), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153596,7 +151509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153618,15 +151532,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16269] = 6, - ACTIONS(962), 1, - anon_sym_EQ, - ACTIONS(968), 1, + [15909] = 9, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153642,36 +151580,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(161), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -153681,15 +151599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16338] = 6, - ACTIONS(853), 1, + [15985] = 6, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(968), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153705,11 +151623,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(161), 16, + ACTIONS(158), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153722,7 +151641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153744,13 +151663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16407] = 5, - ACTIONS(3583), 1, + [16055] = 6, + ACTIONS(3604), 1, anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153766,12 +151687,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(3452), 17, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -153784,7 +151704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153806,33 +151726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16474] = 7, - ACTIONS(159), 1, + [16124] = 6, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(903), 1, anon_sym_EQ, - ACTIONS(855), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153848,45 +151750,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(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16545] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(3630), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, + 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, @@ -153898,25 +151767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153935,19 +151789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16618] = 8, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, - anon_sym_EQ_GT, + [16193] = 7, + ACTIONS(3544), 1, + anon_sym_COMMA, + ACTIONS(3567), 1, + anon_sym_RBRACK, ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153963,7 +151815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153979,9 +151831,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(3448), 20, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154000,13 +151853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16691] = 5, - ACTIONS(3561), 1, + [16264] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154022,13 +151877,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(3452), 17, + ACTIONS(158), 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, @@ -154040,7 +151894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154062,15 +151916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16758] = 6, - ACTIONS(3608), 1, + [16333] = 6, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154086,12 +151940,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(3452), 16, + ACTIONS(158), 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, @@ -154103,7 +151957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154125,15 +151979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16827] = 6, - ACTIONS(3484), 1, + [16402] = 6, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154149,12 +152003,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(3452), 16, + ACTIONS(158), 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, @@ -154166,7 +152020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154188,15 +152042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16896] = 6, - ACTIONS(3620), 1, + [16471] = 5, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154212,11 +152064,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(3452), 16, + ACTIONS(3439), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154229,7 +152082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154251,15 +152104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16965] = 6, - ACTIONS(3484), 1, + [16538] = 5, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154275,11 +152126,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(3452), 16, + ACTIONS(3439), 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, @@ -154292,7 +152144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154314,15 +152166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17034] = 6, - ACTIONS(3554), 1, + [16605] = 7, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3693), 1, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(834), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154338,7 +152192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154354,7 +152208,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(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154376,31 +152230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17102] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1040), 1, + [16676] = 6, + ACTIONS(3596), 1, anon_sym_EQ, + ACTIONS(3598), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154416,41 +152254,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(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17170] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3695), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3452), 15, + 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, @@ -154462,23 +152271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154500,187 +152293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17238] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3697), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [17354] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3699), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [17470] = 6, - ACTIONS(3484), 1, + [16745] = 8, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(3644), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154696,7 +152321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154712,10 +152337,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(3448), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154734,192 +152358,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17538] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, + [16818] = 8, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3546), 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(3259), 2, + 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), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3701), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [17654] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16891] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3598), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + 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, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3703), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [17770] = 7, - ACTIONS(3484), 1, + anon_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(3485), 1, anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + ACTIONS(3606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + 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_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154932,7 +152527,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + 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, + [17029] = 5, + ACTIONS(3604), 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, @@ -154948,9 +152571,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(3448), 20, + ACTIONS(3439), 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(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154969,80 +152610,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17840] = 30, - ACTIONS(99), 1, + [17095] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3705), 2, + ACTIONS(3688), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155055,80 +152696,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17956] = 30, - ACTIONS(99), 1, + [17211] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3707), 2, + ACTIONS(3690), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155141,204 +152782,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18072] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3709), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3452), 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(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18140] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(980), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18208] = 30, - ACTIONS(99), 1, + [17327] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3711), 2, + ACTIONS(3692), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155351,80 +152868,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18324] = 30, - ACTIONS(99), 1, + [17443] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3713), 2, + ACTIONS(3694), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155437,80 +152954,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18440] = 30, - ACTIONS(99), 1, + [17559] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(981), 1, + anon_sym_EQ, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17627] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3715), 2, + ACTIONS(3696), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155523,15 +153102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18556] = 6, - ACTIONS(3554), 1, + [17743] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3717), 1, + ACTIONS(967), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155547,7 +153126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155563,7 +153142,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(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155585,15 +153164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18624] = 6, - ACTIONS(159), 1, + [17811] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(973), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155609,7 +153188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155625,7 +153204,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(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155647,15 +153226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18692] = 6, - ACTIONS(159), 1, + [17879] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1042), 1, + ACTIONS(969), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155671,7 +153250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155687,7 +153266,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(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155709,15 +153288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18760] = 6, - ACTIONS(159), 1, + [17947] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(986), 1, + ACTIONS(3698), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155733,7 +153312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155749,7 +153328,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(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155771,166 +153350,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18828] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, + [18015] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(979), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 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, - [18944] = 30, - ACTIONS(99), 1, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18083] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3721), 2, + ACTIONS(3700), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155943,142 +153498,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19060] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19128] = 30, - ACTIONS(99), 1, + [18199] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3723), 2, + ACTIONS(3702), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156091,15 +153584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19244] = 6, - ACTIONS(3554), 1, + [18315] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3725), 1, + ACTIONS(971), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156115,7 +153608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156131,7 +153624,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(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156153,15 +153646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19312] = 6, - ACTIONS(3554), 1, + [18383] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(3727), 1, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156177,7 +153670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156193,7 +153686,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156215,15 +153708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19380] = 6, - ACTIONS(159), 1, + [18451] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(976), 1, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156239,7 +153732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156255,7 +153748,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(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156277,15 +153770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19448] = 6, - ACTIONS(3554), 1, + [18519] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3729), 1, + ACTIONS(814), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156301,7 +153794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156317,7 +153810,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(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156339,15 +153832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19516] = 6, - ACTIONS(159), 1, + [18587] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(984), 1, + ACTIONS(1035), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156363,7 +153856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156379,7 +153872,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(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156401,15 +153894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19584] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [18655] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, + ACTIONS(3708), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156425,7 +153918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156441,7 +153934,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156463,80 +153956,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19652] = 30, - ACTIONS(99), 1, + [18723] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3731), 2, + ACTIONS(3710), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156549,137 +154042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19768] = 5, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 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(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19834] = 5, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 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(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19900] = 6, - ACTIONS(159), 1, + [18839] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156695,7 +154066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156711,7 +154082,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(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156733,142 +154104,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19968] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3733), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3452), 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(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20036] = 30, - ACTIONS(99), 1, + [18907] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3735), 2, + ACTIONS(3714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156881,80 +154190,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20152] = 30, - ACTIONS(99), 1, + [19023] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3737), 2, + ACTIONS(3716), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156967,15 +154276,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20268] = 6, - ACTIONS(159), 1, + [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, anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156991,7 +154361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157007,7 +154377,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(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157029,80 +154399,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20336] = 30, - ACTIONS(99), 1, + [19273] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3739), 2, + ACTIONS(3720), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157115,80 +154485,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20452] = 30, - ACTIONS(99), 1, + [19389] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3577), 1, + anon_sym_COLON, + 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, + [19457] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(975), 1, + anon_sym_EQ, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19525] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3741), 2, + ACTIONS(3722), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157201,80 +154695,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20568] = 30, - ACTIONS(99), 1, + [19641] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3743), 2, + ACTIONS(3724), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157287,15 +154781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20684] = 6, - ACTIONS(3554), 1, + [19757] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(977), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157311,7 +154805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157327,7 +154821,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(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157349,13 +154843,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20752] = 5, - ACTIONS(3695), 1, + [19825] = 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(3726), 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, + [19941] = 7, + 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(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157371,7 +154955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157387,10 +154971,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(3448), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157409,13 +154992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20817] = 5, - ACTIONS(3727), 1, + [20011] = 6, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3728), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157431,7 +155016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157447,7 +155032,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157469,13 +155054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20882] = 5, - ACTIONS(3733), 1, + [20079] = 6, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157491,7 +155078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157507,7 +155094,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157529,73 +155116,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20947] = 5, - ACTIONS(3725), 1, - anon_sym_EQ, + [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(3452), 15, - sym__ternary_qmark, - anon_sym_as, + 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, + 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, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 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, + 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, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21012] = 5, - ACTIONS(3729), 1, + 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(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, + [20379] = 6, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157611,7 +155312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157627,7 +155328,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157649,13 +155350,547 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21077] = 5, - ACTIONS(3709), 1, - anon_sym_EQ, + [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(3452), 15, + 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, + 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(3740), 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, + [20679] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + 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, + [20747] = 5, + ACTIONS(3698), 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, + [20812] = 5, + ACTIONS(3736), 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, + [20877] = 5, + 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, + [20942] = 5, + ACTIONS(3728), 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, + [21007] = 5, + ACTIONS(3718), 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, + [21072] = 5, + ACTIONS(3708), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157671,7 +155906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157687,7 +155922,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157709,13 +155944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21142] = 5, - ACTIONS(3693), 1, + [21137] = 5, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157731,7 +155966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157747,7 +155982,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157769,13 +156004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21207] = 5, - ACTIONS(3717), 1, + [21202] = 5, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157791,7 +156026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157807,7 +156042,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157829,13 +156064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21272] = 5, - ACTIONS(3745), 1, + [21267] = 5, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157851,7 +156086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157867,7 +156102,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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157889,77 +156124,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21337] = 29, - ACTIONS(99), 1, + [21332] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3887), 6, + STATE(3828), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157972,77 +156207,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21449] = 29, - ACTIONS(99), 1, + [21444] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3867), 6, + STATE(3830), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158055,77 +156290,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21561] = 29, - ACTIONS(99), 1, + [21556] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3796), 6, + STATE(3886), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158138,77 +156373,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21673] = 29, - ACTIONS(99), 1, + [21668] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3826), 6, + STATE(3920), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158221,77 +156456,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21785] = 29, - ACTIONS(99), 1, + [21780] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(3871), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158304,77 +156539,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21897] = 29, - ACTIONS(99), 1, + [21892] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3915), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158387,77 +156622,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22009] = 29, - ACTIONS(99), 1, + [22004] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3837), 6, + STATE(3769), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158470,157 +156705,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22121] = 29, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3747), 1, - anon_sym_STAR, - ACTIONS(3749), 1, - anon_sym_RBRACE, - ACTIONS(3751), 1, - anon_sym_SEMI, - ACTIONS(3753), 1, - anon_sym_async, - ACTIONS(3757), 1, + [22116] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(3759), 1, - anon_sym_static, - ACTIONS(3761), 1, - anon_sym_readonly, - ACTIONS(3765), 1, + 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(3767), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(3769), 1, - anon_sym_accessor, - STATE(2396), 1, - aux_sym_export_statement_repeat1, - STATE(2657), 1, - sym_method_definition, - STATE(2682), 1, - sym_accessibility_modifier, - STATE(2748), 1, + 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(2770), 1, - sym_override_modifier, - STATE(4566), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3755), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3763), 2, - anon_sym_get, - anon_sym_set, - STATE(1441), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3022), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5176), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3651), 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, - [22232] = 29, - ACTIONS(1588), 1, + 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, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3764), 1, + anon_sym_RBRACE, + ACTIONS(3766), 1, + anon_sym_SEMI, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3771), 1, - anon_sym_RBRACE, - ACTIONS(3773), 1, - anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1449), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158634,161 +156873,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22343] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - anon_sym_namespace, - ACTIONS(2359), 1, - anon_sym_import, - ACTIONS(2361), 1, - anon_sym_var, - ACTIONS(2363), 1, - anon_sym_let, - ACTIONS(2365), 1, - anon_sym_const, - ACTIONS(2367), 1, - anon_sym_class, - ACTIONS(2369), 1, - anon_sym_async, - ACTIONS(2371), 1, - anon_sym_function, - ACTIONS(2373), 1, - anon_sym_declare, - ACTIONS(2377), 1, - anon_sym_abstract, - ACTIONS(2381), 1, - anon_sym_interface, - ACTIONS(2383), 1, - anon_sym_enum, - ACTIONS(3775), 1, - anon_sym_STAR, - ACTIONS(3777), 1, - anon_sym_default, - ACTIONS(3779), 1, - anon_sym_type, - ACTIONS(3781), 1, - anon_sym_EQ, - ACTIONS(3783), 1, - anon_sym_as, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(3793), 1, - anon_sym_module, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4424), 1, - sym_declaration, - STATE(4425), 1, - sym_internal_module, - STATE(4558), 1, - sym_export_clause, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - STATE(5235), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4422), 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, - [22462] = 29, - ACTIONS(1588), 1, + [22346] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3795), 1, + ACTIONS(3786), 1, anon_sym_RBRACE, - ACTIONS(3797), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1450), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158802,161 +156955,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22573] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - anon_sym_namespace, - ACTIONS(2359), 1, - anon_sym_import, - ACTIONS(2361), 1, - anon_sym_var, - ACTIONS(2363), 1, - anon_sym_let, - ACTIONS(2365), 1, - anon_sym_const, - ACTIONS(2367), 1, - anon_sym_class, - ACTIONS(2369), 1, - anon_sym_async, - ACTIONS(2371), 1, - anon_sym_function, - ACTIONS(2373), 1, - anon_sym_declare, - ACTIONS(2377), 1, - anon_sym_abstract, - ACTIONS(2381), 1, - anon_sym_interface, - ACTIONS(2383), 1, - anon_sym_enum, - ACTIONS(3775), 1, - anon_sym_STAR, - ACTIONS(3777), 1, - anon_sym_default, - ACTIONS(3779), 1, - anon_sym_type, - ACTIONS(3781), 1, - anon_sym_EQ, - ACTIONS(3783), 1, - anon_sym_as, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3793), 1, - anon_sym_module, - ACTIONS(3799), 1, - anon_sym_RBRACE, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4424), 1, - sym_declaration, - STATE(4425), 1, - sym_internal_module, - STATE(4558), 1, - sym_export_clause, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - STATE(5235), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4422), 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, - [22692] = 29, - ACTIONS(1588), 1, + [22457] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3802), 1, - anon_sym_RBRACE, - ACTIONS(3804), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - STATE(2396), 1, + ACTIONS(3790), 1, + anon_sym_RBRACE, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1453), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158970,75 +157037,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22803] = 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, + [22568] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(3823), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + 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(3835), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3838), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3841), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3847), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3853), 1, - anon_sym_override, - ACTIONS(3856), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3859), 1, + ACTIONS(3784), 1, anon_sym_accessor, - STATE(2396), 1, + ACTIONS(3792), 1, + anon_sym_RBRACE, + ACTIONS(3794), 1, + anon_sym_SEMI, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3829), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3832), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3844), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1455), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3850), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3806), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159052,75 +157119,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22914] = 29, - ACTIONS(1588), 1, + [22679] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3862), 1, + ACTIONS(3796), 1, anon_sym_RBRACE, - ACTIONS(3864), 1, + ACTIONS(3798), 1, anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1455), 2, + STATE(1442), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159134,71 +157201,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23025] = 33, - ACTIONS(99), 1, + [22790] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2245), 1, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - ACTIONS(3866), 1, + ACTIONS(3800), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(4679), 1, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + 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, + [22909] = 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(3803), 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(5235), 1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159206,7 +157359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159220,75 +157373,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23144] = 29, - ACTIONS(1588), 1, + [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(1590), 1, + ACTIONS(3823), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3747), 1, - anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3826), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3835), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3838), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3841), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3847), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3853), 1, + anon_sym_override, + ACTIONS(3856), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3859), 1, anon_sym_accessor, - ACTIONS(3869), 1, - anon_sym_RBRACE, - ACTIONS(3871), 1, - anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3832), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3844), 2, anon_sym_get, anon_sym_set, - STATE(1451), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3850), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3806), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159302,75 +157455,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23255] = 29, - ACTIONS(1588), 1, + [23139] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - ACTIONS(3873), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159384,75 +157537,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23366] = 29, - ACTIONS(1588), 1, + [23250] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, - anon_sym_SEMI, - ACTIONS(3875), 1, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2396), 1, + ACTIONS(3866), 1, + anon_sym_SEMI, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1452), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159466,71 +157619,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23477] = 33, - ACTIONS(99), 1, + [23361] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2245), 1, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - ACTIONS(3877), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5235), 1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159538,7 +157691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159552,75 +157705,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23596] = 29, - ACTIONS(1588), 1, + [23480] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - ACTIONS(3880), 1, + ACTIONS(3871), 1, anon_sym_RBRACE, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159634,71 +157787,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23707] = 33, - ACTIONS(99), 1, + [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(2245), 1, + 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(3873), 1, + anon_sym_RBRACE, + ACTIONS(3875), 1, + anon_sym_SEMI, + 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(1443), 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, + [23702] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - ACTIONS(3882), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5235), 1, + STATE(5191), 1, + aux_sym_object_repeat1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159706,7 +157941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159720,75 +157955,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23826] = 29, - ACTIONS(1588), 1, + [23821] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - ACTIONS(3885), 1, + ACTIONS(3880), 1, anon_sym_RBRACE, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159802,69 +158037,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23937] = 25, - ACTIONS(235), 1, + [23932] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3889), 1, + ACTIONS(3884), 1, anon_sym_RBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3893), 1, + ACTIONS(3888), 1, anon_sym_async, - ACTIONS(3897), 1, + ACTIONS(3892), 1, anon_sym_static, - ACTIONS(3899), 1, + ACTIONS(3894), 1, anon_sym_readonly, - ACTIONS(3905), 1, + ACTIONS(3900), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3901), 2, + ACTIONS(3896), 2, anon_sym_get, anon_sym_set, - ACTIONS(3903), 3, + ACTIONS(3898), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, + STATE(4841), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3887), 14, + ACTIONS(3882), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159879,69 +158114,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24039] = 25, - ACTIONS(235), 1, + [24034] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3909), 1, + ACTIONS(3904), 1, anon_sym_RBRACE, - ACTIONS(3911), 1, + ACTIONS(3906), 1, anon_sym_async, - ACTIONS(3913), 1, + ACTIONS(3908), 1, anon_sym_static, - ACTIONS(3915), 1, + ACTIONS(3910), 1, anon_sym_readonly, - ACTIONS(3921), 1, + ACTIONS(3916), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3917), 2, + ACTIONS(3912), 2, anon_sym_get, anon_sym_set, - ACTIONS(3919), 3, + ACTIONS(3914), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, + STATE(4841), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3907), 14, + ACTIONS(3902), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159956,146 +158191,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24141] = 25, - ACTIONS(235), 1, + [24136] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(3920), 1, anon_sym_RBRACE, - ACTIONS(3927), 1, + ACTIONS(3922), 1, anon_sym_async, - ACTIONS(3929), 1, + ACTIONS(3924), 1, anon_sym_static, - ACTIONS(3931), 1, + ACTIONS(3926), 1, anon_sym_readonly, - ACTIONS(3937), 1, + ACTIONS(3932), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3933), 2, + ACTIONS(3928), 2, anon_sym_get, anon_sym_set, - ACTIONS(3935), 3, + ACTIONS(3930), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3923), 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, - [24243] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_RBRACE, - ACTIONS(3943), 1, - anon_sym_async, - ACTIONS(3945), 1, - anon_sym_static, - ACTIONS(3947), 1, - anon_sym_readonly, - ACTIONS(3953), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3895), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3949), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3951), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3559), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4829), 3, + STATE(4841), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4986), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3939), 14, + ACTIONS(3918), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160110,31 +158268,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24345] = 13, - ACTIONS(835), 1, + [24238] = 13, + ACTIONS(830), 1, anon_sym_BQUOTE, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3944), 1, anon_sym_QMARK_DOT, - ACTIONS(3967), 1, + ACTIONS(3946), 1, anon_sym_LT, - STATE(1568), 1, + STATE(1558), 1, sym_type_arguments, - STATE(1649), 1, - sym_arguments, - STATE(1676), 1, + STATE(1620), 1, sym_template_string, - STATE(5091), 1, + STATE(1650), 1, + sym_arguments, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 12, + ACTIONS(3934), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160147,7 +158305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3957), 27, + ACTIONS(3936), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160175,69 +158333,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_satisfies, anon_sym_implements, - [24423] = 25, - ACTIONS(235), 1, + [24316] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3950), 1, anon_sym_RBRACE, - ACTIONS(3973), 1, + ACTIONS(3952), 1, anon_sym_async, - ACTIONS(3975), 1, + ACTIONS(3954), 1, anon_sym_static, - ACTIONS(3977), 1, + ACTIONS(3956), 1, anon_sym_readonly, - ACTIONS(3983), 1, + ACTIONS(3962), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3979), 2, + ACTIONS(3958), 2, anon_sym_get, anon_sym_set, - ACTIONS(3981), 3, + ACTIONS(3960), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, + STATE(4841), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3969), 14, + ACTIONS(3948), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160252,69 +158410,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24525] = 25, - ACTIONS(235), 1, + [24418] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(3966), 1, anon_sym_RBRACE, - ACTIONS(3989), 1, + ACTIONS(3968), 1, anon_sym_async, - ACTIONS(3991), 1, + ACTIONS(3970), 1, anon_sym_static, - ACTIONS(3993), 1, + ACTIONS(3972), 1, anon_sym_readonly, - ACTIONS(3999), 1, + ACTIONS(3978), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(5031), 1, + STATE(4618), 1, aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3995), 2, + ACTIONS(3974), 2, anon_sym_get, anon_sym_set, - ACTIONS(3997), 3, + ACTIONS(3976), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5019), 3, + STATE(4687), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5780), 3, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3985), 14, + ACTIONS(3964), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160329,91 +158487,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24627] = 29, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2245), 1, + [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(2357), 1, - anon_sym_namespace, - ACTIONS(2359), 1, - anon_sym_import, - ACTIONS(2361), 1, - anon_sym_var, - ACTIONS(2363), 1, - anon_sym_let, - ACTIONS(2365), 1, - anon_sym_const, - ACTIONS(2367), 1, - anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(3984), 1, anon_sym_async, - ACTIONS(2371), 1, - anon_sym_function, - ACTIONS(2373), 1, - anon_sym_declare, - ACTIONS(2377), 1, - anon_sym_abstract, - ACTIONS(2381), 1, - anon_sym_interface, - ACTIONS(2383), 1, - anon_sym_enum, - ACTIONS(3775), 1, - anon_sym_STAR, - ACTIONS(3777), 1, - anon_sym_default, - ACTIONS(3779), 1, - anon_sym_type, - ACTIONS(3783), 1, - anon_sym_as, - ACTIONS(3793), 1, - anon_sym_module, - ACTIONS(4001), 1, - anon_sym_EQ, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4424), 1, - sym_declaration, - STATE(4425), 1, - sym_internal_module, - STATE(4558), 1, - sym_export_clause, - STATE(5235), 1, - sym_namespace_export, + ACTIONS(3986), 1, + anon_sym_static, + ACTIONS(3988), 1, + anon_sym_readonly, + ACTIONS(3994), 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(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + 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(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(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, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3946), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4422), 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, - [24736] = 3, + 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(1929), 14, + ACTIONS(3996), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160424,25 +158589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1927), 34, - sym__automatic_semicolon, + ACTIONS(3998), 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_RPAREN, anon_sym_of, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160462,67 +158622,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [24793] = 30, - ACTIONS(99), 1, + anon_sym_implements, + [24689] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2245), 1, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(5235), 1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(4002), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160530,7 +158690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160544,21 +158704,19 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24904] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3967), 1, + [24800] = 7, + ACTIONS(3946), 1, anon_sym_LT, - ACTIONS(4007), 1, + ACTIONS(4008), 1, anon_sym_DOT, - STATE(1520), 1, - sym_arguments, - STATE(1521), 1, + ACTIONS(4010), 1, + anon_sym_is, + STATE(1525), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 12, + ACTIONS(4006), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160571,12 +158729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3454), 31, + 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, @@ -160603,19 +158762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24971] = 7, - ACTIONS(3967), 1, + [24865] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3946), 1, anon_sym_LT, - ACTIONS(4011), 1, + ACTIONS(4012), 1, anon_sym_DOT, - ACTIONS(4013), 1, - anon_sym_is, - STATE(1507), 1, + STATE(1535), 1, + sym_arguments, + STATE(1536), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(3445), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160628,13 +158789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 32, + ACTIONS(3441), 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, @@ -160661,11 +158821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25036] = 3, + [24932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 14, + ACTIONS(1807), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160680,7 +158840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1731), 34, + ACTIONS(1805), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160715,80 +158875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [25093] = 8, - ACTIONS(3959), 1, + [24989] = 8, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3967), 1, + ACTIONS(3946), 1, anon_sym_LT, - ACTIONS(4019), 1, + ACTIONS(4018), 1, anon_sym_DOT, - STATE(1522), 1, - sym_arguments, - STATE(1523), 1, + STATE(1539), 1, sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4015), 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(4017), 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, - [25160] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3967), 1, - anon_sym_LT, - ACTIONS(4025), 1, - anon_sym_DOT, - STATE(1525), 1, + STATE(1609), 1, sym_arguments, - STATE(1526), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 12, + ACTIONS(4014), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160801,7 +158902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4023), 31, + ACTIONS(4016), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160833,66 +158934,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25227] = 3, + [25056] = 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(3742), 1, + anon_sym_STAR, + ACTIONS(3744), 1, + anon_sym_default, + ACTIONS(3746), 1, + anon_sym_type, + ACTIONS(3750), 1, + anon_sym_as, + ACTIONS(3760), 1, + anon_sym_module, + ACTIONS(4020), 1, + anon_sym_EQ, + 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(5325), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1929), 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(1927), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3758), 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, - [25283] = 4, - ACTIONS(4031), 1, - anon_sym_is, + 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, + [25165] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 13, + ACTIONS(1845), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160906,19 +159032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 33, + anon_sym_QMARK, + ACTIONS(1843), 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, @@ -160939,16 +159067,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [25341] = 5, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - sym__automatic_semicolon, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160962,7 +159098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1702), 32, + ACTIONS(1879), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160973,10 +159109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160992,14 +159125,13 @@ 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, - [25401] = 3, + [25290] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3175), 14, + ACTIONS(1845), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161014,7 +159146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3177), 33, + ACTIONS(1843), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161048,11 +159180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25457] = 3, + [25346] = 4, + ACTIONS(4010), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 14, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161066,8 +159200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1731), 33, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161101,11 +159234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25513] = 3, + [25404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3167), 14, + ACTIONS(3162), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161120,7 +159253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3169), 33, + ACTIONS(3164), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161154,11 +159287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25569] = 3, + [25460] = 4, + ACTIONS(4010), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 13, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161172,7 +159307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 34, + ACTIONS(4028), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161206,18 +159341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [25625] = 6, - ACTIONS(3967), 1, - anon_sym_LT, - ACTIONS(4011), 1, - anon_sym_DOT, - STATE(1507), 1, - sym_type_arguments, + [25518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(1807), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161228,9 +159356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 32, + anon_sym_QMARK, + ACTIONS(1805), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161243,6 +159373,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, @@ -161263,13 +159394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25687] = 4, - ACTIONS(4013), 1, + [25574] = 4, + ACTIONS(4034), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4035), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161283,7 +159414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 33, + ACTIONS(4032), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161317,15 +159448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25745] = 5, - ACTIONS(3967), 1, - anon_sym_LT, - STATE(1517), 1, - sym_type_arguments, + [25632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, + ACTIONS(1685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161336,9 +159463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 33, + ACTIONS(1683), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161372,17 +159500,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25805] = 6, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, - anon_sym_DOT, - STATE(1518), 1, - sym_arguments, + anon_sym_is, + [25688] = 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(4038), 1, + anon_sym_async, + ACTIONS(4040), 1, + anon_sym_static, + ACTIONS(4042), 1, + anon_sym_readonly, + ACTIONS(4048), 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(3388), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4044), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4046), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3705), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5520), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5541), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4036), 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, + [25782] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(3182), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161396,18 +159591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 31, + 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, @@ -161428,13 +159626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25867] = 4, - ACTIONS(4013), 1, - anon_sym_is, + [25838] = 5, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4050), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(1661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161448,7 +159648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 33, + ACTIONS(1659), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161480,85 +159680,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, - [25925] = 22, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(4051), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_static, - ACTIONS(4055), 1, - anon_sym_readonly, - ACTIONS(4061), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3393), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3895), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4057), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4059), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3559), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5287), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5294), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4049), 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, - [26019] = 3, + [25898] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4056), 1, + anon_sym_DOT, + STATE(1532), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 13, + ACTIONS(4052), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161572,20 +159705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4065), 34, + ACTIONS(4054), 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, @@ -161606,12 +159737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26075] = 3, + [25960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3171), 14, + ACTIONS(3186), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161626,7 +159756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3173), 33, + ACTIONS(3188), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161660,23 +159790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26131] = 9, - ACTIONS(835), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, + [26016] = 6, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4008), 1, anon_sym_DOT, - ACTIONS(3965), 1, - anon_sym_QMARK_DOT, - STATE(1676), 1, - sym_template_string, - STATE(5091), 1, - sym_optional_chain, + STATE(1525), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4006), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161687,10 +159811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 28, + ACTIONS(3501), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161701,7 +159824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -161717,13 +159842,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, - [26199] = 3, + [26078] = 5, + ACTIONS(3946), 1, + anon_sym_LT, + STATE(1531), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4067), 13, + ACTIONS(4030), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161734,10 +159865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4069), 33, + ACTIONS(4032), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161771,15 +159901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26254] = 5, - ACTIONS(4071), 1, - anon_sym_LBRACE, - STATE(1630), 1, - sym_statement_block, + [26138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4058), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161793,9 +159919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 31, + ACTIONS(4060), 34, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -161824,12 +159951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26313] = 3, + anon_sym_is, + [26194] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 13, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161843,7 +159972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4075), 33, + ACTIONS(4064), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161877,36 +160006,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26368] = 3, + [26249] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(2326), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 33, + ACTIONS(1667), 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, @@ -161927,80 +160061,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26423] = 4, - ACTIONS(4081), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4077), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + [26312] = 6, + ACTIONS(4076), 1, anon_sym_AMP, + ACTIONS(4078), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4079), 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, + ACTIONS(4080), 1, anon_sym_extends, - anon_sym_implements, - [26480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4072), 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(4085), 33, + ACTIONS(4074), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162032,15 +160116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26535] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACK, + [26373] = 5, + ACTIONS(4086), 1, + anon_sym_QMARK, + ACTIONS(4088), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162054,7 +160139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 32, + ACTIONS(4084), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162063,8 +160148,8 @@ 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, @@ -162085,13 +160170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26592] = 3, + [26432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(4090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162105,7 +160189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4091), 33, + ACTIONS(4092), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162139,11 +160223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26647] = 3, + [26487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 13, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162157,7 +160241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2333), 33, + ACTIONS(4028), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162191,27 +160275,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26702] = 4, - ACTIONS(4007), 1, - anon_sym_DOT, + [26542] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 13, + ACTIONS(4094), 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(3454), 32, + ACTIONS(4096), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162224,6 +160310,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, @@ -162242,29 +160329,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26759] = 4, - ACTIONS(4033), 1, - sym__automatic_semicolon, + [26603] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(4098), 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(1702), 32, + ACTIONS(4100), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162297,40 +160385,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [26816] = 4, - ACTIONS(4097), 1, + [26664] = 7, + ACTIONS(3447), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 32, + ACTIONS(3439), 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_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162348,38 +160440,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26873] = 3, + [26727] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4108), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 33, + ACTIONS(4106), 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, @@ -162400,13 +160496,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, - [26928] = 3, + [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(4103), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162420,20 +160521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4105), 33, + ACTIONS(1653), 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, @@ -162452,13 +160551,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, - [26983] = 3, + 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(4107), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162472,20 +160576,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 33, + ACTIONS(1653), 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, @@ -162504,20 +160606,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, - [27038] = 4, - ACTIONS(4115), 1, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [26912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 12, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162525,7 +160625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4113), 33, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162559,11 +160659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27095] = 3, + [26967] = 5, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(1736), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162577,19 +160681,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 33, + ACTIONS(1653), 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, @@ -162609,13 +160712,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, - [27150] = 3, + 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(4121), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162629,10 +160737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4123), 33, + ACTIONS(1653), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162642,7 +160749,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, @@ -162661,13 +160767,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, - [27205] = 3, + [27087] = 6, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4130), 1, + anon_sym_DOT, + STATE(1639), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162681,10 +160792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4127), 33, + ACTIONS(1653), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162694,7 +160804,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, @@ -162713,19 +160822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27260] = 6, - ACTIONS(4129), 1, + [27148] = 5, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4131), 1, - anon_sym_DOT, - STATE(1742), 1, + STATE(1639), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162739,18 +160845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, - sym__automatic_semicolon, + ACTIONS(1653), 31, sym__ternary_qmark, anon_sym_as, 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, anon_sym_PIPE_PIPE, @@ -162769,37 +160876,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27321] = 3, + anon_sym_implements, + [27207] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4135), 33, + ACTIONS(3439), 30, sym__ternary_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, @@ -162820,31 +160930,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27376] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [27266] = 4, + ACTIONS(4050), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 11, + 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(4139), 32, + ACTIONS(1659), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162877,30 +160984,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27437] = 6, - ACTIONS(4085), 1, + [27323] = 5, + ACTIONS(4136), 1, + anon_sym_QMARK, + ACTIONS(4138), 1, anon_sym_extends, - ACTIONS(4087), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4145), 11, + 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(4147), 31, + ACTIONS(4084), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162909,8 +161015,8 @@ 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, @@ -162932,17 +161038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27498] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(4149), 1, - anon_sym_DOT, - STATE(1742), 1, - sym_statement_block, + [27382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162956,18 +161056,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, - sym__automatic_semicolon, + ACTIONS(4142), 33, 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, anon_sym_PIPE_PIPE, @@ -162986,14 +161088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27559] = 4, - ACTIONS(4155), 1, anon_sym_extends, + anon_sym_implements, + [27437] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163007,7 +161108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4153), 32, + ACTIONS(4032), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163039,16 +161140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27616] = 5, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(1742), 1, - sym_statement_block, + [27492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163062,18 +161160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 31, - sym__automatic_semicolon, + ACTIONS(4146), 33, 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, @@ -163093,14 +161192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27675] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACK, + anon_sym_extends, + anon_sym_implements, + [27547] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 13, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163114,7 +161212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4159), 32, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163125,6 +161223,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, @@ -163147,17 +161246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27732] = 6, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4161), 1, - anon_sym_DOT, - STATE(1630), 1, - sym_statement_block, + [27602] = 5, + ACTIONS(830), 1, + anon_sym_BQUOTE, + STATE(1620), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163171,9 +161268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, + ACTIONS(1879), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -163183,6 +161281,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, @@ -163199,14 +161298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27793] = 3, + [27661] = 4, + ACTIONS(4152), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163220,7 +161320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 33, + ACTIONS(4150), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163233,7 +161333,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, @@ -163254,13 +161353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27848] = 4, - ACTIONS(4029), 1, - anon_sym_extends, + [27718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163274,7 +161371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 32, + ACTIONS(4156), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163306,12 +161403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27905] = 3, + [27773] = 4, + ACTIONS(4158), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163325,7 +161425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 33, + ACTIONS(4156), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163336,7 +161436,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, @@ -163359,11 +161458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27960] = 3, + [27830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163377,7 +161476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 33, + ACTIONS(4162), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163411,11 +161510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28015] = 3, + [27885] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 13, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163429,7 +161528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2337), 33, + ACTIONS(2326), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163463,11 +161562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28070] = 3, + [27940] = 4, + ACTIONS(4012), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(3445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163481,7 +161582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 33, + ACTIONS(3441), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163494,7 +161595,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, @@ -163515,11 +161615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28125] = 3, + [27997] = 4, + ACTIONS(4168), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 13, + ACTIONS(4164), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163533,7 +161635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4185), 33, + ACTIONS(4166), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163546,7 +161648,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, @@ -163567,11 +161668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28180] = 3, + [28054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163585,7 +161686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 33, + ACTIONS(4172), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163619,11 +161720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28235] = 3, + [28109] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163637,7 +161738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 33, + ACTIONS(4114), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163671,11 +161772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28290] = 3, + [28164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(4176), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163689,7 +161790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 33, + ACTIONS(4178), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163723,17 +161824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28345] = 3, + [28219] = 4, + ACTIONS(4076), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4180), 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, @@ -163741,7 +161843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 33, + ACTIONS(4182), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163775,11 +161877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28400] = 3, + [28276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163793,7 +161895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 33, + ACTIONS(4132), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163827,11 +161929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28455] = 3, + [28331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163845,7 +161947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 33, + ACTIONS(4186), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163879,11 +161981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28510] = 3, + [28386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4207), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163897,7 +161999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4209), 33, + ACTIONS(4190), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163931,81 +162033,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28565] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4211), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4214), 3, - anon_sym_GT, + [28441] = 6, + ACTIONS(4076), 1, anon_sym_AMP, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(1706), 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(1710), 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, - [28628] = 3, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4217), 13, + ACTIONS(4192), 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(4219), 33, + ACTIONS(4194), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164037,72 +162087,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, - [28683] = 4, - ACTIONS(4225), 1, - anon_sym_DOT, + [28502] = 6, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(4158), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4154), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4223), 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, - [28740] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 11, + ACTIONS(4196), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164114,7 +162111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 32, + ACTIONS(4198), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164125,7 +162122,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, @@ -164147,63 +162143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28801] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3635), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3436), 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, + [28563] = 4, + ACTIONS(4204), 1, anon_sym_extends, - anon_sym_implements, - [28856] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3628), 13, + ACTIONS(4200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164217,7 +162163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 33, + ACTIONS(4202), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164249,66 +162195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28911] = 4, - ACTIONS(4228), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4223), 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, + [28620] = 4, + ACTIONS(4158), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [28968] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164322,7 +162216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 33, + ACTIONS(4208), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164333,7 +162227,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, @@ -164356,13 +162249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29023] = 4, - ACTIONS(3484), 1, - anon_sym_EQ, + [28677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164376,7 +162267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 32, + ACTIONS(4138), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164408,67 +162299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29080] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4231), 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(4233), 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, - [29141] = 3, + [28732] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164482,7 +162319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4237), 33, + ACTIONS(4212), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164516,11 +162353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29196] = 3, + [28787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164534,7 +162371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 33, + ACTIONS(4216), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164568,11 +162405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29251] = 3, + [28842] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164586,13 +162427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4245), 33, + ACTIONS(4220), 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, @@ -164618,13 +162458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29306] = 3, + [28901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 13, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164638,7 +162477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4249), 33, + ACTIONS(2334), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164672,11 +162511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29361] = 3, + [28956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 13, + ACTIONS(4086), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164690,7 +162529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4253), 33, + ACTIONS(4088), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164724,18 +162563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29416] = 4, - ACTIONS(4115), 1, - anon_sym_AMP, + [29011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 12, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164743,7 +162581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4257), 33, + ACTIONS(4224), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164777,11 +162615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29473] = 3, + [29066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 13, + ACTIONS(4226), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164795,7 +162633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4261), 33, + ACTIONS(4228), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164829,11 +162667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29528] = 3, + [29121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2349), 13, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164847,7 +162685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2347), 33, + ACTIONS(4232), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164881,11 +162719,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29583] = 3, + [29176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164899,7 +162737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4265), 33, + ACTIONS(4236), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164933,11 +162771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29638] = 3, + [29231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164951,7 +162789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4269), 33, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164985,11 +162823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29693] = 3, + [29286] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165003,7 +162841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 33, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165037,11 +162875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29748] = 3, + [29341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165055,7 +162893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 33, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165089,17 +162927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29803] = 6, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4279), 1, + [29396] = 4, + ACTIONS(4254), 1, anon_sym_DOT, - STATE(1630), 1, - sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165113,9 +162947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, + ACTIONS(4252), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -165143,12 +162978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29864] = 3, + [29453] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(3623), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165162,7 +162998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 33, + ACTIONS(3419), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165196,11 +163032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29919] = 3, + [29508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(3625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165214,7 +163050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4283), 33, + ACTIONS(3429), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165248,11 +163084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29974] = 3, + [29563] = 4, + ACTIONS(4257), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165266,7 +163104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 33, + ACTIONS(4252), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165279,7 +163117,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, @@ -165300,11 +163137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30029] = 3, + [29620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165318,7 +163155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4283), 33, + ACTIONS(4262), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165352,25 +163189,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30084] = 3, + [29675] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4260), 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(4287), 33, + ACTIONS(4262), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165402,13 +163243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30139] = 3, + [29736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165422,7 +163262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 33, + ACTIONS(4266), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165456,11 +163296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30194] = 3, + [29791] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4268), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165474,7 +163314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 33, + ACTIONS(4270), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165508,11 +163348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30249] = 3, + [29846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4272), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165526,7 +163366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 33, + ACTIONS(4274), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165560,11 +163400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30304] = 3, + [29901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165578,7 +163418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 33, + ACTIONS(4278), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165612,29 +163452,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30359] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [29956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 11, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4299), 32, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165666,18 +163502,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, - [30420] = 3, + [30011] = 4, + ACTIONS(4076), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, + ACTIONS(4284), 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, @@ -165685,7 +163523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 33, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165719,11 +163557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30475] = 3, + [30068] = 4, + ACTIONS(4288), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165737,7 +163577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 33, + ACTIONS(1809), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165769,87 +163609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30530] = 7, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + [30125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 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, - [30593] = 6, - ACTIONS(4115), 1, anon_sym_AMP, - ACTIONS(4141), 1, anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4309), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4311), 32, + ACTIONS(4292), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165881,68 +163660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30654] = 7, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4319), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 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(4317), 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, - [30717] = 3, + [30180] = 4, + ACTIONS(3485), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165956,7 +163682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 33, + ACTIONS(3439), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165988,17 +163714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30772] = 5, - ACTIONS(3959), 1, + [30237] = 5, + ACTIONS(3938), 1, anon_sym_LPAREN, - STATE(1632), 1, + STATE(1629), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 13, + ACTIONS(4294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166012,7 +163737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4331), 31, + ACTIONS(4296), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166044,11 +163769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30831] = 3, + [30296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166062,7 +163787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 33, + ACTIONS(2338), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166096,29 +163821,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30886] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [30351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 11, + ACTIONS(4298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 32, + ACTIONS(4300), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166150,12 +163871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30947] = 3, + [30406] = 4, + ACTIONS(4032), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2343), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166169,7 +163893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2341), 33, + ACTIONS(4304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166201,27 +163925,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31002] = 3, + [30463] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 13, + ACTIONS(4302), 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(4339), 33, + ACTIONS(4304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166253,13 +163980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31057] = 3, + [30524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166273,7 +163999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 33, + ACTIONS(4308), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166307,29 +164033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31112] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [30579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 11, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 32, + ACTIONS(4312), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166361,12 +164083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31173] = 3, + [30634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166380,7 +164103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 33, + ACTIONS(4316), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166414,15 +164137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31228] = 5, - ACTIONS(835), 1, - anon_sym_BQUOTE, - STATE(1676), 1, - sym_template_string, + [30689] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166436,7 +164155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 31, + ACTIONS(4312), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166466,13 +164185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31287] = 3, + [30744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166486,7 +164207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 33, + ACTIONS(4316), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166520,11 +164241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31342] = 3, + [30799] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166538,7 +164259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 33, + ACTIONS(4320), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166572,11 +164293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31397] = 3, + [30854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166590,7 +164311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 33, + ACTIONS(4324), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166624,11 +164345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31452] = 3, + [30909] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166642,7 +164363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 33, + ACTIONS(4320), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166676,11 +164397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31507] = 3, + [30964] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166694,7 +164415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + ACTIONS(4324), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166728,65 +164449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31562] = 5, + [31019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 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(3452), 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, - [31621] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4353), 13, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166800,7 +164467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + ACTIONS(4328), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166834,11 +164501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31676] = 3, + [31074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166852,7 +164519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + ACTIONS(4332), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166886,11 +164553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31731] = 3, + [31129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166904,7 +164571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 33, + ACTIONS(4328), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166938,11 +164605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31786] = 3, + [31184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 13, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166956,7 +164623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 33, + ACTIONS(4332), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166990,11 +164657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31841] = 3, + [31239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(4334), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167008,7 +164675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 33, + ACTIONS(4336), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167042,29 +164709,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31896] = 5, - ACTIONS(4163), 1, - anon_sym_QMARK, - ACTIONS(4165), 1, + [31294] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4338), 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(4371), 31, + ACTIONS(4340), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167073,6 +164740,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, @@ -167096,11 +164764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31955] = 3, + [31355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2353), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167114,7 +164782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2351), 33, + ACTIONS(4344), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167148,77 +164816,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32010] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4373), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + [31410] = 6, + ACTIONS(4076), 1, anon_sym_AMP, + ACTIONS(4078), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 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, + ACTIONS(4080), 1, anon_sym_extends, - anon_sym_implements, - [32065] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4346), 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(4379), 33, + ACTIONS(4348), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167250,13 +164870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32120] = 3, + [31471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167270,7 +164889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 33, + ACTIONS(4352), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167304,11 +164923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32175] = 3, + [31526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167322,7 +164941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 33, + ACTIONS(4356), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167356,25 +164975,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32230] = 3, + [31581] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4354), 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(4383), 33, + ACTIONS(4356), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167406,17 +165029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32285] = 5, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, - anon_sym_extends, + [31642] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(2332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167430,57 +165048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 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, - [32344] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4385), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 33, + ACTIONS(2330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167514,11 +165082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32399] = 3, + [31697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167532,7 +165100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 33, + ACTIONS(4360), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167566,11 +165134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32454] = 3, + [31752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167584,7 +165152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 33, + ACTIONS(4364), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167618,11 +165186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32509] = 3, + [31807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167636,7 +165204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 33, + ACTIONS(4364), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167670,11 +165238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32564] = 3, + [31862] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167688,7 +165256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 33, + ACTIONS(4364), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167722,11 +165290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32619] = 3, + [31917] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167740,7 +165308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 33, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167774,11 +165342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32674] = 3, + [31972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167792,7 +165360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4395), 33, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167826,15 +165394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32729] = 5, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1643), 1, - sym_arguments, + [32027] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167848,57 +165412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 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, - [32788] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4035), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4037), 33, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167932,66 +165446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32843] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4401), 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(4403), 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, - [32904] = 3, + [32082] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168005,7 +165464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 33, + ACTIONS(4372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168039,68 +165498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32959] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [32137] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 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(4411), 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, - [33020] = 4, - ACTIONS(4413), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1855), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168114,7 +165516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 32, + ACTIONS(4372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168146,12 +165548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33077] = 3, + [32192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168165,7 +165568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 33, + ACTIONS(4372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168199,90 +165602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33132] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4419), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [33242] = 3, + [32247] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 13, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168296,7 +165620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 32, + ACTIONS(4376), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168328,152 +165652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33296] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, - [33382] = 25, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4483), 1, - anon_sym_BANG, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 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, - [33480] = 3, + [32302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168487,7 +165672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 32, + ACTIONS(4380), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168519,12 +165704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33534] = 3, + [32357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168538,7 +165724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 32, + ACTIONS(4384), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168570,232 +165756,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33588] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + [32412] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, - [33674] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(2344), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4435), 1, anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4489), 7, + 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_RBRACK, - anon_sym_BQUOTE, - [33784] = 26, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4483), 1, - anon_sym_BANG, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [33884] = 3, + anon_sym_extends, + anon_sym_implements, + [32467] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168809,7 +165828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 32, + ACTIONS(4388), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168841,91 +165860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33938] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4493), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34048] = 3, + [32522] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168939,7 +165880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 32, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168971,12 +165912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34102] = 3, + [32577] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168990,7 +165932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4501), 32, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169022,12 +165964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34156] = 3, + [32632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169041,7 +165984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 32, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169073,12 +166016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34210] = 3, + [32687] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169092,7 +166036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 32, + ACTIONS(4396), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169124,12 +166068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34264] = 3, + [32742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169143,7 +166088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 32, + ACTIONS(4396), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169175,76 +166120,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34318] = 16, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4511), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [32797] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4394), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 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(4481), 21, + 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, - [34398] = 3, + anon_sym_extends, + anon_sym_implements, + [32852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1917), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169258,7 +166192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 32, + ACTIONS(4400), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169290,32 +166224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34452] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4520), 1, - anon_sym_QMARK_DOT, - ACTIONS(4522), 1, - anon_sym_LT, - STATE(1934), 1, - sym_type_arguments, - STATE(2081), 1, - sym_template_string, - STATE(2127), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [32907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 12, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169326,16 +166241,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3957), 23, - sym__automatic_semicolon, + 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, @@ -169351,12 +166274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [34526] = 3, + anon_sym_extends, + anon_sym_implements, + [32962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4524), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169370,7 +166296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4526), 32, + ACTIONS(4400), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169402,12 +166328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34580] = 3, + [33017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1911), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169421,7 +166348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1909), 32, + ACTIONS(4404), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169453,12 +166380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34634] = 3, + [33072] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169472,7 +166400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1783), 32, + ACTIONS(4408), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169504,12 +166432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34688] = 3, + [33127] = 4, + ACTIONS(4104), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4528), 13, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169523,7 +166454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4530), 32, + ACTIONS(4106), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169532,7 +166463,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, @@ -169556,11 +166486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34742] = 3, + [33183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169574,7 +166504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4534), 32, + ACTIONS(4412), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169607,169 +166537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34796] = 31, - ACTIONS(3959), 1, + [33237] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4420), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4536), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34906] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4538), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [35016] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1791), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169780,24 +166568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 32, + ACTIONS(4416), 25, sym__ternary_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, @@ -169815,12 +166596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35070] = 3, + [33307] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4540), 13, + ACTIONS(4423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169834,7 +166614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4542), 32, + ACTIONS(4425), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169867,11 +166647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35124] = 3, + [33361] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169885,7 +166665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 32, + ACTIONS(4084), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169918,11 +166698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35178] = 3, + [33415] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(1765), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169936,7 +166716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 32, + ACTIONS(1767), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169969,11 +166749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35232] = 3, + [33469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169987,7 +166767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 32, + ACTIONS(1695), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170020,90 +166800,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35286] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, + [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_AMP_AMP, + anon_sym_STAR, ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, + anon_sym_EQ, ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_async, ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + 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(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4544), 7, - 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_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [35396] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4546), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170117,7 +166885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4548), 32, + ACTIONS(4443), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170150,11 +166918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35450] = 3, + [33663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4550), 13, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170168,7 +166936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4552), 32, + ACTIONS(4447), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170201,11 +166969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35504] = 3, + [33717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170219,7 +166987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 32, + ACTIONS(4084), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170252,11 +167020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35558] = 3, + [33771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4554), 13, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170270,7 +167038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4556), 32, + ACTIONS(4451), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170303,81 +167071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35612] = 22, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4481), 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, - [35704] = 3, + [33825] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4558), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170391,7 +167089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4560), 32, + ACTIONS(4455), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170424,215 +167122,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35758] = 3, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + 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, anon_sym_COMMA, anon_sym_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, + [33989] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_implements, - [35812] = 3, + 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(4566), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + 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(4501), 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, + [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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_implements, - [35866] = 3, + 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(4369), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + 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, anon_sym_COMMA, anon_sym_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, + [34209] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_implements, - [35920] = 3, + 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(4570), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4572), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + 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(4505), 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35974] = 3, + [34319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4574), 13, + ACTIONS(1817), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170646,7 +167456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4576), 32, + ACTIONS(1819), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170679,32 +167489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36028] = 13, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4511), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [34373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(1835), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170715,36 +167504,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 22, + ACTIONS(1833), 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, - [36102] = 3, + anon_sym_implements, + [34427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4578), 13, + ACTIONS(4507), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170758,7 +167558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4580), 32, + ACTIONS(4509), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170791,145 +167591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36156] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, - [36242] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, - [36328] = 3, + [34481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4582), 13, + ACTIONS(4511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170943,7 +167609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4584), 32, + ACTIONS(4513), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170976,11 +167642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36382] = 3, + [34535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 13, + ACTIONS(4515), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170994,7 +167660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 32, + ACTIONS(4517), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171027,150 +167693,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36436] = 23, - ACTIONS(3959), 1, + [34589] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4431), 1, + 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(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4443), 1, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + 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(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4519), 7, 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, - [36530] = 20, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [34699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4521), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4523), 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, - [36618] = 3, + anon_sym_implements, + [34753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4586), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171184,7 +167841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4588), 32, + ACTIONS(4443), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171217,11 +167874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36672] = 3, + [34807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4590), 13, + ACTIONS(4525), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171235,7 +167892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4592), 32, + ACTIONS(4527), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171268,11 +167925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36726] = 3, + [34861] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171286,7 +167943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 32, + ACTIONS(1699), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171319,11 +167976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36780] = 3, + [34915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 13, + ACTIONS(1871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171337,7 +167994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 32, + ACTIONS(1869), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171370,36 +168027,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36834] = 3, + [34969] = 6, + ACTIONS(4186), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4594), 13, + ACTIONS(4529), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4596), 32, + ACTIONS(4425), 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, @@ -171421,83 +168081,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36888] = 24, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1841), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 13, + ACTIONS(1839), 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, - [36984] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(3934), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171508,24 +168167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4600), 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, @@ -171541,14 +168192,12 @@ 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, - [37038] = 3, + [35157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171562,7 +168211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4604), 32, + ACTIONS(1809), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171595,11 +168244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37092] = 3, + [35211] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 13, + ACTIONS(1793), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171613,7 +168262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 32, + ACTIONS(1791), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171646,11 +168295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37146] = 3, + [35265] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171664,7 +168313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 32, + ACTIONS(1829), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171697,11 +168346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37200] = 3, + [35319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 13, + ACTIONS(4545), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171715,7 +168364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 32, + ACTIONS(4547), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171748,90 +168397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37254] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4610), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [37364] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4612), 13, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171845,7 +168415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4614), 32, + ACTIONS(1855), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171878,90 +168448,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37418] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4441), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4584), 7, + ACTIONS(4443), 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, - [37528] = 3, + anon_sym_satisfies, + anon_sym_implements, + [35481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1881), 13, + ACTIONS(4549), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171975,7 +168517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 32, + ACTIONS(4551), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172008,11 +168550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37582] = 3, + [35535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4553), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172026,7 +168568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 32, + ACTIONS(4555), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172059,37 +168601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37636] = 15, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4511), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4557), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -172098,35 +168615,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 21, + 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, - [37714] = 3, + anon_sym_implements, + [35643] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 13, + ACTIONS(4561), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172140,19 +168670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 32, - sym__automatic_semicolon, + ACTIONS(4563), 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, @@ -172172,12 +168702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37768] = 3, + anon_sym_implements, + [35697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(4565), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172191,19 +168721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 32, - sym__automatic_semicolon, + ACTIONS(4567), 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, @@ -172223,38 +168753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37822] = 15, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4620), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_implements, + [35751] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(4569), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -172263,16 +168769,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 21, + ACTIONS(4571), 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, @@ -172286,12 +168800,16 @@ 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, - [37900] = 3, + anon_sym_satisfies, + anon_sym_implements, + [35805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 13, + ACTIONS(4573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172305,7 +168823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1735), 32, + ACTIONS(4575), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172338,11 +168856,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37954] = 3, + [35859] = 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(4577), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [35969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 13, + ACTIONS(4579), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172356,7 +168953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 32, + ACTIONS(4581), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172389,62 +168986,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38008] = 3, + [36023] = 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(4627), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + 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(4581), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36133] = 18, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4495), 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_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4629), 32, + ACTIONS(4583), 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38062] = 3, + [36217] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4631), 13, + ACTIONS(4587), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172458,7 +169149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 32, + ACTIONS(4589), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172491,11 +169182,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38116] = 3, + [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, + 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, + [36357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4635), 13, + ACTIONS(4591), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172509,7 +169267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4637), 32, + ACTIONS(4593), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172542,11 +169300,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38170] = 3, + [36411] = 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(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 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(1875), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172557,47 +169336,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 32, + ACTIONS(4583), 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, - [38224] = 3, + [36485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1891), 13, + ACTIONS(4598), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172611,7 +169379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 32, + ACTIONS(4600), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172644,102 +169412,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38278] = 3, + [36539] = 25, + 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(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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4639), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4641), 32, + 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), 13, sym__ternary_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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [36637] = 26, + 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(4465), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + 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, + 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + 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), 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, - anon_sym_implements, - [38332] = 16, - ACTIONS(3959), 1, + [36737] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4445), 1, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4511), 1, + ACTIONS(4595), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, - anon_sym_STAR, + 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 20, + ACTIONS(4583), 21, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -172751,7 +169615,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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -172759,62 +169622,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [38412] = 3, + anon_sym_satisfies, + [36817] = 22, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4643), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4645), 32, + 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, sym__ternary_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_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [36909] = 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(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + 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, + 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, - anon_sym_implements, - [38466] = 3, + [37003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172828,7 +169782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4649), 32, + ACTIONS(1865), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172861,13 +169815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38520] = 4, - ACTIONS(4315), 1, - anon_sym_EQ, + [37057] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172881,7 +169833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 31, + ACTIONS(4604), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172890,6 +169842,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, @@ -172913,126 +169866,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38576] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, + [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_AMP_AMP, + anon_sym_STAR, ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, + anon_sym_EQ, ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_async, ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4651), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [38686] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173040,7 +169914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173059,12 +169933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38772] = 3, + [37197] = 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(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 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(1899), 13, + ACTIONS(4457), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -173073,50 +169972,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 32, + ACTIONS(4583), 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, - [38826] = 3, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4653), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -173125,49 +170037,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4655), 32, + ACTIONS(4583), 20, sym__ternary_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, - [38880] = 4, - ACTIONS(4659), 1, - anon_sym_EQ, + [37355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173181,7 +170078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 31, + ACTIONS(3439), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173190,6 +170087,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, @@ -173213,11 +170111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38936] = 3, + [37409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4663), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173231,7 +170129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4665), 32, + ACTIONS(1879), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173264,158 +170162,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38990] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [37463] = 6, + ACTIONS(4146), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4606), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 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, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_implements, + [37523] = 4, + ACTIONS(4614), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4612), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4548), 7, + ACTIONS(4616), 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_RBRACK, - anon_sym_BQUOTE, - [39100] = 18, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4443), 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(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 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, + [37579] = 6, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4618), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + 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(4481), 19, + ACTIONS(3439), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + 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, - [39184] = 4, - ACTIONS(1708), 1, - anon_sym_EQ, + anon_sym_implements, + [37639] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 13, + ACTIONS(4624), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173429,7 +170340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 31, + ACTIONS(4626), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173438,6 +170349,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, @@ -173461,90 +170373,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39240] = 31, - ACTIONS(3959), 1, + [37693] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + 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, + 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(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, - ACTIONS(4425), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4583), 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, + [37781] = 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(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 7, + ACTIONS(4583), 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, - [39350] = 3, + anon_sym_satisfies, + [37883] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4667), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173558,7 +170534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4669), 32, + ACTIONS(1719), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173591,11 +170567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39404] = 3, + [37937] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4671), 13, + ACTIONS(4628), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173609,7 +170585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4673), 32, + ACTIONS(4630), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173642,11 +170618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39458] = 3, + [37991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4675), 13, + ACTIONS(4632), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173660,7 +170636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4677), 32, + ACTIONS(4634), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173693,11 +170669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39512] = 3, + [38045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4679), 13, + ACTIONS(4636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173711,7 +170687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4681), 32, + ACTIONS(4638), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173744,11 +170720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39566] = 3, + [38099] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 13, + ACTIONS(4640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173762,7 +170738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4685), 32, + ACTIONS(4642), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173795,86 +170771,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39620] = 27, - ACTIONS(3959), 1, + [38153] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4644), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38207] = 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(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4483), 1, - anon_sym_BANG, - STATE(1603), 1, + 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(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4642), 7, 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, + [38317] = 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, - [39722] = 3, + 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(4648), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [38427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4687), 13, + ACTIONS(4650), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173888,7 +170998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4689), 32, + ACTIONS(4652), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173921,11 +171031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39776] = 3, + [38481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 13, + ACTIONS(4654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173939,7 +171049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 32, + ACTIONS(4656), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173972,11 +171082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39830] = 3, + [38535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 13, + ACTIONS(4658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173990,7 +171100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 32, + ACTIONS(4660), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174023,27 +171133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39884] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4699), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [38589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4662), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174054,17 +171148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 25, + ACTIONS(4664), 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, @@ -174082,11 +171183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39954] = 3, + anon_sym_implements, + [38643] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4702), 13, + ACTIONS(4666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174100,7 +171202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 32, + ACTIONS(4668), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174133,11 +171235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40008] = 3, + [38697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(1755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174151,7 +171253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4489), 32, + ACTIONS(1757), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174184,11 +171286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40062] = 3, + [38751] = 4, + ACTIONS(1665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174202,7 +171306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 32, + ACTIONS(1667), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174211,7 +171315,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, @@ -174235,90 +171338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40116] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40226] = 3, + [38807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(4670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174332,7 +171356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 32, + ACTIONS(4672), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174365,90 +171389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40280] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4710), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40390] = 3, + [38861] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174462,7 +171407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 32, + ACTIONS(1737), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174495,40 +171440,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40444] = 6, - ACTIONS(4123), 1, - anon_sym_extends, + [38915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 29, + ACTIONS(1699), 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_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174548,12 +171490,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40504] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174564,24 +171525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 32, + ACTIONS(4676), 23, sym__ternary_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, @@ -174595,45 +171549,39 @@ 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, - [40558] = 6, - ACTIONS(4047), 1, - anon_sym_extends, + [39041] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4722), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4725), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(1793), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 29, + ACTIONS(1791), 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_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174653,12 +171601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40618] = 3, + anon_sym_PIPE_RBRACE, + [39095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4728), 13, + ACTIONS(1725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174672,7 +171620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4730), 32, + ACTIONS(1723), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174705,11 +171653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40672] = 3, + [39149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4732), 13, + ACTIONS(4681), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174723,7 +171671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4610), 32, + ACTIONS(4683), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174756,109 +171704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40726] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - 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_BQUOTE, - [40836] = 12, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4740), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [39203] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174869,17 +171719,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 23, + 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, @@ -174893,41 +171750,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [40908] = 6, - ACTIONS(4127), 1, - anon_sym_extends, + anon_sym_implements, + [39257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 10, + ACTIONS(4685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 29, + 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, @@ -174949,13 +171806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40968] = 4, - ACTIONS(4749), 1, - sym__automatic_semicolon, + [39311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174969,17 +171824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1702), 30, + ACTIONS(4691), 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, @@ -174999,21 +171856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41023] = 5, + anon_sym_implements, + [39365] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4751), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1706), 13, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175027,12 +171875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 24, + ACTIONS(1709), 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, @@ -175052,21 +171907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41080] = 8, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4754), 1, - anon_sym_DOT, - STATE(1999), 1, - sym_arguments, - STATE(2000), 1, - sym_type_arguments, + anon_sym_implements, + [39419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 12, + ACTIONS(4693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175077,17 +171923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4023), 27, - sym__automatic_semicolon, + ACTIONS(4695), 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, @@ -175106,14 +171958,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [41143] = 3, + 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(1899), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -175122,23 +171998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 31, - sym__automatic_semicolon, + ACTIONS(4699), 21, 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -175152,25 +172021,12 @@ 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_PIPE_RBRACE, - [41196] = 5, + [39551] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4659), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4756), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4657), 13, + ACTIONS(4704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175184,12 +172040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 24, + ACTIONS(4706), 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, @@ -175209,13 +172072,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41253] = 4, - ACTIONS(4759), 1, - sym__automatic_semicolon, + anon_sym_implements, + [39605] = 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(4708), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [39715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175229,17 +172170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 30, + ACTIONS(1747), 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, @@ -175259,105 +172202,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41308] = 16, - ACTIONS(1588), 1, + anon_sym_implements, + [39769] = 19, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4763), 1, - anon_sym_static, - ACTIONS(4765), 1, - anon_sym_readonly, - ACTIONS(4767), 1, - anon_sym_abstract, - ACTIONS(4769), 1, - anon_sym_accessor, - STATE(2694), 1, - sym_accessibility_modifier, - STATE(2783), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [41387] = 16, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3755), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(4679), 1, + 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(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175365,7 +172251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175373,12 +172259,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, @@ -175386,84 +172270,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41466] = 16, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4775), 1, - anon_sym_static, - ACTIONS(4777), 1, - anon_sym_readonly, - ACTIONS(4779), 1, - anon_sym_abstract, - ACTIONS(4781), 1, - anon_sym_accessor, - STATE(2702), 1, - sym_accessibility_modifier, - STATE(2787), 1, - sym_override_modifier, + [39855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4773), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3447), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4710), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4712), 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, - ACTIONS(3651), 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, - [41545] = 8, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4783), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - STATE(1997), 1, - sym_arguments, - STATE(1998), 1, - sym_type_arguments, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39909] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 12, + ACTIONS(4714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175474,17 +172336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4017), 27, - sym__automatic_semicolon, + ACTIONS(4716), 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, @@ -175503,40 +172371,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [41608] = 15, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, + 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_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + 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(4787), 2, + 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(4789), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175544,21 +172499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 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, @@ -175566,151 +172518,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41685] = 31, - ACTIONS(3959), 1, + [40159] = 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), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4417), 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_implements, + [40213] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4722), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4421), 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40267] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4726), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4728), 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, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + 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(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4791), 6, + ACTIONS(4728), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [41794] = 15, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4789), 2, - anon_sym_get, - anon_sym_set, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 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, - [41871] = 3, + anon_sym_BQUOTE, + [40431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(4730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175724,18 +172768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 31, - sym__automatic_semicolon, + ACTIONS(4732), 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, @@ -175755,12 +172800,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41924] = 3, + 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, + 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(4732), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + 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_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(4734), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1911), 13, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175774,18 +172977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1909), 31, - sym__automatic_semicolon, + ACTIONS(1801), 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, @@ -175805,42 +173009,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41977] = 16, - ACTIONS(1588), 1, + 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(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3799), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4740), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175848,11 +173122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, @@ -175869,11 +173144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42056] = 3, + [40932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175887,7 +173162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 31, + ACTIONS(1809), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -175919,39 +173194,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42109] = 15, - ACTIONS(2291), 1, + [40985] = 16, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4742), 1, anon_sym_LBRACK, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175959,12 +173236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 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, @@ -175981,21 +173257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42186] = 8, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4793), 1, - anon_sym_DOT, - STATE(1995), 1, - sym_arguments, - STATE(1996), 1, - sym_type_arguments, + [41064] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 12, + ACTIONS(1871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176006,17 +173272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3454), 27, + ACTIONS(1869), 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, @@ -176035,92 +173306,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42249] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1737), 13, + 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, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1735), 31, + 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, - 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_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_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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42302] = 16, - ACTIONS(1588), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4744), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [41303] = 16, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, + ACTIONS(4433), 1, anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4742), 1, anon_sym_LBRACK, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176128,7 +173489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176149,43 +173510,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42381] = 17, - ACTIONS(1588), 1, + [41382] = 4, + ACTIONS(4746), 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), 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, + [41437] = 17, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4795), 1, + ACTIONS(4748), 1, anon_sym_STAR, - ACTIONS(4797), 1, + ACTIONS(4750), 1, anon_sym_LBRACE, - ACTIONS(4799), 1, + ACTIONS(4752), 1, anon_sym_async, - ACTIONS(4803), 1, + ACTIONS(4756), 1, anon_sym_readonly, - ACTIONS(4807), 1, + ACTIONS(4760), 1, sym__automatic_semicolon, - STATE(2672), 1, + STATE(2674), 1, sym_statement_block, - STATE(2750), 1, + STATE(2746), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4801), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(4805), 2, + ACTIONS(4758), 2, anon_sym_get, anon_sym_set, - STATE(3005), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 8, + ACTIONS(3758), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -176194,7 +173606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 18, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176213,47 +173625,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42462] = 15, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, + [41518] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1665), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4763), 5, anon_sym_COMMA, - ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1663), 13, anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1667), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [41575] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 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, + [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(4787), 2, + ACTIONS(4766), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, - anon_sym_get, - anon_sym_set, - STATE(3784), 3, + 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(3791), 7, + 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, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(3646), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176261,13 +173780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -176275,39 +173790,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42539] = 5, + [41707] = 7, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4810), 5, + ACTIONS(4606), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4313), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 24, + ACTIONS(3439), 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, @@ -176327,41 +173844,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42596] = 16, - ACTIONS(1588), 1, + [41768] = 15, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3882), 1, + ACTIONS(3803), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4740), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176369,11 +173884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, @@ -176390,41 +173906,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42675] = 16, - ACTIONS(1588), 1, + [41845] = 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_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1833), 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, + [41898] = 16, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3800), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, + ACTIONS(4433), 1, anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4742), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5129), 1, aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176432,7 +173998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176453,42 +174019,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42754] = 7, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 27, + ACTIONS(3501), 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_RBRACK, - anon_sym_DOT, + anon_sym_of, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176507,11 +174072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42815] = 3, + anon_sym_extends, + [42038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 13, + ACTIONS(1725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176525,7 +174091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 31, + ACTIONS(1723), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176557,39 +174123,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42868] = 15, - ACTIONS(2291), 1, + [42091] = 15, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3882), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(4740), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176597,7 +174163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176619,19 +174185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42945] = 7, - ACTIONS(4522), 1, + [42168] = 8, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4813), 1, + ACTIONS(4780), 1, anon_sym_DOT, - ACTIONS(4815), 1, - anon_sym_is, - STATE(1966), 1, + STATE(1901), 1, + sym_arguments, + STATE(1902), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(3445), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176644,13 +174212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 28, + ACTIONS(3441), 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, @@ -176673,30 +174240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [43006] = 12, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [42231] = 8, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4817), 1, + ACTIONS(4543), 1, anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, + ACTIONS(4782), 1, + anon_sym_DOT, + STATE(1903), 1, sym_arguments, - STATE(5093), 1, - sym_optional_chain, + STATE(1904), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(3996), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176709,13 +174267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 21, + ACTIONS(3998), 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, @@ -176729,136 +174290,48 @@ 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, - [43076] = 35, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3959), 1, + anon_sym_extends, + [42294] = 8, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(4824), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, + ACTIONS(4784), 1, + anon_sym_DOT, + STATE(1905), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - STATE(5620), 1, - sym_type_annotation, + STATE(1906), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4014), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [43192] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4830), 1, - anon_sym_LT, - ACTIONS(4833), 1, - anon_sym_satisfies, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 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(4618), 19, + ACTIONS(4016), 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, @@ -176872,91 +174345,81 @@ 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, - [43268] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_extends, + [42357] = 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(4788), 1, + anon_sym_static, + ACTIONS(4790), 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, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 5, + ACTIONS(4786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3312), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - [43376] = 4, - ACTIONS(3450), 1, - anon_sym_EQ, + 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, + [42436] = 4, + ACTIONS(4796), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(1661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176970,17 +174433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 29, + ACTIONS(1659), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -177000,98 +174463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43430] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4651), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [43538] = 6, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [42491] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3448), 13, + ACTIONS(1739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177105,10 +174482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1737), 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, @@ -177129,21 +174513,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43596] = 6, - ACTIONS(3484), 1, + anon_sym_PIPE_RBRACE, + [42544] = 15, + 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(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(3598), 1, + 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, + [42621] = 16, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + 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(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, + [42700] = 16, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 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(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, + [42779] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 5, + ACTIONS(4104), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4798), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3448), 13, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177157,10 +174729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4106), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177181,11 +174754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43654] = 3, + [42836] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 13, + ACTIONS(4614), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4801), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177199,14 +174781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 30, - sym__automatic_semicolon, + ACTIONS(4616), 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_DOT, @@ -177228,19 +174806,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [43706] = 6, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4813), 1, + [42893] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - STATE(1966), 1, - sym_type_arguments, + ACTIONS(4541), 1, + anon_sym_QMARK_DOT, + STATE(2315), 1, + sym_template_string, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177251,9 +174833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 28, + ACTIONS(1879), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177262,8 +174845,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -177279,40 +174860,42 @@ 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, - [43764] = 5, - ACTIONS(4522), 1, - anon_sym_LT, - STATE(1975), 1, - sym_type_arguments, + [42957] = 8, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4804), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2326), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1663), 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(4029), 29, - sym__automatic_semicolon, + ACTIONS(1667), 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, @@ -177332,91 +174915,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [43820] = 6, - ACTIONS(4514), 1, + [43019] = 18, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4871), 1, + 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, 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(4039), 13, + 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(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 27, + ACTIONS(4583), 17, 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, - [43878] = 4, - ACTIONS(4877), 1, - sym_regex_flags, + [43101] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 16, + ACTIONS(2326), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4069), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1663), 10, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4875), 26, + ACTIONS(1667), 26, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_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, @@ -177432,255 +175027,163 @@ 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, - [43932] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [43161] = 18, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4585), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4710), 5, + ACTIONS(4583), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [44040] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4610), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_BQUOTE, - [44148] = 18, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_satisfies, + [43243] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4108), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4106), 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, - [44230] = 3, + [43303] = 8, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3175), 13, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4838), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4114), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4102), 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(3177), 30, - sym__automatic_semicolon, + ACTIONS(4106), 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, @@ -177700,559 +175203,537 @@ 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, - [44282] = 13, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [43365] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4879), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 20, - sym__automatic_semicolon, + ACTIONS(4106), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44354] = 25, - ACTIONS(4425), 1, + [43425] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4846), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4849), 1, + anon_sym_satisfies, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 11, + ACTIONS(4583), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [44450] = 26, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 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_BQUOTE, + [43503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(3186), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(3188), 30, 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, - [44548] = 16, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4855), 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(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4879), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 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, + anon_sym_PIPE_RBRACE, + [43555] = 4, + ACTIONS(3437), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 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(4481), 19, - sym__automatic_semicolon, + ACTIONS(3439), 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, - [44626] = 22, - ACTIONS(4425), 1, + [43609] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + 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(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 12, + ACTIONS(4642), 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_BQUOTE, - anon_sym_satisfies, - [44716] = 23, - ACTIONS(4425), 1, + [43717] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + 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(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 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, - [44808] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4063), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4065), 30, + ACTIONS(4708), 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_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_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, - [44860] = 24, - ACTIONS(4425), 1, + [43825] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4855), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4820), 1, anon_sym_LT, - STATE(1945), 1, + 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(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 11, + ACTIONS(4716), 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_QMARK_QMARK, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [44954] = 15, - ACTIONS(4425), 1, + [43933] = 13, + 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(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, + 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, + [44005] = 13, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4879), 1, + ACTIONS(4846), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4585), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -178261,9 +175742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(4583), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178275,6 +175757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -178283,441 +175766,667 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45030] = 16, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [44077] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4879), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, + 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, + [44149] = 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, - anon_sym_SLASH, + 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(4481), 18, + 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(4728), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [44257] = 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, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + 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_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4648), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [45108] = 20, - ACTIONS(4425), 1, + [44365] = 25, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 3, + 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(4483), 5, + ACTIONS(4583), 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, + [44461] = 6, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_QMARK, + 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, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 14, - sym__automatic_semicolon, + ACTIONS(3439), 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45194] = 27, - ACTIONS(4425), 1, + [44519] = 24, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 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, - [45294] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + [44613] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + 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(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, + 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(4501), 5, 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, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [45366] = 31, - ACTIONS(4425), 1, + anon_sym_of, + anon_sym_BQUOTE, + [44721] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 5, + ACTIONS(4732), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [45474] = 31, - ACTIONS(4425), 1, + [44829] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4419), 5, + ACTIONS(4503), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [45582] = 11, - ACTIONS(4425), 1, + [44937] = 12, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178730,13 +176439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 23, + ACTIONS(4676), 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, @@ -178750,19 +176459,39 @@ 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, - [45650] = 4, - ACTIONS(4815), 1, - anon_sym_is, + [45007] = 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(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4898), 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(4045), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -178771,21 +176500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 29, + ACTIONS(4699), 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, @@ -178799,97 +176521,201 @@ 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, + [45083] = 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, - anon_sym_extends, - [45704] = 4, - ACTIONS(4885), 1, - anon_sym_is, + 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(4027), 13, + ACTIONS(4808), 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(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + 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(4029), 29, + 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(4708), 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, + [45191] = 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, - anon_sym_QMARK_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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + 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(4505), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [45758] = 13, - ACTIONS(2291), 1, + [45299] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4901), 2, sym_number, sym_private_property_identifier, - STATE(3784), 3, + STATE(3473), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + 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, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178897,15 +176723,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, @@ -178913,37 +176736,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45830] = 4, + [45373] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(2326), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 4, + ACTIONS(4066), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4369), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 26, + ACTIONS(1667), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, 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, anon_sym_AMP_AMP, @@ -178963,119 +176789,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45884] = 4, - ACTIONS(4815), 1, - anon_sym_is, + [45433] = 20, + 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, + 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(4035), 13, + ACTIONS(4808), 2, anon_sym_STAR, - anon_sym_BANG, + 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, - anon_sym_GT_GT, + ACTIONS(4885), 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_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 29, + ACTIONS(4583), 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, - anon_sym_extends, - [45938] = 6, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3558), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, + [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, - 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(4832), 1, anon_sym_PERCENT, + ACTIONS(4834), 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, - [45996] = 4, + ACTIONS(4846), 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(4181), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -179084,51 +176894,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 26, + ACTIONS(4583), 19, + 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, - [46050] = 5, + [45595] = 13, + 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(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(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4887), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + 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_RBRACK, - ACTIONS(4313), 13, + 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, + [45667] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179142,10 +176993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 23, + ACTIONS(3164), 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, @@ -179166,125 +177022,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46106] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4659), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4889), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [45719] = 35, + ACTIONS(3530), 1, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4657), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4661), 23, - sym__ternary_qmark, - anon_sym_as, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [46162] = 5, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(4913), 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(5910), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4891), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1706), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 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(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [46218] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4516), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45835] = 11, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4520), 1, - anon_sym_QMARK_DOT, - STATE(2081), 1, - sym_template_string, - STATE(5093), 1, + ACTIONS(4915), 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(1905), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179295,16 +177136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 24, + ACTIONS(4416), 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_AMP_AMP, @@ -179322,196 +177160,400 @@ 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, - [46282] = 7, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(4712), 1, + [45903] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4715), 2, + 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(4123), 6, - sym__automatic_semicolon, + 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, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4918), 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(5804), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, - sym__ternary_qmark, - anon_sym_as, + 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, + [46019] = 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, - anon_sym_QMARK_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + 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(4853), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 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(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, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4583), 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, - [46342] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, + [46117] = 13, + 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(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4920), 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(2333), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4214), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1706), 10, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 26, + ACTIONS(4583), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, 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, - [46402] = 7, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + [46189] = 27, + 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(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, + 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(4105), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 10, + ACTIONS(4808), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + 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(4317), 26, + 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), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46289] = 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, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4501), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [46462] = 14, - ACTIONS(1588), 1, + [46397] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4895), 1, + ACTIONS(4925), 1, anon_sym_static, - ACTIONS(4897), 1, + ACTIONS(4927), 1, anon_sym_readonly, - ACTIONS(4899), 1, + ACTIONS(4929), 1, anon_sym_abstract, - ACTIONS(4901), 1, + ACTIONS(4931), 1, anon_sym_accessor, - STATE(2814), 1, + STATE(2782), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -179521,7 +177563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179542,99 +177584,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46536] = 12, - ACTIONS(4425), 1, + [46471] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4903), 1, + 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(1945), 1, + 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(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4824), 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(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 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, + 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_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [46606] = 8, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_LBRACK, + [46579] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4906), 2, + ACTIONS(4104), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4933), 5, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2333), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1706), 11, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4106), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -179654,41 +177712,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46668] = 8, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + [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(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4910), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4105), 4, + 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_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4313), 11, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46731] = 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_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + 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, @@ -179708,104 +177830,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46730] = 31, - ACTIONS(4425), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [46783] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4584), 5, + ACTIONS(4642), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [46838] = 11, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4914), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [46891] = 4, + ACTIONS(4778), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179816,15 +177926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 23, + ACTIONS(4028), 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, @@ -179842,325 +177958,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46906] = 31, - ACTIONS(4425), 1, + anon_sym_extends, + [46945] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4493), 5, + ACTIONS(4648), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47014] = 35, - ACTIONS(3541), 1, + [47053] = 35, + ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(4917), 1, + ACTIONS(4935), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, - STATE(5648), 1, + STATE(5791), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47130] = 31, - ACTIONS(4425), 1, + [47169] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4536), 5, + ACTIONS(4728), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [47238] = 31, - ACTIONS(4425), 1, + [47277] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, + anon_sym_satisfies, + ACTIONS(4920), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4538), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [47346] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3171), 13, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -180169,1080 +178235,815 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 30, + ACTIONS(4583), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, + [47355] = 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [47398] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_extends, + 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(4211), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4214), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1706), 10, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 26, + 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(4732), 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_DOT, + anon_sym_BQUOTE, + [47463] = 31, + ACTIONS(4418), 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, - [47458] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47530] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47602] = 7, - ACTIONS(4105), 1, - anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4319), 2, - anon_sym_COMMA, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 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(4317), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4539), 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(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, anon_sym_PERCENT, + ACTIONS(4834), 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, - [47662] = 35, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(4919), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, - STATE(5816), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47778] = 31, - ACTIONS(4425), 1, + ACTIONS(4734), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [47571] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4548), 5, + ACTIONS(4734), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47886] = 31, - ACTIONS(4425), 1, + [47679] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4734), 5, + ACTIONS(4519), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47994] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [47787] = 4, + ACTIONS(4941), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, + 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_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48066] = 35, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(4921), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - STATE(5728), 1, - sym_type_annotation, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1685), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48182] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(1683), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [47893] = 6, + ACTIONS(3541), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(3544), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + 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, - ACTIONS(4949), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4548), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48290] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [47951] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4734), 5, + ACTIONS(4581), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [48398] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [48059] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4058), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 5, + ACTIONS(4060), 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, - [48506] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [48111] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4710), 5, + ACTIONS(4519), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [48614] = 31, - ACTIONS(4425), 1, + [48219] = 26, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + 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(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + 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(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4610), 5, + ACTIONS(4583), 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, - [48722] = 18, - ACTIONS(4425), 1, + anon_sym_satisfies, + [48317] = 15, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, - anon_sym_GT_GT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4699), 19, 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, @@ -181250,33 +179051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [48804] = 13, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [48393] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(1665), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4946), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181287,472 +179075,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 20, - sym__automatic_semicolon, + ACTIONS(1667), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48876] = 25, - ACTIONS(4425), 1, + [48449] = 20, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 11, + 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_RBRACE, 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, - [48972] = 26, - ACTIONS(4425), 1, + [48535] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4920), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + 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, + 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, - [49070] = 16, - ACTIONS(4425), 1, + [48613] = 11, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4948), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4414), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(4416), 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_BQUOTE, anon_sym_satisfies, - [49148] = 22, - ACTIONS(4425), 1, + [48681] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4943), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + 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(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 12, + ACTIONS(4577), 5, 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, - [49238] = 23, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [48789] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4088), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 12, - sym__automatic_semicolon, + ACTIONS(4084), 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [49330] = 24, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [48843] = 7, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(4606), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, + ACTIONS(4609), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4146), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 11, - sym__automatic_semicolon, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + 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, - [49424] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, + [48903] = 6, + ACTIONS(4543), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4776), 1, + anon_sym_DOT, + STATE(1888), 1, sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4006), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -181761,61 +179487,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(3501), 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, - [49500] = 16, - ACTIONS(4425), 1, + anon_sym_extends, + [48961] = 12, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4674), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -181826,18 +179555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4676), 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, @@ -181845,801 +179576,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [49578] = 20, - ACTIONS(4425), 1, + anon_sym_satisfies, + [49031] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4943), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + 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(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4481), 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, - [49664] = 27, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + ACTIONS(4851), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4503), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [49764] = 31, - ACTIONS(4425), 1, + [49139] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 5, + ACTIONS(4505), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [49872] = 31, - ACTIONS(4425), 1, + [49247] = 22, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + 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(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4419), 5, + ACTIONS(4583), 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, - [49980] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [49337] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4584), 5, + ACTIONS(4455), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [50088] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [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, - ACTIONS(4516), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49499] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3579), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(3577), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + 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, - ACTIONS(4949), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4489), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50196] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [49557] = 23, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4879), 1, + anon_sym_AMP, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + 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(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4493), 5, + ACTIONS(4583), 12, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [50304] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49649] = 4, + ACTIONS(4778), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4022), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4536), 5, + 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_BQUOTE, - [50412] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4538), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50520] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + anon_sym_extends, + [49703] = 27, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + 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(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4544), 5, + ACTIONS(4583), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [50628] = 14, - ACTIONS(1588), 1, + anon_sym_satisfies, + [49803] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_static, - ACTIONS(4966), 1, - anon_sym_readonly, - ACTIONS(4968), 1, - anon_sym_abstract, - ACTIONS(4970), 1, - anon_sym_accessor, - STATE(2818), 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(4962), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - STATE(3439), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(3651), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182647,12 +180213,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, @@ -182660,11 +180229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50702] = 3, + [49875] = 4, + ACTIONS(4954), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3167), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182678,7 +180249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3169), 30, + ACTIONS(4032), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182708,120 +180279,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [50754] = 31, - ACTIONS(4425), 1, + [49929] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4544), 5, + ACTIONS(4577), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [50862] = 16, - ACTIONS(1588), 1, + [50037] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 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(4003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4475), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -182829,18 +180391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, + 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, @@ -182848,37 +180415,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50940] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [50109] = 5, + ACTIONS(4543), 1, + anon_sym_LT, + STATE(1894), 1, + sym_type_arguments, + 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), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 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, - ACTIONS(4972), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, + anon_sym_extends, + [50165] = 6, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1895), 1, sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(4052), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -182887,14 +180487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 19, + ACTIONS(4054), 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, @@ -182908,359 +180513,608 @@ 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, - [51016] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + anon_sym_extends, + [50223] = 16, + 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(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, + 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), 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, + [50301] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + 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(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4651), 5, + ACTIONS(4581), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [51124] = 31, - ACTIONS(4425), 1, + [50409] = 24, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + 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(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4489), 5, + ACTIONS(4583), 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, - [51232] = 3, + anon_sym_satisfies, + [50503] = 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(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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4035), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, 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(4037), 29, + ACTIONS(4583), 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, - [51283] = 3, + [50581] = 22, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4067), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 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(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4069), 29, + 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, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_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, - [51334] = 3, + [50671] = 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(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(4857), 1, + anon_sym_AMP, + 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(4267), 13, - anon_sym_STAR, + ACTIONS(4585), 2, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, + 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, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4269), 29, + 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(4583), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [50763] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_extends, - [51385] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(4958), 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(5616), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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, + [50879] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_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, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4455), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51436] = 3, + [50987] = 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(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4920), 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(4275), 13, + ACTIONS(4808), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -183269,45 +181123,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 29, + ACTIONS(4583), 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, - [51487] = 3, + [51063] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4614), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4960), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183321,15 +181172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 29, - sym__automatic_semicolon, + ACTIONS(4616), 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, @@ -183350,14 +181196,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51538] = 3, + [51119] = 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(4962), 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(4275), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -183366,21 +181235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 29, - sym__automatic_semicolon, + ACTIONS(4699), 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, @@ -183394,16 +181254,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51589] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(1659), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183417,15 +181387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4283), 29, - sym__automatic_semicolon, + ACTIONS(1667), 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, @@ -183446,12 +181413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51640] = 3, + [51373] = 5, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2108), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183465,13 +181435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 29, + ACTIONS(4296), 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, @@ -183494,60 +181463,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51691] = 3, + [51428] = 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(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 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, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + 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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4283), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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, + [51511] = 33, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + 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(4969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51742] = 3, + [51622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183561,7 +181623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 29, + ACTIONS(4142), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183591,11 +181653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51793] = 3, + [51673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183609,7 +181671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 29, + ACTIONS(4032), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183639,11 +181701,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51844] = 3, + [51724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183657,7 +181719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 29, + ACTIONS(4146), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183687,11 +181749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51895] = 3, + [51775] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183705,7 +181767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 29, + ACTIONS(4024), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183735,11 +181797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51946] = 3, + [51826] = 4, + ACTIONS(4971), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183753,7 +181817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 29, + ACTIONS(4150), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183763,7 +181827,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, @@ -183783,11 +181846,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51997] = 3, + [51879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183801,7 +181864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 29, + ACTIONS(4156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183831,11 +181894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52048] = 3, + [51930] = 4, + ACTIONS(4973), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183849,7 +181914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 29, + ACTIONS(4156), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183858,7 +181923,6 @@ 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, @@ -183879,29 +181943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52099] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [51983] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 11, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 28, + ACTIONS(4162), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183930,11 +181990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52156] = 3, + anon_sym_extends, + [52034] = 4, + ACTIONS(4032), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183948,7 +182011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 29, + ACTIONS(4304), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183977,26 +182040,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(4302), 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(4335), 29, + ACTIONS(4304), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184025,30 +182091,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52258] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [52144] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2315), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 11, + 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(4335), 28, + ACTIONS(1879), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184075,84 +182140,39 @@ 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, - [52315] = 3, + [52199] = 6, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4606), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4609), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4265), 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, - [52366] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2343), 13, + ACTIONS(3435), 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(2341), 29, + ACTIONS(3439), 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, @@ -184172,83 +182192,38 @@ 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, - [52417] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4618), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4621), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4339), 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, - [52468] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4341), 13, + ACTIONS(3435), 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(4343), 29, + ACTIONS(3439), 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, @@ -184268,83 +182243,39 @@ 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, - [52519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4606), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4609), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4343), 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, - [52570] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4341), 13, + ACTIONS(3435), 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(4343), 29, + ACTIONS(3439), 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, @@ -184364,26 +182295,29 @@ static const uint16_t ts_small_parse_table[] = { 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_extends, - [52621] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4338), 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(4351), 29, + ACTIONS(4340), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184412,12 +182346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52672] = 3, + [52429] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184431,7 +182364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + ACTIONS(2326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184461,11 +182394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52723] = 3, + [52480] = 4, + ACTIONS(4780), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(3445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184479,7 +182414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + ACTIONS(3441), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184489,7 +182424,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, @@ -184509,11 +182443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52774] = 3, + [52533] = 4, + ACTIONS(4981), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4164), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184527,7 +182463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, + ACTIONS(4166), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184537,7 +182473,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, @@ -184557,11 +182492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52825] = 3, + [52586] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184575,7 +182510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, + ACTIONS(4172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184605,82 +182540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52876] = 3, + [52637] = 9, + ACTIONS(4024), 1, + anon_sym_extends, + ACTIONS(4618), 1, + anon_sym_LBRACK, + ACTIONS(4988), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4621), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4355), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4983), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4985), 2, anon_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, - [52927] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4357), 13, + anon_sym_COLON, + ACTIONS(3435), 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(4359), 29, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -184700,35 +182594,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52978] = 3, + [52700] = 9, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_QMARK, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 13, + ACTIONS(3567), 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 29, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -184748,12 +182648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53029] = 3, + [52763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184767,7 +182666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 29, + ACTIONS(4114), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184797,11 +182696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53080] = 3, + [52814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2353), 13, + ACTIONS(4176), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184815,7 +182714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2351), 29, + ACTIONS(4178), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184845,17 +182744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53131] = 3, + [52865] = 4, + ACTIONS(4975), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 13, + ACTIONS(4180), 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, @@ -184863,7 +182763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 29, + ACTIONS(4182), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184893,11 +182793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53182] = 3, + [52918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184911,7 +182811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4132), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184941,11 +182841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53233] = 3, + [52969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184959,7 +182859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4186), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184989,11 +182889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53284] = 3, + [53020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185007,7 +182907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4190), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185037,25 +182937,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53335] = 3, + [53071] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4192), 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(4387), 29, + ACTIONS(4194), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185084,26 +182988,30 @@ 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, - [53386] = 3, + ACTIONS(4973), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4154), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4196), 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(4387), 29, + ACTIONS(4198), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185112,7 +183020,6 @@ 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, @@ -185132,12 +183039,13 @@ 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, - [53437] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185151,7 +183059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 29, + ACTIONS(4202), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185180,12 +183088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53488] = 3, + [53238] = 4, + ACTIONS(4973), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185199,7 +183108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 29, + ACTIONS(4208), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185208,7 +183117,6 @@ 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, @@ -185229,11 +183137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53539] = 3, + [53291] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185247,7 +183155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 29, + ACTIONS(4138), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185277,11 +183185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53590] = 3, + [53342] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185295,7 +183203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 29, + ACTIONS(4212), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185325,11 +183233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53641] = 3, + [53393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185343,7 +183251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4395), 29, + ACTIONS(4216), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185373,112 +183281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53692] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4401), 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(4403), 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, - [53749] = 5, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4749), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1704), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1702), 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, - [53804] = 3, + [53444] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 13, + ACTIONS(4090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185492,7 +183299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 29, + ACTIONS(4092), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185522,414 +183329,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53855] = 33, - ACTIONS(4425), 1, + [53495] = 33, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4981), 1, + ACTIONS(4994), 1, anon_sym_COMMA, - ACTIONS(4984), 1, + ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4986), 2, + ACTIONS(4999), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53966] = 33, - ACTIONS(4425), 1, + [53606] = 33, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + 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(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4981), 1, + ACTIONS(4994), 1, anon_sym_COMMA, - ACTIONS(4984), 1, + ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4734), 2, + ACTIONS(4501), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54077] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [54160] = 33, - ACTIONS(4425), 1, + [53717] = 33, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4984), 1, - anon_sym_RBRACE, - ACTIONS(4990), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4710), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54271] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4993), 1, - anon_sym_COMMA, - ACTIONS(4996), 1, + ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(1945), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 2, + ACTIONS(4577), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54382] = 6, - ACTIONS(4722), 1, - anon_sym_LBRACK, + [53828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4725), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + 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_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185949,91 +183610,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54439] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(4518), 1, - aux_sym_sequence_expression_repeat1, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5000), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54550] = 4, - ACTIONS(4029), 1, anon_sym_extends, + [53879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4086), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186047,7 +183629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 28, + ACTIONS(4088), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186076,118 +183658,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54603] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - anon_sym_GT, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - ACTIONS(5004), 1, - anon_sym_in, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5002), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [54712] = 9, - ACTIONS(2333), 1, anon_sym_extends, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(5007), 1, - anon_sym_RPAREN, + [53930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4891), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1706), 11, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4224), 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, @@ -186207,29 +183706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54775] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, anon_sym_extends, + [53981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 11, + ACTIONS(4226), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 28, + ACTIONS(4228), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186258,41 +183754,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54832] = 9, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5010), 1, - anon_sym_RPAREN, + [54032] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4887), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4313), 11, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4232), 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, @@ -186312,11 +183802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54895] = 3, + anon_sym_extends, + [54083] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186330,7 +183821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2333), 29, + ACTIONS(4408), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186360,13 +183851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54946] = 4, - ACTIONS(4793), 1, - anon_sym_DOT, + [54134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186380,7 +183869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3454), 28, + ACTIONS(4236), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186390,6 +183879,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, @@ -186409,11 +183899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54999] = 3, + [54185] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186427,7 +183917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4123), 29, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186457,13 +183947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55050] = 4, - ACTIONS(5013), 1, - anon_sym_DOT, + [54236] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186477,7 +183965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 28, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186487,6 +183975,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, @@ -186506,29 +183995,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55103] = 6, - ACTIONS(4975), 1, + [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(4977), 1, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + 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, + 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_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54398] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 11, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4299), 28, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186557,29 +184120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55160] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, anon_sym_extends, + [54449] = 4, + ACTIONS(4254), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 11, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 28, + ACTIONS(4252), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186589,7 +184151,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, @@ -186608,11 +184169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55217] = 3, + anon_sym_extends, + [54502] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(3623), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186626,7 +184188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 29, + ACTIONS(3419), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186656,13 +184218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55268] = 4, - ACTIONS(4315), 1, - anon_sym_EQ, + [54553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 13, + ACTIONS(3625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186676,7 +184236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 28, + ACTIONS(3429), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186705,11 +184265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55321] = 3, + anon_sym_extends, + [54604] = 4, + ACTIONS(4257), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186723,7 +184286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 29, + ACTIONS(4252), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186733,7 +184296,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, @@ -186753,165 +184315,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55372] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [54657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [55455] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4260), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4847), 1, anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(4518), 1, - aux_sym_sequence_expression_repeat1, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5017), 2, + ACTIONS(4262), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 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, - [55566] = 6, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, + [54708] = 6, + ACTIONS(4975), 1, anon_sym_AMP, + ACTIONS(4977), 1, anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4979), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -186919,14 +184385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + ACTIONS(4262), 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, @@ -186946,41 +184414,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55623] = 9, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(4722), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_RPAREN, + [54765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5021), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3448), 11, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4266), 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, @@ -187000,41 +184461,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55686] = 9, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(4712), 1, - anon_sym_LBRACK, + anon_sym_extends, + [54816] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + ACTIONS(4268), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4270), 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, @@ -187054,15 +184509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55749] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - STATE(2130), 1, - sym_arguments, + anon_sym_extends, + [54867] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 13, + ACTIONS(4272), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187076,12 +184528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4331), 27, + ACTIONS(4274), 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, @@ -187104,41 +184557,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55804] = 7, - ACTIONS(3502), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_QMARK_DOT, + anon_sym_extends, + [54918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 20, + ACTIONS(4278), 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, @@ -187156,115 +184605,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55863] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(4518), 1, - aux_sym_sequence_expression_repeat1, - STATE(5093), 1, - sym_optional_chain, + anon_sym_extends, + [54969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4280), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5028), 2, + ACTIONS(4282), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 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, - [55974] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55020] = 4, + ACTIONS(4975), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4284), 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(3452), 22, + ACTIONS(4286), 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, @@ -187284,38 +184702,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56029] = 6, - ACTIONS(4743), 1, - anon_sym_LBRACK, + anon_sym_extends, + [55073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 10, + ACTIONS(4290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 26, + 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_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187335,15 +184750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56086] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2081), 1, - sym_template_string, + anon_sym_extends, + [55124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187357,7 +184769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 27, + ACTIONS(4064), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187384,128 +184796,14 @@ 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, - [56141] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5030), 1, - anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, - ACTIONS(5036), 1, - anon_sym_readonly, - STATE(2761), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5034), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5038), 2, - anon_sym_get, - anon_sym_set, - STATE(3023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [56214] = 12, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4901), 1, - anon_sym_abstract, - ACTIONS(5030), 1, - anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5034), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5038), 2, - anon_sym_get, - anon_sym_set, - STATE(3023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [56283] = 3, + anon_sym_extends, + [55175] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4103), 13, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187519,7 +184817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4105), 29, + ACTIONS(2338), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187549,131 +184847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56334] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_STAR, - ACTIONS(5042), 1, - anon_sym_async, - ACTIONS(5046), 1, - anon_sym_readonly, - STATE(2751), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5044), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - STATE(3012), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [56407] = 12, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_STAR, - ACTIONS(5042), 1, - anon_sym_async, - ACTIONS(5052), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5050), 2, - sym_number, - sym_private_property_identifier, - STATE(3013), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [56476] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - STATE(2293), 1, - sym_arguments, + [55226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187687,12 +184865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 27, + 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, @@ -187715,164 +184894,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56531] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, - ACTIONS(5060), 1, - anon_sym_readonly, - STATE(2746), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5058), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [56604] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [56687] = 9, - ACTIONS(4047), 1, anon_sym_extends, - ACTIONS(4722), 1, - anon_sym_LBRACK, - ACTIONS(5068), 1, - anon_sym_RPAREN, + [55277] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5066), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3448), 11, + ACTIONS(4306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4308), 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, @@ -187892,41 +184942,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56750] = 9, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(4712), 1, - anon_sym_LBRACK, + anon_sym_extends, + [55328] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4312), 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, @@ -187946,41 +184990,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56813] = 9, - ACTIONS(2333), 1, anon_sym_extends, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(4906), 1, - anon_sym_RPAREN, + [55379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4751), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1706), 11, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4316), 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, @@ -188000,41 +185038,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56876] = 9, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4910), 1, - anon_sym_RPAREN, + [55430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4810), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4313), 11, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4312), 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, @@ -188054,16 +185086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56939] = 4, + anon_sym_extends, + [55481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4369), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188077,12 +185105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 25, + ACTIONS(4316), 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, @@ -188103,11 +185134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56992] = 3, + anon_sym_extends, + [55532] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188121,7 +185153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 29, + ACTIONS(4320), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188151,16 +185183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57043] = 4, + [55583] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4369), 13, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188174,12 +185201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 25, + ACTIONS(4324), 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, @@ -188200,106 +185230,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57096] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [57179] = 10, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(2333), 1, anon_sym_extends, - ACTIONS(2335), 1, - anon_sym_QMARK, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(4891), 1, - anon_sym_COLON, + [55634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4906), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1706), 11, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4320), 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, @@ -188319,42 +185278,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57244] = 10, - ACTIONS(4103), 1, - anon_sym_QMARK, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4887), 1, - anon_sym_COLON, + [55685] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4910), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4313), 11, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4324), 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, @@ -188374,38 +185326,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57309] = 6, + anon_sym_extends, + [55736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4712), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4123), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4328), 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, @@ -188425,38 +185374,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57366] = 6, + anon_sym_extends, + [55787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4743), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4127), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4702), 11, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 22, + ACTIONS(4332), 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, @@ -188476,38 +185422,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57423] = 6, + anon_sym_extends, + [55838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4722), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4047), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4328), 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, @@ -188527,18 +185470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57480] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + anon_sym_extends, + [55889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 12, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -188546,7 +185489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4113), 29, + ACTIONS(4332), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188576,11 +185519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57533] = 3, + [55940] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4334), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188594,7 +185537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 29, + ACTIONS(4336), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188624,13 +185567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57584] = 4, - ACTIONS(3484), 1, - anon_sym_EQ, + [55991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188644,7 +185585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 28, + ACTIONS(4344), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188673,25 +185614,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57637] = 3, - ACTIONS(5), 2, - sym_html_comment, + anon_sym_extends, + [56042] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(4346), 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(4127), 29, + ACTIONS(4348), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188720,71 +185666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57688] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(5077), 1, - anon_sym_RBRACE, - STATE(5037), 1, - aux_sym_object_pattern_repeat1, + [56099] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5079), 2, - sym_number, - sym_private_property_identifier, - STATE(4986), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5975), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5073), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57761] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4133), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188798,7 +185684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4135), 29, + ACTIONS(4352), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188828,29 +185714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57812] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [56150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 11, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 28, + ACTIONS(4356), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188879,18 +185761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57869] = 6, - ACTIONS(4085), 1, anon_sym_extends, - ACTIONS(5081), 1, - anon_sym_LBRACK, + [56201] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4145), 11, + ACTIONS(4354), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188902,7 +185784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 27, + ACTIONS(4356), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188911,6 +185793,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, @@ -188930,90 +185813,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57926] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [56258] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4124), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(2332), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4984), 2, + ACTIONS(2330), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5083), 2, - sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 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, - [58035] = 4, - ACTIONS(5081), 1, - anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56360] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189027,7 +185927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4159), 28, + ACTIONS(4360), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189036,6 +185936,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, @@ -189056,68 +185957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58088] = 12, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4771), 1, - anon_sym_LBRACK, - ACTIONS(4781), 1, - anon_sym_abstract, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4801), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4805), 2, - anon_sym_get, - anon_sym_set, - STATE(3005), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [58157] = 3, + [56411] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189131,7 +185975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 29, + ACTIONS(4364), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189161,13 +186005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58208] = 4, - ACTIONS(5085), 1, - anon_sym_DOT, + [56462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189181,7 +186023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4079), 28, + ACTIONS(4364), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189191,6 +186033,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, @@ -189210,41 +186053,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58261] = 7, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + [56513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + 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, @@ -189262,11 +186100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58320] = 3, + anon_sym_extends, + [56564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189280,7 +186119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 29, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189310,11 +186149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58371] = 3, + [56615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189328,7 +186167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 29, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189358,37 +186197,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58422] = 5, + [56666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 10, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + 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, @@ -189408,38 +186244,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58477] = 6, - ACTIONS(4127), 1, anon_sym_extends, + [56717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 10, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 26, + ACTIONS(4372), 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, @@ -189459,13 +186292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58534] = 4, - ACTIONS(4165), 1, anon_sym_extends, + [56768] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189479,7 +186311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 28, + ACTIONS(4372), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189508,11 +186340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58587] = 3, + anon_sym_extends, + [56819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189526,7 +186359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 29, + ACTIONS(4372), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189556,13 +186389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58638] = 4, - ACTIONS(5081), 1, - anon_sym_LBRACK, + [56870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189576,7 +186407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 28, + ACTIONS(4376), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189585,6 +186416,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, @@ -189605,89 +186437,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58691] = 6, - ACTIONS(4123), 1, - anon_sym_extends, + [56921] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4378), 13, 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(3452), 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, - [58748] = 6, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4722), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4725), 3, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3448), 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(3452), 26, + 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, @@ -189707,39 +186484,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58805] = 7, - ACTIONS(3539), 1, - anon_sym_EQ, - ACTIONS(4123), 1, anon_sym_extends, + [56972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, + 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, @@ -189759,13 +186532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58864] = 4, - ACTIONS(4659), 1, - anon_sym_EQ, + anon_sym_extends, + [57023] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 13, + ACTIONS(2344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189779,7 +186551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 28, + ACTIONS(2342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189808,70 +186580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58917] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(5089), 1, - anon_sym_RBRACE, - STATE(4831), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5079), 2, - sym_number, - sym_private_property_identifier, - STATE(4816), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5975), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5087), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58990] = 3, + anon_sym_extends, + [57074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189885,7 +186599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4091), 29, + ACTIONS(4388), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189915,78 +186629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59041] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 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(2005), 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, - [59094] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [57125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 11, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 28, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190015,11 +186676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59151] = 3, + anon_sym_extends, + [57176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190033,7 +186695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 29, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190063,18 +186725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59202] = 6, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(1712), 1, - sym__automatic_semicolon, + [57227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1706), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190088,12 +186743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 25, + 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, @@ -190114,75 +186772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59259] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [59342] = 3, + anon_sym_extends, + [57278] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190196,7 +186791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4075), 29, + ACTIONS(4396), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190226,11 +186821,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59393] = 3, + [57329] = 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(5009), 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(2339), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190241,21 +186852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2337), 29, - sym__automatic_semicolon, + ACTIONS(4416), 22, 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, @@ -190273,12 +186876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59444] = 3, + anon_sym_implements, + [57396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190292,7 +186895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 29, + ACTIONS(4396), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190322,11 +186925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59495] = 3, + [57447] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190340,7 +186943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4185), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190370,11 +186973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59546] = 3, + [57498] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190388,7 +186991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190418,11 +187021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59597] = 3, + [57549] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190436,7 +187039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190466,11 +187069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59648] = 3, + [57600] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190484,7 +187087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 29, + ACTIONS(4404), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190514,25 +187117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59699] = 3, + [57651] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4072), 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(4201), 29, + ACTIONS(4074), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190561,12 +187168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59750] = 3, + [57708] = 5, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4796), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(1661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190580,8 +187190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 29, - sym__automatic_semicolon, + ACTIONS(1659), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -190609,64 +187218,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59801] = 7, - ACTIONS(3508), 1, + [57763] = 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(4429), 1, anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, + ACTIONS(4736), 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, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + 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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + 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, + [57846] = 5, + ACTIONS(4535), 1, 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, - [59860] = 3, + STATE(2088), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4207), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190680,13 +187304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4209), 29, + ACTIONS(4220), 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, @@ -190709,35 +187332,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59911] = 3, + [57901] = 6, + ACTIONS(4618), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4217), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4219), 29, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -190757,132 +187383,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59962] = 4, - ACTIONS(4225), 1, + [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(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4810), 1, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4223), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4842), 1, 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, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60015] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3635), 13, + ACTIONS(4808), 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(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3436), 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(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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + ACTIONS(5012), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [58067] = 9, + ACTIONS(2326), 1, anon_sym_extends, - [60066] = 3, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(5017), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3628), 13, + 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 29, - sym__automatic_semicolon, + ACTIONS(1667), 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, @@ -190902,37 +187514,42 @@ 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_LBRACK, + ACTIONS(4114), 1, anon_sym_extends, - [60117] = 4, - ACTIONS(4228), 1, - anon_sym_DOT, + ACTIONS(5020), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 13, + ACTIONS(4104), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4933), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4102), 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(4223), 28, - sym__automatic_semicolon, + ACTIONS(4106), 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, anon_sym_PIPE_PIPE, @@ -190951,12 +187568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60170] = 3, + [58193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190970,7 +187586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 29, + ACTIONS(4028), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191000,7 +187616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60221] = 6, + [58244] = 6, ACTIONS(4975), 1, anon_sym_AMP, ACTIONS(4977), 1, @@ -191010,7 +187626,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 11, + ACTIONS(4094), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191022,7 +187638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 28, + ACTIONS(4096), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191051,25 +187667,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60278] = 3, + [58301] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4098), 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(4237), 29, + ACTIONS(4100), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191098,35 +187718,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60329] = 3, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 29, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -191146,38 +187892,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60380] = 14, - ACTIONS(1588), 1, + [58571] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5033), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5035), 1, anon_sym_async, - ACTIONS(5097), 1, + ACTIONS(5039), 1, anon_sym_readonly, - STATE(2754), 1, + STATE(2755), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5095), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - ACTIONS(5099), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(3037), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -191187,7 +187932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 18, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191206,33 +187951,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60453] = 12, - ACTIONS(1588), 1, + [58644] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(4931), 1, + anon_sym_abstract, + ACTIONS(5033), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5035), 1, anon_sym_async, - ACTIONS(5103), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5101), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - STATE(3038), 3, + ACTIONS(5041), 2, + anon_sym_get, + anon_sym_set, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -191242,7 +187987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191263,95 +188008,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60522] = 3, + [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(4243), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4245), 29, + 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, - 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, - [60573] = 14, - ACTIONS(1588), 1, + 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(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5105), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5107), 1, + ACTIONS(5045), 1, anon_sym_async, - ACTIONS(5111), 1, - anon_sym_readonly, - STATE(2767), 1, - sym_override_modifier, + ACTIONS(5055), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5109), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5113), 2, + ACTIONS(5051), 2, anon_sym_get, anon_sym_set, - STATE(3093), 3, + ACTIONS(5053), 2, + sym_number, + sym_private_property_identifier, + STATE(3015), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(3651), 18, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191359,10 +188111,12 @@ 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, @@ -191370,26 +188124,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60646] = 9, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(4722), 1, - anon_sym_LBRACK, - ACTIONS(5119), 1, - anon_sym_RPAREN, + [58855] = 7, + ACTIONS(3469), 1, + anon_sym_DOT, + ACTIONS(3471), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, + ACTIONS(3445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5115), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5117), 2, + ACTIONS(3441), 7, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3448), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191401,12 +188155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(3439), 20, 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, @@ -191424,110 +188176,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60709] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [58914] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4132), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5122), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60816] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4247), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4249), 29, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -191547,35 +188226,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60867] = 3, + [58969] = 6, + ACTIONS(4529), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 13, + ACTIONS(4186), 2, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4253), 29, - sym__automatic_semicolon, + ACTIONS(4425), 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, @@ -191595,57 +188277,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60918] = 12, - ACTIONS(2291), 1, + [59026] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + 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(4003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4787), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(5065), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + 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(2323), 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, @@ -191653,35 +188336,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60987] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + [59099] = 9, + ACTIONS(4024), 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(4255), 12, + 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, 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(4257), 29, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -191701,95 +188390,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61040] = 13, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, + [59162] = 9, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(3548), 1, + anon_sym_QMARK, + ACTIONS(4606), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(3544), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, - [61111] = 4, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1706), 13, + ACTIONS(4146), 2, + anon_sym_RPAREN, + anon_sym_extends, + 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_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 28, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -191809,111 +188444,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61164] = 19, - ACTIONS(241), 1, + [59225] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, + ACTIONS(2316), 1, anon_sym_async, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_readonly, - ACTIONS(2331), 1, + ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4965), 1, anon_sym_STAR, - STATE(2768), 1, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(2756), 1, sym_override_modifier, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [61247] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5124), 1, - anon_sym_STAR, - ACTIONS(5126), 1, - anon_sym_async, - ACTIONS(5130), 1, - anon_sym_readonly, - STATE(2762), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5128), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5132), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3047), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, + ACTIONS(2314), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191932,13 +188508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [61320] = 4, - ACTIONS(4181), 1, - anon_sym_extends, + [59308] = 4, + ACTIONS(4614), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191952,7 +188528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 28, + ACTIONS(4616), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191981,34 +188557,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61373] = 3, + [59361] = 9, + ACTIONS(2326), 1, + anon_sym_extends, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(4804), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 13, + ACTIONS(1665), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4763), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1663), 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(4261), 29, - sym__automatic_semicolon, + ACTIONS(1667), 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, @@ -192028,35 +188611,41 @@ 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, - [61424] = 3, + ACTIONS(4838), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + 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, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 29, - sym__automatic_semicolon, + ACTIONS(4106), 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, @@ -192076,12 +188665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61475] = 3, + [59487] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2349), 13, + ACTIONS(4138), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192095,15 +188688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2347), 29, - sym__automatic_semicolon, + ACTIONS(4084), 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, @@ -192124,476 +188714,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61526] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, - anon_sym_AMP_AMP, - ACTIONS(5140), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, - anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, - anon_sym_PERCENT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [59540] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4088), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4548), 4, - anon_sym_LBRACE, + ACTIONS(4084), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61633] = 31, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59593] = 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(5074), 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(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + 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, + [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, + 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, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4734), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61740] = 31, - ACTIONS(3959), 1, + ACTIONS(1667), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59741] = 10, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, + anon_sym_LBRACK, + ACTIONS(4114), 1, + anon_sym_extends, + ACTIONS(4174), 1, + anon_sym_QMARK, + ACTIONS(4933), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4838), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4102), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61847] = 31, - ACTIONS(3959), 1, + ACTIONS(4106), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59806] = 6, + 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, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4710), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61954] = 31, - ACTIONS(3959), 1, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59863] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + 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, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4610), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [62061] = 18, - ACTIONS(3959), 1, + ACTIONS(4425), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5154), 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(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 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, + [59920] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + 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, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 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(4481), 16, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - 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, - anon_sym_implements, - [62142] = 13, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5170), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [59977] = 4, + ACTIONS(3485), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192604,424 +189107,1758 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(3439), 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62213] = 25, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [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_LBRACK, - ACTIONS(3963), 1, + 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, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, - anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, - anon_sym_PERCENT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + 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_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(3439), 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, - [62308] = 26, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [60162] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4132), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3963), 1, + 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), 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, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 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, + [60217] = 6, + ACTIONS(4186), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4529), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4423), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4425), 26, + sym__automatic_semicolon, 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, - [62405] = 16, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5154), 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(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5170), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 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, + [60274] = 4, + ACTIONS(4138), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5152), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 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(4481), 18, + ACTIONS(4084), 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62482] = 22, - ACTIONS(3959), 1, + [60327] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, + 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(5154), 1, + 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(5156), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + 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(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5160), 3, + 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(4481), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5080), 4, 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, - [62571] = 23, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5154), 1, - anon_sym_PERCENT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [60434] = 4, + ACTIONS(1665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5134), 2, + ACTIONS(1663), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 11, + ACTIONS(1667), 28, + sym__automatic_semicolon, 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, - [62662] = 24, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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_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, + 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, + 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, + 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, + 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_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_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, + [60785] = 9, + ACTIONS(4024), 1, + anon_sym_extends, + ACTIONS(4618), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_RPAREN, + 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, + 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, + [60848] = 7, + ACTIONS(3511), 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), 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, + [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_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, + 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, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, + sym__ternary_qmark, + anon_sym_as, + anon_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, + [61173] = 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, + 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(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, + 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(5125), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 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, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, + sym__ternary_qmark, + anon_sym_as, + anon_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, + 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(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, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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(4455), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61555] = 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(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, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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(4501), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61662] = 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(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, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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(4519), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61769] = 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(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, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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(4577), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61876] = 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(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, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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(4581), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61983] = 18, + 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(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, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 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_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, + 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, + [62064] = 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(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(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 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(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, + 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, + [62135] = 25, + 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(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(5134), 2, + 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, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193032,48 +190869,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62755] = 15, - ACTIONS(3959), 1, + [62230] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5154), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + 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(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5170), 1, + ACTIONS(5151), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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), 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, + [62327] = 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(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(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4583), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193092,38 +191001,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62830] = 16, - ACTIONS(3959), 1, + [62404] = 22, + 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(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, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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, + 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, + [62493] = 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(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + 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(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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, + 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, + [62584] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + 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_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, + 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, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4421), 1, + 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, + [62677] = 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(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, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4585), 10, anon_sym_BANG, - ACTIONS(4425), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4583), 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, + [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(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5170), 1, + ACTIONS(5163), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -193135,7 +191308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -193153,58 +191326,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_implements, - [62907] = 20, - ACTIONS(3959), 1, + [62829] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 13, + ACTIONS(4583), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193218,70 +191391,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62992] = 27, - ACTIONS(3959), 1, + [62914] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193290,638 +191463,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [63091] = 31, - ACTIONS(3959), 1, + [63013] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 4, + ACTIONS(4642), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63198] = 31, - ACTIONS(3959), 1, + [63120] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4419), 4, + ACTIONS(4648), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63305] = 31, - ACTIONS(3959), 1, + [63227] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4584), 4, + ACTIONS(4716), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63412] = 31, - ACTIONS(3959), 1, + [63334] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4489), 4, + ACTIONS(4728), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63519] = 31, - ACTIONS(3959), 1, + [63441] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4493), 4, + ACTIONS(4732), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63626] = 31, - ACTIONS(3959), 1, + [63548] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4536), 4, + ACTIONS(4503), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63733] = 31, - ACTIONS(3959), 1, + [63655] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4538), 4, + ACTIONS(4505), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63840] = 31, - ACTIONS(3959), 1, + [63762] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4544), 4, + ACTIONS(4734), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63947] = 12, - ACTIONS(3959), 1, + [63869] = 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(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(4997), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63978] = 12, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5173), 1, + ACTIONS(5168), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193934,7 +192184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 20, + ACTIONS(4676), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193955,37 +192205,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [64016] = 15, - ACTIONS(3959), 1, + [64047] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5176), 1, + 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, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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(4708), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [64154] = 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, @@ -193994,12 +192296,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 18, + ACTIONS(4396), 29, + 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, @@ -194013,105 +192324,100 @@ 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_implements, - [64091] = 31, - ACTIONS(3959), 1, + anon_sym_satisfies, + anon_sym_extends, + [64205] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5171), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + 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(4651), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [64198] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5179), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [64315] = 5, + ACTIONS(5173), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(1813), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1817), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194122,13 +192428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 22, + ACTIONS(1819), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194146,14 +192455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [64265] = 4, - ACTIONS(5182), 1, - anon_sym_extends, + [64369] = 5, + ACTIONS(5175), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(1823), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194167,15 +192480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4153), 28, - sym__automatic_semicolon, + ACTIONS(1829), 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, @@ -194196,11 +192504,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64318] = 3, + [64423] = 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(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, + anon_sym_LT, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1614), 1, + sym_arguments, + STATE(2561), 1, + sym_type_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, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + 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(5177), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + 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, + 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, + [64593] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4570), 13, + ACTIONS(1849), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194214,15 +192657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4572), 28, - sym__automatic_semicolon, + ACTIONS(1855), 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, @@ -194243,11 +192681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64368] = 3, + [64645] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(1859), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194261,15 +192705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 28, - sym__automatic_semicolon, + ACTIONS(1865), 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, @@ -194290,18 +192729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64418] = 5, + [64697] = 5, + ACTIONS(5185), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5184), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5186), 3, + ACTIONS(1713), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194315,7 +192754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1719), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -194339,18 +192778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64472] = 5, + [64751] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5188), 2, + ACTIONS(5187), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5190), 3, + ACTIONS(5189), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194364,7 +192803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -194388,18 +192827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64526] = 5, + [64805] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5188), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5190), 3, + ACTIONS(1727), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194413,7 +192851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1733), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -194437,11 +192875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64580] = 3, + [64857] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4635), 13, + ACTIONS(5187), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5189), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194455,15 +192900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4637), 28, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -194484,16 +192924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64630] = 5, - ACTIONS(1839), 1, - sym__automatic_semicolon, + [64911] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1835), 13, + ACTIONS(5187), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5189), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194507,12 +192949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 25, + ACTIONS(3439), 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, @@ -194533,16 +192973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64684] = 5, - ACTIONS(1849), 1, - sym__automatic_semicolon, + [64965] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1845), 13, + ACTIONS(4670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194556,12 +192991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 25, + ACTIONS(4672), 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, @@ -194582,39 +193020,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64738] = 10, - ACTIONS(2291), 1, + [65015] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5192), 1, + 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(5194), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5196), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3795), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194636,215 +193079,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [64802] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5188), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5190), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 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, - [64856] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4574), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4576), 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, - [64906] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5198), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [65012] = 10, - ACTIONS(2291), 1, + [65089] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5030), 1, + ACTIONS(5191), 1, anon_sym_STAR, + ACTIONS(5193), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5200), 2, + ACTIONS(5195), 2, sym_number, sym_private_property_identifier, - ACTIONS(5202), 2, + ACTIONS(5197), 2, anon_sym_get, anon_sym_set, - STATE(3815), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(2323), 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, @@ -194861,41 +193134,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65076] = 11, - ACTIONS(1588), 1, + [65155] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5030), 1, + ACTIONS(4965), 1, anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, + 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(5034), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5038), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3023), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194916,292 +193194,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65142] = 33, - ACTIONS(3959), 1, + [65231] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5204), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65252] = 5, - ACTIONS(1795), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1787), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1791), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [65306] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1650), 1, - sym_arguments, - STATE(2489), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(5091), 1, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + 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(5206), 3, - anon_sym_LBRACE, + ACTIONS(5199), 3, anon_sym_COMMA, - anon_sym_implements, - [65412] = 33, - ACTIONS(3959), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [65337] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5201), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4819), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65522] = 3, + [65447] = 10, + 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, + 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, + anon_sym_LBRACK, + 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, + [65577] = 4, + ACTIONS(5207), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 13, + 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, @@ -195212,15 +193477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4939), 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, @@ -195236,16 +193500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [65572] = 3, + [65629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195259,7 +193521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 28, + ACTIONS(4412), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195288,34 +193550,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65622] = 3, + [65679] = 7, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 28, + ACTIONS(3439), 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195335,72 +193601,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65672] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5210), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5212), 2, - anon_sym_get, - anon_sym_set, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(2323), 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, - [65736] = 5, + [65737] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5115), 2, + ACTIONS(4983), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5117), 3, + ACTIONS(5067), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195414,7 +193626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -195438,143 +193650,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65790] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4771), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, + [65791] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5058), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(4549), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4551), 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(3651), 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, - [65856] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [65930] = 10, - ACTIONS(2291), 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, + [65841] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5043), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - ACTIONS(5216), 2, + ACTIONS(5211), 2, anon_sym_get, anon_sym_set, - STATE(3775), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -195584,7 +193729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195606,97 +193751,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65994] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [66070] = 6, - ACTIONS(4123), 1, - anon_sym_extends, + [65905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4712), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3448), 11, + ACTIONS(4553), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(4555), 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, @@ -195716,11 +193798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66126] = 3, + [65955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 13, + ACTIONS(4557), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195734,7 +193816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 28, + ACTIONS(4559), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195763,11 +193845,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66176] = 3, + [66005] = 32, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4501), 1, + anon_sym_COMMA, + 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(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4663), 13, + ACTIONS(4591), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195781,7 +193939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4665), 28, + ACTIONS(4593), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195810,96 +193968,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66226] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [66163] = 5, + ACTIONS(1769), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1761), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1765), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [66300] = 6, - ACTIONS(4127), 1, - anon_sym_extends, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1767), 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, + [66217] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4743), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4702), 11, + ACTIONS(4561), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 24, + ACTIONS(4563), 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, @@ -195919,39 +194064,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66356] = 10, - ACTIONS(2291), 1, + [66267] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5218), 1, + ACTIONS(5057), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - ACTIONS(5222), 2, + ACTIONS(5215), 2, anon_sym_get, anon_sym_set, - STATE(3901), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(2323), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195973,50 +194118,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66420] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [66331] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4748), 1, anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5217), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5219), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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(2323), 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, @@ -196033,49 +194172,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66496] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, + [66395] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4742), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(5057), 1, anon_sym_STAR, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(5059), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5065), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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, - ACTIONS(2323), 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, @@ -196092,11 +194227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66570] = 3, + [66461] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4667), 13, + ACTIONS(4662), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196110,7 +194245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4669), 28, + ACTIONS(4664), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196139,182 +194274,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66620] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + [66511] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [66696] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, + ACTIONS(4537), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66758] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + 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(1973), 6, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, + 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_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66820] = 5, - ACTIONS(1921), 1, - sym__automatic_semicolon, + 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(1913), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1917), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196328,12 +194367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 25, + 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, @@ -196354,147 +194396,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66874] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5224), 1, - anon_sym_STAR, - ACTIONS(5226), 1, - anon_sym_async, + [66667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5228), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5230), 2, - anon_sym_get, - anon_sym_set, - STATE(3045), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4710), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3651), 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, - [66940] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5232), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5234), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5236), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4712), 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(2323), 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, - [67004] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, + 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, + [66717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4214), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1706), 10, + ACTIONS(4714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 24, + ACTIONS(4716), 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, @@ -196514,38 +194490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67062] = 7, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, + [66767] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 10, + 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(4317), 24, + ACTIONS(4720), 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, @@ -196565,11 +194537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67120] = 3, + [66817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4558), 13, + ACTIONS(4726), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196583,7 +194555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4560), 28, + ACTIONS(4728), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196612,36 +194584,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67170] = 9, - ACTIONS(3785), 1, + [66867] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(4679), 1, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, + 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(2005), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196651,8 +194631,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, @@ -196665,94 +194643,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67232] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1973), 6, + ACTIONS(4525), 12, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4527), 25, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67294] = 11, - ACTIONS(1588), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66999] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5232), 1, + ACTIONS(4965), 1, anon_sym_STAR, - ACTIONS(5238), 1, - anon_sym_async, + 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(5240), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5242), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3084), 3, + STATE(3887), 3, sym_string, sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + 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(3651), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196773,39 +194754,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67360] = 8, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(4891), 1, - anon_sym_COLON, + [67075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2333), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1706), 11, + ACTIONS(4730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4732), 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, @@ -196825,39 +194801,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67420] = 8, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4887), 1, - anon_sym_COLON, + [67125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4105), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4313), 11, + ACTIONS(4693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4695), 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, @@ -196877,283 +194848,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67480] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [67175] = 6, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67542] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4606), 3, anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1973), 6, - anon_sym_STAR, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67604] = 9, - ACTIONS(3785), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, 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, + [67231] = 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, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67666] = 9, - ACTIONS(3785), 1, + 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(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(5231), 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67728] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(4457), 2, anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5248), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5250), 2, - anon_sym_get, - anon_sym_set, - STATE(3115), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [67794] = 5, - ACTIONS(1885), 1, - sym__automatic_semicolon, + 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, + [67341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1881), 13, + ACTIONS(4507), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197167,12 +194993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 25, + ACTIONS(4509), 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, @@ -197193,172 +195022,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67848] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [67391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2007), 6, + ACTIONS(4521), 13, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67910] = 9, - ACTIONS(3785), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4523), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3866), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67972] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(5252), 1, - anon_sym_STAR, - ACTIONS(5254), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5256), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5258), 2, - anon_sym_get, - anon_sym_set, - STATE(3070), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67441] = 5, + ACTIONS(1697), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 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, - [68038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4578), 13, + ACTIONS(1689), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197372,15 +195092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4580), 28, - sym__automatic_semicolon, + ACTIONS(1695), 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, @@ -197401,11 +195118,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68088] = 3, + [67495] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4582), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197419,7 +195136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4584), 28, + ACTIONS(4443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197448,36 +195165,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68138] = 5, - ACTIONS(1895), 1, + [67545] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5233), 1, + anon_sym_STAR, + 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, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1887), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1891), 13, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4529), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4423), 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(1893), 25, + ACTIONS(4425), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197497,11 +195269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68192] = 3, + [67665] = 5, + ACTIONS(1721), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4639), 13, + ACTIONS(1713), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197515,15 +195292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4641), 28, - sym__automatic_semicolon, + ACTIONS(1719), 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, @@ -197544,11 +195318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68242] = 3, + [67719] = 5, + ACTIONS(1803), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(1795), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197562,15 +195341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4489), 28, - sym__automatic_semicolon, + ACTIONS(1801), 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, @@ -197591,18 +195367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68292] = 5, + [67773] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5260), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5262), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(4624), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197616,10 +195385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4626), 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, @@ -197640,11 +195414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68346] = 3, + [67823] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197658,7 +195432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 28, + ACTIONS(4443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197687,11 +195461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68396] = 3, + [67873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 13, + ACTIONS(4654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197705,7 +195479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 28, + ACTIONS(4656), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197734,11 +195508,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68446] = 3, + [67923] = 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(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, + 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, + [67997] = 5, + ACTIONS(1735), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(1727), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197752,15 +195590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 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, @@ -197781,88 +195616,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68496] = 33, - ACTIONS(1939), 1, + [68051] = 16, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + 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(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, + ACTIONS(4965), 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, + 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), 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_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 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, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4624), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, + 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, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68606] = 3, + 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, + [68251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4528), 13, + ACTIONS(4681), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197876,7 +195800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4530), 28, + ACTIONS(4683), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197905,11 +195829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68656] = 3, + [68301] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1881), 13, + ACTIONS(4423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197923,7 +195847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 28, + ACTIONS(4425), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197952,13 +195876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68706] = 4, - ACTIONS(3539), 1, - anon_sym_EQ, + [68351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197972,7 +195894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 27, + ACTIONS(1879), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197980,6 +195902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198000,11 +195923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68758] = 3, + [68401] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4540), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198018,7 +195941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4542), 28, + ACTIONS(4443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198047,12 +195970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68808] = 3, + [68451] = 4, + ACTIONS(5207), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(4937), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -198065,15 +195991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4939), 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198089,166 +196015,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [68858] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [68503] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(2326), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4069), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1663), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4548), 3, + ACTIONS(1667), 24, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68964] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5272), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - ACTIONS(5298), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + 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_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4106), 24, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69070] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4590), 13, + ACTIONS(4565), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198262,7 +196138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4592), 28, + ACTIONS(4567), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198291,86 +196167,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69120] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [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, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + 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, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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, + [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(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, + 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_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69226] = 3, + 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, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(3435), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198381,18 +196296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 28, + ACTIONS(3439), 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, @@ -198413,34 +196324,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69276] = 3, + [68851] = 8, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(4946), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2326), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1663), 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(4600), 28, - sym__automatic_semicolon, + ACTIONS(1667), 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, @@ -198460,34 +196376,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69326] = 3, + [68911] = 8, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, + anon_sym_LBRACK, + ACTIONS(4933), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4114), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4102), 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(4604), 28, - sym__automatic_semicolon, + ACTIONS(4106), 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, @@ -198507,321 +196428,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69376] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [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, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + 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, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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, + 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(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4710), 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69482] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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, + [69095] = 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(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4610), 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69588] = 18, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4481), 15, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 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_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, - [69668] = 33, - ACTIONS(1939), 1, + 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(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, + ACTIONS(3755), 1, + anon_sym_RBRACE, ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4797), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, + 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(4415), 2, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69778] = 13, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 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, - ACTIONS(4516), 1, + 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, + 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(4518), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5304), 1, + 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, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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, + [69343] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4569), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198832,628 +196761,800 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4571), 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, - [69848] = 33, - ACTIONS(3959), 1, + [69393] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5307), 1, - anon_sym_RBRACK, - STATE(1603), 1, + ACTIONS(5249), 1, + anon_sym_RBRACE, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69958] = 25, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + [69503] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5274), 1, + 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(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + 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(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, + STATE(5161), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + 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(4481), 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, - [70052] = 26, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + [69613] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5270), 1, + 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(5274), 1, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + 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(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(4619), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + 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(4481), 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, - [70148] = 16, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5304), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [69723] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4628), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 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(4481), 17, + ACTIONS(4630), 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, - [70224] = 22, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [69773] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5274), 1, + 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(5286), 1, + 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(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + 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(5255), 1, + anon_sym_RBRACE, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5292), 3, + 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(4481), 10, + [69883] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4632), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4634), 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, - [70312] = 23, - ACTIONS(4425), 1, + [69933] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(5274), 1, + 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(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4455), 3, 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, - [70402] = 24, - ACTIONS(4425), 1, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70039] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(5274), 1, + 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(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5286), 1, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + 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, - ACTIONS(4481), 9, - sym__automatic_semicolon, + [70145] = 9, + ACTIONS(3437), 1, + 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_COMMA, + 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, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70494] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [70207] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5286), 1, + 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(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5304), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + 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(5297), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, - anon_sym_BANG, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + 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(4481), 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70568] = 16, - ACTIONS(4425), 1, + [70317] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5288), 1, + 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(5304), 1, + ACTIONS(5281), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(5257), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4519), 3, 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_BQUOTE, + ACTIONS(5283), 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, - [70644] = 3, + [70423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(4545), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199467,7 +197568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 28, + ACTIONS(4547), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199496,1280 +197597,1015 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70694] = 20, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [70473] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4587), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 12, + 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, - [70778] = 27, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [70523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4598), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4600), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70876] = 33, - ACTIONS(3959), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5309), 1, - anon_sym_RBRACE, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 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(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70986] = 31, - ACTIONS(4425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70573] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4655), 3, + ACTIONS(4577), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71092] = 31, - ACTIONS(4425), 1, + [70679] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4419), 3, + ACTIONS(4581), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71198] = 31, - ACTIONS(4425), 1, + [70785] = 18, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4585), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4584), 3, + ACTIONS(4583), 15, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + 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, - [71304] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70865] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(5299), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(4826), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4489), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + 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, - [71410] = 31, - ACTIONS(4425), 1, + [70975] = 13, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5301), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4585), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4493), 3, + ACTIONS(4583), 18, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71516] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71045] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4536), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + 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, - [71622] = 31, - ACTIONS(4425), 1, + [71155] = 25, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4538), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71728] = 33, - ACTIONS(3959), 1, + 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, + [71249] = 26, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5311), 1, - anon_sym_RBRACK, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71838] = 31, - ACTIONS(4425), 1, + 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_BQUOTE, + anon_sym_satisfies, + [71345] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5301), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4585), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4544), 3, + ACTIONS(4583), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + 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, - [71944] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5313), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5315), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5317), 2, - anon_sym_get, - anon_sym_set, - STATE(3800), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(2323), 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, - [72008] = 32, - ACTIONS(4425), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71421] = 22, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4734), 1, - anon_sym_COMMA, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4861), 3, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72116] = 5, - ACTIONS(1807), 1, + ACTIONS(4583), 10, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1799), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1803), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1805), 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, - [72170] = 3, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1891), 13, - anon_sym_STAR, + ACTIONS(4585), 2, anon_sym_BANG, + anon_sym_PIPE, + 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, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 28, + 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, sym__ternary_qmark, anon_sym_as, - anon_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, - [72220] = 31, - ACTIONS(3959), 1, + [71599] = 24, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5319), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [72326] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4583), 9, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, + 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(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5301), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5321), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4585), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4583), 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, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72436] = 3, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71765] = 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(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -200778,47 +198614,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 28, + ACTIONS(4583), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_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, - [72486] = 4, - ACTIONS(5323), 1, - sym_regex_flags, + [71841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 16, + ACTIONS(4636), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -200831,15 +198651,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(4875), 24, + ACTIONS(4638), 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, @@ -200855,14 +198675,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72538] = 3, + anon_sym_satisfies, + [71891] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 13, + ACTIONS(4983), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4985), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200876,15 +198705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4629), 28, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -200905,353 +198729,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72588] = 33, - ACTIONS(3959), 1, + [71945] = 20, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5325), 1, - anon_sym_RBRACK, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72698] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4631), 13, - anon_sym_STAR, + ACTIONS(4585), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 28, + ACTIONS(4583), 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, - [72748] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4643), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4645), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [72029] = 27, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5261), 1, anon_sym_AMP_AMP, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72798] = 3, + 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(4675), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4677), 28, + 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), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_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, - [72848] = 33, - ACTIONS(3959), 1, + [72127] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5327), 1, + ACTIONS(5306), 1, anon_sym_RBRACE, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72958] = 3, + [72237] = 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(4546), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4548), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4642), 3, sym__automatic_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, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72343] = 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, - anon_sym_QMARK_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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + 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(4648), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [73008] = 3, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72449] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4554), 13, + ACTIONS(4685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201265,7 +199109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4556), 28, + ACTIONS(4687), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201294,229 +199138,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73058] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, + [72499] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - ACTIONS(5329), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, - STATE(5227), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4716), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73168] = 3, + [72605] = 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(4687), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4689), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4728), 3, sym__automatic_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, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72711] = 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, - anon_sym_QMARK_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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73218] = 3, + 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(4691), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4732), 3, sym__automatic_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, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72817] = 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, - anon_sym_QMARK_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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73268] = 3, + 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(4671), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4673), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4503), 3, sym__automatic_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, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72923] = 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, - anon_sym_QMARK_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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + 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(4505), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [73318] = 3, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4586), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201530,7 +199531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4588), 28, + ACTIONS(4691), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201559,88 +199560,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73368] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, + [73079] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5331), 1, - anon_sym_RPAREN, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5308), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(4648), 1, - aux_sym_array_repeat1, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + 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, + [73189] = 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(4449), 3, + 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(4734), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73478] = 3, + [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, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5031), 2, + 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, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 13, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201654,7 +199786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 28, + ACTIONS(1709), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201683,11 +199815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73528] = 3, + [73413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201701,7 +199833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 28, + ACTIONS(1747), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201730,11 +199862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73578] = 3, + [73463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1765), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201748,7 +199880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 28, + ACTIONS(1767), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201777,11 +199909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73628] = 3, + [73513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201795,7 +199927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 28, + ACTIONS(1695), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201824,11 +199956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73678] = 3, + [73563] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4653), 13, + ACTIONS(4511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201842,7 +199974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4655), 28, + ACTIONS(4513), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201871,634 +200003,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73728] = 33, - ACTIONS(1939), 1, + [73613] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5333), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4680), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73838] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5335), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(4705), 1, - aux_sym_array_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, + STATE(5209), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73948] = 33, - ACTIONS(3959), 1, + [73723] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5337), 1, + ACTIONS(5316), 1, anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74058] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, + [73833] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5339), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4721), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74168] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5341), 1, + ACTIONS(5318), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74278] = 33, - ACTIONS(3959), 1, + [73943] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5343), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74388] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5345), 1, + ACTIONS(5320), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74498] = 33, - ACTIONS(3959), 1, + [74053] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5347), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5322), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74608] = 5, + [74163] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5349), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5351), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(4640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202512,10 +200406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4642), 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, @@ -202536,191 +200435,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74662] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5353), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5355), 3, + [74213] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(724), 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74716] = 5, + 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(5353), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5355), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + 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(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, + 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, + [74287] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [74770] = 12, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5357), 1, - anon_sym_LT, - STATE(1945), 1, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5324), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74838] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [74397] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5328), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5330), 2, + anon_sym_get, + anon_sym_set, + STATE(3888), 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(4833), 1, - anon_sym_satisfies, - ACTIONS(5360), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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, + [74461] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5332), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5334), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -202729,12 +200647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 17, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, - anon_sym_SEMI, + 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, @@ -202748,103 +200670,99 @@ 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, - [74912] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + anon_sym_satisfies, + [74515] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(4652), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4651), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + 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, - [75018] = 11, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5363), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [74625] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(5338), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5340), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202855,13 +200773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 21, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -202879,18 +200800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75084] = 5, + [74679] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5353), 2, + ACTIONS(5338), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5355), 3, + ACTIONS(5340), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202904,7 +200825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -202928,44 +200849,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75138] = 10, - ACTIONS(2291), 1, + [74733] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5366), 1, + 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(5368), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5370), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3786), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 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, @@ -202982,11 +200909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75202] = 3, + [74809] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 13, + ACTIONS(5338), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5340), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203000,15 +200934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 28, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -203029,80 +200958,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75252] = 5, - ACTIONS(1867), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1859), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1863), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1865), 25, - sym__ternary_qmark, - anon_sym_as, + [74863] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + 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(5342), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(4684), 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_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75306] = 11, - ACTIONS(1588), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74973] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5366), 1, + ACTIONS(5344), 1, anon_sym_STAR, - ACTIONS(5372), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5374), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - ACTIONS(5376), 2, + ACTIONS(5348), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203112,11 +201067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 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, @@ -203133,106 +201089,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75372] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5378), 1, - anon_sym_RBRACK, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - STATE(5153), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75482] = 10, - ACTIONS(2291), 1, + [75037] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5344), 1, anon_sym_STAR, + ACTIONS(5350), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(5352), 2, sym_number, sym_private_property_identifier, - ACTIONS(5382), 2, + ACTIONS(5354), 2, anon_sym_get, anon_sym_set, - STATE(3919), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203242,12 +201123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 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, @@ -203264,278 +201144,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75546] = 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_AMP, - 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, - [75600] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4679), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4681), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [75103] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_RBRACE, + 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(4418), 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, - [75650] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5384), 1, - anon_sym_RBRACE, - STATE(1603), 1, + ACTIONS(5356), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4711), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75760] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4702), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4704), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [75213] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_RBRACE, + 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(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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [75810] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4685), 28, + 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, 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, + [75389] = 12, + 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, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75860] = 3, + ACTIONS(5362), 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(4612), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203546,21 +201387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4614), 28, + ACTIONS(4676), 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, @@ -203574,102 +201407,114 @@ 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, - [75910] = 33, - ACTIONS(3959), 1, + [75457] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5386), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76020] = 7, - ACTIONS(5388), 1, + ACTIONS(5012), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [75563] = 15, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(5391), 1, - anon_sym_COLON, - ACTIONS(5393), 1, + 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(5365), 1, anon_sym_LT, - ACTIONS(5396), 1, - anon_sym_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(3448), 12, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -203680,15 +201525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, + ACTIONS(4699), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -203702,23 +201542,17 @@ 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, - [76078] = 7, - ACTIONS(5398), 1, - anon_sym_LPAREN, - ACTIONS(5401), 1, - anon_sym_COLON, - ACTIONS(5403), 1, - anon_sym_LT, - ACTIONS(5406), 1, - anon_sym_QMARK, + [75637] = 5, + ACTIONS(1711), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 12, + ACTIONS(1703), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203729,13 +201563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 25, - sym__automatic_semicolon, + ACTIONS(1709), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -203757,49 +201592,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76136] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [75691] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(5233), 1, anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(5368), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5370), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5372), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3027), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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(2323), 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, @@ -203816,11 +201647,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76210] = 3, + [75757] = 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(5374), 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(4732), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203831,21 +201678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4610), 28, + ACTIONS(4416), 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, @@ -203863,50 +201702,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76260] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [75823] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_STAR, + ACTIONS(5084), 1, anon_sym_async, - ACTIONS(4469), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5090), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5377), 2, + sym_number, + sym_private_property_identifier, + STATE(3009), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4785), 1, + 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, + [75889] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(5096), 1, anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5381), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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, - ACTIONS(2323), 20, + 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, @@ -203923,29 +201811,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76336] = 10, - ACTIONS(2291), 1, + [75953] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5096), 1, anon_sym_STAR, + ACTIONS(5098), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(5100), 2, sym_number, sym_private_property_identifier, - ACTIONS(5410), 2, + ACTIONS(5104), 2, anon_sym_get, anon_sym_set, - STATE(3825), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -203955,12 +201845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 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, @@ -203977,11 +201866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76400] = 3, + [76019] = 5, + ACTIONS(1749), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 13, + ACTIONS(1741), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203995,15 +201889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4534), 28, - sym__automatic_semicolon, + ACTIONS(1747), 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, @@ -204024,17 +201915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76450] = 4, + [76073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1917), 13, + ACTIONS(4573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204048,10 +201933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 23, + ACTIONS(4575), 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, @@ -204072,199 +201962,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76502] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5412), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [76123] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4579), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76612] = 33, - ACTIONS(3959), 1, + ACTIONS(4581), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5414), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [76173] = 8, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3577), 1, + anon_sym_COLON, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + 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, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76722] = 11, - ACTIONS(1588), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76233] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5113), 1, anon_sym_STAR, - ACTIONS(5093), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5416), 2, + ACTIONS(5383), 2, sym_number, sym_private_property_identifier, - STATE(3033), 3, + ACTIONS(5385), 2, + anon_sym_get, + anon_sym_set, + STATE(3868), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(3651), 20, + 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, @@ -204281,29 +202115,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76788] = 10, - ACTIONS(2291), 1, + [76297] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4515), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4517), 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, + [76347] = 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(5387), 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_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, + [76457] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(5389), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - ACTIONS(5420), 2, + ACTIONS(5393), 2, anon_sym_get, anon_sym_set, - STATE(3850), 3, + STATE(3813), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204313,7 +202271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204335,234 +202293,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76852] = 7, - ACTIONS(4121), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4712), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3448), 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(3452), 22, - sym__ternary_qmark, - anon_sym_as, + [76521] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76910] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5395), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77020] = 33, - ACTIONS(3959), 1, + [76631] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5424), 1, + ACTIONS(5397), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77130] = 10, - ACTIONS(2291), 1, + [76741] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5399), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5426), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - ACTIONS(5428), 2, + ACTIONS(5403), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204572,7 +202479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204594,106 +202501,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77194] = 33, - ACTIONS(3959), 1, + [76805] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5430), 1, + ACTIONS(5405), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77304] = 10, - ACTIONS(2291), 1, + [76915] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5407), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - ACTIONS(5436), 2, + ACTIONS(5411), 2, anon_sym_get, anon_sym_set, - STATE(3880), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204703,7 +202610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204725,194 +202632,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77368] = 33, - ACTIONS(3959), 1, + [76979] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4644), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5438), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [77029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4650), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77478] = 33, - ACTIONS(1939), 1, + ACTIONS(4652), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4912), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, + [77079] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4704), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4706), 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(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77588] = 9, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, - ACTIONS(4123), 1, - anon_sym_extends, - ACTIONS(4712), 1, - anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5442), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3448), 11, + 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(3452), 22, + ACTIONS(4084), 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, @@ -204932,31 +202820,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77650] = 11, - ACTIONS(1588), 1, + [77179] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5082), 1, anon_sym_STAR, - ACTIONS(5093), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5446), 2, + ACTIONS(5413), 2, sym_number, sym_private_property_identifier, - STATE(3040), 3, + ACTIONS(5415), 2, + anon_sym_get, + anon_sym_set, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -204966,11 +202852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 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, @@ -204987,39 +202874,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77716] = 10, - ACTIONS(2291), 1, + [77243] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5105), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(5450), 2, - anon_sym_get, - anon_sym_set, - STATE(3839), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 21, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205029,6 +202914,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, @@ -205041,31 +202928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77780] = 11, - ACTIONS(1588), 1, + [77307] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5105), 1, + ACTIONS(5113), 1, anon_sym_STAR, - ACTIONS(5107), 1, + ACTIONS(5115), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5109), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - ACTIONS(5113), 2, + ACTIONS(5121), 2, anon_sym_get, anon_sym_set, - STATE(3093), 3, + STATE(3075), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -205075,7 +202962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205096,420 +202983,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77846] = 31, - ACTIONS(3959), 1, + [77373] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4548), 3, + ACTIONS(4455), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77952] = 31, - ACTIONS(3959), 1, + [77479] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4501), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78058] = 31, - ACTIONS(3959), 1, + [77585] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, + ACTIONS(4519), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78164] = 31, - ACTIONS(3959), 1, + [77691] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4710), 3, + ACTIONS(4577), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78270] = 31, - ACTIONS(3959), 1, + [77797] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4610), 3, + ACTIONS(4581), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78376] = 18, - ACTIONS(3959), 1, + [77903] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -205517,7 +203404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205533,32 +203420,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78456] = 13, - ACTIONS(3959), 1, + [77983] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205571,7 +203458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4583), 18, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205590,66 +203477,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78526] = 25, - ACTIONS(3959), 1, + [78053] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205659,68 +203546,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78620] = 26, - ACTIONS(3959), 1, + [78147] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205729,40 +203616,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78716] = 16, - ACTIONS(3959), 1, + [78243] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 8, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -205771,7 +203658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205789,62 +203676,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78792] = 22, - ACTIONS(3959), 1, + [78319] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, + ACTIONS(4585), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205855,63 +203742,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78880] = 23, - ACTIONS(3959), 1, + [78407] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205922,65 +203809,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78970] = 24, - ACTIONS(3959), 1, + [78497] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205990,37 +203877,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [79062] = 15, - ACTIONS(3959), 1, + [78589] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -206031,7 +203918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -206049,38 +203936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [79136] = 16, - ACTIONS(3959), 1, + [78663] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -206092,7 +203979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_RBRACE, anon_sym_COLON, @@ -206109,58 +203996,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [79212] = 20, - ACTIONS(3959), 1, + [78739] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 12, + ACTIONS(4583), 12, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -206173,70 +204060,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [79296] = 27, - ACTIONS(3959), 1, + [78823] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -206244,833 +204131,644 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [79394] = 31, - ACTIONS(3959), 1, + [78921] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4655), 3, + ACTIONS(4642), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79500] = 31, - ACTIONS(3959), 1, + [79027] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4419), 3, + ACTIONS(4648), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79606] = 31, - ACTIONS(3959), 1, + [79133] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4584), 3, + ACTIONS(4716), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79712] = 31, - ACTIONS(3959), 1, + [79239] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4489), 3, + ACTIONS(4728), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79818] = 31, - ACTIONS(3959), 1, + [79345] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4493), 3, + ACTIONS(4732), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79924] = 31, - ACTIONS(3959), 1, + [79451] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4536), 3, + ACTIONS(4503), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80030] = 31, - ACTIONS(3959), 1, + [79557] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4538), 3, + ACTIONS(4505), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80136] = 31, - ACTIONS(3959), 1, + [79663] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4544), 3, + ACTIONS(4734), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80242] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4649), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [79769] = 15, + ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(722), 1, 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, - [80292] = 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_AMP, - 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, - [80344] = 8, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4123), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 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(3452), 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, - [80404] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4524), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4526), 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, - [80454] = 12, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1510), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, + 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(5079), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5493), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5287), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5975), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5491), 23, + 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, @@ -207080,8 +204778,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, @@ -207094,217 +204790,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80522] = 12, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5495), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 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(4738), 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, - [80590] = 15, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [79843] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5498), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5191), 1, 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(4618), 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, - [80664] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5482), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4651), 3, + ACTIONS(5456), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5458), 2, + anon_sym_get, + anon_sym_set, + STATE(3911), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5478), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80770] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5501), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + 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, + [79907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207315,13 +204859,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 21, + ACTIONS(4724), 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, @@ -207339,11 +204891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80836] = 3, + [79957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207357,7 +204909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 28, + ACTIONS(3439), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207386,11 +204938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80886] = 3, + [80007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207404,7 +204956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 28, + ACTIONS(1801), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207433,11 +204985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80936] = 3, + [80057] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(1817), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207451,7 +205003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 28, + ACTIONS(1819), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207480,17 +205032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80986] = 4, + [80107] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1771), 13, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207504,10 +205050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 23, + ACTIONS(1829), 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, @@ -207528,39 +205079,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81038] = 8, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(4121), 1, - anon_sym_QMARK, - ACTIONS(4712), 1, - anon_sym_LBRACK, + [80157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4123), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + 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, @@ -207580,18 +205126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81098] = 5, - ACTIONS(5504), 1, - sym__automatic_semicolon, + [80207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1803), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207605,10 +205144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 23, + ACTIONS(1865), 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, @@ -207629,225 +205173,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81152] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [80257] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5508), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5510), 2, - anon_sym_get, - anon_sym_set, - STATE(3772), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + 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, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [81216] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4003), 2, + 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, - anon_sym_RBRACE, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, + ACTIONS(5460), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81280] = 3, + 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(1917), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 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(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81330] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80367] = 12, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5462), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [81404] = 3, + 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(4550), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207858,21 +205284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4552), 28, - sym__automatic_semicolon, + ACTIONS(4676), 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, @@ -207886,158 +205304,52 @@ 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, - [81454] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + [80435] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [81530] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(3940), 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(3047), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 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, - [81596] = 7, - ACTIONS(3460), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(3464), 1, + 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(5465), 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(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 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(3452), 22, + ACTIONS(4699), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -208052,116 +205364,103 @@ 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, - [81654] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [80509] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5512), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5514), 2, - anon_sym_get, - anon_sym_set, - STATE(3823), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + 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, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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, - anon_sym_QMARK, - ACTIONS(2323), 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, - [81718] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4501), 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(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4708), 3, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_BQUOTE, - anon_sym_satisfies, - [81768] = 3, + 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(1751), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208172,21 +205471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 28, - sym__automatic_semicolon, + ACTIONS(4416), 21, sym__ternary_qmark, anon_sym_as, - anon_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, @@ -208204,105 +205495,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81818] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1781), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1783), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [80681] = 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(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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [81868] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5471), 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(1791), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 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(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81918] = 3, + ACTIONS(4487), 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(1835), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208316,7 +205592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 28, + ACTIONS(3439), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208324,7 +205600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208345,11 +205620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81968] = 3, + [80843] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(5106), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5108), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208363,15 +205645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 28, - sym__automatic_semicolon, + ACTIONS(3439), 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, @@ -208392,88 +205669,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82018] = 33, - ACTIONS(3959), 1, + [80897] = 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(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_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, + [80973] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5516), 1, + ACTIONS(5473), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82128] = 3, + [81083] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4594), 13, + ACTIONS(4658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208487,7 +205824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4596), 28, + ACTIONS(4660), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208516,172 +205853,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82178] = 33, - ACTIONS(3959), 1, + [81133] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5518), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82288] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5520), 1, + ACTIONS(5475), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82398] = 5, + [81243] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5522), 2, + ACTIONS(5477), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5524), 3, + ACTIONS(5479), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208695,7 +205955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208719,29 +205979,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82452] = 10, - ACTIONS(2291), 1, + [81297] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5526), 1, + ACTIONS(5481), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5528), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(5530), 2, + ACTIONS(5485), 2, anon_sym_get, anon_sym_set, - STATE(3840), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208751,7 +206011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208773,36 +206033,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82516] = 5, + [81361] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 4, - anon_sym_RBRACE, + ACTIONS(5487), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5489), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + anon_sym_COLON, + 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(3452), 24, + ACTIONS(3439), 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, @@ -208822,171 +206082,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82570] = 7, - ACTIONS(4125), 1, - anon_sym_QMARK, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4743), 3, + 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, + 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, + [81481] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4702), 11, + 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, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, 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(4704), 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, - [82628] = 31, - ACTIONS(3959), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + 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_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + 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, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 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, + [81613] = 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(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5002), 3, + 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, - anon_sym_RBRACE, - anon_sym_RPAREN, - [82734] = 11, - ACTIONS(1588), 1, + 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, + [81679] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5526), 1, + ACTIONS(5507), 1, anon_sym_STAR, - ACTIONS(5532), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5534), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - ACTIONS(5536), 2, + ACTIONS(5511), 2, anon_sym_get, anon_sym_set, - STATE(3027), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(3651), 20, + 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, @@ -209003,41 +206356,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82800] = 11, - ACTIONS(1588), 1, + [81743] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5507), 1, anon_sym_STAR, - ACTIONS(5538), 1, + ACTIONS(5513), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5540), 2, + ACTIONS(5515), 2, sym_number, sym_private_property_identifier, - ACTIONS(5542), 2, + ACTIONS(5517), 2, anon_sym_get, anon_sym_set, - STATE(3020), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(3651), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -209058,249 +206411,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82866] = 33, - ACTIONS(3959), 1, + [81809] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5544), 1, + ACTIONS(5519), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82976] = 33, - ACTIONS(3959), 1, + [81919] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5546), 1, + ACTIONS(5521), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82029] = 5, + ACTIONS(1821), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1813), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1817), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, - [83086] = 33, - ACTIONS(1939), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82083] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5548), 1, + ACTIONS(5523), 1, anon_sym_RBRACK, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, - STATE(5153), 1, + STATE(5161), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83196] = 5, + [82193] = 5, + ACTIONS(1831), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5066), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(1823), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209314,10 +206714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1829), 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, @@ -209338,17 +206740,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83250] = 4, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + 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, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1863), 13, + 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_STAR, anon_sym_BANG, anon_sym_in, @@ -209362,10 +206813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 23, + ACTIONS(4447), 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, @@ -209386,17 +206842,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83302] = 4, + [82363] = 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(4736), 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 5, - sym__automatic_semicolon, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5545), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5547), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3663), 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, anon_sym_COMMA, + ACTIONS(697), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1751), 13, + 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_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, + [82523] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209410,10 +206984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 23, + ACTIONS(4668), 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, @@ -209434,18 +207013,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83354] = 5, - ACTIONS(5550), 1, - sym__automatic_semicolon, + [82573] = 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(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(1777), 4, + 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), 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, + [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(1781), 13, + ACTIONS(1755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209459,7 +207097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1783), 23, + ACTIONS(1757), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209483,18 +207121,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83408] = 5, - ACTIONS(5552), 1, - sym__automatic_semicolon, + [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, + 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(1787), 4, + 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(5012), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1791), 13, + [82807] = 5, + ACTIONS(1857), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1849), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209508,10 +207219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 23, + ACTIONS(1855), 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, @@ -209532,91 +207245,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83462] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [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, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + anon_sym_RBRACK, + ACTIONS(3435), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82919] = 5, + ACTIONS(1867), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(1859), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1863), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4791), 3, - sym__automatic_semicolon, + ACTIONS(1865), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83568] = 5, - ACTIONS(1765), 1, - sym__automatic_semicolon, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1761), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209630,12 +207363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 25, + ACTIONS(4084), 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, @@ -209656,17 +207392,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83622] = 4, + [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(1831), 5, + 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_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1835), 13, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209680,10 +207464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 23, + ACTIONS(4451), 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, @@ -209704,35 +207493,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83674] = 4, + [83137] = 7, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 5, - sym__automatic_semicolon, + ACTIONS(4606), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1845), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - 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, + ACTIONS(3439), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209752,18 +207543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83726] = 5, - ACTIONS(5554), 1, - sym__automatic_semicolon, + anon_sym_implements, + [83195] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 4, + ACTIONS(1703), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1881), 13, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209777,7 +207568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 23, + ACTIONS(1709), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209801,17 +207592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83780] = 4, + [83247] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1887), 5, + ACTIONS(1741), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1891), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209825,7 +207616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 23, + ACTIONS(1747), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209849,36 +207640,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83832] = 5, - ACTIONS(1775), 1, - sym__automatic_semicolon, + [83299] = 8, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(4144), 1, + anon_sym_QMARK, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1771), 13, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 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_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 25, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209898,169 +207692,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83886] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5556), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83996] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5538), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5542), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5558), 2, - sym_number, - sym_private_property_identifier, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + [83359] = 5, + ACTIONS(5557), 1, 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(3651), 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, - [84062] = 7, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, + ACTIONS(1761), 4, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1765), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(1767), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210080,425 +207741,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [84120] = 33, - ACTIONS(3959), 1, + [83413] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RBRACK, - STATE(1603), 1, + ACTIONS(5559), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84230] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [83523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, + 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_QMARK, - ACTIONS(2323), 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, - [84304] = 33, - ACTIONS(3959), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1757), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5562), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [83573] = 7, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + 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, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84414] = 16, - ACTIONS(241), 1, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [84490] = 21, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(1943), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5568), 1, - anon_sym_RBRACE, - ACTIONS(5570), 1, - anon_sym_async, - ACTIONS(5574), 1, - anon_sym_static, - ACTIONS(5576), 1, - anon_sym_readonly, - ACTIONS(5582), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, - STATE(5113), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5572), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5578), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5580), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3640), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5105), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5564), 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, - [84576] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5002), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83631] = 5, + ACTIONS(1759), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [84682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4728), 13, + ACTIONS(1751), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210512,15 +207939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4730), 28, - sym__automatic_semicolon, + ACTIONS(1757), 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, @@ -210541,37 +207965,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84732] = 4, - ACTIONS(5323), 1, - sym_regex_flags, + [83685] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 17, + ACTIONS(4134), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4132), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3435), 11, 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(4875), 23, - sym__automatic_semicolon, + ACTIONS(3439), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210586,39 +208009,43 @@ 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, - [84784] = 5, - ACTIONS(1785), 1, - sym__automatic_semicolon, + anon_sym_satisfies, + [83739] = 7, + ACTIONS(4184), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1781), 13, + ACTIONS(4186), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4529), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4423), 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(1783), 25, + ACTIONS(4425), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210638,22 +208065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84838] = 7, - ACTIONS(3561), 1, + [83797] = 7, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4606), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4146), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4715), 3, + ACTIONS(4609), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210664,7 +208091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(3439), 24, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -210689,140 +208116,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84896] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5538), 1, - anon_sym_async, + [83855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5542), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5584), 2, - sym_number, - sym_private_property_identifier, - STATE(3043), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4602), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3651), 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, - [84962] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5586), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5588), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5590), 2, - anon_sym_get, - anon_sym_set, - STATE(3894), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4604), 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(2323), 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, - [85026] = 11, - ACTIONS(1588), 1, + 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, + [83905] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5586), 1, + ACTIONS(5389), 1, anon_sym_STAR, - ACTIONS(5592), 1, + ACTIONS(5561), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5594), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - ACTIONS(5596), 2, + ACTIONS(5565), 2, anon_sym_get, anon_sym_set, - STATE(3076), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -210832,7 +208197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210853,321 +208218,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [85092] = 33, - ACTIONS(3959), 1, + [83971] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85202] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(5567), 3, anon_sym_COMMA, - ACTIONS(5600), 1, anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + anon_sym_RBRACK, + [84077] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4525), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85312] = 33, - ACTIONS(3959), 1, + ACTIONS(4527), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5602), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [84127] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1717), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85422] = 33, - ACTIONS(3959), 1, + ACTIONS(1719), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5604), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85532] = 4, - ACTIONS(3508), 1, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211181,11 +208405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 27, + 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, @@ -211209,1657 +208434,1528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85584] = 33, - ACTIONS(3959), 1, + [84227] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5606), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85694] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5608), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5569), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85804] = 33, - ACTIONS(3959), 1, + [84337] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5610), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5571), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85914] = 7, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 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(3452), 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, + ACTIONS(4487), 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, - [85972] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4369), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4371), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [84447] = 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(4418), 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, - [86022] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5612), 1, + ACTIONS(5573), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86132] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5021), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, + [84557] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [86186] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5614), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5616), 2, - anon_sym_get, - anon_sym_set, - STATE(3926), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, - [86250] = 6, - ACTIONS(4659), 1, - anon_sym_EQ, - ACTIONS(4889), 1, - anon_sym_COLON, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4756), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4657), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 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(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86305] = 22, - ACTIONS(3959), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84667] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + 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(5628), 1, + 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(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + 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(5577), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5634), 3, + 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(4481), 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, - [86392] = 23, - ACTIONS(3959), 1, + [84777] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + 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(5628), 1, + 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(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - STATE(1603), 1, + 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(5579), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + 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(4481), 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, - [86481] = 24, - ACTIONS(3959), 1, + [84887] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + 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(5628), 1, + 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(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - STATE(1603), 1, + 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(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + 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(4481), 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, - [86572] = 15, - ACTIONS(3959), 1, + [84997] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5628), 1, + 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(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5644), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + 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(5583), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, - anon_sym_BANG, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + 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(4481), 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86645] = 16, - ACTIONS(3959), 1, + [85107] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5630), 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(5644), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + 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(5585), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 11, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [86720] = 20, - ACTIONS(3959), 1, + [85217] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + 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(5628), 1, + 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(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + 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(5587), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5634), 3, + 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(4483), 5, + [85327] = 4, + ACTIONS(3511), 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(4481), 11, + ACTIONS(3439), 27, + sym__automatic_semicolon, 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, - [86803] = 27, - ACTIONS(3959), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5624), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 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(5634), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86900] = 31, - ACTIONS(3959), 1, + [85379] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 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(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + 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(5655), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5589), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4655), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + 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, - [87005] = 31, - ACTIONS(3959), 1, + [85489] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 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(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + 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(5655), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5591), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + 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, - [87110] = 31, - ACTIONS(3959), 1, + [85599] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 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(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + 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(5655), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5593), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4584), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + 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, - [87215] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [85709] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4489), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(1689), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1693), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87320] = 31, - ACTIONS(3959), 1, + ACTIONS(1695), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4493), 2, - anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5618), 2, + anon_sym_satisfies, + [85761] = 4, + 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, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87425] = 31, - ACTIONS(3959), 1, + ACTIONS(1801), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4536), 2, - anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5618), 2, + anon_sym_satisfies, + [85813] = 5, + 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, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + 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, - ACTIONS(5634), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87530] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + 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, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + 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(5655), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4538), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4708), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87635] = 31, - ACTIONS(3959), 1, + [86037] = 4, + ACTIONS(3550), 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), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [86088] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1942), 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(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, + [86139] = 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(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(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4544), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87740] = 17, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + 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, - ACTIONS(2327), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, - ACTIONS(2331), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5566), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86208] = 13, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(5657), 1, + 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(5023), 1, anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(5157), 1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 18, + 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, @@ -212867,24 +209963,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87817] = 7, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + [86277] = 7, + ACTIONS(4022), 1, + anon_sym_QMARK, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 3, + ACTIONS(4621), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3454), 4, + ACTIONS(4618), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212896,10 +209990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 20, + 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, @@ -212917,86 +210013,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87874] = 4, + [86334] = 8, + 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(1901), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1905), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1907), 25, + ACTIONS(4923), 2, + sym_number, + sym_private_property_identifier, + STATE(3437), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, 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, - [87925] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + 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, + [86393] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5605), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3775), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213020,105 +210115,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87994] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [86452] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5413), 2, + sym_number, + sym_private_property_identifier, + STATE(3864), 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(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - ACTIONS(5659), 1, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(5661), 1, - sym__automatic_semicolon, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + 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, + [86511] = 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(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88101] = 12, - ACTIONS(3959), 1, + ACTIONS(5209), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 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, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5663), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 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, + [86570] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4138), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213129,71 +210235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 18, + ACTIONS(4084), 25, + sym__automatic_semicolon, 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, - [88168] = 15, - ACTIONS(3959), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5666), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 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(4618), 16, - sym__ternary_qmark, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -213207,35 +210260,38 @@ 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, - [88241] = 8, - ACTIONS(2291), 1, + anon_sym_satisfies, + [86621] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - STATE(3876), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213259,104 +210315,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88300] = 31, - ACTIONS(3959), 1, + [86680] = 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), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4651), 2, - anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + 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, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88405] = 11, - ACTIONS(3959), 1, + ACTIONS(4106), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5671), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 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, + [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(4695), 12, + ACTIONS(4612), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -213364,12 +210431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 20, + ACTIONS(4616), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -213387,35 +210460,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88470] = 5, + [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(4117), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4119), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(1663), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + 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, @@ -213435,58 +210509,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88523] = 16, - ACTIONS(2291), 1, + [86896] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, - sym_override_modifier, + 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(2301), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 18, + 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, @@ -213494,95 +210565,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88598] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [86965] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5328), 2, + sym_number, + sym_private_property_identifier, + STATE(3888), 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(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 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, + [87024] = 6, + ACTIONS(4618), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + 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_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5677), 2, + ACTIONS(3439), 24, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(5292), 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88703] = 7, - ACTIONS(1708), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87079] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(4146), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4211), 2, + ACTIONS(4606), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4214), 2, + ACTIONS(4609), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 11, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213594,7 +210691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -213618,37 +210715,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88760] = 5, - ACTIONS(3450), 1, - anon_sym_EQ, + [87136] = 7, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3632), 3, + ACTIONS(3445), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3441), 4, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3448), 13, + anon_sym_extends, + ACTIONS(3435), 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(3452), 23, + ACTIONS(3439), 20, 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, @@ -213666,24 +210765,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88813] = 8, - ACTIONS(2291), 1, + [87193] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(5203), 2, sym_number, sym_private_property_identifier, - STATE(3772), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213693,7 +210792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213717,21 +210816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88872] = 7, - ACTIONS(4105), 1, - anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, + [87252] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4322), 2, + ACTIONS(4134), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4313), 11, + 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, @@ -213743,10 +210841,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 23, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213767,24 +210864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88929] = 8, - ACTIONS(2291), 1, + [87305] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(5217), 2, sym_number, sym_private_property_identifier, - STATE(3823), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213794,7 +210891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213818,34 +210915,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88988] = 8, - ACTIONS(2291), 1, + [87364] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 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(5408), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3825), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213869,36 +210971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89047] = 6, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + [87433] = 6, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4609), 3, anon_sym_GT, - anon_sym_GT_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(3452), 25, + ACTIONS(3439), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -213918,376 +211020,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89102] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [87488] = 6, + ACTIONS(4529), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, - sym_number, - sym_private_property_identifier, - STATE(3894), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, + ACTIONS(4186), 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(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89161] = 23, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3757), 1, - anon_sym_AT, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(4532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4423), 10, anon_sym_STAR, - ACTIONS(5681), 1, - anon_sym_async, - ACTIONS(5685), 1, - anon_sym_static, - ACTIONS(5687), 1, - anon_sym_readonly, - ACTIONS(5691), 1, - anon_sym_declare, - ACTIONS(5693), 1, - anon_sym_abstract, - ACTIONS(5695), 1, - anon_sym_accessor, - STATE(2639), 1, - sym_method_definition, - STATE(2684), 1, - sym_accessibility_modifier, - STATE(2705), 1, - aux_sym_export_statement_repeat1, - STATE(2748), 1, - sym_decorator, - STATE(2753), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5683), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5689), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3016), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 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, - [89250] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5418), 2, - sym_number, - sym_private_property_identifier, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89309] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5426), 2, - sym_number, - sym_private_property_identifier, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 24, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + 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, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89368] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, - sym_number, - sym_private_property_identifier, - STATE(3880), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, + ACTIONS(4801), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89427] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + 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(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3772), 1, + anon_sym_AT, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(5616), 1, + anon_sym_STAR, + ACTIONS(5618), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(5622), 1, anon_sym_static, + ACTIONS(5624), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(5628), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89496] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5210), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + ACTIONS(5626), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3000), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 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(2323), 23, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -214295,36 +211184,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89555] = 6, - ACTIONS(4315), 1, + [87687] = 7, + ACTIONS(1665), 1, anon_sym_EQ, - ACTIONS(4887), 1, - anon_sym_of, - ACTIONS(5697), 1, - anon_sym_in, + ACTIONS(2326), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 12, + 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(4317), 25, + ACTIONS(4106), 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, anon_sym_AMP_AMP, @@ -214344,50 +211284,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89610] = 8, - ACTIONS(2291), 1, + [87801] = 16, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3919), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5634), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 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, @@ -214395,19 +211343,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89669] = 6, - ACTIONS(4659), 1, - anon_sym_EQ, - ACTIONS(4889), 1, - anon_sym_of, - ACTIONS(5700), 1, + [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, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 12, + ACTIONS(3629), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -214418,12 +211441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 25, + ACTIONS(3439), 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, @@ -214444,39 +211465,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89724] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, + [88034] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5235), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3916), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214500,24 +211516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89793] = 8, - ACTIONS(2291), 1, + [88093] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5368), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3786), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -214527,7 +211543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214551,24 +211567,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89852] = 8, - ACTIONS(2291), 1, + [88152] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5703), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -214578,7 +211594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214602,73 +211618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89911] = 6, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4891), 1, - anon_sym_of, - ACTIONS(5705), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1706), 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(1710), 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, - [89966] = 8, - ACTIONS(2291), 1, + [88211] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - STATE(3839), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -214678,7 +211645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214702,228 +211669,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90025] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [88270] = 32, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5200), 2, - sym_number, - sym_private_property_identifier, - STATE(3815), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90084] = 4, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + ACTIONS(5641), 1, + anon_sym_SEMI, + ACTIONS(5643), 1, + sym__automatic_semicolon, + 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(1901), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1905), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + 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(5283), 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, + 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, + 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, + 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, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 22, - sym__ternary_qmark, - anon_sym_as, + 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, + [88484] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4497), 1, anon_sym_satisfies, - [90135] = 4, + 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(4165), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + 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(4997), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88589] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [90186] = 6, - ACTIONS(4712), 1, - anon_sym_LBRACK, + 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(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + 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(5007), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88694] = 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(5383), 2, + sym_number, + sym_private_property_identifier, + STATE(3868), 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(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, + [88753] = 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(5391), 2, + sym_number, + sym_private_property_identifier, + STATE(3813), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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, - [90241] = 8, - ACTIONS(2291), 1, + 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, + [88812] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - STATE(3795), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214947,34 +212120,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90300] = 8, - ACTIONS(2291), 1, + [88871] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - STATE(3901), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214998,109 +212171,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90359] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [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, + 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, + 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_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, + 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, + [89088] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5708), 1, - anon_sym_SEMI, - ACTIONS(5710), 1, - sym__automatic_semicolon, - STATE(1945), 1, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5667), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90466] = 8, - ACTIONS(2291), 1, + [89193] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + 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(5528), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3840), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215124,24 +212423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90525] = 8, - ACTIONS(1588), 1, + [89262] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5669), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, + STATE(3380), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -215151,7 +212450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215175,83 +212474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90584] = 6, - ACTIONS(4743), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4127), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 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(4704), 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, - [90639] = 8, - ACTIONS(2291), 1, + [89321] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5553), 2, sym_number, sym_private_property_identifier, STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215275,34 +212525,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90698] = 8, - ACTIONS(2291), 1, + [89380] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215326,241 +212576,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90757] = 26, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5651), 1, - anon_sym_PIPE, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90852] = 16, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5644), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4481), 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, - [90927] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4984), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91032] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, + [89439] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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, - ACTIONS(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215584,39 +212627,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91101] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [89498] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5601), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3785), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215640,61 +212678,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91170] = 19, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(1943), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + [89557] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_async, - ACTIONS(5720), 1, - anon_sym_static, - ACTIONS(5722), 1, - anon_sym_readonly, - ACTIONS(5728), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5572), 2, + ACTIONS(5456), 2, sym_number, sym_private_property_identifier, - ACTIONS(5716), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5724), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5726), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3640), 3, + STATE(3911), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5294), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5714), 14, + 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(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, @@ -215702,34 +212729,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91251] = 8, - ACTIONS(2291), 1, + [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, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5614), 2, + ACTIONS(5181), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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, - ACTIONS(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215753,91 +212827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91310] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + [89726] = 6, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3632), 1, anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4996), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91415] = 4, - ACTIONS(4877), 1, - sym_regex_flags, + ACTIONS(3635), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 17, + ACTIONS(3435), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -215848,14 +212850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4875), 22, + ACTIONS(3439), 25, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -215871,39 +212871,40 @@ 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, - [91466] = 6, - ACTIONS(4722), 1, - anon_sym_LBRACK, + anon_sym_satisfies, + [89781] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 2, + ACTIONS(1873), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4725), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + 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(3452), 24, - sym__automatic_semicolon, + ACTIONS(1879), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -215921,565 +212922,416 @@ 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, - [91521] = 31, - ACTIONS(3959), 1, + [89832] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5730), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91626] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4455), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5083), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5266), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91731] = 31, - ACTIONS(3959), 1, + [89937] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5736), 1, - anon_sym_AMP_AMP, - ACTIONS(5738), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, - anon_sym_GT_GT, - ACTIONS(5744), 1, - anon_sym_AMP, - ACTIONS(5746), 1, - anon_sym_CARET, - ACTIONS(5748), 1, - anon_sym_PIPE, - ACTIONS(5752), 1, - anon_sym_PERCENT, - ACTIONS(5754), 1, - anon_sym_STAR_STAR, - ACTIONS(5756), 1, - anon_sym_LT, - ACTIONS(5764), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4548), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5732), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5734), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5742), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5762), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91836] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4734), 2, - anon_sym_of, + ACTIONS(4501), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91941] = 31, - ACTIONS(3959), 1, + [90042] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, - anon_sym_of, + ACTIONS(4519), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92046] = 31, - ACTIONS(3959), 1, + [90147] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_of, + ACTIONS(4577), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92151] = 31, - ACTIONS(3959), 1, + [90252] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4610), 2, - anon_sym_of, + ACTIONS(4581), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92256] = 18, - ACTIONS(3959), 1, + [90357] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216487,10 +213339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 14, + ACTIONS(4583), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -216502,32 +213354,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92335] = 13, - ACTIONS(3959), 1, + [90436] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216540,10 +213392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216558,177 +213410,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92404] = 25, - ACTIONS(3959), 1, + [90505] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92497] = 26, - ACTIONS(3959), 1, + [90598] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92592] = 16, - ACTIONS(3959), 1, + [90693] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 8, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216737,10 +213589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216754,235 +213606,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92667] = 22, - ACTIONS(3959), 1, + [90768] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, + ACTIONS(4585), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92754] = 23, - ACTIONS(3959), 1, + [90855] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92843] = 24, - ACTIONS(3959), 1, + [90944] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92934] = 15, - ACTIONS(3959), 1, + [91035] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216993,10 +213845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217010,38 +213862,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [93007] = 16, - ACTIONS(3959), 1, + [91108] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -217053,9 +213905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217069,61 +213921,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [93082] = 20, - ACTIONS(3959), 1, + [91183] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 11, + ACTIONS(4583), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -217132,701 +213984,892 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [93165] = 27, - ACTIONS(3959), 1, + [91266] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + 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, + 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(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, + ACTIONS(4583), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91363] = 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(5736), 1, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4642), 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, + [91468] = 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(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5703), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5705), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(4648), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93262] = 31, - ACTIONS(3959), 1, + [91573] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4655), 2, - anon_sym_of, + ACTIONS(4716), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93367] = 31, - ACTIONS(3959), 1, + [91678] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(4728), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93472] = 31, - ACTIONS(3959), 1, + [91783] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4584), 2, - anon_sym_of, + ACTIONS(4732), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93577] = 31, - ACTIONS(3959), 1, + [91888] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4489), 2, - anon_sym_of, + ACTIONS(4503), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93682] = 31, - ACTIONS(3959), 1, + [91993] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4493), 2, - anon_sym_of, + ACTIONS(4505), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93787] = 31, - ACTIONS(3959), 1, + [92098] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4536), 2, - anon_sym_of, + ACTIONS(4734), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93892] = 31, - ACTIONS(3959), 1, + [92203] = 12, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5736), 1, - anon_sym_AMP_AMP, - ACTIONS(5738), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + 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, - ACTIONS(5744), 1, anon_sym_AMP, - ACTIONS(5746), 1, - anon_sym_CARET, - ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + 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, - ACTIONS(5754), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, - anon_sym_LT, - ACTIONS(5764), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, - sym__ternary_qmark, - STATE(1603), 1, + 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(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4538), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5734), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5750), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + 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, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [93997] = 31, - ACTIONS(3959), 1, + anon_sym_BQUOTE, + [92343] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4544), 2, - anon_sym_of, + ACTIONS(4708), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94102] = 7, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, + [92448] = 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(5716), 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(4712), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4416), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217844,81 +214887,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94159] = 4, + [92513] = 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(4181), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94210] = 8, - ACTIONS(2291), 1, + [92618] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + 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(5214), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217942,225 +215017,476 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94269] = 4, + [92687] = 4, + ACTIONS(4941), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1973), 6, + ACTIONS(4937), 17, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 11, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4939), 22, + sym__ternary_qmark, + anon_sym_LBRACE, 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [92738] = 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(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 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(4455), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92843] = 31, + 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(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(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94320] = 31, - ACTIONS(4425), 1, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 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(4501), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92948] = 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(4514), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 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(4519), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93053] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4577), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5771), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5292), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94425] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [93158] = 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(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 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(4893), 2, - sym_number, - sym_private_property_identifier, - STATE(3420), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94484] = 12, - ACTIONS(3959), 1, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4581), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93263] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5773), 1, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(5719), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4585), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 18, + ACTIONS(4583), 14, 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, @@ -218169,37 +215495,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [94551] = 15, - ACTIONS(3959), 1, + [93342] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5776), 1, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(4585), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -218210,8 +215533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 16, + ACTIONS(4583), 17, sym__ternary_qmark, + anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -218219,7 +215543,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, @@ -218227,114 +215550,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [94624] = 31, - ACTIONS(3959), 1, + anon_sym_satisfies, + [93411] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5736), 1, - anon_sym_AMP_AMP, - ACTIONS(5738), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5764), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4651), 2, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 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, - ACTIONS(5732), 2, + anon_sym_satisfies, + [93504] = 26, + 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(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 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(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94729] = 11, - ACTIONS(3959), 1, + ACTIONS(4583), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93599] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5779), 1, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5737), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 20, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -218343,1001 +215739,1078 @@ 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, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94794] = 31, - ACTIONS(3959), 1, + [93674] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4548), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94899] = 31, - ACTIONS(3959), 1, + ACTIONS(4583), 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, + [93761] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4734), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95004] = 31, - ACTIONS(3959), 1, + ACTIONS(4583), 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, + [93850] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95109] = 7, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4583), 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, + [93941] = 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(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 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(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, 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(3452), 23, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95166] = 7, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(4712), 1, + [94014] = 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(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 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(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 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(3452), 23, + ACTIONS(4583), 15, 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, - [95223] = 31, - ACTIONS(3959), 1, + [94089] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95328] = 4, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3448), 13, - anon_sym_STAR, + ACTIONS(4585), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + ACTIONS(4583), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, + [94172] = 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(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [95379] = 7, - ACTIONS(4045), 1, - anon_sym_QMARK, - ACTIONS(4047), 1, - anon_sym_extends, + ACTIONS(5743), 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(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4722), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3448), 11, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 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(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 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(4583), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95436] = 31, - ACTIONS(3959), 1, + [94269] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5622), 1, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4610), 2, - anon_sym_RBRACK, + ACTIONS(4642), 2, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95541] = 18, - ACTIONS(3959), 1, + [94374] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(4648), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5624), 2, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 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, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95620] = 13, - ACTIONS(3959), 1, + [94479] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5630), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5644), 1, + ACTIONS(5743), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4716), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 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, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95689] = 25, - ACTIONS(3959), 1, + [94584] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(5622), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - STATE(1603), 1, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(4728), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, - sym__ternary_qmark, + [94689] = 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, - anon_sym_RBRACK, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95782] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95851] = 4, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 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(1847), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5782), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4732), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5785), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94794] = 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(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95901] = 4, - ACTIONS(3561), 1, - anon_sym_EQ, + ACTIONS(5753), 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(3448), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4503), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94899] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, + 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(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5753), 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(4505), 2, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [95951] = 32, - ACTIONS(3959), 1, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95004] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5002), 1, - anon_sym_of, - ACTIONS(5734), 1, - anon_sym_GT, - ACTIONS(5736), 1, + ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - ACTIONS(5788), 1, - anon_sym_in, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(4734), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5742), 2, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96057] = 4, + [95109] = 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(5758), 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(4730), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5791), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219348,16 +216821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5794), 23, + ACTIONS(4676), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -219371,125 +216840,39 @@ 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, - [96107] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5797), 1, - anon_sym_readonly, - STATE(2814), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4893), 2, - sym_number, - sym_private_property_identifier, - STATE(3420), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 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, - [96171] = 9, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [95176] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4901), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4893), 2, - sym_number, - sym_private_property_identifier, - STATE(3420), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + 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, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96231] = 4, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5761), 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(1893), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5799), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -219498,46 +216881,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5802), 23, + ACTIONS(4699), 16, sym__ternary_qmark, - anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [95249] = 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(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 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(4708), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 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, - [96281] = 6, - ACTIONS(3959), 1, + [95354] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - STATE(1643), 1, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5764), 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(5805), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4397), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219548,15 +217005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 21, + ACTIONS(4416), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -219572,36 +217026,39 @@ 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, - [96335] = 6, - ACTIONS(4315), 1, + [95419] = 7, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(4810), 1, - anon_sym_RBRACK, - ACTIONS(4887), 1, - anon_sym_COMMA, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 23, + ACTIONS(3439), 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, @@ -219621,35 +217078,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96389] = 6, - ACTIONS(4659), 1, + [95476] = 7, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(4756), 1, - anon_sym_RBRACK, - ACTIONS(4889), 1, - anon_sym_COMMA, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 13, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219669,128 +217128,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96443] = 6, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4751), 1, - anon_sym_RBRACK, - ACTIONS(4891), 1, - anon_sym_COMMA, + [95533] = 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(1706), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5767), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5283), 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(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(4505), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96497] = 3, + 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(3177), 12, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, 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(3175), 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, - [96545] = 6, - ACTIONS(4722), 1, - anon_sym_LBRACK, + 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] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4047), 3, + ACTIONS(1865), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(5808), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219810,107 +217321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96599] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3173), 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(3171), 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, - [96647] = 6, - ACTIONS(4469), 1, - anon_sym_EQ, + [95792] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(4724), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 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(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96701] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4165), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(5811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219924,12 +217343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 24, + ACTIONS(5814), 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, @@ -219949,174 +217367,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96751] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3169), 12, - anon_sym_STAR, - anon_sym_COMMA, + [95842] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3167), 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, - [96799] = 4, + 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(5817), 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(4181), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 24, - sym__ternary_qmark, - anon_sym_as, + 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, + [95946] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(5695), 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, + 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(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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96849] = 6, - ACTIONS(4469), 1, - anon_sym_EQ, + [96050] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(4660), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 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(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96903] = 6, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4722), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + ACTIONS(5821), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(5824), 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, @@ -220136,35 +217559,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96957] = 6, - ACTIONS(4712), 1, - anon_sym_LBRACK, + [96100] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4123), 3, + ACTIONS(4138), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3448), 11, + 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(3452), 22, + 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, @@ -220184,604 +217605,558 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97011] = 6, - ACTIONS(4743), 1, + [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, anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(2756), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4127), 3, + 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_RBRACK, - anon_sym_extends, - ACTIONS(4702), 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_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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4704), 22, - sym__ternary_qmark, - anon_sym_as, + 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(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 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, + ACTIONS(4455), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [97065] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5807), 1, - anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97169] = 31, - ACTIONS(3959), 1, + [96326] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5622), 1, + ACTIONS(4501), 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(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + 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(5655), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5809), 1, - anon_sym_RBRACK, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97273] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [96430] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3164), 12, + anon_sym_STAR, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + 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(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(4088), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97377] = 31, - ACTIONS(3959), 1, + ACTIONS(4084), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4734), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5841), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [97481] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96528] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4708), 1, + ACTIONS(4519), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97585] = 31, - ACTIONS(3959), 1, + [96632] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4710), 1, + ACTIONS(4577), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97689] = 31, - ACTIONS(3959), 1, + [96736] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4610), 1, + ACTIONS(4581), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97793] = 18, - ACTIONS(3959), 1, + [96840] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -220789,7 +218164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 13, + ACTIONS(4583), 13, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -220803,32 +218178,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97871] = 13, - ACTIONS(3959), 1, + [96918] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220841,7 +218216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -220858,66 +218233,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97939] = 25, - ACTIONS(3959), 1, + [96986] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -220925,108 +218300,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98031] = 26, - ACTIONS(3959), 1, + [97078] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 6, + ACTIONS(4583), 6, sym__ternary_qmark, anon_sym_as, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98125] = 16, - ACTIONS(3959), 1, + [97172] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 8, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -221035,7 +218410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221051,62 +218426,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [98199] = 22, - ACTIONS(3959), 1, + [97246] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, + ACTIONS(4585), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221115,63 +218490,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98285] = 23, - ACTIONS(3959), 1, + [97332] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221180,65 +218555,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98373] = 24, - ACTIONS(3959), 1, + [97420] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221246,37 +218621,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98463] = 15, - ACTIONS(3959), 1, + [97510] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -221287,7 +218662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221303,38 +218678,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [98535] = 16, - ACTIONS(3959), 1, + [97582] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -221346,7 +218721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 14, + ACTIONS(4583), 14, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -221361,58 +218736,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [98609] = 20, - ACTIONS(3959), 1, + [97656] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221423,705 +218798,677 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98691] = 27, - ACTIONS(3959), 1, + [97738] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 5, + ACTIONS(4583), 5, sym__ternary_qmark, anon_sym_as, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98787] = 31, - ACTIONS(3959), 1, + [97834] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4655), 1, + ACTIONS(4642), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98891] = 31, - ACTIONS(3959), 1, + [97938] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4419), 1, - anon_sym_BQUOTE, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5815), 1, + ACTIONS(4648), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98995] = 31, - ACTIONS(3959), 1, + [98042] = 32, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4584), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5012), 1, + anon_sym_of, + ACTIONS(5721), 1, + anon_sym_GT, + ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(5832), 1, + anon_sym_in, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99099] = 31, - ACTIONS(3959), 1, + [98148] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4489), 1, + ACTIONS(4716), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99203] = 31, - ACTIONS(3959), 1, + [98252] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4493), 1, + ACTIONS(4728), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99307] = 31, - ACTIONS(3959), 1, + [98356] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4536), 1, + ACTIONS(4732), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99411] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4538), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [98460] = 6, + ACTIONS(3544), 1, + anon_sym_COMMA, + ACTIONS(3567), 1, + anon_sym_RBRACK, + ACTIONS(3637), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + 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, - ACTIONS(5837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99515] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98514] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4544), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(5835), 1, + anon_sym_COLON, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99619] = 15, - ACTIONS(2291), 1, + [98618] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, + ACTIONS(5839), 1, + anon_sym_readonly, + STATE(2823), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5837), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3421), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 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(2323), 18, + 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, @@ -222133,40 +219480,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99691] = 13, - ACTIONS(2291), 1, + [98682] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, + ACTIONS(5843), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5841), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 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(2323), 21, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222176,62 +219517,8 @@ 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, - [99759] = 14, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 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, @@ -222244,39 +219531,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99829] = 12, - ACTIONS(2291), 1, + [98742] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + ACTIONS(5847), 1, + anon_sym_readonly, + STATE(2805), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5845), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3432), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 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(2323), 21, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222285,12 +219571,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, @@ -222298,49 +219584,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99895] = 13, - ACTIONS(2291), 1, + [98806] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + ACTIONS(5851), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5849), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3342), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 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(2323), 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, @@ -222353,174 +219635,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99963] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5852), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5855), 23, - sym__ternary_qmark, - anon_sym_as, + [98866] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100013] = 4, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(4689), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5858), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5861), 23, - sym__ternary_qmark, - anon_sym_as, + 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(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(4503), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100063] = 4, + 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(4693), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5864), 13, + ACTIONS(4495), 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(5867), 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(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, - [100113] = 7, - ACTIONS(3484), 1, + [99074] = 4, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + 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(3452), 22, + ACTIONS(3439), 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, @@ -222540,164 +219827,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100169] = 31, - ACTIONS(3959), 1, + [99124] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5122), 1, - anon_sym_RBRACE, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(5855), 1, + anon_sym_COLON, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100273] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5870), 1, - anon_sym_readonly, - STATE(2790), 1, - sym_override_modifier, + [99228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, - sym_number, - sym_private_property_identifier, - STATE(3388), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3184), 12, + anon_sym_STAR, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 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, - [100337] = 9, - ACTIONS(1588), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DQUOTE, - ACTIONS(1590), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5872), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5712), 2, + anon_sym_AMP, + anon_sym_PIPE, sym_number, sym_private_property_identifier, - STATE(3388), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(3651), 23, + 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, @@ -222717,87 +219942,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100397] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5876), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [99276] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5874), 2, - sym_number, - sym_private_property_identifier, - STATE(3408), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1855), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 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, - [100461] = 9, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(5857), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5860), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5880), 1, - anon_sym_abstract, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99326] = 6, + ACTIONS(4429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5878), 2, + ACTIONS(4002), 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, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 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(3651), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222821,45 +220039,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100521] = 12, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [99380] = 7, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(4606), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5882), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 17, + 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, @@ -222873,174 +220084,235 @@ 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, - [100587] = 15, - ACTIONS(3959), 1, + [99436] = 6, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1942), 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(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, + [99490] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5885), 1, + 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, - STATE(1603), 1, + ACTIONS(5449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5451), 1, + sym__ternary_qmark, + ACTIONS(5863), 1, + anon_sym_COLON, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5417), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [100659] = 31, - ACTIONS(3959), 1, + [99594] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(4651), 1, + ACTIONS(4734), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100763] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5888), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [99698] = 6, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4618), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4621), 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_AMP, - 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), 19, + 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, @@ -223058,234 +220330,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100827] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [99752] = 6, + ACTIONS(4606), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5891), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100931] = 31, - ACTIONS(3959), 1, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5893), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99806] = 6, + ACTIONS(4529), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4186), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4423), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(4425), 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, - ACTIONS(5478), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101035] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + 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, + 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, + [99928] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - ACTIONS(5895), 1, + ACTIONS(5865), 1, anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101139] = 4, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 3, + 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), 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, + [100102] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1695), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5897), 13, + ACTIONS(5867), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223299,7 +220632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5900), 23, + ACTIONS(5870), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223323,15 +220656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101189] = 4, + [100152] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 3, + ACTIONS(4687), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5903), 13, + ACTIONS(5873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223345,7 +220678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5906), 23, + ACTIONS(5876), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223369,86 +220702,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101239] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5909), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [100202] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4691), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5879), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5882), 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(5478), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101343] = 4, - ACTIONS(3583), 1, + anon_sym_PLUS_PLUS, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223462,12 +220772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, - sym__automatic_semicolon, + ACTIONS(4106), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -223488,103 +220796,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101393] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [100306] = 12, + 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(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5911), 1, + 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, + 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, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + 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(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4612), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + 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, - ACTIONS(5478), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101497] = 11, - ACTIONS(1588), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100426] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5915), 1, + ACTIONS(5885), 1, anon_sym_readonly, - STATE(2827), 1, + STATE(2788), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5913), 2, + ACTIONS(5669), 2, sym_number, sym_private_property_identifier, - STATE(3364), 3, + STATE(3380), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223592,7 +220929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 21, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223614,26 +220951,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101561] = 9, - ACTIONS(1588), 1, + [100490] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5919), 1, + ACTIONS(5887), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5917), 2, + 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_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(3366), 3, + STATE(3423), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223641,7 +221033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223650,14 +221042,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, @@ -223665,30 +221055,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101621] = 11, - ACTIONS(1588), 1, + [100614] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5923), 1, - anon_sym_readonly, - STATE(2791), 1, - sym_override_modifier, + ACTIONS(5895), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5921), 2, + ACTIONS(5893), 2, sym_number, sym_private_property_identifier, - STATE(3303), 3, + STATE(3431), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223696,7 +221082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 21, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223705,12 +221091,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, @@ -223718,45 +221106,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101685] = 9, - ACTIONS(1588), 1, + [100674] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5927), 1, - anon_sym_abstract, + ACTIONS(4965), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5925), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5634), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 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, @@ -223769,90 +221161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101745] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5929), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5482), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101849] = 6, - ACTIONS(3549), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_RBRACK, - ACTIONS(3642), 1, + [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(3448), 13, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223866,7 +221185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1667), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223890,336 +221209,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101903] = 31, - ACTIONS(3959), 1, + [100796] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5622), 1, + ACTIONS(5675), 1, + anon_sym_AMP_AMP, + ACTIONS(5677), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + 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(5655), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - ACTIONS(5931), 1, + ACTIONS(5897), 1, anon_sym_RBRACK, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102007] = 31, - ACTIONS(3959), 1, + [100900] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + 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(5456), 1, + ACTIONS(5080), 1, + anon_sym_RBRACE, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - ACTIONS(5933), 1, - anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 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, + 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), 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, - [102111] = 31, - ACTIONS(3959), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101070] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, + 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, + 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), 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, + [101142] = 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(5456), 1, + ACTIONS(4708), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5935), 1, - anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102215] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, + [101246] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102274] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5905), 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(5937), 2, - sym_number, - sym_private_property_identifier, - STATE(3423), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102331] = 4, - ACTIONS(4877), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4873), 17, + ACTIONS(4414), 12, 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, @@ -224227,17 +221570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4875), 20, + ACTIONS(4416), 19, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -224250,223 +221587,108 @@ 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, - [102380] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5939), 2, - sym_number, - sym_private_property_identifier, - STATE(3354), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102437] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5941), 2, - sym_number, - sym_private_property_identifier, - STATE(3375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102494] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5943), 2, - sym_number, - sym_private_property_identifier, - STATE(3383), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102551] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + anon_sym_satisfies, + [101310] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5945), 2, - sym_number, - sym_private_property_identifier, - STATE(3357), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + 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, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102608] = 8, - ACTIONS(1588), 1, + 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(5908), 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, + [101414] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + 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(5947), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3424), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224474,7 +221696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224483,14 +221705,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, @@ -224498,86 +221718,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102665] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [101478] = 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(5912), 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(5949), 2, - sym_number, - sym_private_property_identifier, - STATE(3302), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102722] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + 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, + [101582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 6, + 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, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3186), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -224597,124 +221833,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102781] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [101630] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(1733), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(5914), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, + 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(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102840] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 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, + [101680] = 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(5920), 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, + [101784] = 4, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + 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), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 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, + [101834] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, + ACTIONS(1585), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102899] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(4931), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5951), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3474), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224722,7 +222028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224746,149 +222052,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102956] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [101894] = 6, + ACTIONS(4618), 1, anon_sym_LBRACK, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103019] = 9, - ACTIONS(241), 1, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4024), 3, anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + 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, + [101948] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(5922), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + 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, + [102002] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, + ACTIONS(1585), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103078] = 12, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5924), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3315), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 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(2323), 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, @@ -224901,37 +222197,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103143] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224941,6 +222233,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, @@ -224953,24 +222247,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103206] = 8, - ACTIONS(1588), 1, + [102118] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 2, + ACTIONS(5926), 2, sym_number, sym_private_property_identifier, - STATE(3477), 3, + STATE(3378), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224978,7 +222272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225002,19 +222296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103263] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + [102175] = 4, + ACTIONS(4941), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 12, + 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, @@ -225025,9 +222318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4939), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -225044,38 +222338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [103316] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [102224] = 8, + 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(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5928), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(3401), 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, @@ -225099,32 +222390,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103375] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [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(5955), 2, - sym_number, - sym_private_property_identifier, - STATE(3445), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, + 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, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(4429), 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(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 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, @@ -225148,32 +222511,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103432] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, + [102441] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4429), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 2, - sym_number, - sym_private_property_identifier, - STATE(3312), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225197,33 +222561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103489] = 9, - ACTIONS(241), 1, + [102500] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(5064), 1, + ACTIONS(5023), 1, anon_sym_RBRACE, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(1938), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225247,33 +222611,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103548] = 9, - ACTIONS(241), 1, + [102559] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(5064), 1, + ACTIONS(5023), 1, anon_sym_RBRACE, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(1942), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225297,24 +222661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103607] = 8, - ACTIONS(1588), 1, + [102618] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5959), 2, + ACTIONS(5930), 2, sym_number, sym_private_property_identifier, - STATE(3309), 3, + STATE(3302), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225322,7 +222686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225346,32 +222710,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103664] = 8, - ACTIONS(1588), 1, + [102675] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3318), 3, + ACTIONS(5634), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225395,95 +222761,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103721] = 30, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4514), 1, + [102736] = 30, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4828), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(2355), 1, - sym_arguments, - STATE(2669), 1, + STATE(1533), 1, sym_type_arguments, - STATE(5093), 1, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103822] = 8, - ACTIONS(1588), 1, + [102837] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5963), 2, + ACTIONS(5932), 2, sym_number, sym_private_property_identifier, - STATE(3346), 3, + STATE(3305), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225491,7 +222857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225515,33 +222881,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103879] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [102894] = 8, + 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(3791), 4, - anon_sym_LPAREN, + ACTIONS(5934), 2, + sym_number, + sym_private_property_identifier, + STATE(3455), 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_LT, anon_sym_QMARK, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, + 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, + [102951] = 8, + 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(5936), 2, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + 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, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225565,33 +222979,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103938] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + [103008] = 4, + ACTIONS(3604), 1, anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + 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, 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, + [103057] = 8, + 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(5938), 2, + sym_number, + sym_private_property_identifier, + STATE(3303), 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_LT, anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, + 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, + [103114] = 8, + 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(5940), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(3466), 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, @@ -225615,104 +223122,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103997] = 30, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [103171] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5942), 2, + sym_number, + sym_private_property_identifier, + STATE(3399), 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, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + 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, + [103228] = 8, + 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(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104098] = 9, - ACTIONS(241), 1, + ACTIONS(5944), 2, + sym_number, + sym_private_property_identifier, + STATE(3408), 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, + [103285] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(727), 1, + ACTIONS(5665), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5136), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + 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(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225736,33 +223272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104157] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [103348] = 8, + 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(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(3406), 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, @@ -225786,43 +223321,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104216] = 8, - ACTIONS(1588), 1, + [103405] = 12, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4736), 1, anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3343), 3, + 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(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 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, @@ -225835,24 +223374,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104273] = 8, - ACTIONS(1588), 1, + [103470] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5967), 2, + ACTIONS(5948), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3336), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225860,7 +223399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225884,16 +223423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104330] = 4, - ACTIONS(3608), 1, + [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(3448), 13, + ACTIONS(3435), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -225904,12 +223446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(3439), 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, @@ -225929,79 +223470,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104379] = 4, - ACTIONS(3620), 1, + [103580] = 9, + 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(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 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, - [104428] = 10, - ACTIONS(2291), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, sym_number, sym_private_property_identifier, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226025,24 +223520,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104489] = 3, + [103639] = 9, + 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(5971), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 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(5969), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226066,71 +223570,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104535] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2081), 1, - sym_template_string, + [103698] = 8, + 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(1905), 13, - anon_sym_STAR, + ACTIONS(5950), 2, + sym_number, + sym_private_property_identifier, + STATE(3451), 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_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1907), 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, - [104585] = 3, + 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, + [103755] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 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(5975), 12, - sym__automatic_semicolon, + ACTIONS(3758), 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(5973), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226154,26 +223669,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104631] = 3, + [103814] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 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(5979), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 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(5977), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226197,78 +223719,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104677] = 4, - ACTIONS(3709), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 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, - [104725] = 9, - ACTIONS(2291), 1, + [103873] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5952), 2, sym_number, sym_private_property_identifier, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3454), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 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(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226292,24 +223768,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104783] = 3, + [103930] = 8, + 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(5971), 12, + ACTIONS(5954), 2, + sym_number, + sym_private_property_identifier, + STATE(3439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, - anon_sym_LBRACK, + 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, + [103987] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, + ACTIONS(1507), 1, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4736), 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, - anon_sym_AT, - ACTIONS(5969), 25, + 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), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226319,8 +223857,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, @@ -226333,26 +223869,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104829] = 3, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, - sym__automatic_semicolon, + ACTIONS(3758), 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(5981), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226376,26 +223919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104875] = 3, + [104109] = 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 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(5985), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226419,26 +223969,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104921] = 3, + [104168] = 4, + ACTIONS(3596), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, - sym__automatic_semicolon, + 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, + 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, + [104217] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, anon_sym_RBRACE, - anon_sym_SEMI, + 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, + 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(5989), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226462,13 +224064,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104967] = 3, + [104276] = 4, + ACTIONS(3730), 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, + [104324] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(1809), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226481,7 +224125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226507,11 +224151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105013] = 3, + [104370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226524,7 +224168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226550,11 +224194,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105059] = 3, + [104416] = 4, + ACTIONS(3736), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226567,7 +224255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226593,11 +224281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105105] = 3, + [104510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226610,7 +224298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226636,11 +224324,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105151] = 3, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(3517), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3515), 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, + [104612] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226653,7 +224389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226679,55 +224415,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105197] = 4, - ACTIONS(3717), 1, - anon_sym_EQ, + [104658] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5974), 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(3452), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5972), 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, + [104704] = 4, + ACTIONS(5976), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1809), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105245] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1811), 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, + [104752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226740,7 +224519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226766,11 +224545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105291] = 3, + [104798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(5980), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226783,7 +224562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(5978), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226809,11 +224588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105337] = 3, + [104844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226826,7 +224605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226852,11 +224631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105383] = 3, + [104890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226869,7 +224648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226895,11 +224674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105429] = 3, + [104936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226912,7 +224691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226938,11 +224717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105475] = 3, + [104982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226955,7 +224734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226981,11 +224760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105521] = 3, + [105028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226998,7 +224777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227024,55 +224803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105567] = 4, - ACTIONS(3725), 1, - anon_sym_EQ, + [105074] = 5, + ACTIONS(5998), 1, + anon_sym_SEMI, + ACTIONS(6001), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5996), 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_RBRACE, + 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(3452), 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, - [105615] = 3, + 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, + [105124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 12, + ACTIONS(6005), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227085,7 +224865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(6003), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227111,11 +224891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105661] = 3, + [105170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(6009), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227128,7 +224908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(6007), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227154,11 +224934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105707] = 3, + [105216] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227171,7 +224951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227197,11 +224977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105753] = 3, + [105262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227214,7 +224994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227240,12 +225020,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105799] = 3, + [105308] = 4, + ACTIONS(3698), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + 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, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1659), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227257,7 +225082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(1661), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227283,13 +225108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105845] = 4, - ACTIONS(6005), 1, - sym__automatic_semicolon, + [105404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 11, + ACTIONS(6019), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227301,7 +225125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1704), 25, + ACTIONS(6017), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227327,24 +225151,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105893] = 3, + [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(5975), 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(5973), 25, + 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, @@ -227368,15 +225200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [105939] = 4, - ACTIONS(3733), 1, + [105508] = 4, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227390,7 +225220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227414,99 +225244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105987] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5991), 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(5989), 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, - [106033] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1735), 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(1737), 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, - [106079] = 4, - ACTIONS(3693), 1, + [105556] = 4, + ACTIONS(3708), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227520,7 +225264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227544,17 +225288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106127] = 5, - ACTIONS(6011), 1, - anon_sym_SEMI, - ACTIONS(6014), 1, - sym__automatic_semicolon, + [105604] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 10, + ACTIONS(6023), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -227563,7 +225305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6021), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227589,11 +225331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106177] = 3, + [105650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, + ACTIONS(1723), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227606,7 +225348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(1725), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227632,11 +225374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106223] = 3, + [105696] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227649,7 +225391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227675,11 +225417,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106269] = 3, + [105742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227692,7 +225434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227718,13 +225460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106315] = 4, - ACTIONS(3695), 1, + [105788] = 4, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227738,7 +225480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227762,11 +225504,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106363] = 3, + [105836] = 4, + ACTIONS(3728), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + 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, + [105884] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227779,7 +225565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227805,11 +225591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106409] = 3, + [105930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 12, + ACTIONS(6027), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227822,7 +225608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6016), 25, + ACTIONS(6025), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227848,13 +225634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106455] = 4, - ACTIONS(6020), 1, + [105976] = 4, + ACTIONS(6029), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 11, + ACTIONS(1809), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227866,7 +225652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227892,11 +225678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106503] = 3, + [106024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227909,7 +225695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227935,55 +225721,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106549] = 4, - ACTIONS(3727), 1, - anon_sym_EQ, + [106070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5958), 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(3452), 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, - [106597] = 3, + 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, + [106116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227996,7 +225781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228022,11 +225807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106643] = 3, + [106162] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228039,7 +225824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228065,11 +225850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106689] = 3, + [106208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228082,7 +225867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228108,11 +225893,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106735] = 3, + [106254] = 5, + ACTIONS(6035), 1, + anon_sym_SEMI, + ACTIONS(6038), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(6033), 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(6031), 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, + [106304] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228125,7 +225955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228151,11 +225981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106781] = 3, + [106350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228168,7 +225998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228194,11 +226024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106827] = 3, + [106396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(6027), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228211,7 +226041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6025), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228237,11 +226067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106873] = 3, + [106442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228254,7 +226084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228280,11 +226110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106919] = 3, + [106488] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228297,7 +226127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228323,17 +226153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106965] = 5, - ACTIONS(6038), 1, - anon_sym_SEMI, - ACTIONS(6041), 1, - sym__automatic_semicolon, + [106534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6036), 10, + ACTIONS(5970), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -228342,7 +226170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6034), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228368,11 +226196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107015] = 3, + [106580] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6045), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228385,7 +226213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6043), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228411,29 +226239,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107061] = 8, - ACTIONS(6047), 1, - anon_sym_LPAREN, - ACTIONS(6049), 1, - anon_sym_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(2763), 1, - sym_arguments, - STATE(5373), 1, - sym_type_arguments, + [106626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 7, + 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, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3531), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228459,11 +226282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107117] = 3, + [106672] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228476,7 +226299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228502,55 +226325,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107163] = 4, - ACTIONS(3745), 1, - anon_sym_EQ, + [106718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5970), 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(3452), 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, - [107211] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5968), 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, + [106764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228563,7 +226385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228589,13 +226411,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107257] = 4, - ACTIONS(6053), 1, + [106810] = 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, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 11, + ACTIONS(5974), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228607,7 +226515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1704), 25, + ACTIONS(5972), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228633,11 +226541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107305] = 3, + [106950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228650,7 +226558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228676,13 +226584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107351] = 4, - ACTIONS(3729), 1, + [106996] = 4, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228696,7 +226604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228720,13 +226628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107399] = 4, - ACTIONS(6055), 1, + [107044] = 4, + ACTIONS(6040), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 11, + ACTIONS(1659), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228738,7 +226646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(1661), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228764,28 +226672,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107447] = 3, + [107092] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 10, + ACTIONS(5958), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3600), 27, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -228807,11 +226715,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107493] = 3, + [107138] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2315), 1, + sym_template_string, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + 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, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [107188] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228824,7 +226777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228850,96 +226803,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107539] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - STATE(2293), 1, - sym_arguments, + [107234] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(5984), 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_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4399), 21, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [107588] = 14, - ACTIONS(2291), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, anon_sym_SQUOTE, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(6057), 1, - anon_sym_STAR, - ACTIONS(6059), 1, - anon_sym_async, - ACTIONS(6063), 1, - anon_sym_readonly, - STATE(2759), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6061), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6065), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3864), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 18, + 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, @@ -228947,23 +226844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107655] = 3, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6069), 11, + ACTIONS(3758), 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(6067), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228987,13 +226892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107700] = 3, + [107333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6073), 11, + ACTIONS(6044), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229005,7 +226908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6071), 25, + ACTIONS(6042), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229031,39 +226934,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107745] = 3, + [107378] = 14, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6046), 1, + anon_sym_STAR, + ACTIONS(6048), 1, + anon_sym_async, + ACTIONS(6052), 1, + anon_sym_readonly, + STATE(2762), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 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, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6075), 25, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3758), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3791), 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_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229071,25 +226987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107790] = 3, + [107445] = 6, + ACTIONS(4429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 11, - anon_sym_STAR, + ACTIONS(5634), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + 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, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6075), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229113,13 +227032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107835] = 3, + [107496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1735), 11, + ACTIONS(1809), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229131,7 +227048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1737), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229157,28 +227074,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107880] = 6, - ACTIONS(4469), 1, + [107541] = 6, + ACTIONS(4429), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5674), 2, + ACTIONS(5634), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(1938), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229202,71 +227119,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107931] = 3, + [107592] = 5, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2088), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6081), 11, + ACTIONS(4218), 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_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6079), 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, - [107976] = 7, - ACTIONS(5566), 1, + 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_COMMA, - ACTIONS(5657), 1, + ACTIONS(5665), 1, anon_sym_RBRACE, - STATE(5157), 1, + STATE(5136), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(1942), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229290,11 +227209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108029] = 3, + [107694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 11, + ACTIONS(6058), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229306,7 +227225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(6056), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229332,29 +227251,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108074] = 7, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, + [107739] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(1723), 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(1971), 23, + anon_sym_AT, + ACTIONS(1725), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229378,28 +227291,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108127] = 6, - ACTIONS(4469), 1, - anon_sym_EQ, + anon_sym_abstract, + anon_sym_accessor, + [107784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 6, + 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, - ACTIONS(2005), 23, + anon_sym_AT, + ACTIONS(6060), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229423,54 +227333,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108178] = 17, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4781), 1, - anon_sym_accessor, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_async, - ACTIONS(6083), 1, - anon_sym_static, - ACTIONS(6085), 1, - anon_sym_readonly, - ACTIONS(6087), 1, - anon_sym_declare, - ACTIONS(6089), 1, anon_sym_abstract, - STATE(2750), 1, - sym_override_modifier, + anon_sym_accessor, + [107829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4801), 2, + 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, - ACTIONS(4805), 2, - anon_sym_get, - anon_sym_set, - STATE(3005), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 16, + 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, @@ -229478,26 +227375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108250] = 5, + anon_sym_abstract, + anon_sym_accessor, + [107874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, + 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(1971), 23, + anon_sym_AT, + ACTIONS(6056), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229521,54 +227417,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108298] = 17, - ACTIONS(1588), 1, + anon_sym_abstract, + anon_sym_accessor, + [107919] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, + ACTIONS(6046), 1, anon_sym_STAR, - ACTIONS(5042), 1, - anon_sym_async, - ACTIONS(6093), 1, - anon_sym_static, - ACTIONS(6095), 1, - anon_sym_readonly, - ACTIONS(6097), 1, - anon_sym_declare, - ACTIONS(6099), 1, - anon_sym_abstract, - ACTIONS(6101), 1, - anon_sym_accessor, - STATE(2764), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6091), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - STATE(3017), 3, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3758), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 16, + 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, @@ -229576,26 +227467,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108370] = 5, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, + STATE(3791), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229619,33 +227514,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108418] = 10, - ACTIONS(2291), 1, + [108033] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6070), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(6072), 2, sym_number, sym_private_property_identifier, - ACTIONS(6107), 2, + ACTIONS(6074), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3882), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229667,33 +227562,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108476] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_STAR, + [108091] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5827), 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, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6113), 2, + 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, - ACTIONS(3791), 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, + [108139] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5827), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3758), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3925), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229703,6 +227634,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, @@ -229715,33 +227648,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108534] = 10, - ACTIONS(2291), 1, + [108187] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6076), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - ACTIONS(6119), 2, + ACTIONS(6080), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3871), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229763,35 +227696,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108592] = 11, - ACTIONS(2291), 1, + [108245] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6082), 1, anon_sym_STAR, - ACTIONS(6121), 1, + ACTIONS(6084), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(6119), 2, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3871), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229812,35 +227745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108652] = 11, - ACTIONS(2291), 1, + [108305] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6109), 1, + ACTIONS(6076), 1, anon_sym_STAR, - ACTIONS(6123), 1, + ACTIONS(6090), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - ACTIONS(6113), 2, + ACTIONS(6080), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3925), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229861,46 +227794,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108712] = 9, - ACTIONS(2291), 1, + [108365] = 17, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6125), 1, - anon_sym_EQ_GT, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_async, + ACTIONS(4774), 1, + anon_sym_accessor, + ACTIONS(6092), 1, + anon_sym_static, + ACTIONS(6094), 1, + anon_sym_readonly, + ACTIONS(6096), 1, + anon_sym_declare, + ACTIONS(6098), 1, + anon_sym_abstract, + STATE(2746), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3864), 3, + ACTIONS(4758), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + 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_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, + [108437] = 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(5043), 1, + anon_sym_STAR, + ACTIONS(5045), 1, + anon_sym_async, + ACTIONS(6102), 1, anon_sym_static, + ACTIONS(6104), 1, anon_sym_readonly, + ACTIONS(6106), 1, + anon_sym_declare, + ACTIONS(6108), 1, + anon_sym_abstract, + ACTIONS(6110), 1, + anon_sym_accessor, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5051), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + ACTIONS(6100), 2, + sym_number, + sym_private_property_identifier, + STATE(3021), 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_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229908,35 +227904,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108768] = 11, - ACTIONS(2291), 1, + [108509] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(6046), 1, anon_sym_STAR, - ACTIONS(6059), 1, + ACTIONS(6048), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(6065), 2, + ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229957,33 +227953,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108828] = 10, - ACTIONS(2291), 1, + [108569] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(6082), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(6065), 2, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230005,36 +228001,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108886] = 13, - ACTIONS(1588), 1, + [108627] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3572), 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(3570), 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, + [108671] = 13, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6114), 1, anon_sym_static, - ACTIONS(6131), 1, + ACTIONS(6116), 1, anon_sym_readonly, - ACTIONS(6133), 1, + ACTIONS(6118), 1, anon_sym_abstract, - ACTIONS(6135), 1, + ACTIONS(6120), 1, anon_sym_accessor, - STATE(2811), 1, + STATE(2795), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6127), 2, + ACTIONS(6112), 2, sym_number, sym_private_property_identifier, - STATE(3419), 3, + STATE(3445), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230055,28 +228092,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108949] = 8, - ACTIONS(2291), 1, + [108734] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, + ACTIONS(6122), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3816), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230100,28 +228137,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109002] = 8, - ACTIONS(2291), 1, + [108787] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(6124), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3825), 3, + STATE(3879), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230145,28 +228182,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109055] = 8, - ACTIONS(2291), 1, + [108840] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5703), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3824), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230190,28 +228227,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109108] = 8, - ACTIONS(2291), 1, + [108893] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5601), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3850), 3, + STATE(3785), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230235,28 +228272,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109161] = 8, - ACTIONS(2291), 1, + [108946] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5426), 2, + ACTIONS(5203), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3875), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230280,28 +228317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109214] = 8, - ACTIONS(2291), 1, + [108999] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5456), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3880), 3, + STATE(3911), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230325,28 +228362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109267] = 8, - ACTIONS(2291), 1, + [109052] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3881), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230370,36 +228407,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109320] = 13, - ACTIONS(1588), 1, + [109105] = 13, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4895), 1, + ACTIONS(4925), 1, anon_sym_static, - ACTIONS(4897), 1, + ACTIONS(4927), 1, anon_sym_readonly, - ACTIONS(4899), 1, + ACTIONS(4929), 1, anon_sym_abstract, - ACTIONS(4901), 1, + ACTIONS(4931), 1, anon_sym_accessor, - STATE(2814), 1, + STATE(2782), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230420,28 +228457,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109383] = 8, - ACTIONS(2291), 1, + [109168] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3839), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230465,69 +228502,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109436] = 8, - ACTIONS(2291), 1, + [109221] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6139), 2, + ACTIONS(5181), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3805), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109489] = 6, - ACTIONS(6141), 1, - anon_sym_AT, - STATE(2705), 1, - aux_sym_export_statement_repeat1, - STATE(2748), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3575), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3573), 25, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230551,30 +228547,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109538] = 8, - ACTIONS(2291), 1, + [109274] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230598,28 +228592,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109591] = 8, - ACTIONS(2291), 1, + [109327] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3882), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230643,28 +228637,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109644] = 8, - ACTIONS(2291), 1, + [109380] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5528), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3840), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230688,28 +228682,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109697] = 8, - ACTIONS(2291), 1, + [109433] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6144), 2, + ACTIONS(5383), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3924), 3, + STATE(3868), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230733,28 +228727,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109750] = 8, - ACTIONS(2291), 1, + [109486] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3871), 3, + STATE(3813), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230778,28 +228772,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109803] = 8, - ACTIONS(2291), 1, + [109539] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6146), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3897), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230823,28 +228817,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109856] = 8, - ACTIONS(2291), 1, + [109592] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3775), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230868,28 +228862,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109909] = 8, - ACTIONS(2291), 1, + [109645] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(6126), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3901), 3, + STATE(3795), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230913,28 +228907,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109962] = 8, - ACTIONS(2291), 1, + [109698] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(6128), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3772), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230958,28 +228952,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110015] = 8, - ACTIONS(2291), 1, + [109751] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(6072), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3919), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231003,28 +228997,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110068] = 8, - ACTIONS(2291), 1, + [109804] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3795), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231048,28 +229042,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110121] = 8, - ACTIONS(2291), 1, + [109857] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6148), 2, + ACTIONS(6130), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3804), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231093,28 +229087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110174] = 8, - ACTIONS(2291), 1, + [109910] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5200), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3815), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231138,28 +229132,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110227] = 8, - ACTIONS(2291), 1, + [109963] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6150), 2, + ACTIONS(5413), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3923), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231183,28 +229177,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110280] = 8, - ACTIONS(2291), 1, + [110016] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5328), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3800), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231228,28 +229222,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110333] = 8, - ACTIONS(2291), 1, + [110069] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5368), 2, + ACTIONS(5235), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3786), 3, + STATE(3916), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231273,28 +229267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110386] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, + [110122] = 6, + ACTIONS(6132), 1, + anon_sym_AT, + STATE(2717), 1, + aux_sym_export_statement_repeat1, + STATE(2749), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(3583), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3894), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3581), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231318,28 +229308,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110439] = 8, - ACTIONS(2291), 1, + anon_sym_abstract, + anon_sym_accessor, + [110171] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5553), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3925), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231363,49 +229355,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110492] = 14, - ACTIONS(2291), 1, + [110224] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(6152), 1, - anon_sym_static, - STATE(2768), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(6135), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, + ACTIONS(3758), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 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, @@ -231413,28 +229400,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110556] = 9, - ACTIONS(1510), 1, + [110277] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6154), 1, + ACTIONS(6137), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(4823), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6139), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4037), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231458,28 +229445,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110610] = 9, - ACTIONS(1510), 1, + [110331] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6158), 1, + ACTIONS(6141), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231503,49 +229490,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110664] = 14, - ACTIONS(1588), 1, + [110385] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - ACTIONS(6160), 1, - anon_sym_static, - STATE(2769), 1, - sym_override_modifier, + ACTIONS(6145), 1, + anon_sym_RBRACE, + STATE(5484), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 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, @@ -231553,35 +229535,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110728] = 12, - ACTIONS(1588), 1, + [110439] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6162), 1, - anon_sym_STAR, - ACTIONS(6166), 1, + ACTIONS(5910), 1, anon_sym_readonly, - STATE(2749), 1, + ACTIONS(6147), 1, + anon_sym_STAR, + STATE(2758), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(6149), 2, sym_number, sym_private_property_identifier, - ACTIONS(6168), 2, + ACTIONS(6151), 2, anon_sym_get, anon_sym_set, STATE(3010), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231601,44 +229583,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110788] = 9, - ACTIONS(1510), 1, + [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, + 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(811), 1, + sym_internal_module, + STATE(886), 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, + [110659] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(5057), 1, + anon_sym_STAR, + ACTIONS(5059), 1, + anon_sym_async, + ACTIONS(5063), 1, + anon_sym_readonly, + ACTIONS(6155), 1, + anon_sym_static, + STATE(2766), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(5065), 2, + anon_sym_get, + anon_sym_set, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + 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_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231646,51 +229749,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110842] = 22, - ACTIONS(99), 1, + [110723] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2355), 1, + ACTIONS(2346), 1, anon_sym_type, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2366), 1, + anon_sym_module, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2370), 1, + anon_sym_global, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3793), 1, - anon_sym_module, - ACTIONS(6172), 1, - anon_sym_default, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(3976), 1, - sym_declaration, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, + STATE(4415), 1, + sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -231704,44 +229807,49 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110922] = 9, - ACTIONS(1510), 1, + [110803] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6174), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + 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(6156), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + 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_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231749,51 +229857,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110976] = 22, - ACTIONS(99), 1, + [110867] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2247), 1, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2249), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2251), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2253), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2258), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2260), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2262), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2271), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2273), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2275), 1, + ACTIONS(2270), 1, anon_sym_enum, - ACTIONS(2305), 1, + ACTIONS(2296), 1, anon_sym_type, - ACTIONS(2309), 1, - anon_sym_global, - ACTIONS(2317), 1, + ACTIONS(2306), 1, anon_sym_namespace, - ACTIONS(2319), 1, + ACTIONS(2308), 1, anon_sym_declare, - ACTIONS(2345), 1, + ACTIONS(2310), 1, anon_sym_module, - STATE(874), 1, - sym_declaration, - STATE(890), 1, + ACTIONS(6159), 1, + anon_sym_default, + STATE(811), 1, sym_internal_module, - STATE(1267), 1, + STATE(843), 1, + sym_declaration, + STATE(1290), 1, sym_decorator, - STATE(4426), 1, + STATE(4284), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(789), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -231807,28 +229915,28 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111056] = 9, - ACTIONS(1510), 1, + [110947] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6176), 1, + ACTIONS(6161), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231852,28 +229960,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111110] = 9, - ACTIONS(1510), 1, + [111001] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6163), 1, anon_sym_RBRACE, - STATE(4905), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4072), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231897,44 +230005,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111164] = 9, - ACTIONS(1510), 1, + [111055] = 14, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + 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(6182), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(6165), 1, + anon_sym_static, + STATE(2756), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + 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_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231942,51 +230055,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111218] = 22, - ACTIONS(99), 1, + [111119] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2355), 1, - anon_sym_type, - ACTIONS(2357), 1, + ACTIONS(2238), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2262), 1, anon_sym_declare, - ACTIONS(2375), 1, + ACTIONS(2264), 1, anon_sym_module, - ACTIONS(2377), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2379), 1, - anon_sym_global, - ACTIONS(2381), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2270), 1, anon_sym_enum, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4425), 1, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(6167), 1, + anon_sym_default, + STATE(811), 1, sym_internal_module, - STATE(4446), 1, + 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(4422), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232000,51 +230113,96 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111298] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2243), 1, + [111199] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6169), 1, + anon_sym_RBRACE, + STATE(4815), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6171), 2, + sym_number, + sym_private_property_identifier, + STATE(3979), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2247), 1, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111253] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2249), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2251), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2253), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2258), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2260), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2262), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2267), 1, - anon_sym_declare, - ACTIONS(2269), 1, - anon_sym_module, - ACTIONS(2271), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2273), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2275), 1, + ACTIONS(2270), 1, anon_sym_enum, - ACTIONS(2305), 1, + ACTIONS(2296), 1, anon_sym_type, - ACTIONS(6184), 1, - anon_sym_default, - STATE(825), 1, - sym_declaration, - STATE(890), 1, + 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(1267), 1, + STATE(886), 1, + sym_declaration, + STATE(1290), 1, sym_decorator, - STATE(4426), 1, + STATE(4284), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(789), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232058,49 +230216,44 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111378] = 14, - ACTIONS(1588), 1, + [111333] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, - ACTIONS(5060), 1, - anon_sym_readonly, - ACTIONS(6186), 1, - anon_sym_static, - STATE(2746), 1, - sym_override_modifier, + ACTIONS(6173), 1, + anon_sym_RBRACE, + STATE(5484), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5058), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 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, @@ -232108,28 +230261,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111442] = 9, - ACTIONS(1510), 1, + [111387] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6188), 1, + ACTIONS(6175), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232153,86 +230306,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111496] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2247), 1, - anon_sym_import, - ACTIONS(2249), 1, - anon_sym_var, - ACTIONS(2251), 1, - anon_sym_let, - ACTIONS(2253), 1, - anon_sym_const, - ACTIONS(2258), 1, - anon_sym_class, - ACTIONS(2260), 1, - anon_sym_async, - ACTIONS(2262), 1, - anon_sym_function, - ACTIONS(2271), 1, - anon_sym_abstract, - ACTIONS(2273), 1, - anon_sym_interface, - ACTIONS(2275), 1, - anon_sym_enum, - ACTIONS(2305), 1, + [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(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, - ACTIONS(2317), 1, anon_sym_namespace, - ACTIONS(2319), 1, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2321), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(6190), 1, - anon_sym_default, - STATE(825), 1, - sym_declaration, - STATE(890), 1, - sym_internal_module, - STATE(1267), 1, - sym_decorator, - STATE(4426), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(789), 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, - [111576] = 9, - ACTIONS(1510), 1, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111495] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6192), 1, + ACTIONS(6179), 1, anon_sym_RBRACE, - STATE(4794), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6194), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4047), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232256,51 +230396,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111630] = 22, - ACTIONS(99), 1, + [111549] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2243), 1, + ACTIONS(2238), 1, anon_sym_namespace, - ACTIONS(2247), 1, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2249), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2251), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2253), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2258), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2260), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2262), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2267), 1, + ACTIONS(2262), 1, anon_sym_declare, - ACTIONS(2269), 1, + ACTIONS(2264), 1, anon_sym_module, - ACTIONS(2271), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2273), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2275), 1, + ACTIONS(2270), 1, anon_sym_enum, - ACTIONS(2305), 1, + ACTIONS(2296), 1, anon_sym_type, - ACTIONS(6196), 1, + ACTIONS(6181), 1, anon_sym_default, - STATE(825), 1, - sym_declaration, - STATE(890), 1, + STATE(811), 1, sym_internal_module, - STATE(1267), 1, + STATE(843), 1, + sym_declaration, + STATE(1290), 1, sym_decorator, - STATE(4426), 1, + STATE(4284), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(789), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232314,28 +230454,35 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111710] = 9, - ACTIONS(1510), 1, + [111629] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6198), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(6183), 1, + anon_sym_STAR, + ACTIONS(6187), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6185), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(6189), 2, + anon_sym_get, + anon_sym_set, + STATE(3023), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232344,14 +230491,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, @@ -232359,40 +230502,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111764] = 12, - ACTIONS(1588), 1, + [111689] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, - anon_sym_readonly, - ACTIONS(6200), 1, + ACTIONS(5507), 1, anon_sym_STAR, - STATE(2760), 1, - sym_override_modifier, + ACTIONS(5513), 1, + anon_sym_async, + ACTIONS(6191), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6202), 2, + ACTIONS(5515), 2, sym_number, sym_private_property_identifier, - ACTIONS(6204), 2, + ACTIONS(5517), 2, anon_sym_get, anon_sym_set, - STATE(3009), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + 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, @@ -232400,6 +230540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232407,91 +230548,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111824] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2243), 1, - anon_sym_namespace, - ACTIONS(2247), 1, - anon_sym_import, - ACTIONS(2249), 1, - anon_sym_var, - ACTIONS(2251), 1, - anon_sym_let, - ACTIONS(2253), 1, - anon_sym_const, - ACTIONS(2258), 1, - anon_sym_class, - ACTIONS(2260), 1, - anon_sym_async, - ACTIONS(2262), 1, - anon_sym_function, - ACTIONS(2267), 1, - anon_sym_declare, - ACTIONS(2271), 1, - anon_sym_abstract, - ACTIONS(2273), 1, - anon_sym_interface, - ACTIONS(2275), 1, - anon_sym_enum, - ACTIONS(2305), 1, - anon_sym_type, - ACTIONS(2307), 1, - anon_sym_module, - ACTIONS(2309), 1, - anon_sym_global, - STATE(874), 1, - sym_declaration, - STATE(890), 1, - sym_internal_module, - STATE(1267), 1, - sym_decorator, - STATE(4426), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(789), 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, - [111904] = 11, - ACTIONS(1588), 1, + [111746] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5105), 1, - anon_sym_STAR, - ACTIONS(5107), 1, + ACTIONS(2316), 1, anon_sym_async, - ACTIONS(5111), 1, + ACTIONS(2318), 1, anon_sym_readonly, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5109), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5113), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3093), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(2314), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232511,37 +230594,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111961] = 8, - ACTIONS(1510), 1, + [111803] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4437), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + 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, @@ -232554,19 +230640,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112012] = 3, + [111860] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6147), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5605), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3612), 25, + ACTIONS(6193), 2, + anon_sym_get, + anon_sym_set, + STATE(3775), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232576,8 +230672,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, @@ -232590,40 +230684,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112053] = 9, - ACTIONS(2291), 1, + [111913] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(5033), 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(5669), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - ACTIONS(6206), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(3876), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + 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_declare, anon_sym_public, anon_sym_private, @@ -232636,40 +230730,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112106] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5030), 1, - anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, - ACTIONS(5036), 1, - anon_sym_readonly, + [111970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5034), 2, + ACTIONS(3602), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5038), 2, - anon_sym_get, - anon_sym_set, - STATE(3023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 19, + 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, @@ -232682,33 +230766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112163] = 11, - ACTIONS(1588), 1, + anon_sym_abstract, + anon_sym_accessor, + [112011] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5113), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5115), 1, anon_sym_async, - ACTIONS(6210), 1, + ACTIONS(5119), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6208), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - STATE(3034), 3, + ACTIONS(5121), 2, + anon_sym_get, + anon_sym_set, + STATE(3075), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232728,11 +230814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112220] = 3, + [112068] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3571), 7, + ACTIONS(3617), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -232740,7 +230826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3569), 25, + ACTIONS(3615), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232766,33 +230852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [112261] = 11, - ACTIONS(1588), 1, + [112109] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, + ACTIONS(5057), 1, anon_sym_STAR, - ACTIONS(5042), 1, + ACTIONS(5059), 1, anon_sym_async, - ACTIONS(6214), 1, + ACTIONS(5063), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6212), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - STATE(3018), 3, + ACTIONS(5065), 2, + anon_sym_get, + anon_sym_set, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232812,40 +230898,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112318] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5538), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_readonly, + [112166] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5542), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6216), 2, + ACTIONS(3621), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3030), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 19, + 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, @@ -232858,40 +230934,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112375] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [112207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(3517), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 19, + anon_sym_AT, + ACTIONS(3515), 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, @@ -232904,40 +230972,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112432] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, - ACTIONS(5060), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112248] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5058), 2, + ACTIONS(3594), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 19, + anon_sym_AT, + ACTIONS(3592), 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, @@ -232950,76 +231010,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112489] = 11, - ACTIONS(1588), 1, + anon_sym_abstract, + anon_sym_accessor, + [112289] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5497), 1, anon_sym_async, - ACTIONS(4477), 1, + ACTIONS(6197), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(5501), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + ACTIONS(6195), 2, + sym_number, + sym_private_property_identifier, + STATE(3014), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 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, - [112546] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3533), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3531), 25, + 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, @@ -233032,35 +231058,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112587] = 11, - ACTIONS(2291), 1, + [112346] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6109), 1, + ACTIONS(5344), 1, anon_sym_STAR, - ACTIONS(6123), 1, + ACTIONS(5350), 1, anon_sym_async, - ACTIONS(6220), 1, + ACTIONS(6199), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5352), 2, sym_number, sym_private_property_identifier, - ACTIONS(6113), 2, + ACTIONS(5354), 2, anon_sym_get, anon_sym_set, - STATE(3925), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233080,38 +231104,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112644] = 9, - ACTIONS(2291), 1, + [112403] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6222), 1, + 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(5703), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(6224), 2, + ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - STATE(3824), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -233124,33 +231150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112697] = 11, - ACTIONS(1588), 1, + [112460] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5366), 1, + ACTIONS(4748), 1, anon_sym_STAR, - ACTIONS(5372), 1, + ACTIONS(4752), 1, anon_sym_async, - ACTIONS(6226), 1, + ACTIONS(4756), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5374), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(5376), 2, + ACTIONS(4758), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233170,40 +231196,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112754] = 11, - ACTIONS(1588), 1, + [112517] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(6201), 1, anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, - ACTIONS(6228), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, + ACTIONS(6203), 2, anon_sym_get, anon_sym_set, - STATE(3115), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 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, @@ -233216,19 +231240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112811] = 3, + [112570] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 7, + ACTIONS(3758), 3, + anon_sym_LPAREN, + 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, - anon_sym_AT, - ACTIONS(3565), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233252,35 +231279,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112852] = 11, - ACTIONS(1588), 1, + [112613] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5082), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5084), 1, anon_sym_async, - ACTIONS(6232), 1, + ACTIONS(6207), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, + ACTIONS(5090), 2, anon_sym_get, anon_sym_set, - ACTIONS(6230), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(3039), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233300,22 +231325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112909] = 4, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(4531), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233339,30 +231368,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112952] = 3, + [112721] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6082), 1, + anon_sym_STAR, + ACTIONS(6084), 1, + anon_sym_async, + ACTIONS(6209), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3606), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3604), 25, + ACTIONS(6088), 2, + anon_sym_get, + anon_sym_set, + STATE(3883), 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_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, + [112778] = 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(6213), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5090), 2, anon_sym_get, anon_sym_set, + ACTIONS(6211), 2, + sym_number, + sym_private_property_identifier, + STATE(3008), 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, @@ -233375,35 +231460,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112993] = 11, - ACTIONS(1588), 1, + [112835] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5586), 1, + ACTIONS(5389), 1, anon_sym_STAR, - ACTIONS(5592), 1, + ACTIONS(5561), 1, anon_sym_async, - ACTIONS(6234), 1, + ACTIONS(6215), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5594), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - ACTIONS(5596), 2, + ACTIONS(5565), 2, anon_sym_get, anon_sym_set, - STATE(3076), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233423,33 +231506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113050] = 11, - ACTIONS(2291), 1, + [112892] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(6059), 1, + ACTIONS(5045), 1, anon_sym_async, - ACTIONS(6063), 1, + ACTIONS(6219), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6065), 2, + ACTIONS(5051), 2, anon_sym_get, anon_sym_set, - STATE(3864), 3, + ACTIONS(6217), 2, + sym_number, + sym_private_property_identifier, + STATE(3022), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233469,33 +231552,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113107] = 11, - ACTIONS(1588), 1, + [112949] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5096), 1, anon_sym_STAR, - ACTIONS(5126), 1, + ACTIONS(5098), 1, anon_sym_async, - ACTIONS(5130), 1, + ACTIONS(5102), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5128), 2, + ACTIONS(5100), 2, sym_number, sym_private_property_identifier, - ACTIONS(5132), 2, + ACTIONS(5104), 2, anon_sym_get, anon_sym_set, - STATE(3047), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233515,40 +231598,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113164] = 11, - ACTIONS(1588), 1, + [113006] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(4799), 1, + 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(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(4803), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113054] = 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(4801), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - ACTIONS(4805), 2, + STATE(3827), 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(3005), 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, + [113102] = 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(4738), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 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, @@ -233561,24 +231721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113221] = 7, - ACTIONS(2291), 1, + [113150] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5383), 2, sym_number, sym_private_property_identifier, - STATE(3925), 3, + STATE(3868), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233602,24 +231762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113269] = 7, - ACTIONS(2291), 1, + [113198] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233643,24 +231803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113317] = 7, - ACTIONS(2291), 1, + [113246] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5426), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - STATE(3875), 3, + STATE(3813), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233684,24 +231844,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113365] = 7, - ACTIONS(2291), 1, + [113294] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(4766), 2, sym_number, sym_private_property_identifier, - STATE(3823), 3, + STATE(3394), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233725,26 +231885,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113413] = 8, - ACTIONS(1588), 1, + [113342] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6238), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6236), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - STATE(3304), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233753,6 +231911,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, @@ -233767,24 +231926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113463] = 7, - ACTIONS(1588), 1, + [113390] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6240), 2, + ACTIONS(6124), 2, sym_number, sym_private_property_identifier, - STATE(3305), 3, + STATE(3879), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233808,26 +231967,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113511] = 8, - ACTIONS(1588), 1, + [113438] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6244), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6242), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - STATE(3413), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233836,6 +231993,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, @@ -233850,24 +232008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113561] = 7, - ACTIONS(1588), 1, + [113486] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6246), 2, + ACTIONS(6126), 2, sym_number, sym_private_property_identifier, - STATE(3414), 3, + STATE(3795), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233891,24 +232049,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113609] = 7, - ACTIONS(2291), 1, + [113534] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(6128), 2, sym_number, sym_private_property_identifier, - STATE(3882), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233932,24 +232090,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113657] = 7, - ACTIONS(2291), 1, + [113582] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - STATE(3880), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233973,24 +232131,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113705] = 7, - ACTIONS(2291), 1, + [113630] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3881), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234014,24 +232172,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113753] = 7, - ACTIONS(2291), 1, + [113678] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(6223), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5210), 2, + ACTIONS(6221), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234040,7 +232200,48 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -234055,26 +232256,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113801] = 8, - ACTIONS(1588), 1, + [113778] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6250), 1, + 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, + 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(6248), 2, + ACTIONS(6072), 2, sym_number, sym_private_property_identifier, - STATE(3422), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234083,6 +232323,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, @@ -234097,24 +232338,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113851] = 7, - ACTIONS(2291), 1, + [113874] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(6225), 2, sym_number, sym_private_property_identifier, - STATE(3825), 3, + STATE(3301), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234138,24 +232379,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113899] = 7, - ACTIONS(2291), 1, + [113922] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5528), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - STATE(3840), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234179,24 +232420,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113947] = 7, - ACTIONS(2291), 1, + [113970] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5703), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234220,26 +232461,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113995] = 8, - ACTIONS(1588), 1, + [114018] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, + ACTIONS(6227), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234262,24 +232503,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114045] = 7, - ACTIONS(2291), 1, + [114068] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5614), 2, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234303,24 +232544,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114093] = 7, - ACTIONS(1588), 1, + [114116] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4773), 2, + ACTIONS(6130), 2, sym_number, sym_private_property_identifier, - STATE(3447), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234344,68 +232585,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114141] = 8, - ACTIONS(1588), 1, + [114164] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(6252), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5953), 2, - sym_number, - sym_private_property_identifier, - STATE(3477), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 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, - [114191] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6231), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6254), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(3380), 3, + STATE(3419), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234428,24 +232627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114241] = 7, - ACTIONS(1588), 1, + [114214] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 2, + ACTIONS(6233), 2, sym_number, sym_private_property_identifier, - STATE(3477), 3, + STATE(3444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234469,65 +232668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114289] = 7, - ACTIONS(2291), 1, + [114262] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6117), 2, - sym_number, - sym_private_property_identifier, - STATE(3871), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 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(6237), 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, - [114337] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5214), 2, + ACTIONS(6235), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3366), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234536,7 +232696,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, @@ -234551,24 +232710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114385] = 7, - ACTIONS(2291), 1, + [114312] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6146), 2, + ACTIONS(6239), 2, sym_number, sym_private_property_identifier, - STATE(3897), 3, + STATE(3367), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234592,26 +232751,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114433] = 8, - ACTIONS(1588), 1, + [114360] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6260), 1, + ACTIONS(6243), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6258), 2, + ACTIONS(6241), 2, sym_number, sym_private_property_identifier, - STATE(3442), 3, + STATE(3375), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234634,24 +232793,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114483] = 7, - ACTIONS(1588), 1, + [114410] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6262), 2, + ACTIONS(6245), 2, sym_number, sym_private_property_identifier, - STATE(3443), 3, + STATE(3320), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234675,24 +232834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114531] = 7, - ACTIONS(2291), 1, + [114458] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5200), 2, + ACTIONS(6247), 2, sym_number, sym_private_property_identifier, - STATE(3815), 3, + STATE(3383), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234716,65 +232875,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114579] = 7, - ACTIONS(2291), 1, + [114506] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5508), 2, - sym_number, - sym_private_property_identifier, - STATE(3772), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 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(6251), 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, - [114627] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(6249), 2, sym_number, sym_private_property_identifier, - STATE(3919), 3, + STATE(3372), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234783,7 +232903,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, @@ -234798,65 +232917,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114675] = 7, - ACTIONS(2291), 1, + [114556] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5448), 2, - sym_number, - sym_private_property_identifier, - STATE(3839), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 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(5910), 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, - [114723] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3795), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234865,7 +232945,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, @@ -234880,65 +232959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114771] = 7, - ACTIONS(1588), 1, + [114606] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6264), 2, - sym_number, - sym_private_property_identifier, - STATE(3381), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 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(6255), 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, - [114819] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6148), 2, + ACTIONS(6253), 2, sym_number, sym_private_property_identifier, - STATE(3804), 3, + STATE(3333), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234947,7 +232987,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, @@ -234962,26 +233001,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114867] = 8, - ACTIONS(1588), 1, + [114656] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6268), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6266), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3479), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234990,6 +233027,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, @@ -235004,24 +233042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114917] = 7, - ACTIONS(1588), 1, + [114704] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6270), 2, + ACTIONS(5605), 2, sym_number, sym_private_property_identifier, - STATE(3308), 3, + STATE(3775), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235045,24 +233083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114965] = 7, - ACTIONS(2291), 1, + [114752] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6144), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - STATE(3924), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235086,24 +233124,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115013] = 7, - ACTIONS(2291), 1, + [114800] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6150), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - STATE(3923), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235127,26 +233165,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115061] = 8, - ACTIONS(1588), 1, + [114848] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6274), 1, + ACTIONS(6259), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6272), 2, + ACTIONS(6257), 2, sym_number, sym_private_property_identifier, - STATE(3367), 3, + STATE(3295), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235169,24 +233207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115111] = 7, - ACTIONS(1588), 1, + [114898] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6276), 2, + ACTIONS(5413), 2, sym_number, sym_private_property_identifier, - STATE(3398), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235210,26 +233248,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115159] = 8, - ACTIONS(1588), 1, + [114946] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6280), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6278), 2, + ACTIONS(5181), 2, sym_number, sym_private_property_identifier, - STATE(3425), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235238,6 +233274,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, @@ -235252,24 +233289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115209] = 7, - ACTIONS(2291), 1, + [114994] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5456), 2, sym_number, sym_private_property_identifier, - STATE(3876), 3, + STATE(3911), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235293,24 +233330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115257] = 7, - ACTIONS(2291), 1, + [115042] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5328), 2, sym_number, sym_private_property_identifier, - STATE(3850), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235334,26 +233371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115305] = 8, - ACTIONS(1588), 1, + [115090] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5870), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5203), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235362,6 +233397,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, @@ -235376,24 +233412,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115355] = 7, - ACTIONS(1588), 1, + [115138] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(5235), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3916), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235417,26 +233453,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115403] = 8, - ACTIONS(1588), 1, + [115186] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6284), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6282), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235445,6 +233479,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, @@ -235459,24 +233494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115453] = 7, - ACTIONS(1588), 1, + [115234] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6286), 2, + ACTIONS(6261), 2, sym_number, sym_private_property_identifier, - STATE(3334), 3, + STATE(3402), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235500,26 +233535,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115501] = 8, - ACTIONS(1588), 1, + [115282] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6290), 1, + ACTIONS(6265), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6288), 2, + ACTIONS(6263), 2, sym_number, sym_private_property_identifier, - STATE(3345), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235542,24 +233577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115551] = 7, - ACTIONS(2291), 1, + [115332] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6139), 2, + ACTIONS(6267), 2, sym_number, sym_private_property_identifier, - STATE(3805), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235583,24 +233618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115599] = 7, - ACTIONS(2291), 1, + [115380] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5315), 2, + ACTIONS(6135), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235624,24 +233659,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115647] = 7, - ACTIONS(2291), 1, + [115428] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(6271), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(6269), 2, sym_number, sym_private_property_identifier, - STATE(3901), 3, + STATE(3452), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235650,7 +233687,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, @@ -235665,24 +233701,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115695] = 7, - ACTIONS(1588), 1, + [115478] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235706,24 +233742,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115743] = 7, - ACTIONS(2291), 1, + [115526] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(6275), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(6273), 2, sym_number, sym_private_property_identifier, - STATE(3894), 3, + STATE(3297), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235732,7 +233770,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, @@ -235747,24 +233784,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115791] = 7, - ACTIONS(2291), 1, + [115576] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5368), 2, + ACTIONS(6277), 2, sym_number, sym_private_property_identifier, - STATE(3786), 3, + STATE(3298), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235788,24 +233825,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115839] = 7, - ACTIONS(1588), 1, + [115624] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6292), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - STATE(3400), 3, + STATE(3417), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235829,24 +233866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115887] = 7, - ACTIONS(2291), 1, + [115672] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, + ACTIONS(6122), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235870,26 +233907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115935] = 8, - ACTIONS(1588), 1, + [115720] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6283), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6294), 2, + ACTIONS(6281), 2, sym_number, sym_private_property_identifier, - STATE(3355), 3, + STATE(3430), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235912,24 +233949,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115985] = 7, - ACTIONS(2291), 1, + [115770] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - STATE(3784), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235953,24 +233990,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116033] = 7, - ACTIONS(2291), 1, + [115818] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(5217), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235994,24 +234031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116081] = 7, - ACTIONS(1588), 1, + [115866] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6298), 2, + ACTIONS(5601), 2, sym_number, sym_private_property_identifier, - STATE(3356), 3, + STATE(3785), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236035,24 +234072,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116129] = 7, - ACTIONS(1588), 1, + [115914] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6300), 2, + ACTIONS(6285), 2, sym_number, sym_private_property_identifier, - STATE(3415), 3, + STATE(3379), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236076,15 +234113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116177] = 4, - ACTIONS(6302), 1, + [115962] = 4, + ACTIONS(6287), 1, sym_identifier, - STATE(5988), 1, + STATE(5649), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6304), 22, + ACTIONS(6289), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236107,26 +234144,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116212] = 9, - ACTIONS(3456), 1, + [115997] = 9, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(6306), 1, + ACTIONS(6291), 1, anon_sym_LT, - STATE(2886), 1, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, + ACTIONS(3445), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3454), 12, + ACTIONS(3441), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236139,26 +234176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116253] = 9, - ACTIONS(3456), 1, + [116038] = 9, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(6306), 1, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6308), 1, + ACTIONS(6293), 1, anon_sym_DOT, - ACTIONS(6310), 1, + ACTIONS(6295), 1, anon_sym_QMARK_DOT, - STATE(2878), 1, + STATE(2872), 1, sym_arguments, - STATE(2960), 1, + STATE(2992), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 2, + ACTIONS(4014), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4023), 12, + ACTIONS(4016), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236171,71 +234208,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116294] = 9, - ACTIONS(3456), 1, + [116079] = 9, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(6306), 1, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6312), 1, + ACTIONS(6297), 1, anon_sym_DOT, - ACTIONS(6314), 1, + ACTIONS(6299), 1, anon_sym_QMARK_DOT, - STATE(2891), 1, + STATE(2876), 1, sym_arguments, - STATE(2959), 1, + STATE(2989), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4017), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116335] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4385), 2, + ACTIONS(3996), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4387), 17, - anon_sym_as, + ACTIONS(3998), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [116363] = 3, + [116120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 2, + ACTIONS(4330), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4391), 17, + ACTIONS(4332), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236253,14 +234265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116391] = 3, + [116148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4343), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236278,14 +234290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116419] = 3, + [116176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4355), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236303,14 +234315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116447] = 3, + [116204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4355), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236328,14 +234340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116475] = 3, + [116232] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 2, + ACTIONS(4398), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4339), 17, + ACTIONS(4400), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236353,14 +234365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116503] = 3, + [116260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 2, + ACTIONS(4358), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4351), 17, + ACTIONS(4360), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236378,14 +234390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116531] = 3, + [116288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 2, + ACTIONS(4366), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4375), 17, + ACTIONS(4368), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236403,14 +234415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116559] = 3, + [116316] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4370), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4372), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236428,14 +234440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116587] = 3, + [116344] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4366), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4368), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236453,14 +234465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116615] = 3, + [116372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4370), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4372), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236478,14 +234490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116643] = 3, + [116400] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4387), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236503,14 +234515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116671] = 3, + [116428] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 2, + ACTIONS(4298), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4387), 17, + ACTIONS(4300), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236528,14 +234540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116699] = 3, + [116456] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 2, + ACTIONS(4398), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4351), 17, + ACTIONS(4400), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236553,14 +234565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116727] = 3, + [116484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 2, + ACTIONS(4306), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4391), 17, + ACTIONS(4308), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236578,14 +234590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116755] = 3, + [116512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 2, + ACTIONS(4310), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4391), 17, + ACTIONS(4312), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236603,14 +234615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116783] = 3, + [116540] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4314), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4343), 17, + ACTIONS(4316), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236628,14 +234640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116811] = 3, + [116568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4067), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4069), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236653,14 +234665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116839] = 3, + [116596] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 2, + ACTIONS(4314), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4269), 17, + ACTIONS(4316), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236678,14 +234690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116867] = 3, + [116624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4362), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4273), 17, + ACTIONS(4364), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236703,14 +234715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116895] = 3, + [116652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 2, + ACTIONS(4362), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4277), 17, + ACTIONS(4364), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236728,14 +234740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116923] = 3, + [116680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4366), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4273), 17, + ACTIONS(4368), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236753,14 +234765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116951] = 3, + [116708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 2, + ACTIONS(4362), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4277), 17, + ACTIONS(4364), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236778,14 +234790,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116979] = 3, + [116736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 2, + ACTIONS(4318), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4351), 17, + ACTIONS(4320), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236803,14 +234815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117007] = 3, + [116764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4370), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4283), 17, + ACTIONS(4372), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236828,14 +234840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117035] = 3, + [116792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 2, + ACTIONS(4322), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4287), 17, + ACTIONS(4324), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236853,14 +234865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117063] = 3, + [116820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4318), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4283), 17, + ACTIONS(4320), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236878,14 +234890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117091] = 3, + [116848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 2, + ACTIONS(4322), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4287), 17, + ACTIONS(4324), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236903,14 +234915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117119] = 3, + [116876] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 2, + ACTIONS(4326), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4291), 17, + ACTIONS(4328), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236928,14 +234940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117147] = 3, + [116904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(4326), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4295), 17, + ACTIONS(4328), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236953,14 +234965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117175] = 3, + [116932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 2, + ACTIONS(4330), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4355), 17, + ACTIONS(4332), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236978,14 +234990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117203] = 3, + [116960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 2, + ACTIONS(4386), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4291), 17, + ACTIONS(4388), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237003,14 +235015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117231] = 3, + [116988] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4295), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237028,14 +235040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117259] = 3, + [117016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4398), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4343), 17, + ACTIONS(4400), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237053,40 +235065,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117287] = 6, - ACTIONS(4009), 1, - anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_DOT, - STATE(2908), 1, - sym_type_arguments, + [117044] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 14, + ACTIONS(4310), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4312), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [117320] = 3, - ACTIONS(1733), 1, + [117072] = 3, + ACTIONS(1807), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 17, + ACTIONS(1805), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237104,167 +235114,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117347] = 18, - ACTIONS(6051), 1, + [117099] = 18, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6320), 1, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6324), 1, + ACTIONS(6307), 1, anon_sym_COMMA, - ACTIONS(6326), 1, + ACTIONS(6309), 1, anon_sym_COLON, - ACTIONS(6328), 1, + ACTIONS(6311), 1, anon_sym_GT, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6333), 1, + ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6335), 1, + ACTIONS(6318), 1, anon_sym_SLASH_GT, - ACTIONS(6337), 1, + ACTIONS(6320), 1, anon_sym_extends, - STATE(3325), 1, + STATE(3345), 1, sym_type_arguments, - STATE(3327), 1, + STATE(3348), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, - STATE(4607), 1, + STATE(4554), 1, sym_constraint, - STATE(5290), 1, + STATE(5514), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [117404] = 18, - ACTIONS(6051), 1, + [117156] = 18, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6320), 1, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6324), 1, + ACTIONS(6307), 1, anon_sym_COMMA, - ACTIONS(6326), 1, + ACTIONS(6309), 1, anon_sym_COLON, - ACTIONS(6328), 1, + ACTIONS(6311), 1, anon_sym_GT, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6333), 1, + ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6337), 1, + ACTIONS(6320), 1, anon_sym_extends, - ACTIONS(6339), 1, + ACTIONS(6322), 1, anon_sym_SLASH_GT, - STATE(3338), 1, + STATE(3304), 1, sym_type_arguments, - STATE(3349), 1, + STATE(3458), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, - STATE(4607), 1, + STATE(4554), 1, sym_constraint, - STATE(5290), 1, + STATE(5514), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [117461] = 3, - ACTIONS(1929), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1927), 17, - sym__automatic_semicolon, + [117213] = 6, + ACTIONS(4006), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(6291), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117488] = 3, - ACTIONS(4239), 1, - anon_sym_EQ, + ACTIONS(6324), 1, + anon_sym_DOT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 16, + ACTIONS(3501), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117514] = 9, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(4015), 1, + [117246] = 3, + ACTIONS(1845), 1, anon_sym_PIPE, - ACTIONS(6341), 1, - anon_sym_DOT, - ACTIONS(6343), 1, - anon_sym_QMARK_DOT, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3049), 1, - sym_arguments, - STATE(3218), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 10, + ACTIONS(1843), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117552] = 3, - ACTIONS(3628), 1, + [117273] = 3, + ACTIONS(4264), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 16, + ACTIONS(4266), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237281,14 +235266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117578] = 3, + [117299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4406), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4197), 15, + ACTIONS(4408), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237304,37 +235289,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117604] = 4, - ACTIONS(1873), 1, + [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, - ACTIONS(4221), 1, + STATE(4242), 1, + sym_string, + STATE(4306), 1, + sym_import_require_clause, + STATE(5294), 1, + sym__import_identifier, + STATE(5483), 1, + sym_import_clause, + 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, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 15, + ACTIONS(4274), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [117632] = 3, - ACTIONS(4235), 1, + [117401] = 3, + ACTIONS(4268), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 16, + ACTIONS(4270), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237351,18 +235370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117658] = 3, - ACTIONS(4247), 1, - anon_sym_EQ, + [117427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 16, + ACTIONS(4226), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4228), 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, @@ -237370,52 +235389,25 @@ 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_PIPE, - anon_sym_QMARK, anon_sym_extends, - [117684] = 9, - ACTIONS(3458), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(3502), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_QMARK_DOT, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3048), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3454), 10, - sym__automatic_semicolon, + [117453] = 7, + ACTIONS(4006), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117722] = 5, - ACTIONS(6347), 1, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6324), 1, anon_sym_DOT, - ACTIONS(6349), 1, - anon_sym_QMARK_DOT, + ACTIONS(6340), 1, + anon_sym_is, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4095), 13, - anon_sym_as, + ACTIONS(3501), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237428,40 +235420,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117752] = 5, - ACTIONS(4027), 1, + [117487] = 3, + ACTIONS(4276), 1, anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2926), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 14, + ACTIONS(4278), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117782] = 4, - ACTIONS(1869), 1, + [117513] = 5, + ACTIONS(6342), 1, anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_EQ, + ACTIONS(6344), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 15, + ACTIONS(4164), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4166), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237474,17 +235467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - [117810] = 3, + [117543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 2, + ACTIONS(4086), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4181), 15, + ACTIONS(4088), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237500,18 +235491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117836] = 5, - ACTIONS(3460), 1, + [117569] = 4, + ACTIONS(1699), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + ACTIONS(4250), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3454), 13, + ACTIONS(4252), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237524,14 +235512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [117866] = 3, - ACTIONS(4243), 1, + [117597] = 3, + ACTIONS(3623), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 16, + ACTIONS(3419), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237548,52 +235538,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117892] = 7, - ACTIONS(4009), 1, - anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, + [117623] = 9, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_DOT, - ACTIONS(6351), 1, - anon_sym_is, - STATE(2908), 1, + ACTIONS(6348), 1, + anon_sym_QMARK_DOT, + ACTIONS(6350), 1, + anon_sym_LT, + STATE(3043), 1, + sym_arguments, + STATE(3209), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 12, + ACTIONS(4016), 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_extends, - [117926] = 9, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, + anon_sym_PIPE_RBRACE, + [117661] = 9, + ACTIONS(3445), 1, anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6353), 1, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(3469), 1, anon_sym_DOT, - ACTIONS(6355), 1, + ACTIONS(3471), 1, anon_sym_QMARK_DOT, - STATE(3052), 1, + ACTIONS(6350), 1, + anon_sym_LT, + STATE(3046), 1, sym_arguments, - STATE(3220), 1, + STATE(3197), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 10, + ACTIONS(3441), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237604,14 +235596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117964] = 3, + [117699] = 5, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2922), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4189), 15, + ACTIONS(4032), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237621,54 +235616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117990] = 15, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(6357), 1, - sym_identifier, - ACTIONS(6359), 1, - anon_sym_STAR, - ACTIONS(6361), 1, - anon_sym_type, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6365), 1, - anon_sym_typeof, - ACTIONS(6369), 1, - anon_sym_DOT, - STATE(4144), 1, - sym_string, - STATE(4177), 1, - sym_import_require_clause, - STATE(5301), 1, - sym__import_identifier, - STATE(5358), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5990), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [118040] = 3, - ACTIONS(3635), 1, + [117729] = 3, + ACTIONS(3625), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 16, + ACTIONS(3429), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237685,35 +235644,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118066] = 3, - ACTIONS(1670), 1, - anon_sym_EQ, + [117755] = 9, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6352), 1, + anon_sym_DOT, + ACTIONS(6354), 1, + anon_sym_QMARK_DOT, + STATE(3071), 1, + sym_arguments, + STATE(3207), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 15, - anon_sym_as, + ACTIONS(3998), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [118091] = 3, - ACTIONS(4063), 1, + anon_sym_PIPE_RBRACE, + [117793] = 4, + ACTIONS(1791), 1, + anon_sym_DOT, + ACTIONS(4250), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 15, + ACTIONS(4252), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237726,21 +235694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [118116] = 3, - ACTIONS(4377), 1, - anon_sym_EQ, + [117821] = 5, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 15, + ACTIONS(3445), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3441), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -237749,15 +235721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [118141] = 3, - ACTIONS(4163), 1, + [117851] = 3, + ACTIONS(4136), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 15, + ACTIONS(4138), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237773,19 +235744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118166] = 6, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + [117876] = 3, + ACTIONS(4058), 1, anon_sym_EQ, - ACTIONS(6371), 1, - anon_sym_DOT, - STATE(2900), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 12, + ACTIONS(4060), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237797,14 +235763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [118197] = 3, - ACTIONS(4263), 1, + anon_sym_is, + [117901] = 3, + ACTIONS(4062), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 15, + ACTIONS(4064), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237820,13 +235788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118222] = 3, - ACTIONS(4175), 1, + [117926] = 3, + ACTIONS(4214), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 15, + ACTIONS(4216), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237842,19 +235810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118247] = 4, - ACTIONS(4077), 1, + [117951] = 3, + ACTIONS(4122), 1, anon_sym_EQ, - ACTIONS(6373), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4079), 14, + ACTIONS(4124), 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, @@ -237865,18 +235832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118274] = 3, - ACTIONS(4405), 1, + [117976] = 4, + ACTIONS(4148), 1, anon_sym_EQ, + ACTIONS(6356), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 15, + ACTIONS(4150), 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, @@ -237887,35 +235855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118299] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4269), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [118003] = 6, + ACTIONS(3443), 1, 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, - [118323] = 3, - ACTIONS(4393), 1, + ACTIONS(4052), 1, anon_sym_EQ, + ACTIONS(6358), 1, + anon_sym_DOT, + STATE(2893), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 14, - anon_sym_as, + ACTIONS(4054), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237927,15 +235879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [118347] = 3, - ACTIONS(4045), 1, + [118034] = 3, + ACTIONS(1685), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 14, + ACTIONS(1683), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237950,34 +235901,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118371] = 3, - ACTIONS(4067), 1, - anon_sym_PIPE, + anon_sym_is, + [118059] = 3, + ACTIONS(4090), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4092), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118395] = 3, - ACTIONS(4271), 1, + [118084] = 3, + ACTIONS(4370), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 14, + ACTIONS(4372), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237992,13 +235945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118419] = 3, - ACTIONS(4133), 1, + [118108] = 3, + ACTIONS(4184), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 14, + ACTIONS(4186), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238013,13 +235966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118443] = 3, - ACTIONS(4275), 1, + [118132] = 3, + ACTIONS(4314), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 14, + ACTIONS(4316), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238034,118 +235987,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118467] = 3, - ACTIONS(4271), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4273), 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, - [118491] = 3, - ACTIONS(4275), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4277), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118515] = 3, - ACTIONS(4281), 1, - anon_sym_PIPE, + [118156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4283), 14, - sym__automatic_semicolon, + 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, 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, - [118539] = 3, - ACTIONS(4285), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4262), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118563] = 3, - ACTIONS(4281), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4283), 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, - [118587] = 3, - ACTIONS(4285), 1, + [118202] = 3, + ACTIONS(4318), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 14, + ACTIONS(4320), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238160,13 +236049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118611] = 3, - ACTIONS(4289), 1, + [118226] = 3, + ACTIONS(4386), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 14, + ACTIONS(4388), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238181,13 +236070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118635] = 3, - ACTIONS(4293), 1, + [118250] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 14, + ACTIONS(4392), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238202,13 +236091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118659] = 3, - ACTIONS(4289), 1, + [118274] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 14, + ACTIONS(4392), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238223,79 +236112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118683] = 3, - ACTIONS(4083), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 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, - [118707] = 5, - ACTIONS(4145), 1, - anon_sym_EQ, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4147), 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, - [118735] = 4, - ACTIONS(4083), 1, - anon_sym_EQ, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [118761] = 3, - ACTIONS(4089), 1, + [118298] = 3, + ACTIONS(4280), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 14, + ACTIONS(4282), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238303,49 +236126,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [118785] = 3, - ACTIONS(4293), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4295), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118809] = 4, - ACTIONS(4157), 1, + [118322] = 3, + ACTIONS(4188), 1, anon_sym_EQ, - ACTIONS(6375), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + 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, @@ -238353,11 +236154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118835] = 2, + [118346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6377), 15, + ACTIONS(6362), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238373,13 +236174,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [118857] = 3, - ACTIONS(4171), 1, + [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, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 14, + ACTIONS(4292), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238394,13 +236298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118881] = 3, - ACTIONS(4337), 1, + [118526] = 3, + ACTIONS(4322), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 14, + ACTIONS(4324), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238415,55 +236319,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118905] = 3, - ACTIONS(4341), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4343), 14, - sym__automatic_semicolon, + [118550] = 5, + ACTIONS(4196), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6376), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118929] = 3, - ACTIONS(4341), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4156), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4198), 10, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118953] = 3, - ACTIONS(4341), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [118578] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 14, + ACTIONS(4392), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238478,34 +236363,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118977] = 3, - ACTIONS(4349), 1, - anon_sym_PIPE, + [118602] = 4, + ACTIONS(4206), 1, + anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4208), 13, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119001] = 3, - ACTIONS(4349), 1, + [118628] = 3, + ACTIONS(4318), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 14, + ACTIONS(4320), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238520,13 +236406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119025] = 3, - ACTIONS(4349), 1, + [118652] = 3, + ACTIONS(4394), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 14, + ACTIONS(4396), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238541,55 +236427,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119049] = 3, - ACTIONS(4353), 1, - anon_sym_PIPE, + [118676] = 3, + ACTIONS(4210), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4212), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119073] = 3, - ACTIONS(4353), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 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, - [119097] = 3, - ACTIONS(4353), 1, + 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, + [118722] = 3, + ACTIONS(4394), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 14, + ACTIONS(4396), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238604,13 +236489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119121] = 3, - ACTIONS(4373), 1, + [118746] = 3, + ACTIONS(4322), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 14, + ACTIONS(4324), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238625,55 +236510,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119145] = 3, - ACTIONS(4381), 1, - anon_sym_PIPE, + [118770] = 3, + ACTIONS(4144), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4146), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119169] = 3, - ACTIONS(4381), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118794] = 3, + ACTIONS(4022), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 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_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119193] = 3, - ACTIONS(4381), 1, + [118818] = 3, + ACTIONS(4394), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 14, + ACTIONS(4396), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238688,13 +236573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119217] = 3, - ACTIONS(4385), 1, + [118842] = 3, + ACTIONS(4398), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 14, + ACTIONS(4400), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238709,13 +236594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119241] = 3, - ACTIONS(4385), 1, + [118866] = 3, + ACTIONS(4398), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 14, + ACTIONS(4400), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238730,76 +236615,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119265] = 3, - ACTIONS(4385), 1, - anon_sym_PIPE, + [118890] = 3, + ACTIONS(4154), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4156), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119289] = 3, - ACTIONS(4389), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118914] = 4, + ACTIONS(4154), 1, + anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4156), 13, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119313] = 3, - ACTIONS(4389), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118940] = 3, + ACTIONS(4374), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4376), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119337] = 3, - ACTIONS(4389), 1, + [118964] = 3, + ACTIONS(4398), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 14, + ACTIONS(4400), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238814,38 +236700,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119361] = 7, - ACTIONS(4009), 1, - anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6379), 1, - anon_sym_DOT, - ACTIONS(6381), 1, - anon_sym_is, - STATE(3205), 1, - sym_type_arguments, + [118988] = 3, + ACTIONS(4160), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4162), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119393] = 3, - ACTIONS(4035), 1, + [119012] = 3, + ACTIONS(4026), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 14, + ACTIONS(4028), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238860,42 +236742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119417] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6383), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119439] = 7, - ACTIONS(1510), 1, + [119036] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6387), 1, - sym_number, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, + ACTIONS(6380), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5697), 2, + STATE(5760), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238905,23 +236767,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119471] = 8, - ACTIONS(1510), 1, + [119068] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6391), 1, + ACTIONS(6382), 1, sym_number, - STATE(5714), 1, + STATE(5773), 1, sym_string, - STATE(5729), 1, + STATE(5781), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238931,23 +236793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119505] = 8, - ACTIONS(1510), 1, + [119102] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6393), 1, + ACTIONS(6384), 1, sym_number, - STATE(5742), 1, + STATE(5817), 1, sym_string, - STATE(5744), 1, + STATE(5857), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238957,23 +236819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119539] = 8, - ACTIONS(1510), 1, + [119136] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6395), 1, + ACTIONS(6386), 1, sym_number, - STATE(5758), 1, + STATE(5943), 1, sym_string, - STATE(5760), 1, + STATE(5945), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238983,74 +236845,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119573] = 3, - ACTIONS(4357), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4359), 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, + [119170] = 3, + ACTIONS(4326), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119597] = 3, - ACTIONS(4361), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 14, - anon_sym_as, + ACTIONS(4328), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119621] = 3, - ACTIONS(4365), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [119194] = 3, + ACTIONS(4330), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 14, - anon_sym_as, + ACTIONS(4332), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119645] = 2, + anon_sym_PIPE_RBRACE, + [119218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6397), 15, + ACTIONS(6388), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239066,190 +236907,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [119667] = 3, - ACTIONS(4183), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4185), 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, + [119240] = 3, + ACTIONS(4326), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119691] = 3, - ACTIONS(4191), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 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, - [119715] = 3, - ACTIONS(4199), 1, + ACTIONS(4328), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4201), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119739] = 3, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4205), 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_RBRACE, + [119264] = 3, + ACTIONS(4298), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119763] = 3, - ACTIONS(4207), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 14, - anon_sym_as, + ACTIONS(4300), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119787] = 3, - ACTIONS(4217), 1, - anon_sym_EQ, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 14, - anon_sym_as, + ACTIONS(3441), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119811] = 3, - ACTIONS(4231), 1, - anon_sym_EQ, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 14, - anon_sym_as, + ACTIONS(3998), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119835] = 3, - ACTIONS(4251), 1, - anon_sym_EQ, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 14, - anon_sym_as, + ACTIONS(4016), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119859] = 7, - ACTIONS(1510), 1, + [119390] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6399), 1, + ACTIONS(6406), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5653), 2, + STATE(5694), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239259,23 +237052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119891] = 8, - ACTIONS(1510), 1, + [119422] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6401), 1, + ACTIONS(6408), 1, sym_number, - STATE(5666), 1, + STATE(5715), 1, sym_string, - STATE(5677), 1, + STATE(5717), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239285,49 +237078,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119925] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6403), 1, - sym_number, - STATE(5691), 1, - sym_string, - STATE(5699), 1, - sym_predefined_type, + [119456] = 3, + ACTIONS(4370), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 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, - [119959] = 8, - ACTIONS(1510), 1, + 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, + [119480] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6405), 1, + ACTIONS(6410), 1, sym_number, - STATE(5730), 1, + STATE(5735), 1, sym_string, - STATE(5738), 1, + STATE(5745), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239337,32 +237125,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119993] = 3, - ACTIONS(4259), 1, - anon_sym_EQ, + [119514] = 3, + ACTIONS(4330), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 14, - anon_sym_as, + ACTIONS(4332), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [120017] = 2, + anon_sym_PIPE_RBRACE, + [119538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6407), 15, + ACTIONS(6412), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239378,22 +237166,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120039] = 7, - ACTIONS(1510), 1, + [119560] = 3, + ACTIONS(4378), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4380), 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, + [119584] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6409), 1, + ACTIONS(6414), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5921), 2, + STATE(5871), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239403,23 +237212,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120071] = 8, - ACTIONS(1510), 1, + [119616] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6411), 1, + ACTIONS(6416), 1, sym_number, - STATE(5929), 1, + STATE(5884), 1, sym_string, - STATE(5938), 1, + STATE(5893), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239429,23 +237238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120105] = 8, - ACTIONS(1510), 1, + [119650] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6413), 1, + ACTIONS(6418), 1, sym_number, - STATE(5943), 1, + STATE(5903), 1, sym_string, - STATE(5948), 1, + STATE(5909), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239455,23 +237264,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120139] = 8, - ACTIONS(1510), 1, + [119684] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6415), 1, + ACTIONS(6420), 1, sym_number, - STATE(5956), 1, + STATE(5916), 1, sym_string, - STATE(5957), 1, + STATE(5923), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239481,11 +237290,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120173] = 2, + [119718] = 3, + ACTIONS(4306), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4308), 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, + [119742] = 3, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4312), 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, + [119766] = 3, + ACTIONS(4314), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4316), 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, + [119790] = 3, + ACTIONS(4382), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4384), 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, + [119814] = 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, + [119836] = 3, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4312), 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, + [119860] = 3, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4360), 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, + [119884] = 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_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119908] = 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_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 15, + ACTIONS(6424), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239501,13 +237498,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120195] = 3, - ACTIONS(4099), 1, + [119954] = 3, + ACTIONS(4140), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 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, + [119978] = 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_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120002] = 3, + ACTIONS(4170), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 14, + ACTIONS(4172), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239522,22 +237561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120219] = 7, - ACTIONS(1510), 1, + [120026] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6419), 1, + ACTIONS(6426), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5822), 2, + STATE(5667), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239547,75 +237586,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120251] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6421), 1, - sym_number, - STATE(5826), 1, - sym_string, - STATE(5835), 1, - sym_predefined_type, + [120058] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 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, - [120285] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6423), 1, - sym_number, - STATE(5840), 1, - sym_string, - STATE(5846), 1, - sym_predefined_type, + ACTIONS(4368), 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, + [120082] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 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, - [120319] = 8, - ACTIONS(1510), 1, + ACTIONS(4368), 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, + [120106] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6425), 1, + ACTIONS(6428), 1, sym_number, - STATE(5851), 1, + STATE(5796), 1, sym_string, - STATE(5852), 1, + STATE(5827), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239625,131 +237654,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120353] = 8, - ACTIONS(6427), 1, - anon_sym_LPAREN, - ACTIONS(6429), 1, - anon_sym_DOT, - ACTIONS(6431), 1, - anon_sym_QMARK_DOT, - ACTIONS(6433), 1, + [120140] = 3, + ACTIONS(4402), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120164] = 7, + ACTIONS(4006), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_LT, - STATE(3238), 1, - sym_arguments, - STATE(3409), 1, + 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(3454), 9, + ACTIONS(3501), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [120387] = 2, + anon_sym_PIPE_RBRACE, + [120196] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6435), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120409] = 8, - ACTIONS(6427), 1, + ACTIONS(4368), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6433), 1, - anon_sym_LT, - ACTIONS(6437), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6439), 1, anon_sym_QMARK_DOT, - STATE(3239), 1, - sym_arguments, - STATE(3412), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120220] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6434), 1, + sym_number, + STATE(5759), 1, + sym_string, + STATE(5890), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + 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, + [120254] = 3, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4032), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [120443] = 8, - ACTIONS(6427), 1, - anon_sym_LPAREN, - ACTIONS(6433), 1, - anon_sym_LT, - ACTIONS(6441), 1, - anon_sym_DOT, - ACTIONS(6443), 1, - anon_sym_QMARK_DOT, - STATE(3240), 1, - sym_arguments, - STATE(3416), 1, - sym_type_arguments, + [120278] = 3, + ACTIONS(4174), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4114), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [120477] = 2, + [120302] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6436), 1, + sym_number, + STATE(5634), 1, + sym_string, + STATE(5811), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6445), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120499] = 3, - ACTIONS(4073), 1, + 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, + [120336] = 3, + ACTIONS(4334), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 14, + ACTIONS(4336), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239764,13 +237836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120523] = 3, - ACTIONS(4027), 1, + [120360] = 3, + ACTIONS(4342), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 14, + ACTIONS(4344), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239785,13 +237857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120547] = 3, - ACTIONS(4103), 1, + [120384] = 3, + ACTIONS(4350), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 14, + ACTIONS(4352), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239806,13 +237878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120571] = 3, - ACTIONS(4121), 1, + [120408] = 3, + ACTIONS(4222), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 14, + ACTIONS(4224), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239827,33 +237899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120595] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6447), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120617] = 3, - ACTIONS(4107), 1, + [120432] = 3, + ACTIONS(4354), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 14, + ACTIONS(4356), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239868,36 +237920,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120641] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6449), 1, - sym_number, + [120456] = 3, + ACTIONS(4230), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5749), 2, - sym_string, - sym_predefined_type, - ACTIONS(6385), 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, - [120673] = 2, + ACTIONS(4232), 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, + [120480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6451), 15, + ACTIONS(6438), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239913,39 +237961,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120695] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6453), 1, - sym_number, - STATE(5820), 1, - sym_string, - STATE(5827), 1, - sym_predefined_type, + [120502] = 3, + ACTIONS(4370), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 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, - [120729] = 3, - ACTIONS(4117), 1, + 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, + [120526] = 3, + ACTIONS(4234), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 14, + ACTIONS(4236), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239960,65 +238003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120753] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6455), 1, - sym_number, - STATE(5650), 1, - sym_string, - STATE(5657), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6385), 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, - [120787] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6457), 1, - sym_number, - STATE(5715), 1, - sym_string, - STATE(5716), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6385), 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, - [120821] = 3, - ACTIONS(4301), 1, + [120550] = 3, + ACTIONS(4176), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 14, + ACTIONS(4178), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240033,13 +238024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120845] = 3, - ACTIONS(4305), 1, + [120574] = 3, + ACTIONS(4238), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 14, + ACTIONS(4240), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240054,13 +238045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120869] = 3, - ACTIONS(4325), 1, + [120598] = 3, + ACTIONS(4242), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 14, + ACTIONS(4244), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240075,13 +238066,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120893] = 3, - ACTIONS(4333), 1, + [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, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 14, + ACTIONS(4132), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240096,13 +238107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120917] = 3, - ACTIONS(4125), 1, + [120668] = 3, + ACTIONS(4246), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 14, + ACTIONS(4248), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240117,78 +238128,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120941] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(3738), 1, - sym_formal_parameters, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5298), 1, - sym_type_parameters, + [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(3791), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120980] = 13, - ACTIONS(2537), 1, + 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(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6463), 1, + ACTIONS(6448), 1, anon_sym_BANG, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6469), 1, + ACTIONS(6454), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3906), 1, - sym__call_signature, - STATE(4220), 1, + STATE(4182), 1, sym_type_annotation, - STATE(4757), 1, + STATE(4755), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5558), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6461), 3, + ACTIONS(6446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121023] = 6, - ACTIONS(217), 1, + [120769] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(2948), 1, + STATE(3392), 1, sym_type_predicate, - STATE(5660), 1, + STATE(5787), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6471), 2, + ACTIONS(6456), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240198,15 +238207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121052] = 4, - ACTIONS(4045), 1, + [120798] = 4, + ACTIONS(4026), 1, anon_sym_EQ, - ACTIONS(6351), 1, + ACTIONS(6340), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 12, + ACTIONS(4028), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240219,328 +238228,488 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [121077] = 6, - ACTIONS(217), 1, - anon_sym_unique, - STATE(2948), 1, - sym_type_predicate, - STATE(5784), 1, - sym_predefined_type, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6473), 2, - sym_identifier, - sym_this, - ACTIONS(219), 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, - [121106] = 13, - ACTIONS(2537), 1, + ACTIONS(6458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120866] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6468), 1, anon_sym_BANG, - ACTIONS(6479), 1, + ACTIONS(6470), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4373), 1, + STATE(4055), 1, sym_type_annotation, - STATE(5058), 1, - sym__call_signature, - STATE(5060), 1, + STATE(4879), 1, sym__initializer, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5539), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6475), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121149] = 13, - ACTIONS(2537), 1, + [120909] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6463), 1, - anon_sym_BANG, - ACTIONS(6467), 1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6481), 1, + ACTIONS(6474), 1, + anon_sym_BANG, + ACTIONS(6476), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4220), 1, + STATE(4024), 1, sym_type_annotation, - STATE(4789), 1, + STATE(4763), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5334), 1, sym__call_signature, - STATE(4792), 1, + 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, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6478), 1, + anon_sym_BANG, + ACTIONS(6480), 1, + anon_sym_QMARK, + STATE(3848), 1, + sym_formal_parameters, + STATE(4071), 1, + sym_type_annotation, + STATE(4950), 1, sym__initializer, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5317), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6461), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121192] = 11, - ACTIONS(2537), 1, + [120995] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3799), 1, + ACTIONS(3755), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5298), 1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(3758), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [121231] = 13, - ACTIONS(2537), 1, + [121034] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6485), 1, + ACTIONS(6482), 1, anon_sym_BANG, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6489), 1, + ACTIONS(6484), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4388), 1, + STATE(4420), 1, sym_type_annotation, - STATE(5067), 1, + STATE(5151), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5343), 1, + STATE(5506), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121274] = 13, - ACTIONS(2537), 1, + [121077] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6491), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6486), 1, anon_sym_BANG, - ACTIONS(6493), 1, + ACTIONS(6488), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4401), 1, + STATE(4442), 1, sym_type_annotation, - STATE(5085), 1, + STATE(5190), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5354), 1, + STATE(5540), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121317] = 4, - ACTIONS(4027), 1, + [121120] = 13, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6495), 1, - anon_sym_is, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6492), 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(4029), 12, - anon_sym_LBRACE, + ACTIONS(6490), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + [121163] = 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, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121342] = 9, - ACTIONS(4009), 1, - anon_sym_extends, - ACTIONS(6306), 1, + ACTIONS(6496), 1, + anon_sym_BANG, + ACTIONS(6498), 1, + anon_sym_QMARK, + STATE(3848), 1, + sym_formal_parameters, + STATE(3949), 1, + sym_type_annotation, + STATE(4799), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5381), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121206] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6497), 1, - sym_identifier, - ACTIONS(6501), 1, - anon_sym_GT, - STATE(2908), 1, - sym_type_arguments, + 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(6499), 3, + 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, - sym_jsx_identifier, - anon_sym_SLASH_GT, - ACTIONS(3498), 5, - anon_sym_EQ, + ACTIONS(6506), 1, + sym_identifier, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(6510), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [121377] = 13, - ACTIONS(2537), 1, + 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(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6506), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6514), 1, anon_sym_BANG, - ACTIONS(6508), 1, + ACTIONS(6516), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4277), 1, + STATE(3961), 1, sym_type_annotation, - STATE(4846), 1, + STATE(4614), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5515), 1, + STATE(5289), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6504), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121420] = 13, - ACTIONS(2537), 1, + [121337] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6510), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6518), 1, anon_sym_BANG, - ACTIONS(6512), 1, + ACTIONS(6520), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4423), 1, + STATE(4340), 1, sym_type_annotation, - STATE(5151), 1, + STATE(5009), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5457), 1, + STATE(5359), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121463] = 13, - ACTIONS(2537), 1, + [121380] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, + 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_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121419] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(6514), 1, + ACTIONS(6524), 1, anon_sym_BANG, - ACTIONS(6516), 1, + ACTIONS(6526), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4427), 1, + STATE(3897), 1, + sym__call_signature, + STATE(4166), 1, sym_type_annotation, - STATE(5154), 1, + STATE(4699), 1, sym__initializer, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, - STATE(5463), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121506] = 6, - ACTIONS(217), 1, + [121462] = 4, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(6340), 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_AMP, + anon_sym_PIPE, + anon_sym_extends, + [121487] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3452), 1, + STATE(2936), 1, sym_type_predicate, - STATE(5688), 1, + STATE(5962), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6518), 2, + ACTIONS(6528), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240550,278 +238719,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121535] = 13, - ACTIONS(2537), 1, + [121516] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(6522), 1, + ACTIONS(6532), 1, anon_sym_BANG, - ACTIONS(6524), 1, + ACTIONS(6534), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4461), 1, + STATE(3810), 1, + sym__call_signature, + STATE(4235), 1, sym_type_annotation, - STATE(5221), 1, + STATE(4884), 1, sym__initializer, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, - STATE(5559), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121578] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(6359), 1, - anon_sym_STAR, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(6530), 1, - anon_sym_COMMA, - ACTIONS(6532), 1, - anon_sym_from, - STATE(4349), 1, - sym_string, - STATE(4350), 1, - sym_import_require_clause, - STATE(5301), 1, - sym__import_identifier, - STATE(5568), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5990), 2, - sym_namespace_import, - sym_named_imports, - [121623] = 13, - ACTIONS(2537), 1, + [121559] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, ACTIONS(6536), 1, anon_sym_BANG, ACTIONS(6538), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3888), 1, - sym__call_signature, - STATE(4391), 1, + STATE(4360), 1, sym_type_annotation, - STATE(5078), 1, + STATE(5046), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5396), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6534), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121666] = 13, - ACTIONS(2537), 1, + [121602] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6477), 1, - anon_sym_BANG, ACTIONS(6540), 1, + anon_sym_BANG, + ACTIONS(6542), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3792), 1, - sym__call_signature, - STATE(4373), 1, + STATE(4363), 1, sym_type_annotation, - STATE(5026), 1, + STATE(5051), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5402), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6475), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121709] = 11, - ACTIONS(2537), 1, + [121645] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(3738), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6524), 1, + anon_sym_BANG, + ACTIONS(6544), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - STATE(5298), 1, + STATE(4166), 1, + sym_type_annotation, + STATE(4720), 1, + sym__call_signature, + STATE(4722), 1, + sym__initializer, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(6522), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121748] = 11, - ACTIONS(2537), 1, + [121688] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5298), 1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(3758), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [121787] = 4, - ACTIONS(4035), 1, - anon_sym_EQ, - ACTIONS(6351), 1, - anon_sym_is, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 12, + ACTIONS(6548), 3, 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, + 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, - anon_sym_extends, - [121812] = 13, - ACTIONS(2537), 1, + [121762] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6544), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6555), 1, anon_sym_BANG, - ACTIONS(6546), 1, + ACTIONS(6557), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(3859), 1, + STATE(3913), 1, sym__call_signature, - STATE(4442), 1, + STATE(4451), 1, sym_type_annotation, - STATE(5204), 1, + STATE(5205), 1, sym__initializer, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6542), 3, + ACTIONS(6553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121855] = 13, - ACTIONS(2537), 1, + [121805] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6548), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6561), 1, anon_sym_BANG, - ACTIONS(6550), 1, + ACTIONS(6563), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4011), 1, + STATE(4183), 1, sym_type_annotation, - STATE(4622), 1, + STATE(4756), 1, sym__initializer, - STATE(5308), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5326), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121848] = 6, + ACTIONS(4006), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(3245), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3501), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121877] = 6, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_PIPE, + ACTIONS(6565), 1, + anon_sym_DOT, + STATE(3172), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4054), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [121898] = 6, - ACTIONS(217), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121906] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(1857), 1, + STATE(1492), 1, sym_type_predicate, - STATE(5723), 1, + STATE(5722), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6567), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240831,168 +239022,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121927] = 13, - ACTIONS(2537), 1, + [121935] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(6554), 1, + ACTIONS(6492), 1, anon_sym_BANG, - ACTIONS(6556), 1, + ACTIONS(6569), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4020), 1, + STATE(3881), 1, + sym__call_signature, + STATE(4325), 1, sym_type_annotation, - STATE(4649), 1, + STATE(4977), 1, sym__initializer, - STATE(5243), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121970] = 13, - ACTIONS(2537), 1, + [121978] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6560), 1, + ACTIONS(6571), 1, anon_sym_BANG, - ACTIONS(6562), 1, + ACTIONS(6573), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3890), 1, - sym__call_signature, - STATE(4434), 1, + STATE(4197), 1, sym_type_annotation, - STATE(5159), 1, + STATE(5181), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5545), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6558), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122013] = 11, - ACTIONS(2537), 1, + [122021] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5298), 1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(3758), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [122052] = 13, - ACTIONS(2537), 1, + [122060] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6566), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6575), 1, anon_sym_BANG, - ACTIONS(6568), 1, + ACTIONS(6577), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3999), 1, + STATE(4426), 1, sym_type_annotation, - STATE(5011), 1, + STATE(5146), 1, sym__initializer, - STATE(5252), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5504), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122095] = 13, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, + [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, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6570), 1, - anon_sym_BANG, - ACTIONS(6572), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(4041), 1, - sym_type_annotation, - STATE(4720), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5425), 1, - sym__call_signature, + ACTIONS(6581), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, + ACTIONS(4032), 12, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [122138] = 6, - ACTIONS(217), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [122157] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(2948), 1, + STATE(1981), 1, sym_type_predicate, - STATE(5696), 1, + STATE(5969), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6574), 2, + ACTIONS(6583), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241002,20 +239207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122167] = 6, - ACTIONS(217), 1, + [122186] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3202), 1, + STATE(3180), 1, sym_type_predicate, - STATE(5736), 1, + STATE(5835), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6576), 2, + ACTIONS(6585), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241025,140 +239230,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122196] = 13, - ACTIONS(2537), 1, + [122215] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6578), 1, - anon_sym_BANG, - ACTIONS(6580), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(3967), 1, - sym_type_annotation, - STATE(4626), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5544), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, + ACTIONS(3752), 1, anon_sym_COMMA, - anon_sym_SEMI, - [122239] = 13, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(3803), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6582), 1, - anon_sym_BANG, - ACTIONS(6584), 1, - anon_sym_QMARK, - STATE(3849), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(3993), 1, - sym_type_annotation, - STATE(4996), 1, - sym__initializer, - STATE(5304), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(3758), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [122282] = 13, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6586), 1, - anon_sym_BANG, - ACTIONS(6588), 1, anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(4112), 1, - sym_type_annotation, - STATE(5053), 1, - sym__initializer, - STATE(5297), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122325] = 13, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [122254] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6590), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6587), 1, anon_sym_BANG, - ACTIONS(6592), 1, + ACTIONS(6589), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4130), 1, + STATE(4390), 1, sym_type_annotation, - STATE(5182), 1, + STATE(5035), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5493), 1, + STATE(5383), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122368] = 6, - ACTIONS(217), 1, + [122297] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(1604), 1, + STATE(2936), 1, sym_type_predicate, - STATE(5737), 1, + STATE(5684), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6594), 2, + ACTIONS(6591), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241168,72 +239311,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122397] = 6, - ACTIONS(4009), 1, - anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(3205), 1, - sym_type_arguments, + [122326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 10, + ACTIONS(4400), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122426] = 13, - ACTIONS(2537), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6596), 1, - anon_sym_BANG, - ACTIONS(6598), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(4092), 1, - sym_type_annotation, - STATE(5014), 1, - sym__initializer, - STATE(5279), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122469] = 6, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + anon_sym_extends, + [122346] = 3, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(6600), 1, - anon_sym_DOT, - STATE(3128), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 10, + ACTIONS(4408), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241241,44 +239343,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122498] = 13, - ACTIONS(2537), 1, + [122368] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6604), 1, - anon_sym_BANG, - ACTIONS(6606), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6595), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4252), 1, + STATE(4057), 1, + sym__call_signature, + STATE(4058), 1, sym_type_annotation, - STATE(4813), 1, - sym__initializer, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5487), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6593), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [122541] = 2, + anon_sym_PIPE_RBRACE, + [122404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4396), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241292,39 +239392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122561] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6610), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3572), 1, - sym__call_signature, - STATE(4153), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6608), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122597] = 3, - ACTIONS(4179), 1, + [122424] = 3, + ACTIONS(4086), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 12, + ACTIONS(4088), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241337,13 +239411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122619] = 3, - ACTIONS(4187), 1, + [122446] = 3, + ACTIONS(3182), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 12, + ACTIONS(3184), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241356,322 +239430,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122641] = 10, - ACTIONS(2537), 1, + [122468] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6614), 1, + ACTIONS(6599), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4287), 1, + STATE(3524), 1, sym__call_signature, - STATE(4288), 1, + STATE(4271), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6612), 5, + ACTIONS(6597), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122677] = 6, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4233), 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, - [122705] = 3, - ACTIONS(4195), 1, - anon_sym_PIPE, + [122504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 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_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122727] = 6, - ACTIONS(4137), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + anon_sym_LT, anon_sym_extends, + [122524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 9, + ACTIONS(4400), 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, - [122755] = 4, - ACTIONS(4255), 1, - anon_sym_EQ, - ACTIONS(6616), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4257), 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, - [122779] = 6, - ACTIONS(6433), 1, anon_sym_LT, - ACTIONS(6622), 1, - anon_sym_DOT, - ACTIONS(6624), 1, - anon_sym_is, - STATE(3369), 1, - sym_type_arguments, + anon_sym_extends, + [122544] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 9, + ACTIONS(4372), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [122807] = 10, - ACTIONS(2537), 1, + [122564] = 13, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6626), 1, + 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(6628), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3550), 1, - sym__call_signature, - STATE(4288), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + ACTIONS(6603), 1, + anon_sym_GT, + ACTIONS(6605), 1, + anon_sym_SLASH_GT, + STATE(3350), 1, + sym_type_arguments, + STATE(3365), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6612), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122843] = 4, - ACTIONS(1869), 1, - anon_sym_DOT, - ACTIONS(4221), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [122606] = 3, + ACTIONS(4264), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 11, + ACTIONS(4266), 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_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122867] = 10, - ACTIONS(2537), 1, + [122628] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6609), 1, anon_sym_COLON, - ACTIONS(6632), 1, + ACTIONS(6611), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3728), 1, + STATE(3759), 1, sym__call_signature, - STATE(4440), 1, + STATE(4203), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122903] = 3, - ACTIONS(3175), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3177), 12, + ACTIONS(6607), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [122925] = 5, - ACTIONS(3458), 1, - anon_sym_PIPE, - ACTIONS(3502), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_QMARK_DOT, + [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(3454), 10, + ACTIONS(6613), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [122951] = 3, - ACTIONS(3635), 1, - anon_sym_PIPE, + [122700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 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_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122973] = 3, - ACTIONS(3628), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 12, + 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122995] = 6, - ACTIONS(4297), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + anon_sym_LT, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 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, - [123023] = 6, - ACTIONS(4345), 1, + [122740] = 6, + ACTIONS(4192), 1, anon_sym_EQ, - ACTIONS(6616), 1, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 9, + ACTIONS(4194), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241681,37 +239668,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [123051] = 4, - ACTIONS(1873), 1, - anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_PIPE, + [122768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 11, + ACTIONS(4400), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123075] = 5, - ACTIONS(4093), 1, - anon_sym_PIPE, - ACTIONS(6634), 1, + [122788] = 4, + ACTIONS(1699), 1, anon_sym_DOT, - ACTIONS(6636), 1, - anon_sym_QMARK_DOT, + ACTIONS(4250), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 10, + ACTIONS(4252), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241720,17 +239703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123101] = 4, - ACTIONS(4151), 1, + [122812] = 4, + ACTIONS(4200), 1, anon_sym_EQ, - ACTIONS(6638), 1, + ACTIONS(6623), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 11, + ACTIONS(4202), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241742,13 +239726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - [123125] = 3, - ACTIONS(4235), 1, + [122836] = 3, + ACTIONS(4268), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 12, + ACTIONS(4270), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241761,159 +239745,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123147] = 3, - ACTIONS(4239), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4241), 12, - sym__automatic_semicolon, + [122858] = 6, + ACTIONS(4346), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(6617), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123169] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6642), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3671), 1, - sym__call_signature, - STATE(4313), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6640), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123205] = 3, - ACTIONS(4243), 1, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4348), 9, 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, - [123227] = 13, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6648), 1, - anon_sym_SLASH_GT, - STATE(3437), 1, - sym_type_arguments, - STATE(3444), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123269] = 13, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6646), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(6650), 1, - anon_sym_SLASH_GT, - STATE(3359), 1, - sym_type_arguments, - STATE(3361), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_EQ_GT, + [122886] = 4, + ACTIONS(4284), 1, + anon_sym_EQ, + ACTIONS(6617), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123311] = 2, + ACTIONS(4286), 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, + [122910] = 3, + ACTIONS(3625), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 13, + ACTIONS(3429), 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_extends, - [123331] = 6, - ACTIONS(4401), 1, + anon_sym_PIPE_RBRACE, + [122932] = 6, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(6616), 1, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 9, + ACTIONS(4262), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241923,117 +239828,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [123359] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + [122960] = 6, + ACTIONS(4098), 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(4100), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6654), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4131), 1, - sym__call_signature, - STATE(4133), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [122988] = 6, + ACTIONS(4354), 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(6652), 5, - sym__automatic_semicolon, + ACTIONS(4356), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123395] = 10, - ACTIONS(2537), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [123016] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6656), 1, + ACTIONS(6627), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4439), 1, + STATE(3954), 1, sym__call_signature, - STATE(4440), 1, + STATE(3955), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 5, + ACTIONS(6625), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123431] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4273), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [123052] = 5, + ACTIONS(4030), 1, anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_LT, - anon_sym_extends, - [123451] = 2, + STATE(3256), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 13, + ACTIONS(4032), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123471] = 2, + anon_sym_PIPE_RBRACE, + [123078] = 3, + ACTIONS(4226), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4228), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123491] = 2, + anon_sym_PIPE_RBRACE, + [123100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 13, + ACTIONS(4372), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242047,73 +239956,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123511] = 2, + [123120] = 4, + ACTIONS(1791), 1, + anon_sym_DOT, + ACTIONS(4250), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4283), 13, + ACTIONS(4252), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123531] = 2, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [123551] = 10, - ACTIONS(2537), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [123186] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6658), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4312), 1, + STATE(3687), 1, sym__call_signature, - STATE(4313), 1, + STATE(3955), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 5, + ACTIONS(6625), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123587] = 2, + [123222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4283), 13, + ACTIONS(4392), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242127,11 +240049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123607] = 2, + [123242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, + ACTIONS(4392), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242145,106 +240067,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123627] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4291), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + [123262] = 5, + ACTIONS(3445), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, anon_sym_DOT, + ACTIONS(3471), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [123647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 13, + ACTIONS(3441), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123667] = 2, + anon_sym_PIPE_RBRACE, + [123288] = 3, + ACTIONS(3162), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 13, + ACTIONS(3164), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123687] = 2, + anon_sym_PIPE_RBRACE, + [123310] = 10, + ACTIONS(2478), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 13, + ACTIONS(6613), 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_PIPE_RBRACE, + [123346] = 10, + ACTIONS(2478), 1, anon_sym_LT, - anon_sym_extends, - [123707] = 3, - ACTIONS(3167), 1, - anon_sym_PIPE, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6635), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4202), 1, + sym__call_signature, + STATE(4203), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3169), 12, + ACTIONS(6607), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [123729] = 4, - ACTIONS(4111), 1, + [123382] = 6, + ACTIONS(4094), 1, anon_sym_EQ, - ACTIONS(6616), 1, + 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(4113), 11, + ACTIONS(4096), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -242254,39 +240181,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + [123410] = 3, + ACTIONS(4276), 1, anon_sym_PIPE, - anon_sym_extends, - [123753] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6660), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4152), 1, - sym__call_signature, - STATE(4153), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6608), 5, + ACTIONS(4278), 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, - [123789] = 2, + [123432] = 6, + ACTIONS(6396), 1, + anon_sym_LT, + ACTIONS(6637), 1, + anon_sym_DOT, + ACTIONS(6639), 1, + anon_sym_is, + STATE(3448), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 13, + ACTIONS(3501), 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, + [123460] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4300), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242300,11 +240240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123809] = 2, + [123480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4308), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242318,11 +240258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123829] = 2, + [123500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4312), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242336,11 +240276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123849] = 2, + [123520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4316), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242354,11 +240294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123869] = 2, + [123540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 13, + ACTIONS(4312), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242372,11 +240312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123889] = 2, + [123560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 13, + ACTIONS(4316), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242390,11 +240330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123909] = 2, + [123580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 13, + ACTIONS(4320), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242408,30 +240348,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123929] = 3, - ACTIONS(3171), 1, - anon_sym_PIPE, + [123600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3173), 12, + ACTIONS(4324), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123951] = 2, + [123620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 13, + ACTIONS(4320), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242445,11 +240384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123971] = 2, + [123640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 13, + ACTIONS(4324), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242463,11 +240402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123991] = 2, + [123660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 13, + ACTIONS(4328), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242481,11 +240420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124011] = 2, + [123680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 13, + ACTIONS(4332), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242499,11 +240438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124031] = 2, + [123700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4328), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242517,11 +240456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124051] = 2, + [123720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4332), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242535,17 +240474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124071] = 5, - ACTIONS(4027), 1, + [123740] = 5, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3212), 1, - sym_type_arguments, + ACTIONS(6641), 1, + anon_sym_DOT, + ACTIONS(6643), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 10, + ACTIONS(4166), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242556,13 +240495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124097] = 3, - ACTIONS(4247), 1, + [123766] = 3, + ACTIONS(3623), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 12, + ACTIONS(3419), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242575,11 +240514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124119] = 2, + [123788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4392), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242593,29 +240532,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124139] = 2, + [123808] = 3, + ACTIONS(4272), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4274), 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_extends, - [124159] = 2, + anon_sym_PIPE_RBRACE, + [123830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4360), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242629,11 +240569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124179] = 2, + [123850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4364), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242647,11 +240587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124199] = 2, + [123870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4364), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242665,81 +240605,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124219] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6662), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3602), 1, - sym__call_signature, - STATE(4133), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + [123890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6652), 5, + ACTIONS(4364), 13, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124255] = 6, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4311), 9, + 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, - [124283] = 6, - ACTIONS(4333), 1, - anon_sym_EQ, - ACTIONS(6616), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + anon_sym_LT, anon_sym_extends, + [123910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 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, - [124311] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4391), 13, + ACTIONS(4368), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242753,11 +240641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124331] = 2, + [123930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 13, + ACTIONS(4368), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242771,334 +240659,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124351] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4190), 1, - sym_type_annotation, - STATE(4634), 1, - sym__initializer, - STATE(5152), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [123950] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(4368), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [124388] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6465), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3466), 1, - sym_formal_parameters, - STATE(3788), 1, - sym__call_signature, - STATE(4171), 1, - sym_type_annotation, - STATE(4664), 1, - sym__initializer, - STATE(5469), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [124425] = 12, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6668), 1, - anon_sym_GT, - ACTIONS(6670), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6672), 1, - anon_sym_SLASH_GT, - STATE(3360), 1, - sym_type_arguments, - STATE(3362), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124464] = 11, - ACTIONS(2537), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4181), 1, - sym_type_annotation, - STATE(4675), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5511), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124501] = 9, - ACTIONS(2537), 1, + anon_sym_extends, + [123970] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(4443), 1, + STATE(3732), 1, sym__call_signature, - STATE(4444), 1, + STATE(4058), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 5, + ACTIONS(6593), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124534] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4138), 1, - sym_type_annotation, - STATE(5222), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5539), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124571] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4463), 1, - sym_type_annotation, - STATE(5224), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5570), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124608] = 11, - ACTIONS(2537), 1, + [124006] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4455), 1, - sym_type_annotation, - STATE(5210), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5542), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124645] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4177), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124666] = 7, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 7, - sym__automatic_semicolon, + ACTIONS(3244), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(6647), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124695] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3731), 1, + STATE(4270), 1, sym__call_signature, - STATE(4444), 1, + STATE(4271), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 5, + ACTIONS(6597), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124728] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4307), 1, - sym__call_signature, - STATE(4308), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + [124042] = 6, + ACTIONS(4072), 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(6682), 5, - sym__automatic_semicolon, + ACTIONS(4074), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124761] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4254), 1, - sym_type_annotation, - STATE(4815), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5492), 1, - sym__call_signature, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [124070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(4372), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [124798] = 3, - ACTIONS(4063), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124090] = 3, + ACTIONS(3186), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 11, + ACTIONS(3188), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243106,43 +240783,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [124819] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, + [124112] = 4, + ACTIONS(4180), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4374), 1, - sym_type_annotation, - STATE(5050), 1, - sym__call_signature, - STATE(5051), 1, - sym__initializer, - STATE(5374), 1, - sym_type_parameters, + ACTIONS(6617), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, - sym__automatic_semicolon, + ACTIONS(4182), 11, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [124856] = 3, - ACTIONS(4163), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [124136] = 3, + ACTIONS(4058), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 11, + ACTIONS(4060), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243150,81 +240822,135 @@ 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_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [124877] = 9, - ACTIONS(2537), 1, + [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, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3573), 1, + STATE(4355), 1, sym__call_signature, - STATE(4168), 1, + STATE(4356), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6655), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124910] = 4, - ACTIONS(4045), 1, + [124229] = 3, + ACTIONS(4090), 1, anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 10, + ACTIONS(4092), 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_extends, anon_sym_PIPE_RBRACE, - [124933] = 4, - ACTIONS(3959), 1, + [124250] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(1643), 1, - sym_arguments, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(3699), 1, + sym_formal_parameters, + STATE(5356), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 10, + ACTIONS(4002), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3758), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_extends, - [124956] = 4, - ACTIONS(4027), 1, + anon_sym_PIPE_RBRACE, + [124281] = 9, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(3670), 1, + sym__call_signature, + STATE(4356), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6655), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124314] = 4, + ACTIONS(4026), 1, anon_sym_PIPE, - ACTIONS(6688), 1, + ACTIONS(6432), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 10, + ACTIONS(4028), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243235,113 +240961,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124979] = 8, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, + [124337] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6690), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(3730), 1, + sym__call_signature, + STATE(4054), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125010] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, + ACTIONS(6657), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124370] = 9, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(3583), 1, + sym__call_signature, + STATE(4377), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 11, + ACTIONS(6659), 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, - [125031] = 12, - ACTIONS(6051), 1, + [124403] = 12, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6668), 1, + ACTIONS(6649), 1, anon_sym_GT, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_DOT, - ACTIONS(6692), 1, + ACTIONS(6661), 1, anon_sym_SLASH_GT, - STATE(3365), 1, + STATE(3331), 1, sym_type_arguments, - STATE(3370), 1, + STATE(3339), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [125070] = 9, - ACTIONS(2537), 1, + [124442] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4163), 1, - sym__call_signature, - STATE(4168), 1, + STATE(3952), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4920), 1, + sym__initializer, + STATE(5228), 1, + sym__call_signature, + STATE(5231), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125103] = 7, - ACTIONS(3785), 1, + [124479] = 5, + ACTIONS(6396), 1, + anon_sym_LT, + ACTIONS(6637), 1, + anon_sym_DOT, + STATE(3448), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3501), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3866), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + 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, + 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, + [124529] = 7, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -243349,237 +241124,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125132] = 11, - ACTIONS(2537), 1, + [124558] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4017), 1, + STATE(4029), 1, sym_type_annotation, - STATE(4632), 1, + STATE(4778), 1, sym__initializer, - STATE(5315), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5370), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125169] = 11, - ACTIONS(2537), 1, + [124595] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, sym_formal_parameters, - STATE(3896), 1, + STATE(3904), 1, sym__call_signature, - STATE(4436), 1, + STATE(3927), 1, sym_type_annotation, - STATE(5174), 1, + STATE(5198), 1, sym__initializer, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125206] = 7, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + [124632] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(6663), 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, - [125235] = 11, - ACTIONS(2537), 1, + [124669] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4074), 1, + STATE(3927), 1, sym_type_annotation, - STATE(4913), 1, + STATE(5218), 1, + sym__call_signature, + STATE(5219), 1, sym__initializer, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5397), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125272] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 12, - anon_sym_as, + ACTIONS(6669), 3, + sym__automatic_semicolon, 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, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [125291] = 8, - ACTIONS(6306), 1, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124780] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6312), 1, - anon_sym_DOT, - ACTIONS(6314), 1, - anon_sym_QMARK_DOT, - ACTIONS(6690), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(2891), 1, - sym_arguments, - STATE(2959), 1, - sym_type_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(4138), 1, + sym_type_annotation, + STATE(5148), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5446), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125322] = 11, - ACTIONS(2537), 1, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124817] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3789), 1, - sym__call_signature, - STATE(4190), 1, + STATE(4179), 1, sym_type_annotation, - STATE(4768), 1, + STATE(4746), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5313), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125359] = 9, - ACTIONS(2537), 1, + [124854] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, sym_formal_parameters, - STATE(3705), 1, + STATE(3882), 1, sym__call_signature, - STATE(4404), 1, + STATE(4326), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4981), 1, + sym__initializer, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6696), 5, + ACTIONS(6675), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125392] = 11, - ACTIONS(2537), 1, + [124891] = 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(6677), 1, + anon_sym_SLASH_GT, + STATE(3316), 1, + sym_type_arguments, + STATE(3363), 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, + [124930] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4365), 1, + STATE(4186), 1, sym_type_annotation, - STATE(5012), 1, + STATE(4762), 1, sym__initializer, - STATE(5275), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5340), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125429] = 7, - ACTIONS(3785), 1, + [124967] = 7, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3882), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -243587,413 +241433,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125458] = 3, - ACTIONS(4405), 1, - anon_sym_PIPE, + [124996] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(4326), 1, + sym_type_annotation, + STATE(4992), 1, + sym__call_signature, + STATE(4993), 1, + sym__initializer, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 11, + ACTIONS(6675), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125479] = 3, - ACTIONS(4377), 1, - anon_sym_PIPE, + [125033] = 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(4107), 1, + sym_type_annotation, + STATE(5130), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5480), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 11, + ACTIONS(6673), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125500] = 8, - ACTIONS(6306), 1, + [125070] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6308), 1, - anon_sym_DOT, - ACTIONS(6310), 1, - anon_sym_QMARK_DOT, - ACTIONS(6690), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(2878), 1, - sym_arguments, - STATE(2960), 1, - sym_type_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(4265), 1, + sym__call_signature, + STATE(4266), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125531] = 11, - ACTIONS(2537), 1, + ACTIONS(6679), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125103] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4019), 1, + STATE(4446), 1, sym_type_annotation, - STATE(4639), 1, + STATE(5199), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5443), 1, + STATE(5546), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125568] = 2, + [125140] = 7, + 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, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3758), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_QMARK, - anon_sym_extends, - [125587] = 11, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [125169] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4094), 1, + STATE(4396), 1, sym_type_annotation, - STATE(5018), 1, + STATE(5108), 1, sym__initializer, - STATE(5285), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5464), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125624] = 11, - ACTIONS(2537), 1, + [125206] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, sym_formal_parameters, - STATE(4417), 1, - sym_type_annotation, - STATE(5132), 1, - sym__initializer, - STATE(5259), 1, + STATE(3956), 1, sym__call_signature, - STATE(5338), 1, + STATE(3957), 1, + sym_type_annotation, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6700), 3, + ACTIONS(6681), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125661] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4120), 1, - sym_type_annotation, - STATE(5117), 1, - sym__initializer, - STATE(5277), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [125239] = 3, + ACTIONS(4062), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(4064), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [125698] = 7, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125260] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(4250), 1, + sym_type_annotation, + STATE(4859), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5527), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(6673), 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, - [125727] = 11, - ACTIONS(2537), 1, + [125297] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3827), 1, - sym__call_signature, - STATE(4246), 1, + STATE(4354), 1, sym_type_annotation, - STATE(4809), 1, + STATE(5032), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5347), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6702), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125764] = 11, - ACTIONS(2537), 1, + [125334] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, sym_formal_parameters, - STATE(4029), 1, - sym_type_annotation, - STATE(4694), 1, - sym__initializer, - STATE(5325), 1, + STATE(3653), 1, sym__call_signature, - STATE(5338), 1, + STATE(4266), 1, + sym_type_annotation, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6679), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125801] = 12, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6668), 1, - anon_sym_GT, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_SLASH_GT, - STATE(3448), 1, - sym_type_arguments, - STATE(3463), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [125367] = 4, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [125840] = 11, - ACTIONS(2537), 1, + ACTIONS(4224), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [125390] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, sym_formal_parameters, - STATE(4096), 1, - sym_type_annotation, - STATE(5040), 1, - sym__initializer, - STATE(5312), 1, + STATE(4376), 1, sym__call_signature, - STATE(5338), 1, + STATE(4377), 1, + sym_type_annotation, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6659), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125877] = 5, - ACTIONS(6433), 1, + anon_sym_PIPE_RBRACE, + [125423] = 8, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6622), 1, + ACTIONS(6324), 1, anon_sym_DOT, - STATE(3369), 1, + ACTIONS(6685), 1, + anon_sym_QMARK, + STATE(2909), 1, sym_type_arguments, + STATE(5414), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3501), 6, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [125902] = 5, - ACTIONS(6427), 1, + [125454] = 9, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3296), 1, - sym_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(4053), 1, + sym__call_signature, + STATE(4054), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 9, + ACTIONS(6657), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125927] = 12, - ACTIONS(1588), 1, + anon_sym_PIPE_RBRACE, + [125487] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(6359), 1, + ACTIONS(6328), 1, anon_sym_STAR, - ACTIONS(6363), 1, + ACTIONS(6332), 1, anon_sym_LBRACE, - ACTIONS(6526), 1, + ACTIONS(6506), 1, sym_identifier, - ACTIONS(6528), 1, + ACTIONS(6508), 1, anon_sym_type, - STATE(4349), 1, + STATE(4188), 1, sym_string, - STATE(4350), 1, + STATE(4189), 1, sym_import_require_clause, - STATE(5301), 1, + STATE(5294), 1, sym__import_identifier, - STATE(5568), 1, + STATE(5345), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5990), 2, + STATE(5775), 2, sym_namespace_import, sym_named_imports, - [125966] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(3600), 1, - sym__call_signature, - STATE(4129), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6708), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125999] = 4, - ACTIONS(4035), 1, + [125526] = 3, + ACTIONS(1685), 1, anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 10, + ACTIONS(1683), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244003,88 +241834,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [126022] = 8, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, + [125547] = 4, + ACTIONS(4148), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, anon_sym_DOT, - ACTIONS(6710), 1, - anon_sym_QMARK, - STATE(2908), 1, - sym_type_arguments, - STATE(5384), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 6, + ACTIONS(4150), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [126053] = 11, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [125570] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4299), 1, + STATE(3976), 1, sym_type_annotation, - STATE(4888), 1, + STATE(4780), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5342), 1, + STATE(5373), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126090] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(3738), 1, - sym_formal_parameters, - STATE(5298), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126121] = 4, - ACTIONS(4077), 1, + [125607] = 4, + ACTIONS(4022), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_DOT, + ACTIONS(6432), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4079), 10, + ACTIONS(4024), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244095,164 +241900,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126144] = 11, - ACTIONS(2537), 1, + [125630] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3794), 1, + STATE(3688), 1, sym__call_signature, - STATE(4374), 1, + STATE(3957), 1, sym_type_annotation, - STATE(5030), 1, - sym__initializer, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, + ACTIONS(6681), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126181] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4121), 1, - sym__call_signature, - STATE(4129), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [125663] = 4, + ACTIONS(4030), 1, + anon_sym_PIPE, + ACTIONS(6690), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6708), 5, + ACTIONS(4032), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126214] = 11, - ACTIONS(2537), 1, + [125686] = 8, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + 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, + sym_comment, + ACTIONS(3441), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125717] = 8, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6297), 1, + anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_QMARK_DOT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2876), 1, + sym_arguments, + STATE(2989), 1, + sym_type_arguments, + 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, + anon_sym_DOT, + ACTIONS(6295), 1, + anon_sym_QMARK_DOT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2872), 1, + sym_arguments, + STATE(2992), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4016), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125779] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4247), 1, + STATE(4314), 1, sym_type_annotation, - STATE(4804), 1, + STATE(4961), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5452), 1, + STATE(5322), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126251] = 9, - ACTIONS(2537), 1, + [125816] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, sym_formal_parameters, - STATE(4403), 1, + STATE(3783), 1, sym__call_signature, - STATE(4404), 1, + STATE(4173), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4733), 1, + sym__initializer, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6696), 5, + ACTIONS(6696), 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, - [126284] = 12, - ACTIONS(6051), 1, + [125882] = 12, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6668), 1, + ACTIONS(6649), 1, anon_sym_GT, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_DOT, - ACTIONS(6715), 1, + ACTIONS(6698), 1, anon_sym_SLASH_GT, - STATE(3331), 1, + STATE(3369), 1, sym_type_arguments, - STATE(3332), 1, + STATE(3384), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [126323] = 9, - ACTIONS(2537), 1, + [125921] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3665), 1, - sym__call_signature, - STATE(4308), 1, + STATE(4285), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4916), 1, + sym__initializer, + STATE(5231), 1, sym_type_parameters, + STATE(5238), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6682), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126356] = 3, - ACTIONS(1670), 1, + [125958] = 3, + ACTIONS(4214), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 11, + ACTIONS(4216), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244260,87 +242153,83 @@ 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_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [126377] = 3, - ACTIONS(4259), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4261), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + [125979] = 7, + ACTIONS(3752), 1, anon_sym_COMMA, + ACTIONS(3803), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126397] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, + 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(4311), 8, + ACTIONS(3758), 7, 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_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126421] = 3, - ACTIONS(4325), 1, + [126008] = 3, + ACTIONS(4122), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 10, + ACTIONS(4124), 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_extends, anon_sym_PIPE_RBRACE, - [126441] = 3, - ACTIONS(1873), 1, - anon_sym_DOT, + [126029] = 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(3786), 1, + sym__call_signature, + STATE(4199), 1, + sym_type_annotation, + STATE(4796), 1, + sym__initializer, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 10, + ACTIONS(6700), 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_LT, - anon_sym_extends, - [126461] = 3, - ACTIONS(4089), 1, + [126066] = 3, + ACTIONS(4136), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 10, + ACTIONS(4138), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244348,59 +242237,66 @@ 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_extends, anon_sym_PIPE_RBRACE, - [126481] = 3, - ACTIONS(4333), 1, + [126087] = 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(4397), 1, + sym_type_annotation, + STATE(5018), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5333), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126124] = 5, + ACTIONS(4154), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 10, + ACTIONS(4156), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4198), 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, - [126501] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_LT_SLASH, - ACTIONS(6729), 1, - anon_sym_LT, - STATE(3263), 1, - sym_jsx_opening_element, - STATE(4244), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6725), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3267), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126531] = 5, - ACTIONS(6717), 1, + [126148] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 8, + ACTIONS(4348), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244409,13 +242305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [126555] = 3, - ACTIONS(4251), 1, + [126172] = 3, + ACTIONS(4026), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 10, + ACTIONS(4028), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244426,152 +242322,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126575] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LT_SLASH, - STATE(3263), 1, - sym_jsx_opening_element, - STATE(4331), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6731), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3194), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126605] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LT_SLASH, - STATE(3263), 1, - sym_jsx_opening_element, - STATE(4343), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6725), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3267), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126635] = 3, - ACTIONS(4099), 1, - anon_sym_PIPE, + [126192] = 3, + ACTIONS(1699), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 10, + ACTIONS(4252), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126655] = 8, - ACTIONS(6723), 1, + [126212] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_LT, - ACTIONS(6737), 1, + ACTIONS(6714), 1, anon_sym_LT_SLASH, - STATE(1625), 1, - sym_jsx_closing_element, - STATE(3263), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6735), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3214), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126685] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6716), 1, anon_sym_LT, - ACTIONS(6741), 1, - anon_sym_LT_SLASH, - STATE(2089), 1, - sym_jsx_closing_element, - STATE(3263), 1, + STATE(3252), 1, sym_jsx_opening_element, + STATE(4305), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6739), 2, + ACTIONS(6712), 2, sym_jsx_text, sym_html_character_reference, - STATE(3230), 4, + STATE(3185), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [126715] = 3, - ACTIONS(2343), 1, - anon_sym_PIPE, + [126242] = 3, + ACTIONS(1791), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 10, + ACTIONS(4252), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126735] = 3, - ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4105), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126755] = 3, - ACTIONS(4107), 1, + [126262] = 3, + ACTIONS(2336), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 10, + ACTIONS(2334), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244582,65 +242395,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126775] = 4, - ACTIONS(4111), 1, - anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, + [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(4113), 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, - [126797] = 3, - ACTIONS(4035), 1, - anon_sym_PIPE, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 10, + ACTIONS(4088), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126817] = 3, - ACTIONS(4117), 1, anon_sym_PIPE, + anon_sym_extends, + [126330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 10, + ACTIONS(4228), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126837] = 3, - ACTIONS(4125), 1, + [126348] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 10, + ACTIONS(4282), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244651,13 +242466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126857] = 3, - ACTIONS(4133), 1, + [126368] = 3, + ACTIONS(4342), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 10, + ACTIONS(4344), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244668,53 +242483,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126877] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, + [126388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 8, + ACTIONS(4408), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126901] = 5, - ACTIONS(4083), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_LBRACK, + anon_sym_extends, + [126406] = 4, + ACTIONS(6396), 1, + anon_sym_LT, + STATE(3456), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4147), 7, + ACTIONS(4032), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126925] = 4, - ACTIONS(4151), 1, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6745), 1, anon_sym_extends, + [126428] = 4, + ACTIONS(4284), 1, + anon_sym_PIPE, + ACTIONS(6704), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 9, + ACTIONS(4286), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244722,37 +242533,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126947] = 4, - ACTIONS(4157), 1, + [126450] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_LBRACK, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 9, + ACTIONS(4096), 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, - [126969] = 5, - ACTIONS(6717), 1, + [126474] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4299), 8, + ACTIONS(4100), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244761,17 +242573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [126993] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, + [126498] = 3, + ACTIONS(4350), 1, anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 8, + ACTIONS(4352), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244779,14 +242587,36 @@ 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, - [127017] = 3, - ACTIONS(4171), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3501), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [126544] = 3, + ACTIONS(4222), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 10, + ACTIONS(4224), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244797,71 +242627,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127037] = 2, + [126564] = 3, + ACTIONS(4354), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 11, + ACTIONS(4356), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127055] = 8, - ACTIONS(6723), 1, + [126584] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6716), 1, anon_sym_LT, - ACTIONS(6737), 1, + ACTIONS(6724), 1, anon_sym_LT_SLASH, - STATE(1661), 1, + STATE(1621), 1, sym_jsx_closing_element, - STATE(3263), 1, + STATE(3252), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6725), 2, + ACTIONS(6722), 2, sym_jsx_text, sym_html_character_reference, - STATE(3267), 4, + STATE(3247), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [127085] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3738), 1, - sym_formal_parameters, - STATE(5298), 1, - sym_type_parameters, + [126614] = 3, + ACTIONS(4374), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(4376), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127111] = 3, - ACTIONS(2339), 1, + [126634] = 3, + ACTIONS(4378), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 10, + ACTIONS(4380), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244872,13 +242700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127131] = 3, - ACTIONS(4183), 1, + [126654] = 3, + ACTIONS(4382), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 10, + ACTIONS(4384), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244889,13 +242717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127151] = 3, - ACTIONS(4191), 1, + [126674] = 3, + ACTIONS(2344), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 10, + ACTIONS(2342), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244906,32 +242734,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127171] = 5, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4183), 1, + [126694] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, - STATE(1643), 1, - sym_arguments, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 8, + ACTIONS(4356), 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, + [126718] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3188), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127195] = 3, - ACTIONS(4199), 1, + [126736] = 3, + ACTIONS(2340), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 10, + ACTIONS(2338), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244942,13 +242786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127215] = 3, - ACTIONS(4203), 1, + [126756] = 3, + ACTIONS(4230), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 10, + ACTIONS(4232), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244959,15 +242803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127235] = 4, - ACTIONS(6433), 1, - anon_sym_LT, - STATE(3382), 1, - sym_type_arguments, + [126776] = 4, + ACTIONS(6392), 1, + anon_sym_DOT, + ACTIONS(6394), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 9, + ACTIONS(3441), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244977,13 +242821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127257] = 3, - ACTIONS(4357), 1, + [126798] = 3, + ACTIONS(4234), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 10, + ACTIONS(4236), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244994,13 +242838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127277] = 3, - ACTIONS(4361), 1, + [126818] = 3, + ACTIONS(4140), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 10, + ACTIONS(4142), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245011,13 +242855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127297] = 3, - ACTIONS(4207), 1, + [126838] = 3, + ACTIONS(4030), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 10, + ACTIONS(4032), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245028,46 +242872,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127317] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + [126858] = 4, + ACTIONS(6726), 1, + anon_sym_DOT, + ACTIONS(6728), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 10, + ACTIONS(4166), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127337] = 2, + [126880] = 3, + ACTIONS(4144), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3177), 11, + ACTIONS(4146), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127355] = 3, - ACTIONS(4217), 1, + anon_sym_PIPE_RBRACE, + [126900] = 3, + ACTIONS(4238), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 10, + ACTIONS(4240), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245078,13 +242924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127375] = 3, - ACTIONS(2353), 1, + [126920] = 3, + ACTIONS(4022), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2351), 10, + ACTIONS(4024), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245095,35 +242941,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127395] = 8, - ACTIONS(6723), 1, + [126940] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6716), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6730), 1, anon_sym_LT_SLASH, - STATE(2189), 1, + STATE(2172), 1, sym_jsx_closing_element, - STATE(3263), 1, + STATE(3252), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6725), 2, + ACTIONS(6718), 2, sym_jsx_text, sym_html_character_reference, - STATE(3267), 4, + STATE(3273), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [127425] = 3, - ACTIONS(4231), 1, + [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, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 10, + ACTIONS(4156), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245134,102 +243000,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127445] = 4, - ACTIONS(6429), 1, - anon_sym_DOT, - ACTIONS(6431), 1, - anon_sym_QMARK_DOT, + [127016] = 3, + ACTIONS(4160), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 9, + ACTIONS(4162), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127467] = 4, - ACTIONS(6747), 1, - anon_sym_DOT, - ACTIONS(6749), 1, - anon_sym_QMARK_DOT, + anon_sym_PIPE_RBRACE, + [127036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 9, + ACTIONS(3419), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127489] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, + [127054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 8, + ACTIONS(3758), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127513] = 2, + [127072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3173), 11, + ACTIONS(3429), 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_PIPE, - anon_sym_extends, - [127531] = 6, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6751), 1, - anon_sym_is, - STATE(2908), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3498), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [127557] = 2, + [127090] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 11, + ACTIONS(5224), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -245241,100 +243081,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127575] = 2, + [127108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 11, + ACTIONS(4266), 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_PIPE, anon_sym_extends, - [127593] = 2, + [127126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 11, + ACTIONS(4270), 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_PIPE, anon_sym_extends, - [127611] = 2, + [127144] = 3, + ACTIONS(2328), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 11, + ACTIONS(2326), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127629] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6753), 1, - sym_identifier, - ACTIONS(6755), 1, - anon_sym_type, - ACTIONS(6757), 1, - anon_sym_COMMA, - ACTIONS(6759), 1, - anon_sym_RBRACE, - ACTIONS(6761), 1, - anon_sym_typeof, - STATE(5002), 1, - sym_import_specifier, - STATE(5260), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5894), 2, - sym__module_export_name, - sym_string, - [127665] = 2, + anon_sym_PIPE_RBRACE, + [127164] = 3, + ACTIONS(4290), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 11, + ACTIONS(4292), 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_extends, + anon_sym_PIPE_RBRACE, + [127184] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, + ACTIONS(6708), 1, anon_sym_extends, - [127683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 11, + ACTIONS(4074), 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, + [127208] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4274), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245346,11 +243182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127701] = 2, + [127226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 11, + ACTIONS(4278), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245362,59 +243198,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127719] = 2, + [127244] = 3, + ACTIONS(4402), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 11, + ACTIONS(4404), 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_extends, - [127737] = 2, + anon_sym_PIPE_RBRACE, + [127264] = 3, + ACTIONS(2332), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 11, + ACTIONS(2330), 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_extends, - [127755] = 2, + anon_sym_PIPE_RBRACE, + [127284] = 3, + ACTIONS(4242), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 11, + ACTIONS(4244), 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_extends, - [127773] = 2, + anon_sym_PIPE_RBRACE, + [127304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3169), 11, + ACTIONS(3164), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245426,15 +243265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127791] = 4, - ACTIONS(4255), 1, + [127322] = 3, + ACTIONS(4246), 1, anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 9, + ACTIONS(4248), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245442,15 +243279,20 @@ 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, - [127813] = 3, - ACTIONS(4301), 1, + [127342] = 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(4303), 10, + ACTIONS(4262), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245458,33 +243300,52 @@ 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, - [127833] = 3, - ACTIONS(2349), 1, - anon_sym_PIPE, + [127366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2347), 10, + ACTIONS(3184), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127853] = 3, - ACTIONS(4305), 1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 10, + ACTIONS(4172), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245495,30 +243356,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127873] = 3, - ACTIONS(1869), 1, - anon_sym_DOT, + [127434] = 3, + ACTIONS(4174), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 10, + ACTIONS(4114), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [127893] = 3, - ACTIONS(4073), 1, + anon_sym_PIPE_RBRACE, + [127454] = 3, + ACTIONS(4176), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 10, + ACTIONS(4178), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245529,13 +243390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127913] = 3, - ACTIONS(4027), 1, + [127474] = 4, + ACTIONS(4180), 1, anon_sym_PIPE, + ACTIONS(6704), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 10, + ACTIONS(4182), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245543,16 +243406,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, - [127933] = 3, - ACTIONS(4121), 1, + [127496] = 3, + ACTIONS(4134), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 10, + ACTIONS(4132), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245563,13 +243425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127953] = 3, - ACTIONS(4393), 1, + [127516] = 3, + ACTIONS(4184), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 10, + ACTIONS(4186), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245580,17 +243442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127973] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, + [127536] = 3, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 8, + ACTIONS(4190), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245598,14 +243456,20 @@ 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, - [127997] = 3, - ACTIONS(4045), 1, + [127556] = 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(4047), 10, + ACTIONS(4194), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245613,19 +243477,41 @@ 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, - [128017] = 3, - ACTIONS(2335), 1, + [127580] = 8, + ACTIONS(6710), 1, + anon_sym_LBRACE, + ACTIONS(6716), 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, anon_sym_PIPE, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 10, + ACTIONS(4224), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -245633,13 +243519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128037] = 3, - ACTIONS(4083), 1, + [127634] = 4, + ACTIONS(4200), 1, anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 10, + ACTIONS(4202), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245648,429 +243536,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128057] = 4, - ACTIONS(4083), 1, + [127656] = 3, + ACTIONS(4260), 1, anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 9, + ACTIONS(4262), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128079] = 8, - ACTIONS(6723), 1, + [127676] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6727), 1, + ACTIONS(6716), 1, + anon_sym_LT, + ACTIONS(6736), 1, anon_sym_LT_SLASH, - ACTIONS(6729), 1, + 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, - STATE(3263), 1, + ACTIONS(6736), 1, + anon_sym_LT_SLASH, + STATE(3252), 1, sym_jsx_opening_element, - STATE(4216), 1, + STATE(4175), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6738), 2, sym_jsx_text, sym_html_character_reference, - STATE(3190), 4, + STATE(3251), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [128109] = 10, - ACTIONS(2291), 1, + [127736] = 3, + ACTIONS(4334), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4336), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127756] = 11, + ACTIONS(2970), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2972), 1, anon_sym_SQUOTE, - ACTIONS(6753), 1, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6755), 1, + ACTIONS(6742), 1, anon_sym_type, - ACTIONS(6761), 1, - anon_sym_typeof, - ACTIONS(6765), 1, + ACTIONS(6744), 1, + anon_sym_COMMA, + ACTIONS(6746), 1, anon_sym_RBRACE, - STATE(5260), 1, - sym__import_identifier, - STATE(5324), 1, + 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(5894), 2, + STATE(5603), 2, sym__module_export_name, sym_string, - [128142] = 2, + [127792] = 4, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 10, + ACTIONS(4208), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [128159] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6767), 1, - sym_identifier, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6771), 1, anon_sym_extends, - ACTIONS(6773), 1, - anon_sym_implements, - STATE(2213), 1, - sym_class_body, - STATE(3611), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5240), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + anon_sym_PIPE_RBRACE, + [127814] = 3, + ACTIONS(4210), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128194] = 7, - ACTIONS(6775), 1, + ACTIONS(4212), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(6781), 1, - anon_sym_LT_SLASH, - ACTIONS(6783), 1, - anon_sym_LT, - STATE(3263), 1, - sym_jsx_opening_element, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127834] = 4, + ACTIONS(4154), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3267), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [128221] = 11, - ACTIONS(2537), 1, + ACTIONS(4156), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127856] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6786), 1, - sym_identifier, - STATE(2339), 1, + STATE(2288), 1, sym_class_body, - STATE(3536), 1, + STATE(3741), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5379), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128256] = 11, - ACTIONS(2537), 1, + [127891] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6788), 1, + ACTIONS(6758), 1, sym_identifier, - STATE(2213), 1, + STATE(2330), 1, sym_class_body, - STATE(3611), 1, + STATE(3593), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5240), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128291] = 10, - ACTIONS(6318), 1, + [127926] = 9, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6650), 1, - anon_sym_SLASH_GT, - STATE(3350), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + ACTIONS(6760), 1, + anon_sym_type, + ACTIONS(6762), 1, + anon_sym_as, + STATE(5245), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128324] = 3, - ACTIONS(6790), 1, - anon_sym_DOT, + ACTIONS(6510), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5931), 2, + sym__module_export_name, + sym_string, + [127957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4079), 9, + ACTIONS(4216), 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, - [128343] = 11, - ACTIONS(2537), 1, + [127974] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6792), 1, + ACTIONS(6764), 1, sym_identifier, - STATE(2213), 1, + STATE(2288), 1, sym_class_body, - STATE(3611), 1, + STATE(3741), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5240), 1, + STATE(5379), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128378] = 6, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, + [128009] = 5, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(6358), 1, anon_sym_DOT, - ACTIONS(6794), 1, - anon_sym_is, - STATE(2908), 1, - sym_type_arguments, + STATE(2893), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 6, - anon_sym_as, + ACTIONS(4054), 7, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [128403] = 3, - ACTIONS(6624), 1, - anon_sym_is, + [128032] = 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(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, - ACTIONS(4037), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128065] = 10, + 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, - [128422] = 5, - ACTIONS(6047), 1, - anon_sym_LPAREN, - ACTIONS(6371), 1, - anon_sym_DOT, - STATE(2900), 1, - sym_arguments, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(6603), 1, + anon_sym_GT, + ACTIONS(6605), 1, + anon_sym_SLASH_GT, + STATE(3314), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [128445] = 4, - ACTIONS(6798), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128098] = 4, + ACTIONS(6768), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3852), 3, + STATE(3836), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6796), 6, + ACTIONS(6766), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128466] = 4, - ACTIONS(4469), 1, - anon_sym_EQ, + [128119] = 4, + ACTIONS(6768), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + STATE(3824), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6770), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128487] = 10, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6335), 1, - anon_sym_SLASH_GT, - ACTIONS(6644), 1, + [128140] = 8, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_GT, - STATE(3323), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + 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, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128520] = 11, - ACTIONS(2537), 1, + 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, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6740), 1, + sym_identifier, + ACTIONS(6742), 1, + anon_sym_type, + ACTIONS(6748), 1, + anon_sym_typeof, + ACTIONS(6780), 1, + anon_sym_RBRACE, + STATE(5428), 1, + sym__import_identifier, + STATE(5458), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5603), 2, + sym__module_export_name, + sym_string, + [128202] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6800), 1, + ACTIONS(6782), 1, sym_identifier, - STATE(2339), 1, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(1669), 1, sym_class_body, - STATE(3536), 1, + STATE(3679), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5299), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128555] = 10, - ACTIONS(6318), 1, + [128237] = 4, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + 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, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6644), 1, + ACTIONS(6322), 1, + anon_sym_SLASH_GT, + ACTIONS(6601), 1, anon_sym_COLON, - ACTIONS(6646), 1, + ACTIONS(6603), 1, anon_sym_GT, - ACTIONS(6648), 1, - anon_sym_SLASH_GT, - STATE(3436), 1, + STATE(3438), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [128588] = 11, - ACTIONS(2537), 1, + [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, + 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(6771), 1, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6802), 1, + ACTIONS(6797), 1, sym_identifier, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1669), 1, + STATE(2330), 1, sym_class_body, - STATE(3634), 1, + STATE(3593), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5447), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128623] = 3, - ACTIONS(6624), 1, + [128353] = 3, + ACTIONS(6639), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 9, + ACTIONS(4028), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246080,34 +244068,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128642] = 4, - ACTIONS(6798), 1, - anon_sym_COLON, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3929), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6806), 6, - sym__automatic_semicolon, + 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, + anon_sym_LT, + ACTIONS(6752), 1, anon_sym_LBRACE, + ACTIONS(6754), 1, + anon_sym_extends, + ACTIONS(6756), 1, + anon_sym_implements, + ACTIONS(6801), 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, + 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, + ACTIONS(6809), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128663] = 5, - ACTIONS(6717), 1, + STATE(5023), 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, + [128463] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6808), 7, + ACTIONS(6811), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246115,747 +244151,983 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128686] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, + [128486] = 3, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4032), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6771), 1, + 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_LT, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6810), 1, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6815), 1, sym_identifier, - STATE(2339), 1, + STATE(2483), 1, sym_class_body, - STATE(3536), 1, + STATE(3729), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5230), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128721] = 9, - ACTIONS(2291), 1, + [128540] = 10, + ACTIONS(2970), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2972), 1, anon_sym_SQUOTE, - ACTIONS(6753), 1, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6812), 1, + ACTIONS(6742), 1, anon_sym_type, - ACTIONS(6814), 1, - anon_sym_as, - STATE(5410), 1, + ACTIONS(6748), 1, + anon_sym_typeof, + ACTIONS(6817), 1, + anon_sym_RBRACE, + STATE(5428), 1, sym__import_identifier, + STATE(5458), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5599), 2, + STATE(5603), 2, sym__module_export_name, sym_string, - [128752] = 11, - ACTIONS(2537), 1, + [128573] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6771), 1, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6816), 1, + ACTIONS(6819), 1, sym_identifier, - STATE(1723), 1, + STATE(2288), 1, sym_class_body, - STATE(3621), 1, + STATE(3741), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5464), 1, + STATE(5379), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128787] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6771), 1, - anon_sym_extends, - ACTIONS(6773), 1, - anon_sym_implements, - ACTIONS(6804), 1, + [128608] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4060), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6818), 1, - sym_identifier, - STATE(2485), 1, - sym_class_body, - STATE(3716), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5237), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + 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, - [128822] = 3, - ACTIONS(6820), 1, + ACTIONS(1683), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, anon_sym_is, + [128642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 9, + 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, - [128841] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, + [128659] = 3, + ACTIONS(6821), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4150), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6771), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6773), 1, + [128678] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6754), 1, + anon_sym_extends, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6822), 1, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6823), 1, sym_identifier, - STATE(2213), 1, + STATE(1691), 1, sym_class_body, - STATE(3611), 1, + STATE(3745), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5240), 1, + STATE(5320), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128876] = 11, - ACTIONS(2537), 1, + [128713] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6824), 1, + ACTIONS(6825), 1, sym_identifier, - STATE(2339), 1, + STATE(2330), 1, sym_class_body, - STATE(3536), 1, + STATE(3593), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128911] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6774), 2, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [128779] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6754), 1, anon_sym_extends, - anon_sym_is, - [128928] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6753), 1, + ACTIONS(6756), 1, + anon_sym_implements, + ACTIONS(6830), 1, sym_identifier, - ACTIONS(6755), 1, - anon_sym_type, - ACTIONS(6761), 1, - anon_sym_typeof, - ACTIONS(6826), 1, - anon_sym_RBRACE, - STATE(5260), 1, - sym__import_identifier, - STATE(5324), 1, - sym_import_specifier, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5894), 2, - sym__module_export_name, - sym_string, - [128961] = 2, + [128814] = 3, + ACTIONS(6639), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 10, + 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_AMP, anon_sym_PIPE, anon_sym_extends, - [128978] = 10, - ACTIONS(6318), 1, + [128833] = 10, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6339), 1, - anon_sym_SLASH_GT, - ACTIONS(6644), 1, + ACTIONS(6601), 1, anon_sym_COLON, - ACTIONS(6646), 1, + ACTIONS(6603), 1, anon_sym_GT, - STATE(3336), 1, + ACTIONS(6629), 1, + anon_sym_SLASH_GT, + STATE(3308), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129011] = 2, + [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, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_BANG, + ACTIONS(6836), 1, + anon_sym_QMARK, + STATE(4208), 1, + sym_type_annotation, + STATE(4798), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 10, + ACTIONS(4224), 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_AMP, anon_sym_PIPE, anon_sym_extends, - [129028] = 8, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6828), 1, + [128926] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6832), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6838), 1, anon_sym_BANG, - STATE(4195), 1, - sym__initializer, - STATE(4458), 1, + 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(6834), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6830), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129057] = 9, - ACTIONS(6459), 1, + [128954] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6832), 1, + ACTIONS(6842), 1, anon_sym_BANG, - ACTIONS(6836), 1, - sym__automatic_semicolon, - STATE(4458), 1, + ACTIONS(6844), 1, + anon_sym_QMARK, + STATE(4263), 1, sym_type_annotation, - STATE(5215), 1, + STATE(4874), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 2, + ACTIONS(6466), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [129088] = 9, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6839), 1, + [128982] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6843), 1, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6846), 1, + anon_sym_GT, + ACTIONS(6848), 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, + [129012] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(6845), 1, + ACTIONS(697), 1, anon_sym_RBRACE, - STATE(5013), 1, - sym_export_specifier, + 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(6841), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5045), 2, - sym__module_export_name, - sym_string, - [129119] = 2, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 9, + ACTIONS(6559), 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, - [129135] = 8, - ACTIONS(6459), 1, + [129066] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6847), 1, + ACTIONS(6854), 1, anon_sym_BANG, - ACTIONS(6849), 1, + ACTIONS(6856), 1, anon_sym_QMARK, - STATE(4405), 1, + STATE(4219), 1, sym_type_annotation, - STATE(5100), 1, + STATE(4814), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129163] = 8, - ACTIONS(6459), 1, + [129094] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6853), 1, + ACTIONS(6858), 1, anon_sym_BANG, - ACTIONS(6855), 1, + ACTIONS(6860), 1, anon_sym_QMARK, - STATE(4335), 1, + STATE(4140), 1, sym_type_annotation, - STATE(4952), 1, + STATE(4643), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6851), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129191] = 8, - ACTIONS(6459), 1, + [129122] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6862), 1, + anon_sym_GT, + ACTIONS(6864), 1, + anon_sym_SLASH_GT, + STATE(3410), 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, + [129152] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6857), 1, + ACTIONS(6866), 1, anon_sym_BANG, - ACTIONS(6859), 1, + ACTIONS(6868), 1, anon_sym_QMARK, - STATE(4034), 1, + STATE(4236), 1, sym_type_annotation, - STATE(4724), 1, + STATE(4838), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + 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, - [129219] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129196] = 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, + anon_sym_GT, + STATE(3370), 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, + [129226] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6870), 1, + anon_sym_GT, + ACTIONS(6872), 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, + [129256] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6874), 1, + anon_sym_GT, + ACTIONS(6876), 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, + [129286] = 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(6880), 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, + [129316] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6874), 1, + anon_sym_GT, + ACTIONS(6882), 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, + [129346] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6861), 1, + ACTIONS(6884), 1, anon_sym_BANG, - ACTIONS(6863), 1, + ACTIONS(6886), 1, anon_sym_QMARK, - STATE(4409), 1, + STATE(4345), 1, sym_type_annotation, - STATE(5112), 1, + STATE(5016), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129247] = 8, - ACTIONS(6459), 1, + [129374] = 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(6888), 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, + [129404] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6870), 1, + anon_sym_GT, + ACTIONS(6890), 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, + [129434] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6865), 1, - anon_sym_BANG, - ACTIONS(6867), 1, - anon_sym_QMARK, - STATE(4412), 1, + STATE(4101), 1, sym_type_annotation, - STATE(5118), 1, + STATE(5063), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6894), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6892), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129275] = 7, - ACTIONS(6322), 1, + [129460] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6869), 1, - anon_sym_DQUOTE, - ACTIONS(6871), 1, - anon_sym_SQUOTE, - ACTIONS(6873), 1, - anon_sym_LT, - STATE(3193), 1, - sym_jsx_opening_element, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 4, - sym_jsx_element, + STATE(4421), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [129301] = 10, - ACTIONS(2537), 1, + sym_jsx_attribute, + [129490] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6900), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2194), 1, + STATE(849), 1, sym_class_body, - STATE(3632), 1, + STATE(3527), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5431), 1, + STATE(5259), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129333] = 8, - ACTIONS(6459), 1, + [129522] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + 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_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6879), 1, + ACTIONS(6908), 1, anon_sym_BANG, - ACTIONS(6881), 1, + ACTIONS(6910), 1, anon_sym_QMARK, - STATE(3951), 1, + STATE(4351), 1, sym_type_annotation, - STATE(4643), 1, + STATE(5025), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129361] = 8, - ACTIONS(6459), 1, + [129580] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6883), 1, + ACTIONS(6912), 1, anon_sym_BANG, - ACTIONS(6885), 1, + ACTIONS(6914), 1, anon_sym_QMARK, - STATE(4000), 1, + STATE(4352), 1, sym_type_annotation, - STATE(5087), 1, + STATE(5028), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129389] = 8, - ACTIONS(6887), 1, - sym_identifier, - ACTIONS(6890), 1, - anon_sym_LBRACE, - ACTIONS(6895), 1, - sym_jsx_identifier, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + [129608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129417] = 10, - ACTIONS(2537), 1, + ACTIONS(4156), 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, + [129624] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(3622), 1, - sym_type_parameters, - STATE(3984), 1, + STATE(780), 1, sym_class_body, - STATE(4841), 1, + STATE(3536), 1, + sym_type_parameters, + STATE(5174), 1, sym_extends_clause, - STATE(5519), 1, + STATE(5309), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129449] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6900), 1, - anon_sym_BANG, - ACTIONS(6902), 1, - anon_sym_QMARK, - STATE(3956), 1, - sym_type_annotation, - STATE(4782), 1, - sym__initializer, + [129656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4236), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129477] = 10, - ACTIONS(2537), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129672] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6804), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(1627), 1, + STATE(2192), 1, sym_class_body, - STATE(3630), 1, + STATE(3562), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5270), 1, + STATE(5443), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129509] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + [129704] = 3, + ACTIONS(6918), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6904), 1, - anon_sym_GT, - ACTIONS(6906), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129722] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129539] = 9, - ACTIONS(6318), 1, + ACTIONS(4162), 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, + [129738] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6904), 1, + ACTIONS(6920), 1, anon_sym_GT, - ACTIONS(6908), 1, + ACTIONS(6922), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129569] = 10, - ACTIONS(2537), 1, + [129768] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6910), 1, + ACTIONS(6924), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(228), 1, sym_class_body, - STATE(3546), 1, + STATE(3568), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5479), 1, + STATE(5369), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129601] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129627] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4173), 1, - sym_type_annotation, - STATE(4657), 1, - sym__initializer, + [129800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6914), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6912), 3, + ACTIONS(4240), 9, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129653] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6916), 1, - anon_sym_GT, - ACTIONS(6918), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129683] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - sym__automatic_semicolon, - STATE(4458), 1, - sym_type_annotation, - STATE(5225), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6830), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [129711] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 9, + ACTIONS(4384), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246865,166 +245137,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129727] = 9, - ACTIONS(6318), 1, + [129832] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6916), 1, + ACTIONS(6896), 1, anon_sym_GT, - ACTIONS(6920), 1, + ACTIONS(6926), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3364), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129757] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + [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, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6922), 1, - anon_sym_GT, - ACTIONS(6924), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129787] = 8, - ACTIONS(6459), 1, + [129894] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6926), 1, - anon_sym_BANG, ACTIONS(6928), 1, + anon_sym_BANG, + ACTIONS(6930), 1, anon_sym_QMARK, - STATE(4050), 1, + STATE(3995), 1, sym_type_annotation, - STATE(4788), 1, + STATE(5125), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129815] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6930), 1, - anon_sym_GT, + [129922] = 4, ACTIONS(6932), 1, - anon_sym_SLASH_GT, - STATE(3401), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129845] = 8, - ACTIONS(6459), 1, + STATE(3960), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6766), 5, + 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(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6934), 1, - anon_sym_BANG, ACTIONS(6936), 1, + anon_sym_BANG, + ACTIONS(6938), 1, anon_sym_QMARK, - STATE(4056), 1, + STATE(4004), 1, sym_type_annotation, - STATE(4832), 1, + STATE(4634), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129873] = 9, - ACTIONS(6318), 1, + [129998] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6938), 1, + ACTIONS(6870), 1, anon_sym_GT, ACTIONS(6940), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129903] = 5, - ACTIONS(6371), 1, - anon_sym_DOT, - ACTIONS(6690), 1, - anon_sym_LPAREN, - STATE(2900), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4041), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129925] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4075), 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, - [129941] = 2, + [130028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 9, + ACTIONS(4404), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247034,94 +245291,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129957] = 9, - ACTIONS(6318), 1, + [130044] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, ACTIONS(6942), 1, anon_sym_GT, ACTIONS(6944), 1, anon_sym_SLASH_GT, - STATE(3404), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129987] = 9, - ACTIONS(6318), 1, + [130074] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6878), 1, anon_sym_GT, - ACTIONS(6948), 1, + ACTIONS(6946), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130017] = 9, - ACTIONS(6318), 1, + [130104] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6950), 1, + ACTIONS(6846), 1, anon_sym_GT, - ACTIONS(6952), 1, + ACTIONS(6948), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130047] = 8, - ACTIONS(6459), 1, + [130134] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6954), 1, + ACTIONS(6950), 1, anon_sym_BANG, - ACTIONS(6956), 1, + ACTIONS(6952), 1, anon_sym_QMARK, - STATE(4059), 1, + STATE(3986), 1, sym_type_annotation, - STATE(4847), 1, + STATE(4940), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130075] = 2, + [130162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 9, + ACTIONS(2326), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247131,75 +245388,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130091] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6922), 1, - anon_sym_GT, - ACTIONS(6958), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130121] = 10, - ACTIONS(2537), 1, + [130178] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(3663), 1, + STATE(3603), 1, sym_type_parameters, - STATE(4035), 1, + STATE(4012), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5419), 1, + STATE(5454), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130153] = 9, - ACTIONS(6318), 1, + [130210] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6930), 1, + ACTIONS(6862), 1, anon_sym_GT, - ACTIONS(6960), 1, + ACTIONS(6954), 1, anon_sym_SLASH_GT, - STATE(3315), 1, + STATE(3309), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130183] = 2, + [130240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 9, + ACTIONS(1805), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247209,11 +245445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130199] = 2, + [130256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6962), 9, + ACTIONS(6956), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -247223,237 +245459,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [130215] = 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(4299), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130237] = 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(4347), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130259] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6970), 1, - anon_sym_BANG, - ACTIONS(6972), 1, - anon_sym_QMARK, - STATE(4191), 1, - sym_type_annotation, - STATE(4712), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6602), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130287] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2536), 1, - sym_class_body, - STATE(3545), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5535), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130319] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6974), 1, - anon_sym_BANG, - ACTIONS(6976), 1, - anon_sym_QMARK, - STATE(4080), 1, - sym_type_annotation, - STATE(4916), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130347] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6978), 1, - anon_sym_BANG, - ACTIONS(6980), 1, - anon_sym_QMARK, - STATE(4085), 1, - sym_type_annotation, - STATE(4965), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130375] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 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, - [130391] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6839), 1, + [130272] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6982), 1, - anon_sym_RBRACE, - STATE(5336), 1, - sym_export_specifier, + ACTIONS(6305), 1, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6841), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5045), 2, - sym__module_export_name, - sym_string, - [130419] = 9, - ACTIONS(6318), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130302] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6938), 1, + ACTIONS(6874), 1, anon_sym_GT, - ACTIONS(6984), 1, + ACTIONS(6960), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130449] = 9, - ACTIONS(6318), 1, + [130332] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6922), 1, + ACTIONS(6862), 1, anon_sym_GT, - ACTIONS(6986), 1, + ACTIONS(6962), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3311), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130479] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + [130362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [130505] = 3, - ACTIONS(6988), 1, + 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_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 8, + ACTIONS(4114), 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, - [130523] = 2, + [130394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 9, + ACTIONS(4178), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247463,630 +245564,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130539] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6990), 1, - anon_sym_BANG, - ACTIONS(6992), 1, - anon_sym_QMARK, - STATE(4208), 1, - sym_type_annotation, - STATE(4745), 1, - sym__initializer, + [130410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4244), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130567] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6994), 1, - anon_sym_BANG, - ACTIONS(6996), 1, - anon_sym_QMARK, - STATE(4219), 1, - sym_type_annotation, - STATE(4755), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130426] = 3, + ACTIONS(6964), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4182), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130595] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6998), 1, - anon_sym_BANG, - ACTIONS(7000), 1, - anon_sym_QMARK, - STATE(4222), 1, - sym_type_annotation, - STATE(4758), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [130444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4132), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130623] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7002), 1, - anon_sym_BANG, - ACTIONS(7004), 1, - anon_sym_QMARK, - STATE(4227), 1, - sym_type_annotation, - STATE(4769), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4186), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130651] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7006), 1, - anon_sym_BANG, - ACTIONS(7008), 1, - anon_sym_QMARK, - STATE(4232), 1, - sym_type_annotation, - STATE(4781), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4248), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130679] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6930), 1, - anon_sym_GT, - ACTIONS(7010), 1, - anon_sym_SLASH_GT, - STATE(3403), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130492] = 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, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130709] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + ACTIONS(4194), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6942), 1, - anon_sym_GT, - ACTIONS(7012), 1, - anon_sym_SLASH_GT, - STATE(3322), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [130514] = 4, + ACTIONS(6918), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130739] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + ACTIONS(4156), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4198), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6938), 1, - anon_sym_GT, - ACTIONS(7014), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + [130534] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4429), 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(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130769] = 9, - ACTIONS(6318), 1, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130560] = 3, + ACTIONS(6970), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 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, + [130578] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6942), 1, anon_sym_GT, - ACTIONS(7016), 1, + ACTIONS(6972), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130799] = 9, - ACTIONS(6318), 1, + [130608] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6950), 1, + ACTIONS(6878), 1, anon_sym_GT, - ACTIONS(7018), 1, + ACTIONS(6974), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130829] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7020), 1, - anon_sym_BANG, - ACTIONS(7022), 1, - anon_sym_QMARK, - STATE(3966), 1, - sym_type_annotation, - STATE(5141), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130857] = 9, - ACTIONS(6318), 1, + [130638] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6942), 1, + ACTIONS(6920), 1, anon_sym_GT, - ACTIONS(7024), 1, + ACTIONS(6976), 1, anon_sym_SLASH_GT, - STATE(3407), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130887] = 8, - ACTIONS(6459), 1, + [130668] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7026), 1, + ACTIONS(6978), 1, anon_sym_BANG, - ACTIONS(7028), 1, + ACTIONS(6980), 1, anon_sym_QMARK, - STATE(3969), 1, + STATE(4458), 1, sym_type_annotation, - STATE(4638), 1, + STATE(5216), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130915] = 8, - ACTIONS(6459), 1, + [130696] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7030), 1, + ACTIONS(6982), 1, anon_sym_BANG, - ACTIONS(7032), 1, + ACTIONS(6984), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(4227), 1, sym_type_annotation, - STATE(4734), 1, + STATE(4880), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130943] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2291), 1, - sym_class_body, - STATE(3662), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5429), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [130724] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 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, - [130975] = 2, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 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, - [130991] = 9, - ACTIONS(6318), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130780] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6846), 1, anon_sym_GT, - ACTIONS(7034), 1, + ACTIONS(6988), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131021] = 4, - ACTIONS(7036), 1, - anon_sym_COLON, + [130810] = 3, + ACTIONS(6918), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3975), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6806), 5, + ACTIONS(4208), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131041] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(807), 1, - sym_class_body, - STATE(3717), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5490), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [130828] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_BANG, + ACTIONS(6992), 1, + anon_sym_QMARK, + STATE(3987), 1, + sym_type_annotation, + STATE(5010), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131073] = 9, - ACTIONS(6318), 1, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130856] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6950), 1, + ACTIONS(6603), 1, anon_sym_GT, - ACTIONS(7040), 1, + ACTIONS(6605), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3299), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131103] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, + [130886] = 7, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2232), 1, - sym_class_body, - STATE(3565), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5476), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + 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, - [131135] = 8, - ACTIONS(6459), 1, + STATE(4253), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [130912] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7042), 1, + ACTIONS(7000), 1, anon_sym_BANG, - ACTIONS(7044), 1, + ACTIONS(7002), 1, anon_sym_QMARK, - STATE(4258), 1, + STATE(3934), 1, sym_type_annotation, - STATE(4826), 1, + STATE(4613), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131163] = 2, + [130940] = 5, + ACTIONS(6358), 1, + anon_sym_DOT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2893), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4054), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131179] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2214), 1, - sym_class_body, - STATE(3697), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5533), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131211] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, + [130962] = 7, + ACTIONS(6305), 1, anon_sym_LBRACE, - STATE(3707), 1, - sym_type_parameters, - STATE(4068), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5556), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131243] = 9, - ACTIONS(2291), 1, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(6996), 1, anon_sym_SQUOTE, - ACTIONS(6753), 1, - sym_identifier, - ACTIONS(6755), 1, - anon_sym_type, - ACTIONS(6761), 1, - anon_sym_typeof, - STATE(5260), 1, - sym__import_identifier, - STATE(5324), 1, - sym_import_specifier, + ACTIONS(6998), 1, + anon_sym_LT, + STATE(3182), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5894), 2, - sym__module_export_name, - sym_string, - [131273] = 8, - ACTIONS(6459), 1, + STATE(4254), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [130988] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7004), 1, anon_sym_BANG, - ACTIONS(7048), 1, + ACTIONS(7006), 1, anon_sym_QMARK, - STATE(4272), 1, + STATE(4160), 1, sym_type_annotation, - STATE(4839), 1, + STATE(4679), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131301] = 8, - ACTIONS(6459), 1, + [131016] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7050), 1, + ACTIONS(7008), 1, anon_sym_BANG, - ACTIONS(7052), 1, + ACTIONS(7010), 1, anon_sym_QMARK, - STATE(4274), 1, + STATE(3989), 1, sym_type_annotation, - STATE(4845), 1, + STATE(5031), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131329] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 9, + ACTIONS(6472), 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, - [131345] = 8, - ACTIONS(6459), 1, + [131044] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7054), 1, - anon_sym_BANG, - ACTIONS(7056), 1, - anon_sym_QMARK, - STATE(4281), 1, + STATE(4451), 1, sym_type_annotation, - STATE(4851), 1, + STATE(5212), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6555), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131373] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1719), 1, - sym_class_body, - STATE(3715), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5251), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131405] = 2, + [131070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 9, + ACTIONS(4262), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248096,102 +246070,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131421] = 7, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6828), 1, - anon_sym_EQ, - STATE(4196), 1, - sym__initializer, - STATE(4458), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6830), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131447] = 2, + [131086] = 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(4109), 9, + ACTIONS(4262), 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, - [131463] = 7, - ACTIONS(6459), 1, + [131108] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4434), 1, + ACTIONS(7012), 1, + anon_sym_BANG, + ACTIONS(7014), 1, + anon_sym_QMARK, + STATE(3974), 1, sym_type_annotation, - STATE(5178), 1, + STATE(4706), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6560), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6558), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131489] = 3, - ACTIONS(6964), 1, - anon_sym_AMP, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131166] = 7, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131192] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7020), 1, + anon_sym_BANG, + ACTIONS(7022), 1, + anon_sym_QMARK, + STATE(4286), 1, + sym_type_annotation, + STATE(4918), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 8, + ACTIONS(7018), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [131507] = 2, + [131220] = 7, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131246] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131523] = 2, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131539] = 5, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131272] = 5, ACTIONS(6964), 1, anon_sym_AMP, ACTIONS(6966), 1, @@ -248201,128 +246215,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [131561] = 4, - ACTIONS(6988), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4147), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [131581] = 3, - ACTIONS(7058), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4153), 8, + ACTIONS(4074), 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, - [131599] = 3, - ACTIONS(6988), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4159), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131617] = 10, - ACTIONS(2537), 1, + [131294] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2319), 1, + STATE(2310), 1, sym_class_body, - STATE(3620), 1, + STATE(3571), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5466), 1, + STATE(5500), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131649] = 10, - ACTIONS(2537), 1, + [131326] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(850), 1, + STATE(2324), 1, sym_class_body, - STATE(3610), 1, + STATE(3680), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5552), 1, + STATE(5453), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131681] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7060), 1, - anon_sym_BANG, - ACTIONS(7062), 1, - anon_sym_QMARK, - STATE(3989), 1, - sym_type_annotation, - STATE(4767), 1, - sym__initializer, + [131358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4028), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131709] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7064), 9, + ACTIONS(7024), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -248332,185 +246294,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [131725] = 8, - ACTIONS(6459), 1, + [131390] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7066), 1, - anon_sym_BANG, - ACTIONS(7068), 1, - anon_sym_QMARK, - STATE(4081), 1, + STATE(4166), 1, sym_type_annotation, - STATE(4821), 1, + STATE(4716), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6524), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131753] = 9, - ACTIONS(6318), 1, + [131416] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6904), 1, + ACTIONS(6846), 1, anon_sym_GT, - ACTIONS(7070), 1, + ACTIONS(7026), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131783] = 2, + [131446] = 4, + ACTIONS(6932), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 9, + STATE(4428), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6770), 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, - [131799] = 9, - ACTIONS(6318), 1, + [131466] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6904), 1, + ACTIONS(6896), 1, anon_sym_GT, - ACTIONS(7072), 1, + ACTIONS(7028), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3313), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131829] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + [131496] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4092), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6916), 1, - anon_sym_GT, - ACTIONS(7074), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + 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(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131859] = 10, - ACTIONS(2537), 1, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131540] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6910), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(261), 1, + STATE(767), 1, sym_class_body, - STATE(3616), 1, + STATE(3742), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5504), 1, + STATE(5316), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131891] = 2, + [131572] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7034), 1, + anon_sym_BANG, + ACTIONS(7036), 1, + anon_sym_QMARK, + STATE(4169), 1, + sym_type_annotation, + STATE(4709), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 9, + ACTIONS(6559), 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, - [131907] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6916), 1, - anon_sym_GT, - ACTIONS(7076), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131937] = 8, - ACTIONS(6459), 1, + [131600] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7078), 1, + ACTIONS(7038), 1, anon_sym_BANG, - ACTIONS(7080), 1, + ACTIONS(7040), 1, anon_sym_QMARK, - STATE(4172), 1, + STATE(4047), 1, sym_type_annotation, - STATE(4631), 1, + STATE(4736), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131965] = 2, + [131628] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 9, + ACTIONS(4282), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248520,51 +246481,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131981] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(7082), 1, - anon_sym_RBRACE, - STATE(5336), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6841), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5045), 2, - sym__module_export_name, - sym_string, - [132009] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7084), 1, - anon_sym_BANG, - ACTIONS(7086), 1, - anon_sym_QMARK, - STATE(4213), 1, - sym_type_annotation, - STATE(4744), 1, - sym__initializer, + [131644] = 3, + ACTIONS(6964), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(4286), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132037] = 2, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [131662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 9, + ACTIONS(4292), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248574,71 +246510,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132053] = 8, - ACTIONS(6459), 1, + [131678] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7088), 1, + ACTIONS(7042), 1, anon_sym_BANG, - ACTIONS(7090), 1, + ACTIONS(7044), 1, anon_sym_QMARK, - STATE(4249), 1, + STATE(3937), 1, sym_type_annotation, - STATE(4780), 1, + STATE(4653), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132081] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7092), 1, - anon_sym_BANG, - ACTIONS(7094), 1, - anon_sym_QMARK, - STATE(4269), 1, - sym_type_annotation, - STATE(4837), 1, - sym__initializer, + [131706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(4064), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132109] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131722] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7096), 1, + ACTIONS(7046), 1, anon_sym_BANG, - ACTIONS(7098), 1, + ACTIONS(7048), 1, anon_sym_QMARK, - STATE(4022), 1, + STATE(4430), 1, sym_type_annotation, - STATE(4660), 1, + STATE(5165), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132137] = 2, + [131750] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6900), 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(5), 2, + sym_html_comment, + sym_comment, + [131782] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6874), 1, + anon_sym_GT, + ACTIONS(7050), 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, + [131812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 9, + ACTIONS(2338), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248648,25 +246621,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132153] = 2, + [131828] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6603), 1, + anon_sym_GT, + ACTIONS(6629), 1, + anon_sym_SLASH_GT, + STATE(3341), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131858] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6752), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6902), 1, anon_sym_extends, - [132169] = 2, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2326), 1, + sym_class_body, + STATE(3710), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5305), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 9, + ACTIONS(1843), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248676,50 +246678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132185] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_BANG, - ACTIONS(7102), 1, - anon_sym_QMARK, - STATE(4437), 1, - sym_type_annotation, - STATE(5170), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132213] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4373), 1, - sym_type_annotation, - STATE(5038), 1, - sym__initializer, + [131906] = 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(6477), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6475), 3, + ACTIONS(4096), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132239] = 2, + anon_sym_LBRACK, + [131928] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 9, + ACTIONS(4376), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248729,91 +246709,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132255] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7104), 1, - anon_sym_BANG, - ACTIONS(7106), 1, - anon_sym_QMARK, - STATE(4449), 1, - sym_type_annotation, - STATE(5197), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132283] = 8, - ACTIONS(6459), 1, + [131944] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7108), 1, + ACTIONS(7052), 1, anon_sym_BANG, - ACTIONS(7110), 1, + ACTIONS(7054), 1, anon_sym_QMARK, - STATE(4459), 1, + STATE(4155), 1, sym_type_annotation, - STATE(5219), 1, + STATE(4668), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132311] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_BANG, - ACTIONS(7114), 1, - anon_sym_QMARK, - STATE(4289), 1, - sym_type_annotation, - STATE(4869), 1, - sym__initializer, + [131972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(2342), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132339] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131988] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7116), 1, + ACTIONS(7056), 1, anon_sym_BANG, - ACTIONS(7118), 1, + ACTIONS(7058), 1, anon_sym_QMARK, - STATE(3995), 1, + STATE(4418), 1, sym_type_annotation, - STATE(5022), 1, + STATE(5150), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132367] = 2, + [132016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 9, + ACTIONS(4142), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248823,128 +246777,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132383] = 2, + [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(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 9, + ACTIONS(6472), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [132060] = 6, + ACTIONS(6617), 1, anon_sym_AMP, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_extends, - [132399] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + ACTIONS(7064), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6811), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132421] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_class_body, - STATE(3596), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5351), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132453] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(3730), 1, - sym_type_parameters, - STATE(4122), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5345), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132485] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6648), 1, - anon_sym_SLASH_GT, - STATE(3464), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132515] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6650), 1, - anon_sym_SLASH_GT, - STATE(3373), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [132084] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7066), 1, + anon_sym_BANG, + ACTIONS(7068), 1, + anon_sym_QMARK, + STATE(4218), 1, + sym_type_annotation, + STATE(4797), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132545] = 2, + ACTIONS(6466), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 9, + ACTIONS(4380), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248954,26 +246849,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132561] = 3, + [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(4257), 8, + ACTIONS(4100), 6, 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, - [132579] = 2, + [132150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 9, + ACTIONS(4336), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248983,297 +246880,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132595] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6922), 1, - anon_sym_GT, - ACTIONS(7120), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + [132166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132625] = 9, - ACTIONS(6318), 1, + ACTIONS(4344), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132182] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6930), 1, - anon_sym_GT, - ACTIONS(7122), 1, + ACTIONS(6318), 1, anon_sym_SLASH_GT, - STATE(3314), 1, + ACTIONS(6603), 1, + anon_sym_GT, + STATE(3395), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [132655] = 2, + [132212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7070), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132671] = 8, - ACTIONS(6459), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132228] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7072), 1, anon_sym_BANG, - ACTIONS(7126), 1, + ACTIONS(7074), 1, anon_sym_QMARK, - STATE(4031), 1, + STATE(4150), 1, sym_type_annotation, - STATE(4654), 1, + STATE(4661), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132699] = 2, + [132256] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7076), 1, + anon_sym_BANG, + ACTIONS(7078), 1, + anon_sym_QMARK, + STATE(3935), 1, + sym_type_annotation, + STATE(4632), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2347), 9, + ACTIONS(6466), 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, - [132715] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6339), 1, - anon_sym_SLASH_GT, - ACTIONS(6646), 1, - anon_sym_GT, - STATE(3363), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132745] = 8, - ACTIONS(6459), 1, + [132284] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7128), 1, + ACTIONS(7080), 1, anon_sym_BANG, - ACTIONS(7130), 1, + ACTIONS(7082), 1, anon_sym_QMARK, - STATE(4046), 1, + STATE(3984), 1, sym_type_annotation, - STATE(4784), 1, + STATE(4865), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132773] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [132312] = 7, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7132), 1, - anon_sym_BANG, - ACTIONS(7134), 1, - anon_sym_QMARK, - STATE(4051), 1, - sym_type_annotation, - STATE(4823), 1, + ACTIONS(6772), 1, + anon_sym_EQ, + STATE(4127), 1, sym__initializer, + STATE(4264), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6774), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132801] = 9, - ACTIONS(6318), 1, + [132338] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6938), 1, + ACTIONS(6942), 1, anon_sym_GT, - ACTIONS(7136), 1, + ACTIONS(7084), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [132831] = 8, - ACTIONS(6459), 1, + [132368] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7138), 1, + ACTIONS(7086), 1, anon_sym_BANG, - ACTIONS(7140), 1, + ACTIONS(7088), 1, anon_sym_QMARK, - STATE(3941), 1, + STATE(4066), 1, sym_type_annotation, - STATE(5147), 1, + STATE(4888), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132859] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2100), 1, - sym_class_body, - STATE(3537), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5459), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [132396] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + anon_sym_BANG, + ACTIONS(7092), 1, + anon_sym_QMARK, + STATE(4072), 1, + sym_type_annotation, + STATE(4945), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132891] = 7, - ACTIONS(6459), 1, + ACTIONS(6466), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132424] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4220), 1, + STATE(4325), 1, sym_type_annotation, - STATE(4779), 1, + STATE(4987), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6463), 2, + ACTIONS(6492), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6461), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132917] = 9, - ACTIONS(6318), 1, + [132450] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6942), 1, + ACTIONS(6870), 1, anon_sym_GT, - ACTIONS(7142), 1, + ACTIONS(7094), 1, anon_sym_SLASH_GT, - STATE(3319), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [132947] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_class_body, - STATE(3734), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5521), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132979] = 2, + [132480] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7096), 1, + anon_sym_BANG, + ACTIONS(7098), 1, + anon_sym_QMARK, + STATE(4322), 1, + sym_type_annotation, + STATE(4974), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7144), 9, - anon_sym_EQ, + ACTIONS(7018), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [132995] = 5, + anon_sym_SEMI, + [132508] = 5, ACTIONS(6964), 1, anon_sym_AMP, ACTIONS(6966), 1, @@ -249283,18 +247139,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 6, + ACTIONS(4348), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133017] = 2, + [132530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 9, + ACTIONS(4352), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249304,49 +247160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133033] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133059] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133085] = 2, + [132546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 9, + ACTIONS(4356), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249356,11 +247174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133101] = 2, + [132562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 9, + ACTIONS(4032), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249370,7 +247188,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133117] = 5, + [132578] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7100), 1, + anon_sym_BANG, + ACTIONS(7102), 1, + anon_sym_QMARK, + STATE(4422), 1, + sym_type_annotation, + STATE(5152), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132606] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7104), 1, + anon_sym_BANG, + ACTIONS(7106), 1, + anon_sym_QMARK, + STATE(4405), 1, + sym_type_annotation, + STATE(4862), 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, @@ -249380,18 +247238,40 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 6, + ACTIONS(4356), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133139] = 2, + [132656] = 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(2350), 1, + sym_class_body, + STATE(3588), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5568), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 9, + ACTIONS(4190), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249401,11 +247281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133155] = 2, + [132704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 9, + ACTIONS(4124), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249415,28 +247295,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133171] = 5, - ACTIONS(6964), 1, + [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, - ACTIONS(6966), 1, anon_sym_PIPE, - ACTIONS(6968), 1, 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(4335), 6, + ACTIONS(6559), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132764] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7112), 1, + anon_sym_BANG, + ACTIONS(7114), 1, + anon_sym_QMARK, + STATE(4459), 1, + sym_type_annotation, + STATE(5204), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6466), 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, 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(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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6466), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [133193] = 2, + [132852] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7120), 1, + anon_sym_BANG, + ACTIONS(7122), 1, + anon_sym_QMARK, + STATE(4112), 1, + sym_type_annotation, + STATE(5176), 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(4265), 9, + ACTIONS(4212), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249446,109 +247425,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133209] = 7, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + [132896] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(7146), 1, - anon_sym_DOT, - STATE(1231), 1, - sym_arguments, - STATE(5549), 1, - sym_type_arguments, + 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, - ACTIONS(3533), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [133235] = 9, - ACTIONS(6318), 1, + [132928] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6920), 1, anon_sym_GT, - ACTIONS(7148), 1, + ACTIONS(7124), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [133265] = 9, - ACTIONS(6318), 1, + [132958] = 9, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6950), 1, - anon_sym_GT, - ACTIONS(7150), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + ACTIONS(6742), 1, + anon_sym_type, + ACTIONS(6748), 1, + anon_sym_typeof, + STATE(5428), 1, + sym__import_identifier, + STATE(5458), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [133295] = 9, - ACTIONS(6318), 1, + 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(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6335), 1, - anon_sym_SLASH_GT, - ACTIONS(6646), 1, - anon_sym_GT, - STATE(3333), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + ACTIONS(7126), 1, + anon_sym_RBRACE, + STATE(5553), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [133325] = 4, - ACTIONS(7036), 1, - anon_sym_COLON, + ACTIONS(6805), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5027), 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, - STATE(4454), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6796), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [133048] = 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, - anon_sym_COMMA, - anon_sym_SEMI, - [133345] = 2, + STATE(3647), 1, + sym_type_parameters, + STATE(4036), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5513), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 9, + ACTIONS(4146), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249558,124 +247567,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133361] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7152), 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, - [133377] = 6, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, + [133096] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(7154), 1, - anon_sym_EQ, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6808), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [133401] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [133128] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(1694), 1, + sym_class_body, + STATE(3528), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5348), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, + [133160] = 7, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133427] = 2, + STATE(4235), 1, + sym_type_annotation, + STATE(4837), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 9, + ACTIONS(6532), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6530), 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, - [133443] = 2, + [133186] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6827), 1, + sym__automatic_semicolon, + STATE(4264), 1, + sym_type_annotation, + STATE(4886), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6774), 2, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133459] = 2, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [133214] = 8, + ACTIONS(7128), 1, + sym_identifier, + ACTIONS(7131), 1, + anon_sym_LBRACE, + ACTIONS(7136), 1, + sym_jsx_identifier, + 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, - ACTIONS(4367), 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, - [133475] = 8, - ACTIONS(6459), 1, + ACTIONS(7134), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133242] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7156), 1, + ACTIONS(7139), 1, anon_sym_BANG, - ACTIONS(7158), 1, + ACTIONS(7141), 1, anon_sym_QMARK, - STATE(4378), 1, + STATE(4447), 1, sym_type_annotation, - STATE(5042), 1, + STATE(5202), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6851), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133503] = 2, + [133270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2351), 9, + ACTIONS(2334), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249685,11 +247704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133519] = 2, + [133286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7160), 9, + ACTIONS(7143), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -249699,450 +247718,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [133535] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4442), 1, - sym_type_annotation, - STATE(5185), 1, - sym__initializer, + [133302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6544), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6542), 3, + ACTIONS(4024), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133561] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133587] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133318] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7162), 1, + ACTIONS(7145), 1, anon_sym_BANG, - ACTIONS(7164), 1, + ACTIONS(7147), 1, anon_sym_QMARK, - STATE(3949), 1, + STATE(4180), 1, sym_type_annotation, - STATE(5043), 1, + STATE(4660), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133615] = 7, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6869), 1, - anon_sym_DQUOTE, - ACTIONS(6871), 1, - anon_sym_SQUOTE, - ACTIONS(6873), 1, + [133346] = 10, + ACTIONS(2478), 1, anon_sym_LT, - STATE(3193), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4324), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [133641] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4105), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6784), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6902), 1, anon_sym_extends, - [133657] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2534), 1, + sym_class_body, + STATE(3614), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5551), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4318), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133680] = 6, - ACTIONS(6467), 1, + [133378] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4438), 4, + STATE(4153), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133703] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7174), 1, - anon_sym_BQUOTE, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133728] = 4, - ACTIONS(4514), 1, + [133401] = 4, + ACTIONS(4535), 1, anon_sym_LPAREN, - STATE(2293), 1, + STATE(2088), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 6, + ACTIONS(4224), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133747] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3173), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133762] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7180), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133787] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6832), 1, - anon_sym_BANG, - STATE(4458), 1, - sym_type_annotation, - STATE(5215), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6830), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133812] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7182), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133833] = 9, - ACTIONS(7184), 1, + [133420] = 9, + ACTIONS(7155), 1, sym_identifier, - ACTIONS(7186), 1, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(7188), 1, + ACTIONS(7159), 1, anon_sym_GT, - ACTIONS(7190), 1, + ACTIONS(7161), 1, sym_jsx_identifier, - ACTIONS(7192), 1, + ACTIONS(7163), 1, anon_sym_SLASH_GT, - STATE(3122), 1, + STATE(3139), 1, sym_nested_identifier, - STATE(3441), 1, + STATE(3307), 1, sym_jsx_namespace_name, - STATE(4742), 1, + STATE(4801), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133862] = 7, - ACTIONS(2291), 1, + [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, + 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, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2972), 1, anon_sym_SQUOTE, - ACTIONS(6839), 1, + ACTIONS(6803), 1, sym_identifier, - STATE(5336), 1, + STATE(5553), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6841), 2, + ACTIONS(6805), 2, anon_sym_type, anon_sym_typeof, - STATE(5045), 2, + STATE(5027), 2, sym__module_export_name, sym_string, - [133887] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7194), 1, - anon_sym_BQUOTE, + [133499] = 7, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_BANG, + STATE(4264), 1, + sym_type_annotation, + STATE(4878), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133912] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7196), 1, - anon_sym_BQUOTE, + ACTIONS(6774), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133937] = 5, - ACTIONS(6717), 1, + ACTIONS(1805), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6719), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + anon_sym_extends, + [133539] = 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(7198), 5, + ACTIONS(6811), 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, - [133958] = 9, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(7188), 1, - anon_sym_GT, - ACTIONS(7200), 1, + [133560] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1843), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133575] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7167), 1, sym_identifier, - ACTIONS(7202), 1, - sym_jsx_identifier, - ACTIONS(7204), 1, - anon_sym_SLASH_GT, - STATE(3181), 1, - sym_nested_identifier, - STATE(3465), 1, - sym_jsx_namespace_name, - STATE(4742), 1, - sym_type_parameter, + ACTIONS(7169), 1, + sym_this, + STATE(2883), 1, + sym__type_query_subscript_expression, + STATE(2887), 1, + sym__type_query_member_expression, + STATE(3099), 1, + sym__type_query_call_expression, + STATE(3239), 1, + sym__type_query_instantiation_expression, + STATE(4495), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133987] = 7, - ACTIONS(7172), 1, + [133604] = 7, + ACTIONS(7171), 1, sym_escape_sequence, - ACTIONS(7176), 1, + ACTIONS(7173), 1, + anon_sym_BQUOTE, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, + ACTIONS(7177), 1, sym__template_chars, - ACTIONS(7206), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3889), 2, + STATE(3819), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4136), 2, + STATE(4374), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134012] = 5, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7210), 1, - anon_sym_DOT, - STATE(4411), 1, - sym_statement_block, + [133629] = 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, - ACTIONS(1672), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134033] = 9, - ACTIONS(1504), 1, + STATE(4454), 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(7212), 1, + ACTIONS(7179), 1, sym_identifier, - ACTIONS(7214), 1, + ACTIONS(7181), 1, sym_this, - STATE(2876), 1, - sym__type_query_member_expression, - STATE(2890), 1, + STATE(2830), 1, sym__type_query_subscript_expression, - STATE(3066), 1, + STATE(2831), 1, + sym__type_query_member_expression, + STATE(2879), 1, sym__type_query_call_expression, - STATE(3195), 1, + STATE(2972), 1, sym__type_query_instantiation_expression, - STATE(4483), 1, + STATE(4468), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134062] = 3, - ACTIONS(6751), 1, - anon_sym_is, + [133681] = 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, - ACTIONS(4037), 7, - anon_sym_COMMA, + STATE(4091), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133704] = 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(4092), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133727] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3188), 8, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [134079] = 9, - ACTIONS(1504), 1, + [133742] = 9, + ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7216), 1, + ACTIONS(7183), 1, sym_identifier, - ACTIONS(7218), 1, + ACTIONS(7185), 1, sym_this, - STATE(2883), 1, - sym__type_query_call_expression, - STATE(2977), 1, - sym__type_query_instantiation_expression, - STATE(3150), 1, + STATE(1463), 1, sym__type_query_member_expression, - STATE(3157), 1, + STATE(1468), 1, sym__type_query_subscript_expression, - STATE(4523), 1, + 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, - [134108] = 7, - ACTIONS(3381), 1, - sym_identifier, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7220), 1, - anon_sym_enum, - STATE(4470), 1, - sym_variable_declarator, + [133771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134133] = 2, + ACTIONS(3184), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3169), 8, + ACTIONS(3164), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -250151,100 +248090,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134148] = 6, - ACTIONS(6467), 1, + [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, + 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(4274), 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(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4170), 4, + STATE(4311), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134171] = 9, - ACTIONS(1504), 1, + [133897] = 9, + ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7222), 1, + ACTIONS(7191), 1, sym_identifier, - ACTIONS(7224), 1, + ACTIONS(7193), 1, sym_this, - STATE(1469), 1, + STATE(2947), 1, sym__type_query_member_expression, - STATE(1470), 1, + STATE(2948), 1, sym__type_query_subscript_expression, - STATE(1498), 1, + STATE(3212), 1, sym__type_query_call_expression, - STATE(1499), 1, + STATE(3351), 1, sym__type_query_instantiation_expression, - STATE(4601), 1, + STATE(4519), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134200] = 5, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym_DOT, - STATE(4411), 1, - sym_statement_block, + [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, - ACTIONS(1672), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134221] = 7, - ACTIONS(3381), 1, + 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(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_enum, - STATE(4495), 1, - sym_variable_declarator, + 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, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134246] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + [133980] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7181), 1, + sym_this, + ACTIONS(7203), 1, + sym_identifier, + STATE(2879), 1, + sym__type_query_call_expression, + STATE(2972), 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, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6808), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [134009] = 5, + ACTIONS(7205), 1, anon_sym_LBRACE, + ACTIONS(7207), 1, + anon_sym_DOT, + STATE(4392), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1653), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134267] = 3, - ACTIONS(6751), 1, + anon_sym_PIPE_RBRACE, + [134030] = 3, + ACTIONS(6720), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 7, + ACTIONS(4024), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -250252,26 +248268,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134284] = 2, + [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(3177), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134299] = 3, - ACTIONS(7230), 1, + ACTIONS(1653), 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(4029), 7, + ACTIONS(4032), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -250279,301 +248298,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134316] = 7, - ACTIONS(7176), 1, + [134085] = 7, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, + ACTIONS(7177), 1, sym__template_chars, - ACTIONS(7232), 1, + ACTIONS(7213), 1, sym_escape_sequence, - ACTIONS(7234), 1, + ACTIONS(7215), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3844), 2, + STATE(3812), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3947), 2, + STATE(4374), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134341] = 9, - ACTIONS(1504), 1, - anon_sym_import, - ACTIONS(7218), 1, - sym_this, - ACTIONS(7236), 1, - sym_identifier, - STATE(2834), 1, - sym__type_query_subscript_expression, - STATE(2835), 1, - sym__type_query_member_expression, - STATE(2883), 1, - sym__type_query_call_expression, - STATE(2977), 1, - sym__type_query_instantiation_expression, - STATE(4539), 1, - sym_import, + [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, - [134370] = 9, - ACTIONS(1504), 1, - anon_sym_import, - ACTIONS(7238), 1, + 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(7240), 1, - sym_this, - STATE(1730), 1, - sym__type_query_subscript_expression, - STATE(1737), 1, - sym__type_query_member_expression, - STATE(1923), 1, - sym__type_query_call_expression, - STATE(1926), 1, - sym__type_query_instantiation_expression, - STATE(4588), 1, - sym_import, + 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, - [134399] = 7, - ACTIONS(7176), 1, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134185] = 7, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, + ACTIONS(7177), 1, sym__template_chars, - ACTIONS(7232), 1, + ACTIONS(7213), 1, sym_escape_sequence, - ACTIONS(7242), 1, + ACTIONS(7223), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3844), 2, + STATE(3812), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134424] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134210] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7225), 1, + sym_identifier, + ACTIONS(7227), 1, + sym_this, + STATE(1746), 1, + sym__type_query_member_expression, + STATE(1747), 1, + sym__type_query_subscript_expression, + STATE(1879), 1, + sym__type_query_call_expression, + STATE(1880), 1, + sym__type_query_instantiation_expression, + STATE(4481), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4430), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134447] = 3, + [134239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 2, + ACTIONS(1701), 2, anon_sym_while, sym_identifier, - ACTIONS(1869), 6, + ACTIONS(1699), 6, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_DOT, anon_sym_SLASH_GT, anon_sym_LT, - [134464] = 3, + [134256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1793), 2, anon_sym_while, sym_identifier, - ACTIONS(1873), 6, + ACTIONS(1791), 6, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_DOT, anon_sym_SLASH_GT, anon_sym_LT, - [134481] = 9, - ACTIONS(1504), 1, - anon_sym_import, - ACTIONS(7244), 1, - sym_identifier, - ACTIONS(7246), 1, - sym_this, - STATE(2984), 1, - sym__type_query_member_expression, - STATE(2985), 1, - sym__type_query_subscript_expression, - STATE(3233), 1, - sym__type_query_call_expression, - STATE(3385), 1, - sym__type_query_instantiation_expression, - STATE(4502), 1, - sym_import, + [134273] = 3, + ACTIONS(6720), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134510] = 5, - ACTIONS(6717), 1, + ACTIONS(4028), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6719), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7248), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134531] = 6, - ACTIONS(6467), 1, + [134290] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4370), 4, + STATE(4159), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134554] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7250), 1, - anon_sym_BQUOTE, + [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, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134579] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + 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, - STATE(4432), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134602] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + 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, + anon_sym_PIPE, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4433), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134625] = 6, - ACTIONS(6467), 1, + ACTIONS(7233), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134376] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4317), 4, + STATE(4168), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134648] = 6, - ACTIONS(6467), 1, + [134399] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4169), 4, + STATE(4273), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134671] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7252), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134689] = 6, - ACTIONS(6459), 1, + [134422] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4341), 1, + STATE(4275), 1, sym_type_annotation, - STATE(4962), 1, + STATE(4893), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7235), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134711] = 2, + [134444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 7, + ACTIONS(5224), 7, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -250581,1716 +248577,1480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [134725] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [134458] = 7, + ACTIONS(3530), 1, anon_sym_COLON, - STATE(4407), 1, - sym_type_annotation, - STATE(5104), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7254), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134747] = 6, - ACTIONS(6459), 1, + ACTIONS(7237), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4345), 1, + ACTIONS(7241), 1, + anon_sym_QMARK, + STATE(4540), 1, sym_type_annotation, - STATE(4969), 1, + STATE(5318), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, - sym__automatic_semicolon, + ACTIONS(7239), 2, anon_sym_COMMA, - anon_sym_SEMI, - [134769] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4171), 1, - sym_type_annotation, - STATE(4653), 1, - sym__initializer, + anon_sym_RPAREN, + [134482] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5505), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134791] = 6, - ACTIONS(3383), 1, + anon_sym_PIPE_RBRACE, + [134500] = 6, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(7256), 1, + ACTIONS(7245), 1, sym_identifier, - STATE(4471), 1, + STATE(4476), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, + STATE(3433), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [134813] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7258), 7, - sym__automatic_semicolon, + [134522] = 6, + ACTIONS(3378), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [134827] = 6, - ACTIONS(6320), 1, - anon_sym_EQ, - STATE(4504), 1, - sym_constraint, - STATE(5379), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7260), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7262), 2, - anon_sym_COLON, - anon_sym_extends, - [134849] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4179), 1, - sym_type_annotation, - STATE(4674), 1, - sym__initializer, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7247), 1, + sym_identifier, + STATE(4496), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134871] = 8, - ACTIONS(6769), 1, + STATE(3467), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134544] = 8, + ACTIONS(6900), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2187), 1, + STATE(877), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5517), 1, + STATE(5493), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134897] = 8, - ACTIONS(6769), 1, + [134570] = 8, + ACTIONS(6784), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2329), 1, + STATE(1711), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5303), 1, + STATE(5525), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134923] = 2, + [134596] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5386), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 7, + ACTIONS(7249), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [134937] = 6, - ACTIONS(6459), 1, + [134614] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4344), 1, + STATE(4184), 1, sym_type_annotation, - STATE(4968), 1, + STATE(4757), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134959] = 5, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(7266), 1, - sym_identifier, - ACTIONS(7268), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7270), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [134979] = 6, - ACTIONS(6459), 1, + [134636] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3958), 1, + STATE(4423), 1, sym_type_annotation, - STATE(4835), 1, + STATE(5154), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135001] = 6, - ACTIONS(6459), 1, + [134658] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4408), 1, + STATE(4191), 1, sym_type_annotation, - STATE(5106), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135023] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4093), 1, - sym_type_annotation, - STATE(5015), 1, - sym__initializer, + [134680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7251), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135045] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4495), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [135067] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2482), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5273), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135093] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(246), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5548), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135119] = 6, - ACTIONS(6459), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [134694] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4414), 1, + STATE(4164), 1, sym_type_annotation, - STATE(5127), 1, + STATE(4689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135141] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7272), 1, - sym_identifier, - ACTIONS(7274), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5513), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135167] = 6, - ACTIONS(6459), 1, + [134716] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4095), 1, + STATE(4192), 1, sym_type_annotation, - STATE(5029), 1, + STATE(4773), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135189] = 4, - ACTIONS(2445), 1, + [134738] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(5537), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7276), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135207] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7064), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [135221] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7278), 1, - anon_sym_DOT, - STATE(1794), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + 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(5), 2, sym_html_comment, sym_comment, - [135247] = 6, - ACTIONS(6459), 1, + [134764] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4415), 1, + STATE(3975), 1, sym_type_annotation, - STATE(5129), 1, + STATE(4770), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135269] = 7, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_EQ, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4516), 1, - sym_type_annotation, - STATE(5394), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7282), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [135293] = 6, - ACTIONS(6459), 1, + [134786] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3963), 1, + STATE(4206), 1, sym_type_annotation, - STATE(4863), 1, + STATE(4790), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135315] = 6, - ACTIONS(6459), 1, + [134808] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3964), 1, + STATE(4207), 1, sym_type_annotation, - STATE(4928), 1, + STATE(4792), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135337] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1873), 7, + ACTIONS(6673), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135351] = 6, - ACTIONS(6459), 1, + [134830] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4007), 1, + STATE(4425), 1, sym_type_annotation, - STATE(5142), 1, + STATE(5157), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135373] = 8, - ACTIONS(2537), 1, + [134852] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7286), 1, - anon_sym_COLON, - ACTIONS(7288), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7253), 1, + sym_identifier, + ACTIONS(7255), 1, + anon_sym_STAR, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5455), 1, + STATE(5495), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135399] = 6, - ACTIONS(6459), 1, + [134878] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4188), 1, + STATE(4408), 1, sym_type_annotation, - STATE(4704), 1, + STATE(5135), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135421] = 6, - ACTIONS(6459), 1, + [134900] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4013), 1, + STATE(4213), 1, sym_type_annotation, - STATE(4628), 1, + STATE(4806), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135443] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4189), 1, - sym_type_annotation, - STATE(4707), 1, - sym__initializer, + [134922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(7257), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135465] = 6, - ACTIONS(6459), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [134936] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4374), 1, + STATE(4216), 1, sym_type_annotation, - STATE(5027), 1, + STATE(4810), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135487] = 6, - ACTIONS(6459), 1, + [134958] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4192), 1, + STATE(4433), 1, sym_type_annotation, - STATE(4714), 1, + STATE(5169), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135509] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2286), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5540), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135535] = 6, - ACTIONS(6459), 1, + [134980] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4193), 1, + STATE(4220), 1, sym_type_annotation, - STATE(4717), 1, + STATE(4816), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135557] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7290), 1, - anon_sym_DOT, - STATE(1794), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135583] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5575), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7292), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135601] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7294), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5441), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135627] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5579), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7298), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135645] = 6, - ACTIONS(6459), 1, + [135002] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4197), 1, + STATE(4224), 1, sym_type_annotation, - STATE(4722), 1, + STATE(4820), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135667] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5356), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7298), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135685] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5364), 1, - sym_statement_block, + [135024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 5, + ACTIONS(4960), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135703] = 6, - ACTIONS(6459), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [135038] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4198), 1, + STATE(4173), 1, sym_type_annotation, - STATE(4725), 1, + STATE(4730), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6696), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135725] = 6, - ACTIONS(6459), 1, + [135060] = 6, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4199), 1, - sym_type_annotation, - STATE(4729), 1, - sym__initializer, + STATE(4533), 1, + sym_constraint, + STATE(5485), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, + ACTIONS(7259), 2, anon_sym_COMMA, - anon_sym_SEMI, - [135747] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_GT, + ACTIONS(7261), 2, anon_sym_COLON, - STATE(4201), 1, - sym_type_annotation, - STATE(4733), 1, - sym__initializer, + 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(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135769] = 6, - ACTIONS(6459), 1, + 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(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4211), 1, + STATE(4225), 1, sym_type_annotation, - STATE(4752), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135791] = 6, - ACTIONS(6459), 1, + [135124] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4212), 1, + STATE(4226), 1, sym_type_annotation, - STATE(4753), 1, + STATE(4827), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135813] = 8, - ACTIONS(4425), 1, + [135146] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7300), 1, + ACTIONS(4539), 1, anon_sym_DOT, - STATE(1979), 1, + STATE(2240), 1, sym_arguments, - STATE(5525), 1, + STATE(5288), 1, sym_optional_chain, - STATE(5532), 1, + STATE(5366), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135839] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4223), 1, - sym_type_annotation, - STATE(4761), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135861] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4224), 1, - sym_type_annotation, - STATE(4763), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135883] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4228), 1, - sym_type_annotation, - STATE(4770), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135905] = 6, - ACTIONS(6459), 1, + [135172] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4229), 1, + STATE(3929), 1, sym_type_annotation, - STATE(4771), 1, + STATE(4860), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135927] = 6, - ACTIONS(6459), 1, + [135194] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4230), 1, + STATE(4238), 1, sym_type_annotation, - STATE(4773), 1, + STATE(4840), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135949] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [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, - STATE(4231), 1, - sym_type_annotation, - STATE(4774), 1, - sym__initializer, + 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(6674), 3, - sym__automatic_semicolon, + ACTIONS(4074), 4, anon_sym_COMMA, - anon_sym_SEMI, - [135971] = 6, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135254] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4233), 1, + STATE(4239), 1, sym_type_annotation, - STATE(4783), 1, + STATE(4842), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135993] = 6, - ACTIONS(6459), 1, + [135276] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4236), 1, + STATE(4243), 1, sym_type_annotation, - STATE(4785), 1, + STATE(4846), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136015] = 6, - ACTIONS(6459), 1, + [135298] = 8, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2277), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5285), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135324] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4237), 1, + STATE(4245), 1, sym_type_annotation, - STATE(4787), 1, + STATE(4850), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136037] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [135346] = 4, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4467), 1, + STATE(4061), 1, sym_type_annotation, - STATE(4790), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(7277), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136059] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [135364] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4245), 1, + STATE(4248), 1, sym_type_annotation, - STATE(4800), 1, + STATE(4858), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136081] = 6, - ACTIONS(6459), 1, + [135386] = 6, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3992), 1, - sym_type_annotation, - STATE(4936), 1, - sym__initializer, + STATE(4554), 1, + sym_constraint, + STATE(5514), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, + ACTIONS(6307), 2, anon_sym_COMMA, - anon_sym_SEMI, - [136103] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(6306), 1, + anon_sym_GT, + ACTIONS(7261), 2, + anon_sym_COLON, + anon_sym_extends, + [135408] = 6, + ACTIONS(3521), 1, anon_sym_LT, - STATE(2460), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2147), 1, sym_arguments, - STATE(3485), 1, + STATE(5572), 1, sym_type_arguments, - STATE(5525), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136129] = 4, - ACTIONS(6467), 1, + ACTIONS(7279), 3, + anon_sym_LBRACK, + 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(5), 2, + sym_html_comment, + sym_comment, + [135456] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4134), 1, + STATE(4165), 1, sym_type_annotation, + STATE(4696), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136147] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7304), 1, - sym_identifier, - STATE(4544), 1, - sym_variable_declarator, + [135478] = 5, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5665), 1, + anon_sym_RBRACE, + STATE(5136), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3386), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136169] = 6, - ACTIONS(3383), 1, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [135498] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4470), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136191] = 8, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(760), 1, + STATE(2320), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5437), 1, + STATE(5538), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136217] = 2, + [135524] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4372), 1, + sym_type_annotation, + STATE(5068), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7152), 7, + ACTIONS(7281), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136231] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5349), 1, - sym_statement_block, + [135546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(1699), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [136249] = 2, + [135560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7144), 7, + ACTIONS(1791), 7, sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136263] = 4, - ACTIONS(2445), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [135574] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5367), 1, + STATE(5360), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136281] = 6, - ACTIONS(6459), 1, + [135592] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7285), 7, + 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, + 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(5), 2, + sym_html_comment, + sym_comment, + [135632] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4253), 1, + STATE(3927), 1, sym_type_annotation, - STATE(4814), 1, + STATE(5196), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136303] = 4, - ACTIONS(2445), 1, + [135654] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5388), 1, + STATE(5491), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 5, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136321] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7278), 1, - anon_sym_DOT, - STATE(1588), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136347] = 6, - ACTIONS(6459), 1, + [135672] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4255), 1, + STATE(3930), 1, sym_type_annotation, - STATE(4819), 1, + STATE(5155), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136369] = 6, - ACTIONS(6459), 1, + [135694] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4462), 1, + STATE(4373), 1, sym_type_annotation, - STATE(5223), 1, + STATE(5070), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7281), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136391] = 2, + [135716] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(7287), 1, + anon_sym_DOT, + STATE(1834), 1, + sym_arguments, + STATE(5404), 1, + sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136405] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5538), 1, - sym__call_signature, + [135742] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5411), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136431] = 6, - ACTIONS(6459), 1, + ACTIONS(7289), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135760] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4319), 1, + STATE(4436), 1, sym_type_annotation, - STATE(4911), 1, + STATE(5173), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7312), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136453] = 6, - ACTIONS(6459), 1, + [135782] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4256), 1, + STATE(4404), 1, sym_type_annotation, - STATE(4820), 1, + STATE(5114), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136475] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(880), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5233), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [135804] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4946), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136501] = 8, - ACTIONS(6769), 1, + [135844] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2096), 1, + STATE(2065), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5416), 1, + STATE(5280), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136527] = 6, - ACTIONS(6320), 1, + [135870] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4607), 1, - sym_constraint, - STATE(5290), 1, - sym_default_type, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4406), 1, + sym_type_annotation, + STATE(4795), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6324), 2, + ACTIONS(6671), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7262), 2, + anon_sym_SEMI, + [135892] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_extends, - [136549] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(1797), 1, - sym_arguments, - STATE(3138), 1, - sym_type_arguments, - STATE(5376), 1, - sym_optional_chain, + STATE(4438), 1, + sym_type_annotation, + STATE(5182), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136575] = 6, - ACTIONS(6459), 1, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135914] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4240), 1, + STATE(4068), 1, sym_type_annotation, - STATE(5230), 1, + STATE(4941), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136597] = 6, - ACTIONS(6459), 1, + [135936] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3934), 1, + STATE(4439), 1, sym_type_annotation, - STATE(5034), 1, + STATE(5185), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136619] = 8, - ACTIONS(6875), 1, + [135958] = 8, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(239), 1, + STATE(2085), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5391), 1, + STATE(5488), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136645] = 6, - ACTIONS(6459), 1, + [135984] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6956), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4259), 1, + [135998] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7291), 1, + sym_identifier, + ACTIONS(7293), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5494), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136024] = 3, + ACTIONS(7295), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136040] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4093), 1, sym_type_annotation, - STATE(4828), 1, + STATE(5044), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6669), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136062] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4933), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [136667] = 6, - ACTIONS(6459), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [136076] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4267), 1, + STATE(3938), 1, sym_type_annotation, - STATE(4833), 1, + STATE(4813), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136689] = 6, - ACTIONS(6459), 1, + [136098] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4347), 1, + STATE(4082), 1, sym_type_annotation, - STATE(4976), 1, + STATE(4979), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136711] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2326), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5528), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [136120] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4103), 1, + sym_type_annotation, + STATE(5053), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136737] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1710), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5543), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136142] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3990), 1, + sym_type_annotation, + STATE(5040), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136763] = 8, - ACTIONS(6875), 1, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136164] = 8, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(4066), 1, + STATE(4086), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5546), 1, + STATE(5224), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136789] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6753), 1, - sym_identifier, - ACTIONS(6812), 1, - anon_sym_type, - STATE(5410), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5599), 2, - sym__module_export_name, - sym_string, - [136813] = 3, - ACTIONS(6794), 1, - anon_sym_is, + [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(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136829] = 4, - ACTIONS(4822), 1, + ACTIONS(6663), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3658), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_SEMI, + [136212] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3939), 1, + sym_type_annotation, + STATE(4877), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7314), 5, - anon_sym_RBRACE, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + [136234] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_RBRACK, - [136847] = 3, - ACTIONS(7316), 1, - anon_sym_is, + STATE(4171), 1, + sym_type_annotation, + STATE(4712), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136863] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4544), 1, - sym_variable_declarator, + ACTIONS(6673), 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, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136885] = 6, - ACTIONS(6459), 1, + [136282] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4278), 1, + STATE(3973), 1, sym_type_annotation, - STATE(4848), 1, + STATE(4644), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136907] = 6, - ACTIONS(6459), 1, + [136304] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4279), 1, + STATE(3983), 1, sym_type_annotation, - STATE(4849), 1, + STATE(4818), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136929] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1715), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5244), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136955] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4891), 7, + ACTIONS(6671), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + [136348] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - [136969] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2303), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5242), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + STATE(3988), 1, + sym_type_annotation, + STATE(4938), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136995] = 6, - ACTIONS(6459), 1, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136370] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 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(5), 2, + sym_html_comment, + sym_comment, + [136396] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4190), 1, + STATE(4104), 1, sym_type_annotation, - STATE(4711), 1, + STATE(5120), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137017] = 8, - ACTIONS(6804), 1, + [136418] = 8, + ACTIONS(6784), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(1703), 1, + STATE(2479), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5433), 1, + STATE(5308), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137043] = 6, - ACTIONS(6459), 1, + [136444] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4282), 1, + STATE(3940), 1, sym_type_annotation, - STATE(4853), 1, + STATE(5142), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137065] = 2, + [136466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7160), 7, + ACTIONS(7070), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -252298,1442 +250058,1625 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [137079] = 2, + [136480] = 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(2366), 1, + sym_arguments, + STATE(3476), 1, + sym_type_arguments, + STATE(5288), 1, + sym_optional_chain, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4887), 7, + ACTIONS(6663), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [137093] = 6, - ACTIONS(6459), 1, + [136528] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3943), 1, + STATE(4010), 1, sym_type_annotation, - STATE(4697), 1, + STATE(4664), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137115] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7318), 1, - sym_identifier, - ACTIONS(7320), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137141] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7288), 1, - anon_sym_QMARK, - ACTIONS(7322), 1, + ACTIONS(6673), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136572] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5455), 1, - sym__call_signature, + STATE(4172), 1, + sym_type_annotation, + STATE(4717), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137167] = 6, - ACTIONS(6459), 1, + ACTIONS(6673), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136594] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3945), 1, + STATE(4176), 1, sym_type_annotation, - STATE(4857), 1, + STATE(4728), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137189] = 6, - ACTIONS(6459), 1, + [136616] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4061), 1, + STATE(4267), 1, sym_type_annotation, - STATE(4852), 1, + STATE(4882), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137211] = 3, - ACTIONS(7324), 1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 6, + ACTIONS(6774), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [137227] = 6, - ACTIONS(6459), 1, + anon_sym_SEMI, + [136660] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4283), 1, + STATE(4445), 1, sym_type_annotation, - STATE(4855), 1, + STATE(5195), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137249] = 6, - ACTIONS(3383), 1, + [136682] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136696] = 6, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7300), 1, sym_identifier, - STATE(4470), 1, + STATE(4771), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3320), 3, + STATE(3624), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137271] = 8, - ACTIONS(2537), 1, + [136718] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7329), 1, + ACTIONS(7302), 1, sym_identifier, - ACTIONS(7331), 1, + ACTIONS(7304), 1, anon_sym_STAR, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5538), 1, + STATE(5495), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137297] = 6, - ACTIONS(6459), 1, + [136744] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4001), 1, + STATE(4111), 1, sym_type_annotation, - STATE(5092), 1, + STATE(5164), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136766] = 4, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3933), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7306), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137319] = 8, - ACTIONS(4425), 1, + anon_sym_PIPE_RBRACE, + [136784] = 3, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 6, + 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, + 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(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7333), 1, + ACTIONS(7311), 1, anon_sym_DOT, - STATE(2412), 1, + STATE(2364), 1, sym_arguments, - STATE(5525), 1, + STATE(5288), 1, sym_optional_chain, - STATE(5532), 1, + STATE(5366), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137345] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7335), 1, + [136842] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7313), 1, sym_identifier, - ACTIONS(7337), 1, - anon_sym_DOT, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, - STATE(4585), 1, - sym_nested_identifier, + ACTIONS(7315), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5494), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137371] = 4, - ACTIONS(2445), 1, + [136868] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(5413), 1, - sym_statement_block, + STATE(4035), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5511), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137389] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [136894] = 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(2489), 1, + sym_arguments, + STATE(3153), 1, + sym_type_arguments, + STATE(5404), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136920] = 4, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4363), 1, + STATE(3977), 1, sym_type_annotation, - STATE(5010), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7317), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137411] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137437] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7345), 1, + anon_sym_PIPE_RBRACE, + [136938] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7319), 1, sym_identifier, - ACTIONS(7347), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5538), 1, - sym__call_signature, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(781), 1, + sym_string, + STATE(900), 1, + sym__module, + STATE(4574), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137463] = 3, - ACTIONS(7349), 1, + [136964] = 3, + ACTIONS(7323), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 6, + ACTIONS(3577), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [137479] = 6, - ACTIONS(6459), 1, + [136980] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4009), 1, + STATE(4177), 1, sym_type_annotation, - STATE(5079), 1, + STATE(4737), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137501] = 6, - ACTIONS(6459), 1, + [137002] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4351), 1, + STATE(4326), 1, sym_type_annotation, STATE(4978), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6675), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137523] = 4, - ACTIONS(2445), 1, + [137024] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(5484), 1, - sym_statement_block, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2314), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5235), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137541] = 4, - ACTIONS(7353), 1, - anon_sym_COMMA, - STATE(3658), 1, - aux_sym_sequence_expression_repeat1, + [137050] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7325), 1, + sym_identifier, + ACTIONS(7327), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5494), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4791), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [137559] = 8, - ACTIONS(3959), 1, + [137076] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2499), 1, + STATE(1614), 1, sym_arguments, - STATE(3138), 1, - sym_type_arguments, - STATE(5376), 1, + STATE(5404), 1, sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137585] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4091), 1, - sym_type_annotation, - STATE(5003), 1, - sym__initializer, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137607] = 6, - ACTIONS(6459), 1, + [137128] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4246), 1, + STATE(4178), 1, sym_type_annotation, - STATE(4805), 1, + STATE(4745), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6702), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137629] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, + [137150] = 8, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2192), 1, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4099), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5390), 1, + STATE(5243), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137655] = 8, - ACTIONS(6875), 1, + [137176] = 8, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4102), 1, + STATE(1668), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5307), 1, + STATE(5251), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137681] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, + [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(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137701] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5478), 1, - sym_statement_block, + [137228] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4039), 1, + sym_type_annotation, + STATE(4832), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137719] = 3, - ACTIONS(7356), 1, + [137250] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137276] = 3, + ACTIONS(7271), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 6, + ACTIONS(4182), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137735] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [137292] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5469), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 4, + ACTIONS(7333), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137755] = 3, - ACTIONS(7362), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137310] = 3, + ACTIONS(7335), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 6, + ACTIONS(4202), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - [137771] = 3, - ACTIONS(7356), 1, - anon_sym_AMP, + [137326] = 8, + ACTIONS(3942), 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 6, + [137352] = 8, + ACTIONS(7337), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137787] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(7341), 1, anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, + ACTIONS(7343), 1, anon_sym_LT, - STATE(1595), 1, - sym_arguments, - STATE(3138), 1, + ACTIONS(7345), 1, + anon_sym_LBRACE_PIPE, + STATE(4598), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5143), 1, sym_type_arguments, - STATE(5376), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137813] = 4, - ACTIONS(2445), 1, + [137378] = 4, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(5488), 1, + STATE(4392), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 5, + ACTIONS(1653), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137831] = 6, - ACTIONS(6459), 1, + [137396] = 4, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3991), 1, - sym_type_annotation, - STATE(4881), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137853] = 3, - ACTIONS(6794), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4037), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137869] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137889] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 4, + ACTIONS(5634), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137909] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(7364), 1, - sym_identifier, - ACTIONS(7366), 1, - anon_sym_DOT, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, - sym_string, - STATE(4447), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137935] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_RBRACE, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(4280), 1, - sym_type_annotation, - STATE(4840), 1, - sym__initializer, + anon_sym_LT, + anon_sym_QMARK, + [137414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7347), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137957] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, anon_sym_COLON, - STATE(4300), 1, - sym_type_annotation, - STATE(4892), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [137428] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5358), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7349), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137979] = 8, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - ACTIONS(7368), 1, + anon_sym_PIPE_RBRACE, + [137446] = 8, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(7370), 1, - anon_sym_extends, - STATE(3960), 1, - sym_object_type, - STATE(4021), 1, - sym_type_parameters, - STATE(4658), 1, - sym_extends_type_clause, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(7351), 1, + anon_sym_DOT, + STATE(2001), 1, + sym_arguments, + STATE(5404), 1, + sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138005] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4322), 1, - sym_type_annotation, - STATE(4921), 1, - sym__initializer, + [137472] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5365), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7353), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [138027] = 5, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137490] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, anon_sym_LPAREN, + ACTIONS(7355), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7357), 1, anon_sym_QMARK, - [138047] = 6, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(1683), 1, - sym_arguments, - STATE(5395), 1, - sym_type_arguments, + 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, - ACTIONS(7372), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [138069] = 6, - ACTIONS(6459), 1, + [137516] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(4011), 1, sym_type_annotation, - STATE(4889), 1, + STATE(4680), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138091] = 6, - ACTIONS(6459), 1, + [137538] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4323), 1, + STATE(4114), 1, sym_type_annotation, - STATE(4924), 1, + STATE(5184), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138113] = 6, - ACTIONS(6459), 1, + [137560] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3935), 1, + STATE(4278), 1, sym_type_annotation, - STATE(5226), 1, + STATE(4900), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138135] = 6, - ACTIONS(6459), 1, + [137582] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3936), 1, + STATE(4279), 1, sym_type_annotation, - STATE(4659), 1, + STATE(4902), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138157] = 6, - ACTIONS(6459), 1, + [137604] = 6, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7300), 1, + sym_identifier, + STATE(4484), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137626] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3948), 1, + STATE(4282), 1, sym_type_annotation, - STATE(4972), 1, + STATE(4910), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138179] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4284), 1, - sym_type_annotation, - STATE(4859), 1, - sym__initializer, + [137648] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5565), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(7349), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138201] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [137666] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4285), 1, + STATE(4283), 1, sym_type_annotation, - STATE(4860), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138223] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [137688] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4117), 1, + sym_type_annotation, + STATE(5206), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 4, + ACTIONS(6673), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138243] = 6, - ACTIONS(6459), 1, + anon_sym_SEMI, + [137710] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3950), 1, + STATE(4288), 1, sym_type_annotation, - STATE(4627), 1, + STATE(4922), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138265] = 6, - ACTIONS(6459), 1, + [137732] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4290), 1, + STATE(4293), 1, sym_type_annotation, - STATE(4871), 1, + STATE(4926), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138287] = 6, - ACTIONS(6459), 1, + [137754] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4291), 1, + STATE(4295), 1, sym_type_annotation, - STATE(4874), 1, + STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138309] = 6, - ACTIONS(6459), 1, + [137776] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4295), 1, + STATE(4296), 1, sym_type_annotation, - STATE(4878), 1, + STATE(4929), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138331] = 6, - ACTIONS(6459), 1, + [137798] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, STATE(4297), 1, sym_type_annotation, - STATE(4880), 1, + STATE(4933), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138353] = 6, - ACTIONS(6459), 1, + [137820] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, STATE(4298), 1, sym_type_annotation, - STATE(4887), 1, + STATE(4934), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138375] = 8, - ACTIONS(6769), 1, + [137842] = 8, + ACTIONS(6784), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2068), 1, + STATE(1648), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5341), 1, + STATE(5242), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138401] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, + [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, - ACTIONS(4335), 4, - anon_sym_COMMA, + [137894] = 6, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138421] = 4, - ACTIONS(2445), 1, + ACTIONS(7300), 1, + sym_identifier, + 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, + [137916] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5389), 1, + STATE(5272), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138439] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4024), 1, - sym_type_annotation, - STATE(4676), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138461] = 4, - ACTIONS(2445), 1, + [137934] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5249), 1, + STATE(5274), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 5, + ACTIONS(7361), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138479] = 6, - ACTIONS(6459), 1, + [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, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4332), 1, + STATE(4353), 1, sym_type_annotation, - STATE(4947), 1, + STATE(5030), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138000] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7361), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138501] = 4, - ACTIONS(2445), 1, + anon_sym_PIPE_RBRACE, + [138044] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5323), 1, + STATE(5407), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7378), 5, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138519] = 6, - ACTIONS(6459), 1, + [138062] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4333), 1, + STATE(4307), 1, sym_type_annotation, STATE(4948), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138541] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5530), 1, - sym_statement_block, + [138084] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4309), 1, + sym_type_annotation, + STATE(5220), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138559] = 6, - ACTIONS(6459), 1, + [138106] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4003), 1, + STATE(4125), 1, sym_type_annotation, - STATE(5103), 1, + STATE(5210), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138581] = 8, - ACTIONS(6875), 1, + [138128] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(7367), 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(5), 2, + sym_html_comment, + sym_comment, + [138154] = 8, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, + anon_sym_LBRACE, + ACTIONS(7371), 1, + anon_sym_LT, + ACTIONS(7373), 1, anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, + 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, - STATE(4125), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5361), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7300), 1, + sym_identifier, + STATE(4496), 1, + sym_variable_declarator, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138607] = 6, - ACTIONS(6459), 1, + ACTIONS(7279), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [138224] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4336), 1, + STATE(4131), 1, sym_type_annotation, - STATE(4956), 1, + STATE(4616), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138629] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_statement_block, + [138246] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7321), 1, + anon_sym_DOT, + 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, + [138272] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4394), 1, + sym_type_annotation, + STATE(5102), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7380), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138647] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5402), 1, - sym_statement_block, + [138294] = 4, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4368), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7382), 5, + ACTIONS(7377), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138665] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [138312] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4313), 1, + sym_type_annotation, + STATE(4960), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 4, + ACTIONS(6694), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138685] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5385), 1, - sym_statement_block, + anon_sym_SEMI, + [138334] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4134), 1, + sym_type_annotation, + STATE(4628), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7384), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138703] = 6, - ACTIONS(6459), 1, + [138356] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4337), 1, + STATE(4137), 1, sym_type_annotation, - STATE(4959), 1, + STATE(4631), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138725] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, + [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(7386), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(7379), 1, anon_sym_DOT, - STATE(2497), 1, + STATE(2014), 1, sym_arguments, - STATE(5376), 1, + STATE(5288), 1, sym_optional_chain, - STATE(5377), 1, + STATE(5366), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138751] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1639), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5370), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [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, - [138777] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2538), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5241), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [138456] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + 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, - [138803] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(828), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5445), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [138482] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4016), 1, + sym_type_annotation, + STATE(4700), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138829] = 6, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(2177), 1, - sym_arguments, - STATE(5353), 1, - sym_type_arguments, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138504] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4317), 1, + sym_type_annotation, + STATE(4968), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [138851] = 6, - ACTIONS(6459), 1, + ACTIONS(6694), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138526] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4413), 1, + STATE(4319), 1, sym_type_annotation, - STATE(5120), 1, + STATE(4969), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6700), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138873] = 8, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(1954), 1, - sym_arguments, - STATE(3219), 1, - sym_type_arguments, - STATE(5376), 1, - sym_optional_chain, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138899] = 6, - ACTIONS(6459), 1, + [138574] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4058), 1, + STATE(4141), 1, sym_type_annotation, - STATE(4842), 1, + STATE(4645), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138921] = 8, - ACTIONS(7388), 1, - anon_sym_LBRACE, - ACTIONS(7390), 1, + [138596] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4400), 1, + sym_type_annotation, + STATE(5113), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6663), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_LT, - ACTIONS(7396), 1, - anon_sym_LBRACE_PIPE, - STATE(4543), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5164), 1, - sym_type_arguments, + anon_sym_SEMI, + [138618] = 4, + ACTIONS(7387), 1, + anon_sym_COMMA, + STATE(3713), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138947] = 6, - ACTIONS(6459), 1, + ACTIONS(4744), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [138636] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4135), 1, + STATE(4323), 1, sym_type_annotation, - STATE(5206), 1, + STATE(4975), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138969] = 6, - ACTIONS(6459), 1, + [138658] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4340), 1, + STATE(4324), 1, sym_type_annotation, - STATE(4961), 1, + STATE(4976), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138991] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7398), 1, - sym_identifier, - ACTIONS(7400), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139017] = 4, - ACTIONS(6467), 1, + [138680] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4143), 1, + STATE(4327), 1, sym_type_annotation, + STATE(4982), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7402), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139035] = 6, - ACTIONS(6459), 1, + [138702] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4436), 1, + STATE(4328), 1, sym_type_annotation, - STATE(5172), 1, + STATE(4984), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -253742,478 +251685,529 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139057] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5541), 1, - sym_statement_block, + [138724] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4331), 1, + sym_type_annotation, + STATE(4994), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139075] = 2, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5931), 2, + sym__module_export_name, + sym_string, + [138770] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4332), 1, + sym_type_annotation, + STATE(4996), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7404), 7, + ACTIONS(6694), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [138792] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139089] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4166), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5432), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + STATE(4335), 1, + sym_type_annotation, + STATE(5006), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139115] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5362), 1, - sym_statement_block, + ACTIONS(6694), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138814] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4336), 1, + sym_type_annotation, + STATE(5007), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139133] = 4, - ACTIONS(4469), 1, - anon_sym_EQ, + [138836] = 3, + ACTIONS(6799), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [139151] = 6, - ACTIONS(6459), 1, + 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(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3952), 1, + STATE(4143), 1, sym_type_annotation, - STATE(4661), 1, + STATE(4647), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139173] = 8, - ACTIONS(6875), 1, + [138874] = 3, + ACTIONS(7390), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4032), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138890] = 8, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(4129), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5574), 1, + STATE(5311), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139199] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4458), 1, - sym_type_annotation, - STATE(5225), 1, - sym__initializer, + [138916] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5497), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 3, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139221] = 2, + anon_sym_PIPE_RBRACE, + [138934] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5499), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7408), 7, + ACTIONS(7394), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139235] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4453), 1, - sym_type_annotation, - STATE(5208), 1, - sym__initializer, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139257] = 4, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4431), 1, - sym_type_annotation, + [138978] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5351), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7410), 5, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139275] = 4, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4176), 1, - sym_type_annotation, + [138996] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5232), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 5, + ACTIONS(7396), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139293] = 3, - ACTIONS(7414), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3549), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [139309] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3953), 1, - sym_type_annotation, - STATE(4691), 1, - sym__initializer, + [139014] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5374), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7394), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139331] = 8, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [139032] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7417), 1, + ACTIONS(7398), 1, sym_identifier, - ACTIONS(7419), 1, + ACTIONS(7400), 1, anon_sym_STAR, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5495), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139357] = 6, - ACTIONS(6459), 1, + ACTIONS(6832), 7, + 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, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4087), 1, + STATE(4018), 1, sym_type_annotation, - STATE(4979), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139379] = 6, - ACTIONS(6459), 1, + [139094] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4375), 1, + STATE(4414), 1, sym_type_annotation, - STATE(5025), 1, + STATE(5138), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139401] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7337), 1, - anon_sym_DOT, - ACTIONS(7421), 1, - sym_identifier, - STATE(739), 1, - sym_nested_identifier, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139427] = 8, - ACTIONS(2537), 1, + [139116] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7423), 1, + ACTIONS(7402), 1, sym_identifier, - ACTIONS(7425), 1, + ACTIONS(7404), 1, anon_sym_STAR, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5538), 1, + STATE(5494), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139453] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4376), 1, - sym_type_annotation, - STATE(5033), 1, - sym__initializer, + [139142] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5234), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7406), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139475] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4088), 1, - sym_type_annotation, - STATE(4985), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [139160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7024), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [139497] = 2, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 7, - sym__automatic_semicolon, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [139196] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [139511] = 4, - ACTIONS(7208), 1, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139222] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(4411), 1, - sym_statement_block, + STATE(774), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5269), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139529] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + [139248] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(1952), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139555] = 6, - ACTIONS(6459), 1, + [139274] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4381), 1, + STATE(3950), 1, sym_type_annotation, - STATE(5044), 1, + STATE(4822), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139577] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7429), 1, - anon_sym_DOT, - STATE(1588), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + [139296] = 8, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(1705), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5507), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139603] = 6, - ACTIONS(6459), 1, + [139322] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4383), 1, + STATE(4156), 1, sym_type_annotation, - STATE(5052), 1, + STATE(4669), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139625] = 6, - ACTIONS(6459), 1, + [139344] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4384), 1, + STATE(4158), 1, sym_type_annotation, - STATE(5055), 1, + STATE(4671), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139647] = 6, - ACTIONS(6459), 1, + [139366] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4385), 1, + STATE(4025), 1, sym_type_annotation, - STATE(5057), 1, + STATE(4772), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139669] = 6, - ACTIONS(6459), 1, + [139388] = 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(4348), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139408] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4386), 1, + STATE(4161), 1, sym_type_annotation, - STATE(5064), 1, + STATE(4681), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139691] = 2, + [139430] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4889), 7, + ACTIONS(7143), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -254221,11055 +252215,11151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [139705] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(1650), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + [139444] = 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, - [139731] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4356), 4, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4262), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139484] = 3, + ACTIONS(7271), 1, + anon_sym_AMP, + 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, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4518), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(7287), 1, anon_sym_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(2355), 1, + STATE(1506), 1, sym_arguments, - STATE(5525), 1, + STATE(5404), 1, sym_optional_chain, - STATE(5532), 1, + STATE(5405), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139757] = 6, - ACTIONS(6459), 1, + [139526] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4387), 1, + STATE(4199), 1, sym_type_annotation, - STATE(5066), 1, + STATE(4782), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6700), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139779] = 8, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - ACTIONS(7368), 1, - anon_sym_LT, - ACTIONS(7370), 1, + [139548] = 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(4096), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139568] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, anon_sym_extends, - STATE(813), 1, - sym_object_type, - STATE(3968), 1, - sym_type_parameters, - STATE(4629), 1, - sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139805] = 2, + ACTIONS(4100), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139588] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5413), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6962), 7, + ACTIONS(7412), 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, - [139819] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [139606] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4389), 1, + STATE(4163), 1, sym_type_annotation, - STATE(5075), 1, + STATE(4685), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139841] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4955), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139863] = 6, - ACTIONS(6459), 1, + [139628] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4392), 1, + STATE(4358), 1, sym_type_annotation, - STATE(5077), 1, + STATE(5042), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7281), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139885] = 6, - ACTIONS(6459), 1, + [139650] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3957), 1, + STATE(4359), 1, sym_type_annotation, - STATE(4806), 1, + STATE(5043), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7281), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139907] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4005), 1, - sym_type_annotation, - STATE(5130), 1, - sym__initializer, + [139672] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5352), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7333), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139929] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4089), 1, - sym_type_annotation, - STATE(4994), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [139690] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5368), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139951] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [139708] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4090), 1, + STATE(4277), 1, sym_type_annotation, - STATE(4997), 1, + STATE(4891), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139973] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2027), 1, - sym_arguments, - STATE(3485), 1, - sym_type_arguments, - STATE(5525), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139999] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7431), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5366), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140022] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2347), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [139730] = 5, + ACTIONS(7271), 1, anon_sym_AMP, + ACTIONS(7273), 1, anon_sym_PIPE, + ACTIONS(7275), 1, anon_sym_extends, - [140035] = 3, - ACTIONS(6497), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6499), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140050] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7433), 1, + ACTIONS(4194), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5239), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140073] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6806), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [140090] = 6, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_LT, - ACTIONS(7437), 1, + [139750] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5164), 1, - sym_type_arguments, + STATE(2607), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7439), 2, + ACTIONS(7392), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [140111] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7441), 1, - sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5360), 1, - sym__call_signature, + anon_sym_SEMI, + [139767] = 5, + ACTIONS(7416), 1, + anon_sym_default, + ACTIONS(7419), 1, + anon_sym_RBRACE, + ACTIONS(7421), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140134] = 4, - STATE(3874), 1, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3720), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7443), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140151] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_statement_block, + [139803] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 4, + ACTIONS(3688), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7426), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140168] = 7, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7146), 1, - anon_sym_DOT, - ACTIONS(7447), 1, - anon_sym_RPAREN, - STATE(1231), 1, - sym_arguments, - STATE(5549), 1, - sym_type_arguments, + [139820] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140191] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7449), 1, - anon_sym_export, - ACTIONS(7451), 1, - anon_sym_class, - ACTIONS(7453), 1, - anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + ACTIONS(3720), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7424), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139837] = 5, + ACTIONS(7431), 1, + anon_sym_BQUOTE, + ACTIONS(7433), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140214] = 5, - ACTIONS(7455), 1, - anon_sym_default, - ACTIONS(7457), 1, + 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, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3724), 2, anon_sym_RBRACE, - ACTIONS(7459), 1, - anon_sym_case, + anon_sym_PIPE_RBRACE, + ACTIONS(7436), 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, - STATE(3916), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140233] = 7, - ACTIONS(2537), 1, + [139896] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7461), 1, + ACTIONS(7438), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3699), 1, + STATE(4991), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140256] = 4, - ACTIONS(7445), 1, + [139919] = 7, + ACTIONS(7339), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7440), 1, anon_sym_LBRACE, - STATE(2626), 1, - sym_statement_block, + 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, - ACTIONS(7298), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [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, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(7444), 1, anon_sym_COMMA, - anon_sym_SEMI, - [140273] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(7463), 1, - anon_sym_QMARK, - STATE(3466), 1, - sym_formal_parameters, - STATE(3908), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + ACTIONS(7446), 1, + anon_sym_GT, + STATE(4731), 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, + sym_identifier, + STATE(751), 1, + sym_nested_identifier, + STATE(781), 1, + sym_string, + STATE(904), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140296] = 4, - STATE(3874), 1, + [140001] = 4, + STATE(3876), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3735), 2, + ACTIONS(7450), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7465), 3, + ACTIONS(7448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140313] = 4, - ACTIONS(7445), 1, + [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, anon_sym_LBRACE, - STATE(2616), 1, + ACTIONS(7452), 1, + sym_identifier, + ACTIONS(7454), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4666), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140050] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2628), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 4, + ACTIONS(7289), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140330] = 4, - ACTIONS(7445), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140103] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(2644), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 4, + ACTIONS(7333), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140347] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7467), 1, + [140120] = 3, + ACTIONS(4090), 1, sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140370] = 4, - STATE(3828), 1, - aux_sym_object_type_repeat1, + ACTIONS(4092), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [140135] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7471), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7469), 3, + ACTIONS(7412), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140387] = 4, - ACTIONS(7445), 1, + [140152] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2606), 1, + STATE(2639), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7298), 4, + ACTIONS(7359), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140404] = 7, - ACTIONS(6616), 1, + [140169] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7473), 1, + ACTIONS(7458), 1, anon_sym_COMMA, - ACTIONS(7475), 1, + ACTIONS(7460), 1, anon_sym_GT, - STATE(4706), 1, + STATE(4828), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140427] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2607), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7292), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140444] = 7, - ACTIONS(2537), 1, + [140192] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7477), 1, + ACTIONS(7462), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5509), 1, + STATE(5382), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140467] = 4, - STATE(3868), 1, - aux_sym_object_type_repeat1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3707), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7479), 3, - sym__automatic_semicolon, + [140238] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5827), 2, anon_sym_COMMA, - anon_sym_SEMI, - [140484] = 5, - ACTIONS(7484), 1, + 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(7486), 1, + ACTIONS(7470), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7481), 2, + ACTIONS(7213), 2, sym__template_chars, sym_escape_sequence, - STATE(3797), 2, + STATE(3812), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [140503] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2333), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140516] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7489), 1, - anon_sym_COMMA, - ACTIONS(7491), 1, - anon_sym_GT, - STATE(5229), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140539] = 7, - ACTIONS(2537), 1, + [140272] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7493), 1, + ACTIONS(7472), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4400), 1, + STATE(3738), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140562] = 7, - ACTIONS(7188), 1, + [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, - ACTIONS(7495), 1, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [140312] = 3, + ACTIONS(4062), 1, sym_identifier, - ACTIONS(7497), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, sym_jsx_identifier, - ACTIONS(7499), 1, anon_sym_SLASH_GT, - STATE(3166), 1, - sym_nested_identifier, - STATE(3431), 1, - sym_jsx_namespace_name, + [140327] = 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, - [140585] = 2, + ACTIONS(7480), 3, + anon_sym_EQ, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 6, + 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, - [140598] = 3, - ACTIONS(7501), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 5, + ACTIONS(4074), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + [140384] = 5, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, + ACTIONS(7486), 1, anon_sym_extends, - [140613] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7503), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5526), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140636] = 7, - ACTIONS(2537), 1, + ACTIONS(4100), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140403] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7505), 1, + ACTIONS(7488), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3855), 1, + STATE(4382), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140659] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + [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, - ACTIONS(4139), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140678] = 7, - ACTIONS(2537), 1, + [140449] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7511), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7492), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5442), 1, + STATE(5501), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140701] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7335), 1, - sym_identifier, - STATE(747), 1, - sym_string, - STATE(810), 1, - sym__module, - STATE(4585), 1, - sym_nested_identifier, + [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(5), 2, sym_html_comment, sym_comment, - [140724] = 3, - ACTIONS(7513), 1, + [140495] = 6, + ACTIONS(7271), 1, + 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(4153), 5, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(7500), 2, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [140739] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7335), 1, - sym_identifier, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, - STATE(4585), 1, - sym_nested_identifier, + [140516] = 6, + ACTIONS(7341), 1, + anon_sym_DOT, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7504), 1, + anon_sym_LBRACE, + STATE(5143), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140762] = 2, + ACTIONS(7506), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [140537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7408), 6, + ACTIONS(7251), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [140775] = 7, - ACTIONS(6616), 1, + [140550] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7515), 1, + ACTIONS(7508), 1, anon_sym_COMMA, - ACTIONS(7517), 1, + ACTIONS(7510), 1, anon_sym_GT, - STATE(4803), 1, + STATE(4654), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140798] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7519), 1, - anon_sym_COMMA, - ACTIONS(7521), 1, - anon_sym_GT, - STATE(4682), 1, - aux_sym_implements_clause_repeat1, + [140573] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140821] = 4, - ACTIONS(7445), 1, + ACTIONS(7243), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140590] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(2619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7384), 4, + ACTIONS(7249), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140838] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(7523), 1, - anon_sym_QMARK, - STATE(3466), 1, - sym_formal_parameters, - STATE(3785), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [140607] = 5, + ACTIONS(7470), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140861] = 7, - ACTIONS(2537), 1, + 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(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7525), 1, + ACTIONS(7516), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4303), 1, + STATE(3728), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140884] = 6, - ACTIONS(7356), 1, + [140649] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7529), 1, - anon_sym_QMARK, + ACTIONS(7518), 1, + anon_sym_LBRACE, + ACTIONS(7520), 1, + anon_sym_COMMA, + STATE(5088), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7527), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [140905] = 4, - STATE(3853), 1, + [140672] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7533), 2, + ACTIONS(3692), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7531), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140922] = 4, - ACTIONS(7535), 1, - sym_identifier, - ACTIONS(7537), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7539), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140939] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2351), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140952] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7541), 1, - sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140975] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(7543), 1, - anon_sym_export, - ACTIONS(7545), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140998] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(7547), 1, - anon_sym_QMARK, - STATE(3466), 1, - sym_formal_parameters, - STATE(3917), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141021] = 7, - ACTIONS(2537), 1, + [140689] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7549), 1, + ACTIONS(7524), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5202), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141044] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(7551), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3570), 1, + STATE(5336), 1, sym__call_signature, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141067] = 4, - STATE(3854), 1, - aux_sym_object_type_repeat1, + [140712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7553), 3, + ACTIONS(7347), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141084] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2612), 1, - sym_statement_block, + anon_sym_COLON, + [140725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 4, + ACTIONS(7526), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141101] = 4, - STATE(3874), 1, + anon_sym_PIPE_RBRACE, + [140738] = 5, + ACTIONS(7470), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7528), 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, + [140757] = 4, + STATE(3831), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3719), 2, + ACTIONS(7532), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7553), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141118] = 7, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(7394), 1, - anon_sym_LT, - ACTIONS(7555), 1, - anon_sym_LBRACE, - ACTIONS(7557), 1, - anon_sym_LBRACE_PIPE, - STATE(4611), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5166), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141141] = 5, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(7559), 1, + [140774] = 3, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(7561), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4568), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [141160] = 7, - ACTIONS(3456), 1, + ACTIONS(4124), 5, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7146), 1, - anon_sym_DOT, - ACTIONS(7563), 1, - anon_sym_RPAREN, - STATE(1231), 1, - sym_arguments, - STATE(5549), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141183] = 5, - ACTIONS(7501), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [140789] = 5, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7507), 1, + ACTIONS(7484), 1, anon_sym_PIPE, - ACTIONS(7509), 1, + ACTIONS(7486), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 3, + ACTIONS(4348), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141202] = 3, - ACTIONS(7501), 1, - anon_sym_AMP, + [140808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [141217] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7421), 1, + ACTIONS(7257), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [140821] = 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, + [140834] = 7, + ACTIONS(7159), 1, + anon_sym_GT, + ACTIONS(7536), 1, sym_identifier, - STATE(739), 1, + ACTIONS(7538), 1, + sym_jsx_identifier, + ACTIONS(7540), 1, + anon_sym_SLASH_GT, + STATE(3125), 1, sym_nested_identifier, - STATE(747), 1, - sym_string, - STATE(810), 1, - sym__module, + STATE(3412), 1, + sym_jsx_namespace_name, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141240] = 2, + [140880] = 7, + ACTIONS(2478), 1, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(7404), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141253] = 4, - STATE(3874), 1, + [140903] = 4, + STATE(3855), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3707), 2, + ACTIONS(3738), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7479), 3, + ACTIONS(7546), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141270] = 4, - STATE(3856), 1, + [140920] = 5, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(3699), 2, + ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7565), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141287] = 4, - STATE(3874), 1, + [140956] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3697), 2, + ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7567), 3, + ACTIONS(7548), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140973] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7550), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141304] = 7, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [140986] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7569), 1, + ACTIONS(7552), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4142), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5375), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141327] = 7, - ACTIONS(2537), 1, + [141009] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7571), 1, + ACTIONS(7554), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(3931), 1, + STATE(3843), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141350] = 7, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(7364), 1, - sym_identifier, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, - sym_string, - STATE(4410), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141373] = 4, - STATE(3891), 1, + [141032] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7575), 2, + ACTIONS(3726), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7573), 3, + ACTIONS(7556), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141390] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2655), 1, - sym_statement_block, + [141049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7380), 4, + ACTIONS(7558), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141407] = 5, - ACTIONS(7579), 1, - anon_sym_BQUOTE, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_PIPE_RBRACE, + [141062] = 7, + ACTIONS(7159), 1, + 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, - ACTIONS(7577), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3797), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141426] = 7, - ACTIONS(2537), 1, + [141085] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7583), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7566), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5344), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141449] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141468] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + [141108] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141487] = 5, - ACTIONS(3243), 1, + 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(7561), 1, + ACTIONS(7454), 1, anon_sym_LBRACK, - ACTIONS(7585), 1, + ACTIONS(7568), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4750), 3, + STATE(4570), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [141506] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6796), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141523] = 7, - ACTIONS(2537), 1, + [141144] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7587), 1, - anon_sym_QMARK, - STATE(3276), 1, + ACTIONS(7570), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(3526), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5262), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141546] = 7, - ACTIONS(7188), 1, - anon_sym_GT, - ACTIONS(7589), 1, + [141167] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7375), 1, sym_identifier, - ACTIONS(7591), 1, - sym_jsx_identifier, - ACTIONS(7593), 1, - anon_sym_SLASH_GT, - STATE(3142), 1, + STATE(751), 1, sym_nested_identifier, - STATE(3432), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141569] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7595), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141582] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3699), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141599] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, + STATE(781), 1, + sym_string, + STATE(900), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3713), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7597), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141616] = 4, - ACTIONS(7445), 1, + [141190] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2614), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7382), 4, + ACTIONS(7283), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141633] = 4, - STATE(3874), 1, + [141207] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3701), 2, + ACTIONS(3738), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7599), 3, + ACTIONS(7546), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141650] = 3, - ACTIONS(4377), 1, + [141224] = 3, + ACTIONS(6546), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 5, + ACTIONS(6548), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [141665] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7601), 1, - anon_sym_COMMA, - ACTIONS(7603), 1, - anon_sym_GT, - STATE(4650), 1, - aux_sym_implements_clause_repeat1, + [141239] = 5, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7572), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141688] = 4, - ACTIONS(7445), 1, + STATE(4623), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [141258] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2632), 1, + STATE(2608), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 4, + ACTIONS(7349), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141705] = 2, + [141275] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6770), 2, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141718] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + 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(4335), 3, + ACTIONS(2326), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141737] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_statement_block, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141305] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7576), 1, + anon_sym_QMARK, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5346), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7378), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141754] = 5, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7605), 1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4731), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [141773] = 7, - ACTIONS(2537), 1, + [141351] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7607), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7578), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(5286), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141796] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7609), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141809] = 7, - ACTIONS(2537), 1, + [141374] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7611), 1, + ACTIONS(7580), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4429), 1, + STATE(3839), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141832] = 4, - STATE(3838), 1, - aux_sym_object_type_repeat1, + [141397] = 5, + ACTIONS(7582), 1, + anon_sym_default, + ACTIONS(7584), 1, + anon_sym_RBRACE, + ACTIONS(7586), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3721), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141849] = 4, - STATE(3874), 1, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(3711), 2, + ACTIONS(3722), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7615), 3, + ACTIONS(7588), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141866] = 4, - ACTIONS(7445), 1, + [141433] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2630), 1, + STATE(2611), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 4, + ACTIONS(7353), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141883] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141896] = 7, - ACTIONS(2537), 1, + [141450] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7617), 1, + ACTIONS(7590), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5346), 1, + STATE(3932), 1, sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141919] = 4, - STATE(3836), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7621), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7619), 3, - sym__automatic_semicolon, + [141473] = 7, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(7592), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141936] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(7545), 1, - anon_sym_class, - ACTIONS(7623), 1, - anon_sym_export, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141959] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, + ACTIONS(7594), 1, + anon_sym_GT, + STATE(4686), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7625), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141976] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(7630), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3657), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [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(5), 2, sym_html_comment, sym_comment, - [141999] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(7632), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(5049), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [141519] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142022] = 7, - ACTIONS(1510), 1, + ACTIONS(6766), 2, + 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(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(7421), 1, + ACTIONS(7319), 1, sym_identifier, - STATE(739), 1, - sym_nested_identifier, - STATE(747), 1, + STATE(781), 1, sym_string, - STATE(875), 1, + STATE(900), 1, sym__module, + STATE(4574), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142045] = 5, - ACTIONS(7634), 1, - anon_sym_default, - ACTIONS(7637), 1, - anon_sym_RBRACE, - ACTIONS(7639), 1, - anon_sym_case, + [141559] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142064] = 7, - ACTIONS(6616), 1, + [141582] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7642), 1, + ACTIONS(7598), 1, anon_sym_COMMA, - ACTIONS(7644), 1, + ACTIONS(7600), 1, anon_sym_GT, - STATE(4930), 1, + STATE(5211), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142087] = 7, - ACTIONS(2537), 1, + [141605] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7646), 1, + ACTIONS(7602), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3703), 1, + STATE(5231), 1, + sym_type_parameters, + STATE(5524), 1, sym__call_signature, - STATE(5374), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141628] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7604), 1, + sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, sym_type_parameters, + STATE(5426), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142110] = 7, - ACTIONS(2537), 1, + [141651] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7648), 1, + ACTIONS(7606), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3710), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5367), 1, + sym__call_signature, + 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(5), 2, sym_html_comment, sym_comment, - [142133] = 7, - ACTIONS(2537), 1, + [141697] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7650), 1, + ACTIONS(7610), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5267), 1, + STATE(3683), 1, sym__call_signature, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142156] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + [141720] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7612), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(3764), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142175] = 6, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_EQ, - STATE(4591), 1, - sym_type_annotation, - STATE(5584), 1, - sym__initializer, + [141743] = 7, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3521), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(7652), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [142196] = 4, - STATE(3874), 1, + [141766] = 4, + STATE(3815), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3721), 2, + ACTIONS(3714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7613), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142213] = 7, - ACTIONS(2537), 1, + [141783] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7654), 1, + ACTIONS(7618), 1, sym_identifier, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5545), 1, + STATE(5502), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142236] = 4, - STATE(3912), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7656), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142253] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2645), 1, - sym_statement_block, + [141806] = 3, + ACTIONS(7482), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7276), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142270] = 5, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7658), 1, - anon_sym_BQUOTE, + ACTIONS(4182), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [141821] = 5, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7577), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3797), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142289] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2622), 1, - sym_statement_block, + ACTIONS(4194), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141840] = 3, + ACTIONS(7620), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142306] = 4, - STATE(3874), 1, + ACTIONS(4202), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [141855] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3737), 2, + ACTIONS(3714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7656), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142323] = 7, - ACTIONS(6616), 1, + [141872] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7660), 1, - anon_sym_LBRACE, - ACTIONS(7662), 1, + ACTIONS(7622), 1, anon_sym_COMMA, - STATE(4777), 1, + ACTIONS(7624), 1, + anon_sym_GT, + STATE(4830), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142346] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7664), 1, - sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [141895] = 4, + STATE(3889), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142369] = 7, - ACTIONS(2537), 1, + 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, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7666), 1, + ACTIONS(7630), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4116), 1, + STATE(3918), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142392] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7668), 1, + [141935] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 6, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(7670), 1, - anon_sym_GT, - STATE(4723), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [141948] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142415] = 4, - ACTIONS(7445), 1, + ACTIONS(7361), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141965] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2662), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 4, + ACTIONS(7359), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142432] = 7, - ACTIONS(2537), 1, + [141982] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7672), 1, + ACTIONS(7632), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5207), 1, + STATE(5231), 1, + sym_type_parameters, + STATE(5275), 1, sym__call_signature, - STATE(5374), 1, + 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, + 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, - [142455] = 5, - ACTIONS(7674), 1, - anon_sym_AT, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [142028] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3575), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [142474] = 2, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 6, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7641), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142487] = 7, - ACTIONS(2537), 1, + [142062] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7643), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5545), 1, + STATE(5310), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142510] = 7, - ACTIONS(2537), 1, + [142085] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7679), 1, + ACTIONS(7645), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3862), 1, - sym__call_signature, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5247), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142533] = 4, + [142108] = 4, STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 2, + ACTIONS(3734), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7681), 3, + ACTIONS(7641), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142550] = 7, - ACTIONS(2537), 1, + [142125] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7647), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5545), 1, + STATE(3575), 1, sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142573] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + [142148] = 5, + ACTIONS(7582), 1, + anon_sym_default, + ACTIONS(7586), 1, + anon_sym_case, + ACTIONS(7649), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142590] = 3, - ACTIONS(4263), 1, + STATE(3854), 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, sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 5, - anon_sym_LBRACE, + [142190] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [142605] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, + ACTIONS(7653), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4350), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142622] = 4, - STATE(3779), 1, + [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, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7171), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3819), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142245] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7689), 2, + ACTIONS(3702), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7687), 3, + ACTIONS(7657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142639] = 4, - ACTIONS(7445), 1, + [142262] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2613), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 4, + ACTIONS(7283), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142656] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7691), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142669] = 5, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7693), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7232), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3844), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142688] = 5, - ACTIONS(6616), 1, + [142279] = 5, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(7484), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(7486), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7695), 3, + ACTIONS(4262), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142298] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, + STATE(2656), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7349), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [142707] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, + anon_sym_SEMI, + [142315] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3741), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7697), 3, + ACTIONS(7394), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142724] = 5, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7699), 1, - anon_sym_BQUOTE, + [142332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142743] = 7, - ACTIONS(2537), 1, + ACTIONS(7285), 6, + 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(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7701), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + STATE(3396), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5545), 1, + STATE(3921), 1, sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142766] = 4, - STATE(3787), 1, + [142368] = 4, + STATE(3923), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3731), 2, + ACTIONS(7663), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7443), 3, + ACTIONS(7661), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142783] = 5, - ACTIONS(7455), 1, - anon_sym_default, - ACTIONS(7459), 1, - anon_sym_case, - ACTIONS(7703), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142802] = 4, - ACTIONS(7445), 1, + [142385] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(2631), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 4, + ACTIONS(7392), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142819] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7705), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [142838] = 7, - ACTIONS(2537), 1, + [142402] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7707), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7665), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5435), 1, + STATE(5502), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142861] = 2, + [142425] = 4, + STATE(3844), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 6, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(7669), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [142874] = 3, - ACTIONS(4405), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4407), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [142889] = 7, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(7667), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142442] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7709), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7671), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(5310), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142912] = 7, - ACTIONS(2537), 1, + [142465] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7711), 1, + ACTIONS(7673), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4420), 1, + STATE(3662), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142935] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7713), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5327), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [142488] = 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, - [142958] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7715), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5580), 1, - sym__call_signature, + 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, + anon_sym_COMMA, + ACTIONS(7679), 1, + anon_sym_GT, + STATE(4713), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142981] = 7, - ACTIONS(2537), 1, + [142530] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7717), 1, + ACTIONS(7681), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5255), 1, + STATE(4262), 1, sym__call_signature, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143004] = 7, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(7364), 1, - sym_identifier, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, - sym_string, - STATE(4447), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143027] = 4, - ACTIONS(7445), 1, + [142553] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2642), 1, + STATE(2615), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 4, + ACTIONS(7396), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143044] = 2, + [142570] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 6, + ACTIONS(7394), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143057] = 3, + [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, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [143072] = 4, - ACTIONS(7445), 1, + [142610] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2644), 1, + STATE(2621), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 4, + ACTIONS(7333), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143089] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4311), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [143108] = 6, - ACTIONS(2537), 1, + [142627] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3276), 1, + ACTIONS(7685), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(3598), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5315), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143128] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4703), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143144] = 4, - ACTIONS(6459), 1, + [142650] = 6, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(7237), 1, anon_sym_EQ, - STATE(5165), 1, + STATE(4477), 1, + sym_type_annotation, + STATE(5227), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, - sym__automatic_semicolon, + ACTIONS(7687), 2, anon_sym_COMMA, - anon_sym_SEMI, - [143160] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5193), 1, - sym__initializer, + anon_sym_RPAREN, + [142671] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7406), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143176] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4891), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [143188] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4887), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [143200] = 2, + [142711] = 4, + STATE(3770), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 5, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7693), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143212] = 2, + [142728] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 5, + ACTIONS(7243), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143224] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4708), 1, - sym__initializer, + [142745] = 3, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4286), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [142760] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143240] = 6, - ACTIONS(2537), 1, + [142777] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3466), 1, + ACTIONS(7695), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(3981), 1, + STATE(4890), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143260] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4709), 1, - sym__initializer, + [142800] = 4, + STATE(3771), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7699), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7697), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143276] = 6, - ACTIONS(2537), 1, + [142817] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(7701), 1, + anon_sym_QMARK, + STATE(3396), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(3900), 1, sym__call_signature, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143296] = 4, - ACTIONS(6459), 1, + [142840] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4710), 1, + STATE(4754), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7703), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143312] = 6, - ACTIONS(1676), 1, - anon_sym_LBRACE, - ACTIONS(7727), 1, - anon_sym_SEMI, - ACTIONS(7729), 1, - sym__automatic_semicolon, - ACTIONS(7731), 1, - sym__function_signature_automatic_semicolon, - STATE(243), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143332] = 5, - ACTIONS(7733), 1, - anon_sym_BQUOTE, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, + [142856] = 3, + ACTIONS(7707), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143350] = 4, - ACTIONS(6459), 1, + 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(5194), 1, + STATE(4702), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143366] = 4, - ACTIONS(6459), 1, + [142886] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4719), 1, + STATE(4703), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143382] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5209), 1, - sym__initializer, + [142902] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(4050), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7361), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143398] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4726), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [142934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7711), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143414] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [142946] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4727), 1, + STATE(4725), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143430] = 4, - ACTIONS(6459), 1, + [142962] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(5163), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143446] = 3, - ACTIONS(7741), 1, + [142978] = 3, + ACTIONS(7719), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7739), 4, + ACTIONS(7717), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [143460] = 3, - ACTIONS(7743), 1, - sym_identifier, + [142992] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4739), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7745), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [143474] = 4, - ACTIONS(6459), 1, + ACTIONS(7713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143008] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4735), 1, + STATE(4740), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143490] = 4, - ACTIONS(6459), 1, + [143024] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4738), 1, + STATE(4741), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143506] = 4, - ACTIONS(6459), 1, + [143040] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4739), 1, + STATE(4742), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143522] = 2, + [143056] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4744), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2615), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143534] = 2, + [143072] = 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, + [143086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2627), 5, + ACTIONS(2926), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143546] = 2, + [143098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2631), 5, + ACTIONS(2930), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143558] = 3, - ACTIONS(7749), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7747), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [143572] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4741), 1, - sym__initializer, + [143110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(2934), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143588] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [143122] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7725), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [143134] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4743), 1, + STATE(4656), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143604] = 2, + [143150] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7727), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [143616] = 4, - ACTIONS(6459), 1, + STATE(5489), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143166] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4754), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143632] = 4, - ACTIONS(6459), 1, + [143182] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4640), 1, + STATE(4748), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143648] = 6, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - ACTIONS(7370), 1, - anon_sym_extends, - STATE(811), 1, - sym_object_type, - STATE(4866), 1, - sym_extends_type_clause, + [143198] = 3, + ACTIONS(7732), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143668] = 4, - ACTIONS(6459), 1, + ACTIONS(7730), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143212] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4766), 1, + STATE(4751), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143684] = 3, - ACTIONS(7755), 1, + [143228] = 3, + ACTIONS(7732), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7757), 4, + ACTIONS(7730), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [143698] = 5, - ACTIONS(7759), 1, - sym_identifier, - ACTIONS(7761), 1, - anon_sym_LPAREN, - STATE(1213), 1, - sym_decorator_member_expression, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1280), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143716] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4772), 1, - sym__initializer, + ACTIONS(7734), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143732] = 2, + anon_sym_PIPE_RBRACE, + [143278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7609), 5, + ACTIONS(7736), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143744] = 2, + anon_sym_PIPE_RBRACE, + [143290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7691), 5, + ACTIONS(7526), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143756] = 2, + [143302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 5, + ACTIONS(7550), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143768] = 2, + [143314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2667), 5, + ACTIONS(7558), 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, - [143780] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3946), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [143326] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4766), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143800] = 2, + ACTIONS(7713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2702), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143812] = 2, + [143354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143824] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5417), 1, - sym__call_signature, + [143366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143844] = 6, - ACTIONS(1676), 1, - anon_sym_LBRACE, - ACTIONS(7763), 1, - anon_sym_SEMI, - ACTIONS(7765), 1, + ACTIONS(2742), 5, sym__automatic_semicolon, - ACTIONS(7767), 1, - sym__function_signature_automatic_semicolon, - STATE(240), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143864] = 2, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2679), 5, + ACTIONS(2876), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143876] = 2, + [143390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2687), 5, + ACTIONS(2888), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143888] = 2, + [143402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 5, + ACTIONS(1751), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143900] = 2, + [143414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143912] = 2, + [143426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143924] = 2, + [143438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143936] = 2, + [143450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143948] = 4, - ACTIONS(6459), 1, + [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, anon_sym_EQ, - STATE(4775), 1, + STATE(4662), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143964] = 5, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7769), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5658), 2, - sym__module_export_name, - sym_string, - [143982] = 4, - ACTIONS(6459), 1, + [143496] = 4, + ACTIONS(6444), 1, anon_sym_EQ, STATE(4776), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143998] = 4, - ACTIONS(6459), 1, + [143512] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4778), 1, + STATE(4779), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144014] = 4, - ACTIONS(6459), 1, + [143528] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4698), 1, + STATE(4781), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + 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, - [144030] = 2, + anon_sym_PIPE_RBRACE, + [143556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4889), 5, + ACTIONS(4960), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [144042] = 4, - ACTIONS(6459), 1, + [143568] = 6, + ACTIONS(7237), 1, anon_sym_EQ, - STATE(4786), 1, + 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, - ACTIONS(7725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144058] = 2, + [143588] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2895), 5, + ACTIONS(2596), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144070] = 2, + [143600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2899), 5, + ACTIONS(2600), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144082] = 2, + [143612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2907), 5, + ACTIONS(2664), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144094] = 4, - ACTIONS(6459), 1, + [143624] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5213), 1, + STATE(4670), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144110] = 4, - ACTIONS(6459), 1, + [143640] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4793), 1, + STATE(4794), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144126] = 4, - ACTIONS(6459), 1, + [143656] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4795), 1, + STATE(4694), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144142] = 6, - ACTIONS(7771), 1, - sym_identifier, - ACTIONS(7773), 1, - anon_sym_GT, - ACTIONS(7775), 1, - sym_jsx_identifier, - STATE(5422), 1, - sym_nested_identifier, - STATE(5590), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144162] = 4, - ACTIONS(6459), 1, + [143672] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4796), 1, + STATE(4812), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144178] = 3, - ACTIONS(7779), 1, - anon_sym_LT, + [143688] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4824), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7777), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144192] = 4, - ACTIONS(6459), 1, + ACTIONS(7713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143704] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4798), 1, + STATE(4701), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144208] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, + [143720] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4829), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7781), 2, + ACTIONS(7713), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [144226] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [143736] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4799), 1, + STATE(4831), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144242] = 6, - ACTIONS(3791), 1, + [143752] = 4, + ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(4469), 1, + STATE(5414), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 3, anon_sym_EQ, - ACTIONS(5075), 1, anon_sym_COMMA, - ACTIONS(7783), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + anon_sym_RBRACK, + [143768] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7750), 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, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144262] = 4, - ACTIONS(6459), 1, + [143804] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5214), 1, + STATE(4836), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144278] = 3, - ACTIONS(7787), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7785), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144292] = 4, - ACTIONS(6459), 1, + [143820] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4807), 1, + STATE(4843), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144308] = 3, - ACTIONS(7779), 1, - anon_sym_LT, + [143836] = 6, + ACTIONS(3758), 1, + anon_sym_COLON, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(7759), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7777), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144322] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4808), 1, - sym__initializer, + [143856] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7761), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144338] = 3, - ACTIONS(7791), 1, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143872] = 3, + ACTIONS(7766), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7789), 4, + ACTIONS(7764), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [144352] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7793), 1, + [143886] = 5, + ACTIONS(7768), 1, anon_sym_BQUOTE, - ACTIONS(7795), 1, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7772), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4042), 2, + STATE(4026), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [144370] = 3, - ACTIONS(7799), 1, - anon_sym_LT, + [143904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7797), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144384] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4811), 1, - sym__initializer, + ACTIONS(2540), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(2540), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144400] = 6, - ACTIONS(4129), 1, + anon_sym_PIPE_RBRACE, + [143928] = 6, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(7727), 1, + ACTIONS(7774), 1, anon_sym_SEMI, - ACTIONS(7729), 1, + ACTIONS(7776), 1, sym__automatic_semicolon, - ACTIONS(7731), 1, + ACTIONS(7778), 1, sym__function_signature_automatic_semicolon, - STATE(2171), 1, + STATE(2089), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144420] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5217), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144436] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4818), 1, - sym__initializer, + [143948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(2540), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144452] = 6, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - ACTIONS(7370), 1, - anon_sym_extends, - STATE(4039), 1, - sym_object_type, - STATE(4791), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144472] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [143960] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4822), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144488] = 5, - ACTIONS(7761), 1, - anon_sym_LPAREN, - ACTIONS(7801), 1, + [143976] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7780), 1, sym_identifier, - STATE(3462), 1, - sym_decorator_member_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1280), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [144506] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4824), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144522] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2575), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144534] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2575), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144546] = 2, + STATE(5226), 2, + sym__module_export_name, + sym_string, + [143994] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(4065), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2575), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144558] = 3, - ACTIONS(7779), 1, + [144014] = 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(5290), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7777), 4, - sym_jsx_text, + [144034] = 6, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144572] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4825), 1, - sym__initializer, + 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, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [144054] = 6, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7774), 1, anon_sym_SEMI, - [144588] = 2, + 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, - ACTIONS(7803), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [144600] = 4, - ACTIONS(6459), 1, + [144074] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4908), 1, + STATE(4853), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144616] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7805), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144632] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7808), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144648] = 4, - ACTIONS(6459), 1, + [144090] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4836), 1, + STATE(4854), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144664] = 2, + [144106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2607), 5, + ACTIONS(2552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144676] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7811), 1, - anon_sym_SEMI, - ACTIONS(7813), 1, - sym__automatic_semicolon, - ACTIONS(7815), 1, - sym__function_signature_automatic_semicolon, - STATE(4054), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144696] = 2, + [144118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2611), 5, + ACTIONS(2556), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144708] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7817), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144726] = 2, + [144130] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2619), 5, + ACTIONS(2564), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144738] = 2, + [144142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2495), 5, + ACTIONS(2572), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144750] = 4, - ACTIONS(6459), 1, + [144154] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5228), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144766] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, - ACTIONS(7821), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [144784] = 4, - ACTIONS(6369), 1, - anon_sym_DOT, - ACTIONS(7823), 1, - sym_identifier, + [144170] = 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(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [144800] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(7763), 1, - anon_sym_SEMI, - ACTIONS(7765), 1, + ACTIONS(7782), 2, sym__automatic_semicolon, - ACTIONS(7767), 1, - sym__function_signature_automatic_semicolon, - STATE(2341), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144820] = 3, - ACTIONS(7755), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7757), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144834] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [144188] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4992), 1, + STATE(4857), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144850] = 6, - ACTIONS(7280), 1, - anon_sym_EQ, - ACTIONS(7825), 1, - anon_sym_COMMA, - ACTIONS(7827), 1, - anon_sym_RBRACE, - STATE(4870), 1, - aux_sym_enum_body_repeat1, - STATE(5458), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144870] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7829), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144886] = 4, - ACTIONS(7435), 1, + [144204] = 4, + ACTIONS(7574), 1, anon_sym_COLON, - ACTIONS(7832), 1, + ACTIONS(7786), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, + STATE(5489), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144902] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4850), 1, - sym__initializer, + [144220] = 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(5342), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [144240] = 6, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7789), 1, anon_sym_SEMI, - [144918] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4999), 1, - sym__initializer, + 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, - ACTIONS(7753), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144934] = 3, - ACTIONS(7835), 1, + [144260] = 3, + ACTIONS(7766), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7837), 4, + ACTIONS(7764), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [144948] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7839), 1, - anon_sym_SEMI, - ACTIONS(7841), 1, - sym__automatic_semicolon, - ACTIONS(7843), 1, - sym__function_signature_automatic_semicolon, - STATE(4070), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144968] = 3, - ACTIONS(5504), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1799), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144982] = 5, - ACTIONS(6717), 1, + [144274] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, - ACTIONS(7819), 1, + ACTIONS(7784), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7845), 2, + ACTIONS(7795), 2, sym__automatic_semicolon, anon_sym_SEMI, - [145000] = 4, - ACTIONS(6459), 1, + [144292] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4858), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145016] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3568), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145036] = 4, - ACTIONS(6459), 1, + [144308] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5000), 1, + STATE(4866), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145052] = 4, - ACTIONS(6459), 1, + [144324] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7797), 1, + anon_sym_BQUOTE, + ACTIONS(7799), 1, + sym__template_chars, + 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(4862), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, - sym__automatic_semicolon, + ACTIONS(3577), 4, anon_sym_COMMA, - anon_sym_SEMI, - [145068] = 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [144356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2691), 5, + ACTIONS(2580), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145080] = 4, - ACTIONS(6459), 1, + [144368] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4864), 1, + STATE(4871), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145096] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2699), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [144384] = 6, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(7803), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145108] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2699), 5, + ACTIONS(7805), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145120] = 2, + ACTIONS(7807), 1, + sym__function_signature_automatic_semicolon, + STATE(2301), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2703), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145132] = 2, + [144404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 5, + ACTIONS(2584), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145144] = 2, + [144416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, + ACTIONS(2584), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145156] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145172] = 2, + [144428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(2588), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145184] = 2, + [144440] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 5, + ACTIONS(1703), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145196] = 3, - ACTIONS(5550), 1, - sym__automatic_semicolon, + [144452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 4, + ACTIONS(1741), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145210] = 3, - ACTIONS(5552), 1, - sym__automatic_semicolon, + [144464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1689), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145224] = 6, - ACTIONS(7280), 1, + [144476] = 6, + ACTIONS(7237), 1, anon_sym_EQ, - ACTIONS(7850), 1, + ACTIONS(7809), 1, anon_sym_COMMA, - ACTIONS(7852), 1, + ACTIONS(7811), 1, anon_sym_RBRACE, - STATE(4938), 1, + STATE(4885), 1, aux_sym_enum_body_repeat1, - STATE(5458), 1, + STATE(5562), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145244] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4865), 1, - sym__initializer, + [144496] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(2604), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145260] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [144508] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5007), 1, + STATE(4872), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145276] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, + [144524] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7813), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [145294] = 2, + 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, + anon_sym_EQ, + STATE(4875), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2795), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145306] = 3, - ACTIONS(5554), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144592] = 3, + ACTIONS(5557), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 4, + ACTIONS(1761), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145320] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7451), 1, - anon_sym_class, - ACTIONS(7453), 1, - anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145340] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3650), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [144606] = 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, - [145360] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4877), 1, - sym__initializer, + ACTIONS(7825), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(2620), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145376] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [144636] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4867), 1, + STATE(5122), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145392] = 6, - ACTIONS(2537), 1, + [144652] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3701), 1, + STATE(3682), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145412] = 5, - ACTIONS(2291), 1, + [144672] = 5, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(7856), 1, + ACTIONS(7827), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5184), 2, + STATE(5261), 2, sym__module_export_name, sym_string, - [145430] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3709), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145450] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4882), 1, - sym__initializer, + [144690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145466] = 6, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [144702] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3712), 1, + STATE(4259), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145486] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4883), 1, - sym__initializer, + [144722] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7394), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145502] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4884), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145518] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4885), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7829), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145534] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [144758] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4886), 1, + STATE(5121), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145550] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4923), 1, - sym__initializer, + [144774] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7831), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145566] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4890), 1, - sym__initializer, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7394), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145582] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4891), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7834), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145598] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4893), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, + anon_sym_PIPE_RBRACE, + [144814] = 3, + ACTIONS(5173), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145614] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4894), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, + ACTIONS(1813), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145630] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4896), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, + anon_sym_PIPE_RBRACE, + [144828] = 3, + ACTIONS(5175), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 5, - sym__automatic_semicolon, + ACTIONS(1823), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145658] = 2, + [144842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 5, + ACTIONS(7836), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145670] = 2, + [144854] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(3727), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145682] = 2, + [144874] = 3, + ACTIONS(7838), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2915), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145694] = 2, + ACTIONS(7840), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [144888] = 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(5263), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2911), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [144908] = 6, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7803), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145706] = 2, + ACTIONS(7805), 1, + sym__automatic_semicolon, + ACTIONS(7807), 1, + sym__function_signature_automatic_semicolon, + STATE(771), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144928] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4605), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2675), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145718] = 5, - ACTIONS(7858), 1, - sym_identifier, - ACTIONS(7860), 1, - anon_sym_LPAREN, - STATE(2659), 1, - sym_decorator_member_expression, + [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, - STATE(2758), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [145736] = 2, + ACTIONS(7842), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144962] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5123), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 5, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145748] = 4, - ACTIONS(3541), 1, - anon_sym_COLON, - STATE(5384), 1, - sym_type_annotation, + [144978] = 3, + ACTIONS(5185), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 3, - anon_sym_EQ, + ACTIONS(1713), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [145764] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7862), 1, - anon_sym_EQ_GT, + 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, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145780] = 2, + [145012] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4811), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2663), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145792] = 2, + [145028] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5186), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145804] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_EQ_GT, + [145044] = 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, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145820] = 3, - ACTIONS(7870), 1, + ACTIONS(7844), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145062] = 6, + ACTIONS(2478), 1, anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(3660), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7868), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [145834] = 3, - ACTIONS(7835), 1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7837), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [145848] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5028), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7753), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145864] = 6, - ACTIONS(2537), 1, + [145102] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4203), 1, + STATE(3529), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145884] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145896] = 6, - ACTIONS(2537), 1, + [145142] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4301), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5363), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145916] = 2, + [145162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 5, + ACTIONS(2678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145928] = 2, + [145174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 5, + ACTIONS(2678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145940] = 2, + [145186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 5, + ACTIONS(2678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145952] = 6, - ACTIONS(7872), 1, - sym_identifier, - ACTIONS(7874), 1, - anon_sym_GT, - ACTIONS(7876), 1, - sym_jsx_identifier, - STATE(5527), 1, - sym_nested_identifier, - STATE(5903), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145972] = 4, - ACTIONS(6459), 1, + [145198] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4630), 1, + STATE(5187), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145988] = 2, + [145214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(2682), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146000] = 2, + [145226] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3912), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2739), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146012] = 2, + [145246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 5, + ACTIONS(2686), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146024] = 2, + [145258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 5, + ACTIONS(2690), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146036] = 2, + [145270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 5, + ACTIONS(2694), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146048] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7878), 1, - anon_sym_BQUOTE, - ACTIONS(7880), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4136), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146066] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(7811), 1, - anon_sym_SEMI, - ACTIONS(7813), 1, - sym__automatic_semicolon, - ACTIONS(7815), 1, - sym__function_signature_automatic_semicolon, - STATE(2288), 1, - sym_statement_block, + [145282] = 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(5273), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146086] = 2, + [145302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2591), 5, + ACTIONS(2698), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146098] = 2, + [145314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7882), 5, + ACTIONS(2514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146110] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5059), 1, - sym__initializer, + [145326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7846), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146126] = 2, + anon_sym_PIPE_RBRACE, + [145338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 5, + ACTIONS(7848), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146138] = 5, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7884), 1, - sym_identifier, + [145350] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4892), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5423), 2, - sym__module_export_name, - sym_string, - [146156] = 2, + ACTIONS(7850), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7886), 5, + ACTIONS(2710), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146168] = 2, + [145378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7888), 5, + ACTIONS(2710), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146180] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5095), 1, - sym__initializer, + [145390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(2722), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146196] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, - ACTIONS(7890), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146214] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(7839), 1, - anon_sym_SEMI, - ACTIONS(7841), 1, - sym__automatic_semicolon, - ACTIONS(7843), 1, - sym__function_signature_automatic_semicolon, - STATE(2321), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146234] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5107), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [145402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(1795), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146250] = 2, + anon_sym_PIPE_RBRACE, + [145414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 5, + ACTIONS(1849), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146262] = 5, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7892), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5554), 2, - sym__module_export_name, - sym_string, - [146280] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4114), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146300] = 2, + [145426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7298), 5, + ACTIONS(1859), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146312] = 2, + [145438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7894), 5, + ACTIONS(2938), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146324] = 4, - STATE(5265), 1, - sym_import_attribute, + [145450] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4894), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7898), 2, + ACTIONS(7852), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146340] = 6, - ACTIONS(2537), 1, + [145466] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5564), 1, + STATE(5282), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146360] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7763), 1, - anon_sym_SEMI, - ACTIONS(7765), 1, - sym__automatic_semicolon, - ACTIONS(7767), 1, - sym__function_signature_automatic_semicolon, - STATE(769), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146380] = 2, + [145486] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5189), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 5, - anon_sym_EQ, + ACTIONS(7742), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146392] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [145502] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4896), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7900), 2, + ACTIONS(7854), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146410] = 6, - ACTIONS(2537), 1, + [145518] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5401), 1, + STATE(5399), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146430] = 6, - ACTIONS(7902), 1, + [145538] = 6, + ACTIONS(7856), 1, sym_identifier, - ACTIONS(7904), 1, + ACTIONS(7858), 1, anon_sym_GT, - ACTIONS(7906), 1, + ACTIONS(7860), 1, sym_jsx_identifier, - STATE(5499), 1, + STATE(5534), 1, sym_nested_identifier, - STATE(5630), 1, + STATE(5887), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146450] = 5, - ACTIONS(7735), 1, + [145558] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4897), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145574] = 5, + ACTIONS(7770), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7908), 1, + ACTIONS(7862), 1, anon_sym_BQUOTE, - ACTIONS(7910), 1, + ACTIONS(7864), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4165), 2, + STATE(4115), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146468] = 2, + [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, + anon_sym_EQ, + STATE(4898), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145628] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4899), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7298), 5, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146480] = 2, + [145644] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4903), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7912), 5, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146492] = 6, - ACTIONS(2537), 1, + [145660] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3843), 1, - sym__call_signature, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5436), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146512] = 2, + [145680] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4904), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2759), 5, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146524] = 2, + [145696] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7799), 1, + sym__template_chars, + ACTIONS(7868), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4223), 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, + anon_sym_EQ, + STATE(4905), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 5, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146536] = 2, + [145750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2767), 5, + ACTIONS(2772), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146548] = 2, + [145762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2771), 5, + ACTIONS(2776), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146560] = 2, + [145774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2779), 5, + ACTIONS(2780), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146572] = 2, + [145786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2783), 5, + ACTIONS(2784), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146584] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5578), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146604] = 2, + [145798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2791), 5, + ACTIONS(2788), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146616] = 2, + [145810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 5, + ACTIONS(2792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146628] = 2, + [145822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 5, + ACTIONS(2796), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146640] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, - ACTIONS(7914), 1, - anon_sym_BQUOTE, + [145834] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4906), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146658] = 2, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145850] = 4, + ACTIONS(7872), 1, + anon_sym_in, + ACTIONS(7874), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2843), 5, + ACTIONS(7870), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146670] = 2, + [145866] = 4, + ACTIONS(7876), 1, + anon_sym_in, + ACTIONS(7878), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1887), 5, + ACTIONS(7870), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146682] = 2, + [145882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7916), 5, + ACTIONS(2812), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146694] = 2, + [145894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7918), 5, + ACTIONS(2816), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146706] = 2, + [145906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7920), 5, + ACTIONS(1727), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146718] = 4, - ACTIONS(6459), 1, + [145918] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4910), 1, + STATE(4907), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7922), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146734] = 4, - ACTIONS(6459), 1, + [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, + sym_identifier, + ACTIONS(7882), 1, + anon_sym_GT, + ACTIONS(7884), 1, + sym_jsx_identifier, + STATE(5222), 1, + sym_nested_identifier, + STATE(5685), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145974] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4873), 1, + STATE(4908), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146750] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4915), 1, - sym__initializer, + [145990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + ACTIONS(5334), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [146766] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5236), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146786] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3928), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + STATE(4142), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146020] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4909), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146806] = 2, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146036] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5126), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7926), 5, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146818] = 4, - STATE(5269), 1, - sym_import_attribute, + [146052] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4973), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7928), 2, + ACTIONS(7742), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146834] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_BQUOTE, - ACTIONS(7932), 1, - sym__template_chars, + [146068] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4913), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4180), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146852] = 4, - ACTIONS(6459), 1, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146084] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4917), 1, + STATE(4914), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146868] = 5, - ACTIONS(7735), 1, + [146100] = 5, + ACTIONS(7770), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, + ACTIONS(7799), 1, sym__template_chars, - ACTIONS(7936), 1, + ACTIONS(7890), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4310), 2, + STATE(4223), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146886] = 4, - ACTIONS(6459), 1, + [146118] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4918), 1, + STATE(4915), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146902] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5414), 1, - sym__call_signature, + [146134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146922] = 2, + ACTIONS(2852), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2707), 5, + ACTIONS(2856), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146934] = 2, + [146158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2735), 5, + ACTIONS(2860), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146946] = 2, + [146170] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 5, + ACTIONS(2864), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146958] = 2, + [146182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2831), 5, + ACTIONS(2872), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146970] = 2, + [146194] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5340), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146206] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4927), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5340), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146234] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5340), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2851), 5, + ACTIONS(7892), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146982] = 4, - ACTIONS(6459), 1, + [146258] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3789), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146278] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4919), 1, + STATE(4930), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146998] = 4, - ACTIONS(6459), 1, + [146294] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4920), 1, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147014] = 4, - ACTIONS(6459), 1, + [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, anon_sym_EQ, - STATE(5167), 1, + STATE(4932), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7938), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147030] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4926), 1, - sym__initializer, + [146344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7898), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147046] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [146356] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4931), 1, + STATE(4936), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147062] = 4, - ACTIONS(6459), 1, + [146372] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4941), 1, + STATE(4937), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147078] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4146), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [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, - [147098] = 4, - ACTIONS(7944), 1, - anon_sym_in, - ACTIONS(7946), 1, - anon_sym_of, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146406] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4939), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147114] = 4, - ACTIONS(7948), 1, - anon_sym_in, - ACTIONS(7950), 1, - anon_sym_of, + [146422] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4946), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147130] = 4, - ACTIONS(6459), 1, + [146438] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4943), 1, + STATE(4947), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147146] = 4, - ACTIONS(6459), 1, + [146454] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4944), 1, + STATE(4983), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146470] = 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(5338), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146490] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7904), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147162] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [146502] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4945), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147178] = 2, + [146518] = 5, + ACTIONS(7908), 1, + anon_sym_SEMI, + ACTIONS(7910), 1, + sym__automatic_semicolon, + STATE(5450), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5351), 5, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + [146536] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(4952), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147190] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [146552] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4946), 1, + STATE(4953), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147206] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5489), 1, - sym__call_signature, + [146568] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4995), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147226] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7727), 1, - anon_sym_SEMI, - ACTIONS(7729), 1, + ACTIONS(7912), 3, sym__automatic_semicolon, - ACTIONS(7731), 1, - sym__function_signature_automatic_semicolon, - STATE(764), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [146584] = 3, + ACTIONS(4410), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147246] = 2, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5355), 5, + 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, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147258] = 2, + STATE(4954), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5355), 5, - anon_sym_EQ, + ACTIONS(7854), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147270] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [146628] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4955), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7952), 2, + ACTIONS(7854), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [147288] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4018), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [146644] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4956), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147308] = 4, - ACTIONS(6459), 1, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146660] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4949), 1, + STATE(4959), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147324] = 2, + [146676] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5084), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5355), 5, - anon_sym_EQ, + ACTIONS(7715), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147336] = 6, - ACTIONS(2537), 1, + anon_sym_SEMI, + [146692] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(3780), 1, + STATE(3847), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147356] = 4, - ACTIONS(6459), 1, + [146712] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4950), 1, + STATE(5033), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7914), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147372] = 4, - ACTIONS(6459), 1, + [146728] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4951), 1, + STATE(4962), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147388] = 4, - ACTIONS(6459), 1, + [146744] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4740), 1, + STATE(4963), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147404] = 6, - ACTIONS(2537), 1, + [146760] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5352), 1, + STATE(4002), 1, sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147424] = 3, - ACTIONS(4635), 1, - anon_sym_LT, + [146780] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4965), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147438] = 3, - ACTIONS(4507), 1, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146796] = 3, + ACTIONS(4565), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 4, + ACTIONS(4567), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [147452] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(7545), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [146810] = 4, + STATE(5236), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7916), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [146826] = 4, + STATE(5241), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147472] = 6, - ACTIONS(2537), 1, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7918), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [146842] = 3, + ACTIONS(4569), 1, anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4036), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147492] = 4, - ACTIONS(6459), 1, + ACTIONS(4571), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146856] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4960), 1, + STATE(4966), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147508] = 4, - ACTIONS(6459), 1, + [146872] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5032), 1, + STATE(4967), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7954), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147524] = 6, - ACTIONS(2537), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146908] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5284), 1, + STATE(4021), 1, sym__call_signature, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147544] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4964), 1, - sym__initializer, + [146928] = 3, + ACTIONS(4632), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147560] = 4, - ACTIONS(6459), 1, + 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(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(4966), 1, + STATE(4957), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147576] = 4, - ACTIONS(6459), 1, + [146972] = 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(5349), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146992] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4967), 1, + STATE(5036), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7920), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147592] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4044), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147612] = 6, - ACTIONS(2537), 1, + [147028] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5404), 1, + STATE(4030), 1, sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147632] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4970), 1, - sym__initializer, + [147048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7412), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147648] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4971), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147060] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7928), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147664] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4973), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147072] = 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(5430), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147680] = 4, - ACTIONS(6459), 1, + [147092] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4974), 1, + STATE(4970), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147696] = 4, - ACTIONS(6459), 1, + [147108] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4975), 1, + STATE(4971), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147712] = 4, - ACTIONS(6459), 1, + [147124] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4988), 1, + STATE(4972), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147728] = 4, - ACTIONS(6459), 1, + [147140] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4989), 1, + STATE(4980), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147744] = 3, - ACTIONS(4671), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4673), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147758] = 3, - ACTIONS(4679), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4681), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147772] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4990), 1, - sym__initializer, + [147156] = 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(7934), 3, - sym__automatic_semicolon, + ACTIONS(7930), 2, anon_sym_COMMA, - anon_sym_SEMI, - [147788] = 4, - ACTIONS(6459), 1, + anon_sym_RBRACK, + [147174] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4991), 1, + STATE(4986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147804] = 6, - ACTIONS(2537), 1, + [147190] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4053), 1, + STATE(4043), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147824] = 6, - ACTIONS(2537), 1, + [147210] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5238), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5522), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147844] = 4, - ACTIONS(6459), 1, + [147230] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4702), 1, + STATE(4988), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147860] = 6, - ACTIONS(2537), 1, + [147246] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5247), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5528), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147880] = 6, - ACTIONS(2537), 1, + [147266] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5250), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5530), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147900] = 3, - ACTIONS(4554), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4556), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147914] = 3, - ACTIONS(4586), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4588), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147928] = 4, - ACTIONS(6459), 1, + [147286] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5004), 1, + STATE(4990), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147944] = 4, - ACTIONS(6459), 1, + [147302] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5056), 1, + STATE(4697), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7956), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147960] = 4, - ACTIONS(6459), 1, + [147318] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5008), 1, + STATE(5145), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147976] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5306), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [147334] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5000), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147996] = 4, - ACTIONS(6459), 1, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147350] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4861), 1, + STATE(5001), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148012] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5365), 1, - sym__call_signature, + [147366] = 4, + ACTIONS(6376), 1, + anon_sym_LBRACK, + ACTIONS(7932), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148032] = 6, - ACTIONS(2537), 1, + ACTIONS(4156), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147382] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5369), 1, + STATE(5223), 1, sym__call_signature, + STATE(5231), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148052] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5016), 1, - sym__initializer, + [147402] = 5, + ACTIONS(7934), 1, + anon_sym_BQUOTE, + ACTIONS(7936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7939), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148068] = 4, - ACTIONS(6459), 1, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147420] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5017), 1, + STATE(5002), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148084] = 4, - ACTIONS(6459), 1, + [147436] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5021), 1, + STATE(5003), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148100] = 4, - ACTIONS(6459), 1, + [147452] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5023), 1, + STATE(5005), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148116] = 4, - ACTIONS(6459), 1, + [147468] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5024), 1, + STATE(4698), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148132] = 6, - ACTIONS(2537), 1, + [147484] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5434), 1, + STATE(5250), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148152] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5035), 1, - sym__initializer, + [147504] = 3, + ACTIONS(4441), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148168] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5036), 1, - sym__initializer, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148184] = 3, - ACTIONS(4562), 1, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4443), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148198] = 3, - ACTIONS(4590), 1, + [147546] = 3, + ACTIONS(4654), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4592), 4, + ACTIONS(4656), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148212] = 3, - ACTIONS(4562), 1, + [147560] = 3, + ACTIONS(4681), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4683), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148226] = 3, - ACTIONS(4598), 1, + [147574] = 3, + ACTIONS(4441), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4600), 4, + ACTIONS(4443), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148240] = 6, - ACTIONS(2537), 1, + [147588] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5052), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7942), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147604] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5008), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147620] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5505), 1, + STATE(5314), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148260] = 3, - ACTIONS(4602), 1, + [147640] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5012), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147656] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5013), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 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(4604), 4, + ACTIONS(4589), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148274] = 3, - ACTIONS(4562), 1, + [147686] = 3, + ACTIONS(4598), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4600), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148288] = 4, - ACTIONS(6459), 1, + [147700] = 4, + STATE(5533), 1, + sym_import_attribute, + 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, anon_sym_EQ, - STATE(5039), 1, + STATE(5014), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148304] = 6, - ACTIONS(2537), 1, + [147732] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5522), 1, + STATE(5335), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148324] = 4, - ACTIONS(6459), 1, + [147752] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4998), 1, + STATE(5015), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148340] = 6, - ACTIONS(2537), 1, + [147768] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5343), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148360] = 6, - ACTIONS(2537), 1, + [147788] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5411), 1, + STATE(5357), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148380] = 4, - ACTIONS(6459), 1, + [147808] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5054), 1, + STATE(5017), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148396] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5415), 1, - sym__call_signature, + [147824] = 5, + ACTIONS(7946), 1, + anon_sym_SEMI, + ACTIONS(7948), 1, + sym__automatic_semicolon, + STATE(5297), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148416] = 4, - ACTIONS(6459), 1, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + [147842] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5061), 1, + STATE(5019), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148432] = 3, - ACTIONS(4643), 1, + [147858] = 6, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7373), 1, + anon_sym_extends, + STATE(799), 1, + sym_object_type, + STATE(4807), 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, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7952), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147904] = 3, + ACTIONS(7954), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7956), 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(4645), 4, + ACTIONS(7958), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148446] = 3, - ACTIONS(4675), 1, + [147932] = 3, + ACTIONS(7964), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4677), 4, + ACTIONS(7962), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148460] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5133), 1, - sym__initializer, + [147946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7958), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148476] = 4, - ACTIONS(6459), 1, + ACTIONS(7966), 5, anon_sym_EQ, - STATE(5062), 1, - sym__initializer, + 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, + anon_sym_COMMA, + ACTIONS(7968), 1, + anon_sym_RBRACE, + STATE(5192), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148492] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5063), 1, - sym__initializer, + [147978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7333), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148508] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [147990] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(4348), 1, + sym__call_signature, + STATE(5435), 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, - STATE(5090), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148524] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148034] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5068), 1, + STATE(4710), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148540] = 4, - ACTIONS(6459), 1, + [148050] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5069), 1, + STATE(4759), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7970), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148556] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5071), 1, - sym__initializer, + [148066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7333), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148572] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5073), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7972), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148588] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148090] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5074), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148604] = 3, - ACTIONS(7960), 1, - sym_identifier, + [148106] = 3, + ACTIONS(4650), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7962), 4, + ACTIONS(4652), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148618] = 2, + sym_html_character_reference, + anon_sym_LT_SLASH, + [148120] = 3, + ACTIONS(4704), 1, + anon_sym_LT, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7276), 5, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148630] = 2, + [148146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7964), 5, + ACTIONS(7974), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148642] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5080), 1, - sym__initializer, + [148158] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(5105), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148658] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5081), 1, - sym__initializer, + [148178] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7976), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148674] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5082), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7978), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148690] = 5, - ACTIONS(7966), 1, - anon_sym_SEMI, - ACTIONS(7968), 1, - sym__automatic_semicolon, - STATE(5483), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - [148708] = 3, - ACTIONS(4463), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4465), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148722] = 3, - ACTIONS(4495), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4497), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148736] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148202] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5083), 1, + STATE(5034), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7980), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148752] = 3, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5391), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [148218] = 6, + ACTIONS(2478), 1, anon_sym_LT, - anon_sym_QMARK, - [148766] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5084), 1, - sym__initializer, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3811), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148782] = 4, - ACTIONS(6459), 1, + [148238] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(5117), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148798] = 4, - ACTIONS(6459), 1, + [148254] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5089), 1, + STATE(5037), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148814] = 4, - ACTIONS(6459), 1, + [148270] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5098), 1, + STATE(5038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148830] = 2, + [148286] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148842] = 6, - ACTIONS(2537), 1, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148302] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4398), 1, + STATE(4109), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148862] = 2, + [148322] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5039), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 5, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148874] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4127), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148894] = 3, - ACTIONS(7970), 1, + [148338] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(5041), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 4, + ACTIONS(7982), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [148908] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, + anon_sym_SEMI, + [148354] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7498), 1, + anon_sym_abstract, + ACTIONS(7987), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7972), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [148926] = 2, + [148374] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5118), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148938] = 2, + [148390] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5045), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7974), 5, + ACTIONS(7989), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148950] = 4, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7976), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [148966] = 5, - ACTIONS(7978), 1, - anon_sym_BQUOTE, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7983), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [148984] = 6, - ACTIONS(99), 1, + [148406] = 6, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7986), 1, + ACTIONS(7991), 1, anon_sym_class, - ACTIONS(7988), 1, + ACTIONS(7993), 1, anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, + STATE(1253), 1, aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149004] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7351), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149016] = 2, + [148426] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5048), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7990), 5, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149028] = 2, + [148442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5066), 5, + ACTIONS(5189), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [149040] = 6, - ACTIONS(2537), 1, + [148454] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4137), 1, + STATE(4116), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149060] = 6, - ACTIONS(2537), 1, + [148474] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5573), 1, + STATE(5557), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149080] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7992), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149092] = 2, + [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(5), 2, sym_html_comment, sym_comment, - ACTIONS(7994), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149104] = 4, - ACTIONS(6459), 1, + [148514] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5094), 1, + STATE(5049), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7996), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149120] = 6, - ACTIONS(2537), 1, + [148530] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5523), 1, + STATE(5265), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149140] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3814), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [148550] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5050), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149160] = 4, - ACTIONS(6459), 1, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148566] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5096), 1, + STATE(5054), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149176] = 4, - ACTIONS(6459), 1, + [148582] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5097), 1, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149192] = 3, - ACTIONS(8000), 1, - sym_identifier, + [148598] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5057), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8002), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149206] = 3, - ACTIONS(8004), 1, - sym_identifier, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8006), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149220] = 3, - ACTIONS(8010), 1, - anon_sym_LT, + ACTIONS(5189), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8008), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [149234] = 3, - ACTIONS(8014), 1, - anon_sym_LT, + ACTIONS(5189), 5, + anon_sym_EQ, + 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, - ACTIONS(8012), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [149248] = 2, + STATE(5980), 2, + sym__module_export_name, + sym_string, + [148656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8016), 5, + ACTIONS(5108), 5, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [149260] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + 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(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5536), 1, - sym__call_signature, + STATE(1217), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149280] = 3, - ACTIONS(4635), 1, + STATE(1284), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [148686] = 3, + ACTIONS(4410), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 4, + ACTIONS(4412), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149294] = 3, - ACTIONS(4507), 1, + [148700] = 3, + ACTIONS(4449), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 4, + ACTIONS(4451), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149308] = 4, - ACTIONS(6459), 1, + [148714] = 4, + STATE(5547), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(8001), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148730] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5099), 1, + STATE(5058), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149324] = 4, - ACTIONS(6459), 1, + [148746] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5479), 5, anon_sym_EQ, - STATE(5102), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148758] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5059), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149340] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5293), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [148774] = 6, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8003), 1, + anon_sym_as, + ACTIONS(8005), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149360] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5108), 1, - sym__initializer, + [148794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8018), 3, + ACTIONS(8007), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149376] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148806] = 4, + ACTIONS(6338), 1, + anon_sym_DOT, + ACTIONS(8009), 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, anon_sym_EQ, - STATE(5109), 1, + STATE(5062), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149392] = 4, - ACTIONS(6459), 1, + [148838] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5110), 1, + STATE(5064), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149408] = 3, - ACTIONS(4671), 1, + [148854] = 3, + ACTIONS(4565), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4673), 4, + ACTIONS(4567), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149422] = 3, - ACTIONS(4679), 1, + [148868] = 3, + ACTIONS(4569), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 4, + ACTIONS(4571), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149436] = 4, - ACTIONS(6459), 1, + [148882] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5111), 1, + STATE(5065), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149452] = 4, - ACTIONS(6459), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148918] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5114), 1, + STATE(5067), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149468] = 3, - ACTIONS(4554), 1, + [148934] = 3, + ACTIONS(4632), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4556), 4, + ACTIONS(4634), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149482] = 3, - ACTIONS(4586), 1, + [148948] = 3, + ACTIONS(4636), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4588), 4, + ACTIONS(4638), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149496] = 4, - ACTIONS(6459), 1, + [148962] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5115), 1, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7989), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149512] = 4, - ACTIONS(6459), 1, + [148978] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5116), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149528] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(8020), 1, - anon_sym_EQ_GT, + [148994] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5076), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149544] = 4, - ACTIONS(6459), 1, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149010] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5121), 1, + STATE(5200), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8011), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149560] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5268), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [149026] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5203), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149580] = 4, - STATE(5329), 1, - sym_import_attribute, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149042] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5078), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(8023), 2, + ACTIONS(7982), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [149596] = 4, - STATE(5332), 1, - sym_import_attribute, + [149058] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5080), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(8025), 2, + ACTIONS(7982), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [149612] = 4, - ACTIONS(6459), 1, + [149074] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5122), 1, + STATE(4735), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8015), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149628] = 6, - ACTIONS(2537), 1, + [149090] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5577), 1, + STATE(5214), 1, sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149648] = 2, + [149110] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5081), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5186), 5, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149126] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(5082), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7982), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149660] = 2, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5190), 5, + [149162] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(4765), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8017), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149672] = 3, - ACTIONS(4562), 1, + anon_sym_SEMI, + [149178] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5085), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149194] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5086), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7982), 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(4564), 4, + ACTIONS(4443), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149686] = 3, - ACTIONS(4590), 1, + [149224] = 3, + ACTIONS(4624), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4592), 4, + ACTIONS(4626), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149700] = 3, - ACTIONS(4562), 1, + [149238] = 3, + ACTIONS(4441), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4443), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149714] = 3, - ACTIONS(4598), 1, + [149252] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4752), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8017), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149268] = 3, + ACTIONS(4654), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4600), 4, + ACTIONS(4656), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149728] = 3, - ACTIONS(4602), 1, + [149282] = 3, + ACTIONS(4681), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4604), 4, + ACTIONS(4683), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149742] = 3, - ACTIONS(4562), 1, + [149296] = 3, + ACTIONS(4441), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4443), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149756] = 5, - ACTIONS(8027), 1, - anon_sym_SEMI, - ACTIONS(8029), 1, - sym__automatic_semicolon, - STATE(5470), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - [149774] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5190), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149786] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5123), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7998), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149802] = 2, + [149310] = 5, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(8019), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5524), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149814] = 4, - ACTIONS(6459), 1, + STATE(4629), 2, + sym__module_export_name, + sym_string, + [149328] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5124), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149830] = 3, - ACTIONS(4643), 1, + [149344] = 3, + ACTIONS(4587), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4645), 4, + ACTIONS(4589), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149844] = 6, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, - ACTIONS(8031), 1, - anon_sym_as, - ACTIONS(8033), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149864] = 6, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8035), 1, - anon_sym_RBRACE, - STATE(5175), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149884] = 3, - ACTIONS(4675), 1, + [149358] = 3, + ACTIONS(4598), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4677), 4, + ACTIONS(4600), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149898] = 2, + [149372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8037), 5, + ACTIONS(7349), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149910] = 6, - ACTIONS(2537), 1, + [149384] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3869), 1, + STATE(4378), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149930] = 2, + [149404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5190), 5, + ACTIONS(7353), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149416] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(4883), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8017), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149942] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [149432] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4812), 1, + STATE(5026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8039), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149958] = 4, - ACTIONS(6459), 1, + [149448] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4817), 1, + STATE(5092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8041), 3, + ACTIONS(8021), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149974] = 4, - ACTIONS(6459), 1, + [149464] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5125), 1, + STATE(4611), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8021), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149480] = 2, + 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, + [149492] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8023), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149504] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8025), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149990] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [149516] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5126), 1, + STATE(5091), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8027), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150006] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7988), 1, - anon_sym_abstract, - ACTIONS(8043), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [149532] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5096), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150026] = 4, - ACTIONS(6459), 1, + ACTIONS(8027), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149548] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(5127), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8018), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150042] = 3, - ACTIONS(4463), 1, + [149564] = 3, + ACTIONS(4650), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4465), 4, + ACTIONS(4652), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [150056] = 3, - ACTIONS(4495), 1, + [149578] = 3, + ACTIONS(4704), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 4, + ACTIONS(4706), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [150070] = 4, - ACTIONS(6459), 1, + [149592] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5134), 1, + STATE(5213), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150086] = 6, - ACTIONS(2537), 1, + [149608] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5489), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149620] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5192), 1, + STATE(4456), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150106] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5135), 1, - sym__initializer, + [149640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150122] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5136), 1, - sym__initializer, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + [149672] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8031), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150138] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5137), 1, - sym__initializer, + 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150154] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4612), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149716] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8033), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150170] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [149728] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5138), 1, + STATE(5097), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8027), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150186] = 4, - ACTIONS(6459), 1, + [149744] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4644), 1, + STATE(5098), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(8027), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150202] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5139), 1, - sym__initializer, + [149760] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7799), 1, + sym__template_chars, + ACTIONS(8035), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7639), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150218] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(8047), 1, - anon_sym_EQ_GT, + anon_sym_PIPE_RBRACE, + [149790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150234] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4810), 1, - sym__initializer, + ACTIONS(7289), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8050), 3, + ACTIONS(8037), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150250] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5140), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7396), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150266] = 6, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [149826] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(4389), 1, + sym__call_signature, + STATE(5435), 1, sym_type_parameters, - STATE(5482), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149846] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(8039), 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, + [149862] = 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(5471), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150286] = 2, + [149882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5262), 5, - anon_sym_EQ, + ACTIONS(7406), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [150298] = 4, - ACTIONS(7435), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149894] = 4, + ACTIONS(7574), 1, anon_sym_COLON, - ACTIONS(8052), 1, + ACTIONS(8042), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5314), 3, + STATE(5489), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150314] = 4, - ACTIONS(7435), 1, + [149910] = 4, + ACTIONS(7574), 1, anon_sym_COLON, - ACTIONS(8055), 1, + ACTIONS(8045), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, + STATE(5302), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150330] = 6, - ACTIONS(2537), 1, + [149926] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5520), 1, + STATE(5490), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150350] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7376), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150362] = 6, - ACTIONS(2537), 1, + [149946] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4418), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5523), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149966] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(8048), 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, + [149982] = 6, + ACTIONS(1657), 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(243), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150382] = 2, + [150002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7378), 5, + ACTIONS(7249), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150394] = 4, - ACTIONS(6459), 1, + [150014] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4614), 1, + STATE(5144), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150410] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(8058), 1, - anon_sym_EQ_GT, + [150030] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150426] = 2, + ACTIONS(1833), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 5, + ACTIONS(1839), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150438] = 2, + [150054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 5, + ACTIONS(1873), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150450] = 4, - ACTIONS(6459), 1, + [150066] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(5147), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150466] = 6, - ACTIONS(8063), 1, - sym_identifier, - ACTIONS(8065), 1, - anon_sym_GT, - ACTIONS(8067), 1, - sym_jsx_identifier, - STATE(5461), 1, - sym_nested_identifier, - STATE(5665), 1, - sym_jsx_namespace_name, + [150082] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8051), 1, + anon_sym_BQUOTE, + ACTIONS(8053), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150486] = 4, - ACTIONS(6459), 1, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [150100] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5143), 1, + STATE(5156), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150502] = 4, - ACTIONS(6459), 1, + [150116] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5144), 1, + STATE(4734), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150518] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4927), 1, - sym__initializer, + [150132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(2844), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150534] = 2, + anon_sym_PIPE_RBRACE, + [150144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1897), 5, + ACTIONS(1873), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150546] = 2, + [150156] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5158), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150558] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4746), 1, - sym__initializer, + [150172] = 3, + ACTIONS(8055), 1, + sym_identifier, + 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(8059), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [150574] = 4, - ACTIONS(6459), 1, + [150204] = 5, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(8061), 1, + anon_sym_LBRACE, + STATE(5149), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8063), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [150222] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4759), 1, + STATE(5159), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8071), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150590] = 4, - ACTIONS(6459), 1, + [150238] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5145), 1, + STATE(4777), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150606] = 4, - ACTIONS(6459), 1, + [150254] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5146), 1, + STATE(4964), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150622] = 2, + [150270] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5170), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8073), 5, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150634] = 4, - ACTIONS(6459), 1, + [150286] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5101), 1, + STATE(5171), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8071), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150650] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7380), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150662] = 6, - ACTIONS(2537), 1, + [150322] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4421), 1, + STATE(4388), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150682] = 2, + [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(5), 2, sym_html_comment, sym_comment, - ACTIONS(7382), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150694] = 2, + [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(5), 2, sym_html_comment, sym_comment, - ACTIONS(7384), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [150382] = 6, + ACTIONS(1657), 1, + anon_sym_LBRACE, + ACTIONS(7774), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150706] = 2, + ACTIONS(7776), 1, + 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, - ACTIONS(1901), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150718] = 4, - ACTIONS(6459), 1, + [150402] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4963), 1, + STATE(5172), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150734] = 2, + [150418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2747), 5, + ACTIONS(2848), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150746] = 2, + [150430] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 5, + ACTIONS(2904), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150758] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(8075), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [150442] = 3, + ACTIONS(7723), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150778] = 4, - ACTIONS(6459), 1, + ACTIONS(7721), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150456] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5231), 1, + STATE(5208), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150794] = 6, - ACTIONS(2537), 1, + [150472] = 3, + ACTIONS(8067), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4139), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150814] = 2, + ACTIONS(8065), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150486] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4808), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150826] = 2, + [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, + anon_sym_EQ, + STATE(4621), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8077), 5, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150838] = 2, + [150532] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4626), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8079), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150850] = 2, + [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(8081), 5, - sym__automatic_semicolon, + ACTIONS(8073), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150862] = 2, + anon_sym_GT, + [150566] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4627), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8083), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150874] = 4, - ACTIONS(6459), 1, + [150582] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5177), 1, + STATE(5110), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8085), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150890] = 6, - ACTIONS(2537), 1, + [150598] = 3, + ACTIONS(8077), 1, anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3904), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150910] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4642), 1, - sym__initializer, + ACTIONS(8075), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8087), 3, + ACTIONS(7534), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [150926] = 4, - ACTIONS(6459), 1, + [150624] = 4, + ACTIONS(1699), 1, + anon_sym_DOT, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4252), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [150640] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4987), 1, + STATE(4635), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150942] = 2, + [150656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8089), 5, + ACTIONS(2746), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150954] = 2, + [150668] = 4, + ACTIONS(1791), 1, + anon_sym_DOT, + ACTIONS(4250), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, - sym__automatic_semicolon, + ACTIONS(4252), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150966] = 2, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [150684] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4636), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8091), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150978] = 2, + [150700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 5, + ACTIONS(2916), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150990] = 4, - ACTIONS(6459), 1, + [150712] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8079), 5, anon_sym_EQ, - STATE(4655), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [150724] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4637), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8093), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151006] = 2, + [150740] = 3, + ACTIONS(8083), 1, + anon_sym_LT, 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, - [151018] = 2, + ACTIONS(8081), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150754] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4638), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151030] = 4, - ACTIONS(1869), 1, - anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_LBRACE, + [150770] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4639), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 3, + ACTIONS(7709), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [150786] = 3, + ACTIONS(7723), 1, anon_sym_LT, - anon_sym_LBRACE_PIPE, - [151046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2819), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151058] = 2, + ACTIONS(7721), 4, + sym_jsx_text, + 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(2823), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151070] = 4, - ACTIONS(1873), 1, - anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_LBRACE, + ACTIONS(5242), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [150814] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4845), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 3, + ACTIONS(7715), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [151086] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [150830] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5128), 1, + STATE(4651), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151102] = 6, - ACTIONS(2537), 1, + [150846] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5195), 1, + STATE(3915), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151122] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8097), 1, - anon_sym_BQUOTE, - ACTIONS(8099), 1, - sym__template_chars, + [150866] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4851), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [151140] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4666), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + ACTIONS(7742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150882] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4864), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151160] = 4, - ACTIONS(6459), 1, + ACTIONS(7742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150898] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4669), 1, + STATE(4677), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151176] = 2, + [150914] = 3, + ACTIONS(8087), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7595), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8085), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [151188] = 4, - ACTIONS(6459), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150928] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4946), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150940] = 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, + [150952] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4672), 1, + STATE(4802), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(8089), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151204] = 2, + [150968] = 4, + ACTIONS(6338), 1, + anon_sym_DOT, + ACTIONS(8091), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [150984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2567), 5, + ACTIONS(2652), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151216] = 2, + [150996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2587), 5, + ACTIONS(8093), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151228] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4954), 1, - sym__initializer, + [151008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8101), 3, + ACTIONS(2656), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [151244] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5161), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [151020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [151260] = 4, - ACTIONS(6369), 1, - anon_sym_DOT, - ACTIONS(8103), 1, - sym_identifier, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [151276] = 4, - ACTIONS(6459), 1, + [151052] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4683), 1, + STATE(4688), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151292] = 4, - ACTIONS(6459), 1, + [151068] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4684), 1, + STATE(5079), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151308] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4701), 1, - sym__initializer, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, + [151104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8101), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8101), 1, + anon_sym_SQUOTE, + STATE(4572), 1, + aux_sym_string_repeat2, + ACTIONS(8105), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151157] = 4, + ACTIONS(8109), 1, anon_sym_COMMA, - anon_sym_SEMI, - [151324] = 3, - ACTIONS(8105), 1, - sym_identifier, + STATE(4464), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8107), 4, + ACTIONS(8107), 2, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [151338] = 5, - ACTIONS(6717), 1, + 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(5), 2, + sym_html_comment, + sym_comment, + [151189] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8114), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8109), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151356] = 5, - ACTIONS(7394), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151223] = 5, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(8111), 1, - anon_sym_LBRACE, - STATE(5166), 1, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8113), 2, + [151240] = 5, + ACTIONS(7339), 1, anon_sym_COMMA, + ACTIONS(7440), 1, + anon_sym_LBRACE, + ACTIONS(7442), 1, anon_sym_LBRACE_PIPE, - [151374] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4993), 1, - sym__initializer, + STATE(4602), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, + [151257] = 4, + ACTIONS(8118), 1, anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8121), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [151390] = 5, - ACTIONS(3), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [151289] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8115), 1, - anon_sym_SQUOTE, - STATE(4551), 1, - aux_sym_string_repeat2, - ACTIONS(8117), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151407] = 4, - ACTIONS(8121), 1, + 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(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8131), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151319] = 4, + ACTIONS(8135), 1, anon_sym_COMMA, - STATE(4469), 1, + STATE(4600), 1, aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8119), 2, + ACTIONS(8133), 2, anon_sym_LBRACE, anon_sym_implements, - [151422] = 4, - ACTIONS(8124), 1, + [151334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8137), 1, + anon_sym_DQUOTE, + STATE(4546), 1, + aux_sym_string_repeat1, + ACTIONS(8139), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151351] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4608), 1, + STATE(4472), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8126), 2, + ACTIONS(8141), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151437] = 4, - ACTIONS(8124), 1, + [151366] = 4, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(5441), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8143), 2, anon_sym_COMMA, - STATE(4477), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RPAREN, + [151381] = 4, + ACTIONS(4967), 1, + anon_sym_COMMA, + STATE(4584), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8128), 2, + ACTIONS(7269), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151452] = 5, - ACTIONS(6616), 1, + [151396] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8130), 1, - anon_sym_RBRACK, + ACTIONS(8145), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151469] = 5, - ACTIONS(7186), 1, + [151413] = 5, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(8132), 1, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8134), 1, + ACTIONS(8149), 1, anon_sym_GT, - STATE(5295), 1, + STATE(5384), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151486] = 5, - ACTIONS(8136), 1, - anon_sym_LBRACE, - ACTIONS(8138), 1, - anon_sym_COMMA, - ACTIONS(8141), 1, - anon_sym_LBRACE_PIPE, - STATE(4474), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151503] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8143), 1, - anon_sym_RBRACK, + [151430] = 5, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(8151), 1, + anon_sym_LT, + STATE(1901), 1, + sym_arguments, + STATE(1902), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151520] = 5, - ACTIONS(2537), 1, + [151447] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3739), 1, + STATE(3637), 1, sym_formal_parameters, - STATE(5506), 1, + STATE(5422), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151537] = 4, - ACTIONS(8124), 1, + [151464] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 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(4559), 1, + STATE(4516), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8145), 2, + ACTIONS(8155), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151552] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8147), 1, - anon_sym_DQUOTE, - STATE(4563), 1, - aux_sym_string_repeat1, - ACTIONS(8149), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151569] = 5, - ACTIONS(6616), 1, + [151496] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8151), 1, + ACTIONS(8157), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151586] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [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, - ACTIONS(8153), 1, - sym_html_character_reference, - ACTIONS(8156), 1, - anon_sym_DQUOTE, - ACTIONS(8158), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4480), 1, - aux_sym__jsx_string_repeat1, - [151605] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [151530] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4517), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8147), 1, - anon_sym_SQUOTE, - STATE(4564), 1, - aux_sym_string_repeat2, - ACTIONS(8161), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151622] = 5, - ACTIONS(6616), 1, + sym_comment, + ACTIONS(8159), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151545] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8163), 1, - anon_sym_COLON, + ACTIONS(8161), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151639] = 5, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3048), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, + [151562] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151656] = 5, - ACTIONS(6616), 1, + ACTIONS(8163), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151577] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, ACTIONS(8165), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151673] = 3, - ACTIONS(6369), 1, - anon_sym_DOT, + [151594] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5461), 1, + sym_type_parameters, + STATE(5718), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + [151611] = 5, + ACTIONS(2478), 1, anon_sym_LT, - [151686] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5439), 1, + STATE(5442), 1, sym_type_parameters, - STATE(5823), 1, + STATE(5669), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151703] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8167), 1, - anon_sym_DQUOTE, - STATE(4492), 1, - aux_sym_string_repeat1, - ACTIONS(8169), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151720] = 3, - ACTIONS(6125), 1, + [151628] = 3, + ACTIONS(6068), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [151733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [151641] = 3, ACTIONS(8167), 1, - anon_sym_SQUOTE, - STATE(4494), 1, - aux_sym_string_repeat2, - ACTIONS(8171), 2, - sym_unescaped_single_string_fragment, sym_escape_sequence, - [151750] = 3, - ACTIONS(8173), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 3, + ACTIONS(8169), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [151654] = 5, + ACTIONS(3467), 1, anon_sym_LPAREN, + ACTIONS(6350), 1, anon_sym_LT, - anon_sym_QMARK, - [151763] = 4, - ACTIONS(8124), 1, + STATE(3046), 1, + sym_arguments, + STATE(3197), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151671] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4489), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 2, + ACTIONS(8172), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151778] = 5, + [151686] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8177), 1, + ACTIONS(8174), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4501), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8176), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151795] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8181), 1, - sym_html_character_reference, - ACTIONS(8184), 1, - anon_sym_SQUOTE, - ACTIONS(8186), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4493), 1, - aux_sym__jsx_string_repeat2, - [151814] = 5, + [151703] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8177), 1, + ACTIONS(8174), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4503), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8178), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151831] = 4, - ACTIONS(8124), 1, - anon_sym_COMMA, - STATE(4491), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151846] = 4, - ACTIONS(7280), 1, - anon_sym_EQ, - STATE(5458), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8193), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151861] = 5, - ACTIONS(2537), 1, + [151720] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5396), 1, + STATE(5452), 1, sym_type_parameters, - STATE(5600), 1, + STATE(5763), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151878] = 5, - ACTIONS(2537), 1, + [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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151754] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8182), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151771] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5368), 1, + STATE(5277), 1, sym_type_parameters, - STATE(5601), 1, + STATE(5920), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151895] = 5, + [151788] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8195), 1, + ACTIONS(8182), 1, anon_sym_SQUOTE, - STATE(4586), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8197), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151912] = 4, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8199), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151927] = 5, - ACTIONS(6616), 1, + [151805] = 5, + ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8201), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151944] = 5, - ACTIONS(6427), 1, - anon_sym_LPAREN, - ACTIONS(6433), 1, - anon_sym_LT, - STATE(3238), 1, - sym_arguments, - STATE(3409), 1, - sym_type_arguments, + ACTIONS(8184), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151961] = 5, - ACTIONS(6616), 1, + [151822] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8203), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151978] = 4, - ACTIONS(6320), 1, - anon_sym_EQ, - STATE(5585), 1, - sym_default_type, + ACTIONS(8186), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8205), 2, - anon_sym_COMMA, - anon_sym_GT, - [151993] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5381), 1, - sym_type_parameters, - STATE(5680), 1, - sym_formal_parameters, + [151839] = 4, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5324), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152010] = 3, - ACTIONS(8207), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(5166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151854] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152023] = 3, - ACTIONS(7976), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(4085), 3, + ACTIONS(8137), 1, + anon_sym_SQUOTE, + STATE(4548), 1, + aux_sym_string_repeat2, + ACTIONS(8188), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151871] = 5, + ACTIONS(6617), 1, anon_sym_AMP, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_extends, - [152036] = 5, - ACTIONS(6616), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151888] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8212), 1, - anon_sym_RBRACK, + ACTIONS(8192), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152053] = 4, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5430), 1, - sym__from_clause, + [151905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4986), 2, + ACTIONS(8194), 4, sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [152068] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8216), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152085] = 5, - ACTIONS(2537), 1, + [151916] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5405), 1, + STATE(5278), 1, sym_type_parameters, - STATE(5936), 1, + STATE(5755), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152102] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8218), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152119] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8220), 1, - anon_sym_QMARK, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8222), 1, - anon_sym_DQUOTE, - STATE(4524), 1, - aux_sym_string_repeat1, - ACTIONS(8224), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8222), 1, - anon_sym_SQUOTE, - STATE(4529), 1, - aux_sym_string_repeat2, - ACTIONS(8226), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152170] = 4, - ACTIONS(7280), 1, + [151950] = 5, + ACTIONS(1779), 1, + anon_sym_COMMA, + ACTIONS(8196), 1, anon_sym_EQ, - STATE(5234), 1, - sym__initializer, + ACTIONS(8198), 1, + anon_sym_RBRACK, + STATE(4620), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8228), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152185] = 5, - ACTIONS(6616), 1, + [151967] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8230), 1, - anon_sym_COLON, + ACTIONS(8200), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152202] = 4, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(4580), 1, - aux_sym_sequence_expression_repeat1, + [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, sym_comment, - ACTIONS(7314), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152217] = 4, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5403), 1, - sym__from_clause, + [152001] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8232), 2, + ACTIONS(8202), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152232] = 4, - ACTIONS(8236), 1, + [152016] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4469), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8234), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152247] = 2, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8238), 4, + ACTIONS(8204), 2, sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, anon_sym_SEMI, - [152258] = 5, - ACTIONS(8240), 1, - sym_identifier, - STATE(3829), 1, - sym_nested_type_identifier, - STATE(4574), 1, - sym_generic_type, - STATE(5865), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152275] = 5, - ACTIONS(6306), 1, + [152031] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6690), 1, - anon_sym_LPAREN, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152292] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8242), 1, - anon_sym_DQUOTE, - STATE(4552), 1, - aux_sym_string_repeat1, - ACTIONS(8179), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152309] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5409), 1, + STATE(5481), 1, sym_type_parameters, - STATE(5743), 1, + STATE(5970), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152326] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + [152048] = 5, + ACTIONS(6390), 1, anon_sym_LPAREN, - STATE(5501), 1, - sym_type_parameters, - STATE(5815), 1, - sym_formal_parameters, + 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, - [152343] = 5, - ACTIONS(7356), 1, + [152065] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8244), 1, - anon_sym_QMARK, + ACTIONS(8206), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152360] = 4, - ACTIONS(8246), 1, - anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + [152082] = 3, + ACTIONS(7932), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7695), 2, - anon_sym_LBRACE, - anon_sym_GT, - [152375] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8242), 1, - anon_sym_SQUOTE, - STATE(4553), 1, - aux_sym_string_repeat2, - ACTIONS(8189), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152392] = 5, - ACTIONS(6616), 1, + ACTIONS(4156), 3, anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, anon_sym_extends, - ACTIONS(8249), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152409] = 5, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8251), 1, - anon_sym_EQ, - ACTIONS(8253), 1, - anon_sym_RBRACK, - STATE(4625), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8255), 1, - anon_sym_DQUOTE, - STATE(4552), 1, - aux_sym_string_repeat1, - ACTIONS(8179), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152443] = 6, + [152095] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8257), 1, + ACTIONS(8208), 1, sym_html_character_reference, - ACTIONS(8259), 1, + ACTIONS(8210), 1, anon_sym_DQUOTE, - ACTIONS(8261), 1, + ACTIONS(8212), 1, sym_unescaped_double_jsx_string_fragment, - STATE(4605), 1, + STATE(4547), 1, aux_sym__jsx_string_repeat1, - [152462] = 6, + [152114] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8259), 1, + ACTIONS(8210), 1, anon_sym_SQUOTE, - ACTIONS(8263), 1, + ACTIONS(8214), 1, sym_html_character_reference, - ACTIONS(8265), 1, + ACTIONS(8216), 1, sym_unescaped_single_jsx_string_fragment, - STATE(4606), 1, + STATE(4551), 1, aux_sym__jsx_string_repeat2, - [152481] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8267), 1, - anon_sym_export, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152498] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8269), 1, - anon_sym_DQUOTE, - STATE(4548), 1, - aux_sym_string_repeat1, - ACTIONS(8271), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152150] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8220), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8269), 1, - anon_sym_SQUOTE, - STATE(4554), 1, - aux_sym_string_repeat2, - ACTIONS(8273), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152532] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8195), 1, - anon_sym_DQUOTE, - STATE(4584), 1, - aux_sym_string_repeat1, - ACTIONS(8275), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152549] = 5, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + [152167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152566] = 5, - ACTIONS(6616), 1, + ACTIONS(6001), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152178] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8277), 1, - anon_sym_COLON, + ACTIONS(8222), 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152583] = 5, + [152212] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8115), 1, + ACTIONS(8231), 1, anon_sym_DQUOTE, - STATE(4549), 1, + STATE(4536), 1, aux_sym_string_repeat1, - ACTIONS(8279), 2, + ACTIONS(8233), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152600] = 5, - ACTIONS(8281), 1, - sym_identifier, - STATE(4466), 1, - sym_nested_type_identifier, - STATE(4613), 1, - sym_generic_type, - STATE(5865), 1, - sym_nested_identifier, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152617] = 5, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(8283), 1, - anon_sym_LBRACE, - ACTIONS(8285), 1, - anon_sym_LBRACE_PIPE, - STATE(4474), 1, - aux_sym_extends_type_clause_repeat1, + [152246] = 4, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(5562), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152634] = 4, - ACTIONS(8124), 1, + ACTIONS(8237), 2, anon_sym_COMMA, - STATE(4602), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + [152261] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8239), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8287), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152649] = 5, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(8289), 1, - anon_sym_LBRACE, - ACTIONS(8291), 1, - anon_sym_LBRACE_PIPE, - STATE(4474), 1, - aux_sym_extends_type_clause_repeat1, + [152278] = 4, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5535), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152666] = 4, - ACTIONS(8293), 1, + ACTIONS(8241), 2, anon_sym_COMMA, - STATE(4546), 1, - aux_sym_array_repeat1, + anon_sym_GT, + [152293] = 3, + ACTIONS(6338), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5319), 2, - anon_sym_RPAREN, + 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, - [152681] = 4, - ACTIONS(6359), 1, - anon_sym_STAR, - ACTIONS(6363), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5741), 2, - sym_namespace_import, - sym_named_imports, - [152696] = 5, + [152323] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8296), 1, + ACTIONS(8245), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8103), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152713] = 5, + [152340] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8247), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152357] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8298), 1, - anon_sym_DQUOTE, - STATE(4552), 1, - aux_sym_string_repeat1, - ACTIONS(8179), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8245), 1, + anon_sym_SQUOTE, + STATE(4572), 1, + aux_sym_string_repeat2, + ACTIONS(8105), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [152730] = 5, - ACTIONS(6616), 1, + [152374] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8300), 1, + ACTIONS(8249), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152747] = 5, + [152391] = 4, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8251), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [152406] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8298), 1, + ACTIONS(8253), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4545), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8255), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152764] = 5, + [152423] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8257), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152440] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8259), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152457] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8302), 1, + ACTIONS(8261), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8304), 2, + ACTIONS(8103), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152781] = 5, + [152474] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8307), 1, + ACTIONS(8261), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8309), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152798] = 5, + [152491] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8296), 1, - anon_sym_SQUOTE, - STATE(4553), 1, - aux_sym_string_repeat2, - ACTIONS(8189), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8263), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [152815] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8312), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [152508] = 6, + ACTIONS(3), 1, sym_comment, - [152832] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8314), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [152849] = 5, + ACTIONS(8265), 1, + 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(8255), 1, + ACTIONS(8263), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152866] = 4, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5477), 1, - sym__from_clause, + [152544] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5329), 1, + sym_type_parameters, + STATE(5820), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152881] = 4, - ACTIONS(8318), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_variable_declaration_repeat1, + [152561] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5330), 1, + sym_type_parameters, + STATE(5807), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152896] = 5, - ACTIONS(6616), 1, + [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(6618), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8323), 1, - anon_sym_RBRACK, + ACTIONS(8281), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152913] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8325), 1, - anon_sym_RBRACK, + [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, - [152930] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8327), 1, - anon_sym_RPAREN, + ACTIONS(8287), 2, + anon_sym_COMMA, + anon_sym_GT, + [152646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152947] = 5, + ACTIONS(8289), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [152657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8283), 1, + anon_sym_SQUOTE, + STATE(4558), 1, + aux_sym_string_repeat2, + ACTIONS(8291), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152674] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8329), 1, + ACTIONS(8293), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8103), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152964] = 5, + [152691] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8329), 1, + ACTIONS(8293), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152981] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8331), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152992] = 2, + [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(6041), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153003] = 5, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - ACTIONS(8333), 1, + ACTIONS(7675), 2, + anon_sym_LBRACE, anon_sym_GT, - STATE(5295), 1, - sym_type_parameter, + [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, - [153020] = 4, - ACTIONS(8335), 1, - anon_sym_EQ, - STATE(5271), 1, - sym__initializer, + [152740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [153035] = 5, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8251), 1, - anon_sym_EQ, - ACTIONS(8337), 1, - anon_sym_RBRACK, - STATE(5155), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(8300), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152751] = 5, + ACTIONS(3), 1, sym_comment, - [153052] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5512), 1, - sym_type_parameters, - STATE(5661), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [153069] = 5, + ACTIONS(8231), 1, + anon_sym_SQUOTE, + STATE(4538), 1, + aux_sym_string_repeat2, + ACTIONS(8302), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152768] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8339), 1, + ACTIONS(8304), 1, anon_sym_DQUOTE, - STATE(4532), 1, + STATE(4571), 1, aux_sym_string_repeat1, - ACTIONS(8341), 2, + ACTIONS(8306), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [153086] = 4, - ACTIONS(8236), 1, - anon_sym_COMMA, - STATE(4520), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8343), 2, - anon_sym_LBRACE, - anon_sym_implements, - [153101] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5514), 1, - sym_type_parameters, - STATE(5763), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153118] = 5, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(7555), 1, - anon_sym_LBRACE, - ACTIONS(7557), 1, - anon_sym_LBRACE_PIPE, - STATE(4545), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153135] = 5, - ACTIONS(6616), 1, + [152785] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8345), 1, + ACTIONS(8308), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153152] = 5, - ACTIONS(7186), 1, + [152802] = 5, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(8132), 1, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8347), 1, + ACTIONS(8310), 1, anon_sym_GT, - STATE(5295), 1, + STATE(5384), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153169] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8349), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153186] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8351), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153203] = 3, - ACTIONS(8353), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [153216] = 4, - ACTIONS(8355), 1, + [152819] = 4, + ACTIONS(8312), 1, anon_sym_COMMA, - STATE(4580), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4791), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153231] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5534), 1, - sym_type_parameters, - STATE(5905), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153248] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8358), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153265] = 5, - ACTIONS(1672), 1, - anon_sym_while, - ACTIONS(2445), 1, - anon_sym_LBRACE, - ACTIONS(6333), 1, - anon_sym_DOT, - STATE(869), 1, - sym_statement_block, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153282] = 5, + ACTIONS(5567), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [152834] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8360), 1, + ACTIONS(8315), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8317), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [153299] = 5, - ACTIONS(1672), 1, - anon_sym_while, - ACTIONS(2445), 1, - anon_sym_LBRACE, - ACTIONS(6670), 1, - anon_sym_DOT, - STATE(869), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153316] = 5, + [152851] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8360), 1, + ACTIONS(8304), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4581), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8320), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [153333] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8362), 1, - anon_sym_QMARK, + [152868] = 3, + ACTIONS(8322), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153350] = 5, - ACTIONS(4514), 1, + ACTIONS(3758), 3, anon_sym_LPAREN, - ACTIONS(8364), 1, anon_sym_LT, - STATE(1995), 1, - sym_arguments, - STATE(1996), 1, - sym_type_arguments, + anon_sym_QMARK, + [152881] = 4, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(5306), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153367] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8366), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [152896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8326), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152913] = 5, + ACTIONS(3), 1, sym_comment, - [153384] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8368), 1, - anon_sym_QMARK, + 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, - [153401] = 4, - ACTIONS(7280), 1, - anon_sym_EQ, - STATE(5531), 1, - sym__initializer, + [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, - ACTIONS(8370), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [153416] = 4, - ACTIONS(8214), 1, + [152964] = 4, + ACTIONS(8129), 1, anon_sym_from, - STATE(5473), 1, + STATE(5353), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5083), 2, + ACTIONS(4999), 2, sym__automatic_semicolon, anon_sym_SEMI, - [153431] = 5, - ACTIONS(7356), 1, + [152979] = 5, + ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8372), 1, + ACTIONS(8333), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153448] = 5, - ACTIONS(2537), 1, + [152996] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5246), 1, + STATE(5362), 1, sym_type_parameters, - STATE(5682), 1, + STATE(5645), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153465] = 5, - ACTIONS(2537), 1, + [153013] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5248), 1, + STATE(5364), 1, sym_type_parameters, - STATE(5771), 1, + STATE(5797), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153482] = 2, + [153030] = 4, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6332), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8374), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [153493] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5562), 1, - sym_type_parameters, - STATE(5685), 1, - sym_formal_parameters, + STATE(5982), 2, + sym_namespace_import, + sym_named_imports, + [153045] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(8335), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153510] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5566), 1, - sym_type_parameters, - STATE(5704), 1, - sym_formal_parameters, + [153062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8326), 1, + anon_sym_SQUOTE, + STATE(4572), 1, + aux_sym_string_repeat2, + ACTIONS(8105), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153079] = 4, + ACTIONS(3758), 1, + anon_sym_COLON, + ACTIONS(4429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153527] = 5, - ACTIONS(7356), 1, + ACTIONS(8337), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [153094] = 5, + ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8376), 1, + ACTIONS(8339), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153544] = 5, + [153111] = 4, + ACTIONS(8341), 1, + anon_sym_COMMA, + STATE(4584), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153126] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8339), 1, + ACTIONS(8097), 1, anon_sym_SQUOTE, - STATE(4557), 1, - aux_sym_string_repeat2, - ACTIONS(8378), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [153561] = 5, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(8380), 1, - anon_sym_LT, - STATE(1520), 1, - sym_arguments, - STATE(1521), 1, - sym_type_arguments, + ACTIONS(8344), 1, + sym_html_character_reference, + ACTIONS(8346), 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, - [153578] = 4, - ACTIONS(8124), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_variable_declaration_repeat1, + 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(8382), 2, + ACTIONS(8350), 2, sym__automatic_semicolon, anon_sym_SEMI, - [153593] = 5, - ACTIONS(6616), 1, + [153173] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8352), 1, + anon_sym_DQUOTE, + STATE(4462), 1, + aux_sym_string_repeat1, + ACTIONS(8354), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153190] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8384), 1, - anon_sym_COLON, + ACTIONS(8356), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153610] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8386), 1, - anon_sym_RPAREN, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153627] = 6, + [153224] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8388), 1, - sym_html_character_reference, - ACTIONS(8390), 1, - anon_sym_DQUOTE, - ACTIONS(8392), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4480), 1, - aux_sym__jsx_string_repeat1, - [153646] = 6, - ACTIONS(3), 1, + 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, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5561), 1, + sym_type_parameters, + STATE(5673), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [153258] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5564), 1, + sym_type_parameters, + STATE(5692), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8390), 1, - anon_sym_SQUOTE, - ACTIONS(8394), 1, - sym_html_character_reference, - ACTIONS(8396), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4493), 1, - aux_sym__jsx_string_repeat2, - [153665] = 4, - ACTIONS(6320), 1, - anon_sym_EQ, - STATE(5444), 1, - sym_default_type, + sym_comment, + [153275] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8362), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 2, - anon_sym_COMMA, - anon_sym_GT, - [153680] = 4, - ACTIONS(8124), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_variable_declaration_repeat1, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8400), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153695] = 5, - ACTIONS(7186), 1, + [153309] = 5, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(8132), 1, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8402), 1, + ACTIONS(8366), 1, anon_sym_GT, - STATE(5295), 1, + STATE(5384), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153712] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8404), 1, - anon_sym_QMARK, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153729] = 5, - ACTIONS(7390), 1, + [153343] = 5, + ACTIONS(7339), 1, anon_sym_COMMA, - ACTIONS(8289), 1, + ACTIONS(8370), 1, anon_sym_LBRACE, - ACTIONS(8291), 1, + ACTIONS(8372), 1, anon_sym_LBRACE_PIPE, - STATE(4474), 1, + STATE(4528), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153746] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, + [153377] = 4, + ACTIONS(8135), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153756] = 3, - ACTIONS(8111), 1, + STATE(4464), 1, + aux_sym_extends_clause_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(5), 2, sym_html_comment, sym_comment, - ACTIONS(8113), 2, + [153409] = 5, + ACTIONS(7339), 1, anon_sym_COMMA, + ACTIONS(8378), 1, + anon_sym_LBRACE, + ACTIONS(8380), 1, anon_sym_LBRACE_PIPE, - [153768] = 2, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153426] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(8382), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153443] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153778] = 4, - ACTIONS(8410), 1, + [153470] = 4, + ACTIONS(8388), 1, sym_identifier, - ACTIONS(8412), 1, + ACTIONS(8390), 1, anon_sym_LBRACK, - ACTIONS(8414), 1, + ACTIONS(8392), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153792] = 4, - ACTIONS(8416), 1, + [153484] = 4, + ACTIONS(8394), 1, sym_identifier, - ACTIONS(8418), 1, + ACTIONS(8396), 1, anon_sym_LBRACK, - ACTIONS(8420), 1, + ACTIONS(8398), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153806] = 4, - ACTIONS(8422), 1, + [153498] = 4, + ACTIONS(8400), 1, sym_identifier, - ACTIONS(8424), 1, + ACTIONS(8402), 1, anon_sym_LBRACK, - ACTIONS(8426), 1, + ACTIONS(8404), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153820] = 4, - ACTIONS(8428), 1, + [153512] = 4, + ACTIONS(8406), 1, sym_identifier, - ACTIONS(8430), 1, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(8432), 1, + ACTIONS(8410), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153834] = 4, - ACTIONS(2933), 1, + [153526] = 4, + ACTIONS(2548), 1, anon_sym_RBRACK, - ACTIONS(8434), 1, + ACTIONS(8412), 1, anon_sym_COMMA, - STATE(5216), 1, + STATE(5104), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153848] = 2, + [153540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8436), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [153858] = 4, - ACTIONS(1642), 1, - anon_sym_RPAREN, - ACTIONS(8438), 1, + [153550] = 4, + ACTIONS(8416), 1, anon_sym_COMMA, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8419), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153872] = 2, + [153564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153882] = 4, - ACTIONS(8442), 1, + [153574] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8421), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8445), 1, + anon_sym_SEMI, + [153584] = 4, + ACTIONS(8423), 1, + anon_sym_COMMA, + ACTIONS(8426), 1, anon_sym_RBRACE, - STATE(4623), 1, - aux_sym_export_clause_repeat1, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153598] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8428), 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, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153622] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8432), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153896] = 4, - ACTIONS(1939), 1, + [153636] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8447), 1, + ACTIONS(8434), 1, anon_sym_RBRACK, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153910] = 4, - ACTIONS(1690), 1, + [153650] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8436), 1, anon_sym_RBRACK, - STATE(5158), 1, + STATE(5177), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153924] = 2, + [153664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153934] = 2, + [153674] = 4, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(8440), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + [153688] = 3, + ACTIONS(8442), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [153700] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153944] = 2, + ACTIONS(5201), 1, + anon_sym_RPAREN, + STATE(4819), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153714] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7347), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [153724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153954] = 4, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - STATE(808), 1, - sym_object_type, + [153734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153968] = 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153744] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153978] = 2, + [153754] = 3, + ACTIONS(8446), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [153766] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [153776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153988] = 2, + [153786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153998] = 4, - ACTIONS(3959), 1, + [153796] = 4, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(8459), 1, + ACTIONS(8454), 1, anon_sym_DOT, - STATE(1515), 1, + STATE(1530), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154012] = 2, + [153810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8461), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154022] = 4, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(8463), 1, - anon_sym_DOT, - STATE(1972), 1, - sym_arguments, + [153820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154036] = 4, - ACTIONS(1939), 1, + ACTIONS(8438), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RPAREN, - STATE(4648), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154050] = 4, - ACTIONS(1939), 1, + ACTIONS(8444), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154064] = 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154074] = 2, + [153860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154084] = 2, + [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, - ACTIONS(8465), 3, - sym__automatic_semicolon, + [153884] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154094] = 4, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8467), 1, - anon_sym_GT, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(4652), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153898] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154108] = 2, + ACTIONS(8456), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8469), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154118] = 2, + [153932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154128] = 2, + [153942] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8460), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154138] = 4, - ACTIONS(8471), 1, + [153966] = 4, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(8462), 1, + anon_sym_DOT, + STATE(1893), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153980] = 4, + ACTIONS(8464), 1, anon_sym_COMMA, - ACTIONS(8473), 1, + ACTIONS(8466), 1, anon_sym_RBRACK, - STATE(4656), 1, + STATE(4659), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154152] = 4, - ACTIONS(4143), 1, + [153994] = 4, + ACTIONS(4080), 1, anon_sym_extends, - ACTIONS(8475), 1, + ACTIONS(8468), 1, anon_sym_AMP, - ACTIONS(8477), 1, + ACTIONS(8470), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154166] = 4, - ACTIONS(8333), 1, - anon_sym_GT, - ACTIONS(8479), 1, - anon_sym_COMMA, - STATE(4765), 1, - aux_sym_type_parameters_repeat1, + [154008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154180] = 4, - ACTIONS(1939), 1, + ACTIONS(8438), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8481), 1, + anon_sym_SEMI, + [154018] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8472), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154194] = 2, + [154032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154204] = 4, - ACTIONS(3213), 1, + [154042] = 4, + ACTIONS(3212), 1, anon_sym_GT, - ACTIONS(8483), 1, + ACTIONS(8474), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154218] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8485), 1, - sym__glimmer_template_content, - ACTIONS(8487), 1, - sym_glimmer_closing_tag, - STATE(4914), 1, - aux_sym_glimmer_template_repeat1, - [154234] = 4, - ACTIONS(8489), 1, + [154056] = 4, + ACTIONS(8476), 1, anon_sym_COMMA, - ACTIONS(8491), 1, - anon_sym_RPAREN, - STATE(4844), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8479), 1, + anon_sym_GT, + STATE(4655), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154248] = 2, + [154070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8493), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154258] = 2, + [154080] = 4, + ACTIONS(7126), 1, + anon_sym_RBRACE, + ACTIONS(8481), 1, + anon_sym_COMMA, + STATE(4881), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154268] = 2, + [154094] = 4, + ACTIONS(8483), 1, + sym_identifier, + STATE(3792), 1, + sym_decorator_member_expression, + STATE(5915), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8495), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154278] = 4, - ACTIONS(2945), 1, + [154108] = 4, + ACTIONS(2568), 1, anon_sym_RBRACK, - ACTIONS(8497), 1, + ACTIONS(8485), 1, anon_sym_COMMA, - STATE(5216), 1, + STATE(5104), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154292] = 2, + [154122] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8499), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154302] = 4, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - STATE(4037), 1, - sym_object_type, + [154132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154316] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8453), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154326] = 2, + [154142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154336] = 2, + [154152] = 4, + ACTIONS(8149), 1, + anon_sym_GT, + ACTIONS(8489), 1, + anon_sym_COMMA, + STATE(4655), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154346] = 4, - ACTIONS(1939), 1, + [154176] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - ACTIONS(5302), 1, - anon_sym_RPAREN, - STATE(4797), 1, - aux_sym_array_repeat1, + ACTIONS(8440), 1, + anon_sym_RBRACE, + STATE(5060), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154360] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5302), 1, + [154190] = 4, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(8493), 1, anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, + STATE(5868), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154374] = 2, + [154204] = 4, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, + anon_sym_LBRACE, + STATE(4013), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8493), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154384] = 3, - ACTIONS(8501), 1, - sym_identifier, + [154228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8503), 2, + ACTIONS(8428), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [154396] = 2, + [154238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8505), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154406] = 3, - ACTIONS(8507), 1, - sym_identifier, + [154248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8509), 2, + ACTIONS(8428), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [154418] = 4, - ACTIONS(6427), 1, + [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, anon_sym_LPAREN, - ACTIONS(8511), 1, + ACTIONS(8497), 1, anon_sym_DOT, - STATE(3294), 1, + STATE(3286), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154432] = 2, + [154284] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5299), 1, + anon_sym_RPAREN, + STATE(4826), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [154298] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154442] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5333), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - STATE(4680), 1, + STATE(4684), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154456] = 4, - ACTIONS(1939), 1, + [154312] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5333), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154470] = 2, + [154326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154480] = 4, - ACTIONS(5566), 1, + [154336] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8515), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + ACTIONS(5299), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154494] = 2, + [154350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154504] = 2, + [154360] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154514] = 2, + [154370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154524] = 4, - ACTIONS(8519), 1, + [154380] = 4, + ACTIONS(8499), 1, anon_sym_COMMA, - ACTIONS(8521), 1, + ACTIONS(8501), 1, anon_sym_RBRACK, - STATE(4690), 1, + STATE(4695), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154538] = 4, + [154394] = 4, ACTIONS(6964), 1, anon_sym_AMP, ACTIONS(6966), 1, @@ -265279,2042 +263369,1833 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [154552] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8523), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154566] = 4, - ACTIONS(1939), 1, + [154408] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8525), 1, + ACTIONS(8503), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154580] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8527), 1, - sym_identifier, - STATE(5253), 1, - sym__import_identifier, + [154422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154594] = 4, - ACTIONS(3211), 1, + ACTIONS(8428), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154432] = 4, + ACTIONS(3176), 1, anon_sym_GT, - ACTIONS(8529), 1, + ACTIONS(8505), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154608] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154618] = 2, + [154470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154628] = 4, - ACTIONS(8533), 1, + [154480] = 4, + ACTIONS(8507), 1, sym_identifier, - ACTIONS(8535), 1, + ACTIONS(8509), 1, anon_sym_LBRACK, - ACTIONS(8537), 1, + ACTIONS(8511), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154642] = 4, - ACTIONS(8539), 1, + [154494] = 4, + ACTIONS(8513), 1, sym_identifier, - ACTIONS(8541), 1, + ACTIONS(8515), 1, anon_sym_LBRACK, - ACTIONS(8543), 1, + ACTIONS(8517), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154656] = 4, - ACTIONS(8545), 1, + [154508] = 4, + ACTIONS(8519), 1, sym_identifier, - ACTIONS(8547), 1, + ACTIONS(8521), 1, anon_sym_LBRACK, - ACTIONS(8549), 1, + ACTIONS(8523), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154670] = 4, - ACTIONS(8551), 1, + [154522] = 4, + ACTIONS(8525), 1, sym_identifier, - ACTIONS(8553), 1, + ACTIONS(8527), 1, anon_sym_LBRACK, - ACTIONS(8555), 1, + ACTIONS(8529), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154684] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8557), 1, - sym_identifier, - STATE(5254), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154698] = 4, - ACTIONS(2939), 1, - anon_sym_RBRACK, - ACTIONS(8559), 1, - anon_sym_COMMA, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154712] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154722] = 4, - ACTIONS(8561), 1, - anon_sym_COMMA, - ACTIONS(8564), 1, - anon_sym_RBRACE, - STATE(4692), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154736] = 4, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - STATE(5889), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154750] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154760] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(4912), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154774] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154788] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154798] = 2, + [154536] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154808] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5335), 1, - anon_sym_RPAREN, - STATE(4705), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154822] = 4, - ACTIONS(1939), 1, + [154546] = 4, + ACTIONS(2576), 1, + anon_sym_RBRACK, + ACTIONS(8531), 1, anon_sym_COMMA, - ACTIONS(5335), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154836] = 2, + STATE(5104), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154846] = 2, + [154560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154856] = 2, + [154570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154866] = 2, + [154580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154876] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8566), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154890] = 4, - ACTIONS(3197), 1, - anon_sym_GT, - ACTIONS(8568), 1, - anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154904] = 2, + [154590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154914] = 2, + [154600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154924] = 2, + [154610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154934] = 2, + [154620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154944] = 2, + [154630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8461), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154954] = 2, + [154640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154964] = 4, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8572), 1, - anon_sym_GT, + [154650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154978] = 2, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154988] = 4, - ACTIONS(1939), 1, + [154670] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5339), 1, + ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(4721), 1, + STATE(4711), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155002] = 4, - ACTIONS(1939), 1, + [154684] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5339), 1, + ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155016] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155026] = 3, - ACTIONS(8574), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7803), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [155038] = 2, + [154698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155048] = 2, + [154708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155058] = 4, - ACTIONS(1939), 1, + [154718] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8576), 1, + ACTIONS(8535), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155072] = 2, + [154732] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155082] = 4, - ACTIONS(3191), 1, + [154742] = 4, + ACTIONS(3196), 1, anon_sym_GT, - ACTIONS(8578), 1, + ACTIONS(8537), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155096] = 2, + [154756] = 3, + ACTIONS(8539), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + ACTIONS(6510), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155106] = 2, + anon_sym_RBRACE, + [154768] = 4, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(8541), 1, + sym_identifier, + STATE(5456), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155116] = 2, + [154782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155126] = 2, + [154792] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155136] = 2, + [154802] = 4, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(8543), 1, + sym_identifier, + STATE(5457), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155146] = 2, + [154816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155156] = 4, - ACTIONS(8580), 1, - anon_sym_LPAREN, - ACTIONS(8582), 1, - anon_sym_await, - STATE(49), 1, - sym__for_header, + [154826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155170] = 3, - ACTIONS(8584), 1, + ACTIONS(8545), 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [155182] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7258), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [155192] = 2, + [154850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155202] = 2, + [154860] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4729), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + [154874] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155212] = 2, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155222] = 4, - ACTIONS(8214), 1, - anon_sym_from, - ACTIONS(8586), 1, - anon_sym_as, - STATE(5440), 1, - sym__from_clause, + [154888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155236] = 4, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(8588), 1, - sym_identifier, - STATE(4592), 1, - sym_export_clause, + ACTIONS(8438), 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, - [155250] = 2, + [154912] = 3, + ACTIONS(7207), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8551), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155260] = 2, + [154924] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155270] = 2, + [154934] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8553), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155280] = 2, + [154948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8555), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155290] = 4, - ACTIONS(8590), 1, - anon_sym_COMMA, - ACTIONS(8592), 1, + [154958] = 4, + ACTIONS(3200), 1, anon_sym_GT, - STATE(5065), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(8557), 1, + anon_sym_COMMA, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155304] = 2, + [154972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155314] = 2, + [154982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8555), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155324] = 2, + [154992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155334] = 2, + [155002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155344] = 4, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - STATE(5047), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155358] = 3, - ACTIONS(7210), 1, - anon_sym_DOT, + [155012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8594), 2, + ACTIONS(8452), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [155370] = 4, - ACTIONS(8596), 1, - sym_identifier, - STATE(3781), 1, - sym_decorator_member_expression, - STATE(5765), 1, - sym_decorator_call_expression, + [155022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155384] = 4, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(8598), 1, - anon_sym_RPAREN, - STATE(5955), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155398] = 3, - ACTIONS(7226), 1, + ACTIONS(8428), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155032] = 3, + ACTIONS(7209), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8594), 2, + ACTIONS(8551), 2, sym__automatic_semicolon, anon_sym_SEMI, - [155410] = 2, + [155044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155420] = 2, + [155054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155430] = 2, + [155064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155440] = 2, + [155074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155450] = 4, - ACTIONS(8600), 1, - anon_sym_COMMA, - ACTIONS(8602), 1, - anon_sym_RBRACK, - STATE(4854), 1, - aux_sym_tuple_type_repeat1, + [155084] = 4, + ACTIONS(8561), 1, + anon_sym_LPAREN, + ACTIONS(8563), 1, + anon_sym_await, + STATE(50), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155464] = 2, + [155098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8604), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155474] = 2, + [155108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155484] = 2, + [155118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8606), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155494] = 4, - ACTIONS(2489), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_else, - STATE(904), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155508] = 2, + [155128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155518] = 4, - ACTIONS(4979), 1, - anon_sym_extends, - ACTIONS(8610), 1, - anon_sym_AMP, - ACTIONS(8612), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155532] = 2, + [155138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155542] = 4, - ACTIONS(6047), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_DOT, - STATE(2897), 1, - sym_arguments, + [155148] = 4, + ACTIONS(8129), 1, + anon_sym_from, + ACTIONS(8565), 1, + anon_sym_as, + STATE(5467), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155556] = 4, - ACTIONS(8616), 1, - anon_sym_COMMA, - ACTIONS(8619), 1, - anon_sym_GT, - STATE(4765), 1, - aux_sym_type_parameters_repeat1, + [155162] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8567), 1, + sym_identifier, + STATE(4506), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155570] = 2, + [155176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155580] = 2, + [155186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155590] = 2, + [155196] = 4, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LBRACK, + ACTIONS(8575), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8461), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155600] = 2, + [155220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155610] = 2, + [155230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155620] = 2, + [155240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155630] = 2, + [155250] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8581), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155640] = 2, + [155260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8583), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155650] = 2, + [155270] = 4, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(8147), 1, + sym_identifier, + STATE(5029), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, + [155284] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6510), 3, anon_sym_COMMA, - anon_sym_SEMI, - [155660] = 2, + anon_sym_RBRACE, + anon_sym_from, + [155294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155670] = 2, + [155304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155680] = 4, - ACTIONS(7662), 1, - anon_sym_COMMA, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + [155314] = 4, + ACTIONS(8585), 1, + sym_identifier, + STATE(3870), 1, + sym_decorator_member_expression, + STATE(5795), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155694] = 2, + [155328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155704] = 2, + [155338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8604), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155714] = 2, + [155348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155724] = 2, + [155358] = 3, + ACTIONS(8587), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, - sym__automatic_semicolon, + ACTIONS(8589), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155734] = 2, + anon_sym_from, + [155370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + ACTIONS(8591), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [155744] = 2, + anon_sym_implements, + [155380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155754] = 2, + [155390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155764] = 2, + [155400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155774] = 2, + [155410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155784] = 2, + [155420] = 3, + ACTIONS(7207), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8593), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155794] = 2, + [155432] = 3, + ACTIONS(7209), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8593), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155804] = 2, + [155444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155814] = 2, + [155454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155824] = 4, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - STATE(4104), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155838] = 2, + [155464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8604), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155848] = 2, + [155474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155858] = 4, - ACTIONS(8625), 1, - anon_sym_COMMA, - ACTIONS(8627), 1, - anon_sym_RBRACE, - STATE(4875), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155872] = 2, + [155484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155882] = 2, + [155494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155892] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8629), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155906] = 2, + [155504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155916] = 2, + [155514] = 4, + ACTIONS(2492), 1, + anon_sym_while, + ACTIONS(8597), 1, + anon_sym_else, + STATE(850), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [155528] = 4, + ACTIONS(8599), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155926] = 2, + ACTIONS(8601), 1, + anon_sym_RBRACK, + STATE(4870), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155936] = 4, - ACTIONS(6333), 1, + [155552] = 4, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(8603), 1, anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8631), 1, - anon_sym_GT, + STATE(2890), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155950] = 4, - ACTIONS(7501), 1, + [155566] = 4, + ACTIONS(4979), 1, + anon_sym_extends, + ACTIONS(8605), 1, anon_sym_AMP, - ACTIONS(7507), 1, + ACTIONS(8607), 1, anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155964] = 4, - ACTIONS(3203), 1, - anon_sym_GT, - ACTIONS(8633), 1, - anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + [155580] = 4, + ACTIONS(8609), 1, + sym_identifier, + ACTIONS(8611), 1, + anon_sym_LBRACK, + ACTIONS(8613), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155978] = 2, + [155594] = 4, + ACTIONS(8615), 1, + sym_identifier, + ACTIONS(8617), 1, + anon_sym_LBRACK, + ACTIONS(8619), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155988] = 2, + [155608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8635), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155998] = 2, + [155618] = 4, + ACTIONS(8621), 1, + sym_identifier, + ACTIONS(8623), 1, + anon_sym_LBRACK, + ACTIONS(8625), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156008] = 2, + [155632] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156018] = 2, + [155642] = 4, + ACTIONS(8627), 1, + sym_identifier, + ACTIONS(8629), 1, + anon_sym_LBRACK, + ACTIONS(8631), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156028] = 2, + [155656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8635), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156038] = 2, + [155666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8637), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156048] = 2, + [155676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156058] = 2, + [155686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8639), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156068] = 2, + [155696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156078] = 2, + [155706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156088] = 2, + [155716] = 3, + ACTIONS(8633), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156098] = 4, - ACTIONS(5075), 1, + ACTIONS(8589), 2, anon_sym_COMMA, - ACTIONS(8641), 1, anon_sym_RBRACE, - STATE(5183), 1, - aux_sym_object_pattern_repeat1, + [155728] = 4, + ACTIONS(8635), 1, + anon_sym_COMMA, + ACTIONS(8637), 1, + anon_sym_GT, + STATE(5180), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156112] = 2, + [155742] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8643), 3, + ACTIONS(8639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156122] = 2, + [155752] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156132] = 2, + [155762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156142] = 2, + [155772] = 4, + ACTIONS(8641), 1, + anon_sym_COMMA, + ACTIONS(8643), 1, + anon_sym_RBRACE, + STATE(4726), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156152] = 2, + [155786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156162] = 2, + [155796] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(841), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156172] = 2, + [155810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156182] = 2, + [155820] = 4, + ACTIONS(2676), 1, + anon_sym_RBRACK, + ACTIONS(8645), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156192] = 2, + [155834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156202] = 2, + [155844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156212] = 3, - ACTIONS(8251), 1, - anon_sym_EQ, + [155854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 2, + ACTIONS(8438), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [156224] = 2, + anon_sym_SEMI, + [155864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156234] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8647), 1, - anon_sym_RBRACE, - STATE(5190), 1, - aux_sym_object_repeat1, + [155874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156248] = 4, - ACTIONS(5566), 1, + ACTIONS(8456), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [155884] = 4, ACTIONS(8647), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156262] = 4, - ACTIONS(5075), 1, anon_sym_COMMA, - ACTIONS(8641), 1, + ACTIONS(8649), 1, anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + STATE(4876), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156276] = 2, + [155898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156286] = 2, + [155908] = 4, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156296] = 4, - ACTIONS(8649), 1, - sym_identifier, - STATE(3831), 1, - sym_decorator_member_expression, - STATE(5803), 1, - sym_decorator_call_expression, + [155932] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8651), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156310] = 2, + [155946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156320] = 2, + [155956] = 4, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, + anon_sym_LBRACE, + STATE(4087), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156330] = 2, + [155970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156340] = 2, + [155980] = 4, + ACTIONS(8653), 1, + anon_sym_COMMA, + ACTIONS(8655), 1, + anon_sym_RBRACE, + STATE(4887), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7408), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156350] = 2, + [155994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156360] = 2, + [156004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156370] = 4, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(8651), 1, - anon_sym_LBRACE, - STATE(5663), 1, - sym_implements_clause, + [156014] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156384] = 2, + [156028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156394] = 3, - ACTIONS(8653), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7751), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [156406] = 4, - ACTIONS(1644), 1, - anon_sym_RPAREN, - ACTIONS(8655), 1, + [156038] = 4, + ACTIONS(3170), 1, + anon_sym_GT, + ACTIONS(8659), 1, anon_sym_COMMA, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156420] = 2, + [156052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156430] = 2, + [156062] = 4, + ACTIONS(3178), 1, + anon_sym_GT, + ACTIONS(8661), 1, + anon_sym_COMMA, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8657), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156440] = 2, + [156076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156450] = 2, + [156086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156460] = 2, + [156096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, + ACTIONS(7279), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [156106] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156470] = 2, + ACTIONS(8663), 1, + anon_sym_RBRACE, + STATE(5197), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156480] = 2, + [156120] = 3, + ACTIONS(8665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, - sym__automatic_semicolon, + ACTIONS(8589), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156490] = 2, + anon_sym_from, + [156132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156500] = 2, + [156142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156510] = 4, - ACTIONS(2949), 1, - anon_sym_RBRACK, - ACTIONS(8659), 1, - anon_sym_COMMA, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156524] = 2, + [156152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156534] = 2, + [156162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8661), 3, - anon_sym_LBRACE, + ACTIONS(8491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [156544] = 2, + anon_sym_SEMI, + [156172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156554] = 2, + [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, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156564] = 2, + [156196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156574] = 2, + [156206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156584] = 2, + [156216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156594] = 2, + ACTIONS(7285), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [156226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156604] = 2, + [156236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156614] = 2, + [156246] = 4, + ACTIONS(8671), 1, + anon_sym_COMMA, + ACTIONS(8674), 1, + anon_sym_RPAREN, + STATE(4847), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [156260] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156624] = 2, + ACTIONS(8669), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [156274] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156634] = 4, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_object_type, + ACTIONS(8663), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156648] = 2, + [156288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156658] = 4, - ACTIONS(8663), 1, - sym_identifier, - ACTIONS(8665), 1, - anon_sym_LBRACK, - ACTIONS(8667), 1, - sym_private_property_identifier, + [156298] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156672] = 2, + ACTIONS(8487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156682] = 4, - ACTIONS(8669), 1, - anon_sym_COMMA, - ACTIONS(8671), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, + [156318] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156696] = 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156706] = 4, - ACTIONS(8673), 1, + [156338] = 4, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_LBRACK, - ACTIONS(8677), 1, - sym_private_property_identifier, + ACTIONS(8678), 1, + anon_sym_require, + STATE(4738), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156720] = 2, + [156352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156730] = 2, + [156362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156740] = 4, - ACTIONS(8679), 1, - anon_sym_COMMA, - ACTIONS(8681), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156754] = 4, - ACTIONS(8683), 1, - sym_identifier, - ACTIONS(8685), 1, - anon_sym_LBRACK, - ACTIONS(8687), 1, - sym_private_property_identifier, + [156372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156768] = 2, + ACTIONS(8428), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156382] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156778] = 2, + [156392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156788] = 4, - ACTIONS(8689), 1, + [156402] = 4, + ACTIONS(8680), 1, anon_sym_COMMA, - ACTIONS(8691), 1, + ACTIONS(8682), 1, anon_sym_RPAREN, - STATE(4621), 1, + STATE(4943), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156802] = 2, + [156416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156812] = 2, + [156426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156822] = 2, + [156436] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156832] = 2, + [156446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156842] = 2, + [156456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156852] = 2, + [156466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8684), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156862] = 2, + [156476] = 4, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(8147), 1, + sym_identifier, + STATE(5384), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156872] = 2, + [156490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8686), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [156882] = 2, + [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, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156892] = 2, + [156514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156902] = 2, + [156524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156912] = 2, + [156534] = 4, + ACTIONS(8690), 1, + anon_sym_COMMA, + ACTIONS(8692), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156922] = 2, + [156558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156932] = 2, + [156568] = 4, + ACTIONS(8694), 1, + anon_sym_COMMA, + ACTIONS(8696), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156942] = 2, + [156592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(7870), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156952] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RBRACK, - STATE(4625), 1, - aux_sym_array_pattern_repeat1, + [156602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156966] = 2, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156976] = 4, - ACTIONS(1939), 1, + [156622] = 4, + ACTIONS(8698), 1, anon_sym_COMMA, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(4624), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156990] = 4, - ACTIONS(8693), 1, - sym_identifier, - ACTIONS(8695), 1, - anon_sym_LBRACK, - ACTIONS(8697), 1, - sym_private_property_identifier, + ACTIONS(8701), 1, + anon_sym_RBRACE, + STATE(4881), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157004] = 3, - ACTIONS(8699), 1, - anon_sym_as, + [156636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 2, + ACTIONS(8458), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [157016] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8701), 1, - sym_identifier, - STATE(5263), 1, - sym__import_identifier, + anon_sym_SEMI, + [156646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157030] = 2, + ACTIONS(8569), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157040] = 3, + [156666] = 4, ACTIONS(8703), 1, - anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(8705), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8705), 2, - anon_sym_COMMA, - anon_sym_from, - [157052] = 4, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - STATE(4742), 1, - sym_type_parameter, + [156680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157066] = 4, - ACTIONS(2947), 1, - anon_sym_RBRACK, + ACTIONS(7870), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156690] = 4, ACTIONS(8707), 1, anon_sym_COMMA, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157080] = 4, ACTIONS(8709), 1, - anon_sym_COMMA, - ACTIONS(8711), 1, anon_sym_RBRACE, - STATE(4940), 1, + STATE(5133), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157094] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(4546), 1, - aux_sym_array_repeat1, + [156704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157108] = 4, - ACTIONS(1690), 1, + ACTIONS(8452), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RBRACK, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + 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(5), 2, sym_html_comment, sym_comment, - [157122] = 2, + [156728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157132] = 4, - ACTIONS(6690), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_DOT, - STATE(2897), 1, - sym_arguments, + [156738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157146] = 2, + ACTIONS(8491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8713), 3, + ACTIONS(8717), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157156] = 2, + [156758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8715), 3, + ACTIONS(8719), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157166] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8717), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, + [156768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157180] = 2, + ACTIONS(8721), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157190] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8719), 1, - sym__glimmer_template_content, - ACTIONS(8721), 1, - sym_glimmer_closing_tag, - STATE(5162), 1, - aux_sym_glimmer_template_repeat1, - [157206] = 2, + [156788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267322,31 +265203,31 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157216] = 2, + [156798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157226] = 2, + [156808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157236] = 2, + [156818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157246] = 2, + [156828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267354,7 +265235,17 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157256] = 2, + [156838] = 4, + ACTIONS(1779), 1, + anon_sym_COMMA, + ACTIONS(8198), 1, + anon_sym_RBRACK, + STATE(4620), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267362,7 +265253,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157266] = 2, + [156862] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267370,180 +265261,157 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157276] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8729), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + [156872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157290] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157300] = 2, + [156892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157310] = 4, - ACTIONS(8214), 1, - anon_sym_from, - ACTIONS(8586), 1, - anon_sym_as, - STATE(5571), 1, - sym__from_clause, + [156902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157324] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157334] = 2, + [156922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157344] = 2, + [156932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157354] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8733), 1, - sym_identifier, - STATE(5321), 1, - sym__import_identifier, + [156942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157368] = 4, - ACTIONS(3187), 1, - anon_sym_GT, - ACTIONS(8735), 1, + ACTIONS(8725), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + 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, - [157382] = 2, + [156966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157392] = 3, - ACTIONS(4377), 1, - anon_sym_LBRACE, + [156976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157404] = 4, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - STATE(5295), 1, - sym_type_parameter, + anon_sym_SEMI, + [156986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157418] = 4, - ACTIONS(6826), 1, - anon_sym_RBRACE, - ACTIONS(8737), 1, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4692), 1, - aux_sym_named_imports_repeat1, + anon_sym_SEMI, + [156996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157432] = 4, - ACTIONS(5566), 1, + ACTIONS(8491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8739), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157446] = 2, + anon_sym_SEMI, + [157006] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8729), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157456] = 3, - ACTIONS(7210), 1, - anon_sym_DOT, + [157016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 2, + ACTIONS(8731), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [157468] = 4, - ACTIONS(8743), 1, anon_sym_COMMA, - ACTIONS(8745), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [157026] = 4, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(8733), 1, + anon_sym_EQ, + STATE(5706), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157482] = 3, - ACTIONS(7226), 1, - anon_sym_DOT, + [157040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 2, + ACTIONS(8491), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [157494] = 4, - ACTIONS(8747), 1, + [157050] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, + ACTIONS(5253), 1, + anon_sym_RBRACK, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157508] = 2, + [157064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267551,17 +265419,36 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157518] = 4, - ACTIONS(8751), 1, + [157074] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - ACTIONS(8754), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + 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(5), 2, + sym_html_comment, + sym_comment, + [157102] = 3, + ACTIONS(4090), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157532] = 2, + ACTIONS(4092), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [157114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267569,15 +265456,15 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157542] = 2, + [157124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157552] = 2, + [157134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267585,7 +265472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157562] = 2, + [157144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267593,7 +265480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157572] = 2, + [157154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267601,23 +265488,23 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157582] = 2, + [157164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157592] = 2, + [157174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157602] = 2, + [157184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267625,7 +265512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157612] = 2, + [157194] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267633,185 +265520,214 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157622] = 2, + [157204] = 3, + ACTIONS(7801), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3635), 2, + anon_sym_in, + anon_sym_of, + [157216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8756), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157632] = 2, + [157226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8758), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157642] = 2, + [157236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8760), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157652] = 2, + [157246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8321), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157662] = 2, + [157256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157672] = 4, - ACTIONS(8762), 1, - anon_sym_LPAREN, - ACTIONS(8764), 1, - anon_sym_await, - STATE(36), 1, - sym__for_header, + [157266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157686] = 2, + ACTIONS(8458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [157696] = 2, + ACTIONS(7257), 3, + anon_sym_LBRACE, + 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, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157706] = 2, + [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, - ACTIONS(8731), 3, + [157314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157716] = 2, + [157324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157726] = 2, + [157334] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157736] = 2, + [157344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157746] = 2, + [157354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157756] = 2, + [157364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157766] = 2, + [157374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157776] = 2, + [157384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157786] = 2, + [157394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157796] = 2, + [157404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157806] = 2, + [157414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157816] = 2, + [157424] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157826] = 2, + [157434] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157836] = 2, + [157444] = 4, + ACTIONS(8129), 1, + anon_sym_from, + ACTIONS(8565), 1, + anon_sym_as, + STATE(5304), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + [157458] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157846] = 2, + [157468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267819,7 +265735,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157856] = 2, + [157478] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267827,7 +265743,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157866] = 2, + [157488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267835,142 +265751,111 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157876] = 4, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - STATE(4521), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157890] = 2, + [157498] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157900] = 2, + [157508] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157910] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7264), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157920] = 2, + [157518] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [157930] = 2, + anon_sym_SEMI, + [157528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8766), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [157940] = 4, - ACTIONS(8768), 1, anon_sym_COMMA, - ACTIONS(8771), 1, - anon_sym_RPAREN, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157954] = 3, - ACTIONS(8773), 1, - anon_sym_EQ, + anon_sym_SEMI, + [157538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8705), 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [157966] = 2, + anon_sym_SEMI, + [157548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157976] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(4922), 1, - aux_sym_object_pattern_repeat1, + [157558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157990] = 2, + ACTIONS(8725), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158000] = 2, + [157578] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158010] = 2, + [157588] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158020] = 2, + [157598] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158030] = 2, + [157608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158040] = 2, + [157618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158050] = 2, + [157628] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267978,251 +265863,241 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158060] = 2, + [157638] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158070] = 2, + [157648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8777), 3, + ACTIONS(8739), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [158080] = 2, + [157658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158090] = 2, + [157668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158100] = 2, + [157678] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158110] = 2, + [157688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158120] = 2, + [157698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158130] = 3, - ACTIONS(8779), 1, - anon_sym_as, + [157708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158142] = 4, - ACTIONS(8781), 1, + ACTIONS(8725), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8783), 1, - anon_sym_RBRACE, - STATE(4934), 1, - aux_sym_named_imports_repeat1, + anon_sym_SEMI, + [157718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158156] = 2, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [157728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158166] = 2, + [157738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158176] = 4, - ACTIONS(8785), 1, - sym_identifier, - ACTIONS(8787), 1, - anon_sym_require, - STATE(4939), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158190] = 4, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(8789), 1, - sym_identifier, - STATE(4509), 1, - sym_export_clause, + [157748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158204] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8743), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158214] = 2, + [157768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158224] = 2, + [157778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7404), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [158234] = 2, + ACTIONS(8745), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158244] = 2, + [157798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158254] = 2, + [157808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158264] = 4, - ACTIONS(8791), 1, - anon_sym_COMMA, - ACTIONS(8793), 1, - anon_sym_RBRACE, - STATE(5191), 1, - aux_sym_export_clause_repeat1, + [157818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158278] = 2, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158288] = 2, + [157838] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158298] = 2, + [157848] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158308] = 2, + [157858] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8751), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + [157872] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158318] = 2, + [157882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158328] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(4935), 1, - aux_sym_object_repeat1, + [157892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158342] = 3, - ACTIONS(7970), 1, - anon_sym_EQ, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3640), 2, - anon_sym_in, - anon_sym_of, - [158354] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158364] = 2, + [157922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158374] = 2, + [157932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -268230,7 +266105,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158384] = 2, + [157942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -268238,7 +266113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158394] = 2, + [157952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -268246,6996 +266121,7049 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158404] = 2, + [157962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158414] = 2, + [157972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158424] = 2, + [157982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158434] = 2, + ACTIONS(7251), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158444] = 2, + [158002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158454] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158468] = 2, + [158012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8801), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158478] = 2, + [158022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158488] = 2, + [158032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158498] = 2, + [158042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158508] = 2, + [158052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158518] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + [158062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158532] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(6001), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158542] = 2, + [158082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8755), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [158552] = 2, + [158092] = 3, + ACTIONS(8757), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, + ACTIONS(7966), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158104] = 4, + ACTIONS(8759), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158562] = 4, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(8803), 1, - anon_sym_EQ, - STATE(5645), 1, - sym_type_parameters, + ACTIONS(8761), 1, + anon_sym_RBRACE, + STATE(4657), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158576] = 2, + [158118] = 3, + ACTIONS(4062), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8756), 3, - sym__automatic_semicolon, + ACTIONS(4064), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158586] = 2, + anon_sym_LBRACE_PIPE, + [158130] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158596] = 2, + [158140] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158606] = 3, - ACTIONS(8805), 1, + [158150] = 3, + ACTIONS(8763), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8807), 2, + ACTIONS(8765), 2, anon_sym_COMMA, anon_sym_RBRACE, - [158618] = 3, - ACTIONS(4405), 1, - anon_sym_LBRACE, + [158162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 2, + ACTIONS(8753), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158630] = 4, - ACTIONS(8809), 1, + anon_sym_SEMI, + [158172] = 4, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8811), 1, + ACTIONS(8769), 1, anon_sym_GT, - STATE(4647), 1, + STATE(4663), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158644] = 4, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158658] = 2, + [158186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8813), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158668] = 2, + [158196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158678] = 2, + [158206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158688] = 2, + [158216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8773), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158698] = 2, + [158226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8775), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158708] = 2, + [158236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158718] = 2, + [158246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8777), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158728] = 2, + [158256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8817), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158738] = 2, + [158266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158748] = 2, + [158276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8813), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158758] = 2, + [158286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158768] = 2, + [158296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158778] = 2, + [158306] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158788] = 2, + [158316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158798] = 2, + [158326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8783), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158808] = 2, + [158336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8785), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158818] = 4, - ACTIONS(8402), 1, - anon_sym_GT, - ACTIONS(8819), 1, - anon_sym_COMMA, - STATE(4765), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158832] = 2, + [158346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158842] = 2, + [158356] = 3, + ACTIONS(8196), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, - sym__automatic_semicolon, + ACTIONS(8787), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158852] = 2, + anon_sym_RBRACE, + [158368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158862] = 2, + [158378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158872] = 3, - ACTIONS(7349), 1, - anon_sym_EQ, + [158388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3640), 2, - anon_sym_in, - anon_sym_of, - [158884] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158894] = 3, - ACTIONS(8823), 1, - anon_sym_LBRACE, + [158398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8016), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [158906] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8725), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158916] = 2, + [158408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8789), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158926] = 2, + [158418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158936] = 3, - ACTIONS(4263), 1, - anon_sym_LBRACE, + [158428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 2, + ACTIONS(8779), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158948] = 2, + anon_sym_SEMI, + [158438] = 3, + ACTIONS(8791), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8793), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158958] = 2, + [158450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8825), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158968] = 2, + [158460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158978] = 2, + [158470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158988] = 2, + [158480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158998] = 2, + [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, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159008] = 2, + [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, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159018] = 2, + [158518] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159028] = 2, + [158528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8799), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159038] = 2, + [158538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159048] = 2, + [158548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159058] = 4, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [158558] = 4, + ACTIONS(8801), 1, + anon_sym_COMMA, + ACTIONS(8803), 1, + anon_sym_RBRACK, + STATE(4809), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159072] = 2, + [158572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159082] = 2, + [158582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159092] = 4, - ACTIONS(8827), 1, - sym_identifier, - ACTIONS(8829), 1, - anon_sym_LBRACK, - ACTIONS(8831), 1, - sym_private_property_identifier, + [158592] = 3, + ACTIONS(8805), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159106] = 2, + ACTIONS(8079), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158604] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159116] = 4, - ACTIONS(8833), 1, - sym_identifier, - ACTIONS(8835), 1, - anon_sym_LBRACK, - ACTIONS(8837), 1, - sym_private_property_identifier, + [158614] = 3, + ACTIONS(4122), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159130] = 2, + ACTIONS(4124), 2, + 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, - ACTIONS(8839), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159140] = 2, + [158640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159150] = 2, + [158650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8785), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159160] = 2, + [158660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159170] = 2, + [158670] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159180] = 2, + [158680] = 4, + 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(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159190] = 2, + [158694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159200] = 2, + [158704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8606), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159210] = 2, + [158714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159220] = 2, + [158724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159230] = 2, + [158734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159240] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8843), 1, - anon_sym_RBRACE, - STATE(5160), 1, - aux_sym_object_repeat1, + [158744] = 3, + ACTIONS(7323), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159254] = 2, + ACTIONS(3635), 2, + anon_sym_in, + anon_sym_of, + [158756] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159264] = 2, + [158766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159274] = 2, + [158776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8845), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159284] = 2, + [158786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159294] = 2, + [158796] = 4, + ACTIONS(7520), 1, + anon_sym_COMMA, + ACTIONS(8813), 1, + anon_sym_LBRACE, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + [158810] = 4, + 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, + [158824] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8783), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159304] = 2, + [158834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159314] = 2, + [158844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159324] = 4, - ACTIONS(5566), 1, + [158854] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8817), 1, + sym_identifier, + STATE(4575), 1, + sym_export_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158868] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(8843), 1, + ACTIONS(8819), 1, anon_sym_RBRACE, - STATE(5232), 1, + STATE(4612), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159338] = 2, + [158882] = 4, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(8821), 1, + sym_identifier, + STATE(5291), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159348] = 2, + [158896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159358] = 2, + [158906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159368] = 2, + [158916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159378] = 2, + [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, - ACTIONS(8821), 3, - sym__automatic_semicolon, + [158940] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159388] = 4, - ACTIONS(8847), 1, + ACTIONS(8825), 1, + anon_sym_RBRACE, + STATE(5137), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158954] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(8849), 1, - anon_sym_RPAREN, - STATE(5163), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8825), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159402] = 2, + [158968] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8851), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159412] = 2, + [158978] = 3, + ACTIONS(8827), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8829), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159422] = 2, + [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, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159432] = 2, + [159004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159442] = 2, + [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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159452] = 2, + [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, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159462] = 2, + [159062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159472] = 2, + [159072] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(8849), 1, + anon_sym_LPAREN, + STATE(759), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, - sym__automatic_semicolon, + [159086] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159482] = 2, + ACTIONS(8235), 1, + anon_sym_RBRACK, + STATE(5175), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159492] = 2, + [159100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159502] = 2, + [159110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159512] = 2, + [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, - ACTIONS(8845), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159522] = 2, + [159134] = 4, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + STATE(5748), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8851), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159532] = 2, + [159148] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8853), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159542] = 2, + [159158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159552] = 2, + [159168] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5523), 1, + anon_sym_RBRACK, + STATE(5161), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159562] = 2, + [159182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159572] = 2, + [159192] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159582] = 2, + [159202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159592] = 2, + [159212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159602] = 2, + [159222] = 3, + ACTIONS(8061), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, + ACTIONS(8063), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159612] = 2, + anon_sym_LBRACE_PIPE, + [159234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159622] = 2, + [159244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159632] = 2, + [159254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159642] = 2, + [159264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159652] = 2, + [159274] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8851), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159662] = 2, + [159288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159672] = 2, + [159298] = 4, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(8853), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + [159312] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159682] = 2, + ACTIONS(5523), 1, + anon_sym_RBRACK, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5319), 3, + [159326] = 4, + ACTIONS(8855), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [159692] = 3, - ACTIONS(8251), 1, - anon_sym_EQ, + ACTIONS(8858), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8857), 2, + [159340] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, + ACTIONS(8235), 1, anon_sym_RBRACK, - [159704] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - ACTIONS(8859), 1, - anon_sym_LPAREN, - STATE(751), 1, - sym_statement_block, + STATE(5177), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159718] = 2, + [159354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159728] = 2, + [159364] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8860), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8861), 3, - sym__automatic_semicolon, + [159378] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159738] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8863), 1, - anon_sym_RBRACK, - STATE(4546), 1, - aux_sym_array_repeat1, + ACTIONS(8862), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159752] = 2, + [159392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159762] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8865), 1, - anon_sym_RBRACK, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + [159402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159776] = 4, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(8867), 1, + ACTIONS(5567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [159412] = 3, + ACTIONS(8196), 1, anon_sym_EQ, - STATE(5588), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159790] = 4, - ACTIONS(5566), 1, + ACTIONS(8864), 2, anon_sym_COMMA, - ACTIONS(8869), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159804] = 4, - ACTIONS(8857), 1, anon_sym_RBRACK, - ACTIONS(8871), 1, + [159424] = 4, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(8866), 1, anon_sym_COMMA, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + STATE(4847), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159818] = 2, + [159438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8874), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159828] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8876), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [159448] = 3, + ACTIONS(4188), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159842] = 2, + ACTIONS(4190), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [159460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159852] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [159470] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8878), 1, - sym__glimmer_template_content, - ACTIONS(8881), 1, - sym_glimmer_closing_tag, - STATE(5162), 1, - aux_sym_glimmer_template_repeat1, - [159868] = 4, - ACTIONS(1646), 1, - anon_sym_RPAREN, - ACTIONS(8883), 1, + sym_comment, + ACTIONS(8386), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [159480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159882] = 3, - ACTIONS(4133), 1, - anon_sym_LBRACE, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159894] = 2, + anon_sym_SEMI, + [159500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159904] = 3, - ACTIONS(4171), 1, + [159510] = 3, + ACTIONS(4210), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, + ACTIONS(4212), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [159916] = 2, + [159522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8885), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159926] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8887), 1, - sym__glimmer_template_content, - ACTIONS(8889), 1, - sym_glimmer_closing_tag, - STATE(5201), 1, - aux_sym_glimmer_template_repeat1, - [159942] = 4, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(8891), 1, - anon_sym_DOT, - STATE(3135), 1, - sym_arguments, + [159532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159956] = 2, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159966] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8337), 1, - anon_sym_RBRACK, - STATE(5155), 1, - aux_sym_array_pattern_repeat1, + [159552] = 4, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(8868), 1, + anon_sym_DOT, + STATE(3176), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159980] = 2, + [159566] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8893), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159990] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8895), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [159576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160004] = 2, + ACTIONS(8491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8893), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160014] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8897), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + [159596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160028] = 2, + ACTIONS(8491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6041), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160038] = 2, + [159616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8899), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160048] = 2, + [159626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8874), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160058] = 4, - ACTIONS(1939), 1, + [159636] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5548), 1, + ACTIONS(8870), 1, anon_sym_RBRACK, - STATE(5153), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160072] = 4, - ACTIONS(8901), 1, + [159650] = 4, + ACTIONS(8872), 1, anon_sym_LPAREN, - ACTIONS(8903), 1, + ACTIONS(8874), 1, anon_sym_await, - STATE(74), 1, + STATE(75), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160086] = 4, - ACTIONS(8905), 1, - anon_sym_COMMA, - ACTIONS(8908), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160100] = 2, + [159664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160110] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8910), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160124] = 3, - ACTIONS(8912), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8914), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160136] = 2, + [159674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8916), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160146] = 2, + [159684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8918), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [160156] = 4, - ACTIONS(2489), 1, + [159694] = 4, + ACTIONS(2492), 1, anon_sym_while, - ACTIONS(8920), 1, + ACTIONS(8876), 1, anon_sym_else, - STATE(904), 1, + STATE(850), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160170] = 4, - ACTIONS(1939), 1, + [159708] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5329), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(5227), 1, + STATE(5209), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160184] = 4, - ACTIONS(1939), 1, + [159722] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5329), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160198] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8922), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [159736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160212] = 4, - ACTIONS(6982), 1, - anon_sym_RBRACE, - ACTIONS(8924), 1, + ACTIONS(8491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4623), 1, - aux_sym_export_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160226] = 2, + anon_sym_SEMI, + [159746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8861), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160236] = 2, + [159756] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160246] = 2, + [159766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160256] = 2, + [159776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8926), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160266] = 4, - ACTIONS(1939), 1, + [159786] = 4, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(8878), 1, + anon_sym_LBRACE, + STATE(5783), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159800] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - ACTIONS(5548), 1, + ACTIONS(8880), 1, anon_sym_RBRACK, - STATE(4546), 1, - aux_sym_array_repeat1, + STATE(5177), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160280] = 2, + [159814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160290] = 2, + [159824] = 4, + ACTIONS(8864), 1, + anon_sym_RBRACK, + ACTIONS(8882), 1, + anon_sym_COMMA, + STATE(5177), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [160300] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8337), 1, - anon_sym_RBRACK, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + [159838] = 4, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(8147), 1, + sym_identifier, + STATE(4801), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160314] = 4, - ACTIONS(6333), 1, + [159852] = 4, + ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(6601), 1, anon_sym_COLON, - ACTIONS(8928), 1, + ACTIONS(8885), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160328] = 5, - ACTIONS(3), 1, + [159866] = 4, + ACTIONS(8310), 1, + anon_sym_GT, + ACTIONS(8887), 1, + anon_sym_COMMA, + STATE(4655), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [159880] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8719), 1, - sym__glimmer_template_content, - ACTIONS(8930), 1, - sym_glimmer_closing_tag, - STATE(5162), 1, - aux_sym_glimmer_template_repeat1, - [160344] = 2, + sym_comment, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8932), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160354] = 3, - ACTIONS(8934), 1, + [159900] = 3, + ACTIONS(8889), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 2, + ACTIONS(3544), 2, anon_sym_COMMA, anon_sym_RBRACK, - [160366] = 2, + [159912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8916), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160376] = 4, - ACTIONS(8937), 1, - anon_sym_COMMA, - ACTIONS(8939), 1, - anon_sym_RBRACK, - STATE(4904), 1, - aux_sym_tuple_type_repeat1, + [159922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160390] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8453), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160400] = 2, + [159932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8941), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160410] = 2, + [159942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160420] = 2, + [159952] = 4, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(8894), 1, + anon_sym_await, + STATE(66), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160430] = 2, + [159976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160440] = 4, - ACTIONS(8943), 1, + [159986] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(8945), 1, - anon_sym_RBRACK, - STATE(4619), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8896), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160454] = 4, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_DOT, - STATE(2897), 1, - sym_arguments, + [160000] = 4, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160468] = 2, + [160014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160478] = 2, + [160024] = 4, + ACTIONS(8900), 1, + anon_sym_COMMA, + ACTIONS(8902), 1, + anon_sym_RBRACK, + STATE(4610), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + [160038] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160488] = 2, + [160048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(8904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160498] = 4, - ACTIONS(8947), 1, + [160058] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - ACTIONS(8950), 1, - anon_sym_RBRACK, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8906), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160512] = 2, + [160072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160522] = 2, + [160082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8952), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [160532] = 2, + ACTIONS(8458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8908), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160542] = 4, - ACTIONS(6717), 1, + [160102] = 4, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, - ACTIONS(7819), 1, + ACTIONS(7784), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160556] = 2, + [160116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160566] = 2, + [160126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8910), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160576] = 2, + [160136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160586] = 2, + [160146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8912), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160596] = 2, + [160156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160606] = 2, + [160166] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8914), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + [160180] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160616] = 4, - ACTIONS(1939), 1, + [160190] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8954), 1, + ACTIONS(8916), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160630] = 2, + [160204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160640] = 4, - ACTIONS(3193), 1, + [160214] = 4, + ACTIONS(3166), 1, anon_sym_GT, - ACTIONS(8956), 1, + ACTIONS(8918), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160654] = 2, + [160228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8912), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160664] = 2, + [160238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160674] = 4, - ACTIONS(8958), 1, - anon_sym_COMMA, - ACTIONS(8961), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [160248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160688] = 3, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(882), 1, - sym_class_body, + ACTIONS(8920), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160699] = 2, + ACTIONS(8922), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160268] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8421), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [160708] = 3, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5475), 1, - sym__from_clause, + anon_sym_SEMI, + [160278] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(797), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160719] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2131), 1, - sym_statement_block, + [160292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160730] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(2537), 1, - sym_class_body, + ACTIONS(8920), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160741] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_statement_block, + ACTIONS(8904), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160752] = 3, - ACTIONS(7445), 1, + ACTIONS(8725), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160322] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(778), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160763] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2090), 1, - sym_class_body, + [160333] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(8924), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160774] = 3, - ACTIONS(6804), 1, + [160344] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2553), 1, - sym_class_body, + STATE(2114), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160785] = 3, - ACTIONS(6769), 1, + [160355] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(2172), 1, + STATE(4120), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160796] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + [160366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160807] = 3, - ACTIONS(6804), 1, + ACTIONS(7550), 2, anon_sym_LBRACE, - STATE(1624), 1, - sym_class_body, + anon_sym_EQ_GT, + [160375] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160818] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5725), 1, - sym_formal_parameters, + ACTIONS(8926), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160829] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5770), 1, - sym_formal_parameters, + ACTIONS(8928), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160393] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2648), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160840] = 3, - ACTIONS(4071), 1, + ACTIONS(8930), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160413] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(1631), 1, - sym_statement_block, + STATE(2535), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160851] = 3, - ACTIONS(6487), 1, + [160424] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5808), 1, + STATE(3860), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160862] = 2, + [160435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 2, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160871] = 3, - ACTIONS(4071), 1, + [160444] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(1636), 1, + STATE(5386), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160882] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1638), 1, - sym_class_body, + [160455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160893] = 3, - ACTIONS(7445), 1, + ACTIONS(6005), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160464] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(2606), 1, - sym_statement_block, + STATE(2120), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160904] = 2, + [160475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160913] = 2, + ACTIONS(8932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160484] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4128), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8967), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160922] = 3, - ACTIONS(7445), 1, + [160495] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(2631), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160933] = 2, + [160506] = 3, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1644), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4661), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160942] = 3, - ACTIONS(8969), 1, + [160517] = 3, + ACTIONS(8934), 1, sym_identifier, - ACTIONS(8971), 1, + ACTIONS(8936), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160953] = 3, - ACTIONS(8973), 1, - sym_identifier, - ACTIONS(8975), 1, - sym_private_property_identifier, + [160528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160964] = 3, - ACTIONS(7445), 1, + ACTIONS(8938), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160537] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2612), 1, - sym_statement_block, + STATE(1713), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160975] = 2, + [160548] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4130), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8977), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160984] = 3, - ACTIONS(8979), 1, - sym_identifier, - ACTIONS(8981), 1, - sym_private_property_identifier, + [160559] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2607), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160995] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym__for_header, + [160570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161006] = 2, + ACTIONS(8940), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161015] = 3, - ACTIONS(8987), 1, + ACTIONS(8942), 2, + anon_sym_in, + anon_sym_of, + [160588] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5485), 1, - sym_object, + STATE(2620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161026] = 2, + [160599] = 3, + ACTIONS(8944), 1, + anon_sym_LBRACE, + STATE(831), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8989), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161035] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2128), 1, - sym_statement_block, + [160610] = 3, + ACTIONS(8946), 1, + sym_identifier, + ACTIONS(8948), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161046] = 3, - ACTIONS(2445), 1, + [160621] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(5323), 1, + STATE(1681), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161057] = 3, - ACTIONS(4129), 1, + [160632] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2193), 1, - sym_statement_block, + STATE(1703), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161068] = 2, + [160643] = 3, + ACTIONS(8950), 1, + sym_identifier, + ACTIONS(8952), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8025), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161077] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1711), 1, - sym_class_body, + [160654] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8547), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161088] = 3, - ACTIONS(7944), 1, - anon_sym_in, - ACTIONS(7946), 1, - anon_sym_of, + [160665] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161099] = 3, - ACTIONS(8991), 1, + [160676] = 3, + ACTIONS(8954), 1, sym_identifier, - ACTIONS(8993), 1, + ACTIONS(8956), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161110] = 3, - ACTIONS(6804), 1, + [160687] = 3, + ACTIONS(6924), 1, anon_sym_LBRACE, - STATE(2488), 1, + STATE(233), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161121] = 3, - ACTIONS(8995), 1, - sym_identifier, - ACTIONS(8997), 1, - sym_private_property_identifier, + [160698] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(1717), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160709] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(8958), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160720] = 3, + ACTIONS(6900), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161132] = 3, - ACTIONS(7445), 1, + [160731] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(2616), 1, - sym_statement_block, + STATE(2083), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161143] = 3, - ACTIONS(8999), 1, - sym_identifier, - ACTIONS(9001), 1, - sym_private_property_identifier, + [160742] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161154] = 3, - ACTIONS(7445), 1, + ACTIONS(8960), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160751] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(2624), 1, + STATE(1707), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161165] = 3, - ACTIONS(2445), 1, + [160762] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(750), 1, + STATE(776), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161176] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_statement_block, + [160773] = 3, + ACTIONS(8962), 1, + sym_identifier, + ACTIONS(8964), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161187] = 3, - ACTIONS(6769), 1, + [160784] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2186), 1, - sym_class_body, + STATE(2066), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161198] = 3, - ACTIONS(8533), 1, + [160795] = 3, + ACTIONS(8966), 1, sym_identifier, - ACTIONS(8537), 1, + ACTIONS(8968), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161209] = 3, - ACTIONS(9003), 1, + [160806] = 3, + ACTIONS(8970), 1, sym_identifier, - ACTIONS(9005), 1, + ACTIONS(8972), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161220] = 3, - ACTIONS(9007), 1, - sym_identifier, - ACTIONS(9009), 1, - sym_private_property_identifier, + [160817] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5944), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161231] = 3, - ACTIONS(4071), 1, + [160828] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(1717), 1, - sym_statement_block, + STATE(777), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161242] = 3, - ACTIONS(7445), 1, + [160839] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2613), 1, + STATE(727), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161253] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5579), 1, - sym_statement_block, + [160850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161264] = 2, + ACTIONS(8974), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8754), 2, + ACTIONS(5962), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161273] = 3, - ACTIONS(9011), 1, - sym_identifier, - ACTIONS(9013), 1, - sym_private_property_identifier, + [160868] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5497), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161284] = 3, - ACTIONS(9015), 1, - anon_sym_in, - ACTIONS(9017), 1, - anon_sym_COLON, + [160879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161295] = 2, + ACTIONS(5958), 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, - ACTIONS(9019), 2, - anon_sym_COMMA, - anon_sym_GT, - [161304] = 3, - ACTIONS(9021), 1, + [160899] = 3, + ACTIONS(8976), 1, sym_identifier, - ACTIONS(9023), 1, + ACTIONS(8978), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161315] = 3, - ACTIONS(9025), 1, - sym_identifier, - ACTIONS(9027), 1, - sym_private_property_identifier, + [160910] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5742), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161326] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_statement_block, + [160921] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5747), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161337] = 2, + [160932] = 3, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(2480), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161346] = 2, + [160943] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2068), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8619), 2, - anon_sym_COMMA, - anon_sym_GT, - [161355] = 2, + [160954] = 3, + ACTIONS(8980), 1, + sym_identifier, + ACTIONS(8982), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7609), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [161364] = 3, - ACTIONS(7445), 1, + [160965] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2650), 1, + STATE(2334), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161375] = 3, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3726), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161386] = 3, - ACTIONS(9029), 1, + [160976] = 3, + ACTIONS(8984), 1, sym_identifier, - ACTIONS(9031), 1, + ACTIONS(8986), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161397] = 3, - ACTIONS(3185), 1, - sym_jsx_identifier, - ACTIONS(9033), 1, + [160987] = 3, + ACTIONS(8988), 1, sym_identifier, + ACTIONS(8990), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161408] = 3, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9037), 1, - anon_sym_from, + [160998] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2335), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161419] = 3, - ACTIONS(9039), 1, + [161009] = 3, + ACTIONS(8992), 1, sym_identifier, - ACTIONS(9041), 1, + ACTIONS(8994), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161430] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2218), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161441] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2634), 1, - sym_statement_block, + [161020] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8751), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161452] = 3, - ACTIONS(9043), 1, + [161031] = 3, + ACTIONS(8571), 1, sym_identifier, - ACTIONS(9045), 1, + ACTIONS(8575), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161463] = 3, - ACTIONS(4129), 1, + [161042] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2116), 1, + STATE(2649), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161474] = 3, - ACTIONS(6898), 1, + [161053] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(4157), 1, - sym_class_body, + STATE(772), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161485] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2668), 1, - sym_statement_block, + [161064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161496] = 3, - ACTIONS(8663), 1, - sym_identifier, - ACTIONS(8667), 1, - sym_private_property_identifier, + ACTIONS(8996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161507] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5389), 1, - sym_statement_block, + ACTIONS(4513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161082] = 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(5), 2, sym_html_comment, sym_comment, - [161518] = 2, + [161102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5017), 2, + ACTIONS(4616), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161527] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_statement_block, + [161111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161538] = 3, - ACTIONS(9047), 1, - sym_identifier, - ACTIONS(9049), 1, - anon_sym_STAR, + ACTIONS(9004), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161120] = 3, + ACTIONS(9006), 1, + anon_sym_SEMI, + ACTIONS(9008), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161549] = 2, + [161131] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7595), 2, + [161142] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161558] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + STATE(1647), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161569] = 3, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(2677), 1, - sym_statement_block, + [161153] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161580] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(756), 1, - sym_statement_block, + [161164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161591] = 3, - ACTIONS(9051), 1, - sym_identifier, - ACTIONS(9053), 1, - sym_private_property_identifier, + ACTIONS(5123), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161602] = 2, + ACTIONS(7558), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161182] = 3, + ACTIONS(9012), 1, + sym_identifier, + STATE(4738), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4720), 2, - sym__automatic_semicolon, + [161193] = 3, + ACTIONS(9014), 1, anon_sym_SEMI, - [161611] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + ACTIONS(9016), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161622] = 2, + [161204] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9057), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161631] = 3, - ACTIONS(9059), 1, - sym_identifier, - ACTIONS(9061), 1, - sym_private_property_identifier, + [161215] = 3, + ACTIONS(7872), 1, + anon_sym_in, + ACTIONS(7874), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161642] = 2, + [161226] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161651] = 2, + [161237] = 3, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(2556), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8564), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161660] = 3, - ACTIONS(7445), 1, + [161248] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(764), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161259] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5360), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161671] = 3, - ACTIONS(9063), 1, + [161270] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4148), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161281] = 3, + ACTIONS(9018), 1, sym_identifier, - ACTIONS(9065), 1, + ACTIONS(9020), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161682] = 3, - ACTIONS(2445), 1, + [161292] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5402), 1, + STATE(2657), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161693] = 3, - ACTIONS(1676), 1, + [161303] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(241), 1, + STATE(2621), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161704] = 2, + [161314] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9067), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161713] = 3, - ACTIONS(9069), 1, - sym_identifier, - ACTIONS(9071), 1, - sym_private_property_identifier, + [161325] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161724] = 3, - ACTIONS(9073), 1, - sym_identifier, - STATE(4939), 1, - sym_nested_identifier, + [161336] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2638), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161735] = 2, + [161347] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9022), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9075), 2, + ACTIONS(9024), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161744] = 3, - ACTIONS(4129), 1, + [161365] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2105), 1, - sym_statement_block, + STATE(1704), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161755] = 3, - ACTIONS(9077), 1, - sym_identifier, - ACTIONS(9079), 1, - anon_sym_STAR, + [161376] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(1649), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161766] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5911), 1, - sym_formal_parameters, + [161387] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2656), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161777] = 2, + [161398] = 3, + ACTIONS(4750), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8445), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161786] = 3, - ACTIONS(9081), 1, - sym_identifier, - ACTIONS(9083), 1, - sym_private_property_identifier, + [161409] = 3, + ACTIONS(9026), 1, + anon_sym_SEMI, + ACTIONS(9028), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161797] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3776), 1, - sym_formal_parameters, + [161420] = 3, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5517), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161808] = 3, - ACTIONS(9085), 1, - sym_identifier, - ACTIONS(9087), 1, - sym_private_property_identifier, + [161431] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161819] = 3, - ACTIONS(9089), 1, - sym_identifier, - ACTIONS(9091), 1, - sym_private_property_identifier, + [161442] = 3, + ACTIONS(9030), 1, + anon_sym_in, + ACTIONS(9032), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161830] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2122), 1, - sym_class_body, + [161453] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5734), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161841] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_statement_block, + [161464] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5985), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161852] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, + [161475] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5687), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161863] = 2, + [161486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1710), 2, + ACTIONS(9034), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161872] = 3, - ACTIONS(6898), 1, + [161495] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(4164), 1, + STATE(4034), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161883] = 3, - ACTIONS(2445), 1, + [161506] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5484), 1, + STATE(2643), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161894] = 3, - ACTIONS(9093), 1, - sym_identifier, - ACTIONS(9095), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161905] = 3, - ACTIONS(9097), 1, - sym_identifier, - ACTIONS(9099), 1, - sym_private_property_identifier, + [161517] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2651), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161916] = 2, + [161528] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161925] = 3, - ACTIONS(9101), 1, - sym_identifier, - ACTIONS(9103), 1, - sym_private_property_identifier, + [161539] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2611), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161936] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(758), 1, - sym_class_body, + [161550] = 3, + ACTIONS(9036), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161947] = 3, - ACTIONS(2445), 1, + [161561] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(5575), 1, + STATE(2191), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161958] = 3, - ACTIONS(4514), 1, + [161572] = 3, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(2179), 1, - sym_arguments, + STATE(3334), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161969] = 3, - ACTIONS(7445), 1, + [161583] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2647), 1, + STATE(2616), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161980] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5642), 1, - sym_formal_parameters, + [161594] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161991] = 2, + ACTIONS(5125), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161603] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5272), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162000] = 3, - ACTIONS(9105), 1, - sym_identifier, - ACTIONS(9107), 1, - sym_private_property_identifier, + [161614] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162011] = 3, - ACTIONS(8214), 1, + [161625] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2614), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161636] = 3, + ACTIONS(8129), 1, anon_sym_from, - STATE(4361), 1, + STATE(4170), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162022] = 3, - ACTIONS(7208), 1, + [161647] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(3959), 1, + STATE(2618), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162033] = 3, - ACTIONS(4071), 1, + [161658] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(1629), 1, + STATE(2628), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162044] = 3, - ACTIONS(6898), 1, + [161669] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(4167), 1, + STATE(1706), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162055] = 2, + [161680] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(1615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162064] = 3, - ACTIONS(9109), 1, - anon_sym_LBRACE, - STATE(3961), 1, - sym_enum_body, + [161691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162075] = 2, + ACTIONS(4969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 2, + ACTIONS(5970), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162084] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_statement_block, + [161709] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161718] = 3, + ACTIONS(9038), 1, + anon_sym_SEMI, + ACTIONS(9040), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162095] = 3, - ACTIONS(7445), 1, + [161729] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2613), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162106] = 2, + [161740] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5358), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162115] = 3, - ACTIONS(6487), 1, + [161751] = 3, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(5679), 1, + STATE(3630), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162126] = 3, - ACTIONS(4071), 1, + [161762] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(1675), 1, + STATE(2619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162137] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1687), 1, - sym_class_body, + [161773] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162148] = 3, - ACTIONS(9111), 1, + ACTIONS(5974), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161782] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(844), 1, - sym_switch_body, + STATE(2612), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162159] = 3, - ACTIONS(9113), 1, - sym_identifier, - ACTIONS(9115), 1, - sym_private_property_identifier, + [161793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162170] = 3, - ACTIONS(6047), 1, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161802] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(2752), 1, - sym_arguments, + STATE(5702), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162181] = 3, - ACTIONS(3249), 1, + [161813] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3283), 1, + STATE(5794), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162192] = 3, - ACTIONS(9117), 1, - sym_identifier, - ACTIONS(9119), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162203] = 3, - ACTIONS(8827), 1, - sym_identifier, - ACTIONS(8831), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162214] = 3, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1643), 1, - sym_arguments, + [161824] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5232), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162225] = 3, - ACTIONS(6487), 1, + [161835] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(4346), 1, + STATE(5858), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162236] = 2, + [161846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9121), 2, + ACTIONS(5980), 2, anon_sym_COMMA, - anon_sym_GT, - [162245] = 3, - ACTIONS(3541), 1, - anon_sym_COLON, - STATE(5547), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162256] = 3, - ACTIONS(6487), 1, + anon_sym_RBRACE, + [161855] = 3, + ACTIONS(4535), 1, anon_sym_LPAREN, - STATE(5735), 1, - sym_formal_parameters, + STATE(2088), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162267] = 3, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5481), 1, - sym__from_clause, + [161866] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5234), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162278] = 3, - ACTIONS(9123), 1, - sym_identifier, - ACTIONS(9125), 1, - sym_private_property_identifier, + [161877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162289] = 2, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161886] = 3, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(250), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9127), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162298] = 2, + [161897] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2652), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6045), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162307] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, + [161908] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2115), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162318] = 2, + [161919] = 3, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9129), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162327] = 2, + [161930] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2650), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162336] = 2, + [161941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 2, + ACTIONS(6013), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162345] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2299), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162356] = 3, - ACTIONS(6910), 1, + [161950] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(237), 1, - sym_class_body, + STATE(5365), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162367] = 3, - ACTIONS(9131), 1, - sym_identifier, - ACTIONS(9133), 1, - sym_private_property_identifier, + [161961] = 3, + ACTIONS(5964), 1, + anon_sym_LPAREN, + STATE(2753), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162378] = 3, - ACTIONS(6487), 1, + [161972] = 3, + ACTIONS(9010), 1, anon_sym_LPAREN, - STATE(4049), 1, - sym_formal_parameters, + STATE(63), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162389] = 2, + [161983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9135), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162398] = 3, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1684), 1, - sym_arguments, + ACTIONS(9042), 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, - [162409] = 3, - ACTIONS(6487), 1, + [162003] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5952), 1, + STATE(5625), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162420] = 3, - ACTIONS(7445), 1, + [162014] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2649), 1, + STATE(2647), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162431] = 2, + [162025] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5274), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162440] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5976), 1, - sym_formal_parameters, + [162036] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162451] = 2, + [162047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 2, + ACTIONS(8479), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162460] = 3, - ACTIONS(2445), 1, + anon_sym_GT, + [162056] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(5385), 1, + STATE(3943), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162471] = 2, + [162067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 2, + ACTIONS(6009), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162480] = 3, - ACTIONS(9137), 1, - anon_sym_SEMI, - ACTIONS(9139), 1, - sym__automatic_semicolon, + [162076] = 3, + ACTIONS(9036), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162491] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2076), 1, - sym_statement_block, + [162087] = 3, + ACTIONS(9044), 1, + sym_identifier, + ACTIONS(9046), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162502] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5739), 1, - sym_formal_parameters, + [162098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162513] = 3, - ACTIONS(9141), 1, + ACTIONS(4664), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162107] = 3, + ACTIONS(8609), 1, sym_identifier, - ACTIONS(9143), 1, + ACTIONS(8613), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162524] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4109), 1, - sym_formal_parameters, + [162118] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4668), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162127] = 3, + ACTIONS(8944), 1, + anon_sym_LBRACE, + STATE(910), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162535] = 3, - ACTIONS(9145), 1, + [162138] = 3, + ACTIONS(9048), 1, sym_identifier, - STATE(4751), 1, - sym_nested_identifier, + ACTIONS(9050), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162546] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5637), 1, - sym_formal_parameters, + [162149] = 3, + ACTIONS(9052), 1, + anon_sym_LBRACE, + STATE(3945), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162557] = 2, + [162160] = 3, + ACTIONS(9054), 1, + sym_identifier, + ACTIONS(9056), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9147), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162566] = 3, - ACTIONS(4129), 1, + [162171] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2300), 1, + STATE(2663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162577] = 2, + [162182] = 3, + ACTIONS(9058), 1, + sym_identifier, + ACTIONS(9060), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7691), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162586] = 2, + [162193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(8787), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162595] = 3, - ACTIONS(2445), 1, + [162202] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5249), 1, + STATE(5411), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162606] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2301), 1, - sym_statement_block, + [162213] = 3, + ACTIONS(9062), 1, + sym_identifier, + ACTIONS(9064), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162617] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2120), 1, - sym_class_body, + [162224] = 3, + ACTIONS(9066), 1, + sym_identifier, + ACTIONS(9068), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162628] = 3, - ACTIONS(1676), 1, + [162235] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(254), 1, + STATE(2640), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162639] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8572), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162650] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4101), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162661] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8631), 1, - anon_sym_GT, + [162246] = 3, + ACTIONS(9070), 1, + sym_identifier, + ACTIONS(9072), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162672] = 3, - ACTIONS(9149), 1, + [162257] = 3, + ACTIONS(8807), 1, sym_identifier, - ACTIONS(9151), 1, + ACTIONS(8811), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162683] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9153), 1, - anon_sym_GT, + [162268] = 3, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162694] = 2, + [162279] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9155), 2, + ACTIONS(5958), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162703] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(711), 1, - sym_statement_block, + [162288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162714] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_statement_block, + ACTIONS(5962), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162297] = 3, + ACTIONS(9074), 1, + sym_identifier, + ACTIONS(9076), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162725] = 2, + [162308] = 3, + ACTIONS(9078), 1, + sym_identifier, + ACTIONS(9080), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162734] = 3, - ACTIONS(8410), 1, - sym_identifier, - ACTIONS(8414), 1, - sym_private_property_identifier, + [162319] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162745] = 3, - ACTIONS(9109), 1, - anon_sym_LBRACE, - STATE(3998), 1, - sym_enum_body, + [162330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162756] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2191), 1, - sym_class_body, + ACTIONS(6023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162339] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5459), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162767] = 3, - ACTIONS(9157), 1, - anon_sym_SEMI, - ACTIONS(9159), 1, - sym__automatic_semicolon, + [162350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162778] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2302), 1, - sym_class_body, + ACTIONS(6019), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162789] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4187), 1, - sym_class_body, + ACTIONS(9082), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162368] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5414), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162800] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1654), 1, - sym_class_body, + [162379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162811] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2642), 1, - sym_statement_block, + ACTIONS(9084), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162388] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5696), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162822] = 3, - ACTIONS(7445), 1, + [162399] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(2644), 1, - sym_statement_block, + STATE(2273), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162833] = 3, - ACTIONS(9161), 1, + [162410] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_enum_body, + STATE(2271), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162844] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(768), 1, - sym_class_body, + [162421] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162855] = 2, + [162432] = 3, + ACTIONS(9086), 1, + sym_identifier, + STATE(4775), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5000), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162864] = 3, - ACTIONS(6487), 1, + [162443] = 3, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(5997), 1, + STATE(3564), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162875] = 3, - ACTIONS(9163), 1, - anon_sym_SEMI, - ACTIONS(9165), 1, - sym__automatic_semicolon, + [162454] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(9088), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162886] = 3, - ACTIONS(4071), 1, + [162465] = 3, + ACTIONS(9090), 1, + sym_identifier, + ACTIONS(9092), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162476] = 3, + ACTIONS(6900), 1, anon_sym_LBRACE, - STATE(1688), 1, - sym_statement_block, + STATE(839), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162897] = 3, - ACTIONS(4071), 1, + [162487] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(1686), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162908] = 3, - ACTIONS(7445), 1, + [162498] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2607), 1, + STATE(908), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162919] = 2, + [162509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9167), 2, + ACTIONS(9094), 2, anon_sym_COMMA, - anon_sym_GT, - [162928] = 3, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_class_body, + anon_sym_RBRACE, + [162518] = 3, + ACTIONS(9096), 1, + sym_identifier, + ACTIONS(9098), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162939] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(61), 1, - sym__for_header, + [162529] = 3, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(2303), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162950] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1698), 1, - sym_class_body, + [162540] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3997), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162961] = 3, - ACTIONS(9055), 1, + [162551] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, + STATE(4280), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162972] = 2, + [162562] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5700), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9169), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162981] = 2, + [162573] = 3, + ACTIONS(9100), 1, + sym_identifier, + ACTIONS(9102), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8857), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162990] = 3, - ACTIONS(9171), 1, + [162584] = 3, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(748), 1, - sym_parenthesized_expression, + STATE(3266), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163001] = 3, - ACTIONS(7445), 1, + [162595] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2617), 1, + STATE(2274), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163012] = 3, - ACTIONS(9173), 1, + [162606] = 3, + ACTIONS(9104), 1, sym_identifier, - ACTIONS(9175), 1, + ACTIONS(9106), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163023] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5028), 2, - sym__automatic_semicolon, + [162617] = 3, + ACTIONS(9108), 1, anon_sym_SEMI, - [163032] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5537), 1, - sym_statement_block, + ACTIONS(9110), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163043] = 3, - ACTIONS(2445), 1, + [162628] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(818), 1, + STATE(2275), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163054] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_statement_block, + [162639] = 3, + ACTIONS(9112), 1, + anon_sym_SEMI, + ACTIONS(9114), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163065] = 2, + [162650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9177), 2, + ACTIONS(9116), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [163074] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2324), 1, - sym_class_body, + anon_sym_RPAREN, + [162659] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5762), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163085] = 2, + [162670] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2276), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9179), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163094] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9181), 1, - anon_sym_GT, + [162681] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5940), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163105] = 2, + [162692] = 3, + ACTIONS(9118), 1, + sym_identifier, + ACTIONS(9120), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9183), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163114] = 3, - ACTIONS(7445), 1, + [162703] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2604), 1, + STATE(2605), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163125] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1709), 1, - sym_class_body, + [162714] = 3, + ACTIONS(9122), 1, + sym_identifier, + ACTIONS(9124), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163136] = 2, + [162725] = 3, + ACTIONS(9126), 1, + sym_identifier, + ACTIONS(9128), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163145] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2325), 1, - sym_class_body, + [162736] = 3, + ACTIONS(9130), 1, + sym_identifier, + ACTIONS(9132), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163156] = 2, + [162747] = 3, + ACTIONS(9134), 1, + anon_sym_SEMI, + ACTIONS(9136), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163165] = 2, + [162758] = 3, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(2237), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9185), 2, - anon_sym_in, - anon_sym_of, - [163174] = 3, - ACTIONS(6465), 1, + [162769] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3371), 1, + STATE(5830), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163185] = 3, - ACTIONS(9187), 1, - anon_sym_SEMI, - ACTIONS(9189), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163196] = 3, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4953), 1, - sym_type_annotation, + [162780] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2189), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163207] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8467), 1, - anon_sym_GT, + [162791] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4085), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163218] = 3, - ACTIONS(9191), 1, - anon_sym_SEMI, - ACTIONS(9193), 1, - sym__automatic_semicolon, + [162802] = 3, + ACTIONS(9138), 1, + sym_identifier, + ACTIONS(9140), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163229] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4067), 1, - sym_formal_parameters, + [162813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163240] = 3, - ACTIONS(9195), 1, - anon_sym_SEMI, - ACTIONS(9197), 1, - sym__automatic_semicolon, + ACTIONS(9142), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163251] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2275), 1, - sym_class_body, + ACTIONS(9144), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163262] = 3, - ACTIONS(9199), 1, - anon_sym_SEMI, - ACTIONS(9201), 1, - sym__automatic_semicolon, + ACTIONS(8841), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163273] = 2, + ACTIONS(9146), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(8834), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [163282] = 3, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(245), 1, - sym_class_body, + anon_sym_RBRACK, + [162858] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5724), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163293] = 3, - ACTIONS(9203), 1, + [162869] = 3, + ACTIONS(9148), 1, sym_identifier, - ACTIONS(9205), 1, + ACTIONS(9150), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163304] = 3, - ACTIONS(9207), 1, - anon_sym_SEMI, - ACTIONS(9209), 1, - sym__automatic_semicolon, + [162880] = 3, + ACTIONS(9152), 1, + anon_sym_LPAREN, + STATE(758), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163315] = 3, - ACTIONS(7208), 1, + [162891] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(4071), 1, + STATE(2646), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163326] = 3, - ACTIONS(9211), 1, - anon_sym_SEMI, - ACTIONS(9213), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163337] = 2, + [162902] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(4056), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163346] = 2, + [162913] = 3, + ACTIONS(9052), 1, + anon_sym_LBRACE, + STATE(3982), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9215), 2, - sym__automatic_semicolon, + [162924] = 3, + ACTIONS(9154), 1, anon_sym_SEMI, - [163355] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(809), 1, - sym_statement_block, + ACTIONS(9156), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163366] = 3, - ACTIONS(7445), 1, + [162935] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2632), 1, + STATE(902), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163377] = 2, + [162946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, + ACTIONS(5992), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163386] = 3, - ACTIONS(7208), 1, + [162955] = 3, + ACTIONS(1657), 1, anon_sym_LBRACE, - STATE(776), 1, + STATE(244), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163397] = 3, - ACTIONS(7038), 1, + [162966] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(901), 1, - sym_class_body, + STATE(4060), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163408] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(5371), 1, - sym_parenthesized_expression, + [162977] = 3, + ACTIONS(9158), 1, + anon_sym_LBRACE, + STATE(833), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163419] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_statement_block, + [162988] = 3, + ACTIONS(8507), 1, + sym_identifier, + ACTIONS(8511), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163430] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2651), 1, - sym_statement_block, + [162999] = 3, + ACTIONS(9160), 1, + sym_identifier, + ACTIONS(9162), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163441] = 3, - ACTIONS(9161), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_enum_body, + [163010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163452] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, + ACTIONS(7526), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [163019] = 3, + ACTIONS(9164), 1, + sym_identifier, + ACTIONS(9166), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163463] = 2, + [163030] = 3, + ACTIONS(9168), 1, + sym_identifier, + ACTIONS(9170), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9217), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163472] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym_parenthesized_expression, + [163041] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163483] = 3, - ACTIONS(9219), 1, + [163052] = 3, + ACTIONS(9172), 1, sym_identifier, - ACTIONS(9221), 1, + ACTIONS(9174), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163494] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9223), 1, - anon_sym_GT, + [163063] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163505] = 3, - ACTIONS(9055), 1, + [163074] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(75), 1, - sym_parenthesized_expression, + STATE(5784), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163516] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5647), 1, - sym_formal_parameters, + [163085] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5413), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163527] = 2, + [163096] = 3, + ACTIONS(8129), 1, + anon_sym_from, + STATE(4249), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9225), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163536] = 2, + [163107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 2, + ACTIONS(9176), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163545] = 3, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(238), 1, - sym_class_body, + [163116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163556] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + ACTIONS(9178), 2, + anon_sym_COMMA, + anon_sym_GT, + [163125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163567] = 3, - ACTIONS(3249), 1, + ACTIONS(9180), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163134] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3593), 1, + STATE(5675), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163578] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_parenthesized_expression, + [163145] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2097), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163589] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(76), 1, - sym__for_header, + [163156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163600] = 3, - ACTIONS(7445), 1, + ACTIONS(7534), 2, anon_sym_LBRACE, - STATE(2654), 1, + anon_sym_EQ_GT, + [163165] = 3, + ACTIONS(7205), 1, + anon_sym_LBRACE, + STATE(4069), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163611] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5689), 1, - sym_formal_parameters, + [163176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163622] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_statement_block, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163633] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5759), 1, - sym_formal_parameters, + ACTIONS(8864), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163194] = 3, + ACTIONS(6900), 1, + anon_sym_LBRACE, + STATE(892), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163644] = 3, - ACTIONS(4071), 1, + [163205] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(1647), 1, + STATE(2099), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163655] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5916), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163666] = 3, - ACTIONS(7445), 1, + [163216] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(2086), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163677] = 2, + [163227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9227), 2, + ACTIONS(1667), 2, sym__automatic_semicolon, anon_sym_SEMI, - [163686] = 3, - ACTIONS(6769), 1, + [163236] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5970), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163245] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2298), 1, - sym_class_body, + STATE(5352), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163697] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, + [163256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163708] = 3, - ACTIONS(6898), 1, + ACTIONS(6013), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163265] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(4065), 1, + STATE(2319), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163719] = 3, - ACTIONS(7208), 1, + [163276] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(4077), 1, + STATE(5368), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163730] = 3, - ACTIONS(6898), 1, + [163287] = 3, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163298] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(757), 1, + STATE(2312), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163741] = 3, - ACTIONS(7445), 1, + [163309] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2655), 1, + STATE(2602), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163752] = 3, - ACTIONS(4129), 1, + [163320] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163329] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2327), 1, + STATE(2654), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163763] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8928), 1, - anon_sym_GT, + [163340] = 3, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(1718), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163774] = 3, - ACTIONS(8833), 1, - sym_identifier, - ACTIONS(8837), 1, - sym_private_property_identifier, + [163351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163785] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2656), 1, - sym_statement_block, + ACTIONS(8674), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163360] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163796] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9229), 1, - anon_sym_GT, + [163371] = 3, + ACTIONS(3194), 1, + sym_jsx_identifier, + ACTIONS(9182), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163807] = 3, - ACTIONS(6769), 1, + [163382] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(2328), 1, + STATE(4097), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163818] = 3, - ACTIONS(3541), 1, - anon_sym_COLON, - STATE(5384), 1, - sym_type_annotation, + [163393] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(5472), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163829] = 2, + [163404] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4098), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163838] = 2, + [163415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9231), 2, + ACTIONS(9184), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [163847] = 3, - ACTIONS(4514), 1, + anon_sym_GT, + [163424] = 3, + ACTIONS(9010), 1, anon_sym_LPAREN, - STATE(2293), 1, - sym_arguments, + STATE(74), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163858] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2067), 1, - sym_class_body, + [163435] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163869] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5593), 1, - sym_formal_parameters, + [163446] = 3, + ACTIONS(9186), 1, + anon_sym_SEMI, + ACTIONS(9188), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163880] = 3, - ACTIONS(6804), 1, + [163457] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2552), 1, - sym_class_body, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163891] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5362), 1, - sym_statement_block, + [163468] = 3, + ACTIONS(9036), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163902] = 2, + [163479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 2, + ACTIONS(8426), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163911] = 3, - ACTIONS(4129), 1, + [163488] = 3, + ACTIONS(9190), 1, + anon_sym_SEMI, + ACTIONS(9192), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163499] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2639), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163510] = 3, + ACTIONS(1657), 1, anon_sym_LBRACE, - STATE(2123), 1, + STATE(231), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163922] = 3, - ACTIONS(7445), 1, + [163521] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(2641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163933] = 3, - ACTIONS(6769), 1, + [163532] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2320), 1, + STATE(1724), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163944] = 2, + [163543] = 3, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163953] = 3, - ACTIONS(7445), 1, + [163554] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(2630), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163964] = 3, - ACTIONS(6804), 1, + [163565] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(1622), 1, - sym_class_body, + STATE(1627), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163975] = 3, - ACTIONS(7445), 1, + [163576] = 3, + ACTIONS(9194), 1, anon_sym_LBRACE, - STATE(2629), 1, - sym_statement_block, + STATE(5319), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163986] = 3, - ACTIONS(4129), 1, + [163587] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(2277), 1, + STATE(1643), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163997] = 3, - ACTIONS(6898), 1, + [163598] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8885), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163609] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(4123), 1, + STATE(1645), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164008] = 2, + [163620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9233), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [164017] = 3, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(255), 1, - sym_class_body, + ACTIONS(9196), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163629] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(9198), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164028] = 3, - ACTIONS(3456), 1, - anon_sym_LPAREN, - STATE(1232), 1, - sym_arguments, + [163640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164039] = 2, + ACTIONS(9200), 2, + anon_sym_COMMA, + anon_sym_GT, + [163649] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [164048] = 2, + [163660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8950), 2, + ACTIONS(9202), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [164057] = 3, - ACTIONS(7038), 1, + anon_sym_GT, + [163669] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(2351), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164068] = 3, - ACTIONS(9235), 1, - sym_identifier, - ACTIONS(9237), 1, - anon_sym_STAR, + [163680] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2637), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164079] = 2, + [163691] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2604), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9239), 2, + [163702] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8419), 2, anon_sym_COMMA, anon_sym_RBRACE, - [164088] = 3, - ACTIONS(9241), 1, + [163711] = 3, + ACTIONS(9204), 1, sym_identifier, - ACTIONS(9243), 1, + ACTIONS(9206), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164099] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4124), 1, - sym_class_body, + [163722] = 3, + ACTIONS(9208), 1, + sym_identifier, + ACTIONS(9210), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164110] = 3, - ACTIONS(9245), 1, + [163733] = 3, + ACTIONS(9212), 1, sym_identifier, - ACTIONS(9247), 1, + ACTIONS(9214), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164121] = 3, - ACTIONS(9249), 1, - sym_identifier, - ACTIONS(9251), 1, - sym_private_property_identifier, + [163744] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164132] = 3, - ACTIONS(7445), 1, + [163755] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2622), 1, + STATE(2610), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164143] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5692), 1, - sym_formal_parameters, + [163766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164154] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4396), 1, - sym_formal_parameters, + ACTIONS(7918), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163775] = 3, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5438), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164165] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5703), 1, - sym_formal_parameters, + [163786] = 3, + ACTIONS(6900), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164176] = 3, - ACTIONS(9253), 1, + [163797] = 3, + ACTIONS(9216), 1, sym_identifier, - ACTIONS(9255), 1, + ACTIONS(9218), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164187] = 3, - ACTIONS(7208), 1, + [163808] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(773), 1, - sym_statement_block, + STATE(2522), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164198] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4402), 1, - sym_formal_parameters, + [163819] = 3, + ACTIONS(9220), 1, + sym_identifier, + ACTIONS(9222), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164209] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5710), 1, - sym_formal_parameters, + [163830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164220] = 3, - ACTIONS(9257), 1, + ACTIONS(8701), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163839] = 3, + ACTIONS(9224), 1, sym_identifier, - ACTIONS(9259), 1, + ACTIONS(9226), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164231] = 3, - ACTIONS(8214), 1, - anon_sym_from, - STATE(4292), 1, - sym__from_clause, + [163850] = 3, + ACTIONS(9228), 1, + sym_identifier, + ACTIONS(9230), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164242] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2658), 1, - sym_statement_block, + [163861] = 3, + ACTIONS(3443), 1, + anon_sym_LPAREN, + STATE(1259), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164253] = 3, - ACTIONS(7445), 1, + [163872] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2636), 1, + STATE(2061), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164264] = 3, - ACTIONS(9261), 1, - anon_sym_SEMI, - ACTIONS(9263), 1, - sym__automatic_semicolon, + [163883] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164275] = 3, - ACTIONS(6487), 1, + [163894] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5971), 1, + STATE(5680), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164286] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2322), 1, - sym_statement_block, + [163905] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(4384), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164297] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_class_body, + [163916] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5691), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164308] = 2, + [163927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 2, + ACTIONS(9232), 2, anon_sym_COMMA, anon_sym_RBRACE, - [164317] = 3, - ACTIONS(9055), 1, + [163936] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164328] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5413), 1, - sym_statement_block, + STATE(4387), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164339] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5349), 1, - sym_statement_block, + [163947] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5698), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164350] = 2, + [163958] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(5974), 2, anon_sym_COMMA, anon_sym_RBRACE, - [164359] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym_statement_block, + [163967] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8460), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164370] = 3, - ACTIONS(9265), 1, + [163978] = 3, + ACTIONS(9234), 1, sym_identifier, - ACTIONS(9267), 1, + ACTIONS(9236), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164381] = 3, - ACTIONS(9269), 1, - sym_identifier, - ACTIONS(9271), 1, - sym_private_property_identifier, + [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, - [164392] = 3, - ACTIONS(9273), 1, + [164011] = 3, + ACTIONS(9238), 1, sym_identifier, - ACTIONS(9275), 1, + ACTIONS(9240), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164403] = 2, + [164022] = 3, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4758), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9277), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [164412] = 2, + [164033] = 3, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2155), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9279), 2, - anon_sym_COMMA, - anon_sym_GT, - [164421] = 2, - ACTIONS(9281), 1, - anon_sym_EQ_GT, + [164044] = 3, + ACTIONS(8388), 1, + sym_identifier, + ACTIONS(8392), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164429] = 2, - ACTIONS(9283), 1, - anon_sym_RBRACK, + [164055] = 2, + ACTIONS(9242), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164437] = 2, - ACTIONS(9285), 1, - anon_sym_EQ, + [164063] = 2, + ACTIONS(9244), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164445] = 2, - ACTIONS(9287), 1, + [164071] = 2, + ACTIONS(9246), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164453] = 2, - ACTIONS(8572), 1, - anon_sym_GT, + [164079] = 2, + ACTIONS(9248), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164461] = 2, - ACTIONS(9289), 1, - anon_sym_function, + [164087] = 2, + ACTIONS(9250), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164469] = 2, - ACTIONS(9291), 1, + [164095] = 2, + ACTIONS(9252), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164477] = 2, - ACTIONS(9293), 1, - anon_sym_EQ_GT, + [164103] = 2, + ACTIONS(9254), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164485] = 2, - ACTIONS(9295), 1, + [164111] = 2, + ACTIONS(9256), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164493] = 3, - ACTIONS(3), 1, + [164119] = 2, + ACTIONS(9258), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164127] = 2, + ACTIONS(9260), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9297), 1, - anon_sym_SLASH2, - [164503] = 2, - ACTIONS(8173), 1, - anon_sym_EQ_GT, + sym_comment, + [164135] = 2, + ACTIONS(4913), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164511] = 2, - ACTIONS(9299), 1, - anon_sym_namespace, + [164143] = 2, + ACTIONS(9262), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164519] = 2, - ACTIONS(9301), 1, - sym_identifier, + [164151] = 2, + ACTIONS(9264), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164527] = 2, - ACTIONS(9303), 1, - anon_sym_as, + [164159] = 2, + ACTIONS(9266), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164535] = 2, - ACTIONS(9305), 1, - anon_sym_EQ_GT, + [164167] = 2, + ACTIONS(9268), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164543] = 2, - ACTIONS(9307), 1, - anon_sym_EQ_GT, + [164175] = 2, + ACTIONS(9270), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164551] = 2, - ACTIONS(5292), 1, + [164183] = 2, + ACTIONS(5283), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164559] = 2, - ACTIONS(5556), 1, - anon_sym_RPAREN, + [164191] = 2, + ACTIONS(9272), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164567] = 2, - ACTIONS(9309), 1, + [164199] = 2, + ACTIONS(9274), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164575] = 2, - ACTIONS(9311), 1, - anon_sym_EQ, + [164207] = 2, + ACTIONS(9276), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164583] = 2, - ACTIONS(9313), 1, + [164215] = 2, + ACTIONS(9278), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164591] = 2, - ACTIONS(4824), 1, - anon_sym_RPAREN, + [164223] = 2, + ACTIONS(9280), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164599] = 2, - ACTIONS(9315), 1, + [164231] = 2, + ACTIONS(9282), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164607] = 2, - ACTIONS(9317), 1, + [164239] = 2, + ACTIONS(9284), 1, anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164615] = 2, - ACTIONS(9319), 1, + [164247] = 2, + ACTIONS(9286), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164623] = 2, - ACTIONS(9321), 1, + [164255] = 2, + ACTIONS(9288), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164631] = 2, - ACTIONS(9323), 1, + [164263] = 2, + ACTIONS(9290), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164639] = 2, - ACTIONS(5562), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164647] = 2, - ACTIONS(9325), 1, + [164271] = 2, + ACTIONS(8803), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164655] = 2, - ACTIONS(5341), 1, - anon_sym_RPAREN, + [164279] = 2, + ACTIONS(8547), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164663] = 2, - ACTIONS(9327), 1, - anon_sym_while, + [164287] = 2, + ACTIONS(9292), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164671] = 2, - ACTIONS(9329), 1, - anon_sym_LBRACK, + [164295] = 2, + ACTIONS(9294), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164679] = 2, - ACTIONS(9331), 1, - anon_sym_DOT, + [164303] = 2, + ACTIONS(9296), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164687] = 2, - ACTIONS(9333), 1, + [164311] = 2, + ACTIONS(9298), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164695] = 2, - ACTIONS(9335), 1, + [164319] = 2, + ACTIONS(5322), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164703] = 2, - ACTIONS(9337), 1, + [164327] = 2, + ACTIONS(9300), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164711] = 2, - ACTIONS(9339), 1, - anon_sym_EQ_GT, + [164335] = 2, + ACTIONS(9302), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164719] = 2, - ACTIONS(9341), 1, - anon_sym_RBRACK, + [164343] = 2, + ACTIONS(9304), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164727] = 2, - ACTIONS(9343), 1, - anon_sym_EQ_GT, + [164351] = 2, + ACTIONS(9306), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164735] = 2, - ACTIONS(9345), 1, + [164359] = 2, + ACTIONS(9308), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164743] = 2, - ACTIONS(9347), 1, - anon_sym_RBRACK, + [164367] = 2, + ACTIONS(9310), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164751] = 2, - ACTIONS(9349), 1, - sym_identifier, + [164375] = 2, + ACTIONS(9312), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164759] = 2, - ACTIONS(9351), 1, + [164383] = 2, + ACTIONS(9314), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164767] = 2, - ACTIONS(9353), 1, + [164391] = 2, + ACTIONS(9316), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164775] = 2, - ACTIONS(8467), 1, - anon_sym_GT, + [164399] = 2, + ACTIONS(9318), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164783] = 2, - ACTIONS(9355), 1, + [164407] = 2, + ACTIONS(9320), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164791] = 2, - ACTIONS(9357), 1, + [164415] = 2, + ACTIONS(9322), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164799] = 2, - ACTIONS(9359), 1, + [164423] = 2, + ACTIONS(9324), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164431] = 2, + ACTIONS(9326), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164807] = 2, - ACTIONS(9361), 1, + [164439] = 2, + ACTIONS(9328), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164815] = 2, - ACTIONS(9363), 1, - sym_number, + [164447] = 2, + ACTIONS(9330), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164823] = 2, - ACTIONS(8588), 1, + [164455] = 2, + ACTIONS(8567), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164831] = 2, - ACTIONS(9365), 1, + [164463] = 2, + ACTIONS(9332), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164839] = 2, - ACTIONS(9367), 1, + [164471] = 2, + ACTIONS(9334), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164847] = 2, - ACTIONS(9369), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [164479] = 3, + ACTIONS(3), 1, sym_comment, - [164855] = 2, - ACTIONS(9371), 1, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9336), 1, + sym_regex_pattern, + [164489] = 2, + ACTIONS(9338), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164863] = 2, - ACTIONS(9373), 1, + [164497] = 2, + ACTIONS(9340), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164871] = 2, - ACTIONS(9375), 1, + [164505] = 2, + ACTIONS(9342), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164879] = 2, - ACTIONS(9377), 1, + [164513] = 2, + ACTIONS(9344), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164887] = 2, - ACTIONS(9379), 1, + [164521] = 2, + ACTIONS(9346), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164895] = 2, - ACTIONS(9381), 1, + [164529] = 2, + ACTIONS(9348), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164903] = 2, - ACTIONS(9383), 1, - anon_sym_symbol, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164911] = 2, - ACTIONS(9385), 1, - anon_sym_EQ_GT, + [164537] = 2, + ACTIONS(9350), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164919] = 2, - ACTIONS(9387), 1, - anon_sym_RPAREN, + [164545] = 2, + ACTIONS(8751), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164927] = 2, - ACTIONS(9389), 1, - anon_sym_EQ_GT, + [164553] = 2, + ACTIONS(9352), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164935] = 2, - ACTIONS(9391), 1, + [164561] = 2, + ACTIONS(9354), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164943] = 2, - ACTIONS(4921), 1, - anon_sym_RPAREN, + [164569] = 2, + ACTIONS(9356), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164951] = 2, - ACTIONS(5343), 1, - anon_sym_RPAREN, + [164577] = 2, + ACTIONS(9358), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164959] = 2, - ACTIONS(9393), 1, + [164585] = 2, + ACTIONS(5304), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164967] = 2, - ACTIONS(9395), 1, - sym_identifier, + [164593] = 2, + ACTIONS(8501), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164975] = 2, - ACTIONS(8473), 1, + [164601] = 2, + ACTIONS(9360), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164983] = 2, - ACTIONS(5345), 1, - anon_sym_RPAREN, + [164609] = 2, + ACTIONS(9362), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164991] = 2, - ACTIONS(9397), 1, + [164617] = 2, + ACTIONS(9364), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164999] = 2, - ACTIONS(9399), 1, - anon_sym_from, + [164625] = 2, + ACTIONS(9366), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165007] = 2, - ACTIONS(9401), 1, + [164633] = 2, + ACTIONS(9368), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165015] = 2, - ACTIONS(7316), 1, - anon_sym_is, + [164641] = 2, + ACTIONS(9370), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165023] = 2, - ACTIONS(9403), 1, + [164649] = 2, + ACTIONS(9372), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165031] = 2, - ACTIONS(9405), 1, - sym_identifier, + [164657] = 2, + ACTIONS(9374), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165039] = 2, - ACTIONS(9407), 1, - anon_sym_LBRACE, + [164665] = 2, + ACTIONS(9376), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164673] = 2, + ACTIONS(9378), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165047] = 2, - ACTIONS(9409), 1, + [164681] = 2, + ACTIONS(9380), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165055] = 2, - ACTIONS(8631), 1, - anon_sym_GT, + [164689] = 2, + ACTIONS(9382), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165063] = 2, - ACTIONS(9411), 1, - anon_sym_RBRACK, + [164697] = 2, + ACTIONS(9384), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165071] = 2, - ACTIONS(9413), 1, + [164705] = 2, + ACTIONS(9386), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165079] = 2, - ACTIONS(9415), 1, + [164713] = 2, + ACTIONS(9388), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165087] = 2, - ACTIONS(5414), 1, - anon_sym_RPAREN, + [164721] = 2, + ACTIONS(9390), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165095] = 2, - ACTIONS(9417), 1, + [164729] = 2, + ACTIONS(9392), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165103] = 2, - ACTIONS(9419), 1, - anon_sym_from, + [164737] = 2, + ACTIONS(9394), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165111] = 2, - ACTIONS(5347), 1, - anon_sym_SEMI, + [164745] = 2, + ACTIONS(9396), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165119] = 2, - ACTIONS(5311), 1, + [164753] = 2, + ACTIONS(9398), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9421), 1, - anon_sym_SLASH2, - [165137] = 2, - ACTIONS(9423), 1, - sym_identifier, + [164761] = 2, + ACTIONS(9400), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165145] = 2, - ACTIONS(5307), 1, + [164769] = 2, + ACTIONS(9402), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165153] = 2, - ACTIONS(9425), 1, + [164777] = 2, + ACTIONS(9404), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165161] = 2, - ACTIONS(8521), 1, - anon_sym_RBRACK, + [164785] = 2, + ACTIONS(5306), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165169] = 2, - ACTIONS(9427), 1, + [164793] = 2, + ACTIONS(9406), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165177] = 2, - ACTIONS(9429), 1, - anon_sym_EQ_GT, + [164801] = 2, + ACTIONS(9408), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165185] = 2, - ACTIONS(9431), 1, - sym_number, + [164809] = 2, + ACTIONS(9410), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165193] = 2, - ACTIONS(9433), 1, + [164817] = 2, + ACTIONS(9412), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165201] = 2, - ACTIONS(5544), 1, + [164825] = 2, + ACTIONS(9414), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164833] = 2, + ACTIONS(5519), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165209] = 2, - ACTIONS(9435), 1, + [164841] = 2, + ACTIONS(9416), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165217] = 2, - ACTIONS(9437), 1, + [164849] = 2, + ACTIONS(9418), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165225] = 2, - ACTIONS(9439), 1, - sym_identifier, + [164857] = 2, + ACTIONS(9420), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164865] = 2, + ACTIONS(9422), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9441), 1, - sym_regex_pattern, - [165243] = 2, - ACTIONS(6820), 1, - anon_sym_is, + sym_comment, + [164873] = 2, + ACTIONS(7323), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165251] = 2, - ACTIONS(9443), 1, - anon_sym_EQ_GT, + [164881] = 2, + ACTIONS(5231), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165259] = 2, - ACTIONS(9445), 1, - sym_identifier, + [164889] = 2, + ACTIONS(5316), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165267] = 2, - ACTIONS(9447), 1, - anon_sym_RBRACK, + [164897] = 2, + ACTIONS(9424), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165275] = 2, - ACTIONS(9449), 1, + [164905] = 2, + ACTIONS(9426), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165283] = 2, - ACTIONS(9451), 1, + [164913] = 2, + ACTIONS(9428), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165291] = 2, - ACTIONS(9453), 1, - anon_sym_EQ_GT, + [164921] = 2, + ACTIONS(9430), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165299] = 2, - ACTIONS(9455), 1, - anon_sym_EQ_GT, + [164929] = 2, + ACTIONS(9432), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165307] = 2, - ACTIONS(7230), 1, + [164937] = 2, + ACTIONS(7211), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165315] = 2, - ACTIONS(9457), 1, - anon_sym_RBRACK, + [164945] = 2, + ACTIONS(8460), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165323] = 2, - ACTIONS(9459), 1, - sym_identifier, + [164953] = 2, + ACTIONS(9434), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165331] = 2, - ACTIONS(9461), 1, - anon_sym_RBRACK, + [164961] = 2, + ACTIONS(9436), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165339] = 2, - ACTIONS(9463), 1, - sym_identifier, + [164969] = 2, + ACTIONS(9438), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165347] = 2, - ACTIONS(5546), 1, + [164977] = 2, + ACTIONS(5521), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165355] = 2, - ACTIONS(9465), 1, + [164985] = 2, + ACTIONS(9440), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165363] = 2, - ACTIONS(9467), 1, + [164993] = 2, + ACTIONS(9442), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165371] = 2, - ACTIONS(9469), 1, + [165001] = 2, + ACTIONS(9444), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165379] = 2, - ACTIONS(9471), 1, - anon_sym_LPAREN, + [165009] = 2, + ACTIONS(9446), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165387] = 2, - ACTIONS(5384), 1, - anon_sym_RBRACE, + [165017] = 2, + ACTIONS(9448), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165395] = 2, - ACTIONS(9473), 1, - sym_identifier, + [165025] = 2, + ACTIONS(9450), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165403] = 2, - ACTIONS(5422), 1, - anon_sym_RPAREN, + [165033] = 2, + ACTIONS(9452), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165411] = 2, - ACTIONS(9475), 1, + [165041] = 2, + ACTIONS(9454), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165419] = 2, - ACTIONS(9477), 1, + [165049] = 2, + ACTIONS(9456), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165427] = 2, - ACTIONS(5424), 1, - anon_sym_RPAREN, + [165057] = 2, + ACTIONS(9458), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165435] = 2, - ACTIONS(8789), 1, - sym_identifier, + [165065] = 2, + ACTIONS(9460), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165443] = 2, - ACTIONS(9479), 1, - anon_sym_RBRACK, + [165073] = 2, + ACTIONS(9462), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165451] = 2, - ACTIONS(9481), 1, - anon_sym_RBRACK, + [165081] = 2, + ACTIONS(9464), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165459] = 2, - ACTIONS(9483), 1, + [165089] = 2, + ACTIONS(9466), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165467] = 2, - ACTIONS(9485), 1, - anon_sym_RBRACK, + [165097] = 2, + ACTIONS(9468), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165475] = 2, - ACTIONS(5478), 1, - anon_sym_in, + [165105] = 2, + ACTIONS(6068), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165483] = 2, - ACTIONS(9487), 1, - anon_sym_EQ_GT, + [165113] = 2, + ACTIONS(9470), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165491] = 2, - ACTIONS(5325), 1, + [165121] = 2, + ACTIONS(9472), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165499] = 2, - ACTIONS(9489), 1, + [165129] = 2, + ACTIONS(9474), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165507] = 2, - ACTIONS(9491), 1, - sym_identifier, + [165137] = 2, + ACTIONS(9476), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165515] = 2, - ACTIONS(9493), 1, - anon_sym_EQ_GT, + [165145] = 2, + ACTIONS(9478), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165523] = 2, - ACTIONS(4885), 1, - anon_sym_is, + [165153] = 2, + ACTIONS(9480), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165531] = 2, - ACTIONS(9495), 1, - anon_sym_EQ_GT, + [165161] = 2, + ACTIONS(9482), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165539] = 2, - ACTIONS(9497), 1, - anon_sym_EQ_GT, + [165169] = 2, + ACTIONS(9484), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165547] = 2, - ACTIONS(9499), 1, + [165177] = 2, + ACTIONS(9486), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165555] = 2, - ACTIONS(9501), 1, - sym_identifier, + [165185] = 2, + ACTIONS(9488), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165563] = 2, - ACTIONS(9503), 1, - anon_sym_RPAREN, + [165193] = 2, + ACTIONS(9490), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165571] = 2, - ACTIONS(9505), 1, + [165201] = 2, + ACTIONS(9492), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165579] = 2, - ACTIONS(9507), 1, - anon_sym_RBRACK, + [165209] = 2, + ACTIONS(9494), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165587] = 2, - ACTIONS(9509), 1, + [165217] = 2, + ACTIONS(9496), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165595] = 2, - ACTIONS(9511), 1, - anon_sym_EQ, + [165225] = 2, + ACTIONS(9498), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165603] = 2, - ACTIONS(4449), 1, - anon_sym_in, + [165233] = 2, + ACTIONS(9500), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165611] = 2, - ACTIONS(9513), 1, - anon_sym_new, + [165241] = 2, + ACTIONS(4034), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165619] = 2, - ACTIONS(9515), 1, + [165249] = 2, + ACTIONS(9502), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165627] = 2, - ACTIONS(6688), 1, - anon_sym_is, + [165257] = 2, + ACTIONS(9504), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165635] = 2, - ACTIONS(4031), 1, - anon_sym_is, + [165265] = 2, + ACTIONS(9506), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165643] = 2, - ACTIONS(9517), 1, - anon_sym_RBRACK, + [165273] = 2, + ACTIONS(9508), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165651] = 2, - ACTIONS(9519), 1, - anon_sym_EQ_GT, + [165281] = 2, + ACTIONS(9510), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165659] = 2, - ACTIONS(5204), 1, + [165289] = 2, + ACTIONS(4935), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165667] = 2, - ACTIONS(9521), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, + [165297] = 3, + ACTIONS(3), 1, sym_comment, - [165675] = 2, - ACTIONS(9523), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [165683] = 2, - ACTIONS(9525), 1, - anon_sym_EQ_GT, + ACTIONS(9512), 1, + sym_regex_pattern, + [165307] = 2, + ACTIONS(9514), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165691] = 2, - ACTIONS(9527), 1, + [165315] = 2, + ACTIONS(9516), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165699] = 2, - ACTIONS(9529), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165707] = 2, - ACTIONS(5430), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165715] = 2, - ACTIONS(4919), 1, - anon_sym_RPAREN, + [165323] = 2, + ACTIONS(9518), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165723] = 2, - ACTIONS(9531), 1, - sym_identifier, + [165331] = 2, + ACTIONS(7390), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165731] = 2, - ACTIONS(9533), 1, - anon_sym_RBRACK, + [165339] = 2, + ACTIONS(9520), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165739] = 2, - ACTIONS(9535), 1, + [165347] = 2, + ACTIONS(9522), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165747] = 2, - ACTIONS(9537), 1, - sym_identifier, + [165355] = 2, + ACTIONS(5255), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165755] = 2, - ACTIONS(9539), 1, - sym_identifier, + [165363] = 2, + ACTIONS(9524), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165763] = 2, - ACTIONS(9541), 1, - anon_sym_symbol, + [165371] = 2, + ACTIONS(8322), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165771] = 2, - ACTIONS(9543), 1, - sym_identifier, + [165379] = 2, + ACTIONS(9526), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165779] = 2, - ACTIONS(9545), 1, - anon_sym_COLON, + [165387] = 2, + ACTIONS(9528), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165787] = 2, - ACTIONS(9547), 1, + [165395] = 2, + ACTIONS(9530), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165795] = 2, - ACTIONS(9549), 1, + [165403] = 2, + ACTIONS(9532), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165803] = 2, - ACTIONS(9551), 1, - anon_sym_RBRACK, + [165411] = 2, + ACTIONS(9534), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165811] = 2, - ACTIONS(9553), 1, - anon_sym_EQ_GT, + [165419] = 2, + ACTIONS(9536), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165819] = 2, - ACTIONS(9555), 1, + [165427] = 2, + ACTIONS(9538), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165827] = 2, - ACTIONS(9557), 1, - sym_identifier, + [165435] = 2, + ACTIONS(9540), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165835] = 2, - ACTIONS(9559), 1, + [165443] = 2, + ACTIONS(9542), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165843] = 2, - ACTIONS(9561), 1, - anon_sym_EQ_GT, + [165451] = 2, + ACTIONS(9544), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165459] = 2, + ACTIONS(5318), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165851] = 3, + [165467] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9563), 1, - sym_regex_pattern, - [165861] = 2, - ACTIONS(7447), 1, + ACTIONS(9546), 1, + anon_sym_SLASH2, + [165477] = 2, + ACTIONS(5387), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165869] = 2, - ACTIONS(9565), 1, - sym_identifier, + [165485] = 2, + ACTIONS(5324), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165493] = 2, + ACTIONS(9548), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165877] = 2, - ACTIONS(9567), 1, - sym_identifier, + [165501] = 2, + ACTIONS(9550), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165885] = 2, - ACTIONS(9569), 1, - anon_sym_EQ, + [165509] = 2, + ACTIONS(9552), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165893] = 2, - ACTIONS(9571), 1, - anon_sym_DOT, + [165517] = 2, + ACTIONS(5460), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165901] = 2, - ACTIONS(9573), 1, - anon_sym_EQ_GT, + [165525] = 2, + ACTIONS(4863), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165909] = 2, - ACTIONS(9575), 1, - anon_sym_EQ_GT, + [165533] = 2, + ACTIONS(5308), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [165541] = 2, + ACTIONS(9554), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9577), 1, - anon_sym_SLASH2, - [165927] = 2, - ACTIONS(9579), 1, - sym_identifier, + sym_comment, + [165549] = 2, + ACTIONS(9556), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165935] = 2, - ACTIONS(9581), 1, - sym_identifier, + [165557] = 2, + ACTIONS(5697), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165943] = 2, - ACTIONS(9583), 1, - anon_sym_RBRACK, + [165565] = 2, + ACTIONS(9558), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165951] = 2, - ACTIONS(9585), 1, - anon_sym_from, + [165573] = 2, + ACTIONS(9560), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165959] = 2, - ACTIONS(9587), 1, - anon_sym_RBRACK, + [165581] = 2, + ACTIONS(9562), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165967] = 2, - ACTIONS(9589), 1, - anon_sym_target, + [165589] = 2, + ACTIONS(8466), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165975] = 2, - ACTIONS(9589), 1, - anon_sym_meta, + [165597] = 2, + ACTIONS(5559), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165983] = 2, - ACTIONS(9591), 1, - anon_sym_EQ, + [165605] = 2, + ACTIONS(9564), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165991] = 2, - ACTIONS(9593), 1, + [165613] = 2, + ACTIONS(9566), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165999] = 2, - ACTIONS(8651), 1, - anon_sym_LBRACE, + [165621] = 2, + ACTIONS(9568), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166007] = 2, - ACTIONS(9595), 1, - ts_builtin_sym_end, + [165629] = 2, + ACTIONS(9570), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166015] = 2, - ACTIONS(6495), 1, - anon_sym_is, + [165637] = 2, + ACTIONS(9572), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166023] = 2, - ACTIONS(5560), 1, - anon_sym_RBRACK, + [165645] = 2, + ACTIONS(9574), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166031] = 2, - ACTIONS(9597), 1, + [165653] = 2, + ACTIONS(9576), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166039] = 2, - ACTIONS(9599), 1, - anon_sym_RBRACK, + [165661] = 2, + ACTIONS(9578), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166047] = 2, - ACTIONS(9601), 1, - anon_sym_RBRACK, + [165669] = 2, + ACTIONS(9002), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166055] = 3, - ACTIONS(3), 1, + [165677] = 2, + ACTIONS(9580), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [165685] = 2, + ACTIONS(5471), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9603), 1, - sym_regex_pattern, - [166065] = 2, - ACTIONS(9605), 1, - anon_sym_RBRACK, + sym_comment, + [165693] = 2, + ACTIONS(9582), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166073] = 2, - ACTIONS(5160), 1, + [165701] = 2, + ACTIONS(5153), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166081] = 2, - ACTIONS(9607), 1, + [165709] = 2, + ACTIONS(9584), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166089] = 2, - ACTIONS(5612), 1, - anon_sym_SEMI, + [165717] = 2, + ACTIONS(9586), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166097] = 2, - ACTIONS(9609), 1, + [165725] = 2, + ACTIONS(9588), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166105] = 2, - ACTIONS(9611), 1, - anon_sym_RBRACK, + [165733] = 2, + ACTIONS(9590), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166113] = 2, - ACTIONS(9613), 1, - anon_sym_RPAREN, + [165741] = 2, + ACTIONS(9592), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166121] = 2, - ACTIONS(9615), 1, - anon_sym_RBRACK, + [165749] = 2, + ACTIONS(9594), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166129] = 2, - ACTIONS(9617), 1, - anon_sym_RBRACK, + [165757] = 2, + ACTIONS(4958), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166137] = 2, - ACTIONS(9619), 1, - anon_sym_RBRACK, + [165765] = 2, + ACTIONS(6813), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166145] = 2, - ACTIONS(9621), 1, + [165773] = 2, + ACTIONS(9596), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166153] = 2, - ACTIONS(9623), 1, + [165781] = 2, + ACTIONS(9598), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166161] = 2, - ACTIONS(9625), 1, + [165789] = 2, + ACTIONS(9600), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166169] = 2, - ACTIONS(7563), 1, + [165797] = 2, + ACTIONS(9602), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166177] = 2, - ACTIONS(9627), 1, + [165805] = 2, + ACTIONS(5297), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166185] = 2, - ACTIONS(9629), 1, - sym_identifier, + [165813] = 2, + ACTIONS(9604), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166193] = 2, - ACTIONS(9631), 1, - anon_sym_RBRACK, + [165821] = 2, + ACTIONS(9606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166201] = 2, - ACTIONS(9633), 1, - anon_sym_RBRACK, + [165829] = 2, + ACTIONS(7614), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166209] = 2, - ACTIONS(9635), 1, - anon_sym_EQ_GT, + [165837] = 2, + ACTIONS(9608), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166217] = 2, - ACTIONS(9637), 1, - sym_identifier, + [165845] = 2, + ACTIONS(9610), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166225] = 2, - ACTIONS(9639), 1, + [165853] = 2, + ACTIONS(9612), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166233] = 2, - ACTIONS(9641), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [165861] = 3, + ACTIONS(3), 1, sym_comment, - [166241] = 2, - ACTIONS(8602), 1, - anon_sym_RBRACK, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9614), 1, + sym_regex_pattern, + [165871] = 2, + ACTIONS(5395), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166249] = 2, - ACTIONS(9643), 1, + [165879] = 2, + ACTIONS(9616), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166257] = 2, - ACTIONS(5337), 1, - anon_sym_COLON, + [165887] = 2, + ACTIONS(9618), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166265] = 2, - ACTIONS(9645), 1, - anon_sym_EQ_GT, + [165895] = 2, + ACTIONS(9620), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166273] = 2, - ACTIONS(9647), 1, + [165903] = 2, + ACTIONS(9622), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166281] = 2, - ACTIONS(9649), 1, - sym_identifier, + [165911] = 2, + ACTIONS(5795), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165919] = 2, + ACTIONS(9624), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166289] = 2, - ACTIONS(9651), 1, + [165927] = 2, + ACTIONS(9626), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166297] = 2, - ACTIONS(9653), 1, + [165935] = 2, + ACTIONS(9628), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166305] = 2, - ACTIONS(9655), 1, - anon_sym_RBRACK, + [165943] = 2, + ACTIONS(4487), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166313] = 2, - ACTIONS(9657), 1, - anon_sym_from, + [165951] = 2, + ACTIONS(5397), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166321] = 2, - ACTIONS(9659), 1, + [165959] = 2, + ACTIONS(9630), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166329] = 2, - ACTIONS(9661), 1, + [165967] = 2, + ACTIONS(5320), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165975] = 2, + ACTIONS(9632), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166337] = 2, - ACTIONS(9663), 1, - anon_sym_RBRACK, + [165983] = 2, + ACTIONS(9634), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166345] = 2, - ACTIONS(9665), 1, - anon_sym_require, + [165991] = 2, + ACTIONS(9636), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166353] = 2, - ACTIONS(9667), 1, + [165999] = 2, + ACTIONS(9638), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166361] = 2, - ACTIONS(9669), 1, + [166007] = 2, + ACTIONS(9640), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166369] = 2, - ACTIONS(9671), 1, - sym_number, + [166015] = 2, + ACTIONS(5473), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166377] = 2, - ACTIONS(9673), 1, - sym_identifier, + [166023] = 2, + ACTIONS(9642), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166385] = 2, - ACTIONS(9675), 1, - anon_sym_readonly, + [166031] = 2, + ACTIONS(9644), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166039] = 2, + ACTIONS(9646), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166393] = 2, - ACTIONS(9677), 1, + [166047] = 2, + ACTIONS(9648), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166401] = 2, - ACTIONS(9679), 1, - anon_sym_as, + [166055] = 2, + ACTIONS(9650), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166409] = 2, - ACTIONS(9681), 1, - anon_sym_symbol, + [166063] = 2, + ACTIONS(5475), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166417] = 2, - ACTIONS(8783), 1, - anon_sym_RBRACE, + [166071] = 2, + ACTIONS(9652), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166425] = 2, - ACTIONS(9683), 1, - anon_sym_RBRACK, + [166079] = 2, + ACTIONS(9654), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166433] = 2, - ACTIONS(9685), 1, - sym_identifier, + [166087] = 2, + ACTIONS(9656), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166441] = 2, - ACTIONS(9687), 1, + [166095] = 2, + ACTIONS(9658), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166449] = 2, - ACTIONS(8793), 1, - anon_sym_RBRACE, + [166103] = 2, + ACTIONS(9660), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166457] = 2, - ACTIONS(9689), 1, + [166111] = 2, + ACTIONS(9662), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166465] = 2, - ACTIONS(9691), 1, + [166119] = 2, + ACTIONS(9664), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166473] = 2, - ACTIONS(9693), 1, - sym_identifier, + [166127] = 2, + ACTIONS(9666), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166481] = 2, - ACTIONS(9695), 1, - sym_identifier, + [166135] = 2, + ACTIONS(9668), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166489] = 2, - ACTIONS(5634), 1, - anon_sym_in, + [166143] = 2, + ACTIONS(9670), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166497] = 2, - ACTIONS(9697), 1, - anon_sym_EQ_GT, + [166151] = 2, + ACTIONS(6690), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166505] = 2, - ACTIONS(8939), 1, - anon_sym_RBRACK, + [166159] = 2, + ACTIONS(9672), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166513] = 2, - ACTIONS(9699), 1, + [166167] = 2, + ACTIONS(9674), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166521] = 2, - ACTIONS(9701), 1, - anon_sym_EQ_GT, + [166175] = 2, + ACTIONS(9676), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166529] = 2, - ACTIONS(9703), 1, - anon_sym_EQ_GT, + [166183] = 2, + ACTIONS(9678), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166537] = 2, - ACTIONS(9705), 1, - anon_sym_EQ_GT, + [166191] = 2, + ACTIONS(5405), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166545] = 2, - ACTIONS(9707), 1, + [166199] = 2, + ACTIONS(9680), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166553] = 2, - ACTIONS(9709), 1, - anon_sym_RBRACK, + [166207] = 2, + ACTIONS(9682), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166561] = 2, - ACTIONS(9711), 1, + [166215] = 2, + ACTIONS(9684), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166569] = 2, - ACTIONS(9713), 1, + [166223] = 2, + ACTIONS(9686), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166577] = 2, - ACTIONS(9715), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166585] = 2, - ACTIONS(5837), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166593] = 2, - ACTIONS(9717), 1, - anon_sym_EQ_GT, + [166231] = 2, + ACTIONS(9688), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166601] = 2, - ACTIONS(9719), 1, - anon_sym_EQ, + [166239] = 2, + ACTIONS(9690), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166609] = 2, - ACTIONS(9721), 1, - anon_sym_EQ_GT, + [166247] = 2, + ACTIONS(9692), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166617] = 2, - ACTIONS(7970), 1, - anon_sym_EQ, + [166255] = 2, + ACTIONS(9694), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9723), 1, - sym_regex_pattern, - [166635] = 2, - ACTIONS(9725), 1, - sym_identifier, + [166263] = 2, + ACTIONS(9696), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166643] = 2, - ACTIONS(9727), 1, - anon_sym_EQ_GT, + [166271] = 2, + ACTIONS(8761), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166651] = 2, - ACTIONS(9729), 1, - anon_sym_EQ_GT, + [166279] = 2, + ACTIONS(9698), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166659] = 2, - ACTIONS(9731), 1, - anon_sym_EQ_GT, + [166287] = 2, + ACTIONS(9700), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166667] = 2, - ACTIONS(9733), 1, - anon_sym_DOT, + [166295] = 2, + ACTIONS(7801), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166675] = 2, - ACTIONS(9735), 1, - anon_sym_RBRACK, + [166303] = 2, + ACTIONS(9702), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166683] = 2, - ACTIONS(5598), 1, + [166311] = 2, + ACTIONS(5577), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166691] = 2, - ACTIONS(9737), 1, - anon_sym_from, + [166319] = 2, + ACTIONS(9704), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166699] = 2, - ACTIONS(9739), 1, - anon_sym_class, + [166327] = 2, + ACTIONS(9706), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166707] = 2, - ACTIONS(9741), 1, - anon_sym_RBRACK, + [166335] = 2, + ACTIONS(9708), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166715] = 2, - ACTIONS(5600), 1, + [166343] = 2, + ACTIONS(5581), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166723] = 2, - ACTIONS(9743), 1, - anon_sym_RBRACK, + [166351] = 2, + ACTIONS(9710), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166731] = 2, - ACTIONS(5602), 1, + [166359] = 2, + ACTIONS(5583), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166739] = 2, - ACTIONS(9745), 1, - anon_sym_EQ, + [166367] = 2, + ACTIONS(5579), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166747] = 2, - ACTIONS(9747), 1, - anon_sym_RBRACK, + [166375] = 2, + ACTIONS(9712), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166755] = 2, - ACTIONS(5604), 1, + [166383] = 2, + ACTIONS(5585), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166763] = 2, - ACTIONS(9749), 1, - anon_sym_RBRACK, + [166391] = 2, + ACTIONS(8817), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166771] = 2, - ACTIONS(9751), 1, + [166399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9714), 1, + anon_sym_SLASH2, + [166409] = 2, + ACTIONS(9716), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166779] = 2, - ACTIONS(9753), 1, - anon_sym_EQ, + [166417] = 2, + ACTIONS(9718), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166787] = 2, - ACTIONS(9755), 1, - anon_sym_meta, + [166425] = 2, + ACTIONS(5443), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166795] = 2, - ACTIONS(9757), 1, - anon_sym_RBRACK, + [166433] = 2, + ACTIONS(9720), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166803] = 2, - ACTIONS(9759), 1, + [166441] = 2, + ACTIONS(9722), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166811] = 2, - ACTIONS(9761), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166819] = 2, - ACTIONS(9763), 1, - anon_sym_EQ_GT, + [166449] = 2, + ACTIONS(8601), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166827] = 2, - ACTIONS(9765), 1, + [166457] = 2, + ACTIONS(9724), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166835] = 2, - ACTIONS(9767), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [166465] = 3, + ACTIONS(3), 1, sym_comment, - [166843] = 2, - ACTIONS(9769), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9726), 1, + anon_sym_SLASH2, + [166475] = 2, + ACTIONS(9728), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166851] = 2, - ACTIONS(9771), 1, - anon_sym_RBRACK, + [166483] = 2, + ACTIONS(8643), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166859] = 2, - ACTIONS(9773), 1, - anon_sym_RPAREN, + [166491] = 2, + ACTIONS(9242), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166867] = 2, - ACTIONS(4949), 1, + [166499] = 2, + ACTIONS(4885), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166875] = 2, - ACTIONS(9775), 1, - anon_sym_EQ_GT, + [166507] = 2, + ACTIONS(9730), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166883] = 2, - ACTIONS(4917), 1, + [166515] = 2, + ACTIONS(5587), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166891] = 2, - ACTIONS(9777), 1, + [166523] = 2, + ACTIONS(9732), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166899] = 2, - ACTIONS(9779), 1, - anon_sym_as, + [166531] = 2, + ACTIONS(9734), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166907] = 2, - ACTIONS(9781), 1, + [166539] = 2, + ACTIONS(9736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166915] = 2, - ACTIONS(9783), 1, - anon_sym_class, + [166547] = 2, + ACTIONS(9738), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166923] = 2, - ACTIONS(9785), 1, - sym_identifier, + [166555] = 2, + ACTIONS(9740), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166931] = 2, - ACTIONS(9787), 1, + [166563] = 2, + ACTIONS(9742), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166939] = 2, - ACTIONS(9789), 1, - sym_number, + [166571] = 2, + ACTIONS(8885), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166947] = 2, - ACTIONS(9791), 1, + [166579] = 2, + ACTIONS(9744), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166955] = 2, - ACTIONS(9793), 1, + [166587] = 2, + ACTIONS(9746), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166963] = 2, - ACTIONS(5516), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166971] = 2, - ACTIONS(8928), 1, - anon_sym_GT, + [166595] = 2, + ACTIONS(9748), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166979] = 2, - ACTIONS(9795), 1, - anon_sym_RBRACK, + [166603] = 2, + ACTIONS(9750), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166987] = 2, - ACTIONS(9797), 1, - anon_sym_EQ_GT, + [166611] = 2, + ACTIONS(9752), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166995] = 2, - ACTIONS(9799), 1, + [166619] = 2, + ACTIONS(9754), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167003] = 2, - ACTIONS(9801), 1, - anon_sym_RBRACK, + [166627] = 2, + ACTIONS(5249), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167011] = 2, - ACTIONS(9803), 1, + [166635] = 2, + ACTIONS(9756), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167019] = 2, - ACTIONS(9805), 1, - anon_sym_RBRACK, + [166643] = 2, + ACTIONS(9420), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167027] = 2, - ACTIONS(9807), 1, + [166651] = 2, + ACTIONS(9758), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167035] = 2, - ACTIONS(9809), 1, - anon_sym_EQ_GT, + [166659] = 2, + ACTIONS(9760), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167043] = 3, - ACTIONS(3), 1, + [166667] = 2, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [166675] = 2, + ACTIONS(9764), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9811), 1, - anon_sym_SLASH2, - [167053] = 2, - ACTIONS(9813), 1, + sym_comment, + [166683] = 2, + ACTIONS(9766), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167061] = 2, - ACTIONS(9815), 1, - sym_identifier, + [166691] = 2, + ACTIONS(9768), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167069] = 2, - ACTIONS(9817), 1, - sym_identifier, + [166699] = 2, + ACTIONS(9770), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167077] = 2, - ACTIONS(9819), 1, + [166707] = 2, + ACTIONS(9772), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167085] = 2, - ACTIONS(5606), 1, + [166715] = 2, + ACTIONS(5589), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167093] = 2, - ACTIONS(4861), 1, - anon_sym_in, + [166723] = 2, + ACTIONS(9774), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167101] = 2, - ACTIONS(9821), 1, - anon_sym_new, + [166731] = 2, + ACTIONS(9776), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167109] = 2, - ACTIONS(5608), 1, + [166739] = 2, + ACTIONS(5591), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167117] = 2, - ACTIONS(9823), 1, + [166747] = 2, + ACTIONS(9778), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167125] = 2, - ACTIONS(9825), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167133] = 2, - ACTIONS(9827), 1, - anon_sym_RBRACK, + [166755] = 2, + ACTIONS(9780), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167141] = 2, - ACTIONS(9829), 1, + [166763] = 2, + ACTIONS(9782), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167149] = 2, - ACTIONS(9831), 1, + [166771] = 2, + ACTIONS(9784), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167157] = 2, - ACTIONS(9833), 1, + [166779] = 2, + ACTIONS(8902), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167165] = 2, - ACTIONS(9835), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [166787] = 3, + ACTIONS(3), 1, sym_comment, - [167173] = 2, - ACTIONS(5518), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9786), 1, + sym_regex_pattern, + [166797] = 2, + ACTIONS(7464), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167181] = 2, - ACTIONS(9837), 1, + [166805] = 2, + ACTIONS(9788), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167189] = 2, - ACTIONS(9839), 1, + [166813] = 2, + ACTIONS(9790), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166821] = 2, + ACTIONS(9792), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167197] = 2, - ACTIONS(9841), 1, + [166829] = 2, + ACTIONS(9794), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167205] = 2, - ACTIONS(8945), 1, - anon_sym_RBRACK, + [166837] = 2, + ACTIONS(9796), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167213] = 2, - ACTIONS(9843), 1, + [166845] = 2, + ACTIONS(9798), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167221] = 2, - ACTIONS(9845), 1, - anon_sym_symbol, + [166853] = 2, + ACTIONS(9800), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167229] = 2, - ACTIONS(5520), 1, - anon_sym_RPAREN, + [166861] = 2, + ACTIONS(9802), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167237] = 2, - ACTIONS(9847), 1, + [166869] = 2, + ACTIONS(9804), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167245] = 2, - ACTIONS(9849), 1, - anon_sym_DOT, + [166877] = 2, + ACTIONS(9806), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167253] = 2, - ACTIONS(9851), 1, - anon_sym_RBRACK, + [166885] = 2, + ACTIONS(5745), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167261] = 2, - ACTIONS(9853), 1, - anon_sym_EQ_GT, + [166893] = 2, + ACTIONS(9808), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167269] = 2, - ACTIONS(9855), 1, - anon_sym_RBRACK, + [166901] = 2, + ACTIONS(9810), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167277] = 2, - ACTIONS(9857), 1, + [166909] = 2, + ACTIONS(9812), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167285] = 2, - ACTIONS(9859), 1, + [166917] = 2, + ACTIONS(9814), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167293] = 2, - ACTIONS(9861), 1, - anon_sym_RBRACK, + [166925] = 2, + ACTIONS(9816), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167301] = 2, - ACTIONS(7349), 1, - anon_sym_EQ, + [166933] = 2, + ACTIONS(9818), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167309] = 2, - ACTIONS(9863), 1, + [166941] = 2, + ACTIONS(9820), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167317] = 2, - ACTIONS(9865), 1, - sym_identifier, + [166949] = 2, + ACTIONS(9822), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167325] = 2, - ACTIONS(9867), 1, + [166957] = 2, + ACTIONS(9824), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167333] = 2, - ACTIONS(9869), 1, - anon_sym_RBRACK, + [166965] = 2, + ACTIONS(9826), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167341] = 2, - ACTIONS(9871), 1, - sym_identifier, + [166973] = 2, + ACTIONS(9828), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167349] = 2, - ACTIONS(9873), 1, - anon_sym_RBRACK, + [166981] = 2, + ACTIONS(9830), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167357] = 2, - ACTIONS(7823), 1, - sym_identifier, + [166989] = 2, + ACTIONS(9832), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167365] = 2, - ACTIONS(9875), 1, + [166997] = 2, + ACTIONS(9834), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167373] = 2, - ACTIONS(8103), 1, + [167005] = 2, + ACTIONS(8091), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167381] = 2, - ACTIONS(9877), 1, + [167013] = 2, + ACTIONS(9836), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167389] = 2, - ACTIONS(9879), 1, - anon_sym_RPAREN, + [167021] = 2, + ACTIONS(9838), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167397] = 2, - ACTIONS(9881), 1, - anon_sym_RBRACK, + [167029] = 2, + ACTIONS(9840), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167405] = 2, - ACTIONS(9883), 1, + [167037] = 2, + ACTIONS(9842), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167413] = 2, - ACTIONS(9885), 1, + [167045] = 2, + ACTIONS(9844), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167421] = 2, - ACTIONS(5758), 1, - anon_sym_in, + [167053] = 2, + ACTIONS(9846), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167429] = 2, - ACTIONS(5610), 1, + [167061] = 2, + ACTIONS(5593), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167437] = 2, - ACTIONS(9887), 1, - sym_identifier, + [167069] = 2, + ACTIONS(9848), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167445] = 2, - ACTIONS(9889), 1, + [167077] = 2, + ACTIONS(9850), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167453] = 2, - ACTIONS(9891), 1, + [167085] = 2, + ACTIONS(9852), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167461] = 2, - ACTIONS(9893), 1, - anon_sym_EQ_GT, + [167093] = 2, + ACTIONS(8878), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167469] = 2, - ACTIONS(9895), 1, + [167101] = 2, + ACTIONS(9854), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167477] = 2, - ACTIONS(9897), 1, - anon_sym_symbol, + [167109] = 2, + ACTIONS(9856), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167485] = 2, - ACTIONS(9899), 1, + [167117] = 2, + ACTIONS(9858), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167493] = 2, - ACTIONS(9901), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167501] = 2, - ACTIONS(9903), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167509] = 2, - ACTIONS(9905), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167517] = 2, - ACTIONS(9907), 1, - anon_sym_EQ_GT, + [167125] = 2, + ACTIONS(9860), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167525] = 2, - ACTIONS(9909), 1, - anon_sym_EQ, + [167133] = 2, + ACTIONS(9862), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167533] = 3, + [167141] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9911), 1, + ACTIONS(9864), 1, sym_regex_pattern, - [167543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9913), 1, - anon_sym_SLASH2, - [167553] = 2, - ACTIONS(9915), 1, - anon_sym_COLON, + [167151] = 2, + ACTIONS(9866), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167561] = 2, - ACTIONS(9917), 1, - anon_sym_EQ_GT, + [167159] = 2, + ACTIONS(9868), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167569] = 2, - ACTIONS(9919), 1, + [167167] = 2, + ACTIONS(9870), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167577] = 2, - ACTIONS(5327), 1, - anon_sym_RBRACE, + [167175] = 2, + ACTIONS(6581), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167183] = 2, + ACTIONS(9872), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167585] = 2, - ACTIONS(9921), 1, + [167191] = 2, + ACTIONS(9874), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167593] = 2, - ACTIONS(9923), 1, - anon_sym_EQ, + [167199] = 2, + ACTIONS(9876), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167601] = 2, - ACTIONS(9925), 1, - anon_sym_EQ_GT, + [167207] = 2, + ACTIONS(9878), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167609] = 2, - ACTIONS(9927), 1, - anon_sym_RPAREN, + [167215] = 2, + ACTIONS(9880), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167617] = 2, - ACTIONS(9929), 1, + [167223] = 2, + ACTIONS(8009), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167625] = 2, - ACTIONS(9931), 1, - anon_sym_COLON, + [167231] = 2, + ACTIONS(4954), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167633] = 2, - ACTIONS(6125), 1, + [167239] = 2, + ACTIONS(9882), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167641] = 2, - ACTIONS(9933), 1, - anon_sym_DOT, + [167247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9884), 1, + anon_sym_SLASH2, + [167257] = 2, + ACTIONS(9886), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167649] = 2, - ACTIONS(9755), 1, - anon_sym_target, + [167265] = 2, + ACTIONS(9888), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167273] = 2, + ACTIONS(4918), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167657] = 2, - ACTIONS(9935), 1, + [167281] = 2, + ACTIONS(9890), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167665] = 2, - ACTIONS(5208), 1, + [167289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9892), 1, + anon_sym_SLASH2, + [167299] = 2, + ACTIONS(5573), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167673] = 2, - ACTIONS(9037), 1, - anon_sym_from, + [167307] = 2, + ACTIONS(9894), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167681] = 2, - ACTIONS(9937), 1, - anon_sym_RBRACK, + [167315] = 2, + ACTIONS(9896), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167689] = 2, - ACTIONS(9939), 1, - anon_sym_RBRACK, + [167323] = 2, + ACTIONS(9898), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167697] = 2, - ACTIONS(9941), 1, + [167331] = 2, + ACTIONS(9900), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167705] = 2, - ACTIONS(9943), 1, - anon_sym_RPAREN, + [167339] = 2, + ACTIONS(9902), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167713] = 2, - ACTIONS(5309), 1, - anon_sym_RBRACE, + [167347] = 2, + ACTIONS(9904), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167721] = 2, - ACTIONS(9945), 1, - anon_sym_RBRACK, + [167355] = 2, + ACTIONS(9906), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167729] = 2, - ACTIONS(9947), 1, + [167363] = 2, + ACTIONS(9908), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -275244,4836 +273172,4824 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1167)] = 0, - [SMALL_STATE(1168)] = 71, - [SMALL_STATE(1169)] = 164, - [SMALL_STATE(1170)] = 235, - [SMALL_STATE(1171)] = 306, - [SMALL_STATE(1172)] = 377, - [SMALL_STATE(1173)] = 448, - [SMALL_STATE(1174)] = 521, - [SMALL_STATE(1175)] = 594, - [SMALL_STATE(1176)] = 665, - [SMALL_STATE(1177)] = 754, - [SMALL_STATE(1178)] = 825, - [SMALL_STATE(1179)] = 918, - [SMALL_STATE(1180)] = 1011, - [SMALL_STATE(1181)] = 1100, - [SMALL_STATE(1182)] = 1193, - [SMALL_STATE(1183)] = 1288, - [SMALL_STATE(1184)] = 1379, + [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(1185)] = 1472, - [SMALL_STATE(1186)] = 1560, - [SMALL_STATE(1187)] = 1650, - [SMALL_STATE(1188)] = 1740, - [SMALL_STATE(1189)] = 1828, - [SMALL_STATE(1190)] = 1916, - [SMALL_STATE(1191)] = 2006, - [SMALL_STATE(1192)] = 2094, - [SMALL_STATE(1193)] = 2182, - [SMALL_STATE(1194)] = 2270, - [SMALL_STATE(1195)] = 2356, - [SMALL_STATE(1196)] = 2446, - [SMALL_STATE(1197)] = 2516, - [SMALL_STATE(1198)] = 2608, - [SMALL_STATE(1199)] = 2698, - [SMALL_STATE(1200)] = 2788, - [SMALL_STATE(1201)] = 2862, - [SMALL_STATE(1202)] = 2932, - [SMALL_STATE(1203)] = 3022, - [SMALL_STATE(1204)] = 3110, - [SMALL_STATE(1205)] = 3200, - [SMALL_STATE(1206)] = 3288, - [SMALL_STATE(1207)] = 3380, - [SMALL_STATE(1208)] = 3466, + [SMALL_STATE(1186)] = 1542, + [SMALL_STATE(1187)] = 1634, + [SMALL_STATE(1188)] = 1726, + [SMALL_STATE(1189)] = 1814, + [SMALL_STATE(1190)] = 1900, + [SMALL_STATE(1191)] = 1990, + [SMALL_STATE(1192)] = 2080, + [SMALL_STATE(1193)] = 2170, + [SMALL_STATE(1194)] = 2258, + [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(1209)] = 3554, - [SMALL_STATE(1210)] = 3645, - [SMALL_STATE(1211)] = 3726, - [SMALL_STATE(1212)] = 3817, - [SMALL_STATE(1213)] = 3906, - [SMALL_STATE(1214)] = 3985, + [SMALL_STATE(1210)] = 3641, + [SMALL_STATE(1211)] = 3728, + [SMALL_STATE(1212)] = 3815, + [SMALL_STATE(1213)] = 3904, + [SMALL_STATE(1214)] = 3995, [SMALL_STATE(1215)] = 4076, - [SMALL_STATE(1216)] = 4171, - [SMALL_STATE(1217)] = 4258, - [SMALL_STATE(1218)] = 4345, - [SMALL_STATE(1219)] = 4432, - [SMALL_STATE(1220)] = 4519, + [SMALL_STATE(1216)] = 4167, + [SMALL_STATE(1217)] = 4254, + [SMALL_STATE(1218)] = 4333, + [SMALL_STATE(1219)] = 4428, + [SMALL_STATE(1220)] = 4517, [SMALL_STATE(1221)] = 4608, [SMALL_STATE(1222)] = 4699, - [SMALL_STATE(1223)] = 4785, - [SMALL_STATE(1224)] = 4877, - [SMALL_STATE(1225)] = 4969, - [SMALL_STATE(1226)] = 5055, - [SMALL_STATE(1227)] = 5141, - [SMALL_STATE(1228)] = 5219, - [SMALL_STATE(1229)] = 5309, - [SMALL_STATE(1230)] = 5387, - [SMALL_STATE(1231)] = 5473, - [SMALL_STATE(1232)] = 5541, - [SMALL_STATE(1233)] = 5609, - [SMALL_STATE(1234)] = 5699, - [SMALL_STATE(1235)] = 5777, - [SMALL_STATE(1236)] = 5863, - [SMALL_STATE(1237)] = 5949, - [SMALL_STATE(1238)] = 6029, - [SMALL_STATE(1239)] = 6105, - [SMALL_STATE(1240)] = 6191, - [SMALL_STATE(1241)] = 6281, - [SMALL_STATE(1242)] = 6367, - [SMALL_STATE(1243)] = 6453, - [SMALL_STATE(1244)] = 6527, - [SMALL_STATE(1245)] = 6605, - [SMALL_STATE(1246)] = 6691, - [SMALL_STATE(1247)] = 6777, - [SMALL_STATE(1248)] = 6851, - [SMALL_STATE(1249)] = 6925, - [SMALL_STATE(1250)] = 6999, - [SMALL_STATE(1251)] = 7089, - [SMALL_STATE(1252)] = 7175, - [SMALL_STATE(1253)] = 7261, - [SMALL_STATE(1254)] = 7339, - [SMALL_STATE(1255)] = 7413, - [SMALL_STATE(1256)] = 7491, - [SMALL_STATE(1257)] = 7558, - [SMALL_STATE(1258)] = 7633, - [SMALL_STATE(1259)] = 7702, - [SMALL_STATE(1260)] = 7781, - [SMALL_STATE(1261)] = 7864, - [SMALL_STATE(1262)] = 7939, - [SMALL_STATE(1263)] = 8008, - [SMALL_STATE(1264)] = 8077, - [SMALL_STATE(1265)] = 8156, - [SMALL_STATE(1266)] = 8223, - [SMALL_STATE(1267)] = 8312, - [SMALL_STATE(1268)] = 8379, - [SMALL_STATE(1269)] = 8464, - [SMALL_STATE(1270)] = 8533, - [SMALL_STATE(1271)] = 8622, - [SMALL_STATE(1272)] = 8693, - [SMALL_STATE(1273)] = 8782, - [SMALL_STATE(1274)] = 8859, - [SMALL_STATE(1275)] = 8942, - [SMALL_STATE(1276)] = 9031, - [SMALL_STATE(1277)] = 9100, - [SMALL_STATE(1278)] = 9177, - [SMALL_STATE(1279)] = 9246, - [SMALL_STATE(1280)] = 9321, - [SMALL_STATE(1281)] = 9388, - [SMALL_STATE(1282)] = 9473, - [SMALL_STATE(1283)] = 9558, - [SMALL_STATE(1284)] = 9635, - [SMALL_STATE(1285)] = 9722, - [SMALL_STATE(1286)] = 9788, - [SMALL_STATE(1287)] = 9876, - [SMALL_STATE(1288)] = 9954, - [SMALL_STATE(1289)] = 10020, - [SMALL_STATE(1290)] = 10102, - [SMALL_STATE(1291)] = 10174, - [SMALL_STATE(1292)] = 10262, - [SMALL_STATE(1293)] = 10346, - [SMALL_STATE(1294)] = 10420, - [SMALL_STATE(1295)] = 10486, - [SMALL_STATE(1296)] = 10566, - [SMALL_STATE(1297)] = 10638, - [SMALL_STATE(1298)] = 10710, - [SMALL_STATE(1299)] = 10782, - [SMALL_STATE(1300)] = 10856, - [SMALL_STATE(1301)] = 10932, - [SMALL_STATE(1302)] = 10998, - [SMALL_STATE(1303)] = 11070, - [SMALL_STATE(1304)] = 11136, - [SMALL_STATE(1305)] = 11210, - [SMALL_STATE(1306)] = 11276, - [SMALL_STATE(1307)] = 11350, - [SMALL_STATE(1308)] = 11428, - [SMALL_STATE(1309)] = 11494, - [SMALL_STATE(1310)] = 11568, - [SMALL_STATE(1311)] = 11642, - [SMALL_STATE(1312)] = 11708, - [SMALL_STATE(1313)] = 11774, - [SMALL_STATE(1314)] = 11854, - [SMALL_STATE(1315)] = 11926, - [SMALL_STATE(1316)] = 11998, - [SMALL_STATE(1317)] = 12082, - [SMALL_STATE(1318)] = 12152, - [SMALL_STATE(1319)] = 12236, - [SMALL_STATE(1320)] = 12308, - [SMALL_STATE(1321)] = 12386, - [SMALL_STATE(1322)] = 12455, - [SMALL_STATE(1323)] = 12530, - [SMALL_STATE(1324)] = 12603, - [SMALL_STATE(1325)] = 12670, - [SMALL_STATE(1326)] = 12737, - [SMALL_STATE(1327)] = 12810, - [SMALL_STATE(1328)] = 12887, - [SMALL_STATE(1329)] = 12970, - [SMALL_STATE(1330)] = 13041, - [SMALL_STATE(1331)] = 13110, - [SMALL_STATE(1332)] = 13179, - [SMALL_STATE(1333)] = 13252, - [SMALL_STATE(1334)] = 13323, - [SMALL_STATE(1335)] = 13400, - [SMALL_STATE(1336)] = 13475, - [SMALL_STATE(1337)] = 13544, - [SMALL_STATE(1338)] = 13621, - [SMALL_STATE(1339)] = 13692, - [SMALL_STATE(1340)] = 13771, - [SMALL_STATE(1341)] = 13848, - [SMALL_STATE(1342)] = 13919, - [SMALL_STATE(1343)] = 13992, - [SMALL_STATE(1344)] = 14058, - [SMALL_STATE(1345)] = 14132, - [SMALL_STATE(1346)] = 14202, - [SMALL_STATE(1347)] = 14322, - [SMALL_STATE(1348)] = 14394, - [SMALL_STATE(1349)] = 14464, - [SMALL_STATE(1350)] = 14540, - [SMALL_STATE(1351)] = 14610, - [SMALL_STATE(1352)] = 14730, - [SMALL_STATE(1353)] = 14850, - [SMALL_STATE(1354)] = 14920, - [SMALL_STATE(1355)] = 14992, - [SMALL_STATE(1356)] = 15112, - [SMALL_STATE(1357)] = 15184, - [SMALL_STATE(1358)] = 15258, - [SMALL_STATE(1359)] = 15328, - [SMALL_STATE(1360)] = 15448, - [SMALL_STATE(1361)] = 15514, - [SMALL_STATE(1362)] = 15588, - [SMALL_STATE(1363)] = 15658, - [SMALL_STATE(1364)] = 15732, - [SMALL_STATE(1365)] = 15802, - [SMALL_STATE(1366)] = 15870, - [SMALL_STATE(1367)] = 15940, - [SMALL_STATE(1368)] = 16060, - [SMALL_STATE(1369)] = 16129, - [SMALL_STATE(1370)] = 16200, - [SMALL_STATE(1371)] = 16269, - [SMALL_STATE(1372)] = 16338, - [SMALL_STATE(1373)] = 16407, - [SMALL_STATE(1374)] = 16474, - [SMALL_STATE(1375)] = 16545, - [SMALL_STATE(1376)] = 16618, - [SMALL_STATE(1377)] = 16691, - [SMALL_STATE(1378)] = 16758, - [SMALL_STATE(1379)] = 16827, - [SMALL_STATE(1380)] = 16896, - [SMALL_STATE(1381)] = 16965, - [SMALL_STATE(1382)] = 17034, - [SMALL_STATE(1383)] = 17102, - [SMALL_STATE(1384)] = 17170, - [SMALL_STATE(1385)] = 17238, - [SMALL_STATE(1386)] = 17354, - [SMALL_STATE(1387)] = 17470, - [SMALL_STATE(1388)] = 17538, - [SMALL_STATE(1389)] = 17654, - [SMALL_STATE(1390)] = 17770, - [SMALL_STATE(1391)] = 17840, - [SMALL_STATE(1392)] = 17956, - [SMALL_STATE(1393)] = 18072, - [SMALL_STATE(1394)] = 18140, - [SMALL_STATE(1395)] = 18208, - [SMALL_STATE(1396)] = 18324, - [SMALL_STATE(1397)] = 18440, - [SMALL_STATE(1398)] = 18556, - [SMALL_STATE(1399)] = 18624, - [SMALL_STATE(1400)] = 18692, - [SMALL_STATE(1401)] = 18760, - [SMALL_STATE(1402)] = 18828, - [SMALL_STATE(1403)] = 18944, - [SMALL_STATE(1404)] = 19060, - [SMALL_STATE(1405)] = 19128, - [SMALL_STATE(1406)] = 19244, - [SMALL_STATE(1407)] = 19312, - [SMALL_STATE(1408)] = 19380, - [SMALL_STATE(1409)] = 19448, - [SMALL_STATE(1410)] = 19516, - [SMALL_STATE(1411)] = 19584, - [SMALL_STATE(1412)] = 19652, - [SMALL_STATE(1413)] = 19768, - [SMALL_STATE(1414)] = 19834, - [SMALL_STATE(1415)] = 19900, - [SMALL_STATE(1416)] = 19968, - [SMALL_STATE(1417)] = 20036, - [SMALL_STATE(1418)] = 20152, - [SMALL_STATE(1419)] = 20268, - [SMALL_STATE(1420)] = 20336, - [SMALL_STATE(1421)] = 20452, - [SMALL_STATE(1422)] = 20568, - [SMALL_STATE(1423)] = 20684, - [SMALL_STATE(1424)] = 20752, - [SMALL_STATE(1425)] = 20817, - [SMALL_STATE(1426)] = 20882, - [SMALL_STATE(1427)] = 20947, - [SMALL_STATE(1428)] = 21012, - [SMALL_STATE(1429)] = 21077, - [SMALL_STATE(1430)] = 21142, - [SMALL_STATE(1431)] = 21207, - [SMALL_STATE(1432)] = 21272, - [SMALL_STATE(1433)] = 21337, - [SMALL_STATE(1434)] = 21449, - [SMALL_STATE(1435)] = 21561, - [SMALL_STATE(1436)] = 21673, - [SMALL_STATE(1437)] = 21785, - [SMALL_STATE(1438)] = 21897, - [SMALL_STATE(1439)] = 22009, - [SMALL_STATE(1440)] = 22121, - [SMALL_STATE(1441)] = 22232, - [SMALL_STATE(1442)] = 22343, - [SMALL_STATE(1443)] = 22462, - [SMALL_STATE(1444)] = 22573, - [SMALL_STATE(1445)] = 22692, - [SMALL_STATE(1446)] = 22803, - [SMALL_STATE(1447)] = 22914, - [SMALL_STATE(1448)] = 23025, - [SMALL_STATE(1449)] = 23144, - [SMALL_STATE(1450)] = 23255, - [SMALL_STATE(1451)] = 23366, - [SMALL_STATE(1452)] = 23477, - [SMALL_STATE(1453)] = 23596, - [SMALL_STATE(1454)] = 23707, - [SMALL_STATE(1455)] = 23826, - [SMALL_STATE(1456)] = 23937, - [SMALL_STATE(1457)] = 24039, - [SMALL_STATE(1458)] = 24141, - [SMALL_STATE(1459)] = 24243, - [SMALL_STATE(1460)] = 24345, - [SMALL_STATE(1461)] = 24423, - [SMALL_STATE(1462)] = 24525, - [SMALL_STATE(1463)] = 24627, - [SMALL_STATE(1464)] = 24736, - [SMALL_STATE(1465)] = 24793, - [SMALL_STATE(1466)] = 24904, - [SMALL_STATE(1467)] = 24971, - [SMALL_STATE(1468)] = 25036, - [SMALL_STATE(1469)] = 25093, - [SMALL_STATE(1470)] = 25160, - [SMALL_STATE(1471)] = 25227, - [SMALL_STATE(1472)] = 25283, - [SMALL_STATE(1473)] = 25341, - [SMALL_STATE(1474)] = 25401, - [SMALL_STATE(1475)] = 25457, - [SMALL_STATE(1476)] = 25513, - [SMALL_STATE(1477)] = 25569, - [SMALL_STATE(1478)] = 25625, - [SMALL_STATE(1479)] = 25687, - [SMALL_STATE(1480)] = 25745, - [SMALL_STATE(1481)] = 25805, - [SMALL_STATE(1482)] = 25867, - [SMALL_STATE(1483)] = 25925, - [SMALL_STATE(1484)] = 26019, - [SMALL_STATE(1485)] = 26075, - [SMALL_STATE(1486)] = 26131, - [SMALL_STATE(1487)] = 26199, - [SMALL_STATE(1488)] = 26254, - [SMALL_STATE(1489)] = 26313, - [SMALL_STATE(1490)] = 26368, - [SMALL_STATE(1491)] = 26423, - [SMALL_STATE(1492)] = 26480, - [SMALL_STATE(1493)] = 26535, - [SMALL_STATE(1494)] = 26592, - [SMALL_STATE(1495)] = 26647, - [SMALL_STATE(1496)] = 26702, - [SMALL_STATE(1497)] = 26759, - [SMALL_STATE(1498)] = 26816, - [SMALL_STATE(1499)] = 26873, - [SMALL_STATE(1500)] = 26928, - [SMALL_STATE(1501)] = 26983, - [SMALL_STATE(1502)] = 27038, - [SMALL_STATE(1503)] = 27095, - [SMALL_STATE(1504)] = 27150, - [SMALL_STATE(1505)] = 27205, - [SMALL_STATE(1506)] = 27260, - [SMALL_STATE(1507)] = 27321, - [SMALL_STATE(1508)] = 27376, - [SMALL_STATE(1509)] = 27437, - [SMALL_STATE(1510)] = 27498, - [SMALL_STATE(1511)] = 27559, - [SMALL_STATE(1512)] = 27616, - [SMALL_STATE(1513)] = 27675, - [SMALL_STATE(1514)] = 27732, - [SMALL_STATE(1515)] = 27793, - [SMALL_STATE(1516)] = 27848, - [SMALL_STATE(1517)] = 27905, - [SMALL_STATE(1518)] = 27960, - [SMALL_STATE(1519)] = 28015, - [SMALL_STATE(1520)] = 28070, - [SMALL_STATE(1521)] = 28125, - [SMALL_STATE(1522)] = 28180, - [SMALL_STATE(1523)] = 28235, - [SMALL_STATE(1524)] = 28290, - [SMALL_STATE(1525)] = 28345, - [SMALL_STATE(1526)] = 28400, - [SMALL_STATE(1527)] = 28455, - [SMALL_STATE(1528)] = 28510, - [SMALL_STATE(1529)] = 28565, - [SMALL_STATE(1530)] = 28628, - [SMALL_STATE(1531)] = 28683, - [SMALL_STATE(1532)] = 28740, - [SMALL_STATE(1533)] = 28801, - [SMALL_STATE(1534)] = 28856, - [SMALL_STATE(1535)] = 28911, - [SMALL_STATE(1536)] = 28968, - [SMALL_STATE(1537)] = 29023, - [SMALL_STATE(1538)] = 29080, - [SMALL_STATE(1539)] = 29141, - [SMALL_STATE(1540)] = 29196, - [SMALL_STATE(1541)] = 29251, - [SMALL_STATE(1542)] = 29306, - [SMALL_STATE(1543)] = 29361, - [SMALL_STATE(1544)] = 29416, - [SMALL_STATE(1545)] = 29473, - [SMALL_STATE(1546)] = 29528, - [SMALL_STATE(1547)] = 29583, - [SMALL_STATE(1548)] = 29638, - [SMALL_STATE(1549)] = 29693, - [SMALL_STATE(1550)] = 29748, - [SMALL_STATE(1551)] = 29803, - [SMALL_STATE(1552)] = 29864, - [SMALL_STATE(1553)] = 29919, - [SMALL_STATE(1554)] = 29974, - [SMALL_STATE(1555)] = 30029, - [SMALL_STATE(1556)] = 30084, - [SMALL_STATE(1557)] = 30139, - [SMALL_STATE(1558)] = 30194, - [SMALL_STATE(1559)] = 30249, - [SMALL_STATE(1560)] = 30304, - [SMALL_STATE(1561)] = 30359, - [SMALL_STATE(1562)] = 30420, - [SMALL_STATE(1563)] = 30475, - [SMALL_STATE(1564)] = 30530, - [SMALL_STATE(1565)] = 30593, - [SMALL_STATE(1566)] = 30654, - [SMALL_STATE(1567)] = 30717, - [SMALL_STATE(1568)] = 30772, - [SMALL_STATE(1569)] = 30831, - [SMALL_STATE(1570)] = 30886, - [SMALL_STATE(1571)] = 30947, - [SMALL_STATE(1572)] = 31002, - [SMALL_STATE(1573)] = 31057, - [SMALL_STATE(1574)] = 31112, - [SMALL_STATE(1575)] = 31173, - [SMALL_STATE(1576)] = 31228, - [SMALL_STATE(1577)] = 31287, - [SMALL_STATE(1578)] = 31342, - [SMALL_STATE(1579)] = 31397, - [SMALL_STATE(1580)] = 31452, - [SMALL_STATE(1581)] = 31507, - [SMALL_STATE(1582)] = 31562, - [SMALL_STATE(1583)] = 31621, - [SMALL_STATE(1584)] = 31676, - [SMALL_STATE(1585)] = 31731, - [SMALL_STATE(1586)] = 31786, - [SMALL_STATE(1587)] = 31841, - [SMALL_STATE(1588)] = 31896, - [SMALL_STATE(1589)] = 31955, - [SMALL_STATE(1590)] = 32010, - [SMALL_STATE(1591)] = 32065, - [SMALL_STATE(1592)] = 32120, - [SMALL_STATE(1593)] = 32175, - [SMALL_STATE(1594)] = 32230, - [SMALL_STATE(1595)] = 32285, - [SMALL_STATE(1596)] = 32344, - [SMALL_STATE(1597)] = 32399, - [SMALL_STATE(1598)] = 32454, - [SMALL_STATE(1599)] = 32509, - [SMALL_STATE(1600)] = 32564, - [SMALL_STATE(1601)] = 32619, - [SMALL_STATE(1602)] = 32674, - [SMALL_STATE(1603)] = 32729, - [SMALL_STATE(1604)] = 32788, - [SMALL_STATE(1605)] = 32843, - [SMALL_STATE(1606)] = 32904, - [SMALL_STATE(1607)] = 32959, - [SMALL_STATE(1608)] = 33020, - [SMALL_STATE(1609)] = 33077, - [SMALL_STATE(1610)] = 33132, - [SMALL_STATE(1611)] = 33242, - [SMALL_STATE(1612)] = 33296, - [SMALL_STATE(1613)] = 33382, - [SMALL_STATE(1614)] = 33480, - [SMALL_STATE(1615)] = 33534, - [SMALL_STATE(1616)] = 33588, - [SMALL_STATE(1617)] = 33674, - [SMALL_STATE(1618)] = 33784, - [SMALL_STATE(1619)] = 33884, - [SMALL_STATE(1620)] = 33938, - [SMALL_STATE(1621)] = 34048, - [SMALL_STATE(1622)] = 34102, - [SMALL_STATE(1623)] = 34156, - [SMALL_STATE(1624)] = 34210, - [SMALL_STATE(1625)] = 34264, - [SMALL_STATE(1626)] = 34318, - [SMALL_STATE(1627)] = 34398, - [SMALL_STATE(1628)] = 34452, - [SMALL_STATE(1629)] = 34526, - [SMALL_STATE(1630)] = 34580, - [SMALL_STATE(1631)] = 34634, - [SMALL_STATE(1632)] = 34688, - [SMALL_STATE(1633)] = 34742, - [SMALL_STATE(1634)] = 34796, - [SMALL_STATE(1635)] = 34906, - [SMALL_STATE(1636)] = 35016, - [SMALL_STATE(1637)] = 35070, - [SMALL_STATE(1638)] = 35124, - [SMALL_STATE(1639)] = 35178, - [SMALL_STATE(1640)] = 35232, - [SMALL_STATE(1641)] = 35286, - [SMALL_STATE(1642)] = 35396, - [SMALL_STATE(1643)] = 35450, - [SMALL_STATE(1644)] = 35504, - [SMALL_STATE(1645)] = 35558, - [SMALL_STATE(1646)] = 35612, - [SMALL_STATE(1647)] = 35704, - [SMALL_STATE(1648)] = 35758, - [SMALL_STATE(1649)] = 35812, - [SMALL_STATE(1650)] = 35866, - [SMALL_STATE(1651)] = 35920, - [SMALL_STATE(1652)] = 35974, - [SMALL_STATE(1653)] = 36028, - [SMALL_STATE(1654)] = 36102, - [SMALL_STATE(1655)] = 36156, - [SMALL_STATE(1656)] = 36242, - [SMALL_STATE(1657)] = 36328, - [SMALL_STATE(1658)] = 36382, - [SMALL_STATE(1659)] = 36436, - [SMALL_STATE(1660)] = 36530, - [SMALL_STATE(1661)] = 36618, - [SMALL_STATE(1662)] = 36672, - [SMALL_STATE(1663)] = 36726, - [SMALL_STATE(1664)] = 36780, - [SMALL_STATE(1665)] = 36834, - [SMALL_STATE(1666)] = 36888, - [SMALL_STATE(1667)] = 36984, - [SMALL_STATE(1668)] = 37038, - [SMALL_STATE(1669)] = 37092, - [SMALL_STATE(1670)] = 37146, - [SMALL_STATE(1671)] = 37200, - [SMALL_STATE(1672)] = 37254, - [SMALL_STATE(1673)] = 37364, - [SMALL_STATE(1674)] = 37418, - [SMALL_STATE(1675)] = 37528, - [SMALL_STATE(1676)] = 37582, - [SMALL_STATE(1677)] = 37636, - [SMALL_STATE(1678)] = 37714, - [SMALL_STATE(1679)] = 37768, - [SMALL_STATE(1680)] = 37822, - [SMALL_STATE(1681)] = 37900, - [SMALL_STATE(1682)] = 37954, - [SMALL_STATE(1683)] = 38008, - [SMALL_STATE(1684)] = 38062, - [SMALL_STATE(1685)] = 38116, - [SMALL_STATE(1686)] = 38170, - [SMALL_STATE(1687)] = 38224, - [SMALL_STATE(1688)] = 38278, - [SMALL_STATE(1689)] = 38332, - [SMALL_STATE(1690)] = 38412, - [SMALL_STATE(1691)] = 38466, - [SMALL_STATE(1692)] = 38520, - [SMALL_STATE(1693)] = 38576, - [SMALL_STATE(1694)] = 38686, - [SMALL_STATE(1695)] = 38772, - [SMALL_STATE(1696)] = 38826, - [SMALL_STATE(1697)] = 38880, - [SMALL_STATE(1698)] = 38936, - [SMALL_STATE(1699)] = 38990, - [SMALL_STATE(1700)] = 39100, - [SMALL_STATE(1701)] = 39184, - [SMALL_STATE(1702)] = 39240, - [SMALL_STATE(1703)] = 39350, - [SMALL_STATE(1704)] = 39404, - [SMALL_STATE(1705)] = 39458, - [SMALL_STATE(1706)] = 39512, - [SMALL_STATE(1707)] = 39566, - [SMALL_STATE(1708)] = 39620, - [SMALL_STATE(1709)] = 39722, - [SMALL_STATE(1710)] = 39776, - [SMALL_STATE(1711)] = 39830, - [SMALL_STATE(1712)] = 39884, - [SMALL_STATE(1713)] = 39954, - [SMALL_STATE(1714)] = 40008, - [SMALL_STATE(1715)] = 40062, - [SMALL_STATE(1716)] = 40116, - [SMALL_STATE(1717)] = 40226, - [SMALL_STATE(1718)] = 40280, - [SMALL_STATE(1719)] = 40390, - [SMALL_STATE(1720)] = 40444, - [SMALL_STATE(1721)] = 40504, - [SMALL_STATE(1722)] = 40558, - [SMALL_STATE(1723)] = 40618, - [SMALL_STATE(1724)] = 40672, - [SMALL_STATE(1725)] = 40726, - [SMALL_STATE(1726)] = 40836, - [SMALL_STATE(1727)] = 40908, - [SMALL_STATE(1728)] = 40968, - [SMALL_STATE(1729)] = 41023, - [SMALL_STATE(1730)] = 41080, - [SMALL_STATE(1731)] = 41143, - [SMALL_STATE(1732)] = 41196, - [SMALL_STATE(1733)] = 41253, - [SMALL_STATE(1734)] = 41308, - [SMALL_STATE(1735)] = 41387, - [SMALL_STATE(1736)] = 41466, - [SMALL_STATE(1737)] = 41545, - [SMALL_STATE(1738)] = 41608, - [SMALL_STATE(1739)] = 41685, - [SMALL_STATE(1740)] = 41794, - [SMALL_STATE(1741)] = 41871, - [SMALL_STATE(1742)] = 41924, - [SMALL_STATE(1743)] = 41977, - [SMALL_STATE(1744)] = 42056, - [SMALL_STATE(1745)] = 42109, - [SMALL_STATE(1746)] = 42186, - [SMALL_STATE(1747)] = 42249, - [SMALL_STATE(1748)] = 42302, - [SMALL_STATE(1749)] = 42381, - [SMALL_STATE(1750)] = 42462, - [SMALL_STATE(1751)] = 42539, - [SMALL_STATE(1752)] = 42596, - [SMALL_STATE(1753)] = 42675, - [SMALL_STATE(1754)] = 42754, - [SMALL_STATE(1755)] = 42815, - [SMALL_STATE(1756)] = 42868, - [SMALL_STATE(1757)] = 42945, - [SMALL_STATE(1758)] = 43006, - [SMALL_STATE(1759)] = 43076, - [SMALL_STATE(1760)] = 43192, - [SMALL_STATE(1761)] = 43268, - [SMALL_STATE(1762)] = 43376, - [SMALL_STATE(1763)] = 43430, - [SMALL_STATE(1764)] = 43538, - [SMALL_STATE(1765)] = 43596, - [SMALL_STATE(1766)] = 43654, - [SMALL_STATE(1767)] = 43706, - [SMALL_STATE(1768)] = 43764, - [SMALL_STATE(1769)] = 43820, - [SMALL_STATE(1770)] = 43878, - [SMALL_STATE(1771)] = 43932, - [SMALL_STATE(1772)] = 44040, - [SMALL_STATE(1773)] = 44148, - [SMALL_STATE(1774)] = 44230, - [SMALL_STATE(1775)] = 44282, - [SMALL_STATE(1776)] = 44354, - [SMALL_STATE(1777)] = 44450, - [SMALL_STATE(1778)] = 44548, - [SMALL_STATE(1779)] = 44626, - [SMALL_STATE(1780)] = 44716, - [SMALL_STATE(1781)] = 44808, - [SMALL_STATE(1782)] = 44860, - [SMALL_STATE(1783)] = 44954, - [SMALL_STATE(1784)] = 45030, - [SMALL_STATE(1785)] = 45108, - [SMALL_STATE(1786)] = 45194, - [SMALL_STATE(1787)] = 45294, - [SMALL_STATE(1788)] = 45366, - [SMALL_STATE(1789)] = 45474, - [SMALL_STATE(1790)] = 45582, - [SMALL_STATE(1791)] = 45650, - [SMALL_STATE(1792)] = 45704, - [SMALL_STATE(1793)] = 45758, - [SMALL_STATE(1794)] = 45830, - [SMALL_STATE(1795)] = 45884, - [SMALL_STATE(1796)] = 45938, - [SMALL_STATE(1797)] = 45996, - [SMALL_STATE(1798)] = 46050, - [SMALL_STATE(1799)] = 46106, - [SMALL_STATE(1800)] = 46162, - [SMALL_STATE(1801)] = 46218, - [SMALL_STATE(1802)] = 46282, - [SMALL_STATE(1803)] = 46342, - [SMALL_STATE(1804)] = 46402, - [SMALL_STATE(1805)] = 46462, - [SMALL_STATE(1806)] = 46536, - [SMALL_STATE(1807)] = 46606, - [SMALL_STATE(1808)] = 46668, - [SMALL_STATE(1809)] = 46730, - [SMALL_STATE(1810)] = 46838, - [SMALL_STATE(1811)] = 46906, - [SMALL_STATE(1812)] = 47014, - [SMALL_STATE(1813)] = 47130, - [SMALL_STATE(1814)] = 47238, - [SMALL_STATE(1815)] = 47346, - [SMALL_STATE(1816)] = 47398, - [SMALL_STATE(1817)] = 47458, - [SMALL_STATE(1818)] = 47530, - [SMALL_STATE(1819)] = 47602, - [SMALL_STATE(1820)] = 47662, - [SMALL_STATE(1821)] = 47778, - [SMALL_STATE(1822)] = 47886, - [SMALL_STATE(1823)] = 47994, - [SMALL_STATE(1824)] = 48066, - [SMALL_STATE(1825)] = 48182, - [SMALL_STATE(1826)] = 48290, - [SMALL_STATE(1827)] = 48398, - [SMALL_STATE(1828)] = 48506, - [SMALL_STATE(1829)] = 48614, - [SMALL_STATE(1830)] = 48722, - [SMALL_STATE(1831)] = 48804, - [SMALL_STATE(1832)] = 48876, - [SMALL_STATE(1833)] = 48972, - [SMALL_STATE(1834)] = 49070, - [SMALL_STATE(1835)] = 49148, - [SMALL_STATE(1836)] = 49238, - [SMALL_STATE(1837)] = 49330, - [SMALL_STATE(1838)] = 49424, - [SMALL_STATE(1839)] = 49500, - [SMALL_STATE(1840)] = 49578, - [SMALL_STATE(1841)] = 49664, - [SMALL_STATE(1842)] = 49764, - [SMALL_STATE(1843)] = 49872, - [SMALL_STATE(1844)] = 49980, - [SMALL_STATE(1845)] = 50088, - [SMALL_STATE(1846)] = 50196, - [SMALL_STATE(1847)] = 50304, - [SMALL_STATE(1848)] = 50412, - [SMALL_STATE(1849)] = 50520, - [SMALL_STATE(1850)] = 50628, - [SMALL_STATE(1851)] = 50702, - [SMALL_STATE(1852)] = 50754, - [SMALL_STATE(1853)] = 50862, - [SMALL_STATE(1854)] = 50940, - [SMALL_STATE(1855)] = 51016, - [SMALL_STATE(1856)] = 51124, - [SMALL_STATE(1857)] = 51232, - [SMALL_STATE(1858)] = 51283, - [SMALL_STATE(1859)] = 51334, - [SMALL_STATE(1860)] = 51385, - [SMALL_STATE(1861)] = 51436, - [SMALL_STATE(1862)] = 51487, - [SMALL_STATE(1863)] = 51538, - [SMALL_STATE(1864)] = 51589, - [SMALL_STATE(1865)] = 51640, - [SMALL_STATE(1866)] = 51691, - [SMALL_STATE(1867)] = 51742, - [SMALL_STATE(1868)] = 51793, - [SMALL_STATE(1869)] = 51844, - [SMALL_STATE(1870)] = 51895, - [SMALL_STATE(1871)] = 51946, - [SMALL_STATE(1872)] = 51997, - [SMALL_STATE(1873)] = 52048, - [SMALL_STATE(1874)] = 52099, - [SMALL_STATE(1875)] = 52156, - [SMALL_STATE(1876)] = 52207, - [SMALL_STATE(1877)] = 52258, - [SMALL_STATE(1878)] = 52315, - [SMALL_STATE(1879)] = 52366, - [SMALL_STATE(1880)] = 52417, - [SMALL_STATE(1881)] = 52468, - [SMALL_STATE(1882)] = 52519, - [SMALL_STATE(1883)] = 52570, - [SMALL_STATE(1884)] = 52621, - [SMALL_STATE(1885)] = 52672, - [SMALL_STATE(1886)] = 52723, - [SMALL_STATE(1887)] = 52774, - [SMALL_STATE(1888)] = 52825, - [SMALL_STATE(1889)] = 52876, - [SMALL_STATE(1890)] = 52927, - [SMALL_STATE(1891)] = 52978, - [SMALL_STATE(1892)] = 53029, - [SMALL_STATE(1893)] = 53080, - [SMALL_STATE(1894)] = 53131, - [SMALL_STATE(1895)] = 53182, - [SMALL_STATE(1896)] = 53233, - [SMALL_STATE(1897)] = 53284, - [SMALL_STATE(1898)] = 53335, - [SMALL_STATE(1899)] = 53386, - [SMALL_STATE(1900)] = 53437, - [SMALL_STATE(1901)] = 53488, - [SMALL_STATE(1902)] = 53539, - [SMALL_STATE(1903)] = 53590, - [SMALL_STATE(1904)] = 53641, - [SMALL_STATE(1905)] = 53692, - [SMALL_STATE(1906)] = 53749, - [SMALL_STATE(1907)] = 53804, - [SMALL_STATE(1908)] = 53855, - [SMALL_STATE(1909)] = 53966, - [SMALL_STATE(1910)] = 54077, - [SMALL_STATE(1911)] = 54160, - [SMALL_STATE(1912)] = 54271, - [SMALL_STATE(1913)] = 54382, - [SMALL_STATE(1914)] = 54439, - [SMALL_STATE(1915)] = 54550, - [SMALL_STATE(1916)] = 54603, - [SMALL_STATE(1917)] = 54712, - [SMALL_STATE(1918)] = 54775, - [SMALL_STATE(1919)] = 54832, - [SMALL_STATE(1920)] = 54895, - [SMALL_STATE(1921)] = 54946, - [SMALL_STATE(1922)] = 54999, - [SMALL_STATE(1923)] = 55050, - [SMALL_STATE(1924)] = 55103, - [SMALL_STATE(1925)] = 55160, - [SMALL_STATE(1926)] = 55217, - [SMALL_STATE(1927)] = 55268, - [SMALL_STATE(1928)] = 55321, - [SMALL_STATE(1929)] = 55372, - [SMALL_STATE(1930)] = 55455, - [SMALL_STATE(1931)] = 55566, - [SMALL_STATE(1932)] = 55623, - [SMALL_STATE(1933)] = 55686, - [SMALL_STATE(1934)] = 55749, - [SMALL_STATE(1935)] = 55804, - [SMALL_STATE(1936)] = 55863, - [SMALL_STATE(1937)] = 55974, - [SMALL_STATE(1938)] = 56029, - [SMALL_STATE(1939)] = 56086, - [SMALL_STATE(1940)] = 56141, - [SMALL_STATE(1941)] = 56214, - [SMALL_STATE(1942)] = 56283, - [SMALL_STATE(1943)] = 56334, - [SMALL_STATE(1944)] = 56407, - [SMALL_STATE(1945)] = 56476, - [SMALL_STATE(1946)] = 56531, - [SMALL_STATE(1947)] = 56604, - [SMALL_STATE(1948)] = 56687, - [SMALL_STATE(1949)] = 56750, - [SMALL_STATE(1950)] = 56813, - [SMALL_STATE(1951)] = 56876, - [SMALL_STATE(1952)] = 56939, - [SMALL_STATE(1953)] = 56992, - [SMALL_STATE(1954)] = 57043, - [SMALL_STATE(1955)] = 57096, - [SMALL_STATE(1956)] = 57179, - [SMALL_STATE(1957)] = 57244, - [SMALL_STATE(1958)] = 57309, - [SMALL_STATE(1959)] = 57366, - [SMALL_STATE(1960)] = 57423, - [SMALL_STATE(1961)] = 57480, - [SMALL_STATE(1962)] = 57533, - [SMALL_STATE(1963)] = 57584, - [SMALL_STATE(1964)] = 57637, - [SMALL_STATE(1965)] = 57688, - [SMALL_STATE(1966)] = 57761, - [SMALL_STATE(1967)] = 57812, - [SMALL_STATE(1968)] = 57869, - [SMALL_STATE(1969)] = 57926, - [SMALL_STATE(1970)] = 58035, - [SMALL_STATE(1971)] = 58088, - [SMALL_STATE(1972)] = 58157, - [SMALL_STATE(1973)] = 58208, - [SMALL_STATE(1974)] = 58261, - [SMALL_STATE(1975)] = 58320, - [SMALL_STATE(1976)] = 58371, - [SMALL_STATE(1977)] = 58422, - [SMALL_STATE(1978)] = 58477, - [SMALL_STATE(1979)] = 58534, - [SMALL_STATE(1980)] = 58587, - [SMALL_STATE(1981)] = 58638, - [SMALL_STATE(1982)] = 58691, - [SMALL_STATE(1983)] = 58748, - [SMALL_STATE(1984)] = 58805, - [SMALL_STATE(1985)] = 58864, - [SMALL_STATE(1986)] = 58917, - [SMALL_STATE(1987)] = 58990, - [SMALL_STATE(1988)] = 59041, - [SMALL_STATE(1989)] = 59094, - [SMALL_STATE(1990)] = 59151, - [SMALL_STATE(1991)] = 59202, - [SMALL_STATE(1992)] = 59259, - [SMALL_STATE(1993)] = 59342, - [SMALL_STATE(1994)] = 59393, - [SMALL_STATE(1995)] = 59444, - [SMALL_STATE(1996)] = 59495, - [SMALL_STATE(1997)] = 59546, - [SMALL_STATE(1998)] = 59597, - [SMALL_STATE(1999)] = 59648, - [SMALL_STATE(2000)] = 59699, - [SMALL_STATE(2001)] = 59750, - [SMALL_STATE(2002)] = 59801, - [SMALL_STATE(2003)] = 59860, - [SMALL_STATE(2004)] = 59911, - [SMALL_STATE(2005)] = 59962, - [SMALL_STATE(2006)] = 60015, - [SMALL_STATE(2007)] = 60066, - [SMALL_STATE(2008)] = 60117, - [SMALL_STATE(2009)] = 60170, - [SMALL_STATE(2010)] = 60221, - [SMALL_STATE(2011)] = 60278, - [SMALL_STATE(2012)] = 60329, - [SMALL_STATE(2013)] = 60380, - [SMALL_STATE(2014)] = 60453, - [SMALL_STATE(2015)] = 60522, - [SMALL_STATE(2016)] = 60573, - [SMALL_STATE(2017)] = 60646, - [SMALL_STATE(2018)] = 60709, - [SMALL_STATE(2019)] = 60816, - [SMALL_STATE(2020)] = 60867, - [SMALL_STATE(2021)] = 60918, - [SMALL_STATE(2022)] = 60987, - [SMALL_STATE(2023)] = 61040, - [SMALL_STATE(2024)] = 61111, - [SMALL_STATE(2025)] = 61164, - [SMALL_STATE(2026)] = 61247, - [SMALL_STATE(2027)] = 61320, - [SMALL_STATE(2028)] = 61373, - [SMALL_STATE(2029)] = 61424, - [SMALL_STATE(2030)] = 61475, - [SMALL_STATE(2031)] = 61526, - [SMALL_STATE(2032)] = 61633, - [SMALL_STATE(2033)] = 61740, - [SMALL_STATE(2034)] = 61847, - [SMALL_STATE(2035)] = 61954, - [SMALL_STATE(2036)] = 62061, - [SMALL_STATE(2037)] = 62142, - [SMALL_STATE(2038)] = 62213, - [SMALL_STATE(2039)] = 62308, - [SMALL_STATE(2040)] = 62405, - [SMALL_STATE(2041)] = 62482, - [SMALL_STATE(2042)] = 62571, - [SMALL_STATE(2043)] = 62662, - [SMALL_STATE(2044)] = 62755, - [SMALL_STATE(2045)] = 62830, - [SMALL_STATE(2046)] = 62907, - [SMALL_STATE(2047)] = 62992, - [SMALL_STATE(2048)] = 63091, - [SMALL_STATE(2049)] = 63198, - [SMALL_STATE(2050)] = 63305, - [SMALL_STATE(2051)] = 63412, - [SMALL_STATE(2052)] = 63519, - [SMALL_STATE(2053)] = 63626, - [SMALL_STATE(2054)] = 63733, - [SMALL_STATE(2055)] = 63840, - [SMALL_STATE(2056)] = 63947, - [SMALL_STATE(2057)] = 64016, - [SMALL_STATE(2058)] = 64091, - [SMALL_STATE(2059)] = 64198, - [SMALL_STATE(2060)] = 64265, - [SMALL_STATE(2061)] = 64318, - [SMALL_STATE(2062)] = 64368, - [SMALL_STATE(2063)] = 64418, - [SMALL_STATE(2064)] = 64472, - [SMALL_STATE(2065)] = 64526, - [SMALL_STATE(2066)] = 64580, - [SMALL_STATE(2067)] = 64630, - [SMALL_STATE(2068)] = 64684, - [SMALL_STATE(2069)] = 64738, - [SMALL_STATE(2070)] = 64802, - [SMALL_STATE(2071)] = 64856, - [SMALL_STATE(2072)] = 64906, - [SMALL_STATE(2073)] = 65012, - [SMALL_STATE(2074)] = 65076, - [SMALL_STATE(2075)] = 65142, - [SMALL_STATE(2076)] = 65252, - [SMALL_STATE(2077)] = 65306, - [SMALL_STATE(2078)] = 65412, - [SMALL_STATE(2079)] = 65522, - [SMALL_STATE(2080)] = 65572, - [SMALL_STATE(2081)] = 65622, - [SMALL_STATE(2082)] = 65672, - [SMALL_STATE(2083)] = 65736, - [SMALL_STATE(2084)] = 65790, - [SMALL_STATE(2085)] = 65856, - [SMALL_STATE(2086)] = 65930, - [SMALL_STATE(2087)] = 65994, - [SMALL_STATE(2088)] = 66070, - [SMALL_STATE(2089)] = 66126, - [SMALL_STATE(2090)] = 66176, - [SMALL_STATE(2091)] = 66226, - [SMALL_STATE(2092)] = 66300, - [SMALL_STATE(2093)] = 66356, - [SMALL_STATE(2094)] = 66420, - [SMALL_STATE(2095)] = 66496, - [SMALL_STATE(2096)] = 66570, - [SMALL_STATE(2097)] = 66620, - [SMALL_STATE(2098)] = 66696, - [SMALL_STATE(2099)] = 66758, - [SMALL_STATE(2100)] = 66820, - [SMALL_STATE(2101)] = 66874, - [SMALL_STATE(2102)] = 66940, - [SMALL_STATE(2103)] = 67004, - [SMALL_STATE(2104)] = 67062, - [SMALL_STATE(2105)] = 67120, - [SMALL_STATE(2106)] = 67170, - [SMALL_STATE(2107)] = 67232, - [SMALL_STATE(2108)] = 67294, - [SMALL_STATE(2109)] = 67360, - [SMALL_STATE(2110)] = 67420, - [SMALL_STATE(2111)] = 67480, - [SMALL_STATE(2112)] = 67542, - [SMALL_STATE(2113)] = 67604, - [SMALL_STATE(2114)] = 67666, - [SMALL_STATE(2115)] = 67728, - [SMALL_STATE(2116)] = 67794, - [SMALL_STATE(2117)] = 67848, - [SMALL_STATE(2118)] = 67910, - [SMALL_STATE(2119)] = 67972, - [SMALL_STATE(2120)] = 68038, - [SMALL_STATE(2121)] = 68088, - [SMALL_STATE(2122)] = 68138, - [SMALL_STATE(2123)] = 68192, - [SMALL_STATE(2124)] = 68242, - [SMALL_STATE(2125)] = 68292, - [SMALL_STATE(2126)] = 68346, - [SMALL_STATE(2127)] = 68396, - [SMALL_STATE(2128)] = 68446, - [SMALL_STATE(2129)] = 68496, - [SMALL_STATE(2130)] = 68606, - [SMALL_STATE(2131)] = 68656, - [SMALL_STATE(2132)] = 68706, - [SMALL_STATE(2133)] = 68758, - [SMALL_STATE(2134)] = 68808, - [SMALL_STATE(2135)] = 68858, - [SMALL_STATE(2136)] = 68964, - [SMALL_STATE(2137)] = 69070, - [SMALL_STATE(2138)] = 69120, - [SMALL_STATE(2139)] = 69226, - [SMALL_STATE(2140)] = 69276, - [SMALL_STATE(2141)] = 69326, - [SMALL_STATE(2142)] = 69376, - [SMALL_STATE(2143)] = 69482, - [SMALL_STATE(2144)] = 69588, - [SMALL_STATE(2145)] = 69668, - [SMALL_STATE(2146)] = 69778, - [SMALL_STATE(2147)] = 69848, - [SMALL_STATE(2148)] = 69958, - [SMALL_STATE(2149)] = 70052, - [SMALL_STATE(2150)] = 70148, - [SMALL_STATE(2151)] = 70224, - [SMALL_STATE(2152)] = 70312, - [SMALL_STATE(2153)] = 70402, - [SMALL_STATE(2154)] = 70494, - [SMALL_STATE(2155)] = 70568, - [SMALL_STATE(2156)] = 70644, - [SMALL_STATE(2157)] = 70694, - [SMALL_STATE(2158)] = 70778, - [SMALL_STATE(2159)] = 70876, - [SMALL_STATE(2160)] = 70986, - [SMALL_STATE(2161)] = 71092, - [SMALL_STATE(2162)] = 71198, - [SMALL_STATE(2163)] = 71304, - [SMALL_STATE(2164)] = 71410, - [SMALL_STATE(2165)] = 71516, - [SMALL_STATE(2166)] = 71622, - [SMALL_STATE(2167)] = 71728, - [SMALL_STATE(2168)] = 71838, - [SMALL_STATE(2169)] = 71944, - [SMALL_STATE(2170)] = 72008, - [SMALL_STATE(2171)] = 72116, - [SMALL_STATE(2172)] = 72170, - [SMALL_STATE(2173)] = 72220, - [SMALL_STATE(2174)] = 72326, - [SMALL_STATE(2175)] = 72436, - [SMALL_STATE(2176)] = 72486, - [SMALL_STATE(2177)] = 72538, - [SMALL_STATE(2178)] = 72588, - [SMALL_STATE(2179)] = 72698, - [SMALL_STATE(2180)] = 72748, - [SMALL_STATE(2181)] = 72798, - [SMALL_STATE(2182)] = 72848, - [SMALL_STATE(2183)] = 72958, - [SMALL_STATE(2184)] = 73008, - [SMALL_STATE(2185)] = 73058, - [SMALL_STATE(2186)] = 73168, - [SMALL_STATE(2187)] = 73218, - [SMALL_STATE(2188)] = 73268, - [SMALL_STATE(2189)] = 73318, - [SMALL_STATE(2190)] = 73368, - [SMALL_STATE(2191)] = 73478, - [SMALL_STATE(2192)] = 73528, - [SMALL_STATE(2193)] = 73578, - [SMALL_STATE(2194)] = 73628, - [SMALL_STATE(2195)] = 73678, - [SMALL_STATE(2196)] = 73728, - [SMALL_STATE(2197)] = 73838, - [SMALL_STATE(2198)] = 73948, - [SMALL_STATE(2199)] = 74058, - [SMALL_STATE(2200)] = 74168, - [SMALL_STATE(2201)] = 74278, - [SMALL_STATE(2202)] = 74388, - [SMALL_STATE(2203)] = 74498, - [SMALL_STATE(2204)] = 74608, - [SMALL_STATE(2205)] = 74662, - [SMALL_STATE(2206)] = 74716, - [SMALL_STATE(2207)] = 74770, - [SMALL_STATE(2208)] = 74838, - [SMALL_STATE(2209)] = 74912, - [SMALL_STATE(2210)] = 75018, - [SMALL_STATE(2211)] = 75084, - [SMALL_STATE(2212)] = 75138, - [SMALL_STATE(2213)] = 75202, - [SMALL_STATE(2214)] = 75252, - [SMALL_STATE(2215)] = 75306, - [SMALL_STATE(2216)] = 75372, - [SMALL_STATE(2217)] = 75482, - [SMALL_STATE(2218)] = 75546, - [SMALL_STATE(2219)] = 75600, - [SMALL_STATE(2220)] = 75650, - [SMALL_STATE(2221)] = 75760, - [SMALL_STATE(2222)] = 75810, - [SMALL_STATE(2223)] = 75860, - [SMALL_STATE(2224)] = 75910, - [SMALL_STATE(2225)] = 76020, - [SMALL_STATE(2226)] = 76078, - [SMALL_STATE(2227)] = 76136, - [SMALL_STATE(2228)] = 76210, - [SMALL_STATE(2229)] = 76260, - [SMALL_STATE(2230)] = 76336, - [SMALL_STATE(2231)] = 76400, - [SMALL_STATE(2232)] = 76450, - [SMALL_STATE(2233)] = 76502, - [SMALL_STATE(2234)] = 76612, - [SMALL_STATE(2235)] = 76722, - [SMALL_STATE(2236)] = 76788, - [SMALL_STATE(2237)] = 76852, - [SMALL_STATE(2238)] = 76910, - [SMALL_STATE(2239)] = 77020, - [SMALL_STATE(2240)] = 77130, - [SMALL_STATE(2241)] = 77194, - [SMALL_STATE(2242)] = 77304, - [SMALL_STATE(2243)] = 77368, - [SMALL_STATE(2244)] = 77478, - [SMALL_STATE(2245)] = 77588, - [SMALL_STATE(2246)] = 77650, - [SMALL_STATE(2247)] = 77716, - [SMALL_STATE(2248)] = 77780, - [SMALL_STATE(2249)] = 77846, - [SMALL_STATE(2250)] = 77952, - [SMALL_STATE(2251)] = 78058, - [SMALL_STATE(2252)] = 78164, - [SMALL_STATE(2253)] = 78270, - [SMALL_STATE(2254)] = 78376, - [SMALL_STATE(2255)] = 78456, - [SMALL_STATE(2256)] = 78526, - [SMALL_STATE(2257)] = 78620, - [SMALL_STATE(2258)] = 78716, - [SMALL_STATE(2259)] = 78792, - [SMALL_STATE(2260)] = 78880, - [SMALL_STATE(2261)] = 78970, - [SMALL_STATE(2262)] = 79062, - [SMALL_STATE(2263)] = 79136, - [SMALL_STATE(2264)] = 79212, - [SMALL_STATE(2265)] = 79296, - [SMALL_STATE(2266)] = 79394, - [SMALL_STATE(2267)] = 79500, - [SMALL_STATE(2268)] = 79606, - [SMALL_STATE(2269)] = 79712, - [SMALL_STATE(2270)] = 79818, - [SMALL_STATE(2271)] = 79924, - [SMALL_STATE(2272)] = 80030, - [SMALL_STATE(2273)] = 80136, - [SMALL_STATE(2274)] = 80242, - [SMALL_STATE(2275)] = 80292, - [SMALL_STATE(2276)] = 80344, - [SMALL_STATE(2277)] = 80404, - [SMALL_STATE(2278)] = 80454, - [SMALL_STATE(2279)] = 80522, - [SMALL_STATE(2280)] = 80590, - [SMALL_STATE(2281)] = 80664, - [SMALL_STATE(2282)] = 80770, - [SMALL_STATE(2283)] = 80836, - [SMALL_STATE(2284)] = 80886, - [SMALL_STATE(2285)] = 80936, - [SMALL_STATE(2286)] = 80986, - [SMALL_STATE(2287)] = 81038, - [SMALL_STATE(2288)] = 81098, - [SMALL_STATE(2289)] = 81152, - [SMALL_STATE(2290)] = 81216, - [SMALL_STATE(2291)] = 81280, - [SMALL_STATE(2292)] = 81330, - [SMALL_STATE(2293)] = 81404, - [SMALL_STATE(2294)] = 81454, - [SMALL_STATE(2295)] = 81530, - [SMALL_STATE(2296)] = 81596, - [SMALL_STATE(2297)] = 81654, - [SMALL_STATE(2298)] = 81718, - [SMALL_STATE(2299)] = 81768, - [SMALL_STATE(2300)] = 81818, - [SMALL_STATE(2301)] = 81868, - [SMALL_STATE(2302)] = 81918, - [SMALL_STATE(2303)] = 81968, - [SMALL_STATE(2304)] = 82018, - [SMALL_STATE(2305)] = 82128, - [SMALL_STATE(2306)] = 82178, - [SMALL_STATE(2307)] = 82288, - [SMALL_STATE(2308)] = 82398, - [SMALL_STATE(2309)] = 82452, - [SMALL_STATE(2310)] = 82516, - [SMALL_STATE(2311)] = 82570, - [SMALL_STATE(2312)] = 82628, - [SMALL_STATE(2313)] = 82734, - [SMALL_STATE(2314)] = 82800, - [SMALL_STATE(2315)] = 82866, - [SMALL_STATE(2316)] = 82976, - [SMALL_STATE(2317)] = 83086, - [SMALL_STATE(2318)] = 83196, - [SMALL_STATE(2319)] = 83250, - [SMALL_STATE(2320)] = 83302, - [SMALL_STATE(2321)] = 83354, - [SMALL_STATE(2322)] = 83408, - [SMALL_STATE(2323)] = 83462, - [SMALL_STATE(2324)] = 83568, - [SMALL_STATE(2325)] = 83622, - [SMALL_STATE(2326)] = 83674, - [SMALL_STATE(2327)] = 83726, - [SMALL_STATE(2328)] = 83780, - [SMALL_STATE(2329)] = 83832, - [SMALL_STATE(2330)] = 83886, - [SMALL_STATE(2331)] = 83996, - [SMALL_STATE(2332)] = 84062, - [SMALL_STATE(2333)] = 84120, - [SMALL_STATE(2334)] = 84230, - [SMALL_STATE(2335)] = 84304, - [SMALL_STATE(2336)] = 84414, - [SMALL_STATE(2337)] = 84490, - [SMALL_STATE(2338)] = 84576, - [SMALL_STATE(2339)] = 84682, - [SMALL_STATE(2340)] = 84732, - [SMALL_STATE(2341)] = 84784, - [SMALL_STATE(2342)] = 84838, - [SMALL_STATE(2343)] = 84896, - [SMALL_STATE(2344)] = 84962, - [SMALL_STATE(2345)] = 85026, - [SMALL_STATE(2346)] = 85092, - [SMALL_STATE(2347)] = 85202, - [SMALL_STATE(2348)] = 85312, - [SMALL_STATE(2349)] = 85422, - [SMALL_STATE(2350)] = 85532, - [SMALL_STATE(2351)] = 85584, - [SMALL_STATE(2352)] = 85694, - [SMALL_STATE(2353)] = 85804, - [SMALL_STATE(2354)] = 85914, - [SMALL_STATE(2355)] = 85972, - [SMALL_STATE(2356)] = 86022, - [SMALL_STATE(2357)] = 86132, - [SMALL_STATE(2358)] = 86186, - [SMALL_STATE(2359)] = 86250, - [SMALL_STATE(2360)] = 86305, - [SMALL_STATE(2361)] = 86392, - [SMALL_STATE(2362)] = 86481, - [SMALL_STATE(2363)] = 86572, - [SMALL_STATE(2364)] = 86645, - [SMALL_STATE(2365)] = 86720, - [SMALL_STATE(2366)] = 86803, - [SMALL_STATE(2367)] = 86900, - [SMALL_STATE(2368)] = 87005, - [SMALL_STATE(2369)] = 87110, - [SMALL_STATE(2370)] = 87215, - [SMALL_STATE(2371)] = 87320, - [SMALL_STATE(2372)] = 87425, - [SMALL_STATE(2373)] = 87530, - [SMALL_STATE(2374)] = 87635, - [SMALL_STATE(2375)] = 87740, - [SMALL_STATE(2376)] = 87817, - [SMALL_STATE(2377)] = 87874, - [SMALL_STATE(2378)] = 87925, - [SMALL_STATE(2379)] = 87994, - [SMALL_STATE(2380)] = 88101, - [SMALL_STATE(2381)] = 88168, - [SMALL_STATE(2382)] = 88241, - [SMALL_STATE(2383)] = 88300, - [SMALL_STATE(2384)] = 88405, - [SMALL_STATE(2385)] = 88470, - [SMALL_STATE(2386)] = 88523, - [SMALL_STATE(2387)] = 88598, - [SMALL_STATE(2388)] = 88703, - [SMALL_STATE(2389)] = 88760, - [SMALL_STATE(2390)] = 88813, - [SMALL_STATE(2391)] = 88872, - [SMALL_STATE(2392)] = 88929, - [SMALL_STATE(2393)] = 88988, - [SMALL_STATE(2394)] = 89047, - [SMALL_STATE(2395)] = 89102, - [SMALL_STATE(2396)] = 89161, - [SMALL_STATE(2397)] = 89250, - [SMALL_STATE(2398)] = 89309, - [SMALL_STATE(2399)] = 89368, - [SMALL_STATE(2400)] = 89427, - [SMALL_STATE(2401)] = 89496, - [SMALL_STATE(2402)] = 89555, - [SMALL_STATE(2403)] = 89610, - [SMALL_STATE(2404)] = 89669, - [SMALL_STATE(2405)] = 89724, - [SMALL_STATE(2406)] = 89793, - [SMALL_STATE(2407)] = 89852, - [SMALL_STATE(2408)] = 89911, - [SMALL_STATE(2409)] = 89966, - [SMALL_STATE(2410)] = 90025, - [SMALL_STATE(2411)] = 90084, - [SMALL_STATE(2412)] = 90135, - [SMALL_STATE(2413)] = 90186, - [SMALL_STATE(2414)] = 90241, - [SMALL_STATE(2415)] = 90300, - [SMALL_STATE(2416)] = 90359, - [SMALL_STATE(2417)] = 90466, - [SMALL_STATE(2418)] = 90525, - [SMALL_STATE(2419)] = 90584, - [SMALL_STATE(2420)] = 90639, - [SMALL_STATE(2421)] = 90698, - [SMALL_STATE(2422)] = 90757, - [SMALL_STATE(2423)] = 90852, - [SMALL_STATE(2424)] = 90927, - [SMALL_STATE(2425)] = 91032, - [SMALL_STATE(2426)] = 91101, - [SMALL_STATE(2427)] = 91170, - [SMALL_STATE(2428)] = 91251, - [SMALL_STATE(2429)] = 91310, - [SMALL_STATE(2430)] = 91415, - [SMALL_STATE(2431)] = 91466, - [SMALL_STATE(2432)] = 91521, - [SMALL_STATE(2433)] = 91626, - [SMALL_STATE(2434)] = 91731, - [SMALL_STATE(2435)] = 91836, - [SMALL_STATE(2436)] = 91941, - [SMALL_STATE(2437)] = 92046, - [SMALL_STATE(2438)] = 92151, - [SMALL_STATE(2439)] = 92256, - [SMALL_STATE(2440)] = 92335, - [SMALL_STATE(2441)] = 92404, - [SMALL_STATE(2442)] = 92497, - [SMALL_STATE(2443)] = 92592, - [SMALL_STATE(2444)] = 92667, - [SMALL_STATE(2445)] = 92754, - [SMALL_STATE(2446)] = 92843, - [SMALL_STATE(2447)] = 92934, - [SMALL_STATE(2448)] = 93007, - [SMALL_STATE(2449)] = 93082, - [SMALL_STATE(2450)] = 93165, - [SMALL_STATE(2451)] = 93262, - [SMALL_STATE(2452)] = 93367, - [SMALL_STATE(2453)] = 93472, - [SMALL_STATE(2454)] = 93577, - [SMALL_STATE(2455)] = 93682, - [SMALL_STATE(2456)] = 93787, - [SMALL_STATE(2457)] = 93892, - [SMALL_STATE(2458)] = 93997, - [SMALL_STATE(2459)] = 94102, - [SMALL_STATE(2460)] = 94159, - [SMALL_STATE(2461)] = 94210, - [SMALL_STATE(2462)] = 94269, - [SMALL_STATE(2463)] = 94320, - [SMALL_STATE(2464)] = 94425, - [SMALL_STATE(2465)] = 94484, - [SMALL_STATE(2466)] = 94551, - [SMALL_STATE(2467)] = 94624, - [SMALL_STATE(2468)] = 94729, - [SMALL_STATE(2469)] = 94794, - [SMALL_STATE(2470)] = 94899, - [SMALL_STATE(2471)] = 95004, - [SMALL_STATE(2472)] = 95109, - [SMALL_STATE(2473)] = 95166, - [SMALL_STATE(2474)] = 95223, - [SMALL_STATE(2475)] = 95328, - [SMALL_STATE(2476)] = 95379, - [SMALL_STATE(2477)] = 95436, - [SMALL_STATE(2478)] = 95541, - [SMALL_STATE(2479)] = 95620, - [SMALL_STATE(2480)] = 95689, - [SMALL_STATE(2481)] = 95782, - [SMALL_STATE(2482)] = 95851, - [SMALL_STATE(2483)] = 95901, - [SMALL_STATE(2484)] = 95951, - [SMALL_STATE(2485)] = 96057, - [SMALL_STATE(2486)] = 96107, - [SMALL_STATE(2487)] = 96171, - [SMALL_STATE(2488)] = 96231, - [SMALL_STATE(2489)] = 96281, - [SMALL_STATE(2490)] = 96335, - [SMALL_STATE(2491)] = 96389, - [SMALL_STATE(2492)] = 96443, - [SMALL_STATE(2493)] = 96497, - [SMALL_STATE(2494)] = 96545, - [SMALL_STATE(2495)] = 96599, - [SMALL_STATE(2496)] = 96647, - [SMALL_STATE(2497)] = 96701, - [SMALL_STATE(2498)] = 96751, - [SMALL_STATE(2499)] = 96799, - [SMALL_STATE(2500)] = 96849, - [SMALL_STATE(2501)] = 96903, - [SMALL_STATE(2502)] = 96957, - [SMALL_STATE(2503)] = 97011, - [SMALL_STATE(2504)] = 97065, - [SMALL_STATE(2505)] = 97169, - [SMALL_STATE(2506)] = 97273, - [SMALL_STATE(2507)] = 97377, - [SMALL_STATE(2508)] = 97481, - [SMALL_STATE(2509)] = 97585, - [SMALL_STATE(2510)] = 97689, - [SMALL_STATE(2511)] = 97793, - [SMALL_STATE(2512)] = 97871, - [SMALL_STATE(2513)] = 97939, - [SMALL_STATE(2514)] = 98031, - [SMALL_STATE(2515)] = 98125, - [SMALL_STATE(2516)] = 98199, - [SMALL_STATE(2517)] = 98285, - [SMALL_STATE(2518)] = 98373, - [SMALL_STATE(2519)] = 98463, - [SMALL_STATE(2520)] = 98535, - [SMALL_STATE(2521)] = 98609, - [SMALL_STATE(2522)] = 98691, - [SMALL_STATE(2523)] = 98787, - [SMALL_STATE(2524)] = 98891, - [SMALL_STATE(2525)] = 98995, - [SMALL_STATE(2526)] = 99099, - [SMALL_STATE(2527)] = 99203, - [SMALL_STATE(2528)] = 99307, - [SMALL_STATE(2529)] = 99411, - [SMALL_STATE(2530)] = 99515, - [SMALL_STATE(2531)] = 99619, - [SMALL_STATE(2532)] = 99691, - [SMALL_STATE(2533)] = 99759, - [SMALL_STATE(2534)] = 99829, - [SMALL_STATE(2535)] = 99895, - [SMALL_STATE(2536)] = 99963, - [SMALL_STATE(2537)] = 100013, - [SMALL_STATE(2538)] = 100063, - [SMALL_STATE(2539)] = 100113, - [SMALL_STATE(2540)] = 100169, - [SMALL_STATE(2541)] = 100273, - [SMALL_STATE(2542)] = 100337, - [SMALL_STATE(2543)] = 100397, - [SMALL_STATE(2544)] = 100461, - [SMALL_STATE(2545)] = 100521, - [SMALL_STATE(2546)] = 100587, - [SMALL_STATE(2547)] = 100659, - [SMALL_STATE(2548)] = 100763, - [SMALL_STATE(2549)] = 100827, - [SMALL_STATE(2550)] = 100931, - [SMALL_STATE(2551)] = 101035, - [SMALL_STATE(2552)] = 101139, - [SMALL_STATE(2553)] = 101189, - [SMALL_STATE(2554)] = 101239, - [SMALL_STATE(2555)] = 101343, - [SMALL_STATE(2556)] = 101393, - [SMALL_STATE(2557)] = 101497, - [SMALL_STATE(2558)] = 101561, - [SMALL_STATE(2559)] = 101621, - [SMALL_STATE(2560)] = 101685, - [SMALL_STATE(2561)] = 101745, - [SMALL_STATE(2562)] = 101849, - [SMALL_STATE(2563)] = 101903, - [SMALL_STATE(2564)] = 102007, - [SMALL_STATE(2565)] = 102111, - [SMALL_STATE(2566)] = 102215, - [SMALL_STATE(2567)] = 102274, - [SMALL_STATE(2568)] = 102331, - [SMALL_STATE(2569)] = 102380, - [SMALL_STATE(2570)] = 102437, - [SMALL_STATE(2571)] = 102494, - [SMALL_STATE(2572)] = 102551, - [SMALL_STATE(2573)] = 102608, - [SMALL_STATE(2574)] = 102665, - [SMALL_STATE(2575)] = 102722, - [SMALL_STATE(2576)] = 102781, - [SMALL_STATE(2577)] = 102840, - [SMALL_STATE(2578)] = 102899, - [SMALL_STATE(2579)] = 102956, - [SMALL_STATE(2580)] = 103019, - [SMALL_STATE(2581)] = 103078, - [SMALL_STATE(2582)] = 103143, - [SMALL_STATE(2583)] = 103206, - [SMALL_STATE(2584)] = 103263, - [SMALL_STATE(2585)] = 103316, - [SMALL_STATE(2586)] = 103375, - [SMALL_STATE(2587)] = 103432, - [SMALL_STATE(2588)] = 103489, - [SMALL_STATE(2589)] = 103548, - [SMALL_STATE(2590)] = 103607, - [SMALL_STATE(2591)] = 103664, - [SMALL_STATE(2592)] = 103721, - [SMALL_STATE(2593)] = 103822, - [SMALL_STATE(2594)] = 103879, - [SMALL_STATE(2595)] = 103938, - [SMALL_STATE(2596)] = 103997, - [SMALL_STATE(2597)] = 104098, - [SMALL_STATE(2598)] = 104157, - [SMALL_STATE(2599)] = 104216, - [SMALL_STATE(2600)] = 104273, - [SMALL_STATE(2601)] = 104330, - [SMALL_STATE(2602)] = 104379, - [SMALL_STATE(2603)] = 104428, - [SMALL_STATE(2604)] = 104489, - [SMALL_STATE(2605)] = 104535, - [SMALL_STATE(2606)] = 104585, - [SMALL_STATE(2607)] = 104631, - [SMALL_STATE(2608)] = 104677, - [SMALL_STATE(2609)] = 104725, - [SMALL_STATE(2610)] = 104783, - [SMALL_STATE(2611)] = 104829, - [SMALL_STATE(2612)] = 104875, - [SMALL_STATE(2613)] = 104921, - [SMALL_STATE(2614)] = 104967, - [SMALL_STATE(2615)] = 105013, - [SMALL_STATE(2616)] = 105059, - [SMALL_STATE(2617)] = 105105, - [SMALL_STATE(2618)] = 105151, - [SMALL_STATE(2619)] = 105197, - [SMALL_STATE(2620)] = 105245, - [SMALL_STATE(2621)] = 105291, - [SMALL_STATE(2622)] = 105337, - [SMALL_STATE(2623)] = 105383, - [SMALL_STATE(2624)] = 105429, - [SMALL_STATE(2625)] = 105475, - [SMALL_STATE(2626)] = 105521, - [SMALL_STATE(2627)] = 105567, - [SMALL_STATE(2628)] = 105615, - [SMALL_STATE(2629)] = 105661, - [SMALL_STATE(2630)] = 105707, - [SMALL_STATE(2631)] = 105753, - [SMALL_STATE(2632)] = 105799, - [SMALL_STATE(2633)] = 105845, - [SMALL_STATE(2634)] = 105893, - [SMALL_STATE(2635)] = 105939, - [SMALL_STATE(2636)] = 105987, - [SMALL_STATE(2637)] = 106033, - [SMALL_STATE(2638)] = 106079, - [SMALL_STATE(2639)] = 106127, - [SMALL_STATE(2640)] = 106177, - [SMALL_STATE(2641)] = 106223, - [SMALL_STATE(2642)] = 106269, - [SMALL_STATE(2643)] = 106315, - [SMALL_STATE(2644)] = 106363, - [SMALL_STATE(2645)] = 106409, - [SMALL_STATE(2646)] = 106455, - [SMALL_STATE(2647)] = 106503, - [SMALL_STATE(2648)] = 106549, - [SMALL_STATE(2649)] = 106597, - [SMALL_STATE(2650)] = 106643, - [SMALL_STATE(2651)] = 106689, - [SMALL_STATE(2652)] = 106735, - [SMALL_STATE(2653)] = 106781, - [SMALL_STATE(2654)] = 106827, - [SMALL_STATE(2655)] = 106873, - [SMALL_STATE(2656)] = 106919, - [SMALL_STATE(2657)] = 106965, - [SMALL_STATE(2658)] = 107015, - [SMALL_STATE(2659)] = 107061, - [SMALL_STATE(2660)] = 107117, - [SMALL_STATE(2661)] = 107163, - [SMALL_STATE(2662)] = 107211, - [SMALL_STATE(2663)] = 107257, - [SMALL_STATE(2664)] = 107305, - [SMALL_STATE(2665)] = 107351, - [SMALL_STATE(2666)] = 107399, - [SMALL_STATE(2667)] = 107447, - [SMALL_STATE(2668)] = 107493, - [SMALL_STATE(2669)] = 107539, - [SMALL_STATE(2670)] = 107588, - [SMALL_STATE(2671)] = 107655, - [SMALL_STATE(2672)] = 107700, - [SMALL_STATE(2673)] = 107745, - [SMALL_STATE(2674)] = 107790, - [SMALL_STATE(2675)] = 107835, - [SMALL_STATE(2676)] = 107880, - [SMALL_STATE(2677)] = 107931, - [SMALL_STATE(2678)] = 107976, - [SMALL_STATE(2679)] = 108029, - [SMALL_STATE(2680)] = 108074, - [SMALL_STATE(2681)] = 108127, - [SMALL_STATE(2682)] = 108178, - [SMALL_STATE(2683)] = 108250, - [SMALL_STATE(2684)] = 108298, - [SMALL_STATE(2685)] = 108370, - [SMALL_STATE(2686)] = 108418, - [SMALL_STATE(2687)] = 108476, - [SMALL_STATE(2688)] = 108534, - [SMALL_STATE(2689)] = 108592, - [SMALL_STATE(2690)] = 108652, - [SMALL_STATE(2691)] = 108712, - [SMALL_STATE(2692)] = 108768, - [SMALL_STATE(2693)] = 108828, - [SMALL_STATE(2694)] = 108886, - [SMALL_STATE(2695)] = 108949, - [SMALL_STATE(2696)] = 109002, - [SMALL_STATE(2697)] = 109055, - [SMALL_STATE(2698)] = 109108, - [SMALL_STATE(2699)] = 109161, - [SMALL_STATE(2700)] = 109214, - [SMALL_STATE(2701)] = 109267, - [SMALL_STATE(2702)] = 109320, - [SMALL_STATE(2703)] = 109383, - [SMALL_STATE(2704)] = 109436, - [SMALL_STATE(2705)] = 109489, - [SMALL_STATE(2706)] = 109538, - [SMALL_STATE(2707)] = 109591, - [SMALL_STATE(2708)] = 109644, - [SMALL_STATE(2709)] = 109697, - [SMALL_STATE(2710)] = 109750, - [SMALL_STATE(2711)] = 109803, - [SMALL_STATE(2712)] = 109856, - [SMALL_STATE(2713)] = 109909, - [SMALL_STATE(2714)] = 109962, - [SMALL_STATE(2715)] = 110015, - [SMALL_STATE(2716)] = 110068, - [SMALL_STATE(2717)] = 110121, - [SMALL_STATE(2718)] = 110174, - [SMALL_STATE(2719)] = 110227, - [SMALL_STATE(2720)] = 110280, - [SMALL_STATE(2721)] = 110333, - [SMALL_STATE(2722)] = 110386, + [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(1250)] = 7031, + [SMALL_STATE(1251)] = 7109, + [SMALL_STATE(1252)] = 7187, + [SMALL_STATE(1253)] = 7273, + [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(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(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(1319)] = 12227, + [SMALL_STATE(1320)] = 12315, + [SMALL_STATE(1321)] = 12381, + [SMALL_STATE(1322)] = 12458, + [SMALL_STATE(1323)] = 12527, + [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(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(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(1365)] = 15841, + [SMALL_STATE(1366)] = 15909, + [SMALL_STATE(1367)] = 15985, + [SMALL_STATE(1368)] = 16055, + [SMALL_STATE(1369)] = 16124, + [SMALL_STATE(1370)] = 16193, + [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(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(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)] = 22235, + [SMALL_STATE(1442)] = 22346, + [SMALL_STATE(1443)] = 22457, + [SMALL_STATE(1444)] = 22568, + [SMALL_STATE(1445)] = 22679, + [SMALL_STATE(1446)] = 22790, + [SMALL_STATE(1447)] = 22909, + [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(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)] = 24865, + [SMALL_STATE(1467)] = 24932, + [SMALL_STATE(1468)] = 24989, + [SMALL_STATE(1469)] = 25056, + [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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(2677)] = 107919, + [SMALL_STATE(2678)] = 107977, + [SMALL_STATE(2679)] = 108033, + [SMALL_STATE(2680)] = 108091, + [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(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(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)] = 110492, - [SMALL_STATE(2725)] = 110556, - [SMALL_STATE(2726)] = 110610, - [SMALL_STATE(2727)] = 110664, - [SMALL_STATE(2728)] = 110728, - [SMALL_STATE(2729)] = 110788, - [SMALL_STATE(2730)] = 110842, - [SMALL_STATE(2731)] = 110922, - [SMALL_STATE(2732)] = 110976, - [SMALL_STATE(2733)] = 111056, - [SMALL_STATE(2734)] = 111110, - [SMALL_STATE(2735)] = 111164, - [SMALL_STATE(2736)] = 111218, - [SMALL_STATE(2737)] = 111298, - [SMALL_STATE(2738)] = 111378, - [SMALL_STATE(2739)] = 111442, - [SMALL_STATE(2740)] = 111496, - [SMALL_STATE(2741)] = 111576, - [SMALL_STATE(2742)] = 111630, - [SMALL_STATE(2743)] = 111710, - [SMALL_STATE(2744)] = 111764, - [SMALL_STATE(2745)] = 111824, - [SMALL_STATE(2746)] = 111904, - [SMALL_STATE(2747)] = 111961, - [SMALL_STATE(2748)] = 112012, - [SMALL_STATE(2749)] = 112053, - [SMALL_STATE(2750)] = 112106, - [SMALL_STATE(2751)] = 112163, - [SMALL_STATE(2752)] = 112220, - [SMALL_STATE(2753)] = 112261, - [SMALL_STATE(2754)] = 112318, - [SMALL_STATE(2755)] = 112375, - [SMALL_STATE(2756)] = 112432, - [SMALL_STATE(2757)] = 112489, - [SMALL_STATE(2758)] = 112546, - [SMALL_STATE(2759)] = 112587, - [SMALL_STATE(2760)] = 112644, - [SMALL_STATE(2761)] = 112697, - [SMALL_STATE(2762)] = 112754, - [SMALL_STATE(2763)] = 112811, - [SMALL_STATE(2764)] = 112852, - [SMALL_STATE(2765)] = 112909, - [SMALL_STATE(2766)] = 112952, - [SMALL_STATE(2767)] = 112993, - [SMALL_STATE(2768)] = 113050, - [SMALL_STATE(2769)] = 113107, - [SMALL_STATE(2770)] = 113164, - [SMALL_STATE(2771)] = 113221, - [SMALL_STATE(2772)] = 113269, - [SMALL_STATE(2773)] = 113317, - [SMALL_STATE(2774)] = 113365, - [SMALL_STATE(2775)] = 113413, - [SMALL_STATE(2776)] = 113463, - [SMALL_STATE(2777)] = 113511, - [SMALL_STATE(2778)] = 113561, - [SMALL_STATE(2779)] = 113609, - [SMALL_STATE(2780)] = 113657, - [SMALL_STATE(2781)] = 113705, - [SMALL_STATE(2782)] = 113753, - [SMALL_STATE(2783)] = 113801, - [SMALL_STATE(2784)] = 113851, - [SMALL_STATE(2785)] = 113899, - [SMALL_STATE(2786)] = 113947, - [SMALL_STATE(2787)] = 113995, - [SMALL_STATE(2788)] = 114045, - [SMALL_STATE(2789)] = 114093, - [SMALL_STATE(2790)] = 114141, - [SMALL_STATE(2791)] = 114191, - [SMALL_STATE(2792)] = 114241, - [SMALL_STATE(2793)] = 114289, - [SMALL_STATE(2794)] = 114337, - [SMALL_STATE(2795)] = 114385, - [SMALL_STATE(2796)] = 114433, - [SMALL_STATE(2797)] = 114483, - [SMALL_STATE(2798)] = 114531, - [SMALL_STATE(2799)] = 114579, - [SMALL_STATE(2800)] = 114627, - [SMALL_STATE(2801)] = 114675, - [SMALL_STATE(2802)] = 114723, - [SMALL_STATE(2803)] = 114771, - [SMALL_STATE(2804)] = 114819, - [SMALL_STATE(2805)] = 114867, - [SMALL_STATE(2806)] = 114917, - [SMALL_STATE(2807)] = 114965, - [SMALL_STATE(2808)] = 115013, - [SMALL_STATE(2809)] = 115061, - [SMALL_STATE(2810)] = 115111, - [SMALL_STATE(2811)] = 115159, - [SMALL_STATE(2812)] = 115209, - [SMALL_STATE(2813)] = 115257, - [SMALL_STATE(2814)] = 115305, - [SMALL_STATE(2815)] = 115355, - [SMALL_STATE(2816)] = 115403, - [SMALL_STATE(2817)] = 115453, - [SMALL_STATE(2818)] = 115501, - [SMALL_STATE(2819)] = 115551, - [SMALL_STATE(2820)] = 115599, - [SMALL_STATE(2821)] = 115647, - [SMALL_STATE(2822)] = 115695, - [SMALL_STATE(2823)] = 115743, - [SMALL_STATE(2824)] = 115791, - [SMALL_STATE(2825)] = 115839, - [SMALL_STATE(2826)] = 115887, - [SMALL_STATE(2827)] = 115935, - [SMALL_STATE(2828)] = 115985, - [SMALL_STATE(2829)] = 116033, - [SMALL_STATE(2830)] = 116081, - [SMALL_STATE(2831)] = 116129, - [SMALL_STATE(2832)] = 116177, - [SMALL_STATE(2833)] = 116212, - [SMALL_STATE(2834)] = 116253, - [SMALL_STATE(2835)] = 116294, - [SMALL_STATE(2836)] = 116335, - [SMALL_STATE(2837)] = 116363, - [SMALL_STATE(2838)] = 116391, - [SMALL_STATE(2839)] = 116419, - [SMALL_STATE(2840)] = 116447, - [SMALL_STATE(2841)] = 116475, - [SMALL_STATE(2842)] = 116503, - [SMALL_STATE(2843)] = 116531, - [SMALL_STATE(2844)] = 116559, - [SMALL_STATE(2845)] = 116587, - [SMALL_STATE(2846)] = 116615, - [SMALL_STATE(2847)] = 116643, - [SMALL_STATE(2848)] = 116671, - [SMALL_STATE(2849)] = 116699, - [SMALL_STATE(2850)] = 116727, - [SMALL_STATE(2851)] = 116755, - [SMALL_STATE(2852)] = 116783, - [SMALL_STATE(2853)] = 116811, - [SMALL_STATE(2854)] = 116839, - [SMALL_STATE(2855)] = 116867, - [SMALL_STATE(2856)] = 116895, - [SMALL_STATE(2857)] = 116923, - [SMALL_STATE(2858)] = 116951, - [SMALL_STATE(2859)] = 116979, - [SMALL_STATE(2860)] = 117007, - [SMALL_STATE(2861)] = 117035, - [SMALL_STATE(2862)] = 117063, - [SMALL_STATE(2863)] = 117091, - [SMALL_STATE(2864)] = 117119, - [SMALL_STATE(2865)] = 117147, - [SMALL_STATE(2866)] = 117175, - [SMALL_STATE(2867)] = 117203, - [SMALL_STATE(2868)] = 117231, - [SMALL_STATE(2869)] = 117259, - [SMALL_STATE(2870)] = 117287, - [SMALL_STATE(2871)] = 117320, - [SMALL_STATE(2872)] = 117347, - [SMALL_STATE(2873)] = 117404, - [SMALL_STATE(2874)] = 117461, - [SMALL_STATE(2875)] = 117488, - [SMALL_STATE(2876)] = 117514, - [SMALL_STATE(2877)] = 117552, - [SMALL_STATE(2878)] = 117578, - [SMALL_STATE(2879)] = 117604, - [SMALL_STATE(2880)] = 117632, - [SMALL_STATE(2881)] = 117658, - [SMALL_STATE(2882)] = 117684, - [SMALL_STATE(2883)] = 117722, - [SMALL_STATE(2884)] = 117752, - [SMALL_STATE(2885)] = 117782, - [SMALL_STATE(2886)] = 117810, - [SMALL_STATE(2887)] = 117836, - [SMALL_STATE(2888)] = 117866, - [SMALL_STATE(2889)] = 117892, - [SMALL_STATE(2890)] = 117926, - [SMALL_STATE(2891)] = 117964, - [SMALL_STATE(2892)] = 117990, - [SMALL_STATE(2893)] = 118040, - [SMALL_STATE(2894)] = 118066, - [SMALL_STATE(2895)] = 118091, - [SMALL_STATE(2896)] = 118116, - [SMALL_STATE(2897)] = 118141, - [SMALL_STATE(2898)] = 118166, - [SMALL_STATE(2899)] = 118197, - [SMALL_STATE(2900)] = 118222, - [SMALL_STATE(2901)] = 118247, - [SMALL_STATE(2902)] = 118274, - [SMALL_STATE(2903)] = 118299, - [SMALL_STATE(2904)] = 118323, - [SMALL_STATE(2905)] = 118347, - [SMALL_STATE(2906)] = 118371, - [SMALL_STATE(2907)] = 118395, - [SMALL_STATE(2908)] = 118419, - [SMALL_STATE(2909)] = 118443, - [SMALL_STATE(2910)] = 118467, - [SMALL_STATE(2911)] = 118491, - [SMALL_STATE(2912)] = 118515, - [SMALL_STATE(2913)] = 118539, - [SMALL_STATE(2914)] = 118563, - [SMALL_STATE(2915)] = 118587, - [SMALL_STATE(2916)] = 118611, - [SMALL_STATE(2917)] = 118635, - [SMALL_STATE(2918)] = 118659, - [SMALL_STATE(2919)] = 118683, - [SMALL_STATE(2920)] = 118707, - [SMALL_STATE(2921)] = 118735, - [SMALL_STATE(2922)] = 118761, - [SMALL_STATE(2923)] = 118785, - [SMALL_STATE(2924)] = 118809, - [SMALL_STATE(2925)] = 118835, - [SMALL_STATE(2926)] = 118857, - [SMALL_STATE(2927)] = 118881, - [SMALL_STATE(2928)] = 118905, - [SMALL_STATE(2929)] = 118929, - [SMALL_STATE(2930)] = 118953, - [SMALL_STATE(2931)] = 118977, - [SMALL_STATE(2932)] = 119001, - [SMALL_STATE(2933)] = 119025, - [SMALL_STATE(2934)] = 119049, - [SMALL_STATE(2935)] = 119073, - [SMALL_STATE(2936)] = 119097, - [SMALL_STATE(2937)] = 119121, - [SMALL_STATE(2938)] = 119145, - [SMALL_STATE(2939)] = 119169, - [SMALL_STATE(2940)] = 119193, - [SMALL_STATE(2941)] = 119217, - [SMALL_STATE(2942)] = 119241, - [SMALL_STATE(2943)] = 119265, - [SMALL_STATE(2944)] = 119289, - [SMALL_STATE(2945)] = 119313, - [SMALL_STATE(2946)] = 119337, - [SMALL_STATE(2947)] = 119361, - [SMALL_STATE(2948)] = 119393, - [SMALL_STATE(2949)] = 119417, - [SMALL_STATE(2950)] = 119439, - [SMALL_STATE(2951)] = 119471, - [SMALL_STATE(2952)] = 119505, - [SMALL_STATE(2953)] = 119539, - [SMALL_STATE(2954)] = 119573, - [SMALL_STATE(2955)] = 119597, - [SMALL_STATE(2956)] = 119621, - [SMALL_STATE(2957)] = 119645, - [SMALL_STATE(2958)] = 119667, - [SMALL_STATE(2959)] = 119691, - [SMALL_STATE(2960)] = 119715, - [SMALL_STATE(2961)] = 119739, - [SMALL_STATE(2962)] = 119763, - [SMALL_STATE(2963)] = 119787, - [SMALL_STATE(2964)] = 119811, - [SMALL_STATE(2965)] = 119835, - [SMALL_STATE(2966)] = 119859, - [SMALL_STATE(2967)] = 119891, - [SMALL_STATE(2968)] = 119925, - [SMALL_STATE(2969)] = 119959, - [SMALL_STATE(2970)] = 119993, - [SMALL_STATE(2971)] = 120017, - [SMALL_STATE(2972)] = 120039, - [SMALL_STATE(2973)] = 120071, - [SMALL_STATE(2974)] = 120105, - [SMALL_STATE(2975)] = 120139, - [SMALL_STATE(2976)] = 120173, - [SMALL_STATE(2977)] = 120195, - [SMALL_STATE(2978)] = 120219, - [SMALL_STATE(2979)] = 120251, - [SMALL_STATE(2980)] = 120285, - [SMALL_STATE(2981)] = 120319, - [SMALL_STATE(2982)] = 120353, - [SMALL_STATE(2983)] = 120387, - [SMALL_STATE(2984)] = 120409, - [SMALL_STATE(2985)] = 120443, - [SMALL_STATE(2986)] = 120477, - [SMALL_STATE(2987)] = 120499, - [SMALL_STATE(2988)] = 120523, - [SMALL_STATE(2989)] = 120547, - [SMALL_STATE(2990)] = 120571, - [SMALL_STATE(2991)] = 120595, - [SMALL_STATE(2992)] = 120617, - [SMALL_STATE(2993)] = 120641, - [SMALL_STATE(2994)] = 120673, - [SMALL_STATE(2995)] = 120695, - [SMALL_STATE(2996)] = 120729, - [SMALL_STATE(2997)] = 120753, - [SMALL_STATE(2998)] = 120787, - [SMALL_STATE(2999)] = 120821, - [SMALL_STATE(3000)] = 120845, - [SMALL_STATE(3001)] = 120869, - [SMALL_STATE(3002)] = 120893, - [SMALL_STATE(3003)] = 120917, - [SMALL_STATE(3004)] = 120941, - [SMALL_STATE(3005)] = 120980, - [SMALL_STATE(3006)] = 121023, - [SMALL_STATE(3007)] = 121052, - [SMALL_STATE(3008)] = 121077, - [SMALL_STATE(3009)] = 121106, - [SMALL_STATE(3010)] = 121149, - [SMALL_STATE(3011)] = 121192, - [SMALL_STATE(3012)] = 121231, - [SMALL_STATE(3013)] = 121274, - [SMALL_STATE(3014)] = 121317, - [SMALL_STATE(3015)] = 121342, - [SMALL_STATE(3016)] = 121377, - [SMALL_STATE(3017)] = 121420, - [SMALL_STATE(3018)] = 121463, - [SMALL_STATE(3019)] = 121506, - [SMALL_STATE(3020)] = 121535, - [SMALL_STATE(3021)] = 121578, - [SMALL_STATE(3022)] = 121623, - [SMALL_STATE(3023)] = 121666, - [SMALL_STATE(3024)] = 121709, - [SMALL_STATE(3025)] = 121748, - [SMALL_STATE(3026)] = 121787, - [SMALL_STATE(3027)] = 121812, - [SMALL_STATE(3028)] = 121855, - [SMALL_STATE(3029)] = 121898, - [SMALL_STATE(3030)] = 121927, - [SMALL_STATE(3031)] = 121970, - [SMALL_STATE(3032)] = 122013, - [SMALL_STATE(3033)] = 122052, - [SMALL_STATE(3034)] = 122095, - [SMALL_STATE(3035)] = 122138, - [SMALL_STATE(3036)] = 122167, - [SMALL_STATE(3037)] = 122196, - [SMALL_STATE(3038)] = 122239, - [SMALL_STATE(3039)] = 122282, - [SMALL_STATE(3040)] = 122325, - [SMALL_STATE(3041)] = 122368, - [SMALL_STATE(3042)] = 122397, - [SMALL_STATE(3043)] = 122426, - [SMALL_STATE(3044)] = 122469, - [SMALL_STATE(3045)] = 122498, - [SMALL_STATE(3046)] = 122541, - [SMALL_STATE(3047)] = 122561, - [SMALL_STATE(3048)] = 122597, - [SMALL_STATE(3049)] = 122619, - [SMALL_STATE(3050)] = 122641, - [SMALL_STATE(3051)] = 122677, - [SMALL_STATE(3052)] = 122705, - [SMALL_STATE(3053)] = 122727, - [SMALL_STATE(3054)] = 122755, - [SMALL_STATE(3055)] = 122779, - [SMALL_STATE(3056)] = 122807, - [SMALL_STATE(3057)] = 122843, - [SMALL_STATE(3058)] = 122867, - [SMALL_STATE(3059)] = 122903, - [SMALL_STATE(3060)] = 122925, - [SMALL_STATE(3061)] = 122951, - [SMALL_STATE(3062)] = 122973, - [SMALL_STATE(3063)] = 122995, - [SMALL_STATE(3064)] = 123023, - [SMALL_STATE(3065)] = 123051, - [SMALL_STATE(3066)] = 123075, - [SMALL_STATE(3067)] = 123101, - [SMALL_STATE(3068)] = 123125, - [SMALL_STATE(3069)] = 123147, - [SMALL_STATE(3070)] = 123169, - [SMALL_STATE(3071)] = 123205, - [SMALL_STATE(3072)] = 123227, - [SMALL_STATE(3073)] = 123269, - [SMALL_STATE(3074)] = 123311, - [SMALL_STATE(3075)] = 123331, - [SMALL_STATE(3076)] = 123359, - [SMALL_STATE(3077)] = 123395, - [SMALL_STATE(3078)] = 123431, - [SMALL_STATE(3079)] = 123451, - [SMALL_STATE(3080)] = 123471, - [SMALL_STATE(3081)] = 123491, - [SMALL_STATE(3082)] = 123511, - [SMALL_STATE(3083)] = 123531, - [SMALL_STATE(3084)] = 123551, - [SMALL_STATE(3085)] = 123587, - [SMALL_STATE(3086)] = 123607, - [SMALL_STATE(3087)] = 123627, - [SMALL_STATE(3088)] = 123647, - [SMALL_STATE(3089)] = 123667, - [SMALL_STATE(3090)] = 123687, - [SMALL_STATE(3091)] = 123707, - [SMALL_STATE(3092)] = 123729, - [SMALL_STATE(3093)] = 123753, - [SMALL_STATE(3094)] = 123789, - [SMALL_STATE(3095)] = 123809, - [SMALL_STATE(3096)] = 123829, - [SMALL_STATE(3097)] = 123849, - [SMALL_STATE(3098)] = 123869, - [SMALL_STATE(3099)] = 123889, - [SMALL_STATE(3100)] = 123909, - [SMALL_STATE(3101)] = 123929, - [SMALL_STATE(3102)] = 123951, - [SMALL_STATE(3103)] = 123971, - [SMALL_STATE(3104)] = 123991, - [SMALL_STATE(3105)] = 124011, - [SMALL_STATE(3106)] = 124031, - [SMALL_STATE(3107)] = 124051, - [SMALL_STATE(3108)] = 124071, - [SMALL_STATE(3109)] = 124097, - [SMALL_STATE(3110)] = 124119, - [SMALL_STATE(3111)] = 124139, - [SMALL_STATE(3112)] = 124159, - [SMALL_STATE(3113)] = 124179, - [SMALL_STATE(3114)] = 124199, - [SMALL_STATE(3115)] = 124219, - [SMALL_STATE(3116)] = 124255, - [SMALL_STATE(3117)] = 124283, - [SMALL_STATE(3118)] = 124311, - [SMALL_STATE(3119)] = 124331, - [SMALL_STATE(3120)] = 124351, - [SMALL_STATE(3121)] = 124388, - [SMALL_STATE(3122)] = 124425, - [SMALL_STATE(3123)] = 124464, - [SMALL_STATE(3124)] = 124501, - [SMALL_STATE(3125)] = 124534, - [SMALL_STATE(3126)] = 124571, - [SMALL_STATE(3127)] = 124608, - [SMALL_STATE(3128)] = 124645, - [SMALL_STATE(3129)] = 124666, - [SMALL_STATE(3130)] = 124695, - [SMALL_STATE(3131)] = 124728, - [SMALL_STATE(3132)] = 124761, - [SMALL_STATE(3133)] = 124798, - [SMALL_STATE(3134)] = 124819, - [SMALL_STATE(3135)] = 124856, - [SMALL_STATE(3136)] = 124877, - [SMALL_STATE(3137)] = 124910, - [SMALL_STATE(3138)] = 124933, - [SMALL_STATE(3139)] = 124956, - [SMALL_STATE(3140)] = 124979, - [SMALL_STATE(3141)] = 125010, - [SMALL_STATE(3142)] = 125031, - [SMALL_STATE(3143)] = 125070, - [SMALL_STATE(3144)] = 125103, - [SMALL_STATE(3145)] = 125132, - [SMALL_STATE(3146)] = 125169, - [SMALL_STATE(3147)] = 125206, - [SMALL_STATE(3148)] = 125235, - [SMALL_STATE(3149)] = 125272, - [SMALL_STATE(3150)] = 125291, - [SMALL_STATE(3151)] = 125322, - [SMALL_STATE(3152)] = 125359, - [SMALL_STATE(3153)] = 125392, - [SMALL_STATE(3154)] = 125429, - [SMALL_STATE(3155)] = 125458, - [SMALL_STATE(3156)] = 125479, - [SMALL_STATE(3157)] = 125500, - [SMALL_STATE(3158)] = 125531, - [SMALL_STATE(3159)] = 125568, - [SMALL_STATE(3160)] = 125587, - [SMALL_STATE(3161)] = 125624, - [SMALL_STATE(3162)] = 125661, - [SMALL_STATE(3163)] = 125698, - [SMALL_STATE(3164)] = 125727, - [SMALL_STATE(3165)] = 125764, - [SMALL_STATE(3166)] = 125801, - [SMALL_STATE(3167)] = 125840, - [SMALL_STATE(3168)] = 125877, - [SMALL_STATE(3169)] = 125902, - [SMALL_STATE(3170)] = 125927, - [SMALL_STATE(3171)] = 125966, - [SMALL_STATE(3172)] = 125999, - [SMALL_STATE(3173)] = 126022, - [SMALL_STATE(3174)] = 126053, - [SMALL_STATE(3175)] = 126090, - [SMALL_STATE(3176)] = 126121, - [SMALL_STATE(3177)] = 126144, - [SMALL_STATE(3178)] = 126181, - [SMALL_STATE(3179)] = 126214, - [SMALL_STATE(3180)] = 126251, - [SMALL_STATE(3181)] = 126284, - [SMALL_STATE(3182)] = 126323, - [SMALL_STATE(3183)] = 126356, - [SMALL_STATE(3184)] = 126377, - [SMALL_STATE(3185)] = 126397, - [SMALL_STATE(3186)] = 126421, - [SMALL_STATE(3187)] = 126441, - [SMALL_STATE(3188)] = 126461, - [SMALL_STATE(3189)] = 126481, - [SMALL_STATE(3190)] = 126501, - [SMALL_STATE(3191)] = 126531, - [SMALL_STATE(3192)] = 126555, - [SMALL_STATE(3193)] = 126575, - [SMALL_STATE(3194)] = 126605, - [SMALL_STATE(3195)] = 126635, - [SMALL_STATE(3196)] = 126655, - [SMALL_STATE(3197)] = 126685, - [SMALL_STATE(3198)] = 126715, - [SMALL_STATE(3199)] = 126735, - [SMALL_STATE(3200)] = 126755, - [SMALL_STATE(3201)] = 126775, - [SMALL_STATE(3202)] = 126797, - [SMALL_STATE(3203)] = 126817, - [SMALL_STATE(3204)] = 126837, - [SMALL_STATE(3205)] = 126857, - [SMALL_STATE(3206)] = 126877, - [SMALL_STATE(3207)] = 126901, - [SMALL_STATE(3208)] = 126925, - [SMALL_STATE(3209)] = 126947, - [SMALL_STATE(3210)] = 126969, - [SMALL_STATE(3211)] = 126993, - [SMALL_STATE(3212)] = 127017, - [SMALL_STATE(3213)] = 127037, - [SMALL_STATE(3214)] = 127055, - [SMALL_STATE(3215)] = 127085, - [SMALL_STATE(3216)] = 127111, - [SMALL_STATE(3217)] = 127131, - [SMALL_STATE(3218)] = 127151, - [SMALL_STATE(3219)] = 127171, - [SMALL_STATE(3220)] = 127195, - [SMALL_STATE(3221)] = 127215, - [SMALL_STATE(3222)] = 127235, - [SMALL_STATE(3223)] = 127257, - [SMALL_STATE(3224)] = 127277, - [SMALL_STATE(3225)] = 127297, - [SMALL_STATE(3226)] = 127317, - [SMALL_STATE(3227)] = 127337, - [SMALL_STATE(3228)] = 127355, - [SMALL_STATE(3229)] = 127375, - [SMALL_STATE(3230)] = 127395, - [SMALL_STATE(3231)] = 127425, - [SMALL_STATE(3232)] = 127445, - [SMALL_STATE(3233)] = 127467, - [SMALL_STATE(3234)] = 127489, - [SMALL_STATE(3235)] = 127513, - [SMALL_STATE(3236)] = 127531, - [SMALL_STATE(3237)] = 127557, - [SMALL_STATE(3238)] = 127575, - [SMALL_STATE(3239)] = 127593, - [SMALL_STATE(3240)] = 127611, - [SMALL_STATE(3241)] = 127629, - [SMALL_STATE(3242)] = 127665, - [SMALL_STATE(3243)] = 127683, - [SMALL_STATE(3244)] = 127701, - [SMALL_STATE(3245)] = 127719, - [SMALL_STATE(3246)] = 127737, - [SMALL_STATE(3247)] = 127755, - [SMALL_STATE(3248)] = 127773, - [SMALL_STATE(3249)] = 127791, - [SMALL_STATE(3250)] = 127813, - [SMALL_STATE(3251)] = 127833, - [SMALL_STATE(3252)] = 127853, - [SMALL_STATE(3253)] = 127873, - [SMALL_STATE(3254)] = 127893, - [SMALL_STATE(3255)] = 127913, - [SMALL_STATE(3256)] = 127933, - [SMALL_STATE(3257)] = 127953, - [SMALL_STATE(3258)] = 127973, - [SMALL_STATE(3259)] = 127997, - [SMALL_STATE(3260)] = 128017, - [SMALL_STATE(3261)] = 128037, - [SMALL_STATE(3262)] = 128057, - [SMALL_STATE(3263)] = 128079, - [SMALL_STATE(3264)] = 128109, - [SMALL_STATE(3265)] = 128142, - [SMALL_STATE(3266)] = 128159, - [SMALL_STATE(3267)] = 128194, - [SMALL_STATE(3268)] = 128221, - [SMALL_STATE(3269)] = 128256, - [SMALL_STATE(3270)] = 128291, - [SMALL_STATE(3271)] = 128324, - [SMALL_STATE(3272)] = 128343, - [SMALL_STATE(3273)] = 128378, - [SMALL_STATE(3274)] = 128403, - [SMALL_STATE(3275)] = 128422, - [SMALL_STATE(3276)] = 128445, - [SMALL_STATE(3277)] = 128466, - [SMALL_STATE(3278)] = 128487, - [SMALL_STATE(3279)] = 128520, - [SMALL_STATE(3280)] = 128555, - [SMALL_STATE(3281)] = 128588, - [SMALL_STATE(3282)] = 128623, - [SMALL_STATE(3283)] = 128642, - [SMALL_STATE(3284)] = 128663, - [SMALL_STATE(3285)] = 128686, - [SMALL_STATE(3286)] = 128721, - [SMALL_STATE(3287)] = 128752, - [SMALL_STATE(3288)] = 128787, - [SMALL_STATE(3289)] = 128822, - [SMALL_STATE(3290)] = 128841, - [SMALL_STATE(3291)] = 128876, - [SMALL_STATE(3292)] = 128911, - [SMALL_STATE(3293)] = 128928, - [SMALL_STATE(3294)] = 128961, - [SMALL_STATE(3295)] = 128978, - [SMALL_STATE(3296)] = 129011, - [SMALL_STATE(3297)] = 129028, - [SMALL_STATE(3298)] = 129057, - [SMALL_STATE(3299)] = 129088, - [SMALL_STATE(3300)] = 129119, - [SMALL_STATE(3301)] = 129135, - [SMALL_STATE(3302)] = 129163, - [SMALL_STATE(3303)] = 129191, - [SMALL_STATE(3304)] = 129219, - [SMALL_STATE(3305)] = 129247, - [SMALL_STATE(3306)] = 129275, - [SMALL_STATE(3307)] = 129301, - [SMALL_STATE(3308)] = 129333, - [SMALL_STATE(3309)] = 129361, - [SMALL_STATE(3310)] = 129389, - [SMALL_STATE(3311)] = 129417, - [SMALL_STATE(3312)] = 129449, - [SMALL_STATE(3313)] = 129477, - [SMALL_STATE(3314)] = 129509, - [SMALL_STATE(3315)] = 129539, - [SMALL_STATE(3316)] = 129569, - [SMALL_STATE(3317)] = 129601, - [SMALL_STATE(3318)] = 129627, - [SMALL_STATE(3319)] = 129653, - [SMALL_STATE(3320)] = 129683, - [SMALL_STATE(3321)] = 129711, - [SMALL_STATE(3322)] = 129727, - [SMALL_STATE(3323)] = 129757, - [SMALL_STATE(3324)] = 129787, - [SMALL_STATE(3325)] = 129815, - [SMALL_STATE(3326)] = 129845, - [SMALL_STATE(3327)] = 129873, - [SMALL_STATE(3328)] = 129903, - [SMALL_STATE(3329)] = 129925, - [SMALL_STATE(3330)] = 129941, - [SMALL_STATE(3331)] = 129957, - [SMALL_STATE(3332)] = 129987, - [SMALL_STATE(3333)] = 130017, - [SMALL_STATE(3334)] = 130047, - [SMALL_STATE(3335)] = 130075, - [SMALL_STATE(3336)] = 130091, - [SMALL_STATE(3337)] = 130121, - [SMALL_STATE(3338)] = 130153, - [SMALL_STATE(3339)] = 130183, - [SMALL_STATE(3340)] = 130199, - [SMALL_STATE(3341)] = 130215, - [SMALL_STATE(3342)] = 130237, - [SMALL_STATE(3343)] = 130259, - [SMALL_STATE(3344)] = 130287, - [SMALL_STATE(3345)] = 130319, - [SMALL_STATE(3346)] = 130347, - [SMALL_STATE(3347)] = 130375, - [SMALL_STATE(3348)] = 130391, - [SMALL_STATE(3349)] = 130419, - [SMALL_STATE(3350)] = 130449, - [SMALL_STATE(3351)] = 130479, - [SMALL_STATE(3352)] = 130505, - [SMALL_STATE(3353)] = 130523, - [SMALL_STATE(3354)] = 130539, - [SMALL_STATE(3355)] = 130567, - [SMALL_STATE(3356)] = 130595, - [SMALL_STATE(3357)] = 130623, - [SMALL_STATE(3358)] = 130651, - [SMALL_STATE(3359)] = 130679, - [SMALL_STATE(3360)] = 130709, - [SMALL_STATE(3361)] = 130739, - [SMALL_STATE(3362)] = 130769, - [SMALL_STATE(3363)] = 130799, - [SMALL_STATE(3364)] = 130829, - [SMALL_STATE(3365)] = 130857, - [SMALL_STATE(3366)] = 130887, - [SMALL_STATE(3367)] = 130915, - [SMALL_STATE(3368)] = 130943, - [SMALL_STATE(3369)] = 130975, - [SMALL_STATE(3370)] = 130991, - [SMALL_STATE(3371)] = 131021, - [SMALL_STATE(3372)] = 131041, - [SMALL_STATE(3373)] = 131073, - [SMALL_STATE(3374)] = 131103, - [SMALL_STATE(3375)] = 131135, - [SMALL_STATE(3376)] = 131163, - [SMALL_STATE(3377)] = 131179, - [SMALL_STATE(3378)] = 131211, - [SMALL_STATE(3379)] = 131243, - [SMALL_STATE(3380)] = 131273, - [SMALL_STATE(3381)] = 131301, - [SMALL_STATE(3382)] = 131329, - [SMALL_STATE(3383)] = 131345, - [SMALL_STATE(3384)] = 131373, - [SMALL_STATE(3385)] = 131405, - [SMALL_STATE(3386)] = 131421, - [SMALL_STATE(3387)] = 131447, - [SMALL_STATE(3388)] = 131463, - [SMALL_STATE(3389)] = 131489, - [SMALL_STATE(3390)] = 131507, - [SMALL_STATE(3391)] = 131523, - [SMALL_STATE(3392)] = 131539, - [SMALL_STATE(3393)] = 131561, - [SMALL_STATE(3394)] = 131581, - [SMALL_STATE(3395)] = 131599, - [SMALL_STATE(3396)] = 131617, - [SMALL_STATE(3397)] = 131649, - [SMALL_STATE(3398)] = 131681, - [SMALL_STATE(3399)] = 131709, - [SMALL_STATE(3400)] = 131725, - [SMALL_STATE(3401)] = 131753, - [SMALL_STATE(3402)] = 131783, - [SMALL_STATE(3403)] = 131799, - [SMALL_STATE(3404)] = 131829, - [SMALL_STATE(3405)] = 131859, - [SMALL_STATE(3406)] = 131891, - [SMALL_STATE(3407)] = 131907, - [SMALL_STATE(3408)] = 131937, - [SMALL_STATE(3409)] = 131965, - [SMALL_STATE(3410)] = 131981, - [SMALL_STATE(3411)] = 132009, - [SMALL_STATE(3412)] = 132037, - [SMALL_STATE(3413)] = 132053, - [SMALL_STATE(3414)] = 132081, - [SMALL_STATE(3415)] = 132109, - [SMALL_STATE(3416)] = 132137, - [SMALL_STATE(3417)] = 132153, - [SMALL_STATE(3418)] = 132169, - [SMALL_STATE(3419)] = 132185, - [SMALL_STATE(3420)] = 132213, - [SMALL_STATE(3421)] = 132239, - [SMALL_STATE(3422)] = 132255, - [SMALL_STATE(3423)] = 132283, - [SMALL_STATE(3424)] = 132311, - [SMALL_STATE(3425)] = 132339, - [SMALL_STATE(3426)] = 132367, - [SMALL_STATE(3427)] = 132383, - [SMALL_STATE(3428)] = 132399, - [SMALL_STATE(3429)] = 132421, - [SMALL_STATE(3430)] = 132453, - [SMALL_STATE(3431)] = 132485, - [SMALL_STATE(3432)] = 132515, - [SMALL_STATE(3433)] = 132545, - [SMALL_STATE(3434)] = 132561, - [SMALL_STATE(3435)] = 132579, - [SMALL_STATE(3436)] = 132595, - [SMALL_STATE(3437)] = 132625, - [SMALL_STATE(3438)] = 132655, - [SMALL_STATE(3439)] = 132671, - [SMALL_STATE(3440)] = 132699, - [SMALL_STATE(3441)] = 132715, - [SMALL_STATE(3442)] = 132745, - [SMALL_STATE(3443)] = 132773, - [SMALL_STATE(3444)] = 132801, - [SMALL_STATE(3445)] = 132831, - [SMALL_STATE(3446)] = 132859, - [SMALL_STATE(3447)] = 132891, - [SMALL_STATE(3448)] = 132917, - [SMALL_STATE(3449)] = 132947, - [SMALL_STATE(3450)] = 132979, - [SMALL_STATE(3451)] = 132995, - [SMALL_STATE(3452)] = 133017, - [SMALL_STATE(3453)] = 133033, - [SMALL_STATE(3454)] = 133059, - [SMALL_STATE(3455)] = 133085, - [SMALL_STATE(3456)] = 133101, - [SMALL_STATE(3457)] = 133117, - [SMALL_STATE(3458)] = 133139, - [SMALL_STATE(3459)] = 133155, - [SMALL_STATE(3460)] = 133171, - [SMALL_STATE(3461)] = 133193, - [SMALL_STATE(3462)] = 133209, - [SMALL_STATE(3463)] = 133235, - [SMALL_STATE(3464)] = 133265, - [SMALL_STATE(3465)] = 133295, - [SMALL_STATE(3466)] = 133325, - [SMALL_STATE(3467)] = 133345, - [SMALL_STATE(3468)] = 133361, - [SMALL_STATE(3469)] = 133377, - [SMALL_STATE(3470)] = 133401, - [SMALL_STATE(3471)] = 133427, - [SMALL_STATE(3472)] = 133443, - [SMALL_STATE(3473)] = 133459, - [SMALL_STATE(3474)] = 133475, - [SMALL_STATE(3475)] = 133503, - [SMALL_STATE(3476)] = 133519, - [SMALL_STATE(3477)] = 133535, - [SMALL_STATE(3478)] = 133561, - [SMALL_STATE(3479)] = 133587, - [SMALL_STATE(3480)] = 133615, - [SMALL_STATE(3481)] = 133641, - [SMALL_STATE(3482)] = 133657, - [SMALL_STATE(3483)] = 133680, - [SMALL_STATE(3484)] = 133703, - [SMALL_STATE(3485)] = 133728, - [SMALL_STATE(3486)] = 133747, - [SMALL_STATE(3487)] = 133762, - [SMALL_STATE(3488)] = 133787, - [SMALL_STATE(3489)] = 133812, - [SMALL_STATE(3490)] = 133833, - [SMALL_STATE(3491)] = 133862, - [SMALL_STATE(3492)] = 133887, - [SMALL_STATE(3493)] = 133912, - [SMALL_STATE(3494)] = 133937, - [SMALL_STATE(3495)] = 133958, - [SMALL_STATE(3496)] = 133987, - [SMALL_STATE(3497)] = 134012, - [SMALL_STATE(3498)] = 134033, - [SMALL_STATE(3499)] = 134062, - [SMALL_STATE(3500)] = 134079, - [SMALL_STATE(3501)] = 134108, - [SMALL_STATE(3502)] = 134133, - [SMALL_STATE(3503)] = 134148, - [SMALL_STATE(3504)] = 134171, - [SMALL_STATE(3505)] = 134200, - [SMALL_STATE(3506)] = 134221, - [SMALL_STATE(3507)] = 134246, - [SMALL_STATE(3508)] = 134267, - [SMALL_STATE(3509)] = 134284, - [SMALL_STATE(3510)] = 134299, - [SMALL_STATE(3511)] = 134316, - [SMALL_STATE(3512)] = 134341, - [SMALL_STATE(3513)] = 134370, - [SMALL_STATE(3514)] = 134399, - [SMALL_STATE(3515)] = 134424, - [SMALL_STATE(3516)] = 134447, - [SMALL_STATE(3517)] = 134464, - [SMALL_STATE(3518)] = 134481, - [SMALL_STATE(3519)] = 134510, - [SMALL_STATE(3520)] = 134531, - [SMALL_STATE(3521)] = 134554, - [SMALL_STATE(3522)] = 134579, - [SMALL_STATE(3523)] = 134602, - [SMALL_STATE(3524)] = 134625, - [SMALL_STATE(3525)] = 134648, - [SMALL_STATE(3526)] = 134671, - [SMALL_STATE(3527)] = 134689, - [SMALL_STATE(3528)] = 134711, - [SMALL_STATE(3529)] = 134725, - [SMALL_STATE(3530)] = 134747, - [SMALL_STATE(3531)] = 134769, - [SMALL_STATE(3532)] = 134791, - [SMALL_STATE(3533)] = 134813, - [SMALL_STATE(3534)] = 134827, - [SMALL_STATE(3535)] = 134849, - [SMALL_STATE(3536)] = 134871, - [SMALL_STATE(3537)] = 134897, - [SMALL_STATE(3538)] = 134923, - [SMALL_STATE(3539)] = 134937, - [SMALL_STATE(3540)] = 134959, - [SMALL_STATE(3541)] = 134979, - [SMALL_STATE(3542)] = 135001, - [SMALL_STATE(3543)] = 135023, - [SMALL_STATE(3544)] = 135045, - [SMALL_STATE(3545)] = 135067, - [SMALL_STATE(3546)] = 135093, - [SMALL_STATE(3547)] = 135119, - [SMALL_STATE(3548)] = 135141, - [SMALL_STATE(3549)] = 135167, - [SMALL_STATE(3550)] = 135189, - [SMALL_STATE(3551)] = 135207, - [SMALL_STATE(3552)] = 135221, - [SMALL_STATE(3553)] = 135247, - [SMALL_STATE(3554)] = 135269, - [SMALL_STATE(3555)] = 135293, - [SMALL_STATE(3556)] = 135315, - [SMALL_STATE(3557)] = 135337, - [SMALL_STATE(3558)] = 135351, - [SMALL_STATE(3559)] = 135373, - [SMALL_STATE(3560)] = 135399, - [SMALL_STATE(3561)] = 135421, - [SMALL_STATE(3562)] = 135443, - [SMALL_STATE(3563)] = 135465, - [SMALL_STATE(3564)] = 135487, - [SMALL_STATE(3565)] = 135509, - [SMALL_STATE(3566)] = 135535, - [SMALL_STATE(3567)] = 135557, - [SMALL_STATE(3568)] = 135583, - [SMALL_STATE(3569)] = 135601, - [SMALL_STATE(3570)] = 135627, - [SMALL_STATE(3571)] = 135645, - [SMALL_STATE(3572)] = 135667, - [SMALL_STATE(3573)] = 135685, - [SMALL_STATE(3574)] = 135703, - [SMALL_STATE(3575)] = 135725, - [SMALL_STATE(3576)] = 135747, - [SMALL_STATE(3577)] = 135769, - [SMALL_STATE(3578)] = 135791, - [SMALL_STATE(3579)] = 135813, - [SMALL_STATE(3580)] = 135839, - [SMALL_STATE(3581)] = 135861, - [SMALL_STATE(3582)] = 135883, - [SMALL_STATE(3583)] = 135905, - [SMALL_STATE(3584)] = 135927, - [SMALL_STATE(3585)] = 135949, - [SMALL_STATE(3586)] = 135971, - [SMALL_STATE(3587)] = 135993, - [SMALL_STATE(3588)] = 136015, - [SMALL_STATE(3589)] = 136037, - [SMALL_STATE(3590)] = 136059, - [SMALL_STATE(3591)] = 136081, - [SMALL_STATE(3592)] = 136103, - [SMALL_STATE(3593)] = 136129, - [SMALL_STATE(3594)] = 136147, - [SMALL_STATE(3595)] = 136169, - [SMALL_STATE(3596)] = 136191, - [SMALL_STATE(3597)] = 136217, - [SMALL_STATE(3598)] = 136231, - [SMALL_STATE(3599)] = 136249, - [SMALL_STATE(3600)] = 136263, - [SMALL_STATE(3601)] = 136281, - [SMALL_STATE(3602)] = 136303, - [SMALL_STATE(3603)] = 136321, - [SMALL_STATE(3604)] = 136347, - [SMALL_STATE(3605)] = 136369, - [SMALL_STATE(3606)] = 136391, - [SMALL_STATE(3607)] = 136405, - [SMALL_STATE(3608)] = 136431, - [SMALL_STATE(3609)] = 136453, - [SMALL_STATE(3610)] = 136475, - [SMALL_STATE(3611)] = 136501, - [SMALL_STATE(3612)] = 136527, - [SMALL_STATE(3613)] = 136549, - [SMALL_STATE(3614)] = 136575, - [SMALL_STATE(3615)] = 136597, - [SMALL_STATE(3616)] = 136619, - [SMALL_STATE(3617)] = 136645, - [SMALL_STATE(3618)] = 136667, - [SMALL_STATE(3619)] = 136689, - [SMALL_STATE(3620)] = 136711, - [SMALL_STATE(3621)] = 136737, - [SMALL_STATE(3622)] = 136763, - [SMALL_STATE(3623)] = 136789, - [SMALL_STATE(3624)] = 136813, - [SMALL_STATE(3625)] = 136829, - [SMALL_STATE(3626)] = 136847, - [SMALL_STATE(3627)] = 136863, - [SMALL_STATE(3628)] = 136885, - [SMALL_STATE(3629)] = 136907, - [SMALL_STATE(3630)] = 136929, - [SMALL_STATE(3631)] = 136955, - [SMALL_STATE(3632)] = 136969, - [SMALL_STATE(3633)] = 136995, - [SMALL_STATE(3634)] = 137017, - [SMALL_STATE(3635)] = 137043, - [SMALL_STATE(3636)] = 137065, - [SMALL_STATE(3637)] = 137079, - [SMALL_STATE(3638)] = 137093, - [SMALL_STATE(3639)] = 137115, - [SMALL_STATE(3640)] = 137141, - [SMALL_STATE(3641)] = 137167, - [SMALL_STATE(3642)] = 137189, - [SMALL_STATE(3643)] = 137211, - [SMALL_STATE(3644)] = 137227, - [SMALL_STATE(3645)] = 137249, - [SMALL_STATE(3646)] = 137271, - [SMALL_STATE(3647)] = 137297, - [SMALL_STATE(3648)] = 137319, - [SMALL_STATE(3649)] = 137345, - [SMALL_STATE(3650)] = 137371, - [SMALL_STATE(3651)] = 137389, - [SMALL_STATE(3652)] = 137411, - [SMALL_STATE(3653)] = 137437, - [SMALL_STATE(3654)] = 137463, - [SMALL_STATE(3655)] = 137479, - [SMALL_STATE(3656)] = 137501, - [SMALL_STATE(3657)] = 137523, - [SMALL_STATE(3658)] = 137541, - [SMALL_STATE(3659)] = 137559, - [SMALL_STATE(3660)] = 137585, - [SMALL_STATE(3661)] = 137607, - [SMALL_STATE(3662)] = 137629, - [SMALL_STATE(3663)] = 137655, - [SMALL_STATE(3664)] = 137681, - [SMALL_STATE(3665)] = 137701, - [SMALL_STATE(3666)] = 137719, - [SMALL_STATE(3667)] = 137735, - [SMALL_STATE(3668)] = 137755, - [SMALL_STATE(3669)] = 137771, - [SMALL_STATE(3670)] = 137787, - [SMALL_STATE(3671)] = 137813, - [SMALL_STATE(3672)] = 137831, - [SMALL_STATE(3673)] = 137853, - [SMALL_STATE(3674)] = 137869, - [SMALL_STATE(3675)] = 137889, - [SMALL_STATE(3676)] = 137909, - [SMALL_STATE(3677)] = 137935, - [SMALL_STATE(3678)] = 137957, - [SMALL_STATE(3679)] = 137979, - [SMALL_STATE(3680)] = 138005, - [SMALL_STATE(3681)] = 138027, - [SMALL_STATE(3682)] = 138047, - [SMALL_STATE(3683)] = 138069, - [SMALL_STATE(3684)] = 138091, - [SMALL_STATE(3685)] = 138113, - [SMALL_STATE(3686)] = 138135, - [SMALL_STATE(3687)] = 138157, - [SMALL_STATE(3688)] = 138179, - [SMALL_STATE(3689)] = 138201, - [SMALL_STATE(3690)] = 138223, - [SMALL_STATE(3691)] = 138243, - [SMALL_STATE(3692)] = 138265, - [SMALL_STATE(3693)] = 138287, - [SMALL_STATE(3694)] = 138309, - [SMALL_STATE(3695)] = 138331, - [SMALL_STATE(3696)] = 138353, - [SMALL_STATE(3697)] = 138375, - [SMALL_STATE(3698)] = 138401, - [SMALL_STATE(3699)] = 138421, - [SMALL_STATE(3700)] = 138439, - [SMALL_STATE(3701)] = 138461, - [SMALL_STATE(3702)] = 138479, - [SMALL_STATE(3703)] = 138501, - [SMALL_STATE(3704)] = 138519, - [SMALL_STATE(3705)] = 138541, - [SMALL_STATE(3706)] = 138559, - [SMALL_STATE(3707)] = 138581, - [SMALL_STATE(3708)] = 138607, - [SMALL_STATE(3709)] = 138629, - [SMALL_STATE(3710)] = 138647, - [SMALL_STATE(3711)] = 138665, - [SMALL_STATE(3712)] = 138685, - [SMALL_STATE(3713)] = 138703, - [SMALL_STATE(3714)] = 138725, - [SMALL_STATE(3715)] = 138751, - [SMALL_STATE(3716)] = 138777, - [SMALL_STATE(3717)] = 138803, - [SMALL_STATE(3718)] = 138829, - [SMALL_STATE(3719)] = 138851, - [SMALL_STATE(3720)] = 138873, - [SMALL_STATE(3721)] = 138899, - [SMALL_STATE(3722)] = 138921, - [SMALL_STATE(3723)] = 138947, - [SMALL_STATE(3724)] = 138969, - [SMALL_STATE(3725)] = 138991, - [SMALL_STATE(3726)] = 139017, - [SMALL_STATE(3727)] = 139035, - [SMALL_STATE(3728)] = 139057, - [SMALL_STATE(3729)] = 139075, - [SMALL_STATE(3730)] = 139089, - [SMALL_STATE(3731)] = 139115, - [SMALL_STATE(3732)] = 139133, - [SMALL_STATE(3733)] = 139151, - [SMALL_STATE(3734)] = 139173, - [SMALL_STATE(3735)] = 139199, - [SMALL_STATE(3736)] = 139221, - [SMALL_STATE(3737)] = 139235, - [SMALL_STATE(3738)] = 139257, - [SMALL_STATE(3739)] = 139275, - [SMALL_STATE(3740)] = 139293, - [SMALL_STATE(3741)] = 139309, - [SMALL_STATE(3742)] = 139331, - [SMALL_STATE(3743)] = 139357, - [SMALL_STATE(3744)] = 139379, - [SMALL_STATE(3745)] = 139401, - [SMALL_STATE(3746)] = 139427, - [SMALL_STATE(3747)] = 139453, - [SMALL_STATE(3748)] = 139475, - [SMALL_STATE(3749)] = 139497, - [SMALL_STATE(3750)] = 139511, - [SMALL_STATE(3751)] = 139529, - [SMALL_STATE(3752)] = 139555, - [SMALL_STATE(3753)] = 139577, - [SMALL_STATE(3754)] = 139603, - [SMALL_STATE(3755)] = 139625, - [SMALL_STATE(3756)] = 139647, - [SMALL_STATE(3757)] = 139669, - [SMALL_STATE(3758)] = 139691, - [SMALL_STATE(3759)] = 139705, - [SMALL_STATE(3760)] = 139731, - [SMALL_STATE(3761)] = 139757, - [SMALL_STATE(3762)] = 139779, - [SMALL_STATE(3763)] = 139805, - [SMALL_STATE(3764)] = 139819, - [SMALL_STATE(3765)] = 139841, - [SMALL_STATE(3766)] = 139863, - [SMALL_STATE(3767)] = 139885, - [SMALL_STATE(3768)] = 139907, - [SMALL_STATE(3769)] = 139929, - [SMALL_STATE(3770)] = 139951, - [SMALL_STATE(3771)] = 139973, - [SMALL_STATE(3772)] = 139999, - [SMALL_STATE(3773)] = 140022, - [SMALL_STATE(3774)] = 140035, - [SMALL_STATE(3775)] = 140050, - [SMALL_STATE(3776)] = 140073, - [SMALL_STATE(3777)] = 140090, - [SMALL_STATE(3778)] = 140111, - [SMALL_STATE(3779)] = 140134, - [SMALL_STATE(3780)] = 140151, - [SMALL_STATE(3781)] = 140168, - [SMALL_STATE(3782)] = 140191, - [SMALL_STATE(3783)] = 140214, - [SMALL_STATE(3784)] = 140233, - [SMALL_STATE(3785)] = 140256, - [SMALL_STATE(3786)] = 140273, - [SMALL_STATE(3787)] = 140296, - [SMALL_STATE(3788)] = 140313, - [SMALL_STATE(3789)] = 140330, - [SMALL_STATE(3790)] = 140347, - [SMALL_STATE(3791)] = 140370, - [SMALL_STATE(3792)] = 140387, - [SMALL_STATE(3793)] = 140404, - [SMALL_STATE(3794)] = 140427, - [SMALL_STATE(3795)] = 140444, - [SMALL_STATE(3796)] = 140467, - [SMALL_STATE(3797)] = 140484, - [SMALL_STATE(3798)] = 140503, - [SMALL_STATE(3799)] = 140516, - [SMALL_STATE(3800)] = 140539, - [SMALL_STATE(3801)] = 140562, - [SMALL_STATE(3802)] = 140585, - [SMALL_STATE(3803)] = 140598, - [SMALL_STATE(3804)] = 140613, - [SMALL_STATE(3805)] = 140636, - [SMALL_STATE(3806)] = 140659, - [SMALL_STATE(3807)] = 140678, - [SMALL_STATE(3808)] = 140701, - [SMALL_STATE(3809)] = 140724, - [SMALL_STATE(3810)] = 140739, - [SMALL_STATE(3811)] = 140762, - [SMALL_STATE(3812)] = 140775, - [SMALL_STATE(3813)] = 140798, - [SMALL_STATE(3814)] = 140821, - [SMALL_STATE(3815)] = 140838, - [SMALL_STATE(3816)] = 140861, - [SMALL_STATE(3817)] = 140884, - [SMALL_STATE(3818)] = 140905, - [SMALL_STATE(3819)] = 140922, - [SMALL_STATE(3820)] = 140939, - [SMALL_STATE(3821)] = 140952, - [SMALL_STATE(3822)] = 140975, - [SMALL_STATE(3823)] = 140998, - [SMALL_STATE(3824)] = 141021, - [SMALL_STATE(3825)] = 141044, - [SMALL_STATE(3826)] = 141067, - [SMALL_STATE(3827)] = 141084, - [SMALL_STATE(3828)] = 141101, - [SMALL_STATE(3829)] = 141118, - [SMALL_STATE(3830)] = 141141, - [SMALL_STATE(3831)] = 141160, - [SMALL_STATE(3832)] = 141183, - [SMALL_STATE(3833)] = 141202, - [SMALL_STATE(3834)] = 141217, - [SMALL_STATE(3835)] = 141240, - [SMALL_STATE(3836)] = 141253, - [SMALL_STATE(3837)] = 141270, - [SMALL_STATE(3838)] = 141287, - [SMALL_STATE(3839)] = 141304, - [SMALL_STATE(3840)] = 141327, - [SMALL_STATE(3841)] = 141350, - [SMALL_STATE(3842)] = 141373, - [SMALL_STATE(3843)] = 141390, - [SMALL_STATE(3844)] = 141407, - [SMALL_STATE(3845)] = 141426, - [SMALL_STATE(3846)] = 141449, - [SMALL_STATE(3847)] = 141468, - [SMALL_STATE(3848)] = 141487, - [SMALL_STATE(3849)] = 141506, - [SMALL_STATE(3850)] = 141523, - [SMALL_STATE(3851)] = 141546, - [SMALL_STATE(3852)] = 141569, - [SMALL_STATE(3853)] = 141582, - [SMALL_STATE(3854)] = 141599, - [SMALL_STATE(3855)] = 141616, - [SMALL_STATE(3856)] = 141633, - [SMALL_STATE(3857)] = 141650, - [SMALL_STATE(3858)] = 141665, - [SMALL_STATE(3859)] = 141688, - [SMALL_STATE(3860)] = 141705, - [SMALL_STATE(3861)] = 141718, - [SMALL_STATE(3862)] = 141737, - [SMALL_STATE(3863)] = 141754, - [SMALL_STATE(3864)] = 141773, - [SMALL_STATE(3865)] = 141796, - [SMALL_STATE(3866)] = 141809, - [SMALL_STATE(3867)] = 141832, - [SMALL_STATE(3868)] = 141849, - [SMALL_STATE(3869)] = 141866, - [SMALL_STATE(3870)] = 141883, - [SMALL_STATE(3871)] = 141896, - [SMALL_STATE(3872)] = 141919, - [SMALL_STATE(3873)] = 141936, - [SMALL_STATE(3874)] = 141959, - [SMALL_STATE(3875)] = 141976, - [SMALL_STATE(3876)] = 141999, - [SMALL_STATE(3877)] = 142022, - [SMALL_STATE(3878)] = 142045, - [SMALL_STATE(3879)] = 142064, - [SMALL_STATE(3880)] = 142087, - [SMALL_STATE(3881)] = 142110, - [SMALL_STATE(3882)] = 142133, - [SMALL_STATE(3883)] = 142156, - [SMALL_STATE(3884)] = 142175, - [SMALL_STATE(3885)] = 142196, - [SMALL_STATE(3886)] = 142213, - [SMALL_STATE(3887)] = 142236, - [SMALL_STATE(3888)] = 142253, - [SMALL_STATE(3889)] = 142270, - [SMALL_STATE(3890)] = 142289, - [SMALL_STATE(3891)] = 142306, - [SMALL_STATE(3892)] = 142323, - [SMALL_STATE(3893)] = 142346, - [SMALL_STATE(3894)] = 142369, - [SMALL_STATE(3895)] = 142392, - [SMALL_STATE(3896)] = 142415, - [SMALL_STATE(3897)] = 142432, - [SMALL_STATE(3898)] = 142455, - [SMALL_STATE(3899)] = 142474, - [SMALL_STATE(3900)] = 142487, - [SMALL_STATE(3901)] = 142510, - [SMALL_STATE(3902)] = 142533, - [SMALL_STATE(3903)] = 142550, - [SMALL_STATE(3904)] = 142573, - [SMALL_STATE(3905)] = 142590, - [SMALL_STATE(3906)] = 142605, - [SMALL_STATE(3907)] = 142622, - [SMALL_STATE(3908)] = 142639, - [SMALL_STATE(3909)] = 142656, - [SMALL_STATE(3910)] = 142669, - [SMALL_STATE(3911)] = 142688, - [SMALL_STATE(3912)] = 142707, - [SMALL_STATE(3913)] = 142724, - [SMALL_STATE(3914)] = 142743, - [SMALL_STATE(3915)] = 142766, - [SMALL_STATE(3916)] = 142783, - [SMALL_STATE(3917)] = 142802, - [SMALL_STATE(3918)] = 142819, - [SMALL_STATE(3919)] = 142838, - [SMALL_STATE(3920)] = 142861, - [SMALL_STATE(3921)] = 142874, - [SMALL_STATE(3922)] = 142889, - [SMALL_STATE(3923)] = 142912, - [SMALL_STATE(3924)] = 142935, - [SMALL_STATE(3925)] = 142958, - [SMALL_STATE(3926)] = 142981, - [SMALL_STATE(3927)] = 143004, - [SMALL_STATE(3928)] = 143027, - [SMALL_STATE(3929)] = 143044, - [SMALL_STATE(3930)] = 143057, - [SMALL_STATE(3931)] = 143072, - [SMALL_STATE(3932)] = 143089, - [SMALL_STATE(3933)] = 143108, - [SMALL_STATE(3934)] = 143128, - [SMALL_STATE(3935)] = 143144, - [SMALL_STATE(3936)] = 143160, - [SMALL_STATE(3937)] = 143176, - [SMALL_STATE(3938)] = 143188, - [SMALL_STATE(3939)] = 143200, - [SMALL_STATE(3940)] = 143212, - [SMALL_STATE(3941)] = 143224, - [SMALL_STATE(3942)] = 143240, - [SMALL_STATE(3943)] = 143260, - [SMALL_STATE(3944)] = 143276, - [SMALL_STATE(3945)] = 143296, - [SMALL_STATE(3946)] = 143312, - [SMALL_STATE(3947)] = 143332, - [SMALL_STATE(3948)] = 143350, - [SMALL_STATE(3949)] = 143366, - [SMALL_STATE(3950)] = 143382, - [SMALL_STATE(3951)] = 143398, - [SMALL_STATE(3952)] = 143414, - [SMALL_STATE(3953)] = 143430, - [SMALL_STATE(3954)] = 143446, - [SMALL_STATE(3955)] = 143460, - [SMALL_STATE(3956)] = 143474, - [SMALL_STATE(3957)] = 143490, - [SMALL_STATE(3958)] = 143506, - [SMALL_STATE(3959)] = 143522, - [SMALL_STATE(3960)] = 143534, - [SMALL_STATE(3961)] = 143546, - [SMALL_STATE(3962)] = 143558, - [SMALL_STATE(3963)] = 143572, - [SMALL_STATE(3964)] = 143588, - [SMALL_STATE(3965)] = 143604, - [SMALL_STATE(3966)] = 143616, - [SMALL_STATE(3967)] = 143632, - [SMALL_STATE(3968)] = 143648, - [SMALL_STATE(3969)] = 143668, - [SMALL_STATE(3970)] = 143684, - [SMALL_STATE(3971)] = 143698, - [SMALL_STATE(3972)] = 143716, - [SMALL_STATE(3973)] = 143732, - [SMALL_STATE(3974)] = 143744, - [SMALL_STATE(3975)] = 143756, - [SMALL_STATE(3976)] = 143768, - [SMALL_STATE(3977)] = 143780, - [SMALL_STATE(3978)] = 143800, - [SMALL_STATE(3979)] = 143812, - [SMALL_STATE(3980)] = 143824, - [SMALL_STATE(3981)] = 143844, - [SMALL_STATE(3982)] = 143864, - [SMALL_STATE(3983)] = 143876, - [SMALL_STATE(3984)] = 143888, - [SMALL_STATE(3985)] = 143900, - [SMALL_STATE(3986)] = 143912, - [SMALL_STATE(3987)] = 143924, - [SMALL_STATE(3988)] = 143936, - [SMALL_STATE(3989)] = 143948, - [SMALL_STATE(3990)] = 143964, - [SMALL_STATE(3991)] = 143982, - [SMALL_STATE(3992)] = 143998, - [SMALL_STATE(3993)] = 144014, - [SMALL_STATE(3994)] = 144030, - [SMALL_STATE(3995)] = 144042, - [SMALL_STATE(3996)] = 144058, - [SMALL_STATE(3997)] = 144070, - [SMALL_STATE(3998)] = 144082, - [SMALL_STATE(3999)] = 144094, - [SMALL_STATE(4000)] = 144110, - [SMALL_STATE(4001)] = 144126, - [SMALL_STATE(4002)] = 144142, - [SMALL_STATE(4003)] = 144162, - [SMALL_STATE(4004)] = 144178, - [SMALL_STATE(4005)] = 144192, - [SMALL_STATE(4006)] = 144208, - [SMALL_STATE(4007)] = 144226, - [SMALL_STATE(4008)] = 144242, - [SMALL_STATE(4009)] = 144262, - [SMALL_STATE(4010)] = 144278, - [SMALL_STATE(4011)] = 144292, - [SMALL_STATE(4012)] = 144308, - [SMALL_STATE(4013)] = 144322, - [SMALL_STATE(4014)] = 144338, - [SMALL_STATE(4015)] = 144352, - [SMALL_STATE(4016)] = 144370, - [SMALL_STATE(4017)] = 144384, - [SMALL_STATE(4018)] = 144400, - [SMALL_STATE(4019)] = 144420, - [SMALL_STATE(4020)] = 144436, - [SMALL_STATE(4021)] = 144452, - [SMALL_STATE(4022)] = 144472, - [SMALL_STATE(4023)] = 144488, - [SMALL_STATE(4024)] = 144506, - [SMALL_STATE(4025)] = 144522, - [SMALL_STATE(4026)] = 144534, - [SMALL_STATE(4027)] = 144546, - [SMALL_STATE(4028)] = 144558, - [SMALL_STATE(4029)] = 144572, - [SMALL_STATE(4030)] = 144588, - [SMALL_STATE(4031)] = 144600, - [SMALL_STATE(4032)] = 144616, - [SMALL_STATE(4033)] = 144632, - [SMALL_STATE(4034)] = 144648, - [SMALL_STATE(4035)] = 144664, - [SMALL_STATE(4036)] = 144676, - [SMALL_STATE(4037)] = 144696, - [SMALL_STATE(4038)] = 144708, - [SMALL_STATE(4039)] = 144726, - [SMALL_STATE(4040)] = 144738, - [SMALL_STATE(4041)] = 144750, - [SMALL_STATE(4042)] = 144766, - [SMALL_STATE(4043)] = 144784, - [SMALL_STATE(4044)] = 144800, - [SMALL_STATE(4045)] = 144820, - [SMALL_STATE(4046)] = 144834, - [SMALL_STATE(4047)] = 144850, - [SMALL_STATE(4048)] = 144870, - [SMALL_STATE(4049)] = 144886, - [SMALL_STATE(4050)] = 144902, - [SMALL_STATE(4051)] = 144918, - [SMALL_STATE(4052)] = 144934, - [SMALL_STATE(4053)] = 144948, - [SMALL_STATE(4054)] = 144968, - [SMALL_STATE(4055)] = 144982, - [SMALL_STATE(4056)] = 145000, - [SMALL_STATE(4057)] = 145016, - [SMALL_STATE(4058)] = 145036, - [SMALL_STATE(4059)] = 145052, - [SMALL_STATE(4060)] = 145068, - [SMALL_STATE(4061)] = 145080, - [SMALL_STATE(4062)] = 145096, - [SMALL_STATE(4063)] = 145108, - [SMALL_STATE(4064)] = 145120, - [SMALL_STATE(4065)] = 145132, - [SMALL_STATE(4066)] = 145144, - [SMALL_STATE(4067)] = 145156, - [SMALL_STATE(4068)] = 145172, - [SMALL_STATE(4069)] = 145184, - [SMALL_STATE(4070)] = 145196, - [SMALL_STATE(4071)] = 145210, - [SMALL_STATE(4072)] = 145224, - [SMALL_STATE(4073)] = 145244, - [SMALL_STATE(4074)] = 145260, - [SMALL_STATE(4075)] = 145276, - [SMALL_STATE(4076)] = 145294, - [SMALL_STATE(4077)] = 145306, - [SMALL_STATE(4078)] = 145320, - [SMALL_STATE(4079)] = 145340, - [SMALL_STATE(4080)] = 145360, - [SMALL_STATE(4081)] = 145376, - [SMALL_STATE(4082)] = 145392, - [SMALL_STATE(4083)] = 145412, - [SMALL_STATE(4084)] = 145430, - [SMALL_STATE(4085)] = 145450, - [SMALL_STATE(4086)] = 145466, - [SMALL_STATE(4087)] = 145486, - [SMALL_STATE(4088)] = 145502, - [SMALL_STATE(4089)] = 145518, - [SMALL_STATE(4090)] = 145534, - [SMALL_STATE(4091)] = 145550, - [SMALL_STATE(4092)] = 145566, - [SMALL_STATE(4093)] = 145582, - [SMALL_STATE(4094)] = 145598, - [SMALL_STATE(4095)] = 145614, - [SMALL_STATE(4096)] = 145630, - [SMALL_STATE(4097)] = 145646, - [SMALL_STATE(4098)] = 145658, - [SMALL_STATE(4099)] = 145670, - [SMALL_STATE(4100)] = 145682, - [SMALL_STATE(4101)] = 145694, - [SMALL_STATE(4102)] = 145706, - [SMALL_STATE(4103)] = 145718, - [SMALL_STATE(4104)] = 145736, - [SMALL_STATE(4105)] = 145748, - [SMALL_STATE(4106)] = 145764, - [SMALL_STATE(4107)] = 145780, - [SMALL_STATE(4108)] = 145792, - [SMALL_STATE(4109)] = 145804, - [SMALL_STATE(4110)] = 145820, - [SMALL_STATE(4111)] = 145834, - [SMALL_STATE(4112)] = 145848, - [SMALL_STATE(4113)] = 145864, - [SMALL_STATE(4114)] = 145884, - [SMALL_STATE(4115)] = 145896, - [SMALL_STATE(4116)] = 145916, - [SMALL_STATE(4117)] = 145928, - [SMALL_STATE(4118)] = 145940, - [SMALL_STATE(4119)] = 145952, - [SMALL_STATE(4120)] = 145972, - [SMALL_STATE(4121)] = 145988, - [SMALL_STATE(4122)] = 146000, - [SMALL_STATE(4123)] = 146012, - [SMALL_STATE(4124)] = 146024, - [SMALL_STATE(4125)] = 146036, - [SMALL_STATE(4126)] = 146048, - [SMALL_STATE(4127)] = 146066, - [SMALL_STATE(4128)] = 146086, - [SMALL_STATE(4129)] = 146098, - [SMALL_STATE(4130)] = 146110, - [SMALL_STATE(4131)] = 146126, - [SMALL_STATE(4132)] = 146138, - [SMALL_STATE(4133)] = 146156, - [SMALL_STATE(4134)] = 146168, - [SMALL_STATE(4135)] = 146180, - [SMALL_STATE(4136)] = 146196, - [SMALL_STATE(4137)] = 146214, - [SMALL_STATE(4138)] = 146234, - [SMALL_STATE(4139)] = 146250, - [SMALL_STATE(4140)] = 146262, - [SMALL_STATE(4141)] = 146280, - [SMALL_STATE(4142)] = 146300, - [SMALL_STATE(4143)] = 146312, - [SMALL_STATE(4144)] = 146324, - [SMALL_STATE(4145)] = 146340, - [SMALL_STATE(4146)] = 146360, - [SMALL_STATE(4147)] = 146380, - [SMALL_STATE(4148)] = 146392, - [SMALL_STATE(4149)] = 146410, - [SMALL_STATE(4150)] = 146430, - [SMALL_STATE(4151)] = 146450, - [SMALL_STATE(4152)] = 146468, - [SMALL_STATE(4153)] = 146480, - [SMALL_STATE(4154)] = 146492, - [SMALL_STATE(4155)] = 146512, - [SMALL_STATE(4156)] = 146524, - [SMALL_STATE(4157)] = 146536, - [SMALL_STATE(4158)] = 146548, - [SMALL_STATE(4159)] = 146560, - [SMALL_STATE(4160)] = 146572, - [SMALL_STATE(4161)] = 146584, - [SMALL_STATE(4162)] = 146604, - [SMALL_STATE(4163)] = 146616, - [SMALL_STATE(4164)] = 146628, - [SMALL_STATE(4165)] = 146640, - [SMALL_STATE(4166)] = 146658, - [SMALL_STATE(4167)] = 146670, - [SMALL_STATE(4168)] = 146682, - [SMALL_STATE(4169)] = 146694, - [SMALL_STATE(4170)] = 146706, - [SMALL_STATE(4171)] = 146718, - [SMALL_STATE(4172)] = 146734, - [SMALL_STATE(4173)] = 146750, - [SMALL_STATE(4174)] = 146766, - [SMALL_STATE(4175)] = 146786, - [SMALL_STATE(4176)] = 146806, - [SMALL_STATE(4177)] = 146818, - [SMALL_STATE(4178)] = 146834, - [SMALL_STATE(4179)] = 146852, - [SMALL_STATE(4180)] = 146868, - [SMALL_STATE(4181)] = 146886, - [SMALL_STATE(4182)] = 146902, - [SMALL_STATE(4183)] = 146922, - [SMALL_STATE(4184)] = 146934, - [SMALL_STATE(4185)] = 146946, - [SMALL_STATE(4186)] = 146958, - [SMALL_STATE(4187)] = 146970, - [SMALL_STATE(4188)] = 146982, - [SMALL_STATE(4189)] = 146998, - [SMALL_STATE(4190)] = 147014, - [SMALL_STATE(4191)] = 147030, - [SMALL_STATE(4192)] = 147046, - [SMALL_STATE(4193)] = 147062, - [SMALL_STATE(4194)] = 147078, - [SMALL_STATE(4195)] = 147098, - [SMALL_STATE(4196)] = 147114, - [SMALL_STATE(4197)] = 147130, - [SMALL_STATE(4198)] = 147146, - [SMALL_STATE(4199)] = 147162, - [SMALL_STATE(4200)] = 147178, - [SMALL_STATE(4201)] = 147190, - [SMALL_STATE(4202)] = 147206, - [SMALL_STATE(4203)] = 147226, - [SMALL_STATE(4204)] = 147246, - [SMALL_STATE(4205)] = 147258, - [SMALL_STATE(4206)] = 147270, - [SMALL_STATE(4207)] = 147288, - [SMALL_STATE(4208)] = 147308, - [SMALL_STATE(4209)] = 147324, - [SMALL_STATE(4210)] = 147336, - [SMALL_STATE(4211)] = 147356, - [SMALL_STATE(4212)] = 147372, - [SMALL_STATE(4213)] = 147388, - [SMALL_STATE(4214)] = 147404, - [SMALL_STATE(4215)] = 147424, - [SMALL_STATE(4216)] = 147438, - [SMALL_STATE(4217)] = 147452, - [SMALL_STATE(4218)] = 147472, - [SMALL_STATE(4219)] = 147492, - [SMALL_STATE(4220)] = 147508, - [SMALL_STATE(4221)] = 147524, - [SMALL_STATE(4222)] = 147544, - [SMALL_STATE(4223)] = 147560, - [SMALL_STATE(4224)] = 147576, - [SMALL_STATE(4225)] = 147592, - [SMALL_STATE(4226)] = 147612, - [SMALL_STATE(4227)] = 147632, - [SMALL_STATE(4228)] = 147648, - [SMALL_STATE(4229)] = 147664, - [SMALL_STATE(4230)] = 147680, - [SMALL_STATE(4231)] = 147696, - [SMALL_STATE(4232)] = 147712, - [SMALL_STATE(4233)] = 147728, - [SMALL_STATE(4234)] = 147744, - [SMALL_STATE(4235)] = 147758, - [SMALL_STATE(4236)] = 147772, - [SMALL_STATE(4237)] = 147788, - [SMALL_STATE(4238)] = 147804, - [SMALL_STATE(4239)] = 147824, - [SMALL_STATE(4240)] = 147844, - [SMALL_STATE(4241)] = 147860, - [SMALL_STATE(4242)] = 147880, - [SMALL_STATE(4243)] = 147900, - [SMALL_STATE(4244)] = 147914, - [SMALL_STATE(4245)] = 147928, - [SMALL_STATE(4246)] = 147944, - [SMALL_STATE(4247)] = 147960, - [SMALL_STATE(4248)] = 147976, - [SMALL_STATE(4249)] = 147996, - [SMALL_STATE(4250)] = 148012, - [SMALL_STATE(4251)] = 148032, - [SMALL_STATE(4252)] = 148052, - [SMALL_STATE(4253)] = 148068, - [SMALL_STATE(4254)] = 148084, - [SMALL_STATE(4255)] = 148100, - [SMALL_STATE(4256)] = 148116, - [SMALL_STATE(4257)] = 148132, - [SMALL_STATE(4258)] = 148152, - [SMALL_STATE(4259)] = 148168, - [SMALL_STATE(4260)] = 148184, - [SMALL_STATE(4261)] = 148198, - [SMALL_STATE(4262)] = 148212, - [SMALL_STATE(4263)] = 148226, - [SMALL_STATE(4264)] = 148240, - [SMALL_STATE(4265)] = 148260, - [SMALL_STATE(4266)] = 148274, - [SMALL_STATE(4267)] = 148288, - [SMALL_STATE(4268)] = 148304, - [SMALL_STATE(4269)] = 148324, - [SMALL_STATE(4270)] = 148340, - [SMALL_STATE(4271)] = 148360, - [SMALL_STATE(4272)] = 148380, - [SMALL_STATE(4273)] = 148396, - [SMALL_STATE(4274)] = 148416, - [SMALL_STATE(4275)] = 148432, - [SMALL_STATE(4276)] = 148446, - [SMALL_STATE(4277)] = 148460, - [SMALL_STATE(4278)] = 148476, - [SMALL_STATE(4279)] = 148492, - [SMALL_STATE(4280)] = 148508, - [SMALL_STATE(4281)] = 148524, - [SMALL_STATE(4282)] = 148540, - [SMALL_STATE(4283)] = 148556, - [SMALL_STATE(4284)] = 148572, - [SMALL_STATE(4285)] = 148588, - [SMALL_STATE(4286)] = 148604, - [SMALL_STATE(4287)] = 148618, - [SMALL_STATE(4288)] = 148630, - [SMALL_STATE(4289)] = 148642, - [SMALL_STATE(4290)] = 148658, - [SMALL_STATE(4291)] = 148674, - [SMALL_STATE(4292)] = 148690, - [SMALL_STATE(4293)] = 148708, - [SMALL_STATE(4294)] = 148722, - [SMALL_STATE(4295)] = 148736, - [SMALL_STATE(4296)] = 148752, - [SMALL_STATE(4297)] = 148766, - [SMALL_STATE(4298)] = 148782, - [SMALL_STATE(4299)] = 148798, - [SMALL_STATE(4300)] = 148814, - [SMALL_STATE(4301)] = 148830, - [SMALL_STATE(4302)] = 148842, - [SMALL_STATE(4303)] = 148862, - [SMALL_STATE(4304)] = 148874, - [SMALL_STATE(4305)] = 148894, - [SMALL_STATE(4306)] = 148908, - [SMALL_STATE(4307)] = 148926, - [SMALL_STATE(4308)] = 148938, - [SMALL_STATE(4309)] = 148950, - [SMALL_STATE(4310)] = 148966, - [SMALL_STATE(4311)] = 148984, - [SMALL_STATE(4312)] = 149004, - [SMALL_STATE(4313)] = 149016, - [SMALL_STATE(4314)] = 149028, - [SMALL_STATE(4315)] = 149040, - [SMALL_STATE(4316)] = 149060, - [SMALL_STATE(4317)] = 149080, - [SMALL_STATE(4318)] = 149092, - [SMALL_STATE(4319)] = 149104, - [SMALL_STATE(4320)] = 149120, - [SMALL_STATE(4321)] = 149140, - [SMALL_STATE(4322)] = 149160, - [SMALL_STATE(4323)] = 149176, - [SMALL_STATE(4324)] = 149192, - [SMALL_STATE(4325)] = 149206, - [SMALL_STATE(4326)] = 149220, - [SMALL_STATE(4327)] = 149234, - [SMALL_STATE(4328)] = 149248, - [SMALL_STATE(4329)] = 149260, - [SMALL_STATE(4330)] = 149280, - [SMALL_STATE(4331)] = 149294, - [SMALL_STATE(4332)] = 149308, - [SMALL_STATE(4333)] = 149324, - [SMALL_STATE(4334)] = 149340, - [SMALL_STATE(4335)] = 149360, - [SMALL_STATE(4336)] = 149376, - [SMALL_STATE(4337)] = 149392, - [SMALL_STATE(4338)] = 149408, - [SMALL_STATE(4339)] = 149422, - [SMALL_STATE(4340)] = 149436, - [SMALL_STATE(4341)] = 149452, - [SMALL_STATE(4342)] = 149468, - [SMALL_STATE(4343)] = 149482, - [SMALL_STATE(4344)] = 149496, - [SMALL_STATE(4345)] = 149512, - [SMALL_STATE(4346)] = 149528, - [SMALL_STATE(4347)] = 149544, - [SMALL_STATE(4348)] = 149560, - [SMALL_STATE(4349)] = 149580, - [SMALL_STATE(4350)] = 149596, - [SMALL_STATE(4351)] = 149612, - [SMALL_STATE(4352)] = 149628, - [SMALL_STATE(4353)] = 149648, - [SMALL_STATE(4354)] = 149660, - [SMALL_STATE(4355)] = 149672, - [SMALL_STATE(4356)] = 149686, - [SMALL_STATE(4357)] = 149700, - [SMALL_STATE(4358)] = 149714, - [SMALL_STATE(4359)] = 149728, - [SMALL_STATE(4360)] = 149742, - [SMALL_STATE(4361)] = 149756, - [SMALL_STATE(4362)] = 149774, - [SMALL_STATE(4363)] = 149786, - [SMALL_STATE(4364)] = 149802, - [SMALL_STATE(4365)] = 149814, - [SMALL_STATE(4366)] = 149830, - [SMALL_STATE(4367)] = 149844, - [SMALL_STATE(4368)] = 149864, - [SMALL_STATE(4369)] = 149884, - [SMALL_STATE(4370)] = 149898, - [SMALL_STATE(4371)] = 149910, - [SMALL_STATE(4372)] = 149930, - [SMALL_STATE(4373)] = 149942, - [SMALL_STATE(4374)] = 149958, - [SMALL_STATE(4375)] = 149974, - [SMALL_STATE(4376)] = 149990, - [SMALL_STATE(4377)] = 150006, - [SMALL_STATE(4378)] = 150026, - [SMALL_STATE(4379)] = 150042, - [SMALL_STATE(4380)] = 150056, - [SMALL_STATE(4381)] = 150070, - [SMALL_STATE(4382)] = 150086, - [SMALL_STATE(4383)] = 150106, - [SMALL_STATE(4384)] = 150122, - [SMALL_STATE(4385)] = 150138, - [SMALL_STATE(4386)] = 150154, - [SMALL_STATE(4387)] = 150170, - [SMALL_STATE(4388)] = 150186, - [SMALL_STATE(4389)] = 150202, - [SMALL_STATE(4390)] = 150218, - [SMALL_STATE(4391)] = 150234, - [SMALL_STATE(4392)] = 150250, - [SMALL_STATE(4393)] = 150266, - [SMALL_STATE(4394)] = 150286, - [SMALL_STATE(4395)] = 150298, - [SMALL_STATE(4396)] = 150314, - [SMALL_STATE(4397)] = 150330, - [SMALL_STATE(4398)] = 150350, - [SMALL_STATE(4399)] = 150362, - [SMALL_STATE(4400)] = 150382, - [SMALL_STATE(4401)] = 150394, - [SMALL_STATE(4402)] = 150410, - [SMALL_STATE(4403)] = 150426, - [SMALL_STATE(4404)] = 150438, - [SMALL_STATE(4405)] = 150450, - [SMALL_STATE(4406)] = 150466, - [SMALL_STATE(4407)] = 150486, - [SMALL_STATE(4408)] = 150502, - [SMALL_STATE(4409)] = 150518, - [SMALL_STATE(4410)] = 150534, - [SMALL_STATE(4411)] = 150546, - [SMALL_STATE(4412)] = 150558, - [SMALL_STATE(4413)] = 150574, - [SMALL_STATE(4414)] = 150590, - [SMALL_STATE(4415)] = 150606, - [SMALL_STATE(4416)] = 150622, - [SMALL_STATE(4417)] = 150634, - [SMALL_STATE(4418)] = 150650, - [SMALL_STATE(4419)] = 150662, - [SMALL_STATE(4420)] = 150682, - [SMALL_STATE(4421)] = 150694, - [SMALL_STATE(4422)] = 150706, - [SMALL_STATE(4423)] = 150718, - [SMALL_STATE(4424)] = 150734, - [SMALL_STATE(4425)] = 150746, - [SMALL_STATE(4426)] = 150758, - [SMALL_STATE(4427)] = 150778, - [SMALL_STATE(4428)] = 150794, - [SMALL_STATE(4429)] = 150814, - [SMALL_STATE(4430)] = 150826, - [SMALL_STATE(4431)] = 150838, - [SMALL_STATE(4432)] = 150850, - [SMALL_STATE(4433)] = 150862, - [SMALL_STATE(4434)] = 150874, - [SMALL_STATE(4435)] = 150890, - [SMALL_STATE(4436)] = 150910, - [SMALL_STATE(4437)] = 150926, - [SMALL_STATE(4438)] = 150942, - [SMALL_STATE(4439)] = 150954, - [SMALL_STATE(4440)] = 150966, - [SMALL_STATE(4441)] = 150978, - [SMALL_STATE(4442)] = 150990, - [SMALL_STATE(4443)] = 151006, - [SMALL_STATE(4444)] = 151018, - [SMALL_STATE(4445)] = 151030, - [SMALL_STATE(4446)] = 151046, - [SMALL_STATE(4447)] = 151058, - [SMALL_STATE(4448)] = 151070, - [SMALL_STATE(4449)] = 151086, - [SMALL_STATE(4450)] = 151102, - [SMALL_STATE(4451)] = 151122, - [SMALL_STATE(4452)] = 151140, - [SMALL_STATE(4453)] = 151160, - [SMALL_STATE(4454)] = 151176, - [SMALL_STATE(4455)] = 151188, - [SMALL_STATE(4456)] = 151204, - [SMALL_STATE(4457)] = 151216, - [SMALL_STATE(4458)] = 151228, - [SMALL_STATE(4459)] = 151244, - [SMALL_STATE(4460)] = 151260, - [SMALL_STATE(4461)] = 151276, - [SMALL_STATE(4462)] = 151292, - [SMALL_STATE(4463)] = 151308, - [SMALL_STATE(4464)] = 151324, - [SMALL_STATE(4465)] = 151338, - [SMALL_STATE(4466)] = 151356, - [SMALL_STATE(4467)] = 151374, - [SMALL_STATE(4468)] = 151390, - [SMALL_STATE(4469)] = 151407, - [SMALL_STATE(4470)] = 151422, - [SMALL_STATE(4471)] = 151437, - [SMALL_STATE(4472)] = 151452, - [SMALL_STATE(4473)] = 151469, - [SMALL_STATE(4474)] = 151486, - [SMALL_STATE(4475)] = 151503, - [SMALL_STATE(4476)] = 151520, - [SMALL_STATE(4477)] = 151537, - [SMALL_STATE(4478)] = 151552, - [SMALL_STATE(4479)] = 151569, - [SMALL_STATE(4480)] = 151586, - [SMALL_STATE(4481)] = 151605, - [SMALL_STATE(4482)] = 151622, - [SMALL_STATE(4483)] = 151639, - [SMALL_STATE(4484)] = 151656, - [SMALL_STATE(4485)] = 151673, - [SMALL_STATE(4486)] = 151686, - [SMALL_STATE(4487)] = 151703, - [SMALL_STATE(4488)] = 151720, - [SMALL_STATE(4489)] = 151733, - [SMALL_STATE(4490)] = 151750, - [SMALL_STATE(4491)] = 151763, - [SMALL_STATE(4492)] = 151778, - [SMALL_STATE(4493)] = 151795, - [SMALL_STATE(4494)] = 151814, - [SMALL_STATE(4495)] = 151831, - [SMALL_STATE(4496)] = 151846, - [SMALL_STATE(4497)] = 151861, - [SMALL_STATE(4498)] = 151878, - [SMALL_STATE(4499)] = 151895, - [SMALL_STATE(4500)] = 151912, - [SMALL_STATE(4501)] = 151927, - [SMALL_STATE(4502)] = 151944, - [SMALL_STATE(4503)] = 151961, - [SMALL_STATE(4504)] = 151978, - [SMALL_STATE(4505)] = 151993, - [SMALL_STATE(4506)] = 152010, - [SMALL_STATE(4507)] = 152023, - [SMALL_STATE(4508)] = 152036, - [SMALL_STATE(4509)] = 152053, - [SMALL_STATE(4510)] = 152068, - [SMALL_STATE(4511)] = 152085, - [SMALL_STATE(4512)] = 152102, - [SMALL_STATE(4513)] = 152119, - [SMALL_STATE(4514)] = 152136, - [SMALL_STATE(4515)] = 152153, - [SMALL_STATE(4516)] = 152170, - [SMALL_STATE(4517)] = 152185, - [SMALL_STATE(4518)] = 152202, - [SMALL_STATE(4519)] = 152217, - [SMALL_STATE(4520)] = 152232, - [SMALL_STATE(4521)] = 152247, - [SMALL_STATE(4522)] = 152258, - [SMALL_STATE(4523)] = 152275, - [SMALL_STATE(4524)] = 152292, - [SMALL_STATE(4525)] = 152309, - [SMALL_STATE(4526)] = 152326, - [SMALL_STATE(4527)] = 152343, - [SMALL_STATE(4528)] = 152360, - [SMALL_STATE(4529)] = 152375, - [SMALL_STATE(4530)] = 152392, - [SMALL_STATE(4531)] = 152409, - [SMALL_STATE(4532)] = 152426, - [SMALL_STATE(4533)] = 152443, - [SMALL_STATE(4534)] = 152462, - [SMALL_STATE(4535)] = 152481, - [SMALL_STATE(4536)] = 152498, - [SMALL_STATE(4537)] = 152515, - [SMALL_STATE(4538)] = 152532, - [SMALL_STATE(4539)] = 152549, - [SMALL_STATE(4540)] = 152566, - [SMALL_STATE(4541)] = 152583, - [SMALL_STATE(4542)] = 152600, - [SMALL_STATE(4543)] = 152617, - [SMALL_STATE(4544)] = 152634, - [SMALL_STATE(4545)] = 152649, - [SMALL_STATE(4546)] = 152666, - [SMALL_STATE(4547)] = 152681, - [SMALL_STATE(4548)] = 152696, - [SMALL_STATE(4549)] = 152713, - [SMALL_STATE(4550)] = 152730, - [SMALL_STATE(4551)] = 152747, - [SMALL_STATE(4552)] = 152764, - [SMALL_STATE(4553)] = 152781, - [SMALL_STATE(4554)] = 152798, - [SMALL_STATE(4555)] = 152815, - [SMALL_STATE(4556)] = 152832, - [SMALL_STATE(4557)] = 152849, - [SMALL_STATE(4558)] = 152866, - [SMALL_STATE(4559)] = 152881, - [SMALL_STATE(4560)] = 152896, - [SMALL_STATE(4561)] = 152913, - [SMALL_STATE(4562)] = 152930, - [SMALL_STATE(4563)] = 152947, - [SMALL_STATE(4564)] = 152964, - [SMALL_STATE(4565)] = 152981, - [SMALL_STATE(4566)] = 152992, - [SMALL_STATE(4567)] = 153003, - [SMALL_STATE(4568)] = 153020, - [SMALL_STATE(4569)] = 153035, - [SMALL_STATE(4570)] = 153052, - [SMALL_STATE(4571)] = 153069, - [SMALL_STATE(4572)] = 153086, - [SMALL_STATE(4573)] = 153101, - [SMALL_STATE(4574)] = 153118, - [SMALL_STATE(4575)] = 153135, - [SMALL_STATE(4576)] = 153152, - [SMALL_STATE(4577)] = 153169, - [SMALL_STATE(4578)] = 153186, - [SMALL_STATE(4579)] = 153203, - [SMALL_STATE(4580)] = 153216, - [SMALL_STATE(4581)] = 153231, - [SMALL_STATE(4582)] = 153248, - [SMALL_STATE(4583)] = 153265, - [SMALL_STATE(4584)] = 153282, - [SMALL_STATE(4585)] = 153299, - [SMALL_STATE(4586)] = 153316, - [SMALL_STATE(4587)] = 153333, - [SMALL_STATE(4588)] = 153350, - [SMALL_STATE(4589)] = 153367, - [SMALL_STATE(4590)] = 153384, - [SMALL_STATE(4591)] = 153401, - [SMALL_STATE(4592)] = 153416, - [SMALL_STATE(4593)] = 153431, - [SMALL_STATE(4594)] = 153448, - [SMALL_STATE(4595)] = 153465, - [SMALL_STATE(4596)] = 153482, - [SMALL_STATE(4597)] = 153493, - [SMALL_STATE(4598)] = 153510, - [SMALL_STATE(4599)] = 153527, - [SMALL_STATE(4600)] = 153544, - [SMALL_STATE(4601)] = 153561, - [SMALL_STATE(4602)] = 153578, - [SMALL_STATE(4603)] = 153593, - [SMALL_STATE(4604)] = 153610, - [SMALL_STATE(4605)] = 153627, - [SMALL_STATE(4606)] = 153646, - [SMALL_STATE(4607)] = 153665, - [SMALL_STATE(4608)] = 153680, - [SMALL_STATE(4609)] = 153695, - [SMALL_STATE(4610)] = 153712, - [SMALL_STATE(4611)] = 153729, - [SMALL_STATE(4612)] = 153746, - [SMALL_STATE(4613)] = 153756, - [SMALL_STATE(4614)] = 153768, - [SMALL_STATE(4615)] = 153778, - [SMALL_STATE(4616)] = 153792, - [SMALL_STATE(4617)] = 153806, - [SMALL_STATE(4618)] = 153820, - [SMALL_STATE(4619)] = 153834, - [SMALL_STATE(4620)] = 153848, - [SMALL_STATE(4621)] = 153858, - [SMALL_STATE(4622)] = 153872, - [SMALL_STATE(4623)] = 153882, - [SMALL_STATE(4624)] = 153896, - [SMALL_STATE(4625)] = 153910, - [SMALL_STATE(4626)] = 153924, - [SMALL_STATE(4627)] = 153934, - [SMALL_STATE(4628)] = 153944, - [SMALL_STATE(4629)] = 153954, - [SMALL_STATE(4630)] = 153968, - [SMALL_STATE(4631)] = 153978, - [SMALL_STATE(4632)] = 153988, - [SMALL_STATE(4633)] = 153998, - [SMALL_STATE(4634)] = 154012, - [SMALL_STATE(4635)] = 154022, - [SMALL_STATE(4636)] = 154036, - [SMALL_STATE(4637)] = 154050, - [SMALL_STATE(4638)] = 154064, - [SMALL_STATE(4639)] = 154074, - [SMALL_STATE(4640)] = 154084, - [SMALL_STATE(4641)] = 154094, - [SMALL_STATE(4642)] = 154108, - [SMALL_STATE(4643)] = 154118, - [SMALL_STATE(4644)] = 154128, - [SMALL_STATE(4645)] = 154138, - [SMALL_STATE(4646)] = 154152, - [SMALL_STATE(4647)] = 154166, - [SMALL_STATE(4648)] = 154180, - [SMALL_STATE(4649)] = 154194, - [SMALL_STATE(4650)] = 154204, - [SMALL_STATE(4651)] = 154218, - [SMALL_STATE(4652)] = 154234, - [SMALL_STATE(4653)] = 154248, - [SMALL_STATE(4654)] = 154258, - [SMALL_STATE(4655)] = 154268, - [SMALL_STATE(4656)] = 154278, - [SMALL_STATE(4657)] = 154292, - [SMALL_STATE(4658)] = 154302, - [SMALL_STATE(4659)] = 154316, - [SMALL_STATE(4660)] = 154326, - [SMALL_STATE(4661)] = 154336, - [SMALL_STATE(4662)] = 154346, - [SMALL_STATE(4663)] = 154360, - [SMALL_STATE(4664)] = 154374, - [SMALL_STATE(4665)] = 154384, - [SMALL_STATE(4666)] = 154396, - [SMALL_STATE(4667)] = 154406, - [SMALL_STATE(4668)] = 154418, - [SMALL_STATE(4669)] = 154432, - [SMALL_STATE(4670)] = 154442, - [SMALL_STATE(4671)] = 154456, - [SMALL_STATE(4672)] = 154470, - [SMALL_STATE(4673)] = 154480, - [SMALL_STATE(4674)] = 154494, - [SMALL_STATE(4675)] = 154504, - [SMALL_STATE(4676)] = 154514, - [SMALL_STATE(4677)] = 154524, - [SMALL_STATE(4678)] = 154538, - [SMALL_STATE(4679)] = 154552, - [SMALL_STATE(4680)] = 154566, - [SMALL_STATE(4681)] = 154580, - [SMALL_STATE(4682)] = 154594, - [SMALL_STATE(4683)] = 154608, - [SMALL_STATE(4684)] = 154618, - [SMALL_STATE(4685)] = 154628, - [SMALL_STATE(4686)] = 154642, - [SMALL_STATE(4687)] = 154656, - [SMALL_STATE(4688)] = 154670, - [SMALL_STATE(4689)] = 154684, - [SMALL_STATE(4690)] = 154698, - [SMALL_STATE(4691)] = 154712, - [SMALL_STATE(4692)] = 154722, - [SMALL_STATE(4693)] = 154736, - [SMALL_STATE(4694)] = 154750, - [SMALL_STATE(4695)] = 154760, - [SMALL_STATE(4696)] = 154774, - [SMALL_STATE(4697)] = 154788, - [SMALL_STATE(4698)] = 154798, - [SMALL_STATE(4699)] = 154808, - [SMALL_STATE(4700)] = 154822, - [SMALL_STATE(4701)] = 154836, - [SMALL_STATE(4702)] = 154846, - [SMALL_STATE(4703)] = 154856, - [SMALL_STATE(4704)] = 154866, - [SMALL_STATE(4705)] = 154876, - [SMALL_STATE(4706)] = 154890, - [SMALL_STATE(4707)] = 154904, - [SMALL_STATE(4708)] = 154914, - [SMALL_STATE(4709)] = 154924, - [SMALL_STATE(4710)] = 154934, - [SMALL_STATE(4711)] = 154944, - [SMALL_STATE(4712)] = 154954, - [SMALL_STATE(4713)] = 154964, - [SMALL_STATE(4714)] = 154978, - [SMALL_STATE(4715)] = 154988, - [SMALL_STATE(4716)] = 155002, - [SMALL_STATE(4717)] = 155016, - [SMALL_STATE(4718)] = 155026, - [SMALL_STATE(4719)] = 155038, - [SMALL_STATE(4720)] = 155048, - [SMALL_STATE(4721)] = 155058, - [SMALL_STATE(4722)] = 155072, - [SMALL_STATE(4723)] = 155082, - [SMALL_STATE(4724)] = 155096, - [SMALL_STATE(4725)] = 155106, - [SMALL_STATE(4726)] = 155116, - [SMALL_STATE(4727)] = 155126, - [SMALL_STATE(4728)] = 155136, - [SMALL_STATE(4729)] = 155146, - [SMALL_STATE(4730)] = 155156, - [SMALL_STATE(4731)] = 155170, - [SMALL_STATE(4732)] = 155182, - [SMALL_STATE(4733)] = 155192, - [SMALL_STATE(4734)] = 155202, - [SMALL_STATE(4735)] = 155212, - [SMALL_STATE(4736)] = 155222, - [SMALL_STATE(4737)] = 155236, - [SMALL_STATE(4738)] = 155250, - [SMALL_STATE(4739)] = 155260, - [SMALL_STATE(4740)] = 155270, - [SMALL_STATE(4741)] = 155280, - [SMALL_STATE(4742)] = 155290, - [SMALL_STATE(4743)] = 155304, - [SMALL_STATE(4744)] = 155314, - [SMALL_STATE(4745)] = 155324, - [SMALL_STATE(4746)] = 155334, - [SMALL_STATE(4747)] = 155344, - [SMALL_STATE(4748)] = 155358, - [SMALL_STATE(4749)] = 155370, - [SMALL_STATE(4750)] = 155384, - [SMALL_STATE(4751)] = 155398, - [SMALL_STATE(4752)] = 155410, - [SMALL_STATE(4753)] = 155420, - [SMALL_STATE(4754)] = 155430, - [SMALL_STATE(4755)] = 155440, - [SMALL_STATE(4756)] = 155450, - [SMALL_STATE(4757)] = 155464, - [SMALL_STATE(4758)] = 155474, - [SMALL_STATE(4759)] = 155484, - [SMALL_STATE(4760)] = 155494, - [SMALL_STATE(4761)] = 155508, - [SMALL_STATE(4762)] = 155518, - [SMALL_STATE(4763)] = 155532, - [SMALL_STATE(4764)] = 155542, - [SMALL_STATE(4765)] = 155556, - [SMALL_STATE(4766)] = 155570, - [SMALL_STATE(4767)] = 155580, - [SMALL_STATE(4768)] = 155590, - [SMALL_STATE(4769)] = 155600, - [SMALL_STATE(4770)] = 155610, - [SMALL_STATE(4771)] = 155620, - [SMALL_STATE(4772)] = 155630, - [SMALL_STATE(4773)] = 155640, - [SMALL_STATE(4774)] = 155650, - [SMALL_STATE(4775)] = 155660, - [SMALL_STATE(4776)] = 155670, - [SMALL_STATE(4777)] = 155680, - [SMALL_STATE(4778)] = 155694, - [SMALL_STATE(4779)] = 155704, - [SMALL_STATE(4780)] = 155714, - [SMALL_STATE(4781)] = 155724, - [SMALL_STATE(4782)] = 155734, - [SMALL_STATE(4783)] = 155744, - [SMALL_STATE(4784)] = 155754, - [SMALL_STATE(4785)] = 155764, - [SMALL_STATE(4786)] = 155774, - [SMALL_STATE(4787)] = 155784, - [SMALL_STATE(4788)] = 155794, - [SMALL_STATE(4789)] = 155804, - [SMALL_STATE(4790)] = 155814, - [SMALL_STATE(4791)] = 155824, - [SMALL_STATE(4792)] = 155838, - [SMALL_STATE(4793)] = 155848, - [SMALL_STATE(4794)] = 155858, - [SMALL_STATE(4795)] = 155872, - [SMALL_STATE(4796)] = 155882, - [SMALL_STATE(4797)] = 155892, - [SMALL_STATE(4798)] = 155906, - [SMALL_STATE(4799)] = 155916, - [SMALL_STATE(4800)] = 155926, - [SMALL_STATE(4801)] = 155936, - [SMALL_STATE(4802)] = 155950, - [SMALL_STATE(4803)] = 155964, - [SMALL_STATE(4804)] = 155978, - [SMALL_STATE(4805)] = 155988, - [SMALL_STATE(4806)] = 155998, - [SMALL_STATE(4807)] = 156008, - [SMALL_STATE(4808)] = 156018, - [SMALL_STATE(4809)] = 156028, - [SMALL_STATE(4810)] = 156038, - [SMALL_STATE(4811)] = 156048, - [SMALL_STATE(4812)] = 156058, - [SMALL_STATE(4813)] = 156068, - [SMALL_STATE(4814)] = 156078, - [SMALL_STATE(4815)] = 156088, - [SMALL_STATE(4816)] = 156098, - [SMALL_STATE(4817)] = 156112, - [SMALL_STATE(4818)] = 156122, - [SMALL_STATE(4819)] = 156132, - [SMALL_STATE(4820)] = 156142, - [SMALL_STATE(4821)] = 156152, - [SMALL_STATE(4822)] = 156162, - [SMALL_STATE(4823)] = 156172, - [SMALL_STATE(4824)] = 156182, - [SMALL_STATE(4825)] = 156192, - [SMALL_STATE(4826)] = 156202, - [SMALL_STATE(4827)] = 156212, - [SMALL_STATE(4828)] = 156224, - [SMALL_STATE(4829)] = 156234, - [SMALL_STATE(4830)] = 156248, - [SMALL_STATE(4831)] = 156262, - [SMALL_STATE(4832)] = 156276, - [SMALL_STATE(4833)] = 156286, - [SMALL_STATE(4834)] = 156296, - [SMALL_STATE(4835)] = 156310, - [SMALL_STATE(4836)] = 156320, - [SMALL_STATE(4837)] = 156330, - [SMALL_STATE(4838)] = 156340, - [SMALL_STATE(4839)] = 156350, - [SMALL_STATE(4840)] = 156360, - [SMALL_STATE(4841)] = 156370, - [SMALL_STATE(4842)] = 156384, - [SMALL_STATE(4843)] = 156394, - [SMALL_STATE(4844)] = 156406, - [SMALL_STATE(4845)] = 156420, - [SMALL_STATE(4846)] = 156430, - [SMALL_STATE(4847)] = 156440, - [SMALL_STATE(4848)] = 156450, - [SMALL_STATE(4849)] = 156460, - [SMALL_STATE(4850)] = 156470, - [SMALL_STATE(4851)] = 156480, - [SMALL_STATE(4852)] = 156490, - [SMALL_STATE(4853)] = 156500, - [SMALL_STATE(4854)] = 156510, - [SMALL_STATE(4855)] = 156524, - [SMALL_STATE(4856)] = 156534, - [SMALL_STATE(4857)] = 156544, - [SMALL_STATE(4858)] = 156554, - [SMALL_STATE(4859)] = 156564, - [SMALL_STATE(4860)] = 156574, - [SMALL_STATE(4861)] = 156584, - [SMALL_STATE(4862)] = 156594, - [SMALL_STATE(4863)] = 156604, - [SMALL_STATE(4864)] = 156614, - [SMALL_STATE(4865)] = 156624, - [SMALL_STATE(4866)] = 156634, - [SMALL_STATE(4867)] = 156648, - [SMALL_STATE(4868)] = 156658, - [SMALL_STATE(4869)] = 156672, - [SMALL_STATE(4870)] = 156682, - [SMALL_STATE(4871)] = 156696, - [SMALL_STATE(4872)] = 156706, - [SMALL_STATE(4873)] = 156720, - [SMALL_STATE(4874)] = 156730, - [SMALL_STATE(4875)] = 156740, - [SMALL_STATE(4876)] = 156754, - [SMALL_STATE(4877)] = 156768, - [SMALL_STATE(4878)] = 156778, - [SMALL_STATE(4879)] = 156788, - [SMALL_STATE(4880)] = 156802, - [SMALL_STATE(4881)] = 156812, - [SMALL_STATE(4882)] = 156822, - [SMALL_STATE(4883)] = 156832, - [SMALL_STATE(4884)] = 156842, - [SMALL_STATE(4885)] = 156852, - [SMALL_STATE(4886)] = 156862, - [SMALL_STATE(4887)] = 156872, - [SMALL_STATE(4888)] = 156882, - [SMALL_STATE(4889)] = 156892, - [SMALL_STATE(4890)] = 156902, - [SMALL_STATE(4891)] = 156912, - [SMALL_STATE(4892)] = 156922, - [SMALL_STATE(4893)] = 156932, - [SMALL_STATE(4894)] = 156942, - [SMALL_STATE(4895)] = 156952, - [SMALL_STATE(4896)] = 156966, - [SMALL_STATE(4897)] = 156976, - [SMALL_STATE(4898)] = 156990, - [SMALL_STATE(4899)] = 157004, - [SMALL_STATE(4900)] = 157016, - [SMALL_STATE(4901)] = 157030, - [SMALL_STATE(4902)] = 157040, - [SMALL_STATE(4903)] = 157052, - [SMALL_STATE(4904)] = 157066, - [SMALL_STATE(4905)] = 157080, - [SMALL_STATE(4906)] = 157094, - [SMALL_STATE(4907)] = 157108, - [SMALL_STATE(4908)] = 157122, - [SMALL_STATE(4909)] = 157132, - [SMALL_STATE(4910)] = 157146, - [SMALL_STATE(4911)] = 157156, - [SMALL_STATE(4912)] = 157166, - [SMALL_STATE(4913)] = 157180, - [SMALL_STATE(4914)] = 157190, - [SMALL_STATE(4915)] = 157206, - [SMALL_STATE(4916)] = 157216, - [SMALL_STATE(4917)] = 157226, - [SMALL_STATE(4918)] = 157236, - [SMALL_STATE(4919)] = 157246, - [SMALL_STATE(4920)] = 157256, - [SMALL_STATE(4921)] = 157266, - [SMALL_STATE(4922)] = 157276, - [SMALL_STATE(4923)] = 157290, - [SMALL_STATE(4924)] = 157300, - [SMALL_STATE(4925)] = 157310, - [SMALL_STATE(4926)] = 157324, - [SMALL_STATE(4927)] = 157334, - [SMALL_STATE(4928)] = 157344, - [SMALL_STATE(4929)] = 157354, - [SMALL_STATE(4930)] = 157368, - [SMALL_STATE(4931)] = 157382, - [SMALL_STATE(4932)] = 157392, - [SMALL_STATE(4933)] = 157404, - [SMALL_STATE(4934)] = 157418, - [SMALL_STATE(4935)] = 157432, - [SMALL_STATE(4936)] = 157446, - [SMALL_STATE(4937)] = 157456, - [SMALL_STATE(4938)] = 157468, - [SMALL_STATE(4939)] = 157482, - [SMALL_STATE(4940)] = 157494, - [SMALL_STATE(4941)] = 157508, - [SMALL_STATE(4942)] = 157518, - [SMALL_STATE(4943)] = 157532, - [SMALL_STATE(4944)] = 157542, - [SMALL_STATE(4945)] = 157552, - [SMALL_STATE(4946)] = 157562, - [SMALL_STATE(4947)] = 157572, - [SMALL_STATE(4948)] = 157582, - [SMALL_STATE(4949)] = 157592, - [SMALL_STATE(4950)] = 157602, - [SMALL_STATE(4951)] = 157612, - [SMALL_STATE(4952)] = 157622, - [SMALL_STATE(4953)] = 157632, - [SMALL_STATE(4954)] = 157642, - [SMALL_STATE(4955)] = 157652, - [SMALL_STATE(4956)] = 157662, - [SMALL_STATE(4957)] = 157672, - [SMALL_STATE(4958)] = 157686, - [SMALL_STATE(4959)] = 157696, - [SMALL_STATE(4960)] = 157706, - [SMALL_STATE(4961)] = 157716, - [SMALL_STATE(4962)] = 157726, - [SMALL_STATE(4963)] = 157736, - [SMALL_STATE(4964)] = 157746, - [SMALL_STATE(4965)] = 157756, - [SMALL_STATE(4966)] = 157766, - [SMALL_STATE(4967)] = 157776, - [SMALL_STATE(4968)] = 157786, - [SMALL_STATE(4969)] = 157796, - [SMALL_STATE(4970)] = 157806, - [SMALL_STATE(4971)] = 157816, - [SMALL_STATE(4972)] = 157826, - [SMALL_STATE(4973)] = 157836, - [SMALL_STATE(4974)] = 157846, - [SMALL_STATE(4975)] = 157856, - [SMALL_STATE(4976)] = 157866, - [SMALL_STATE(4977)] = 157876, - [SMALL_STATE(4978)] = 157890, - [SMALL_STATE(4979)] = 157900, - [SMALL_STATE(4980)] = 157910, - [SMALL_STATE(4981)] = 157920, - [SMALL_STATE(4982)] = 157930, - [SMALL_STATE(4983)] = 157940, - [SMALL_STATE(4984)] = 157954, - [SMALL_STATE(4985)] = 157966, - [SMALL_STATE(4986)] = 157976, - [SMALL_STATE(4987)] = 157990, - [SMALL_STATE(4988)] = 158000, - [SMALL_STATE(4989)] = 158010, - [SMALL_STATE(4990)] = 158020, - [SMALL_STATE(4991)] = 158030, - [SMALL_STATE(4992)] = 158040, - [SMALL_STATE(4993)] = 158050, - [SMALL_STATE(4994)] = 158060, - [SMALL_STATE(4995)] = 158070, - [SMALL_STATE(4996)] = 158080, - [SMALL_STATE(4997)] = 158090, - [SMALL_STATE(4998)] = 158100, - [SMALL_STATE(4999)] = 158110, - [SMALL_STATE(5000)] = 158120, - [SMALL_STATE(5001)] = 158130, - [SMALL_STATE(5002)] = 158142, - [SMALL_STATE(5003)] = 158156, - [SMALL_STATE(5004)] = 158166, - [SMALL_STATE(5005)] = 158176, - [SMALL_STATE(5006)] = 158190, - [SMALL_STATE(5007)] = 158204, - [SMALL_STATE(5008)] = 158214, - [SMALL_STATE(5009)] = 158224, - [SMALL_STATE(5010)] = 158234, - [SMALL_STATE(5011)] = 158244, - [SMALL_STATE(5012)] = 158254, - [SMALL_STATE(5013)] = 158264, - [SMALL_STATE(5014)] = 158278, - [SMALL_STATE(5015)] = 158288, - [SMALL_STATE(5016)] = 158298, - [SMALL_STATE(5017)] = 158308, - [SMALL_STATE(5018)] = 158318, - [SMALL_STATE(5019)] = 158328, - [SMALL_STATE(5020)] = 158342, - [SMALL_STATE(5021)] = 158354, - [SMALL_STATE(5022)] = 158364, - [SMALL_STATE(5023)] = 158374, - [SMALL_STATE(5024)] = 158384, - [SMALL_STATE(5025)] = 158394, - [SMALL_STATE(5026)] = 158404, - [SMALL_STATE(5027)] = 158414, - [SMALL_STATE(5028)] = 158424, - [SMALL_STATE(5029)] = 158434, - [SMALL_STATE(5030)] = 158444, - [SMALL_STATE(5031)] = 158454, - [SMALL_STATE(5032)] = 158468, - [SMALL_STATE(5033)] = 158478, - [SMALL_STATE(5034)] = 158488, - [SMALL_STATE(5035)] = 158498, - [SMALL_STATE(5036)] = 158508, - [SMALL_STATE(5037)] = 158518, - [SMALL_STATE(5038)] = 158532, - [SMALL_STATE(5039)] = 158542, - [SMALL_STATE(5040)] = 158552, - [SMALL_STATE(5041)] = 158562, - [SMALL_STATE(5042)] = 158576, - [SMALL_STATE(5043)] = 158586, - [SMALL_STATE(5044)] = 158596, - [SMALL_STATE(5045)] = 158606, - [SMALL_STATE(5046)] = 158618, - [SMALL_STATE(5047)] = 158630, - [SMALL_STATE(5048)] = 158644, - [SMALL_STATE(5049)] = 158658, - [SMALL_STATE(5050)] = 158668, - [SMALL_STATE(5051)] = 158678, - [SMALL_STATE(5052)] = 158688, - [SMALL_STATE(5053)] = 158698, - [SMALL_STATE(5054)] = 158708, - [SMALL_STATE(5055)] = 158718, - [SMALL_STATE(5056)] = 158728, - [SMALL_STATE(5057)] = 158738, - [SMALL_STATE(5058)] = 158748, - [SMALL_STATE(5059)] = 158758, - [SMALL_STATE(5060)] = 158768, - [SMALL_STATE(5061)] = 158778, - [SMALL_STATE(5062)] = 158788, - [SMALL_STATE(5063)] = 158798, - [SMALL_STATE(5064)] = 158808, - [SMALL_STATE(5065)] = 158818, - [SMALL_STATE(5066)] = 158832, - [SMALL_STATE(5067)] = 158842, - [SMALL_STATE(5068)] = 158852, - [SMALL_STATE(5069)] = 158862, - [SMALL_STATE(5070)] = 158872, - [SMALL_STATE(5071)] = 158884, - [SMALL_STATE(5072)] = 158894, - [SMALL_STATE(5073)] = 158906, - [SMALL_STATE(5074)] = 158916, - [SMALL_STATE(5075)] = 158926, - [SMALL_STATE(5076)] = 158936, - [SMALL_STATE(5077)] = 158948, - [SMALL_STATE(5078)] = 158958, - [SMALL_STATE(5079)] = 158968, - [SMALL_STATE(5080)] = 158978, - [SMALL_STATE(5081)] = 158988, - [SMALL_STATE(5082)] = 158998, - [SMALL_STATE(5083)] = 159008, - [SMALL_STATE(5084)] = 159018, - [SMALL_STATE(5085)] = 159028, - [SMALL_STATE(5086)] = 159038, - [SMALL_STATE(5087)] = 159048, - [SMALL_STATE(5088)] = 159058, - [SMALL_STATE(5089)] = 159072, - [SMALL_STATE(5090)] = 159082, - [SMALL_STATE(5091)] = 159092, - [SMALL_STATE(5092)] = 159106, - [SMALL_STATE(5093)] = 159116, - [SMALL_STATE(5094)] = 159130, - [SMALL_STATE(5095)] = 159140, - [SMALL_STATE(5096)] = 159150, - [SMALL_STATE(5097)] = 159160, - [SMALL_STATE(5098)] = 159170, - [SMALL_STATE(5099)] = 159180, - [SMALL_STATE(5100)] = 159190, - [SMALL_STATE(5101)] = 159200, - [SMALL_STATE(5102)] = 159210, - [SMALL_STATE(5103)] = 159220, - [SMALL_STATE(5104)] = 159230, - [SMALL_STATE(5105)] = 159240, - [SMALL_STATE(5106)] = 159254, - [SMALL_STATE(5107)] = 159264, - [SMALL_STATE(5108)] = 159274, - [SMALL_STATE(5109)] = 159284, - [SMALL_STATE(5110)] = 159294, - [SMALL_STATE(5111)] = 159304, - [SMALL_STATE(5112)] = 159314, - [SMALL_STATE(5113)] = 159324, - [SMALL_STATE(5114)] = 159338, - [SMALL_STATE(5115)] = 159348, - [SMALL_STATE(5116)] = 159358, - [SMALL_STATE(5117)] = 159368, - [SMALL_STATE(5118)] = 159378, - [SMALL_STATE(5119)] = 159388, - [SMALL_STATE(5120)] = 159402, - [SMALL_STATE(5121)] = 159412, - [SMALL_STATE(5122)] = 159422, - [SMALL_STATE(5123)] = 159432, - [SMALL_STATE(5124)] = 159442, - [SMALL_STATE(5125)] = 159452, - [SMALL_STATE(5126)] = 159462, - [SMALL_STATE(5127)] = 159472, - [SMALL_STATE(5128)] = 159482, - [SMALL_STATE(5129)] = 159492, - [SMALL_STATE(5130)] = 159502, - [SMALL_STATE(5131)] = 159512, - [SMALL_STATE(5132)] = 159522, - [SMALL_STATE(5133)] = 159532, - [SMALL_STATE(5134)] = 159542, - [SMALL_STATE(5135)] = 159552, - [SMALL_STATE(5136)] = 159562, - [SMALL_STATE(5137)] = 159572, - [SMALL_STATE(5138)] = 159582, - [SMALL_STATE(5139)] = 159592, - [SMALL_STATE(5140)] = 159602, - [SMALL_STATE(5141)] = 159612, - [SMALL_STATE(5142)] = 159622, - [SMALL_STATE(5143)] = 159632, - [SMALL_STATE(5144)] = 159642, - [SMALL_STATE(5145)] = 159652, - [SMALL_STATE(5146)] = 159662, - [SMALL_STATE(5147)] = 159672, - [SMALL_STATE(5148)] = 159682, - [SMALL_STATE(5149)] = 159692, - [SMALL_STATE(5150)] = 159704, - [SMALL_STATE(5151)] = 159718, - [SMALL_STATE(5152)] = 159728, - [SMALL_STATE(5153)] = 159738, - [SMALL_STATE(5154)] = 159752, - [SMALL_STATE(5155)] = 159762, - [SMALL_STATE(5156)] = 159776, - [SMALL_STATE(5157)] = 159790, - [SMALL_STATE(5158)] = 159804, - [SMALL_STATE(5159)] = 159818, - [SMALL_STATE(5160)] = 159828, - [SMALL_STATE(5161)] = 159842, - [SMALL_STATE(5162)] = 159852, - [SMALL_STATE(5163)] = 159868, - [SMALL_STATE(5164)] = 159882, - [SMALL_STATE(5165)] = 159894, - [SMALL_STATE(5166)] = 159904, - [SMALL_STATE(5167)] = 159916, - [SMALL_STATE(5168)] = 159926, - [SMALL_STATE(5169)] = 159942, - [SMALL_STATE(5170)] = 159956, - [SMALL_STATE(5171)] = 159966, - [SMALL_STATE(5172)] = 159980, - [SMALL_STATE(5173)] = 159990, - [SMALL_STATE(5174)] = 160004, - [SMALL_STATE(5175)] = 160014, - [SMALL_STATE(5176)] = 160028, - [SMALL_STATE(5177)] = 160038, - [SMALL_STATE(5178)] = 160048, - [SMALL_STATE(5179)] = 160058, - [SMALL_STATE(5180)] = 160072, - [SMALL_STATE(5181)] = 160086, - [SMALL_STATE(5182)] = 160100, - [SMALL_STATE(5183)] = 160110, - [SMALL_STATE(5184)] = 160124, - [SMALL_STATE(5185)] = 160136, - [SMALL_STATE(5186)] = 160146, - [SMALL_STATE(5187)] = 160156, - [SMALL_STATE(5188)] = 160170, - [SMALL_STATE(5189)] = 160184, - [SMALL_STATE(5190)] = 160198, - [SMALL_STATE(5191)] = 160212, - [SMALL_STATE(5192)] = 160226, - [SMALL_STATE(5193)] = 160236, - [SMALL_STATE(5194)] = 160246, - [SMALL_STATE(5195)] = 160256, - [SMALL_STATE(5196)] = 160266, - [SMALL_STATE(5197)] = 160280, - [SMALL_STATE(5198)] = 160290, - [SMALL_STATE(5199)] = 160300, - [SMALL_STATE(5200)] = 160314, - [SMALL_STATE(5201)] = 160328, - [SMALL_STATE(5202)] = 160344, - [SMALL_STATE(5203)] = 160354, - [SMALL_STATE(5204)] = 160366, - [SMALL_STATE(5205)] = 160376, - [SMALL_STATE(5206)] = 160390, - [SMALL_STATE(5207)] = 160400, - [SMALL_STATE(5208)] = 160410, - [SMALL_STATE(5209)] = 160420, - [SMALL_STATE(5210)] = 160430, - [SMALL_STATE(5211)] = 160440, - [SMALL_STATE(5212)] = 160454, - [SMALL_STATE(5213)] = 160468, - [SMALL_STATE(5214)] = 160478, - [SMALL_STATE(5215)] = 160488, - [SMALL_STATE(5216)] = 160498, - [SMALL_STATE(5217)] = 160512, - [SMALL_STATE(5218)] = 160522, - [SMALL_STATE(5219)] = 160532, - [SMALL_STATE(5220)] = 160542, - [SMALL_STATE(5221)] = 160556, - [SMALL_STATE(5222)] = 160566, - [SMALL_STATE(5223)] = 160576, - [SMALL_STATE(5224)] = 160586, - [SMALL_STATE(5225)] = 160596, - [SMALL_STATE(5226)] = 160606, - [SMALL_STATE(5227)] = 160616, - [SMALL_STATE(5228)] = 160630, - [SMALL_STATE(5229)] = 160640, - [SMALL_STATE(5230)] = 160654, - [SMALL_STATE(5231)] = 160664, - [SMALL_STATE(5232)] = 160674, - [SMALL_STATE(5233)] = 160688, - [SMALL_STATE(5234)] = 160699, - [SMALL_STATE(5235)] = 160708, - [SMALL_STATE(5236)] = 160719, - [SMALL_STATE(5237)] = 160730, - [SMALL_STATE(5238)] = 160741, - [SMALL_STATE(5239)] = 160752, - [SMALL_STATE(5240)] = 160763, - [SMALL_STATE(5241)] = 160774, - [SMALL_STATE(5242)] = 160785, - [SMALL_STATE(5243)] = 160796, - [SMALL_STATE(5244)] = 160807, - [SMALL_STATE(5245)] = 160818, - [SMALL_STATE(5246)] = 160829, - [SMALL_STATE(5247)] = 160840, - [SMALL_STATE(5248)] = 160851, - [SMALL_STATE(5249)] = 160862, - [SMALL_STATE(5250)] = 160871, - [SMALL_STATE(5251)] = 160882, - [SMALL_STATE(5252)] = 160893, - [SMALL_STATE(5253)] = 160904, - [SMALL_STATE(5254)] = 160913, - [SMALL_STATE(5255)] = 160922, - [SMALL_STATE(5256)] = 160933, - [SMALL_STATE(5257)] = 160942, - [SMALL_STATE(5258)] = 160953, - [SMALL_STATE(5259)] = 160964, - [SMALL_STATE(5260)] = 160975, - [SMALL_STATE(5261)] = 160984, - [SMALL_STATE(5262)] = 160995, - [SMALL_STATE(5263)] = 161006, - [SMALL_STATE(5264)] = 161015, - [SMALL_STATE(5265)] = 161026, - [SMALL_STATE(5266)] = 161035, - [SMALL_STATE(5267)] = 161046, - [SMALL_STATE(5268)] = 161057, - [SMALL_STATE(5269)] = 161068, - [SMALL_STATE(5270)] = 161077, - [SMALL_STATE(5271)] = 161088, - [SMALL_STATE(5272)] = 161099, - [SMALL_STATE(5273)] = 161110, - [SMALL_STATE(5274)] = 161121, - [SMALL_STATE(5275)] = 161132, - [SMALL_STATE(5276)] = 161143, - [SMALL_STATE(5277)] = 161154, - [SMALL_STATE(5278)] = 161165, - [SMALL_STATE(5279)] = 161176, - [SMALL_STATE(5280)] = 161187, - [SMALL_STATE(5281)] = 161198, - [SMALL_STATE(5282)] = 161209, - [SMALL_STATE(5283)] = 161220, - [SMALL_STATE(5284)] = 161231, - [SMALL_STATE(5285)] = 161242, - [SMALL_STATE(5286)] = 161253, - [SMALL_STATE(5287)] = 161264, - [SMALL_STATE(5288)] = 161273, - [SMALL_STATE(5289)] = 161284, - [SMALL_STATE(5290)] = 161295, - [SMALL_STATE(5291)] = 161304, - [SMALL_STATE(5292)] = 161315, - [SMALL_STATE(5293)] = 161326, - [SMALL_STATE(5294)] = 161337, - [SMALL_STATE(5295)] = 161346, - [SMALL_STATE(5296)] = 161355, - [SMALL_STATE(5297)] = 161364, - [SMALL_STATE(5298)] = 161375, - [SMALL_STATE(5299)] = 161386, - [SMALL_STATE(5300)] = 161397, - [SMALL_STATE(5301)] = 161408, - [SMALL_STATE(5302)] = 161419, - [SMALL_STATE(5303)] = 161430, - [SMALL_STATE(5304)] = 161441, - [SMALL_STATE(5305)] = 161452, - [SMALL_STATE(5306)] = 161463, - [SMALL_STATE(5307)] = 161474, - [SMALL_STATE(5308)] = 161485, - [SMALL_STATE(5309)] = 161496, - [SMALL_STATE(5310)] = 161507, - [SMALL_STATE(5311)] = 161518, - [SMALL_STATE(5312)] = 161527, - [SMALL_STATE(5313)] = 161538, - [SMALL_STATE(5314)] = 161549, - [SMALL_STATE(5315)] = 161558, - [SMALL_STATE(5316)] = 161569, - [SMALL_STATE(5317)] = 161580, - [SMALL_STATE(5318)] = 161591, - [SMALL_STATE(5319)] = 161602, - [SMALL_STATE(5320)] = 161611, - [SMALL_STATE(5321)] = 161622, - [SMALL_STATE(5322)] = 161631, - [SMALL_STATE(5323)] = 161642, - [SMALL_STATE(5324)] = 161651, - [SMALL_STATE(5325)] = 161660, - [SMALL_STATE(5326)] = 161671, - [SMALL_STATE(5327)] = 161682, - [SMALL_STATE(5328)] = 161693, - [SMALL_STATE(5329)] = 161704, - [SMALL_STATE(5330)] = 161713, - [SMALL_STATE(5331)] = 161724, - [SMALL_STATE(5332)] = 161735, - [SMALL_STATE(5333)] = 161744, - [SMALL_STATE(5334)] = 161755, - [SMALL_STATE(5335)] = 161766, - [SMALL_STATE(5336)] = 161777, - [SMALL_STATE(5337)] = 161786, - [SMALL_STATE(5338)] = 161797, - [SMALL_STATE(5339)] = 161808, - [SMALL_STATE(5340)] = 161819, - [SMALL_STATE(5341)] = 161830, - [SMALL_STATE(5342)] = 161841, - [SMALL_STATE(5343)] = 161852, - [SMALL_STATE(5344)] = 161863, - [SMALL_STATE(5345)] = 161872, - [SMALL_STATE(5346)] = 161883, - [SMALL_STATE(5347)] = 161894, - [SMALL_STATE(5348)] = 161905, - [SMALL_STATE(5349)] = 161916, - [SMALL_STATE(5350)] = 161925, - [SMALL_STATE(5351)] = 161936, - [SMALL_STATE(5352)] = 161947, - [SMALL_STATE(5353)] = 161958, - [SMALL_STATE(5354)] = 161969, - [SMALL_STATE(5355)] = 161980, - [SMALL_STATE(5356)] = 161991, - [SMALL_STATE(5357)] = 162000, - [SMALL_STATE(5358)] = 162011, - [SMALL_STATE(5359)] = 162022, - [SMALL_STATE(5360)] = 162033, - [SMALL_STATE(5361)] = 162044, - [SMALL_STATE(5362)] = 162055, - [SMALL_STATE(5363)] = 162064, - [SMALL_STATE(5364)] = 162075, - [SMALL_STATE(5365)] = 162084, - [SMALL_STATE(5366)] = 162095, - [SMALL_STATE(5367)] = 162106, - [SMALL_STATE(5368)] = 162115, - [SMALL_STATE(5369)] = 162126, - [SMALL_STATE(5370)] = 162137, - [SMALL_STATE(5371)] = 162148, - [SMALL_STATE(5372)] = 162159, - [SMALL_STATE(5373)] = 162170, - [SMALL_STATE(5374)] = 162181, - [SMALL_STATE(5375)] = 162192, - [SMALL_STATE(5376)] = 162203, - [SMALL_STATE(5377)] = 162214, - [SMALL_STATE(5378)] = 162225, - [SMALL_STATE(5379)] = 162236, - [SMALL_STATE(5380)] = 162245, - [SMALL_STATE(5381)] = 162256, - [SMALL_STATE(5382)] = 162267, - [SMALL_STATE(5383)] = 162278, - [SMALL_STATE(5384)] = 162289, - [SMALL_STATE(5385)] = 162298, - [SMALL_STATE(5386)] = 162307, - [SMALL_STATE(5387)] = 162318, - [SMALL_STATE(5388)] = 162327, - [SMALL_STATE(5389)] = 162336, - [SMALL_STATE(5390)] = 162345, - [SMALL_STATE(5391)] = 162356, - [SMALL_STATE(5392)] = 162367, - [SMALL_STATE(5393)] = 162378, - [SMALL_STATE(5394)] = 162389, - [SMALL_STATE(5395)] = 162398, - [SMALL_STATE(5396)] = 162409, - [SMALL_STATE(5397)] = 162420, - [SMALL_STATE(5398)] = 162431, - [SMALL_STATE(5399)] = 162440, - [SMALL_STATE(5400)] = 162451, - [SMALL_STATE(5401)] = 162460, - [SMALL_STATE(5402)] = 162471, - [SMALL_STATE(5403)] = 162480, - [SMALL_STATE(5404)] = 162491, - [SMALL_STATE(5405)] = 162502, - [SMALL_STATE(5406)] = 162513, - [SMALL_STATE(5407)] = 162524, - [SMALL_STATE(5408)] = 162535, - [SMALL_STATE(5409)] = 162546, - [SMALL_STATE(5410)] = 162557, - [SMALL_STATE(5411)] = 162566, - [SMALL_STATE(5412)] = 162577, - [SMALL_STATE(5413)] = 162586, - [SMALL_STATE(5414)] = 162595, - [SMALL_STATE(5415)] = 162606, - [SMALL_STATE(5416)] = 162617, - [SMALL_STATE(5417)] = 162628, - [SMALL_STATE(5418)] = 162639, - [SMALL_STATE(5419)] = 162650, - [SMALL_STATE(5420)] = 162661, - [SMALL_STATE(5421)] = 162672, - [SMALL_STATE(5422)] = 162683, - [SMALL_STATE(5423)] = 162694, - [SMALL_STATE(5424)] = 162703, - [SMALL_STATE(5425)] = 162714, - [SMALL_STATE(5426)] = 162725, - [SMALL_STATE(5427)] = 162734, - [SMALL_STATE(5428)] = 162745, - [SMALL_STATE(5429)] = 162756, - [SMALL_STATE(5430)] = 162767, - [SMALL_STATE(5431)] = 162778, - [SMALL_STATE(5432)] = 162789, - [SMALL_STATE(5433)] = 162800, - [SMALL_STATE(5434)] = 162811, - [SMALL_STATE(5435)] = 162822, - [SMALL_STATE(5436)] = 162833, - [SMALL_STATE(5437)] = 162844, - [SMALL_STATE(5438)] = 162855, - [SMALL_STATE(5439)] = 162864, - [SMALL_STATE(5440)] = 162875, - [SMALL_STATE(5441)] = 162886, - [SMALL_STATE(5442)] = 162897, - [SMALL_STATE(5443)] = 162908, - [SMALL_STATE(5444)] = 162919, - [SMALL_STATE(5445)] = 162928, - [SMALL_STATE(5446)] = 162939, - [SMALL_STATE(5447)] = 162950, - [SMALL_STATE(5448)] = 162961, - [SMALL_STATE(5449)] = 162972, - [SMALL_STATE(5450)] = 162981, - [SMALL_STATE(5451)] = 162990, - [SMALL_STATE(5452)] = 163001, - [SMALL_STATE(5453)] = 163012, - [SMALL_STATE(5454)] = 163023, - [SMALL_STATE(5455)] = 163032, - [SMALL_STATE(5456)] = 163043, - [SMALL_STATE(5457)] = 163054, - [SMALL_STATE(5458)] = 163065, - [SMALL_STATE(5459)] = 163074, - [SMALL_STATE(5460)] = 163085, - [SMALL_STATE(5461)] = 163094, - [SMALL_STATE(5462)] = 163105, - [SMALL_STATE(5463)] = 163114, - [SMALL_STATE(5464)] = 163125, - [SMALL_STATE(5465)] = 163136, - [SMALL_STATE(5466)] = 163145, - [SMALL_STATE(5467)] = 163156, - [SMALL_STATE(5468)] = 163165, - [SMALL_STATE(5469)] = 163174, - [SMALL_STATE(5470)] = 163185, - [SMALL_STATE(5471)] = 163196, - [SMALL_STATE(5472)] = 163207, - [SMALL_STATE(5473)] = 163218, - [SMALL_STATE(5474)] = 163229, - [SMALL_STATE(5475)] = 163240, - [SMALL_STATE(5476)] = 163251, - [SMALL_STATE(5477)] = 163262, - [SMALL_STATE(5478)] = 163273, - [SMALL_STATE(5479)] = 163282, - [SMALL_STATE(5480)] = 163293, - [SMALL_STATE(5481)] = 163304, - [SMALL_STATE(5482)] = 163315, - [SMALL_STATE(5483)] = 163326, - [SMALL_STATE(5484)] = 163337, - [SMALL_STATE(5485)] = 163346, - [SMALL_STATE(5486)] = 163355, - [SMALL_STATE(5487)] = 163366, - [SMALL_STATE(5488)] = 163377, - [SMALL_STATE(5489)] = 163386, - [SMALL_STATE(5490)] = 163397, - [SMALL_STATE(5491)] = 163408, - [SMALL_STATE(5492)] = 163419, - [SMALL_STATE(5493)] = 163430, - [SMALL_STATE(5494)] = 163441, - [SMALL_STATE(5495)] = 163452, - [SMALL_STATE(5496)] = 163463, - [SMALL_STATE(5497)] = 163472, - [SMALL_STATE(5498)] = 163483, - [SMALL_STATE(5499)] = 163494, - [SMALL_STATE(5500)] = 163505, - [SMALL_STATE(5501)] = 163516, - [SMALL_STATE(5502)] = 163527, - [SMALL_STATE(5503)] = 163536, - [SMALL_STATE(5504)] = 163545, - [SMALL_STATE(5505)] = 163556, - [SMALL_STATE(5506)] = 163567, - [SMALL_STATE(5507)] = 163578, - [SMALL_STATE(5508)] = 163589, - [SMALL_STATE(5509)] = 163600, - [SMALL_STATE(5510)] = 163611, - [SMALL_STATE(5511)] = 163622, - [SMALL_STATE(5512)] = 163633, - [SMALL_STATE(5513)] = 163644, - [SMALL_STATE(5514)] = 163655, - [SMALL_STATE(5515)] = 163666, - [SMALL_STATE(5516)] = 163677, - [SMALL_STATE(5517)] = 163686, - [SMALL_STATE(5518)] = 163697, - [SMALL_STATE(5519)] = 163708, - [SMALL_STATE(5520)] = 163719, - [SMALL_STATE(5521)] = 163730, - [SMALL_STATE(5522)] = 163741, - [SMALL_STATE(5523)] = 163752, - [SMALL_STATE(5524)] = 163763, - [SMALL_STATE(5525)] = 163774, - [SMALL_STATE(5526)] = 163785, - [SMALL_STATE(5527)] = 163796, - [SMALL_STATE(5528)] = 163807, - [SMALL_STATE(5529)] = 163818, - [SMALL_STATE(5530)] = 163829, - [SMALL_STATE(5531)] = 163838, - [SMALL_STATE(5532)] = 163847, - [SMALL_STATE(5533)] = 163858, - [SMALL_STATE(5534)] = 163869, - [SMALL_STATE(5535)] = 163880, - [SMALL_STATE(5536)] = 163891, - [SMALL_STATE(5537)] = 163902, - [SMALL_STATE(5538)] = 163911, - [SMALL_STATE(5539)] = 163922, - [SMALL_STATE(5540)] = 163933, - [SMALL_STATE(5541)] = 163944, - [SMALL_STATE(5542)] = 163953, - [SMALL_STATE(5543)] = 163964, - [SMALL_STATE(5544)] = 163975, - [SMALL_STATE(5545)] = 163986, - [SMALL_STATE(5546)] = 163997, - [SMALL_STATE(5547)] = 164008, - [SMALL_STATE(5548)] = 164017, - [SMALL_STATE(5549)] = 164028, - [SMALL_STATE(5550)] = 164039, - [SMALL_STATE(5551)] = 164048, - [SMALL_STATE(5552)] = 164057, - [SMALL_STATE(5553)] = 164068, - [SMALL_STATE(5554)] = 164079, - [SMALL_STATE(5555)] = 164088, - [SMALL_STATE(5556)] = 164099, - [SMALL_STATE(5557)] = 164110, - [SMALL_STATE(5558)] = 164121, - [SMALL_STATE(5559)] = 164132, - [SMALL_STATE(5560)] = 164143, - [SMALL_STATE(5561)] = 164154, - [SMALL_STATE(5562)] = 164165, - [SMALL_STATE(5563)] = 164176, - [SMALL_STATE(5564)] = 164187, - [SMALL_STATE(5565)] = 164198, - [SMALL_STATE(5566)] = 164209, - [SMALL_STATE(5567)] = 164220, - [SMALL_STATE(5568)] = 164231, - [SMALL_STATE(5569)] = 164242, - [SMALL_STATE(5570)] = 164253, - [SMALL_STATE(5571)] = 164264, - [SMALL_STATE(5572)] = 164275, - [SMALL_STATE(5573)] = 164286, - [SMALL_STATE(5574)] = 164297, - [SMALL_STATE(5575)] = 164308, - [SMALL_STATE(5576)] = 164317, - [SMALL_STATE(5577)] = 164328, - [SMALL_STATE(5578)] = 164339, - [SMALL_STATE(5579)] = 164350, - [SMALL_STATE(5580)] = 164359, - [SMALL_STATE(5581)] = 164370, - [SMALL_STATE(5582)] = 164381, - [SMALL_STATE(5583)] = 164392, - [SMALL_STATE(5584)] = 164403, - [SMALL_STATE(5585)] = 164412, - [SMALL_STATE(5586)] = 164421, - [SMALL_STATE(5587)] = 164429, - [SMALL_STATE(5588)] = 164437, - [SMALL_STATE(5589)] = 164445, - [SMALL_STATE(5590)] = 164453, - [SMALL_STATE(5591)] = 164461, - [SMALL_STATE(5592)] = 164469, - [SMALL_STATE(5593)] = 164477, - [SMALL_STATE(5594)] = 164485, - [SMALL_STATE(5595)] = 164493, - [SMALL_STATE(5596)] = 164503, - [SMALL_STATE(5597)] = 164511, - [SMALL_STATE(5598)] = 164519, - [SMALL_STATE(5599)] = 164527, - [SMALL_STATE(5600)] = 164535, - [SMALL_STATE(5601)] = 164543, - [SMALL_STATE(5602)] = 164551, - [SMALL_STATE(5603)] = 164559, - [SMALL_STATE(5604)] = 164567, - [SMALL_STATE(5605)] = 164575, - [SMALL_STATE(5606)] = 164583, - [SMALL_STATE(5607)] = 164591, - [SMALL_STATE(5608)] = 164599, - [SMALL_STATE(5609)] = 164607, - [SMALL_STATE(5610)] = 164615, - [SMALL_STATE(5611)] = 164623, - [SMALL_STATE(5612)] = 164631, - [SMALL_STATE(5613)] = 164639, - [SMALL_STATE(5614)] = 164647, - [SMALL_STATE(5615)] = 164655, - [SMALL_STATE(5616)] = 164663, - [SMALL_STATE(5617)] = 164671, - [SMALL_STATE(5618)] = 164679, - [SMALL_STATE(5619)] = 164687, - [SMALL_STATE(5620)] = 164695, - [SMALL_STATE(5621)] = 164703, - [SMALL_STATE(5622)] = 164711, - [SMALL_STATE(5623)] = 164719, - [SMALL_STATE(5624)] = 164727, - [SMALL_STATE(5625)] = 164735, - [SMALL_STATE(5626)] = 164743, - [SMALL_STATE(5627)] = 164751, - [SMALL_STATE(5628)] = 164759, - [SMALL_STATE(5629)] = 164767, - [SMALL_STATE(5630)] = 164775, - [SMALL_STATE(5631)] = 164783, - [SMALL_STATE(5632)] = 164791, - [SMALL_STATE(5633)] = 164799, - [SMALL_STATE(5634)] = 164807, - [SMALL_STATE(5635)] = 164815, - [SMALL_STATE(5636)] = 164823, - [SMALL_STATE(5637)] = 164831, - [SMALL_STATE(5638)] = 164839, - [SMALL_STATE(5639)] = 164847, - [SMALL_STATE(5640)] = 164855, - [SMALL_STATE(5641)] = 164863, - [SMALL_STATE(5642)] = 164871, - [SMALL_STATE(5643)] = 164879, - [SMALL_STATE(5644)] = 164887, - [SMALL_STATE(5645)] = 164895, - [SMALL_STATE(5646)] = 164903, - [SMALL_STATE(5647)] = 164911, - [SMALL_STATE(5648)] = 164919, - [SMALL_STATE(5649)] = 164927, - [SMALL_STATE(5650)] = 164935, - [SMALL_STATE(5651)] = 164943, - [SMALL_STATE(5652)] = 164951, - [SMALL_STATE(5653)] = 164959, - [SMALL_STATE(5654)] = 164967, - [SMALL_STATE(5655)] = 164975, - [SMALL_STATE(5656)] = 164983, - [SMALL_STATE(5657)] = 164991, - [SMALL_STATE(5658)] = 164999, - [SMALL_STATE(5659)] = 165007, - [SMALL_STATE(5660)] = 165015, - [SMALL_STATE(5661)] = 165023, - [SMALL_STATE(5662)] = 165031, - [SMALL_STATE(5663)] = 165039, - [SMALL_STATE(5664)] = 165047, - [SMALL_STATE(5665)] = 165055, - [SMALL_STATE(5666)] = 165063, - [SMALL_STATE(5667)] = 165071, - [SMALL_STATE(5668)] = 165079, - [SMALL_STATE(5669)] = 165087, - [SMALL_STATE(5670)] = 165095, - [SMALL_STATE(5671)] = 165103, - [SMALL_STATE(5672)] = 165111, - [SMALL_STATE(5673)] = 165119, - [SMALL_STATE(5674)] = 165127, - [SMALL_STATE(5675)] = 165137, - [SMALL_STATE(5676)] = 165145, - [SMALL_STATE(5677)] = 165153, - [SMALL_STATE(5678)] = 165161, - [SMALL_STATE(5679)] = 165169, - [SMALL_STATE(5680)] = 165177, - [SMALL_STATE(5681)] = 165185, - [SMALL_STATE(5682)] = 165193, - [SMALL_STATE(5683)] = 165201, - [SMALL_STATE(5684)] = 165209, - [SMALL_STATE(5685)] = 165217, - [SMALL_STATE(5686)] = 165225, - [SMALL_STATE(5687)] = 165233, - [SMALL_STATE(5688)] = 165243, - [SMALL_STATE(5689)] = 165251, - [SMALL_STATE(5690)] = 165259, - [SMALL_STATE(5691)] = 165267, - [SMALL_STATE(5692)] = 165275, - [SMALL_STATE(5693)] = 165283, - [SMALL_STATE(5694)] = 165291, - [SMALL_STATE(5695)] = 165299, - [SMALL_STATE(5696)] = 165307, - [SMALL_STATE(5697)] = 165315, - [SMALL_STATE(5698)] = 165323, - [SMALL_STATE(5699)] = 165331, - [SMALL_STATE(5700)] = 165339, - [SMALL_STATE(5701)] = 165347, - [SMALL_STATE(5702)] = 165355, - [SMALL_STATE(5703)] = 165363, - [SMALL_STATE(5704)] = 165371, - [SMALL_STATE(5705)] = 165379, - [SMALL_STATE(5706)] = 165387, - [SMALL_STATE(5707)] = 165395, - [SMALL_STATE(5708)] = 165403, - [SMALL_STATE(5709)] = 165411, - [SMALL_STATE(5710)] = 165419, - [SMALL_STATE(5711)] = 165427, - [SMALL_STATE(5712)] = 165435, - [SMALL_STATE(5713)] = 165443, - [SMALL_STATE(5714)] = 165451, - [SMALL_STATE(5715)] = 165459, - [SMALL_STATE(5716)] = 165467, - [SMALL_STATE(5717)] = 165475, - [SMALL_STATE(5718)] = 165483, - [SMALL_STATE(5719)] = 165491, - [SMALL_STATE(5720)] = 165499, - [SMALL_STATE(5721)] = 165507, - [SMALL_STATE(5722)] = 165515, - [SMALL_STATE(5723)] = 165523, - [SMALL_STATE(5724)] = 165531, - [SMALL_STATE(5725)] = 165539, - [SMALL_STATE(5726)] = 165547, - [SMALL_STATE(5727)] = 165555, - [SMALL_STATE(5728)] = 165563, - [SMALL_STATE(5729)] = 165571, - [SMALL_STATE(5730)] = 165579, - [SMALL_STATE(5731)] = 165587, - [SMALL_STATE(5732)] = 165595, - [SMALL_STATE(5733)] = 165603, - [SMALL_STATE(5734)] = 165611, - [SMALL_STATE(5735)] = 165619, - [SMALL_STATE(5736)] = 165627, - [SMALL_STATE(5737)] = 165635, - [SMALL_STATE(5738)] = 165643, - [SMALL_STATE(5739)] = 165651, - [SMALL_STATE(5740)] = 165659, - [SMALL_STATE(5741)] = 165667, - [SMALL_STATE(5742)] = 165675, - [SMALL_STATE(5743)] = 165683, - [SMALL_STATE(5744)] = 165691, - [SMALL_STATE(5745)] = 165699, - [SMALL_STATE(5746)] = 165707, - [SMALL_STATE(5747)] = 165715, - [SMALL_STATE(5748)] = 165723, - [SMALL_STATE(5749)] = 165731, - [SMALL_STATE(5750)] = 165739, - [SMALL_STATE(5751)] = 165747, - [SMALL_STATE(5752)] = 165755, - [SMALL_STATE(5753)] = 165763, - [SMALL_STATE(5754)] = 165771, - [SMALL_STATE(5755)] = 165779, - [SMALL_STATE(5756)] = 165787, - [SMALL_STATE(5757)] = 165795, - [SMALL_STATE(5758)] = 165803, - [SMALL_STATE(5759)] = 165811, - [SMALL_STATE(5760)] = 165819, - [SMALL_STATE(5761)] = 165827, - [SMALL_STATE(5762)] = 165835, - [SMALL_STATE(5763)] = 165843, - [SMALL_STATE(5764)] = 165851, - [SMALL_STATE(5765)] = 165861, - [SMALL_STATE(5766)] = 165869, - [SMALL_STATE(5767)] = 165877, - [SMALL_STATE(5768)] = 165885, - [SMALL_STATE(5769)] = 165893, - [SMALL_STATE(5770)] = 165901, - [SMALL_STATE(5771)] = 165909, - [SMALL_STATE(5772)] = 165917, - [SMALL_STATE(5773)] = 165927, - [SMALL_STATE(5774)] = 165935, - [SMALL_STATE(5775)] = 165943, - [SMALL_STATE(5776)] = 165951, - [SMALL_STATE(5777)] = 165959, - [SMALL_STATE(5778)] = 165967, - [SMALL_STATE(5779)] = 165975, - [SMALL_STATE(5780)] = 165983, - [SMALL_STATE(5781)] = 165991, - [SMALL_STATE(5782)] = 165999, - [SMALL_STATE(5783)] = 166007, - [SMALL_STATE(5784)] = 166015, - [SMALL_STATE(5785)] = 166023, - [SMALL_STATE(5786)] = 166031, - [SMALL_STATE(5787)] = 166039, - [SMALL_STATE(5788)] = 166047, - [SMALL_STATE(5789)] = 166055, - [SMALL_STATE(5790)] = 166065, - [SMALL_STATE(5791)] = 166073, - [SMALL_STATE(5792)] = 166081, - [SMALL_STATE(5793)] = 166089, - [SMALL_STATE(5794)] = 166097, - [SMALL_STATE(5795)] = 166105, - [SMALL_STATE(5796)] = 166113, - [SMALL_STATE(5797)] = 166121, - [SMALL_STATE(5798)] = 166129, - [SMALL_STATE(5799)] = 166137, - [SMALL_STATE(5800)] = 166145, - [SMALL_STATE(5801)] = 166153, - [SMALL_STATE(5802)] = 166161, - [SMALL_STATE(5803)] = 166169, - [SMALL_STATE(5804)] = 166177, - [SMALL_STATE(5805)] = 166185, - [SMALL_STATE(5806)] = 166193, - [SMALL_STATE(5807)] = 166201, - [SMALL_STATE(5808)] = 166209, - [SMALL_STATE(5809)] = 166217, - [SMALL_STATE(5810)] = 166225, - [SMALL_STATE(5811)] = 166233, - [SMALL_STATE(5812)] = 166241, - [SMALL_STATE(5813)] = 166249, - [SMALL_STATE(5814)] = 166257, - [SMALL_STATE(5815)] = 166265, - [SMALL_STATE(5816)] = 166273, - [SMALL_STATE(5817)] = 166281, - [SMALL_STATE(5818)] = 166289, - [SMALL_STATE(5819)] = 166297, - [SMALL_STATE(5820)] = 166305, - [SMALL_STATE(5821)] = 166313, - [SMALL_STATE(5822)] = 166321, - [SMALL_STATE(5823)] = 166329, - [SMALL_STATE(5824)] = 166337, - [SMALL_STATE(5825)] = 166345, - [SMALL_STATE(5826)] = 166353, - [SMALL_STATE(5827)] = 166361, - [SMALL_STATE(5828)] = 166369, - [SMALL_STATE(5829)] = 166377, - [SMALL_STATE(5830)] = 166385, - [SMALL_STATE(5831)] = 166393, - [SMALL_STATE(5832)] = 166401, - [SMALL_STATE(5833)] = 166409, - [SMALL_STATE(5834)] = 166417, - [SMALL_STATE(5835)] = 166425, - [SMALL_STATE(5836)] = 166433, - [SMALL_STATE(5837)] = 166441, - [SMALL_STATE(5838)] = 166449, - [SMALL_STATE(5839)] = 166457, - [SMALL_STATE(5840)] = 166465, - [SMALL_STATE(5841)] = 166473, - [SMALL_STATE(5842)] = 166481, - [SMALL_STATE(5843)] = 166489, - [SMALL_STATE(5844)] = 166497, - [SMALL_STATE(5845)] = 166505, - [SMALL_STATE(5846)] = 166513, - [SMALL_STATE(5847)] = 166521, - [SMALL_STATE(5848)] = 166529, - [SMALL_STATE(5849)] = 166537, - [SMALL_STATE(5850)] = 166545, - [SMALL_STATE(5851)] = 166553, - [SMALL_STATE(5852)] = 166561, - [SMALL_STATE(5853)] = 166569, - [SMALL_STATE(5854)] = 166577, - [SMALL_STATE(5855)] = 166585, - [SMALL_STATE(5856)] = 166593, - [SMALL_STATE(5857)] = 166601, - [SMALL_STATE(5858)] = 166609, - [SMALL_STATE(5859)] = 166617, - [SMALL_STATE(5860)] = 166625, - [SMALL_STATE(5861)] = 166635, - [SMALL_STATE(5862)] = 166643, - [SMALL_STATE(5863)] = 166651, - [SMALL_STATE(5864)] = 166659, - [SMALL_STATE(5865)] = 166667, - [SMALL_STATE(5866)] = 166675, - [SMALL_STATE(5867)] = 166683, - [SMALL_STATE(5868)] = 166691, - [SMALL_STATE(5869)] = 166699, - [SMALL_STATE(5870)] = 166707, - [SMALL_STATE(5871)] = 166715, - [SMALL_STATE(5872)] = 166723, - [SMALL_STATE(5873)] = 166731, - [SMALL_STATE(5874)] = 166739, - [SMALL_STATE(5875)] = 166747, - [SMALL_STATE(5876)] = 166755, - [SMALL_STATE(5877)] = 166763, - [SMALL_STATE(5878)] = 166771, - [SMALL_STATE(5879)] = 166779, - [SMALL_STATE(5880)] = 166787, - [SMALL_STATE(5881)] = 166795, - [SMALL_STATE(5882)] = 166803, - [SMALL_STATE(5883)] = 166811, - [SMALL_STATE(5884)] = 166819, - [SMALL_STATE(5885)] = 166827, - [SMALL_STATE(5886)] = 166835, - [SMALL_STATE(5887)] = 166843, - [SMALL_STATE(5888)] = 166851, - [SMALL_STATE(5889)] = 166859, - [SMALL_STATE(5890)] = 166867, - [SMALL_STATE(5891)] = 166875, - [SMALL_STATE(5892)] = 166883, - [SMALL_STATE(5893)] = 166891, - [SMALL_STATE(5894)] = 166899, - [SMALL_STATE(5895)] = 166907, - [SMALL_STATE(5896)] = 166915, - [SMALL_STATE(5897)] = 166923, - [SMALL_STATE(5898)] = 166931, - [SMALL_STATE(5899)] = 166939, - [SMALL_STATE(5900)] = 166947, - [SMALL_STATE(5901)] = 166955, - [SMALL_STATE(5902)] = 166963, - [SMALL_STATE(5903)] = 166971, - [SMALL_STATE(5904)] = 166979, - [SMALL_STATE(5905)] = 166987, - [SMALL_STATE(5906)] = 166995, - [SMALL_STATE(5907)] = 167003, - [SMALL_STATE(5908)] = 167011, - [SMALL_STATE(5909)] = 167019, - [SMALL_STATE(5910)] = 167027, - [SMALL_STATE(5911)] = 167035, - [SMALL_STATE(5912)] = 167043, - [SMALL_STATE(5913)] = 167053, - [SMALL_STATE(5914)] = 167061, - [SMALL_STATE(5915)] = 167069, - [SMALL_STATE(5916)] = 167077, - [SMALL_STATE(5917)] = 167085, - [SMALL_STATE(5918)] = 167093, - [SMALL_STATE(5919)] = 167101, - [SMALL_STATE(5920)] = 167109, - [SMALL_STATE(5921)] = 167117, - [SMALL_STATE(5922)] = 167125, - [SMALL_STATE(5923)] = 167133, - [SMALL_STATE(5924)] = 167141, - [SMALL_STATE(5925)] = 167149, - [SMALL_STATE(5926)] = 167157, - [SMALL_STATE(5927)] = 167165, - [SMALL_STATE(5928)] = 167173, - [SMALL_STATE(5929)] = 167181, - [SMALL_STATE(5930)] = 167189, - [SMALL_STATE(5931)] = 167197, - [SMALL_STATE(5932)] = 167205, - [SMALL_STATE(5933)] = 167213, - [SMALL_STATE(5934)] = 167221, - [SMALL_STATE(5935)] = 167229, - [SMALL_STATE(5936)] = 167237, - [SMALL_STATE(5937)] = 167245, - [SMALL_STATE(5938)] = 167253, - [SMALL_STATE(5939)] = 167261, - [SMALL_STATE(5940)] = 167269, - [SMALL_STATE(5941)] = 167277, - [SMALL_STATE(5942)] = 167285, - [SMALL_STATE(5943)] = 167293, - [SMALL_STATE(5944)] = 167301, - [SMALL_STATE(5945)] = 167309, - [SMALL_STATE(5946)] = 167317, - [SMALL_STATE(5947)] = 167325, - [SMALL_STATE(5948)] = 167333, - [SMALL_STATE(5949)] = 167341, - [SMALL_STATE(5950)] = 167349, - [SMALL_STATE(5951)] = 167357, - [SMALL_STATE(5952)] = 167365, - [SMALL_STATE(5953)] = 167373, - [SMALL_STATE(5954)] = 167381, - [SMALL_STATE(5955)] = 167389, - [SMALL_STATE(5956)] = 167397, - [SMALL_STATE(5957)] = 167405, - [SMALL_STATE(5958)] = 167413, - [SMALL_STATE(5959)] = 167421, - [SMALL_STATE(5960)] = 167429, - [SMALL_STATE(5961)] = 167437, - [SMALL_STATE(5962)] = 167445, - [SMALL_STATE(5963)] = 167453, - [SMALL_STATE(5964)] = 167461, - [SMALL_STATE(5965)] = 167469, - [SMALL_STATE(5966)] = 167477, - [SMALL_STATE(5967)] = 167485, - [SMALL_STATE(5968)] = 167493, - [SMALL_STATE(5969)] = 167501, - [SMALL_STATE(5970)] = 167509, - [SMALL_STATE(5971)] = 167517, - [SMALL_STATE(5972)] = 167525, - [SMALL_STATE(5973)] = 167533, - [SMALL_STATE(5974)] = 167543, - [SMALL_STATE(5975)] = 167553, - [SMALL_STATE(5976)] = 167561, - [SMALL_STATE(5977)] = 167569, - [SMALL_STATE(5978)] = 167577, - [SMALL_STATE(5979)] = 167585, - [SMALL_STATE(5980)] = 167593, - [SMALL_STATE(5981)] = 167601, - [SMALL_STATE(5982)] = 167609, - [SMALL_STATE(5983)] = 167617, - [SMALL_STATE(5984)] = 167625, - [SMALL_STATE(5985)] = 167633, - [SMALL_STATE(5986)] = 167641, - [SMALL_STATE(5987)] = 167649, - [SMALL_STATE(5988)] = 167657, - [SMALL_STATE(5989)] = 167665, - [SMALL_STATE(5990)] = 167673, - [SMALL_STATE(5991)] = 167681, - [SMALL_STATE(5992)] = 167689, - [SMALL_STATE(5993)] = 167697, - [SMALL_STATE(5994)] = 167705, - [SMALL_STATE(5995)] = 167713, - [SMALL_STATE(5996)] = 167721, - [SMALL_STATE(5997)] = 167729, + [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(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(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(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(2799)] = 114556, + [SMALL_STATE(2800)] = 114606, + [SMALL_STATE(2801)] = 114656, + [SMALL_STATE(2802)] = 114704, + [SMALL_STATE(2803)] = 114752, + [SMALL_STATE(2804)] = 114800, + [SMALL_STATE(2805)] = 114848, + [SMALL_STATE(2806)] = 114898, + [SMALL_STATE(2807)] = 114946, + [SMALL_STATE(2808)] = 114994, + [SMALL_STATE(2809)] = 115042, + [SMALL_STATE(2810)] = 115090, + [SMALL_STATE(2811)] = 115138, + [SMALL_STATE(2812)] = 115186, + [SMALL_STATE(2813)] = 115234, + [SMALL_STATE(2814)] = 115282, + [SMALL_STATE(2815)] = 115332, + [SMALL_STATE(2816)] = 115380, + [SMALL_STATE(2817)] = 115428, + [SMALL_STATE(2818)] = 115478, + [SMALL_STATE(2819)] = 115526, + [SMALL_STATE(2820)] = 115576, + [SMALL_STATE(2821)] = 115624, + [SMALL_STATE(2822)] = 115672, + [SMALL_STATE(2823)] = 115720, + [SMALL_STATE(2824)] = 115770, + [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)] = 117156, + [SMALL_STATE(2869)] = 117213, + [SMALL_STATE(2870)] = 117246, + [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(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(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(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(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(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(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(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(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(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(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(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(3824)] = 140821, + [SMALL_STATE(3825)] = 140834, + [SMALL_STATE(3826)] = 140857, + [SMALL_STATE(3827)] = 140880, + [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(3847)] = 141258, + [SMALL_STATE(3848)] = 141275, + [SMALL_STATE(3849)] = 141292, + [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, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -280082,4832 +277998,4814 @@ 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(1304), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [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), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(493), - [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(515), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5687), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(492), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(418), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [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), + [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), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [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), + [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), + [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(697), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1304), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2892), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5386), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5320), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5491), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4957), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(745), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(450), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5448), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5424), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4665), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4667), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5502), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4538), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4499), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3272), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3652), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5918), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5767), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 88), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 240), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 240), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(45), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(205), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(217), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3495), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3913), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(565), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(369), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1717] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2962), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), - [1743] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3225), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 181), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 181), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 181), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 181), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 126), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 126), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 229), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 229), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 235), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 235), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2829), - [2284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(207), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(420), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [2297] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4903), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(207), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4903), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 245), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 245), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 280), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 280), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 244), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 244), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 279), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 279), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 125), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 125), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 309), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 309), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 150), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 150), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 193), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 193), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 60), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 60), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 146), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 146), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 150), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 150), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 204), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 204), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 150), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 150), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 271), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 271), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 181), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 181), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 60), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 60), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 234), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 234), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 234), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 234), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 272), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 272), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 180), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 180), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 241), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 241), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 276), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 276), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 203), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 203), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 73), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 73), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5662), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1073), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), - [3521] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5949), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1084), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5380), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(495), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3287), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3971), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(242), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_rest_pattern, 2, 0, 0), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3624] = {.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), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(376), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(567), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1483), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1799), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1732), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3237), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2774), + [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), + [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), + [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), + [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), + [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}}, 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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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(1446), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(350), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4478), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4481), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2297), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5830), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3022), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4103), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1749), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1971), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2392), - [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1736), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1988), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2462), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2728), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2789), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2359), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1697), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1985), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4003] = {.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), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 50), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 117), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 117), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 52), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 52), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 53), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 53), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 114), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 114), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 115), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 115), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 116), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 116), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 118), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 118), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 174), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 174), - [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 116), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 116), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 228), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 228), - [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 268), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 268), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 270), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 270), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 15), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 15), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 305), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 305), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 306), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 306), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 327), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 327), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 67), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 196), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 196), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 122), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 122), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(163), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 179), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 179), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 127), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 127), - [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 129), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 130), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 130), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 190), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), - [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(163), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 16), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 16), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 75), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 75), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 145), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 145), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 122), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 122), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(163), - [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 65), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(163), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5316), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [4879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(162), - [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [4906] = {.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), - [4910] = {.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), - [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(168), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [4972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 65), - [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), REDUCE(sym_assignment_expression, 3, 0, 65), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), - [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(521), - [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5024] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), REDUCE(sym__parameter_name, 2, 0, 37), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(169), - [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), - [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), - [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 65), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 47), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(171), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), - [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), - [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5442] = {.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), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(164), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), - [5498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), - [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(165), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(165), - [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(165), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(165), - [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(170), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [5773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(170), - [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(170), - [5779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(170), - [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(593), - [5791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(172), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), - [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), - [5888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 126), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 126), - [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 181), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 181), - [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 200), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 200), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 229), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 229), - [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 153), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 153), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 238), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 238), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 274), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 274), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(2674), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 308), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 308), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 329), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 329), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2671), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 344), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 344), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4103), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), SHIFT(3954), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 60), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 300), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 60), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 255), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 214), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 158), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 255), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 261), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 163), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 216), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 214), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 60), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 60), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 255), - [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), - [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 158), - [6710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5380), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [6783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5468), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 326), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3540), - [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(296), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), - [6895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3540), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 247), - [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 206), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 180), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 265), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 293), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(495), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 286), - [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 125), - [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 311), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 332), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 337), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 346), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 162), - [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 168), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 224), - [7414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3797), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), - [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5755), - [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4023), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), - [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), - [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), - [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), - [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 138), - [7799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 138), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(944), - [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(934), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1071), - [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(942), - [7835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1074), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1109), - [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(931), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), - [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 301), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 314), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), - [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 289), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), - [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4310), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 292), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 331), - [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), - [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), - [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [8010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 184), - [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 184), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 343), - [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1112), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 207), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 208), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(938), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [8052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1034), - [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(935), - [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1037), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 316), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 281), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), - [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 284), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 254), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 160), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), - [8121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), SHIFT_REPEAT(395), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), SHIFT_REPEAT(4542), - [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [8153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4493), - [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4493), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 60), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [8283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 282), - [8302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4552), - [8307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4553), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3765), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 239), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 48), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [8355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), - [8442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [8495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 310), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 262), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [8616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4933), - [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 125), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 48), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 336), + [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), + [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), + [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), + [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), + [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), + [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), + [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, 339), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [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 = false}}, SHIFT(5321), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 180), - [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 206), - [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [8823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 345), - [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 350), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 221), - [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 351), - [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [8878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), - [8881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [8905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), SHIFT_REPEAT(2747), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 60), - [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 247), - [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(567), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 286), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [8950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), - [8965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 201), - [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [9019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 151), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 60), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 151), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [9177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 156), - [9233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [9239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 198), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 182), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [9595] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [9657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [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), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test-parsers/tree-sitter-typescript/tsx/src/tree_sitter/alloc.h b/test-parsers/tree-sitter-typescript/tsx/src/tree_sitter/alloc.h index 1f4466d7..1abdd120 100644 --- a/test-parsers/tree-sitter-typescript/tsx/src/tree_sitter/alloc.h +++ b/test-parsers/tree-sitter-typescript/tsx/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +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 diff --git a/test-parsers/tree-sitter-typescript/typescript/package.json b/test-parsers/tree-sitter-typescript/typescript/package.json index fdec2689..c95deca4 100644 --- a/test-parsers/tree-sitter-typescript/typescript/package.json +++ b/test-parsers/tree-sitter-typescript/typescript/package.json @@ -1,3 +1,9 @@ { - "main": "../bindings/node/typescript" + "main": "../bindings/node/typescript", + "private": true, + "scripts": { + "build": "tree-sitter generate", + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground" + } } diff --git a/test-parsers/tree-sitter-typescript/typescript/src/grammar.json b/test-parsers/tree-sitter-typescript/typescript/src/grammar.json index b8581042..3ac060d9 100644 --- a/test-parsers/tree-sitter-typescript/typescript/src/grammar.json +++ b/test-parsers/tree-sitter-typescript/typescript/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "typescript", "inherits": "javascript", "word": "identifier", @@ -2066,10 +2067,6 @@ "type": "SYMBOL", "name": "primary_expression" }, - { - "type": "SYMBOL", - "name": "glimmer_template" - }, { "type": "SYMBOL", "name": "assignment_expression" @@ -2747,76 +2744,6 @@ } ] }, - "glimmer_template": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "content", - "content": { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_glimmer_template_content" - } - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - } - ] - }, - "_glimmer_template_content": { - "type": "PATTERN", - "value": ".{1,}" - }, - "glimmer_opening_tag": { - "type": "STRING", - "value": "" - }, "_jsx_element": { "type": "CHOICE", "members": [ diff --git a/test-parsers/tree-sitter-typescript/typescript/src/node-types.json b/test-parsers/tree-sitter-typescript/typescript/src/node-types.json index 7793bc8c..cc98309c 100644 --- a/test-parsers/tree-sitter-typescript/typescript/src/node-types.json +++ b/test-parsers/tree-sitter-typescript/typescript/src/node-types.json @@ -85,10 +85,6 @@ "type": "binary_expression", "named": true }, - { - "type": "glimmer_template", - "named": true - }, { "type": "instantiation_expression", "named": true @@ -2717,32 +2713,6 @@ } } }, - { - "type": "glimmer_template", - "named": true, - "fields": { - "close_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_closing_tag", - "named": true - } - ] - }, - "open_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_opening_tag", - "named": true - } - ] - } - } - }, { "type": "identifier", "named": true, @@ -3235,251 +3205,6 @@ ] } }, - { - "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": "labeled_statement", "named": true, @@ -4452,6 +4177,7 @@ { "type": "program", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -4868,10 +4594,6 @@ "type": "escape_sequence", "named": true }, - { - "type": "html_character_reference", - "named": true - }, { "type": "string_fragment", "named": true @@ -5789,10 +5511,6 @@ "type": "/=", "named": false }, - { - "type": "/>", - "named": false - }, { "type": ":", "named": false @@ -5805,10 +5523,6 @@ "type": "<", "named": false }, - { - "type": "", [anon_sym_DOT] = ".", - [anon_sym_DQUOTE] = "\"", - [anon_sym_SQUOTE] = "'", [anon_sym_class] = "class", [anon_sym_async] = "async", [anon_sym_function] = "function", @@ -503,6 +492,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_BANG_EQ] = "!=", [anon_sym_BANG_EQ_EQ] = "!==", [anon_sym_GT_EQ] = ">=", + [anon_sym_GT] = ">", [anon_sym_QMARK_QMARK] = "\?\?", [anon_sym_instanceof] = "instanceof", [anon_sym_TILDE] = "~", @@ -510,6 +500,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_delete] = "delete", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", [sym_unescaped_double_string_fragment] = "string_fragment", [sym_unescaped_single_string_fragment] = "string_fragment", [sym_escape_sequence] = "escape_sequence", @@ -628,7 +620,6 @@ static const char * const ts_symbol_names[] = { [sym_object_assignment_pattern] = "object_assignment_pattern", [sym_array] = "array", [sym_array_pattern] = "array_pattern", - [sym_glimmer_template] = "glimmer_template", [sym_nested_identifier] = "nested_identifier", [sym_class] = "class", [sym_class_declaration] = "class_declaration", @@ -772,7 +763,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1", [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", - [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", @@ -844,13 +834,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_yield] = anon_sym_yield, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [sym__glimmer_template_content] = sym__glimmer_template_content, - [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, - [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, - [anon_sym_GT] = anon_sym_GT, [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_class] = anon_sym_class, [anon_sym_async] = anon_sym_async, [anon_sym_function] = anon_sym_function, @@ -894,6 +878,7 @@ static const TSSymbol ts_symbol_map[] = { [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_GT] = anon_sym_GT, [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, [anon_sym_instanceof] = anon_sym_instanceof, [anon_sym_TILDE] = anon_sym_TILDE, @@ -901,6 +886,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_delete] = anon_sym_delete, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_unescaped_double_string_fragment] = sym__template_chars, [sym_unescaped_single_string_fragment] = sym__template_chars, [sym_escape_sequence] = sym_escape_sequence, @@ -1019,7 +1006,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_object_assignment_pattern] = sym_object_assignment_pattern, [sym_array] = sym_array, [sym_array_pattern] = sym_array_pattern, - [sym_glimmer_template] = sym_glimmer_template, [sym_nested_identifier] = sym_nested_identifier, [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, @@ -1163,7 +1149,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1, [aux_sym_array_repeat1] = aux_sym_array_repeat1, [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, - [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1, [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, @@ -1376,34 +1361,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__glimmer_template_content] = { - .visible = false, - .named = true, - }, - [sym_glimmer_opening_tag] = { - .visible = true, - .named = true, - }, - [sym_glimmer_closing_tag] = { - .visible = true, - .named = true, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, [anon_sym_DOT] = { .visible = true, .named = false, }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, [anon_sym_class] = { .visible = true, .named = false, @@ -1576,6 +1537,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, [anon_sym_QMARK_QMARK] = { .visible = true, .named = false, @@ -1604,6 +1569,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, [sym_unescaped_double_string_fragment] = { .visible = true, .named = true, @@ -2080,10 +2053,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_glimmer_template] = { - .visible = true, - .named = true, - }, [sym_nested_identifier] = { .visible = true, .named = true, @@ -2659,10 +2628,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_glimmer_template_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_sequence_expression_repeat1] = { .visible = false, .named = false, @@ -2755,44 +2720,41 @@ enum ts_field_identifiers { field_argument = 3, field_arguments = 4, field_body = 5, - field_close_tag = 6, - field_condition = 7, - field_consequence = 8, - field_constraint = 9, - field_constructor = 10, - field_content = 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, + field_condition = 6, + field_consequence = 7, + field_constraint = 8, + field_constructor = 9, + field_declaration = 10, + field_decorator = 11, + field_finalizer = 12, + field_flags = 13, + field_function = 14, + field_handler = 15, + field_increment = 16, + field_index = 17, + field_index_type = 18, + field_initializer = 19, + field_key = 20, + field_kind = 21, + field_label = 22, + field_left = 23, + field_module = 24, + field_name = 25, + field_object = 26, + field_operator = 27, + field_optional_chain = 28, + field_parameter = 29, + field_parameters = 30, + field_pattern = 31, + field_property = 32, + field_return_type = 33, + field_right = 34, + field_sign = 35, + field_source = 36, + field_type = 37, + field_type_arguments = 38, + field_type_parameters = 39, + field_value = 40, }; static const char * const ts_field_names[] = { @@ -2802,12 +2764,10 @@ static const char * const ts_field_names[] = { [field_argument] = "argument", [field_arguments] = "arguments", [field_body] = "body", - [field_close_tag] = "close_tag", [field_condition] = "condition", [field_consequence] = "consequence", [field_constraint] = "constraint", [field_constructor] = "constructor", - [field_content] = "content", [field_declaration] = "declaration", [field_decorator] = "decorator", [field_finalizer] = "finalizer", @@ -2825,7 +2785,6 @@ static const char * const ts_field_names[] = { [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", @@ -2852,328 +2811,326 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 8, .length = 1}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 1}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 1}, - [15] = {.index = 3, .length = 1}, + [12] = {.index = 12, .length = 1}, + [14] = {.index = 3, .length = 1}, + [16] = {.index = 13, .length = 2}, [17] = {.index = 15, .length = 2}, [18] = {.index = 17, .length = 2}, [19] = {.index = 19, .length = 2}, [20] = {.index = 21, .length = 2}, - [21] = {.index = 23, .length = 2}, - [22] = {.index = 25, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 2}, [23] = {.index = 26, .length = 2}, [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 2}, - [26] = {.index = 32, .length = 1}, + [25] = {.index = 30, .length = 1}, + [26] = {.index = 31, .length = 2}, [27] = {.index = 33, .length = 2}, [28] = {.index = 35, .length = 2}, [29] = {.index = 37, .length = 2}, - [30] = {.index = 39, .length = 2}, - [34] = {.index = 41, .length = 1}, + [33] = {.index = 39, .length = 1}, + [34] = {.index = 40, .length = 2}, [35] = {.index = 42, .length = 2}, [36] = {.index = 44, .length = 2}, - [37] = {.index = 46, .length = 2}, - [38] = {.index = 48, .length = 1}, + [37] = {.index = 46, .length = 1}, + [38] = {.index = 47, .length = 2}, [39] = {.index = 49, .length = 2}, - [40] = {.index = 51, .length = 2}, - [41] = {.index = 53, .length = 6}, - [42] = {.index = 59, .length = 1}, - [43] = {.index = 60, .length = 3}, - [44] = {.index = 63, .length = 3}, + [40] = {.index = 51, .length = 6}, + [41] = {.index = 57, .length = 1}, + [42] = {.index = 58, .length = 3}, + [43] = {.index = 61, .length = 3}, + [44] = {.index = 64, .length = 2}, [45] = {.index = 66, .length = 2}, [46] = {.index = 68, .length = 2}, [47] = {.index = 70, .length = 2}, - [48] = {.index = 72, .length = 2}, - [49] = {.index = 74, .length = 1}, - [50] = {.index = 75, .length = 3}, - [51] = {.index = 78, .length = 2}, - [52] = {.index = 80, .length = 1}, - [53] = {.index = 81, .length = 2}, - [54] = {.index = 83, .length = 1}, - [55] = {.index = 84, .length = 2}, - [56] = {.index = 86, .length = 4}, - [57] = {.index = 90, .length = 2}, + [48] = {.index = 72, .length = 1}, + [49] = {.index = 73, .length = 2}, + [50] = {.index = 75, .length = 1}, + [51] = {.index = 76, .length = 2}, + [52] = {.index = 78, .length = 1}, + [53] = {.index = 79, .length = 2}, + [54] = {.index = 81, .length = 4}, + [55] = {.index = 85, .length = 2}, + [56] = {.index = 87, .length = 2}, + [57] = {.index = 89, .length = 3}, [58] = {.index = 92, .length = 2}, - [59] = {.index = 94, .length = 3}, - [60] = {.index = 97, .length = 2}, - [61] = {.index = 99, .length = 2}, - [62] = {.index = 101, .length = 2}, - [63] = {.index = 103, .length = 2}, - [64] = {.index = 105, .length = 1}, - [65] = {.index = 106, .length = 2}, - [66] = {.index = 108, .length = 2}, - [67] = {.index = 110, .length = 2}, - [70] = {.index = 106, .length = 2}, - [71] = {.index = 112, .length = 4}, - [72] = {.index = 33, .length = 2}, - [73] = {.index = 37, .length = 2}, - [74] = {.index = 116, .length = 3}, - [75] = {.index = 78, .length = 2}, - [76] = {.index = 78, .length = 2}, - [77] = {.index = 119, .length = 2}, - [78] = {.index = 119, .length = 2}, - [79] = {.index = 121, .length = 3}, - [80] = {.index = 121, .length = 3}, - [81] = {.index = 124, .length = 3}, - [82] = {.index = 127, .length = 2}, - [83] = {.index = 129, .length = 4}, - [84] = {.index = 133, .length = 3}, - [85] = {.index = 136, .length = 2}, - [86] = {.index = 138, .length = 2}, - [87] = {.index = 140, .length = 1}, - [88] = {.index = 141, .length = 1}, - [89] = {.index = 105, .length = 1}, - [90] = {.index = 119, .length = 2}, - [91] = {.index = 33, .length = 2}, - [92] = {.index = 142, .length = 2}, - [93] = {.index = 144, .length = 5}, - [94] = {.index = 149, .length = 1}, - [95] = {.index = 150, .length = 1}, + [59] = {.index = 94, .length = 2}, + [60] = {.index = 96, .length = 2}, + [61] = {.index = 98, .length = 2}, + [62] = {.index = 100, .length = 1}, + [63] = {.index = 101, .length = 2}, + [64] = {.index = 103, .length = 2}, + [65] = {.index = 105, .length = 2}, + [68] = {.index = 101, .length = 2}, + [69] = {.index = 107, .length = 4}, + [70] = {.index = 31, .length = 2}, + [71] = {.index = 35, .length = 2}, + [72] = {.index = 111, .length = 3}, + [73] = {.index = 73, .length = 2}, + [74] = {.index = 73, .length = 2}, + [75] = {.index = 114, .length = 2}, + [76] = {.index = 114, .length = 2}, + [77] = {.index = 116, .length = 3}, + [78] = {.index = 116, .length = 3}, + [79] = {.index = 119, .length = 3}, + [80] = {.index = 122, .length = 2}, + [81] = {.index = 124, .length = 4}, + [82] = {.index = 128, .length = 3}, + [83] = {.index = 131, .length = 2}, + [84] = {.index = 133, .length = 2}, + [85] = {.index = 135, .length = 1}, + [86] = {.index = 136, .length = 1}, + [87] = {.index = 100, .length = 1}, + [88] = {.index = 114, .length = 2}, + [89] = {.index = 31, .length = 2}, + [90] = {.index = 137, .length = 2}, + [91] = {.index = 139, .length = 5}, + [92] = {.index = 144, .length = 1}, + [93] = {.index = 145, .length = 1}, + [94] = {.index = 146, .length = 2}, + [95] = {.index = 148, .length = 3}, [96] = {.index = 151, .length = 2}, [97] = {.index = 153, .length = 3}, - [98] = {.index = 156, .length = 2}, - [99] = {.index = 158, .length = 3}, - [100] = {.index = 161, .length = 6}, - [101] = {.index = 167, .length = 1}, - [102] = {.index = 168, .length = 1}, - [103] = {.index = 169, .length = 3}, - [104] = {.index = 172, .length = 3}, - [105] = {.index = 175, .length = 4}, - [106] = {.index = 179, .length = 2}, - [107] = {.index = 181, .length = 2}, - [108] = {.index = 183, .length = 3}, - [109] = {.index = 186, .length = 4}, - [110] = {.index = 190, .length = 1}, - [111] = {.index = 191, .length = 2}, - [112] = {.index = 193, .length = 1}, + [98] = {.index = 156, .length = 6}, + [99] = {.index = 162, .length = 1}, + [100] = {.index = 163, .length = 1}, + [101] = {.index = 164, .length = 3}, + [102] = {.index = 167, .length = 3}, + [103] = {.index = 170, .length = 4}, + [104] = {.index = 174, .length = 2}, + [105] = {.index = 176, .length = 2}, + [106] = {.index = 178, .length = 3}, + [107] = {.index = 181, .length = 4}, + [108] = {.index = 185, .length = 1}, + [109] = {.index = 186, .length = 2}, + [110] = {.index = 188, .length = 1}, + [111] = {.index = 189, .length = 2}, + [112] = {.index = 191, .length = 3}, [113] = {.index = 194, .length = 2}, - [114] = {.index = 196, .length = 3}, - [115] = {.index = 199, .length = 2}, - [116] = {.index = 201, .length = 4}, - [117] = {.index = 205, .length = 2}, - [118] = {.index = 207, .length = 2}, - [119] = {.index = 209, .length = 4}, - [120] = {.index = 207, .length = 2}, - [121] = {.index = 213, .length = 4}, - [122] = {.index = 217, .length = 4}, - [123] = {.index = 221, .length = 5}, - [124] = {.index = 226, .length = 3}, - [125] = {.index = 229, .length = 2}, - [126] = {.index = 229, .length = 2}, - [127] = {.index = 231, .length = 2}, - [128] = {.index = 233, .length = 1}, - [129] = {.index = 234, .length = 2}, - [130] = {.index = 236, .length = 4}, - [131] = {.index = 240, .length = 4}, - [132] = {.index = 244, .length = 4}, - [133] = {.index = 248, .length = 2}, - [134] = {.index = 250, .length = 2}, + [114] = {.index = 196, .length = 4}, + [115] = {.index = 200, .length = 2}, + [116] = {.index = 202, .length = 2}, + [117] = {.index = 204, .length = 4}, + [118] = {.index = 202, .length = 2}, + [119] = {.index = 208, .length = 4}, + [120] = {.index = 212, .length = 4}, + [121] = {.index = 216, .length = 5}, + [122] = {.index = 221, .length = 3}, + [123] = {.index = 224, .length = 2}, + [124] = {.index = 224, .length = 2}, + [125] = {.index = 226, .length = 2}, + [126] = {.index = 228, .length = 1}, + [127] = {.index = 229, .length = 2}, + [128] = {.index = 231, .length = 4}, + [129] = {.index = 235, .length = 4}, + [130] = {.index = 239, .length = 4}, + [131] = {.index = 243, .length = 2}, + [132] = {.index = 245, .length = 2}, + [133] = {.index = 247, .length = 2}, + [134] = {.index = 249, .length = 3}, [135] = {.index = 252, .length = 2}, - [136] = {.index = 254, .length = 3}, - [137] = {.index = 257, .length = 2}, - [138] = {.index = 259, .length = 4}, - [139] = {.index = 259, .length = 4}, - [140] = {.index = 263, .length = 4}, - [141] = {.index = 263, .length = 4}, - [142] = {.index = 156, .length = 2}, - [143] = {.index = 267, .length = 1}, - [144] = {.index = 267, .length = 1}, - [145] = {.index = 194, .length = 2}, - [146] = {.index = 196, .length = 3}, + [136] = {.index = 254, .length = 4}, + [137] = {.index = 254, .length = 4}, + [138] = {.index = 258, .length = 4}, + [139] = {.index = 258, .length = 4}, + [140] = {.index = 151, .length = 2}, + [141] = {.index = 262, .length = 1}, + [142] = {.index = 262, .length = 1}, + [143] = {.index = 189, .length = 2}, + [144] = {.index = 191, .length = 3}, + [145] = {.index = 263, .length = 2}, + [146] = {.index = 265, .length = 3}, [147] = {.index = 268, .length = 2}, [148] = {.index = 270, .length = 3}, [149] = {.index = 273, .length = 2}, [150] = {.index = 275, .length = 3}, - [151] = {.index = 278, .length = 2}, - [152] = {.index = 280, .length = 3}, - [153] = {.index = 283, .length = 1}, - [154] = {.index = 284, .length = 2}, - [155] = {.index = 286, .length = 2}, - [156] = {.index = 288, .length = 5}, - [157] = {.index = 284, .length = 2}, - [158] = {.index = 293, .length = 1}, - [159] = {.index = 294, .length = 4}, - [160] = {.index = 298, .length = 2}, - [161] = {.index = 300, .length = 1}, - [162] = {.index = 301, .length = 2}, - [163] = {.index = 303, .length = 2}, - [164] = {.index = 305, .length = 2}, - [165] = {.index = 307, .length = 4}, - [166] = {.index = 311, .length = 2}, - [167] = {.index = 313, .length = 3}, - [168] = {.index = 316, .length = 3}, - [169] = {.index = 319, .length = 3}, - [170] = {.index = 322, .length = 4}, - [171] = {.index = 326, .length = 4}, - [172] = {.index = 330, .length = 4}, - [173] = {.index = 334, .length = 5}, - [174] = {.index = 339, .length = 2}, - [175] = {.index = 341, .length = 2}, - [176] = {.index = 343, .length = 1}, - [177] = {.index = 344, .length = 4}, - [178] = {.index = 344, .length = 4}, + [151] = {.index = 278, .length = 1}, + [152] = {.index = 279, .length = 2}, + [153] = {.index = 281, .length = 2}, + [154] = {.index = 283, .length = 5}, + [155] = {.index = 279, .length = 2}, + [156] = {.index = 288, .length = 1}, + [157] = {.index = 289, .length = 4}, + [158] = {.index = 293, .length = 2}, + [159] = {.index = 295, .length = 1}, + [160] = {.index = 296, .length = 2}, + [161] = {.index = 298, .length = 2}, + [162] = {.index = 300, .length = 2}, + [163] = {.index = 302, .length = 4}, + [164] = {.index = 306, .length = 2}, + [165] = {.index = 308, .length = 3}, + [166] = {.index = 311, .length = 3}, + [167] = {.index = 314, .length = 3}, + [168] = {.index = 317, .length = 4}, + [169] = {.index = 321, .length = 4}, + [170] = {.index = 325, .length = 4}, + [171] = {.index = 329, .length = 5}, + [172] = {.index = 334, .length = 2}, + [173] = {.index = 336, .length = 2}, + [174] = {.index = 338, .length = 1}, + [175] = {.index = 339, .length = 4}, + [176] = {.index = 339, .length = 4}, + [177] = {.index = 343, .length = 3}, + [178] = {.index = 346, .length = 2}, [179] = {.index = 348, .length = 3}, [180] = {.index = 351, .length = 2}, [181] = {.index = 353, .length = 3}, [182] = {.index = 356, .length = 2}, - [183] = {.index = 358, .length = 3}, - [184] = {.index = 361, .length = 2}, - [185] = {.index = 361, .length = 2}, - [186] = {.index = 319, .length = 3}, - [187] = {.index = 363, .length = 3}, - [188] = {.index = 366, .length = 3}, - [189] = {.index = 151, .length = 2}, - [190] = {.index = 369, .length = 2}, - [191] = {.index = 371, .length = 3}, - [192] = {.index = 374, .length = 4}, - [193] = {.index = 378, .length = 3}, + [183] = {.index = 356, .length = 2}, + [184] = {.index = 314, .length = 3}, + [185] = {.index = 358, .length = 3}, + [186] = {.index = 361, .length = 3}, + [187] = {.index = 146, .length = 2}, + [188] = {.index = 364, .length = 2}, + [189] = {.index = 366, .length = 3}, + [190] = {.index = 369, .length = 4}, + [191] = {.index = 373, .length = 3}, + [192] = {.index = 376, .length = 3}, + [193] = {.index = 379, .length = 2}, [194] = {.index = 381, .length = 3}, - [195] = {.index = 384, .length = 2}, - [196] = {.index = 386, .length = 3}, - [197] = {.index = 389, .length = 5}, - [198] = {.index = 384, .length = 2}, - [199] = {.index = 394, .length = 3}, - [200] = {.index = 394, .length = 3}, - [201] = {.index = 397, .length = 3}, - [202] = {.index = 400, .length = 2}, - [203] = {.index = 402, .length = 4}, - [204] = {.index = 151, .length = 2}, - [205] = {.index = 406, .length = 1}, - [206] = {.index = 407, .length = 2}, - [207] = {.index = 409, .length = 2}, - [208] = {.index = 411, .length = 2}, - [209] = {.index = 413, .length = 2}, - [210] = {.index = 415, .length = 3}, - [211] = {.index = 418, .length = 1}, + [195] = {.index = 384, .length = 5}, + [196] = {.index = 379, .length = 2}, + [197] = {.index = 389, .length = 3}, + [198] = {.index = 389, .length = 3}, + [199] = {.index = 392, .length = 3}, + [200] = {.index = 395, .length = 2}, + [201] = {.index = 397, .length = 4}, + [202] = {.index = 146, .length = 2}, + [203] = {.index = 401, .length = 1}, + [204] = {.index = 402, .length = 2}, + [205] = {.index = 404, .length = 2}, + [206] = {.index = 406, .length = 2}, + [207] = {.index = 408, .length = 2}, + [208] = {.index = 410, .length = 3}, + [209] = {.index = 413, .length = 1}, + [210] = {.index = 414, .length = 3}, + [211] = {.index = 417, .length = 2}, [212] = {.index = 419, .length = 3}, - [213] = {.index = 422, .length = 2}, - [214] = {.index = 424, .length = 3}, - [215] = {.index = 427, .length = 3}, - [216] = {.index = 430, .length = 3}, - [217] = {.index = 433, .length = 3}, - [218] = {.index = 436, .length = 4}, - [219] = {.index = 440, .length = 5}, - [220] = {.index = 445, .length = 3}, - [221] = {.index = 448, .length = 2}, - [222] = {.index = 450, .length = 2}, - [223] = {.index = 452, .length = 4}, - [224] = {.index = 456, .length = 4}, - [225] = {.index = 460, .length = 4}, + [213] = {.index = 422, .length = 3}, + [214] = {.index = 425, .length = 3}, + [215] = {.index = 428, .length = 3}, + [216] = {.index = 431, .length = 4}, + [217] = {.index = 435, .length = 5}, + [218] = {.index = 440, .length = 3}, + [219] = {.index = 443, .length = 2}, + [220] = {.index = 445, .length = 2}, + [221] = {.index = 447, .length = 4}, + [222] = {.index = 451, .length = 4}, + [223] = {.index = 455, .length = 4}, + [224] = {.index = 459, .length = 3}, + [225] = {.index = 462, .length = 2}, [226] = {.index = 464, .length = 3}, [227] = {.index = 467, .length = 2}, - [228] = {.index = 469, .length = 3}, - [229] = {.index = 472, .length = 2}, - [230] = {.index = 474, .length = 2}, - [231] = {.index = 476, .length = 2}, - [232] = {.index = 478, .length = 1}, - [233] = {.index = 479, .length = 4}, - [234] = {.index = 483, .length = 3}, - [235] = {.index = 486, .length = 4}, - [236] = {.index = 490, .length = 5}, - [237] = {.index = 495, .length = 1}, - [238] = {.index = 496, .length = 2}, - [239] = {.index = 498, .length = 4}, - [240] = {.index = 502, .length = 4}, - [241] = {.index = 506, .length = 4}, - [242] = {.index = 510, .length = 3}, - [243] = {.index = 513, .length = 2}, - [244] = {.index = 515, .length = 4}, - [245] = {.index = 519, .length = 4}, - [246] = {.index = 523, .length = 2}, - [247] = {.index = 525, .length = 2}, - [248] = {.index = 527, .length = 3}, - [249] = {.index = 530, .length = 3}, - [250] = {.index = 533, .length = 2}, - [251] = {.index = 535, .length = 2}, - [252] = {.index = 537, .length = 1}, - [253] = {.index = 538, .length = 1}, - [254] = {.index = 539, .length = 3}, - [255] = {.index = 542, .length = 3}, - [256] = {.index = 545, .length = 3}, - [257] = {.index = 548, .length = 3}, - [258] = {.index = 551, .length = 4}, - [259] = {.index = 555, .length = 2}, - [260] = {.index = 557, .length = 4}, - [261] = {.index = 561, .length = 3}, - [262] = {.index = 564, .length = 2}, - [263] = {.index = 566, .length = 4}, - [264] = {.index = 570, .length = 4}, - [265] = {.index = 574, .length = 4}, - [266] = {.index = 578, .length = 3}, - [268] = {.index = 581, .length = 4}, - [269] = {.index = 585, .length = 5}, - [270] = {.index = 590, .length = 5}, - [271] = {.index = 595, .length = 5}, - [272] = {.index = 600, .length = 4}, - [273] = {.index = 604, .length = 5}, - [274] = {.index = 609, .length = 4}, - [275] = {.index = 613, .length = 4}, - [276] = {.index = 617, .length = 3}, - [277] = {.index = 620, .length = 3}, - [278] = {.index = 623, .length = 3}, - [279] = {.index = 620, .length = 3}, - [280] = {.index = 626, .length = 2}, - [281] = {.index = 628, .length = 4}, - [282] = {.index = 632, .length = 4}, - [283] = {.index = 636, .length = 3}, - [284] = {.index = 639, .length = 2}, + [228] = {.index = 469, .length = 2}, + [229] = {.index = 471, .length = 2}, + [230] = {.index = 473, .length = 1}, + [231] = {.index = 474, .length = 4}, + [232] = {.index = 478, .length = 3}, + [233] = {.index = 481, .length = 4}, + [234] = {.index = 485, .length = 5}, + [235] = {.index = 490, .length = 1}, + [236] = {.index = 491, .length = 2}, + [237] = {.index = 493, .length = 4}, + [238] = {.index = 497, .length = 4}, + [239] = {.index = 501, .length = 4}, + [240] = {.index = 505, .length = 3}, + [241] = {.index = 508, .length = 2}, + [242] = {.index = 510, .length = 4}, + [243] = {.index = 514, .length = 4}, + [244] = {.index = 518, .length = 2}, + [245] = {.index = 520, .length = 2}, + [246] = {.index = 522, .length = 3}, + [247] = {.index = 525, .length = 3}, + [248] = {.index = 528, .length = 2}, + [249] = {.index = 530, .length = 2}, + [250] = {.index = 532, .length = 1}, + [251] = {.index = 533, .length = 1}, + [252] = {.index = 534, .length = 3}, + [253] = {.index = 537, .length = 3}, + [254] = {.index = 540, .length = 3}, + [255] = {.index = 543, .length = 3}, + [256] = {.index = 546, .length = 4}, + [257] = {.index = 550, .length = 2}, + [258] = {.index = 552, .length = 4}, + [259] = {.index = 556, .length = 3}, + [260] = {.index = 559, .length = 2}, + [261] = {.index = 561, .length = 4}, + [262] = {.index = 565, .length = 4}, + [263] = {.index = 569, .length = 4}, + [264] = {.index = 573, .length = 3}, + [266] = {.index = 576, .length = 4}, + [267] = {.index = 580, .length = 5}, + [268] = {.index = 585, .length = 5}, + [269] = {.index = 590, .length = 5}, + [270] = {.index = 595, .length = 4}, + [271] = {.index = 599, .length = 5}, + [272] = {.index = 604, .length = 4}, + [273] = {.index = 608, .length = 4}, + [274] = {.index = 612, .length = 3}, + [275] = {.index = 615, .length = 3}, + [276] = {.index = 618, .length = 3}, + [277] = {.index = 615, .length = 3}, + [278] = {.index = 621, .length = 2}, + [279] = {.index = 623, .length = 4}, + [280] = {.index = 627, .length = 4}, + [281] = {.index = 631, .length = 3}, + [282] = {.index = 634, .length = 2}, + [283] = {.index = 636, .length = 2}, + [284] = {.index = 638, .length = 3}, [285] = {.index = 641, .length = 2}, - [286] = {.index = 643, .length = 3}, - [287] = {.index = 646, .length = 2}, - [288] = {.index = 648, .length = 2}, - [289] = {.index = 650, .length = 1}, - [290] = {.index = 651, .length = 3}, - [291] = {.index = 654, .length = 3}, - [292] = {.index = 657, .length = 4}, - [293] = {.index = 661, .length = 4}, - [294] = {.index = 665, .length = 3}, - [295] = {.index = 668, .length = 3}, - [296] = {.index = 671, .length = 2}, - [297] = {.index = 673, .length = 4}, - [298] = {.index = 677, .length = 5}, - [299] = {.index = 682, .length = 5}, - [300] = {.index = 687, .length = 5}, - [301] = {.index = 692, .length = 4}, - [302] = {.index = 696, .length = 4}, - [303] = {.index = 700, .length = 3}, - [304] = {.index = 703, .length = 3}, - [305] = {.index = 703, .length = 3}, - [306] = {.index = 706, .length = 2}, + [286] = {.index = 643, .length = 2}, + [287] = {.index = 645, .length = 1}, + [288] = {.index = 646, .length = 3}, + [289] = {.index = 649, .length = 3}, + [290] = {.index = 652, .length = 4}, + [291] = {.index = 656, .length = 4}, + [292] = {.index = 660, .length = 3}, + [293] = {.index = 663, .length = 3}, + [294] = {.index = 666, .length = 2}, + [295] = {.index = 668, .length = 4}, + [296] = {.index = 672, .length = 5}, + [297] = {.index = 677, .length = 5}, + [298] = {.index = 682, .length = 5}, + [299] = {.index = 687, .length = 4}, + [300] = {.index = 691, .length = 4}, + [301] = {.index = 695, .length = 3}, + [302] = {.index = 698, .length = 3}, + [303] = {.index = 698, .length = 3}, + [304] = {.index = 701, .length = 2}, + [305] = {.index = 703, .length = 2}, + [306] = {.index = 705, .length = 3}, [307] = {.index = 708, .length = 2}, - [308] = {.index = 710, .length = 3}, - [309] = {.index = 713, .length = 2}, - [310] = {.index = 715, .length = 2}, - [311] = {.index = 717, .length = 4}, - [312] = {.index = 721, .length = 3}, - [313] = {.index = 724, .length = 3}, - [314] = {.index = 727, .length = 4}, - [315] = {.index = 731, .length = 3}, - [316] = {.index = 734, .length = 3}, - [317] = {.index = 737, .length = 2}, - [318] = {.index = 739, .length = 5}, - [319] = {.index = 744, .length = 5}, - [320] = {.index = 749, .length = 4}, - [321] = {.index = 749, .length = 4}, - [322] = {.index = 753, .length = 4}, - [323] = {.index = 757, .length = 3}, - [324] = {.index = 760, .length = 2}, - [325] = {.index = 762, .length = 2}, - [326] = {.index = 764, .length = 3}, - [327] = {.index = 767, .length = 4}, - [328] = {.index = 771, .length = 4}, - [329] = {.index = 775, .length = 3}, - [330] = {.index = 778, .length = 3}, - [331] = {.index = 781, .length = 4}, - [332] = {.index = 785, .length = 3}, - [333] = {.index = 788, .length = 3}, - [334] = {.index = 791, .length = 5}, - [335] = {.index = 796, .length = 3}, - [336] = {.index = 799, .length = 4}, - [337] = {.index = 803, .length = 4}, - [338] = {.index = 807, .length = 3}, - [339] = {.index = 810, .length = 3}, - [340] = {.index = 813, .length = 4}, - [341] = {.index = 817, .length = 4}, + [308] = {.index = 710, .length = 2}, + [309] = {.index = 712, .length = 4}, + [310] = {.index = 716, .length = 3}, + [311] = {.index = 719, .length = 3}, + [312] = {.index = 722, .length = 4}, + [313] = {.index = 726, .length = 3}, + [314] = {.index = 729, .length = 3}, + [315] = {.index = 732, .length = 2}, + [316] = {.index = 734, .length = 5}, + [317] = {.index = 739, .length = 5}, + [318] = {.index = 744, .length = 4}, + [319] = {.index = 744, .length = 4}, + [320] = {.index = 748, .length = 4}, + [321] = {.index = 752, .length = 3}, + [322] = {.index = 755, .length = 2}, + [323] = {.index = 757, .length = 2}, + [324] = {.index = 759, .length = 3}, + [325] = {.index = 762, .length = 4}, + [326] = {.index = 766, .length = 4}, + [327] = {.index = 770, .length = 3}, + [328] = {.index = 773, .length = 3}, + [329] = {.index = 776, .length = 4}, + [330] = {.index = 780, .length = 3}, + [331] = {.index = 783, .length = 3}, + [332] = {.index = 786, .length = 5}, + [333] = {.index = 791, .length = 3}, + [334] = {.index = 794, .length = 4}, + [335] = {.index = 798, .length = 4}, + [336] = {.index = 802, .length = 3}, + [337] = {.index = 805, .length = 3}, + [338] = {.index = 808, .length = 4}, + [339] = {.index = 812, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3199,1102 +3156,1095 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [11] = {field_body, 1}, [12] = - {field_close_tag, 1}, - {field_open_tag, 0}, - [14] = {field_constructor, 1}, - [15] = + [13] = {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [17] = + [15] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, - [19] = + [17] = {field_argument, 0, .inherited = true}, {field_operator, 0, .inherited = true}, - [21] = + [19] = {field_arguments, 1}, {field_function, 0}, - [23] = + [21] = {field_argument, 0}, {field_operator, 1}, - [25] = + [23] = {field_type_arguments, 1}, - [26] = + [24] = {field_parameters, 0}, {field_return_type, 1}, - [28] = + [26] = {field_parameters, 1}, {field_type_parameters, 0}, - [30] = + [28] = {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, - [32] = + [30] = {field_declaration, 2}, - [33] = + [31] = {field_left, 0}, {field_right, 2}, - [35] = + [33] = {field_body, 2}, {field_label, 0}, - [37] = + [35] = {field_body, 2}, {field_parameter, 0}, - [39] = + [37] = {field_body, 1}, {field_name, 0}, - [41] = + [39] = {field_source, 1}, - [42] = + [40] = {field_body, 2}, {field_object, 1}, - [44] = + [42] = {field_name, 0}, {field_value, 1, .inherited = true}, - [46] = + [44] = {field_name, 0}, {field_type, 1}, - [48] = + [46] = {field_kind, 0}, - [49] = + [47] = {field_condition, 1}, {field_consequence, 2}, - [51] = + [49] = {field_body, 2}, {field_value, 1}, - [53] = + [51] = {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}, - [59] = + [57] = {field_pattern, 1}, - [60] = + [58] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [63] = + [61] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, - [66] = + [64] = {field_decorator, 0, .inherited = true}, {field_pattern, 1}, - [68] = + [66] = {field_body, 2}, {field_condition, 1}, - [70] = + [68] = {field_body, 1}, {field_handler, 2}, - [72] = + [70] = {field_body, 1}, {field_finalizer, 2}, - [74] = + [72] = {field_label, 1}, - [75] = - {field_close_tag, 2}, - {field_content, 1}, - {field_open_tag, 0}, - [78] = + [73] = {field_body, 2}, {field_name, 1}, - [80] = + [75] = {field_value, 0}, - [81] = + [76] = {field_type_arguments, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [83] = + [78] = {field_body, 2}, - [84] = + [79] = {field_body, 2}, {field_type_parameters, 1}, - [86] = + [81] = {field_body, 2}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [90] = + [85] = {field_arguments, 2}, {field_constructor, 1}, - [92] = + [87] = {field_constructor, 1}, {field_type_arguments, 2}, - [94] = + [89] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [97] = + [92] = {field_object, 1, .inherited = true}, {field_property, 1, .inherited = true}, - [99] = + [94] = {field_index, 1, .inherited = true}, {field_object, 1, .inherited = true}, - [101] = + [96] = {field_arguments, 1, .inherited = true}, {field_function, 1, .inherited = true}, - [103] = + [98] = {field_function, 1, .inherited = true}, {field_type_arguments, 1, .inherited = true}, - [105] = + [100] = {field_name, 1}, - [106] = + [101] = {field_name, 0}, {field_type_arguments, 1}, - [108] = + [103] = {field_name, 0}, {field_value, 1}, - [110] = + [105] = {field_constraint, 1}, {field_name, 0}, - [112] = + [107] = {field_arguments, 1}, {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [116] = + [111] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [119] = + [114] = {field_object, 0}, {field_property, 2}, - [121] = + [116] = {field_object, 0}, {field_optional_chain, 1}, {field_property, 2}, - [124] = + [119] = {field_arguments, 2}, {field_function, 0}, {field_type_arguments, 1}, - [127] = + [122] = {field_arguments, 2}, {field_function, 0}, - [129] = + [124] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [133] = + [128] = {field_parameters, 1}, {field_return_type, 2}, {field_type_parameters, 0}, - [136] = + [131] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [138] = + [133] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [140] = + [135] = {field_source, 2, .inherited = true}, - [141] = + [136] = {field_value, 2}, - [142] = + [137] = {field_key, 0}, {field_value, 2}, - [144] = + [139] = {field_body, 2}, {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [149] = + [144] = {field_source, 2}, - [150] = + [145] = {field_value, 1}, - [151] = + [146] = {field_name, 0}, {field_type, 2}, - [153] = + [148] = {field_name, 0}, {field_type, 1}, {field_value, 2, .inherited = true}, - [156] = + [151] = {field_body, 3}, {field_name, 2}, - [158] = + [153] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [161] = + [156] = {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}, - [167] = + [162] = {field_type, 2}, - [168] = + [163] = {field_pattern, 2}, - [169] = + [164] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 2, .inherited = true}, - [172] = + [167] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, - [175] = + [170] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, {field_value, 2, .inherited = true}, - [179] = + [174] = {field_decorator, 0, .inherited = true}, {field_pattern, 2}, - [181] = + [176] = {field_body, 1}, {field_condition, 3}, - [183] = + [178] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [186] = + [181] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [190] = + [185] = {field_decorator, 0, .inherited = true}, - [191] = + [186] = {field_decorator, 0, .inherited = true}, {field_name, 1}, - [193] = + [188] = {field_decorator, 1, .inherited = true}, - [194] = + [189] = {field_body, 3}, {field_name, 1}, - [196] = + [191] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [199] = + [194] = {field_type_arguments, 1}, {field_value, 0}, - [201] = + [196] = {field_type_arguments, 1, .inherited = true}, {field_type_arguments, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [205] = + [200] = {field_body, 3}, {field_type_parameters, 1}, - [207] = + [202] = {field_body, 3}, {field_parameter, 1}, - [209] = + [204] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [213] = + [208] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [217] = + [212] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [221] = + [216] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [226] = + [221] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [229] = + [224] = {field_left, 1}, {field_right, 3}, - [231] = + [226] = {field_flags, 3}, {field_pattern, 1}, - [233] = + [228] = {field_parameters, 1}, - [234] = + [229] = {field_function, 0}, {field_type_arguments, 1}, - [236] = + [231] = {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_type_arguments, 1}, - [240] = + [235] = {field_arguments, 1}, {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, - [244] = + [239] = {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, {field_type_arguments, 1}, - [248] = + [243] = {field_name, 1}, {field_value, 2}, - [250] = + [245] = {field_constraint, 2}, {field_name, 1}, - [252] = + [247] = {field_module, 0}, {field_name, 2}, - [254] = + [249] = {field_constraint, 1}, {field_name, 0}, {field_value, 2}, - [257] = + [252] = {field_parameters, 0}, {field_return_type, 2}, - [259] = + [254] = {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_property, 2}, - [263] = + [258] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_object, 0}, {field_property, 2}, - [267] = + [262] = {field_type, 1}, - [268] = + [263] = {field_index, 2}, {field_object, 0}, - [270] = + [265] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [273] = + [268] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [275] = + [270] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [278] = + [273] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [280] = + [275] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [283] = + [278] = {field_source, 3, .inherited = true}, - [284] = + [279] = {field_alias, 2}, {field_name, 0}, - [286] = + [281] = {field_name, 1}, {field_value, 3}, - [288] = + [283] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [293] = + [288] = {field_pattern, 3}, - [294] = + [289] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [298] = + [293] = {field_decorator, 0, .inherited = true}, {field_pattern, 3}, - [300] = + [295] = {field_name, 2}, - [301] = + [296] = {field_name, 1}, {field_value, 2, .inherited = true}, - [303] = + [298] = {field_name, 1}, {field_type, 2}, - [305] = + [300] = {field_name, 0}, {field_value, 2, .inherited = true}, - [307] = + [302] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [311] = + [306] = {field_decorator, 0, .inherited = true}, {field_name, 2}, - [313] = + [308] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 2, .inherited = true}, - [316] = + [311] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, - [319] = + [314] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [322] = + [317] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [326] = + [321] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [330] = + [325] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [334] = + [329] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [339] = + [334] = {field_parameters, 1}, {field_type, 2}, - [341] = + [336] = {field_parameters, 2}, {field_type_parameters, 1}, - [343] = + [338] = {field_parameters, 2}, - [344] = + [339] = {field_index, 0, .inherited = true}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 2}, - [348] = + [343] = {field_constraint, 2}, {field_name, 1}, {field_value, 3}, - [351] = + [346] = {field_parameters, 1}, {field_type, 3}, - [353] = + [348] = {field_parameters, 1}, {field_return_type, 3}, {field_type_parameters, 0}, - [356] = + [351] = {field_body, 4}, {field_name, 2}, - [358] = + [353] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [361] = + [356] = {field_type, 1}, {field_type, 2, .inherited = true}, - [363] = + [358] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [366] = + [361] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [369] = + [364] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [371] = + [366] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [374] = + [369] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [378] = + [373] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [381] = + [376] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [384] = + [379] = {field_alias, 3}, {field_name, 1}, - [386] = + [381] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [389] = + [384] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [394] = + [389] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [397] = + [392] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [400] = + [395] = {field_decorator, 0, .inherited = true}, {field_pattern, 4}, - [402] = + [397] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [406] = + [401] = {field_type, 3}, - [407] = + [402] = {field_name, 2}, {field_value, 3, .inherited = true}, - [409] = + [404] = {field_name, 2}, {field_type, 3}, - [411] = + [406] = {field_name, 1}, {field_value, 3, .inherited = true}, - [413] = + [408] = {field_name, 1}, {field_type, 3}, - [415] = + [410] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [418] = + [413] = {field_name, 3}, - [419] = + [414] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [422] = + [417] = {field_decorator, 0, .inherited = true}, {field_name, 3}, - [424] = + [419] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 3, .inherited = true}, - [427] = + [422] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, - [430] = + [425] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 3, .inherited = true}, - [433] = + [428] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, - [436] = + [431] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [440] = + [435] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [445] = + [440] = {field_parameters, 2}, {field_type, 3}, {field_type_parameters, 1}, - [448] = + [443] = {field_parameters, 2}, {field_type, 3}, - [450] = + [445] = {field_parameters, 3}, {field_type_parameters, 2}, - [452] = + [447] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [456] = + [451] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [460] = + [455] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [464] = + [459] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [467] = + [462] = {field_parameters, 2}, {field_type, 4}, - [469] = + [464] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [472] = + [467] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [474] = + [469] = {field_name, 1}, {field_name, 2, .inherited = true}, - [476] = + [471] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [478] = + [473] = {field_name, 2, .inherited = true}, - [479] = + [474] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [483] = + [478] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [486] = + [481] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [490] = + [485] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [495] = + [490] = {field_source, 4}, - [496] = + [491] = {field_body, 3}, {field_value, 1}, - [498] = + [493] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [502] = + [497] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [506] = + [501] = {field_body, 6}, {field_condition, 3}, {field_condition, 4}, {field_initializer, 2}, - [510] = + [505] = {field_body, 6}, {field_condition, 4}, {field_initializer, 2}, - [513] = + [508] = {field_body, 4}, {field_parameter, 2}, - [515] = + [510] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [519] = + [514] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [523] = + [518] = {field_name, 2}, {field_value, 4, .inherited = true}, - [525] = + [520] = {field_name, 2}, {field_type, 4}, - [527] = + [522] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [530] = + [525] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [533] = + [528] = {field_name, 3}, {field_value, 4, .inherited = true}, - [535] = + [530] = {field_name, 3}, {field_type, 4}, - [537] = + [532] = {field_type, 4}, - [538] = + [533] = {field_name, 4}, - [539] = + [534] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 4, .inherited = true}, - [542] = + [537] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, - [545] = + [540] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 4, .inherited = true}, - [548] = + [543] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, - [551] = + [546] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [555] = + [550] = {field_decorator, 0, .inherited = true}, {field_name, 4}, - [557] = + [552] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [561] = + [556] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [564] = + [559] = {field_index, 3}, {field_object, 0}, - [566] = + [561] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [570] = + [565] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [574] = + [569] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [578] = + [573] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [581] = + [576] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [585] = + [580] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [590] = + [585] = {field_body, 6}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [595] = + [590] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [600] = + [595] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, - [604] = + [599] = {field_body, 7}, {field_condition, 3}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [609] = + [604] = {field_body, 7}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [613] = + [608] = {field_body, 7}, {field_condition, 4}, {field_condition, 5}, {field_initializer, 2}, - [617] = + [612] = {field_body, 5}, {field_parameter, 2}, {field_type, 3}, - [620] = + [615] = {field_index_type, 3}, {field_name, 1}, {field_type, 5}, - [623] = + [618] = {field_alias, 4}, {field_name, 0}, {field_type, 2}, - [626] = + [621] = {field_sign, 0}, {field_type, 5}, - [628] = + [623] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [632] = + [627] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [636] = + [631] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [639] = + [634] = {field_name, 3}, {field_value, 5, .inherited = true}, - [641] = + [636] = {field_name, 3}, {field_type, 5}, - [643] = + [638] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [646] = + [641] = {field_name, 4}, {field_value, 5, .inherited = true}, - [648] = + [643] = {field_name, 4}, {field_type, 5}, - [650] = + [645] = {field_name, 5}, - [651] = + [646] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 5, .inherited = true}, - [654] = + [649] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, - [657] = + [652] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [661] = + [656] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [665] = + [660] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 5, .inherited = true}, - [668] = + [663] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, - [671] = + [666] = {field_decorator, 0, .inherited = true}, {field_name, 5}, - [673] = + [668] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [677] = + [672] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [682] = + [677] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [687] = + [682] = {field_body, 8}, {field_condition, 4}, {field_condition, 5}, {field_increment, 6}, {field_initializer, 2}, - [692] = + [687] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [696] = + [691] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [700] = + [695] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [703] = + [698] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [706] = + [701] = {field_name, 4}, {field_value, 6, .inherited = true}, - [708] = + [703] = {field_name, 4}, {field_type, 6}, - [710] = + [705] = {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [713] = + [708] = {field_name, 5}, {field_value, 6, .inherited = true}, - [715] = + [710] = {field_name, 5}, {field_type, 6}, - [717] = + [712] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [721] = + [716] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 6, .inherited = true}, - [724] = + [719] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, - [727] = + [722] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [731] = + [726] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 6, .inherited = true}, - [734] = + [729] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, - [737] = + [732] = {field_decorator, 0, .inherited = true}, {field_name, 6}, - [739] = + [734] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [744] = + [739] = {field_body, 8}, {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [749] = + [744] = {field_index_type, 5}, {field_name, 3}, {field_sign, 0}, {field_type, 7}, - [753] = + [748] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [757] = + [752] = {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [760] = + [755] = {field_name, 5}, {field_value, 7, .inherited = true}, - [762] = + [757] = {field_name, 5}, {field_type, 7}, - [764] = + [759] = {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [767] = + [762] = {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [771] = + [766] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [775] = + [770] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 7, .inherited = true}, - [778] = + [773] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, - [781] = + [776] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [785] = + [780] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 7, .inherited = true}, - [788] = + [783] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, - [791] = + [786] = {field_body, 9}, {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [796] = + [791] = {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [799] = + [794] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [803] = + [798] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [807] = + [802] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 8, .inherited = true}, - [810] = + [805] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, - [813] = + [808] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, {field_value, 8, .inherited = true}, - [817] = + [812] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, @@ -4309,201 +4259,201 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [7] = { [0] = alias_sym_property_identifier, }, - [14] = { + [13] = { [0] = alias_sym_type_identifier, }, - [15] = { + [14] = { [0] = alias_sym_type_identifier, }, - [16] = { + [15] = { [0] = alias_sym_this_type, }, - [27] = { + [26] = { [0] = sym_identifier, }, - [28] = { + [27] = { [0] = alias_sym_statement_identifier, }, - [29] = { + [28] = { [0] = sym_identifier, }, - [31] = { + [30] = { [1] = alias_sym_shorthand_property_identifier, }, - [32] = { + [31] = { [1] = alias_sym_shorthand_property_identifier_pattern, }, - [33] = { + [32] = { [1] = sym_identifier, }, - [49] = { + [48] = { [1] = alias_sym_statement_identifier, }, - [51] = { + [49] = { [1] = alias_sym_type_identifier, }, - [64] = { + [62] = { [1] = alias_sym_type_identifier, }, - [65] = { + [63] = { [0] = alias_sym_type_identifier, }, - [66] = { + [64] = { [0] = alias_sym_type_identifier, }, - [67] = { + [65] = { [0] = alias_sym_type_identifier, }, - [68] = { + [66] = { [1] = alias_sym_type_identifier, }, - [69] = { + [67] = { [1] = anon_sym_unique, }, - [75] = { + [73] = { [1] = alias_sym_type_identifier, [2] = alias_sym_interface_body, }, - [77] = { + [75] = { [2] = alias_sym_property_identifier, }, - [79] = { + [77] = { [2] = alias_sym_property_identifier, }, - [90] = { + [88] = { [0] = sym_member_expression, [2] = alias_sym_property_identifier, }, - [91] = { + [89] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [113] = { + [111] = { [1] = alias_sym_type_identifier, }, - [114] = { + [112] = { [1] = alias_sym_type_identifier, }, - [118] = { + [116] = { [1] = sym_identifier, }, - [125] = { + [123] = { [1] = sym_identifier, }, - [133] = { + [131] = { [1] = alias_sym_type_identifier, }, - [134] = { + [132] = { [1] = alias_sym_type_identifier, }, - [135] = { + [133] = { [2] = alias_sym_type_identifier, }, - [136] = { + [134] = { [0] = alias_sym_type_identifier, }, - [138] = { + [136] = { [2] = alias_sym_property_identifier, }, - [140] = { + [138] = { [2] = alias_sym_property_identifier, }, - [142] = { + [140] = { [2] = alias_sym_type_identifier, }, - [143] = { + [141] = { [1] = alias_sym_type_identifier, }, - [145] = { + [143] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [146] = { + [144] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [150] = { + [148] = { [2] = alias_sym_type_identifier, }, - [155] = { + [153] = { [1] = alias_sym_type_identifier, }, - [157] = { + [155] = { [0] = sym_identifier, }, - [169] = { + [167] = { [1] = alias_sym_type_identifier, }, - [177] = { + [175] = { [2] = alias_sym_property_identifier, }, - [179] = { + [177] = { [1] = alias_sym_type_identifier, }, - [182] = { + [180] = { [2] = alias_sym_type_identifier, }, - [183] = { + [181] = { [2] = alias_sym_type_identifier, }, - [184] = { + [182] = { [1] = alias_sym_type_identifier, }, - [186] = { + [184] = { [1] = alias_sym_type_identifier, [4] = alias_sym_interface_body, }, - [189] = { + [187] = { [0] = sym_identifier, }, - [191] = { + [189] = { [2] = alias_sym_type_identifier, }, - [192] = { + [190] = { [2] = alias_sym_type_identifier, }, - [194] = { + [192] = { [3] = alias_sym_type_identifier, }, - [196] = { + [194] = { [1] = alias_sym_type_identifier, }, - [198] = { + [196] = { [1] = sym_identifier, }, - [199] = { + [197] = { [1] = sym_identifier, }, - [204] = { + [202] = { [0] = alias_sym_type_identifier, }, - [228] = { + [226] = { [2] = alias_sym_type_identifier, }, - [233] = { + [231] = { [2] = alias_sym_type_identifier, }, - [234] = { + [232] = { [3] = alias_sym_type_identifier, }, - [235] = { + [233] = { [3] = alias_sym_type_identifier, }, - [267] = { + [265] = { [3] = alias_sym_property_identifier, }, - [268] = { + [266] = { [3] = alias_sym_type_identifier, }, - [277] = { + [275] = { [1] = sym_identifier, }, - [278] = { + [276] = { [0] = alias_sym_type_identifier, }, - [304] = { + [302] = { [2] = sym_identifier, }, - [320] = { + [318] = { [3] = sym_identifier, }, }; @@ -4537,121 +4487,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 15, + [15] = 14, [16] = 16, [17] = 17, [18] = 14, - [19] = 16, + [19] = 19, [20] = 14, - [21] = 16, - [22] = 16, - [23] = 14, + [21] = 19, + [22] = 14, + [23] = 19, [24] = 14, - [25] = 16, - [26] = 14, - [27] = 16, - [28] = 16, - [29] = 29, - [30] = 14, + [25] = 19, + [26] = 19, + [27] = 14, + [28] = 19, + [29] = 19, + [30] = 30, [31] = 31, [32] = 32, [33] = 33, [34] = 34, [35] = 35, - [36] = 34, + [36] = 36, [37] = 37, - [38] = 38, + [38] = 31, [39] = 39, - [40] = 40, - [41] = 41, + [40] = 31, + [41] = 33, [42] = 42, [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, - [48] = 40, - [49] = 35, - [50] = 50, - [51] = 31, - [52] = 41, - [53] = 42, - [54] = 43, - [55] = 32, - [56] = 38, - [57] = 44, - [58] = 45, - [59] = 46, - [60] = 38, + [48] = 48, + [49] = 49, + [50] = 39, + [51] = 42, + [52] = 32, + [53] = 31, + [54] = 54, + [55] = 43, + [56] = 31, + [57] = 37, + [58] = 44, + [59] = 45, + [60] = 46, [61] = 47, - [62] = 37, - [63] = 38, - [64] = 38, - [65] = 33, - [66] = 38, - [67] = 38, - [68] = 38, - [69] = 38, - [70] = 50, - [71] = 38, + [62] = 48, + [63] = 31, + [64] = 49, + [65] = 34, + [66] = 31, + [67] = 31, + [68] = 31, + [69] = 31, + [70] = 35, + [71] = 36, [72] = 72, [73] = 72, [74] = 72, [75] = 75, [76] = 76, - [77] = 77, + [77] = 76, [78] = 78, [79] = 79, [80] = 80, - [81] = 81, - [82] = 77, + [81] = 76, + [82] = 75, [83] = 83, - [84] = 83, - [85] = 77, + [84] = 84, + [85] = 85, [86] = 86, [87] = 87, - [88] = 86, - [89] = 89, + [88] = 88, + [89] = 86, [90] = 86, [91] = 86, [92] = 86, [93] = 93, [94] = 94, [95] = 94, - [96] = 96, - [97] = 97, - [98] = 97, - [99] = 96, + [96] = 87, + [97] = 94, + [98] = 98, + [99] = 99, [100] = 93, - [101] = 93, + [101] = 98, [102] = 94, [103] = 94, [104] = 94, - [105] = 94, - [106] = 87, - [107] = 87, + [105] = 93, + [106] = 99, + [107] = 93, [108] = 94, - [109] = 93, - [110] = 89, + [109] = 109, + [110] = 88, [111] = 111, [112] = 112, [113] = 94, - [114] = 114, - [115] = 97, - [116] = 87, + [114] = 87, + [115] = 115, + [116] = 93, [117] = 117, - [118] = 93, - [119] = 93, + [118] = 94, + [119] = 98, [120] = 94, - [121] = 97, - [122] = 122, - [123] = 94, + [121] = 93, + [122] = 98, + [123] = 87, [124] = 94, [125] = 94, - [126] = 114, + [126] = 93, [127] = 111, [128] = 93, - [129] = 93, + [129] = 112, [130] = 94, [131] = 94, [132] = 93, @@ -4661,27 +4611,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [136] = 94, [137] = 137, [138] = 137, - [139] = 137, + [139] = 93, [140] = 137, - [141] = 93, + [141] = 137, [142] = 137, - [143] = 137, + [143] = 143, [144] = 137, [145] = 94, [146] = 137, - [147] = 147, + [147] = 137, [148] = 137, [149] = 137, [150] = 150, [151] = 151, [152] = 151, [153] = 151, - [154] = 154, + [154] = 151, [155] = 151, - [156] = 151, - [157] = 157, + [156] = 156, + [157] = 151, [158] = 151, - [159] = 151, + [159] = 159, [160] = 151, [161] = 151, [162] = 151, @@ -4696,22 +4646,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [171] = 163, [172] = 163, [173] = 173, - [174] = 174, - [175] = 174, + [174] = 173, + [175] = 173, [176] = 176, [177] = 173, - [178] = 176, - [179] = 173, - [180] = 176, - [181] = 174, - [182] = 182, - [183] = 183, - [184] = 173, - [185] = 173, - [186] = 183, - [187] = 183, - [188] = 173, - [189] = 182, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 180, + [182] = 176, + [183] = 173, + [184] = 179, + [185] = 176, + [186] = 180, + [187] = 173, + [188] = 179, + [189] = 178, [190] = 173, [191] = 173, [192] = 173, @@ -4719,31 +4669,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [194] = 194, [195] = 194, [196] = 196, - [197] = 196, - [198] = 198, - [199] = 198, + [197] = 197, + [198] = 197, + [199] = 197, [200] = 200, - [201] = 196, - [202] = 200, - [203] = 198, - [204] = 200, - [205] = 205, - [206] = 205, - [207] = 207, - [208] = 205, + [201] = 201, + [202] = 196, + [203] = 203, + [204] = 204, + [205] = 204, + [206] = 206, + [207] = 204, + [208] = 196, [209] = 209, - [210] = 205, + [210] = 210, [211] = 211, [212] = 212, [213] = 213, [214] = 214, - [215] = 205, - [216] = 205, + [215] = 215, + [216] = 215, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 221, + [221] = 215, [222] = 222, [223] = 223, [224] = 224, @@ -4751,52 +4701,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [226] = 226, [227] = 227, [228] = 228, - [229] = 229, + [229] = 215, [230] = 230, - [231] = 222, + [231] = 231, [232] = 232, [233] = 233, - [234] = 234, + [234] = 215, [235] = 235, [236] = 236, [237] = 237, [238] = 238, [239] = 239, [240] = 240, - [241] = 241, + [241] = 215, [242] = 242, [243] = 243, - [244] = 244, + [244] = 242, [245] = 245, [246] = 246, [247] = 247, - [248] = 248, - [249] = 248, + [248] = 246, + [249] = 249, [250] = 250, - [251] = 222, - [252] = 250, - [253] = 245, - [254] = 222, - [255] = 255, + [251] = 242, + [252] = 245, + [253] = 249, + [254] = 254, + [255] = 242, [256] = 256, - [257] = 222, - [258] = 222, - [259] = 256, - [260] = 260, - [261] = 222, - [262] = 262, - [263] = 222, - [264] = 256, - [265] = 265, - [266] = 256, - [267] = 256, - [268] = 260, - [269] = 262, - [270] = 222, - [271] = 256, - [272] = 222, - [273] = 222, - [274] = 256, + [257] = 257, + [258] = 256, + [259] = 257, + [260] = 242, + [261] = 242, + [262] = 242, + [263] = 242, + [264] = 264, + [265] = 264, + [266] = 264, + [267] = 267, + [268] = 264, + [269] = 264, + [270] = 242, + [271] = 264, + [272] = 242, + [273] = 264, + [274] = 242, [275] = 275, [276] = 275, [277] = 275, @@ -4950,268 +4900,268 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [425] = 425, [426] = 396, [427] = 427, - [428] = 412, - [429] = 419, - [430] = 430, - [431] = 399, - [432] = 400, - [433] = 416, - [434] = 417, - [435] = 412, - [436] = 425, - [437] = 419, - [438] = 438, - [439] = 419, - [440] = 440, - [441] = 441, - [442] = 419, - [443] = 419, - [444] = 444, - [445] = 445, + [428] = 428, + [429] = 412, + [430] = 418, + [431] = 431, + [432] = 399, + [433] = 400, + [434] = 415, + [435] = 416, + [436] = 412, + [437] = 425, + [438] = 418, + [439] = 439, + [440] = 427, + [441] = 418, + [442] = 442, + [443] = 443, + [444] = 418, + [445] = 418, [446] = 446, - [447] = 419, + [447] = 447, [448] = 448, - [449] = 449, - [450] = 427, - [451] = 401, - [452] = 444, - [453] = 453, - [454] = 397, - [455] = 398, - [456] = 398, - [457] = 396, - [458] = 399, - [459] = 401, - [460] = 402, - [461] = 403, - [462] = 404, - [463] = 405, - [464] = 406, - [465] = 407, - [466] = 408, - [467] = 409, - [468] = 410, - [469] = 411, - [470] = 414, - [471] = 402, - [472] = 403, - [473] = 404, - [474] = 416, - [475] = 417, - [476] = 419, - [477] = 405, - [478] = 440, - [479] = 422, - [480] = 424, - [481] = 449, - [482] = 427, - [483] = 444, - [484] = 448, - [485] = 453, - [486] = 397, - [487] = 398, - [488] = 399, - [489] = 400, - [490] = 401, - [491] = 402, - [492] = 403, - [493] = 404, - [494] = 405, - [495] = 406, - [496] = 407, - [497] = 408, - [498] = 409, - [499] = 410, - [500] = 411, - [501] = 412, - [502] = 406, - [503] = 416, - [504] = 417, - [505] = 419, - [506] = 422, - [507] = 424, - [508] = 425, - [509] = 419, - [510] = 448, - [511] = 427, - [512] = 407, - [513] = 444, - [514] = 453, - [515] = 397, - [516] = 398, - [517] = 396, - [518] = 399, - [519] = 401, - [520] = 402, - [521] = 403, - [522] = 404, - [523] = 405, - [524] = 397, - [525] = 407, - [526] = 408, - [527] = 409, - [528] = 410, - [529] = 411, - [530] = 408, - [531] = 416, - [532] = 417, - [533] = 419, - [534] = 409, - [535] = 422, - [536] = 449, - [537] = 427, - [538] = 444, - [539] = 453, - [540] = 397, - [541] = 398, - [542] = 399, - [543] = 401, - [544] = 402, - [545] = 403, - [546] = 404, - [547] = 405, - [548] = 406, - [549] = 407, - [550] = 408, - [551] = 409, - [552] = 410, - [553] = 411, - [554] = 416, - [555] = 417, - [556] = 419, - [557] = 422, - [558] = 424, - [559] = 425, - [560] = 560, - [561] = 419, - [562] = 448, - [563] = 396, - [564] = 427, - [565] = 444, - [566] = 453, - [567] = 397, - [568] = 398, - [569] = 399, - [570] = 401, - [571] = 402, - [572] = 403, - [573] = 404, - [574] = 405, - [575] = 406, - [576] = 407, - [577] = 408, - [578] = 409, - [579] = 410, - [580] = 411, - [581] = 416, - [582] = 417, - [583] = 453, - [584] = 449, - [585] = 422, - [586] = 424, - [587] = 425, - [588] = 419, - [589] = 448, - [590] = 396, - [591] = 427, - [592] = 444, - [593] = 453, - [594] = 397, - [595] = 398, - [596] = 399, - [597] = 401, - [598] = 402, - [599] = 403, - [600] = 404, - [601] = 405, - [602] = 406, - [603] = 407, - [604] = 408, - [605] = 409, - [606] = 410, - [607] = 411, - [608] = 410, - [609] = 416, - [610] = 417, - [611] = 422, - [612] = 424, - [613] = 425, - [614] = 419, - [615] = 448, - [616] = 396, - [617] = 427, - [618] = 444, - [619] = 453, - [620] = 397, - [621] = 398, - [622] = 399, - [623] = 401, - [624] = 402, - [625] = 403, - [626] = 404, - [627] = 405, - [628] = 406, - [629] = 407, - [630] = 408, - [631] = 409, - [632] = 410, - [633] = 449, - [634] = 411, - [635] = 427, - [636] = 444, - [637] = 416, - [638] = 417, - [639] = 422, - [640] = 422, - [641] = 424, - [642] = 425, - [643] = 448, - [644] = 427, - [645] = 444, - [646] = 453, - [647] = 397, - [648] = 398, - [649] = 399, - [650] = 401, - [651] = 402, - [652] = 403, - [653] = 404, - [654] = 405, - [655] = 406, - [656] = 407, - [657] = 408, - [658] = 409, - [659] = 410, - [660] = 411, - [661] = 411, - [662] = 416, - [663] = 417, - [664] = 422, - [665] = 424, - [666] = 425, - [667] = 448, - [668] = 396, - [669] = 669, - [670] = 424, - [671] = 425, - [672] = 449, - [673] = 449, - [674] = 674, - [675] = 419, - [676] = 424, - [677] = 425, - [678] = 449, - [679] = 453, - [680] = 449, - [681] = 449, - [682] = 448, - [683] = 396, - [684] = 448, - [685] = 396, - [686] = 406, - [687] = 687, - [688] = 687, - [689] = 687, + [449] = 418, + [450] = 450, + [451] = 451, + [452] = 428, + [453] = 401, + [454] = 446, + [455] = 455, + [456] = 397, + [457] = 398, + [458] = 398, + [459] = 396, + [460] = 399, + [461] = 401, + [462] = 402, + [463] = 403, + [464] = 404, + [465] = 405, + [466] = 406, + [467] = 407, + [468] = 408, + [469] = 409, + [470] = 410, + [471] = 411, + [472] = 417, + [473] = 402, + [474] = 403, + [475] = 404, + [476] = 415, + [477] = 416, + [478] = 418, + [479] = 405, + [480] = 442, + [481] = 422, + [482] = 424, + [483] = 451, + [484] = 428, + [485] = 446, + [486] = 450, + [487] = 455, + [488] = 397, + [489] = 398, + [490] = 399, + [491] = 400, + [492] = 401, + [493] = 402, + [494] = 403, + [495] = 404, + [496] = 405, + [497] = 406, + [498] = 407, + [499] = 408, + [500] = 409, + [501] = 410, + [502] = 411, + [503] = 412, + [504] = 406, + [505] = 415, + [506] = 416, + [507] = 418, + [508] = 422, + [509] = 424, + [510] = 425, + [511] = 418, + [512] = 450, + [513] = 428, + [514] = 407, + [515] = 446, + [516] = 455, + [517] = 397, + [518] = 398, + [519] = 396, + [520] = 399, + [521] = 401, + [522] = 402, + [523] = 403, + [524] = 404, + [525] = 405, + [526] = 397, + [527] = 407, + [528] = 408, + [529] = 409, + [530] = 410, + [531] = 411, + [532] = 408, + [533] = 415, + [534] = 416, + [535] = 418, + [536] = 409, + [537] = 422, + [538] = 451, + [539] = 428, + [540] = 446, + [541] = 455, + [542] = 397, + [543] = 398, + [544] = 399, + [545] = 401, + [546] = 402, + [547] = 403, + [548] = 404, + [549] = 405, + [550] = 406, + [551] = 407, + [552] = 408, + [553] = 409, + [554] = 410, + [555] = 411, + [556] = 415, + [557] = 416, + [558] = 418, + [559] = 422, + [560] = 424, + [561] = 425, + [562] = 562, + [563] = 418, + [564] = 450, + [565] = 396, + [566] = 428, + [567] = 446, + [568] = 455, + [569] = 397, + [570] = 398, + [571] = 399, + [572] = 401, + [573] = 402, + [574] = 403, + [575] = 404, + [576] = 405, + [577] = 406, + [578] = 407, + [579] = 408, + [580] = 409, + [581] = 410, + [582] = 411, + [583] = 415, + [584] = 416, + [585] = 455, + [586] = 451, + [587] = 422, + [588] = 424, + [589] = 425, + [590] = 427, + [591] = 418, + [592] = 450, + [593] = 396, + [594] = 428, + [595] = 446, + [596] = 455, + [597] = 397, + [598] = 398, + [599] = 399, + [600] = 401, + [601] = 402, + [602] = 403, + [603] = 404, + [604] = 405, + [605] = 406, + [606] = 407, + [607] = 408, + [608] = 409, + [609] = 410, + [610] = 411, + [611] = 410, + [612] = 415, + [613] = 416, + [614] = 422, + [615] = 424, + [616] = 425, + [617] = 418, + [618] = 450, + [619] = 396, + [620] = 428, + [621] = 446, + [622] = 455, + [623] = 397, + [624] = 398, + [625] = 399, + [626] = 401, + [627] = 402, + [628] = 403, + [629] = 404, + [630] = 405, + [631] = 406, + [632] = 407, + [633] = 408, + [634] = 409, + [635] = 410, + [636] = 451, + [637] = 411, + [638] = 428, + [639] = 446, + [640] = 415, + [641] = 416, + [642] = 422, + [643] = 422, + [644] = 424, + [645] = 425, + [646] = 450, + [647] = 428, + [648] = 446, + [649] = 455, + [650] = 397, + [651] = 398, + [652] = 399, + [653] = 401, + [654] = 402, + [655] = 403, + [656] = 404, + [657] = 405, + [658] = 406, + [659] = 407, + [660] = 408, + [661] = 409, + [662] = 410, + [663] = 411, + [664] = 411, + [665] = 415, + [666] = 416, + [667] = 422, + [668] = 424, + [669] = 425, + [670] = 450, + [671] = 396, + [672] = 672, + [673] = 424, + [674] = 425, + [675] = 451, + [676] = 451, + [677] = 677, + [678] = 418, + [679] = 424, + [680] = 425, + [681] = 451, + [682] = 455, + [683] = 451, + [684] = 451, + [685] = 450, + [686] = 396, + [687] = 450, + [688] = 396, + [689] = 406, [690] = 690, [691] = 690, [692] = 690, @@ -5224,111 +5174,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [699] = 698, [700] = 698, [701] = 701, - [702] = 702, - [703] = 702, - [704] = 701, - [705] = 243, - [706] = 244, - [707] = 702, - [708] = 701, - [709] = 709, - [710] = 710, + [702] = 701, + [703] = 703, + [704] = 703, + [705] = 703, + [706] = 701, + [707] = 707, + [708] = 213, + [709] = 219, + [710] = 707, [711] = 711, [712] = 712, [713] = 713, [714] = 714, - [715] = 709, + [715] = 715, [716] = 716, - [717] = 717, + [717] = 716, [718] = 718, - [719] = 716, - [720] = 716, - [721] = 718, - [722] = 717, + [719] = 718, + [720] = 720, + [721] = 720, + [722] = 716, [723] = 718, [724] = 724, [725] = 725, [726] = 726, [727] = 726, [728] = 728, - [729] = 724, - [730] = 725, - [731] = 726, + [729] = 728, + [730] = 726, + [731] = 724, [732] = 726, - [733] = 726, - [734] = 728, + [733] = 725, + [734] = 726, [735] = 726, - [736] = 229, + [736] = 736, [737] = 726, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 226, - [742] = 726, + [738] = 725, + [739] = 726, + [740] = 726, + [741] = 726, + [742] = 742, [743] = 726, - [744] = 724, - [745] = 726, - [746] = 225, - [747] = 747, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 212, [748] = 726, - [749] = 227, - [750] = 234, - [751] = 225, - [752] = 229, - [753] = 233, - [754] = 226, - [755] = 726, - [756] = 756, - [757] = 233, - [758] = 756, - [759] = 759, - [760] = 756, - [761] = 724, - [762] = 725, - [763] = 211, - [764] = 213, - [765] = 726, + [749] = 749, + [750] = 749, + [751] = 725, + [752] = 749, + [753] = 236, + [754] = 236, + [755] = 235, + [756] = 238, + [757] = 211, + [758] = 235, + [759] = 212, + [760] = 210, + [761] = 726, + [762] = 726, + [763] = 726, + [764] = 726, + [765] = 742, [766] = 726, [767] = 726, - [768] = 726, - [769] = 726, - [770] = 726, - [771] = 739, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 775, - [783] = 783, - [784] = 775, - [785] = 209, + [768] = 724, + [769] = 210, + [770] = 770, + [771] = 771, + [772] = 771, + [773] = 771, + [774] = 771, + [775] = 771, + [776] = 771, + [777] = 726, + [778] = 771, + [779] = 771, + [780] = 200, + [781] = 771, + [782] = 771, + [783] = 201, + [784] = 784, + [785] = 785, [786] = 786, [787] = 787, [788] = 788, - [789] = 240, + [789] = 239, [790] = 790, - [791] = 775, + [791] = 791, [792] = 792, - [793] = 775, + [793] = 784, [794] = 794, - [795] = 795, + [795] = 784, [796] = 796, [797] = 797, - [798] = 775, - [799] = 775, - [800] = 726, - [801] = 241, - [802] = 802, + [798] = 203, + [799] = 799, + [800] = 784, + [801] = 801, + [802] = 240, [803] = 803, - [804] = 775, - [805] = 775, - [806] = 775, + [804] = 804, + [805] = 784, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, @@ -5362,7 +5312,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [837] = 837, [838] = 838, [839] = 839, - [840] = 814, + [840] = 840, [841] = 841, [842] = 842, [843] = 843, @@ -5370,7 +5320,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [845] = 845, [846] = 846, [847] = 847, - [848] = 848, + [848] = 820, [849] = 849, [850] = 850, [851] = 851, @@ -5387,31 +5337,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [862] = 862, [863] = 863, [864] = 864, - [865] = 865, + [865] = 238, [866] = 866, [867] = 867, - [868] = 868, + [868] = 820, [869] = 869, [870] = 870, [871] = 871, - [872] = 872, + [872] = 211, [873] = 873, - [874] = 227, + [874] = 874, [875] = 875, - [876] = 876, - [877] = 234, + [876] = 821, + [877] = 877, [878] = 878, - [879] = 814, + [879] = 879, [880] = 880, [881] = 881, - [882] = 882, + [882] = 217, [883] = 883, [884] = 884, - [885] = 220, + [885] = 885, [886] = 886, - [887] = 887, + [887] = 231, [888] = 888, - [889] = 889, + [889] = 821, [890] = 890, [891] = 891, [892] = 892, @@ -5420,15 +5370,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [895] = 895, [896] = 896, [897] = 897, - [898] = 236, + [898] = 898, [899] = 899, - [900] = 900, + [900] = 820, [901] = 901, [902] = 902, [903] = 903, [904] = 904, [905] = 905, - [906] = 906, + [906] = 821, [907] = 907, [908] = 908, [909] = 909, @@ -5444,10 +5394,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [919] = 919, [920] = 920, [921] = 921, - [922] = 814, + [922] = 922, [923] = 923, [924] = 924, - [925] = 814, + [925] = 925, [926] = 926, [927] = 927, [928] = 928, @@ -5455,71 +5405,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [930] = 930, [931] = 931, [932] = 932, - [933] = 933, + [933] = 820, [934] = 934, - [935] = 935, + [935] = 821, [936] = 936, - [937] = 936, - [938] = 935, - [939] = 936, - [940] = 936, - [941] = 936, - [942] = 935, - [943] = 935, - [944] = 935, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, [945] = 945, - [946] = 790, - [947] = 773, + [946] = 946, + [947] = 947, [948] = 948, - [949] = 949, + [949] = 946, [950] = 950, - [951] = 951, + [951] = 948, [952] = 952, - [953] = 953, - [954] = 954, + [953] = 946, + [954] = 803, [955] = 955, [956] = 956, - [957] = 957, + [957] = 948, [958] = 958, [959] = 959, [960] = 960, - [961] = 961, - [962] = 962, - [963] = 960, - [964] = 960, - [965] = 962, - [966] = 960, - [967] = 962, - [968] = 960, - [969] = 962, - [970] = 962, - [971] = 961, - [972] = 960, - [973] = 961, - [974] = 960, - [975] = 962, - [976] = 962, + [961] = 959, + [962] = 946, + [963] = 959, + [964] = 948, + [965] = 965, + [966] = 966, + [967] = 948, + [968] = 946, + [969] = 787, + [970] = 970, + [971] = 948, + [972] = 972, + [973] = 948, + [974] = 946, + [975] = 975, + [976] = 946, [977] = 977, [978] = 978, [979] = 979, - [980] = 980, + [980] = 978, [981] = 981, - [982] = 982, - [983] = 982, - [984] = 981, - [985] = 980, - [986] = 981, - [987] = 982, - [988] = 980, - [989] = 981, - [990] = 980, - [991] = 982, + [982] = 978, + [983] = 977, + [984] = 979, + [985] = 978, + [986] = 979, + [987] = 978, + [988] = 988, + [989] = 977, + [990] = 977, + [991] = 991, [992] = 992, - [993] = 981, - [994] = 980, - [995] = 982, - [996] = 982, - [997] = 980, + [993] = 977, + [994] = 979, + [995] = 978, + [996] = 977, + [997] = 979, [998] = 998, [999] = 999, [1000] = 1000, @@ -5528,153 +5478,153 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1003] = 1003, [1004] = 1004, [1005] = 1005, - [1006] = 999, + [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1009, + [1009] = 1001, [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 999, + [1014] = 1001, [1015] = 1015, - [1016] = 999, + [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 998, - [1023] = 1001, - [1024] = 1003, - [1025] = 1004, - [1026] = 1026, - [1027] = 1027, - [1028] = 1028, - [1029] = 1002, - [1030] = 1030, - [1031] = 1000, - [1032] = 1009, - [1033] = 1010, - [1034] = 1011, - [1035] = 1013, - [1036] = 1015, + [1020] = 998, + [1021] = 1000, + [1022] = 1002, + [1023] = 1003, + [1024] = 1024, + [1025] = 1025, + [1026] = 1010, + [1027] = 1007, + [1028] = 1008, + [1029] = 1011, + [1030] = 1012, + [1031] = 1013, + [1032] = 1015, + [1033] = 1016, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, [1037] = 1017, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, - [1041] = 1019, - [1042] = 1020, - [1043] = 1015, - [1044] = 998, - [1045] = 1001, - [1046] = 1017, - [1047] = 1047, - [1048] = 1003, - [1049] = 1004, - [1050] = 1005, - [1051] = 1007, - [1052] = 1026, - [1053] = 1027, - [1054] = 1054, + [1038] = 1018, + [1039] = 998, + [1040] = 1000, + [1041] = 1015, + [1042] = 1016, + [1043] = 1002, + [1044] = 1003, + [1045] = 1004, + [1046] = 1005, + [1047] = 1024, + [1048] = 1025, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1017, + [1054] = 1018, [1055] = 1055, - [1056] = 1019, - [1057] = 1020, - [1058] = 1015, - [1059] = 998, - [1060] = 1001, - [1061] = 1003, - [1062] = 1004, - [1063] = 1017, - [1064] = 1026, - [1065] = 1027, - [1066] = 1000, - [1067] = 1009, - [1068] = 1010, - [1069] = 1011, - [1070] = 1013, - [1071] = 1015, + [1056] = 1056, + [1057] = 998, + [1058] = 1000, + [1059] = 1002, + [1060] = 1003, + [1061] = 1024, + [1062] = 1025, + [1063] = 1007, + [1064] = 1008, + [1065] = 1011, + [1066] = 1012, + [1067] = 1013, + [1068] = 1015, + [1069] = 1015, + [1070] = 1016, + [1071] = 1004, [1072] = 1017, - [1073] = 1026, - [1074] = 1008, - [1075] = 1005, - [1076] = 1019, - [1077] = 1020, - [1078] = 1003, - [1079] = 1005, + [1073] = 1018, + [1074] = 1004, + [1075] = 1002, + [1076] = 1003, + [1077] = 1024, + [1078] = 1025, + [1079] = 1007, [1080] = 1008, - [1081] = 1026, - [1082] = 1027, - [1083] = 999, - [1084] = 1000, - [1085] = 1009, - [1086] = 1010, - [1087] = 1011, - [1088] = 1005, - [1089] = 1013, - [1090] = 1019, - [1091] = 1020, - [1092] = 1015, - [1093] = 1017, - [1094] = 1019, - [1095] = 1020, - [1096] = 1003, - [1097] = 1004, - [1098] = 1026, - [1099] = 1027, - [1100] = 1100, - [1101] = 998, - [1102] = 1001, - [1103] = 1012, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1027, - [1108] = 1000, - [1109] = 1009, - [1110] = 1010, - [1111] = 1011, - [1112] = 1013, - [1113] = 999, - [1114] = 1100, - [1115] = 1115, - [1116] = 1039, - [1117] = 1117, - [1118] = 1115, - [1119] = 1015, - [1120] = 1017, - [1121] = 1121, - [1122] = 1019, - [1123] = 1020, + [1081] = 1011, + [1082] = 1012, + [1083] = 1004, + [1084] = 1001, + [1085] = 1024, + [1086] = 1016, + [1087] = 1015, + [1088] = 1016, + [1089] = 1017, + [1090] = 1018, + [1091] = 999, + [1092] = 1002, + [1093] = 1003, + [1094] = 1024, + [1095] = 1025, + [1096] = 1017, + [1097] = 1018, + [1098] = 1001, + [1099] = 998, + [1100] = 1000, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1025, + [1105] = 1007, + [1106] = 1008, + [1107] = 1011, + [1108] = 1012, + [1109] = 1013, + [1110] = 1006, + [1111] = 1001, + [1112] = 1112, + [1113] = 1112, + [1114] = 1114, + [1115] = 1035, + [1116] = 1015, + [1117] = 1016, + [1118] = 1017, + [1119] = 1018, + [1120] = 998, + [1121] = 1000, + [1122] = 1002, + [1123] = 1003, [1124] = 1124, [1125] = 1125, - [1126] = 998, - [1127] = 1001, - [1128] = 1003, - [1129] = 1004, - [1130] = 1026, - [1131] = 1027, - [1132] = 1000, - [1133] = 1009, - [1134] = 1010, - [1135] = 1011, - [1136] = 1013, - [1137] = 1005, - [1138] = 998, - [1139] = 1001, - [1140] = 1000, - [1141] = 1009, - [1142] = 1010, - [1143] = 1011, - [1144] = 1013, - [1145] = 1008, - [1146] = 1005, - [1147] = 1008, - [1148] = 1008, - [1149] = 1008, - [1150] = 1004, + [1126] = 1126, + [1127] = 1024, + [1128] = 1128, + [1129] = 1025, + [1130] = 1007, + [1131] = 1008, + [1132] = 1011, + [1133] = 1012, + [1134] = 1013, + [1135] = 1004, + [1136] = 998, + [1137] = 1000, + [1138] = 1114, + [1139] = 1007, + [1140] = 1008, + [1141] = 1011, + [1142] = 1012, + [1143] = 999, + [1144] = 1004, + [1145] = 1013, + [1146] = 999, + [1147] = 999, + [1148] = 999, + [1149] = 999, + [1150] = 1013, [1151] = 1151, - [1152] = 1152, + [1152] = 1151, [1153] = 1151, [1154] = 1151, [1155] = 1151, @@ -5682,21 +5632,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1157] = 1151, [1158] = 1151, [1159] = 1151, - [1160] = 1160, + [1160] = 1151, [1161] = 1151, - [1162] = 1162, - [1163] = 1151, - [1164] = 1151, - [1165] = 1151, + [1162] = 1151, + [1163] = 1163, + [1164] = 1164, + [1165] = 1163, [1166] = 1166, [1167] = 1167, - [1168] = 1168, - [1169] = 1168, - [1170] = 1166, - [1171] = 1167, - [1172] = 1168, + [1168] = 1164, + [1169] = 1163, + [1170] = 1170, + [1171] = 1171, + [1172] = 1167, [1173] = 1167, - [1174] = 1166, + [1174] = 1164, [1175] = 1175, [1176] = 1176, [1177] = 1177, @@ -5704,287 +5654,287 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1179] = 1179, [1180] = 1179, [1181] = 1177, - [1182] = 1177, - [1183] = 1177, + [1182] = 1182, + [1183] = 1183, [1184] = 1184, - [1185] = 1184, - [1186] = 1186, - [1187] = 1187, - [1188] = 1187, - [1189] = 1175, - [1190] = 1186, - [1191] = 1177, - [1192] = 1176, + [1185] = 1175, + [1186] = 1176, + [1187] = 1177, + [1188] = 1177, + [1189] = 1177, + [1190] = 1184, + [1191] = 1183, + [1192] = 1182, [1193] = 1193, - [1194] = 1194, + [1194] = 1193, [1195] = 1195, - [1196] = 1196, + [1196] = 1193, [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1177, + [1200] = 1200, [1201] = 1177, [1202] = 1202, - [1203] = 1176, + [1203] = 1203, [1204] = 1204, [1205] = 1205, [1206] = 1206, - [1207] = 1177, - [1208] = 1193, - [1209] = 1193, - [1210] = 1210, + [1207] = 1207, + [1208] = 1177, + [1209] = 1177, + [1210] = 1176, [1211] = 1177, [1212] = 1212, [1213] = 1213, [1214] = 1214, [1215] = 1215, - [1216] = 790, - [1217] = 1215, - [1218] = 1218, - [1219] = 1177, - [1220] = 1220, - [1221] = 773, - [1222] = 1177, - [1223] = 1218, - [1224] = 1177, - [1225] = 1220, - [1226] = 1226, - [1227] = 1215, - [1228] = 1228, - [1229] = 1226, - [1230] = 1213, - [1231] = 1176, - [1232] = 1232, - [1233] = 1226, + [1216] = 1216, + [1217] = 787, + [1218] = 1177, + [1219] = 803, + [1220] = 1177, + [1221] = 1221, + [1222] = 1221, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1224, + [1227] = 1216, + [1228] = 1216, + [1229] = 1176, + [1230] = 1177, + [1231] = 1223, + [1232] = 1215, + [1233] = 1215, [1234] = 1177, - [1235] = 1235, + [1235] = 1177, [1236] = 1177, - [1237] = 1213, - [1238] = 1177, + [1237] = 1177, + [1238] = 1238, [1239] = 1177, [1240] = 1177, - [1241] = 1177, - [1242] = 1213, - [1243] = 1175, - [1244] = 1244, - [1245] = 1196, + [1241] = 1241, + [1242] = 1175, + [1243] = 1203, + [1244] = 1223, + [1245] = 1245, [1246] = 1246, - [1247] = 1247, + [1247] = 1223, [1248] = 1248, - [1249] = 1213, - [1250] = 1250, - [1251] = 1250, - [1252] = 1250, - [1253] = 1253, - [1254] = 1254, + [1249] = 1223, + [1250] = 1248, + [1251] = 1248, + [1252] = 1252, + [1253] = 1248, + [1254] = 1223, [1255] = 1255, - [1256] = 1250, - [1257] = 1257, - [1258] = 1246, - [1259] = 1259, - [1260] = 1213, - [1261] = 1250, + [1256] = 1238, + [1257] = 1248, + [1258] = 1223, + [1259] = 1248, + [1260] = 1260, + [1261] = 1223, [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1213, - [1266] = 1266, - [1267] = 1250, - [1268] = 1244, - [1269] = 1213, - [1270] = 1250, - [1271] = 1177, - [1272] = 1244, - [1273] = 1250, - [1274] = 1246, - [1275] = 1250, - [1276] = 1250, - [1277] = 1213, + [1263] = 1223, + [1264] = 1245, + [1265] = 1265, + [1266] = 1248, + [1267] = 1177, + [1268] = 1248, + [1269] = 1269, + [1270] = 1238, + [1271] = 1248, + [1272] = 1272, + [1273] = 1273, + [1274] = 1248, + [1275] = 1245, + [1276] = 1276, + [1277] = 1277, [1278] = 1278, - [1279] = 1213, - [1280] = 1280, - [1281] = 1281, - [1282] = 1282, - [1283] = 1206, - [1284] = 1284, - [1285] = 1246, - [1286] = 1286, - [1287] = 1205, - [1288] = 1213, - [1289] = 1289, - [1290] = 1206, - [1291] = 1278, - [1292] = 1246, - [1293] = 1280, - [1294] = 1264, - [1295] = 1289, - [1296] = 1205, + [1279] = 1279, + [1280] = 1279, + [1281] = 1223, + [1282] = 1202, + [1283] = 1223, + [1284] = 1205, + [1285] = 1285, + [1286] = 1262, + [1287] = 1287, + [1288] = 1288, + [1289] = 1238, + [1290] = 1202, + [1291] = 1205, + [1292] = 1285, + [1293] = 1223, + [1294] = 1238, + [1295] = 1295, + [1296] = 1223, [1297] = 1297, - [1298] = 1246, + [1298] = 1223, [1299] = 1299, - [1300] = 1278, - [1301] = 1213, - [1302] = 1302, - [1303] = 1264, - [1304] = 1213, - [1305] = 1305, - [1306] = 1305, - [1307] = 1213, - [1308] = 1282, - [1309] = 1264, + [1300] = 1276, + [1301] = 1277, + [1302] = 1238, + [1303] = 1276, + [1304] = 1299, + [1305] = 1262, + [1306] = 1276, + [1307] = 1299, + [1308] = 1299, + [1309] = 1238, [1310] = 1206, - [1311] = 1210, - [1312] = 1264, - [1313] = 1313, - [1314] = 1255, - [1315] = 1278, - [1316] = 1264, - [1317] = 1204, + [1311] = 1207, + [1312] = 1299, + [1313] = 1277, + [1314] = 1265, + [1315] = 1315, + [1316] = 1316, + [1317] = 1317, [1318] = 1318, - [1319] = 1194, - [1320] = 1248, - [1321] = 1321, - [1322] = 1318, - [1323] = 1289, - [1324] = 1228, - [1325] = 1228, - [1326] = 1313, - [1327] = 1321, - [1328] = 1259, - [1329] = 773, - [1330] = 1305, - [1331] = 1305, - [1332] = 1212, - [1333] = 1199, - [1334] = 1305, - [1335] = 790, - [1336] = 1205, - [1337] = 1246, - [1338] = 1213, - [1339] = 1198, - [1340] = 1246, - [1341] = 1289, - [1342] = 1202, - [1343] = 1305, - [1344] = 1213, - [1345] = 1289, - [1346] = 1246, - [1347] = 1289, - [1348] = 1246, - [1349] = 1349, - [1350] = 1206, - [1351] = 1281, - [1352] = 1289, - [1353] = 1228, + [1319] = 1260, + [1320] = 1277, + [1321] = 1197, + [1322] = 1213, + [1323] = 1238, + [1324] = 1277, + [1325] = 1198, + [1326] = 1316, + [1327] = 1223, + [1328] = 1276, + [1329] = 1277, + [1330] = 1200, + [1331] = 787, + [1332] = 1332, + [1333] = 1318, + [1334] = 1213, + [1335] = 803, + [1336] = 1238, + [1337] = 1299, + [1338] = 1262, + [1339] = 1202, + [1340] = 1238, + [1341] = 1273, + [1342] = 1315, + [1343] = 1276, + [1344] = 1344, + [1345] = 1205, + [1346] = 1223, + [1347] = 1212, + [1348] = 1199, + [1349] = 1277, + [1350] = 1202, + [1351] = 1351, + [1352] = 1295, + [1353] = 1299, [1354] = 1205, - [1355] = 1355, - [1356] = 1349, - [1357] = 1302, - [1358] = 1305, - [1359] = 1264, - [1360] = 1360, - [1361] = 1289, - [1362] = 1362, - [1363] = 1263, - [1364] = 1228, - [1365] = 1205, - [1366] = 1289, - [1367] = 1289, - [1368] = 1264, - [1369] = 1369, - [1370] = 1248, - [1371] = 1264, - [1372] = 1246, - [1373] = 1305, - [1374] = 1305, - [1375] = 1259, - [1376] = 1264, - [1377] = 1305, - [1378] = 1206, + [1355] = 1299, + [1356] = 1356, + [1357] = 1238, + [1358] = 1252, + [1359] = 1351, + [1360] = 1277, + [1361] = 1276, + [1362] = 1213, + [1363] = 1278, + [1364] = 1213, + [1365] = 1365, + [1366] = 1299, + [1367] = 1205, + [1368] = 1299, + [1369] = 1202, + [1370] = 1276, + [1371] = 1260, + [1372] = 1372, + [1373] = 1276, + [1374] = 1277, + [1375] = 1277, + [1376] = 1265, + [1377] = 1377, + [1378] = 1276, [1379] = 1379, - [1380] = 1289, - [1381] = 1228, - [1382] = 1264, - [1383] = 1383, - [1384] = 1384, - [1385] = 1205, - [1386] = 1386, - [1387] = 1379, - [1388] = 1379, - [1389] = 1379, - [1390] = 1206, - [1391] = 1228, - [1392] = 1305, - [1393] = 1259, - [1394] = 1394, - [1395] = 1248, - [1396] = 1379, - [1397] = 1397, - [1398] = 1305, - [1399] = 1302, - [1400] = 1289, - [1401] = 1379, - [1402] = 1289, - [1403] = 1289, - [1404] = 1305, - [1405] = 1305, - [1406] = 1369, - [1407] = 1305, - [1408] = 1305, - [1409] = 1305, - [1410] = 1305, - [1411] = 1255, - [1412] = 1302, - [1413] = 1289, - [1414] = 1289, - [1415] = 1289, - [1416] = 1289, - [1417] = 1228, - [1418] = 1360, + [1380] = 1380, + [1381] = 1381, + [1382] = 1380, + [1383] = 1299, + [1384] = 1277, + [1385] = 1299, + [1386] = 1380, + [1387] = 1213, + [1388] = 1388, + [1389] = 1380, + [1390] = 1260, + [1391] = 1265, + [1392] = 1392, + [1393] = 1276, + [1394] = 1380, + [1395] = 1380, + [1396] = 1295, + [1397] = 1202, + [1398] = 1213, + [1399] = 1399, + [1400] = 1277, + [1401] = 1205, + [1402] = 1277, + [1403] = 1277, + [1404] = 1299, + [1405] = 1277, + [1406] = 1277, + [1407] = 1277, + [1408] = 1277, + [1409] = 1273, + [1410] = 1213, + [1411] = 1356, + [1412] = 1299, + [1413] = 1365, + [1414] = 1295, + [1415] = 1299, + [1416] = 1299, + [1417] = 1299, + [1418] = 1299, [1419] = 1419, [1420] = 1420, - [1421] = 1420, - [1422] = 1419, + [1421] = 1421, + [1422] = 1420, [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1289, - [1427] = 1420, - [1428] = 1425, - [1429] = 1425, + [1424] = 1419, + [1425] = 1421, + [1426] = 1426, + [1427] = 1299, + [1428] = 1421, + [1429] = 1421, [1430] = 1420, - [1431] = 1423, - [1432] = 1423, - [1433] = 1424, - [1434] = 1420, - [1435] = 1424, - [1436] = 1425, - [1437] = 1420, - [1438] = 1423, - [1439] = 1423, - [1440] = 1419, - [1441] = 1424, - [1442] = 1420, + [1431] = 1420, + [1432] = 1419, + [1433] = 1426, + [1434] = 1421, + [1435] = 1420, + [1436] = 1426, + [1437] = 1423, + [1438] = 1421, + [1439] = 1426, + [1440] = 1420, + [1441] = 1426, + [1442] = 1423, [1443] = 1423, - [1444] = 1419, - [1445] = 1425, - [1446] = 1420, - [1447] = 1423, - [1448] = 1281, - [1449] = 1383, + [1444] = 1421, + [1445] = 1420, + [1446] = 1278, + [1447] = 1381, + [1448] = 1421, + [1449] = 1421, [1450] = 1423, [1451] = 1420, - [1452] = 1423, + [1452] = 1421, [1453] = 1420, - [1454] = 1423, - [1455] = 1425, - [1456] = 1424, - [1457] = 1228, - [1458] = 1419, - [1459] = 1228, - [1460] = 1305, - [1461] = 1228, - [1462] = 1424, + [1454] = 1426, + [1455] = 1419, + [1456] = 1213, + [1457] = 1213, + [1458] = 1277, + [1459] = 1213, + [1460] = 1423, + [1461] = 1420, + [1462] = 1419, [1463] = 1419, [1464] = 1464, [1465] = 1464, @@ -5999,71 +5949,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1474] = 1474, [1475] = 1474, [1476] = 1474, - [1477] = 1474, + [1477] = 1477, [1478] = 1474, - [1479] = 1479, + [1479] = 1474, [1480] = 1474, [1481] = 1481, [1482] = 1482, - [1483] = 1482, + [1483] = 1483, [1484] = 1482, [1485] = 1485, - [1486] = 1482, - [1487] = 1487, - [1488] = 1487, - [1489] = 1481, - [1490] = 1487, - [1491] = 1487, - [1492] = 1481, - [1493] = 1482, - [1494] = 1487, - [1495] = 1481, - [1496] = 1481, + [1486] = 1481, + [1487] = 1481, + [1488] = 1481, + [1489] = 1483, + [1490] = 1483, + [1491] = 1482, + [1492] = 1483, + [1493] = 1481, + [1494] = 1483, + [1495] = 1482, + [1496] = 1482, [1497] = 1497, [1498] = 1497, [1499] = 1497, [1500] = 1497, - [1501] = 1497, - [1502] = 1502, + [1501] = 1501, + [1502] = 1497, [1503] = 1497, - [1504] = 243, + [1504] = 1504, [1505] = 1505, [1506] = 1506, [1507] = 1507, - [1508] = 1508, + [1508] = 219, [1509] = 1509, [1510] = 1510, - [1511] = 244, + [1511] = 213, [1512] = 1512, - [1513] = 1513, + [1513] = 988, [1514] = 1514, - [1515] = 207, - [1516] = 979, - [1517] = 1517, - [1518] = 243, - [1519] = 1519, + [1515] = 1515, + [1516] = 1516, + [1517] = 213, + [1518] = 992, + [1519] = 219, [1520] = 1520, - [1521] = 1521, + [1521] = 206, [1522] = 1522, [1523] = 1523, - [1524] = 978, - [1525] = 244, - [1526] = 1526, - [1527] = 977, + [1524] = 1524, + [1525] = 1525, + [1526] = 991, + [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1534, + [1534] = 212, [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1162, + [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 1541, + [1541] = 714, [1542] = 1542, [1543] = 1543, [1544] = 1544, @@ -6071,40 +6021,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1546] = 1546, [1547] = 1547, [1548] = 1548, - [1549] = 710, + [1549] = 1549, [1550] = 1550, [1551] = 1551, [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1555, + [1555] = 1166, [1556] = 1556, - [1557] = 713, + [1557] = 1557, [1558] = 1558, [1559] = 1559, [1560] = 1560, [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 1564, + [1564] = 713, [1565] = 1565, [1566] = 1566, [1567] = 1567, [1568] = 1568, [1569] = 1569, - [1570] = 711, + [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, [1574] = 1574, [1575] = 1575, - [1576] = 714, + [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 226, + [1579] = 236, [1580] = 1580, [1581] = 1581, - [1582] = 1582, + [1582] = 711, [1583] = 1583, [1584] = 1584, [1585] = 1585, @@ -6112,7 +6062,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1590, + [1590] = 1170, [1591] = 1591, [1592] = 1592, [1593] = 1593, @@ -6123,32 +6073,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1598] = 1598, [1599] = 1599, [1600] = 1600, - [1601] = 1601, + [1601] = 715, [1602] = 1602, - [1603] = 211, - [1604] = 211, - [1605] = 213, - [1606] = 209, - [1607] = 1607, - [1608] = 1608, - [1609] = 229, + [1603] = 1603, + [1604] = 1604, + [1605] = 1605, + [1606] = 200, + [1607] = 1171, + [1608] = 201, + [1609] = 1609, [1610] = 1610, [1611] = 1611, - [1612] = 1612, + [1612] = 203, [1613] = 1613, [1614] = 1614, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 1618, + [1615] = 200, + [1616] = 201, + [1617] = 203, + [1618] = 712, [1619] = 1619, - [1620] = 712, + [1620] = 1620, [1621] = 1621, [1622] = 1622, [1623] = 1623, - [1624] = 213, + [1624] = 1624, [1625] = 1625, - [1626] = 209, + [1626] = 1626, [1627] = 1627, [1628] = 1628, [1629] = 1629, @@ -6158,7 +6108,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1152, + [1636] = 1636, [1637] = 1637, [1638] = 1638, [1639] = 1639, @@ -6172,7 +6122,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1160, + [1650] = 1650, [1651] = 1651, [1652] = 1652, [1653] = 1653, @@ -6184,9 +6134,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1659] = 1659, [1660] = 1660, [1661] = 1661, - [1662] = 1662, + [1662] = 238, [1663] = 1663, - [1664] = 227, + [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, @@ -6200,9 +6150,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1675] = 1675, [1676] = 1676, [1677] = 1677, - [1678] = 1678, + [1678] = 211, [1679] = 1679, - [1680] = 234, + [1680] = 1680, [1681] = 1681, [1682] = 1682, [1683] = 1683, @@ -6218,7 +6168,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1693] = 1693, [1694] = 1694, [1695] = 1695, - [1696] = 1696, + [1696] = 1501, [1697] = 1697, [1698] = 1698, [1699] = 1699, @@ -6230,39 +6180,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1705] = 1705, [1706] = 1706, [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 240, - [1711] = 241, - [1712] = 1502, - [1713] = 220, - [1714] = 236, - [1715] = 225, - [1716] = 240, - [1717] = 241, - [1718] = 233, - [1719] = 1689, - [1720] = 1689, - [1721] = 1689, - [1722] = 1689, - [1723] = 1723, - [1724] = 1724, + [1708] = 239, + [1709] = 240, + [1710] = 1710, + [1711] = 231, + [1712] = 217, + [1713] = 235, + [1714] = 239, + [1715] = 240, + [1716] = 210, + [1717] = 1717, + [1718] = 1717, + [1719] = 1717, + [1720] = 1717, + [1721] = 1717, + [1722] = 1722, + [1723] = 1705, + [1724] = 212, [1725] = 1725, - [1726] = 229, - [1727] = 1707, - [1728] = 225, - [1729] = 1706, - [1730] = 226, - [1731] = 1708, - [1732] = 1509, - [1733] = 1733, - [1734] = 1510, - [1735] = 233, - [1736] = 1724, + [1726] = 1706, + [1727] = 235, + [1728] = 1728, + [1729] = 236, + [1730] = 1504, + [1731] = 1731, + [1732] = 1505, + [1733] = 210, + [1734] = 1734, + [1735] = 1509, + [1736] = 1731, [1737] = 1506, - [1738] = 1733, - [1739] = 1505, - [1740] = 1724, + [1738] = 1734, + [1739] = 1739, + [1740] = 1740, [1741] = 1741, [1742] = 1742, [1743] = 1743, @@ -6272,9 +6222,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1747] = 1747, [1748] = 1748, [1749] = 1749, - [1750] = 1750, + [1750] = 217, [1751] = 1751, - [1752] = 227, + [1752] = 1752, [1753] = 1753, [1754] = 1754, [1755] = 1755, @@ -6288,908 +6238,908 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1763] = 1763, [1764] = 1764, [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 234, - [1769] = 1733, - [1770] = 220, - [1771] = 1771, - [1772] = 1733, - [1773] = 1773, - [1774] = 1724, - [1775] = 1733, - [1776] = 236, - [1777] = 1724, + [1766] = 211, + [1767] = 1731, + [1768] = 1651, + [1769] = 1734, + [1770] = 1731, + [1771] = 231, + [1772] = 1734, + [1773] = 1731, + [1774] = 238, + [1775] = 1734, + [1776] = 1776, + [1777] = 1777, [1778] = 1778, [1779] = 1779, - [1780] = 1780, - [1781] = 1781, - [1782] = 1760, - [1783] = 1779, - [1784] = 1780, - [1785] = 1785, - [1786] = 1786, - [1787] = 1532, - [1788] = 1520, + [1780] = 1525, + [1781] = 1514, + [1782] = 1743, + [1783] = 1783, + [1784] = 1784, + [1785] = 1531, + [1786] = 1516, + [1787] = 1787, + [1788] = 1512, [1789] = 1744, - [1790] = 1517, - [1791] = 1785, - [1792] = 1745, - [1793] = 1706, - [1794] = 1746, - [1795] = 1795, - [1796] = 1747, - [1797] = 1645, - [1798] = 1707, - [1799] = 1799, - [1800] = 1708, - [1801] = 977, + [1790] = 1745, + [1791] = 1746, + [1792] = 1783, + [1793] = 1705, + [1794] = 1794, + [1795] = 988, + [1796] = 1539, + [1797] = 1706, + [1798] = 1722, + [1799] = 1651, + [1800] = 1747, + [1801] = 1801, [1802] = 1748, - [1803] = 1803, - [1804] = 1749, - [1805] = 1750, - [1806] = 1751, - [1807] = 1781, - [1808] = 1753, - [1809] = 1754, - [1810] = 1755, + [1803] = 1749, + [1804] = 1779, + [1805] = 1751, + [1806] = 1752, + [1807] = 1753, + [1808] = 1754, + [1809] = 1755, + [1810] = 1515, [1811] = 1756, [1812] = 1757, [1813] = 1813, - [1814] = 1513, - [1815] = 1514, - [1816] = 1761, - [1817] = 1817, + [1814] = 1776, + [1815] = 1760, + [1816] = 1816, + [1817] = 1761, [1818] = 1762, [1819] = 1763, [1820] = 1764, - [1821] = 1765, - [1822] = 1522, - [1823] = 1521, - [1824] = 1824, - [1825] = 1785, - [1826] = 1778, - [1827] = 1817, + [1821] = 1523, + [1822] = 1524, + [1823] = 1778, + [1824] = 1783, + [1825] = 1816, + [1826] = 1522, + [1827] = 1827, [1828] = 1758, - [1829] = 1759, - [1830] = 1771, - [1831] = 1785, - [1832] = 1519, - [1833] = 1512, - [1834] = 1817, - [1835] = 1785, - [1836] = 1741, + [1829] = 1783, + [1830] = 1759, + [1831] = 1777, + [1832] = 1816, + [1833] = 1783, + [1834] = 1739, + [1835] = 1739, + [1836] = 1740, [1837] = 1741, - [1838] = 1742, + [1838] = 991, [1839] = 1743, [1840] = 1744, - [1841] = 978, - [1842] = 1745, - [1843] = 1746, - [1844] = 1747, - [1845] = 1748, - [1846] = 1749, - [1847] = 1750, - [1848] = 1751, - [1849] = 1781, - [1850] = 1753, - [1851] = 1754, - [1852] = 1755, - [1853] = 1756, - [1854] = 1757, - [1855] = 1758, - [1856] = 1759, - [1857] = 1760, - [1858] = 1761, - [1859] = 1762, - [1860] = 1763, - [1861] = 1764, - [1862] = 1765, - [1863] = 1767, - [1864] = 1645, - [1865] = 1771, - [1866] = 1817, - [1867] = 1526, - [1868] = 1868, - [1869] = 1742, - [1870] = 1743, - [1871] = 1871, - [1872] = 1872, - [1873] = 979, - [1874] = 1767, + [1841] = 1745, + [1842] = 1746, + [1843] = 1747, + [1844] = 1748, + [1845] = 1749, + [1846] = 1779, + [1847] = 1751, + [1848] = 1752, + [1849] = 1753, + [1850] = 1754, + [1851] = 1755, + [1852] = 1756, + [1853] = 1757, + [1854] = 1758, + [1855] = 1759, + [1856] = 1760, + [1857] = 1761, + [1858] = 1762, + [1859] = 1763, + [1860] = 1764, + [1861] = 1765, + [1862] = 1531, + [1863] = 1539, + [1864] = 1816, + [1865] = 1527, + [1866] = 1740, + [1867] = 1867, + [1868] = 1741, + [1869] = 1869, + [1870] = 1870, + [1871] = 992, + [1872] = 1765, + [1873] = 1776, + [1874] = 1722, [1875] = 1778, - [1876] = 1779, - [1877] = 1780, - [1878] = 1532, - [1879] = 1879, - [1880] = 1593, - [1881] = 1594, - [1882] = 1599, - [1883] = 1152, - [1884] = 207, - [1885] = 1885, - [1886] = 1803, - [1887] = 1743, - [1888] = 1745, - [1889] = 1779, - [1890] = 1746, - [1891] = 1879, - [1892] = 1747, - [1893] = 1646, - [1894] = 1780, - [1895] = 1748, - [1896] = 1896, + [1876] = 1777, + [1877] = 1877, + [1878] = 1591, + [1879] = 1650, + [1880] = 1596, + [1881] = 1597, + [1882] = 1600, + [1883] = 1605, + [1884] = 1170, + [1885] = 206, + [1886] = 1740, + [1887] = 1744, + [1888] = 1741, + [1889] = 1877, + [1890] = 1745, + [1891] = 1746, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, + [1895] = 1747, + [1896] = 1748, [1897] = 1749, - [1898] = 1750, + [1898] = 1779, [1899] = 1751, - [1900] = 1781, + [1900] = 1752, [1901] = 1753, - [1902] = 1754, - [1903] = 1755, - [1904] = 1756, - [1905] = 1648, - [1906] = 1757, - [1907] = 1588, - [1908] = 1758, - [1909] = 1628, - [1910] = 1595, - [1911] = 1632, - [1912] = 1637, - [1913] = 1759, - [1914] = 1760, - [1915] = 1616, - [1916] = 1916, - [1917] = 1879, - [1918] = 1647, - [1919] = 1744, - [1920] = 1771, - [1921] = 1672, - [1922] = 1868, - [1923] = 1923, + [1902] = 1902, + [1903] = 1754, + [1904] = 1755, + [1905] = 1905, + [1906] = 1756, + [1907] = 1528, + [1908] = 1757, + [1909] = 1593, + [1910] = 1619, + [1911] = 1574, + [1912] = 1544, + [1913] = 1758, + [1914] = 1759, + [1915] = 1554, + [1916] = 1556, + [1917] = 1877, + [1918] = 1536, + [1919] = 1743, + [1920] = 1670, + [1921] = 1867, + [1922] = 1777, + [1923] = 1722, [1924] = 1778, - [1925] = 207, - [1926] = 1926, - [1927] = 1761, - [1928] = 1928, - [1929] = 1614, - [1930] = 1762, - [1931] = 1617, - [1932] = 1706, - [1933] = 1763, - [1934] = 1532, - [1935] = 1643, - [1936] = 1645, - [1937] = 1592, - [1938] = 1619, - [1939] = 1634, + [1925] = 1581, + [1926] = 206, + [1927] = 1760, + [1928] = 1705, + [1929] = 1929, + [1930] = 1761, + [1931] = 1620, + [1932] = 1762, + [1933] = 1933, + [1934] = 1531, + [1935] = 1535, + [1936] = 1539, + [1937] = 1549, + [1938] = 714, + [1939] = 1637, [1940] = 1940, - [1941] = 710, - [1942] = 1639, - [1943] = 1641, + [1941] = 1643, + [1942] = 1645, + [1943] = 1943, [1944] = 1944, [1945] = 1945, - [1946] = 1946, - [1947] = 1947, - [1948] = 1879, - [1949] = 1532, - [1950] = 1645, - [1951] = 1545, - [1952] = 1622, - [1953] = 1879, - [1954] = 1532, - [1955] = 1645, - [1956] = 1709, - [1957] = 1651, - [1958] = 1672, + [1946] = 1763, + [1947] = 1877, + [1948] = 1648, + [1949] = 1531, + [1950] = 1539, + [1951] = 1588, + [1952] = 1647, + [1953] = 1877, + [1954] = 1531, + [1955] = 1539, + [1956] = 1707, + [1957] = 1710, + [1958] = 1670, [1959] = 1764, - [1960] = 1765, - [1961] = 1588, + [1960] = 1776, + [1961] = 1528, [1962] = 1962, - [1963] = 1621, - [1964] = 1964, - [1965] = 711, - [1966] = 1580, - [1967] = 1587, - [1968] = 1591, - [1969] = 1608, - [1970] = 1970, + [1963] = 715, + [1964] = 1602, + [1965] = 1603, + [1966] = 1604, + [1967] = 1609, + [1968] = 1968, + [1969] = 1969, + [1970] = 1610, [1971] = 1971, - [1972] = 1623, - [1973] = 1629, - [1974] = 1618, - [1975] = 1741, - [1976] = 1625, - [1977] = 1977, - [1978] = 1631, - [1979] = 1633, - [1980] = 1643, - [1981] = 1709, - [1982] = 1592, - [1983] = 1651, - [1984] = 1545, - [1985] = 1535, - [1986] = 1544, - [1987] = 1550, - [1988] = 1551, - [1989] = 1574, - [1990] = 1575, - [1991] = 1597, - [1992] = 1598, - [1993] = 1601, - [1994] = 1602, - [1995] = 1995, - [1996] = 1607, - [1997] = 1610, - [1998] = 1611, - [1999] = 1162, - [2000] = 1612, - [2001] = 1613, - [2002] = 1615, - [2003] = 1885, - [2004] = 1803, - [2005] = 1531, - [2006] = 1536, - [2007] = 2007, - [2008] = 1541, - [2009] = 1542, - [2010] = 1548, - [2011] = 712, - [2012] = 1627, - [2013] = 1630, - [2014] = 1635, - [2015] = 1638, - [2016] = 2016, - [2017] = 1640, - [2018] = 1644, - [2019] = 1649, - [2020] = 1529, - [2021] = 1532, - [2022] = 1530, - [2023] = 1533, - [2024] = 1534, + [1972] = 1972, + [1973] = 1611, + [1974] = 1550, + [1975] = 1632, + [1976] = 1739, + [1977] = 1562, + [1978] = 1563, + [1979] = 1535, + [1980] = 1707, + [1981] = 1549, + [1982] = 1710, + [1983] = 1588, + [1984] = 1613, + [1985] = 1614, + [1986] = 1621, + [1987] = 1624, + [1988] = 1628, + [1989] = 1629, + [1990] = 1630, + [1991] = 1631, + [1992] = 1634, + [1993] = 1638, + [1994] = 1639, + [1995] = 1640, + [1996] = 1641, + [1997] = 1166, + [1998] = 1642, + [1999] = 1644, + [2000] = 1646, + [2001] = 1627, + [2002] = 2002, + [2003] = 1801, + [2004] = 1580, + [2005] = 2005, + [2006] = 1595, + [2007] = 1598, + [2008] = 1622, + [2009] = 712, + [2010] = 1540, + [2011] = 1599, + [2012] = 1623, + [2013] = 1625, + [2014] = 2014, + [2015] = 1636, + [2016] = 1530, + [2017] = 1532, + [2018] = 1533, + [2019] = 1633, + [2020] = 1531, + [2021] = 1537, + [2022] = 1538, + [2023] = 1542, + [2024] = 1543, [2025] = 1539, - [2026] = 1645, - [2027] = 1642, - [2028] = 2028, - [2029] = 1540, - [2030] = 1543, - [2031] = 1622, - [2032] = 1546, - [2033] = 1547, - [2034] = 1553, - [2035] = 1160, - [2036] = 1554, - [2037] = 1555, - [2038] = 1964, - [2039] = 1556, - [2040] = 1767, - [2041] = 1552, - [2042] = 1558, - [2043] = 1562, - [2044] = 1563, - [2045] = 1742, - [2046] = 1581, - [2047] = 713, - [2048] = 1868, - [2049] = 1559, - [2050] = 1560, - [2051] = 1561, - [2052] = 1564, - [2053] = 1565, - [2054] = 1566, - [2055] = 1567, - [2056] = 1568, - [2057] = 1569, - [2058] = 1528, - [2059] = 1571, - [2060] = 1572, - [2061] = 1573, - [2062] = 1596, - [2063] = 1600, - [2064] = 714, - [2065] = 1577, - [2066] = 1707, - [2067] = 2067, + [2026] = 1546, + [2027] = 2027, + [2028] = 1962, + [2029] = 1547, + [2030] = 1647, + [2031] = 1626, + [2032] = 1551, + [2033] = 1553, + [2034] = 2002, + [2035] = 1801, + [2036] = 1557, + [2037] = 1171, + [2038] = 1559, + [2039] = 1560, + [2040] = 1561, + [2041] = 1765, + [2042] = 1592, + [2043] = 1649, + [2044] = 1552, + [2045] = 1558, + [2046] = 1867, + [2047] = 1635, + [2048] = 1529, + [2049] = 713, + [2050] = 1565, + [2051] = 1566, + [2052] = 1567, + [2053] = 1568, + [2054] = 1569, + [2055] = 1570, + [2056] = 1571, + [2057] = 1572, + [2058] = 1573, + [2059] = 1575, + [2060] = 1576, + [2061] = 1577, + [2062] = 1578, + [2063] = 1545, + [2064] = 1706, + [2065] = 2065, + [2066] = 2066, + [2067] = 1548, [2068] = 2068, - [2069] = 1578, + [2069] = 711, [2070] = 2070, - [2071] = 1582, - [2072] = 2072, - [2073] = 2073, - [2074] = 1583, - [2075] = 1584, - [2076] = 1708, - [2077] = 1879, - [2078] = 1585, - [2079] = 1586, - [2080] = 1589, - [2081] = 1590, + [2071] = 2071, + [2072] = 1583, + [2073] = 1584, + [2074] = 1651, + [2075] = 1877, + [2076] = 1585, + [2077] = 1586, + [2078] = 1587, + [2079] = 1589, + [2080] = 1739, + [2081] = 1740, [2082] = 1741, - [2083] = 1742, - [2084] = 1743, - [2085] = 1744, - [2086] = 1745, - [2087] = 1746, - [2088] = 1747, - [2089] = 1748, - [2090] = 1749, - [2091] = 1750, - [2092] = 1751, - [2093] = 1781, - [2094] = 1753, - [2095] = 1754, - [2096] = 1755, - [2097] = 1756, - [2098] = 1757, - [2099] = 1758, - [2100] = 1759, - [2101] = 1760, - [2102] = 1761, - [2103] = 1762, - [2104] = 1763, - [2105] = 1764, - [2106] = 1765, - [2107] = 1767, + [2083] = 1743, + [2084] = 1744, + [2085] = 1745, + [2086] = 1746, + [2087] = 1747, + [2088] = 1748, + [2089] = 1749, + [2090] = 1779, + [2091] = 1751, + [2092] = 1752, + [2093] = 1753, + [2094] = 1754, + [2095] = 1755, + [2096] = 1756, + [2097] = 1757, + [2098] = 1758, + [2099] = 1759, + [2100] = 1760, + [2101] = 1761, + [2102] = 1762, + [2103] = 1763, + [2104] = 1764, + [2105] = 1765, + [2106] = 1776, + [2107] = 1722, [2108] = 1778, - [2109] = 1779, - [2110] = 1780, - [2111] = 1771, - [2112] = 1537, - [2113] = 2113, - [2114] = 1666, - [2115] = 1661, - [2116] = 2116, - [2117] = 1691, - [2118] = 218, - [2119] = 2119, - [2120] = 1673, - [2121] = 1674, - [2122] = 2122, - [2123] = 2123, - [2124] = 1813, - [2125] = 1704, - [2126] = 1651, - [2127] = 1675, + [2109] = 1777, + [2110] = 1594, + [2111] = 2111, + [2112] = 1531, + [2113] = 1539, + [2114] = 2114, + [2115] = 1531, + [2116] = 1539, + [2117] = 2117, + [2118] = 2118, + [2119] = 2117, + [2120] = 2118, + [2121] = 2121, + [2122] = 2117, + [2123] = 2118, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, [2128] = 2128, - [2129] = 221, - [2130] = 1652, - [2131] = 1705, - [2132] = 223, - [2133] = 224, - [2134] = 1676, + [2129] = 2129, + [2130] = 1655, + [2131] = 1739, + [2132] = 1740, + [2133] = 1741, + [2134] = 1677, [2135] = 2135, - [2136] = 2136, - [2137] = 1677, + [2136] = 1743, + [2137] = 2137, [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 1678, - [2142] = 1709, - [2143] = 2143, + [2139] = 1744, + [2140] = 1745, + [2141] = 1746, + [2142] = 2142, + [2143] = 1747, [2144] = 2144, - [2145] = 1651, - [2146] = 2146, - [2147] = 2147, - [2148] = 2138, - [2149] = 2149, - [2150] = 2140, - [2151] = 2151, - [2152] = 2152, - [2153] = 1545, - [2154] = 1622, - [2155] = 2155, - [2156] = 2151, - [2157] = 2152, - [2158] = 1532, - [2159] = 1645, - [2160] = 1667, - [2161] = 1532, - [2162] = 1645, - [2163] = 2151, - [2164] = 2152, - [2165] = 2151, - [2166] = 2152, - [2167] = 1668, - [2168] = 2151, - [2169] = 2152, - [2170] = 1896, - [2171] = 1662, - [2172] = 1654, - [2173] = 1655, + [2145] = 1748, + [2146] = 1749, + [2147] = 1779, + [2148] = 1751, + [2149] = 1752, + [2150] = 1753, + [2151] = 1754, + [2152] = 1755, + [2153] = 1756, + [2154] = 1757, + [2155] = 1758, + [2156] = 1759, + [2157] = 2157, + [2158] = 1760, + [2159] = 1761, + [2160] = 1762, + [2161] = 1763, + [2162] = 1764, + [2163] = 220, + [2164] = 224, + [2165] = 222, + [2166] = 2166, + [2167] = 1765, + [2168] = 223, + [2169] = 2169, + [2170] = 225, + [2171] = 2171, + [2172] = 2172, + [2173] = 230, [2174] = 2174, - [2175] = 2175, - [2176] = 1824, - [2177] = 2136, + [2175] = 1801, + [2176] = 1670, + [2177] = 2177, [2178] = 2178, [2179] = 2179, - [2180] = 2180, - [2181] = 1741, - [2182] = 2182, - [2183] = 1742, - [2184] = 1743, - [2185] = 1744, - [2186] = 1679, - [2187] = 2187, - [2188] = 1656, - [2189] = 1745, - [2190] = 1746, - [2191] = 1747, - [2192] = 2192, - [2193] = 1748, - [2194] = 2194, - [2195] = 1749, - [2196] = 1750, - [2197] = 1751, - [2198] = 1781, - [2199] = 1753, - [2200] = 1754, - [2201] = 1755, - [2202] = 1756, - [2203] = 1757, - [2204] = 1758, - [2205] = 1759, - [2206] = 1760, - [2207] = 1761, - [2208] = 1762, - [2209] = 1763, - [2210] = 1764, - [2211] = 1765, - [2212] = 2212, - [2213] = 2213, - [2214] = 2214, - [2215] = 1767, - [2216] = 217, - [2217] = 232, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 1868, - [2222] = 1663, - [2223] = 235, - [2224] = 2224, - [2225] = 1653, - [2226] = 2226, + [2180] = 224, + [2181] = 225, + [2182] = 226, + [2183] = 2183, + [2184] = 209, + [2185] = 220, + [2186] = 222, + [2187] = 223, + [2188] = 2188, + [2189] = 1667, + [2190] = 227, + [2191] = 228, + [2192] = 232, + [2193] = 1661, + [2194] = 233, + [2195] = 1668, + [2196] = 2196, + [2197] = 1679, + [2198] = 1680, + [2199] = 226, + [2200] = 1681, + [2201] = 1682, + [2202] = 2202, + [2203] = 2203, + [2204] = 1683, + [2205] = 2205, + [2206] = 1684, + [2207] = 1685, + [2208] = 2142, + [2209] = 1827, + [2210] = 1686, + [2211] = 1656, + [2212] = 2142, + [2213] = 1707, + [2214] = 2169, + [2215] = 2215, + [2216] = 2216, + [2217] = 2169, + [2218] = 2172, + [2219] = 2142, + [2220] = 1669, + [2221] = 1827, + [2222] = 1687, + [2223] = 2172, + [2224] = 1794, + [2225] = 2144, + [2226] = 1707, [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2231, - [2232] = 237, - [2233] = 2233, - [2234] = 1681, - [2235] = 1682, + [2228] = 1657, + [2229] = 1535, + [2230] = 1663, + [2231] = 2142, + [2232] = 1549, + [2233] = 1710, + [2234] = 1664, + [2235] = 2235, [2236] = 2236, - [2237] = 1683, - [2238] = 1684, - [2239] = 1685, - [2240] = 1686, - [2241] = 2192, - [2242] = 1687, - [2243] = 219, - [2244] = 230, - [2245] = 1688, - [2246] = 2246, - [2247] = 2247, - [2248] = 2192, - [2249] = 1868, - [2250] = 1643, - [2251] = 2192, - [2252] = 1592, - [2253] = 1651, - [2254] = 1658, - [2255] = 1709, - [2256] = 2192, + [2237] = 2142, + [2238] = 2142, + [2239] = 1776, + [2240] = 1722, + [2241] = 1778, + [2242] = 1777, + [2243] = 2243, + [2244] = 2244, + [2245] = 1660, + [2246] = 227, + [2247] = 228, + [2248] = 2248, + [2249] = 2249, + [2250] = 2166, + [2251] = 1688, + [2252] = 2252, + [2253] = 2253, + [2254] = 230, + [2255] = 1671, + [2256] = 1867, [2257] = 2257, - [2258] = 2192, - [2259] = 1778, - [2260] = 1779, - [2261] = 1780, - [2262] = 1771, - [2263] = 238, - [2264] = 2264, - [2265] = 2214, - [2266] = 1690, - [2267] = 2138, - [2268] = 2140, - [2269] = 228, - [2270] = 1803, - [2271] = 1672, - [2272] = 2138, - [2273] = 1723, - [2274] = 2212, - [2275] = 2140, - [2276] = 219, - [2277] = 230, - [2278] = 238, - [2279] = 1692, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 2283, - [2284] = 2284, + [2258] = 1689, + [2259] = 232, + [2260] = 1690, + [2261] = 2261, + [2262] = 1672, + [2263] = 2138, + [2264] = 2236, + [2265] = 1703, + [2266] = 1653, + [2267] = 1528, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 1710, + [2272] = 2272, + [2273] = 2273, + [2274] = 2274, + [2275] = 2174, + [2276] = 2177, + [2277] = 1673, + [2278] = 1867, + [2279] = 1704, + [2280] = 1658, + [2281] = 1691, + [2282] = 1692, + [2283] = 1693, + [2284] = 1694, [2285] = 2285, - [2286] = 2149, - [2287] = 2174, - [2288] = 218, - [2289] = 221, - [2290] = 223, - [2291] = 1693, - [2292] = 1694, - [2293] = 1695, - [2294] = 1696, - [2295] = 224, - [2296] = 1659, - [2297] = 2297, + [2286] = 1674, + [2287] = 2287, + [2288] = 2288, + [2289] = 2289, + [2290] = 2269, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2270, [2298] = 2298, - [2299] = 2299, - [2300] = 2281, - [2301] = 2301, + [2299] = 1867, + [2300] = 2300, + [2301] = 2126, [2302] = 2302, [2303] = 2303, - [2304] = 2304, + [2304] = 1695, [2305] = 2305, - [2306] = 217, - [2307] = 2282, + [2306] = 2306, + [2307] = 2307, [2308] = 2308, - [2309] = 1868, - [2310] = 2310, - [2311] = 232, - [2312] = 235, - [2313] = 237, + [2309] = 233, + [2310] = 1675, + [2311] = 2227, + [2312] = 2312, + [2313] = 2313, [2314] = 2314, - [2315] = 1697, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 1669, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 1670, - [2326] = 1660, - [2327] = 1698, - [2328] = 2128, - [2329] = 1699, - [2330] = 1700, - [2331] = 1701, - [2332] = 1702, - [2333] = 1703, - [2334] = 2138, - [2335] = 2140, - [2336] = 2336, - [2337] = 2283, - [2338] = 2284, - [2339] = 2339, - [2340] = 1588, - [2341] = 2175, - [2342] = 2301, - [2343] = 2285, - [2344] = 228, - [2345] = 2138, - [2346] = 2140, - [2347] = 2192, - [2348] = 1824, - [2349] = 2349, - [2350] = 1671, - [2351] = 1709, + [2315] = 2315, + [2316] = 1787, + [2317] = 1659, + [2318] = 1665, + [2319] = 1697, + [2320] = 1676, + [2321] = 2169, + [2322] = 2172, + [2323] = 1698, + [2324] = 1699, + [2325] = 1700, + [2326] = 1701, + [2327] = 1702, + [2328] = 2328, + [2329] = 2272, + [2330] = 2273, + [2331] = 2331, + [2332] = 2169, + [2333] = 1666, + [2334] = 2172, + [2335] = 2274, + [2336] = 2124, + [2337] = 2292, + [2338] = 1707, + [2339] = 1710, + [2340] = 2340, + [2341] = 2341, + [2342] = 1654, + [2343] = 2343, + [2344] = 2169, + [2345] = 209, + [2346] = 2172, + [2347] = 2117, + [2348] = 2118, + [2349] = 2314, + [2350] = 1588, + [2351] = 1647, [2352] = 2352, - [2353] = 2257, - [2354] = 1795, - [2355] = 2194, - [2356] = 1665, + [2353] = 1894, + [2354] = 2117, + [2355] = 2118, + [2356] = 1528, [2357] = 2357, - [2358] = 2358, - [2359] = 1588, - [2360] = 2360, - [2361] = 2233, - [2362] = 1657, - [2363] = 1764, - [2364] = 1741, - [2365] = 1742, - [2366] = 1743, - [2367] = 1744, - [2368] = 1745, - [2369] = 1746, - [2370] = 1747, - [2371] = 1748, - [2372] = 1749, - [2373] = 1750, - [2374] = 1751, - [2375] = 1781, - [2376] = 1753, - [2377] = 1754, - [2378] = 1755, - [2379] = 1756, - [2380] = 1757, - [2381] = 1758, - [2382] = 1759, - [2383] = 1760, - [2384] = 1761, - [2385] = 1762, - [2386] = 1763, - [2387] = 1765, - [2388] = 1767, - [2389] = 1592, - [2390] = 239, - [2391] = 1741, - [2392] = 1742, - [2393] = 1743, - [2394] = 1744, - [2395] = 1745, - [2396] = 1746, - [2397] = 1747, - [2398] = 1748, - [2399] = 1749, - [2400] = 1750, - [2401] = 1751, - [2402] = 1781, + [2358] = 1652, + [2359] = 2312, + [2360] = 1755, + [2361] = 1756, + [2362] = 1757, + [2363] = 1758, + [2364] = 1759, + [2365] = 1760, + [2366] = 1761, + [2367] = 1762, + [2368] = 1763, + [2369] = 1764, + [2370] = 2370, + [2371] = 2371, + [2372] = 1588, + [2373] = 1765, + [2374] = 2374, + [2375] = 2375, + [2376] = 1588, + [2377] = 2377, + [2378] = 2374, + [2379] = 2379, + [2380] = 2380, + [2381] = 1647, + [2382] = 1647, + [2383] = 2383, + [2384] = 2384, + [2385] = 1827, + [2386] = 1894, + [2387] = 1739, + [2388] = 1740, + [2389] = 1741, + [2390] = 1743, + [2391] = 1744, + [2392] = 1745, + [2393] = 1746, + [2394] = 1747, + [2395] = 1748, + [2396] = 1749, + [2397] = 2397, + [2398] = 2398, + [2399] = 1779, + [2400] = 1751, + [2401] = 2401, + [2402] = 1752, [2403] = 1753, - [2404] = 1754, - [2405] = 1755, - [2406] = 1756, - [2407] = 1757, - [2408] = 1758, - [2409] = 1759, - [2410] = 1760, - [2411] = 1761, - [2412] = 1762, - [2413] = 1763, - [2414] = 1764, - [2415] = 1765, - [2416] = 1767, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, - [2420] = 2420, - [2421] = 2421, - [2422] = 2323, - [2423] = 2423, - [2424] = 1709, - [2425] = 1672, - [2426] = 2426, - [2427] = 2427, - [2428] = 2423, + [2404] = 1776, + [2405] = 1722, + [2406] = 1778, + [2407] = 1777, + [2408] = 1754, + [2409] = 1755, + [2410] = 1756, + [2411] = 2411, + [2412] = 1757, + [2413] = 1758, + [2414] = 1776, + [2415] = 1722, + [2416] = 1778, + [2417] = 1777, + [2418] = 1759, + [2419] = 1760, + [2420] = 1761, + [2421] = 1762, + [2422] = 1813, + [2423] = 1763, + [2424] = 1764, + [2425] = 2425, + [2426] = 1765, + [2427] = 1894, + [2428] = 2383, [2429] = 2429, - [2430] = 2419, - [2431] = 1651, - [2432] = 1824, - [2433] = 2417, + [2430] = 1531, + [2431] = 2431, + [2432] = 1705, + [2433] = 2433, [2434] = 2434, - [2435] = 1707, - [2436] = 2419, + [2435] = 2435, + [2436] = 1706, [2437] = 2437, - [2438] = 1545, + [2438] = 2374, [2439] = 2439, [2440] = 2440, - [2441] = 2441, - [2442] = 2434, + [2441] = 2377, + [2442] = 1539, [2443] = 2443, - [2444] = 1622, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 1706, - [2450] = 1778, - [2451] = 1643, - [2452] = 1780, - [2453] = 1771, - [2454] = 1707, + [2444] = 2444, + [2445] = 2374, + [2446] = 1753, + [2447] = 1754, + [2448] = 1651, + [2449] = 1787, + [2450] = 2439, + [2451] = 2451, + [2452] = 2440, + [2453] = 214, + [2454] = 2435, [2455] = 2455, - [2456] = 2456, - [2457] = 2457, - [2458] = 1778, - [2459] = 1779, - [2460] = 1780, - [2461] = 1771, - [2462] = 2462, - [2463] = 1708, - [2464] = 1532, - [2465] = 1799, - [2466] = 1645, - [2467] = 2467, - [2468] = 1622, - [2469] = 2469, - [2470] = 239, - [2471] = 2419, - [2472] = 1896, - [2473] = 2473, - [2474] = 2474, - [2475] = 2475, - [2476] = 2476, - [2477] = 2419, - [2478] = 2420, - [2479] = 2455, - [2480] = 1813, - [2481] = 2481, - [2482] = 1868, - [2483] = 2419, - [2484] = 2481, - [2485] = 2485, - [2486] = 1896, - [2487] = 1868, - [2488] = 2488, - [2489] = 1795, - [2490] = 1741, - [2491] = 1742, - [2492] = 1743, - [2493] = 1744, - [2494] = 1745, - [2495] = 1746, - [2496] = 1747, - [2497] = 1748, - [2498] = 1749, - [2499] = 1750, - [2500] = 1751, - [2501] = 1781, - [2502] = 1753, - [2503] = 1754, - [2504] = 1755, - [2505] = 1756, - [2506] = 1757, - [2507] = 1758, - [2508] = 1759, - [2509] = 1760, - [2510] = 1761, - [2511] = 1762, - [2512] = 1763, - [2513] = 1764, - [2514] = 1765, - [2515] = 1767, - [2516] = 1545, - [2517] = 1588, - [2518] = 1778, - [2519] = 1779, - [2520] = 1780, - [2521] = 1771, - [2522] = 2522, - [2523] = 2473, - [2524] = 1672, - [2525] = 1868, - [2526] = 1588, - [2527] = 1868, - [2528] = 1779, - [2529] = 1757, - [2530] = 2530, - [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 1545, - [2535] = 2535, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 1622, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 1778, - [2544] = 1779, - [2545] = 1780, - [2546] = 1771, - [2547] = 1709, - [2548] = 2548, - [2549] = 2549, - [2550] = 1741, - [2551] = 2551, - [2552] = 2552, - [2553] = 2538, - [2554] = 1742, - [2555] = 1743, - [2556] = 1744, - [2557] = 1745, - [2558] = 1746, - [2559] = 2559, - [2560] = 1747, - [2561] = 1748, - [2562] = 2562, - [2563] = 1749, - [2564] = 1651, - [2565] = 2538, - [2566] = 1750, - [2567] = 1751, - [2568] = 1781, - [2569] = 1753, - [2570] = 1754, - [2571] = 1755, - [2572] = 2538, + [2456] = 1867, + [2457] = 2374, + [2458] = 1739, + [2459] = 2444, + [2460] = 1867, + [2461] = 2461, + [2462] = 1535, + [2463] = 2463, + [2464] = 1549, + [2465] = 1740, + [2466] = 2466, + [2467] = 1794, + [2468] = 1741, + [2469] = 1743, + [2470] = 1670, + [2471] = 1744, + [2472] = 1528, + [2473] = 2374, + [2474] = 1745, + [2475] = 2443, + [2476] = 1707, + [2477] = 1670, + [2478] = 2478, + [2479] = 1746, + [2480] = 1710, + [2481] = 1747, + [2482] = 1748, + [2483] = 1749, + [2484] = 1739, + [2485] = 1740, + [2486] = 1741, + [2487] = 1743, + [2488] = 1744, + [2489] = 1745, + [2490] = 1746, + [2491] = 1747, + [2492] = 1748, + [2493] = 1749, + [2494] = 1779, + [2495] = 1751, + [2496] = 1752, + [2497] = 1753, + [2498] = 1754, + [2499] = 1755, + [2500] = 1756, + [2501] = 1757, + [2502] = 1758, + [2503] = 1759, + [2504] = 1760, + [2505] = 1761, + [2506] = 1762, + [2507] = 1763, + [2508] = 1764, + [2509] = 1765, + [2510] = 2510, + [2511] = 1706, + [2512] = 1779, + [2513] = 214, + [2514] = 1776, + [2515] = 1722, + [2516] = 1778, + [2517] = 1777, + [2518] = 1751, + [2519] = 1752, + [2520] = 2520, + [2521] = 1867, + [2522] = 1528, + [2523] = 1867, + [2524] = 2524, + [2525] = 991, + [2526] = 2526, + [2527] = 1739, + [2528] = 1740, + [2529] = 1743, + [2530] = 1744, + [2531] = 1745, + [2532] = 1746, + [2533] = 1747, + [2534] = 1748, + [2535] = 1749, + [2536] = 1779, + [2537] = 1751, + [2538] = 1752, + [2539] = 1753, + [2540] = 1754, + [2541] = 1755, + [2542] = 1756, + [2543] = 1757, + [2544] = 1758, + [2545] = 1759, + [2546] = 1760, + [2547] = 1761, + [2548] = 1762, + [2549] = 1763, + [2550] = 1764, + [2551] = 1765, + [2552] = 1894, + [2553] = 2553, + [2554] = 2554, + [2555] = 2555, + [2556] = 2556, + [2557] = 1670, + [2558] = 1705, + [2559] = 1706, + [2560] = 1651, + [2561] = 988, + [2562] = 1787, + [2563] = 992, + [2564] = 1670, + [2565] = 1588, + [2566] = 1647, + [2567] = 1707, + [2568] = 1710, + [2569] = 2569, + [2570] = 2570, + [2571] = 1867, + [2572] = 2572, [2573] = 2573, - [2574] = 1707, - [2575] = 2538, - [2576] = 1708, - [2577] = 1756, - [2578] = 1758, - [2579] = 2538, - [2580] = 1759, - [2581] = 2538, - [2582] = 1588, + [2574] = 2574, + [2575] = 2575, + [2576] = 2576, + [2577] = 1776, + [2578] = 1722, + [2579] = 1778, + [2580] = 1777, + [2581] = 2581, + [2582] = 2582, [2583] = 2583, [2584] = 2584, [2585] = 2585, - [2586] = 1760, - [2587] = 1813, - [2588] = 1761, - [2589] = 2538, - [2590] = 2590, - [2591] = 2591, - [2592] = 977, - [2593] = 1896, - [2594] = 1762, - [2595] = 1763, - [2596] = 2538, - [2597] = 1672, - [2598] = 1764, - [2599] = 2599, + [2586] = 2586, + [2587] = 2572, + [2588] = 2572, + [2589] = 2572, + [2590] = 2572, + [2591] = 2553, + [2592] = 2572, + [2593] = 2593, + [2594] = 2594, + [2595] = 2572, + [2596] = 2596, + [2597] = 2597, + [2598] = 2598, + [2599] = 1528, [2600] = 2600, - [2601] = 2601, - [2602] = 978, - [2603] = 1868, - [2604] = 979, - [2605] = 2600, - [2606] = 1672, - [2607] = 1765, - [2608] = 1767, - [2609] = 2609, - [2610] = 2538, + [2601] = 2572, + [2602] = 2602, + [2603] = 2603, + [2604] = 2572, + [2605] = 2605, + [2606] = 2572, + [2607] = 2607, + [2608] = 1741, + [2609] = 2118, + [2610] = 2610, [2611] = 2611, - [2612] = 1706, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2616, - [2617] = 2617, - [2618] = 2151, - [2619] = 2151, - [2620] = 2152, - [2621] = 2151, - [2622] = 2152, + [2612] = 2612, + [2613] = 2117, + [2614] = 2118, + [2615] = 2117, + [2616] = 2118, + [2617] = 2117, + [2618] = 2118, + [2619] = 2619, + [2620] = 2117, + [2621] = 2621, + [2622] = 2433, [2623] = 2623, [2624] = 2624, - [2625] = 2475, - [2626] = 2626, - [2627] = 2627, - [2628] = 2152, - [2629] = 2629, - [2630] = 2152, - [2631] = 1824, + [2625] = 2625, + [2626] = 2117, + [2627] = 2117, + [2628] = 2118, + [2629] = 2118, + [2630] = 2630, + [2631] = 2631, [2632] = 2632, [2633] = 2633, - [2634] = 2151, - [2635] = 2152, + [2634] = 2634, + [2635] = 2635, [2636] = 2636, [2637] = 2637, - [2638] = 2615, + [2638] = 1827, [2639] = 2639, [2640] = 2640, - [2641] = 2151, - [2642] = 2642, - [2643] = 2643, - [2644] = 2644, + [2641] = 2641, + [2642] = 1528, + [2643] = 1528, + [2644] = 2611, [2645] = 2645, - [2646] = 1588, + [2646] = 1528, [2647] = 2647, - [2648] = 1588, - [2649] = 1588, - [2650] = 2152, - [2651] = 2151, + [2648] = 236, + [2649] = 2649, + [2650] = 2650, + [2651] = 2651, [2652] = 2652, [2653] = 2653, [2654] = 2654, - [2655] = 226, + [2655] = 2655, [2656] = 2656, - [2657] = 226, + [2657] = 2657, [2658] = 2658, [2659] = 2659, - [2660] = 2654, + [2660] = 2660, [2661] = 2661, - [2662] = 229, - [2663] = 1299, + [2662] = 2662, + [2663] = 2663, [2664] = 2664, - [2665] = 2654, - [2666] = 2654, - [2667] = 2654, + [2665] = 2665, + [2666] = 2666, + [2667] = 2652, [2668] = 2668, [2669] = 2669, [2670] = 2670, @@ -7197,144 +7147,144 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2672] = 2672, [2673] = 2673, [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2678, - [2679] = 2654, + [2675] = 2652, + [2676] = 2652, + [2677] = 2652, + [2678] = 235, + [2679] = 2679, [2680] = 2680, - [2681] = 2681, - [2682] = 2682, + [2681] = 212, + [2682] = 2652, [2683] = 2683, - [2684] = 2684, + [2684] = 210, [2685] = 2685, - [2686] = 1621, + [2686] = 2652, [2687] = 2687, [2688] = 2688, - [2689] = 2689, + [2689] = 2652, [2690] = 2690, [2691] = 2691, [2692] = 2692, [2693] = 2693, - [2694] = 225, - [2695] = 229, + [2694] = 1648, + [2695] = 2695, [2696] = 2696, - [2697] = 2697, - [2698] = 2698, + [2697] = 212, + [2698] = 236, [2699] = 2699, - [2700] = 2654, - [2701] = 233, + [2700] = 2700, + [2701] = 2701, [2702] = 2702, [2703] = 2703, [2704] = 2704, [2705] = 2705, - [2706] = 2654, + [2706] = 2652, [2707] = 2707, - [2708] = 1247, - [2709] = 2709, + [2708] = 2708, + [2709] = 2652, [2710] = 2710, - [2711] = 2711, + [2711] = 1246, [2712] = 2712, - [2713] = 2654, - [2714] = 2654, - [2715] = 2715, + [2713] = 2554, + [2714] = 2555, + [2715] = 235, [2716] = 2716, [2717] = 2717, [2718] = 2718, - [2719] = 2535, - [2720] = 1642, + [2719] = 1633, + [2720] = 2720, [2721] = 2721, [2722] = 2722, - [2723] = 2723, - [2724] = 2533, + [2723] = 210, + [2724] = 2724, [2725] = 2725, - [2726] = 233, - [2727] = 225, + [2726] = 2726, + [2727] = 2727, [2728] = 2728, - [2729] = 2729, - [2730] = 2730, - [2731] = 2264, + [2729] = 1272, + [2730] = 2196, + [2731] = 2731, [2732] = 2732, - [2733] = 2733, - [2734] = 2734, - [2735] = 2220, + [2733] = 2340, + [2734] = 2114, + [2735] = 2735, [2736] = 2736, - [2737] = 2231, + [2737] = 2252, [2738] = 2738, - [2739] = 2122, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2462, - [2744] = 2744, - [2745] = 2473, - [2746] = 2746, - [2747] = 2429, - [2748] = 1262, - [2749] = 2488, + [2739] = 2380, + [2740] = 2461, + [2741] = 2524, + [2742] = 2443, + [2743] = 2443, + [2744] = 2463, + [2745] = 2375, + [2746] = 2444, + [2747] = 2383, + [2748] = 2461, + [2749] = 2434, [2750] = 2750, - [2751] = 2751, - [2752] = 2474, - [2753] = 2753, - [2754] = 2473, - [2755] = 2455, - [2756] = 2481, - [2757] = 2750, - [2758] = 2485, - [2759] = 2420, - [2760] = 2437, - [2761] = 2761, - [2762] = 2418, - [2763] = 2481, - [2764] = 2426, - [2765] = 2447, - [2766] = 2455, - [2767] = 2426, - [2768] = 2474, - [2769] = 2485, - [2770] = 2447, - [2771] = 2751, - [2772] = 2420, + [2751] = 2444, + [2752] = 2752, + [2753] = 2524, + [2754] = 2520, + [2755] = 2520, + [2756] = 2455, + [2757] = 2757, + [2758] = 2758, + [2759] = 2455, + [2760] = 2757, + [2761] = 1269, + [2762] = 2510, + [2763] = 2750, + [2764] = 2440, + [2765] = 2440, + [2766] = 2766, + [2767] = 2767, + [2768] = 2383, + [2769] = 2769, + [2770] = 2770, + [2771] = 2771, + [2772] = 2769, [2773] = 2773, [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2775, - [2780] = 2776, + [2777] = 2775, + [2778] = 2776, + [2779] = 2779, + [2780] = 2780, [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 2778, - [2785] = 2785, - [2786] = 2778, - [2787] = 2787, - [2788] = 2785, - [2789] = 2774, - [2790] = 2777, + [2782] = 2779, + [2783] = 2780, + [2784] = 2784, + [2785] = 2784, + [2786] = 2786, + [2787] = 2770, + [2788] = 2770, + [2789] = 2789, + [2790] = 1287, [2791] = 2791, - [2792] = 2791, + [2792] = 2792, [2793] = 2793, [2794] = 2794, [2795] = 2795, - [2796] = 1284, + [2796] = 2796, [2797] = 2797, [2798] = 2798, [2799] = 2799, [2800] = 2800, [2801] = 2801, - [2802] = 1266, - [2803] = 2427, - [2804] = 2804, + [2802] = 1344, + [2803] = 2803, + [2804] = 1332, [2805] = 2805, - [2806] = 2806, + [2806] = 1317, [2807] = 2807, - [2808] = 1297, + [2808] = 2808, [2809] = 2809, - [2810] = 2810, - [2811] = 1286, - [2812] = 1253, + [2810] = 1288, + [2811] = 2811, + [2812] = 2451, [2813] = 2813, [2814] = 2814, [2815] = 2815, @@ -7349,691 +7299,691 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2824] = 2824, [2825] = 2825, [2826] = 2826, - [2827] = 2823, - [2828] = 2828, + [2827] = 2827, + [2828] = 2825, [2829] = 2829, [2830] = 2830, - [2831] = 2818, + [2831] = 2831, [2832] = 2832, [2833] = 2833, [2834] = 2834, [2835] = 2835, - [2836] = 2828, - [2837] = 2837, + [2836] = 2831, + [2837] = 2817, [2838] = 2838, [2839] = 2839, - [2840] = 2840, + [2840] = 2839, [2841] = 2841, - [2842] = 2842, + [2842] = 2838, [2843] = 2843, - [2844] = 2844, + [2844] = 2827, [2845] = 2845, - [2846] = 2846, + [2846] = 2841, [2847] = 2847, [2848] = 2848, [2849] = 2849, [2850] = 2850, [2851] = 2851, [2852] = 2852, - [2853] = 2839, + [2853] = 2853, [2854] = 2854, - [2855] = 2850, - [2856] = 2830, + [2855] = 2845, + [2856] = 2856, [2857] = 2857, - [2858] = 2824, - [2859] = 2826, + [2858] = 2858, + [2859] = 2859, [2860] = 2835, - [2861] = 2834, - [2862] = 2851, + [2861] = 2832, + [2862] = 2862, [2863] = 2863, - [2864] = 2819, + [2864] = 2864, [2865] = 2865, [2866] = 2866, - [2867] = 2867, + [2867] = 2834, [2868] = 2868, - [2869] = 2869, + [2869] = 2822, [2870] = 2870, [2871] = 2871, [2872] = 2872, [2873] = 2873, [2874] = 2874, [2875] = 2875, - [2876] = 2876, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 1505, - [2881] = 1509, - [2882] = 1506, - [2883] = 1640, - [2884] = 1638, - [2885] = 1644, - [2886] = 1649, - [2887] = 1529, - [2888] = 1530, - [2889] = 1533, - [2890] = 1534, - [2891] = 1539, - [2892] = 1540, - [2893] = 1543, - [2894] = 1578, - [2895] = 1569, - [2896] = 1590, - [2897] = 1593, - [2898] = 1567, - [2899] = 1582, - [2900] = 1635, - [2901] = 1583, - [2902] = 1584, - [2903] = 1568, - [2904] = 1585, - [2905] = 1559, - [2906] = 1560, - [2907] = 1577, - [2908] = 1561, - [2909] = 1564, - [2910] = 1565, + [2876] = 1509, + [2877] = 1506, + [2878] = 1504, + [2879] = 1623, + [2880] = 1587, + [2881] = 1591, + [2882] = 1597, + [2883] = 1572, + [2884] = 1570, + [2885] = 1573, + [2886] = 1575, + [2887] = 1571, + [2888] = 1583, + [2889] = 1540, + [2890] = 1599, + [2891] = 1585, + [2892] = 1625, + [2893] = 1584, + [2894] = 1596, + [2895] = 1530, + [2896] = 1532, + [2897] = 1533, + [2898] = 1589, + [2899] = 1537, + [2900] = 1538, + [2901] = 1542, + [2902] = 1565, + [2903] = 1566, + [2904] = 1567, + [2905] = 1543, + [2906] = 1568, + [2907] = 1546, + [2908] = 1547, + [2909] = 1569, + [2910] = 1650, [2911] = 1586, - [2912] = 1589, - [2913] = 1566, - [2914] = 1627, - [2915] = 1630, - [2916] = 1528, - [2917] = 243, - [2918] = 244, - [2919] = 1580, - [2920] = 1510, - [2921] = 1607, - [2922] = 1623, - [2923] = 1610, - [2924] = 1631, - [2925] = 1611, - [2926] = 1505, - [2927] = 1618, - [2928] = 2928, - [2929] = 1575, - [2930] = 1551, - [2931] = 1506, - [2932] = 1597, - [2933] = 1574, - [2934] = 1517, - [2935] = 1591, - [2936] = 1602, - [2937] = 1509, - [2938] = 1600, - [2939] = 1522, - [2940] = 1581, - [2941] = 1521, - [2942] = 1526, - [2943] = 1520, - [2944] = 1648, + [2912] = 1636, + [2913] = 213, + [2914] = 219, + [2915] = 1639, + [2916] = 1550, + [2917] = 1602, + [2918] = 1604, + [2919] = 1641, + [2920] = 1610, + [2921] = 2921, + [2922] = 1562, + [2923] = 1512, + [2924] = 1624, + [2925] = 1504, + [2926] = 1628, + [2927] = 1629, + [2928] = 1638, + [2929] = 1630, + [2930] = 1640, + [2931] = 1509, + [2932] = 1505, + [2933] = 1506, + [2934] = 1548, + [2935] = 1522, + [2936] = 1529, + [2937] = 1514, + [2938] = 1574, + [2939] = 1527, + [2940] = 1516, + [2941] = 1589, + [2942] = 2942, + [2943] = 1568, + [2944] = 2944, [2945] = 2945, - [2946] = 1590, - [2947] = 1593, - [2948] = 1596, - [2949] = 2949, - [2950] = 2950, - [2951] = 2945, - [2952] = 2952, - [2953] = 1614, - [2954] = 1587, - [2955] = 1509, - [2956] = 1506, - [2957] = 1505, - [2958] = 2958, - [2959] = 2949, - [2960] = 2950, - [2961] = 2952, - [2962] = 1558, - [2963] = 1627, - [2964] = 1608, - [2965] = 1630, - [2966] = 1629, - [2967] = 1635, - [2968] = 1638, - [2969] = 2958, - [2970] = 1640, - [2971] = 1644, - [2972] = 1649, - [2973] = 1529, - [2974] = 1628, - [2975] = 1530, - [2976] = 1533, - [2977] = 2949, - [2978] = 2950, - [2979] = 2945, - [2980] = 2952, - [2981] = 1534, - [2982] = 1539, - [2983] = 1540, - [2984] = 2958, - [2985] = 1633, - [2986] = 1543, - [2987] = 2949, - [2988] = 2950, - [2989] = 2945, - [2990] = 2952, - [2991] = 1594, - [2992] = 2949, - [2993] = 1563, - [2994] = 2950, - [2995] = 1548, - [2996] = 2945, - [2997] = 1571, - [2998] = 1572, - [2999] = 2952, - [3000] = 1542, - [3001] = 2958, - [3002] = 1546, - [3003] = 1547, - [3004] = 1554, - [3005] = 1555, - [3006] = 2958, - [3007] = 1559, - [3008] = 1560, - [3009] = 1561, - [3010] = 2958, - [3011] = 1564, - [3012] = 2958, - [3013] = 1619, - [3014] = 1595, - [3015] = 1625, - [3016] = 1535, - [3017] = 1544, - [3018] = 1616, - [3019] = 1565, - [3020] = 1550, - [3021] = 1566, - [3022] = 1567, - [3023] = 1568, - [3024] = 1569, - [3025] = 1598, - [3026] = 1528, - [3027] = 1510, - [3028] = 1577, - [3029] = 1531, - [3030] = 1612, - [3031] = 1647, - [3032] = 1536, - [3033] = 2958, - [3034] = 1578, - [3035] = 1615, - [3036] = 2958, - [3037] = 2958, - [3038] = 1582, - [3039] = 1583, - [3040] = 1584, - [3041] = 1541, - [3042] = 1634, - [3043] = 1585, - [3044] = 1586, - [3045] = 1589, - [3046] = 1573, + [2946] = 1569, + [2947] = 1553, + [2948] = 2948, + [2949] = 1649, + [2950] = 1636, + [2951] = 1506, + [2952] = 1530, + [2953] = 1532, + [2954] = 1533, + [2955] = 1577, + [2956] = 1583, + [2957] = 1551, + [2958] = 1584, + [2959] = 1585, + [2960] = 1599, + [2961] = 1586, + [2962] = 1600, + [2963] = 1587, + [2964] = 1626, + [2965] = 1591, + [2966] = 1650, + [2967] = 1596, + [2968] = 2942, + [2969] = 1597, + [2970] = 1620, + [2971] = 1558, + [2972] = 1578, + [2973] = 1611, + [2974] = 2948, + [2975] = 1609, + [2976] = 1646, + [2977] = 2942, + [2978] = 1637, + [2979] = 2979, + [2980] = 2979, + [2981] = 1554, + [2982] = 2944, + [2983] = 1570, + [2984] = 2944, + [2985] = 2945, + [2986] = 2979, + [2987] = 1540, + [2988] = 1598, + [2989] = 1571, + [2990] = 1572, + [2991] = 1580, + [2992] = 1576, + [2993] = 1567, + [2994] = 1632, + [2995] = 1565, + [2996] = 2948, + [2997] = 1573, + [2998] = 1559, + [2999] = 1613, + [3000] = 2942, + [3001] = 1614, + [3002] = 2944, + [3003] = 2979, + [3004] = 2979, + [3005] = 1623, + [3006] = 2945, + [3007] = 1544, + [3008] = 2945, + [3009] = 2979, + [3010] = 1563, + [3011] = 1621, + [3012] = 1625, + [3013] = 2979, + [3014] = 1537, + [3015] = 1603, + [3016] = 1505, + [3017] = 1538, + [3018] = 1560, + [3019] = 1594, + [3020] = 2979, + [3021] = 1642, + [3022] = 1575, + [3023] = 1631, + [3024] = 1635, + [3025] = 2979, + [3026] = 1504, + [3027] = 1542, + [3028] = 1543, + [3029] = 2979, + [3030] = 1545, + [3031] = 1546, + [3032] = 2948, + [3033] = 1547, + [3034] = 2948, + [3035] = 2942, + [3036] = 2944, + [3037] = 1509, + [3038] = 1566, + [3039] = 1556, + [3040] = 2945, + [3041] = 1536, + [3042] = 1622, + [3043] = 3043, + [3044] = 3044, + [3045] = 3045, + [3046] = 3046, [3047] = 3047, [3048] = 3048, - [3049] = 3048, - [3050] = 3050, - [3051] = 3051, + [3049] = 3047, + [3050] = 3048, + [3051] = 3048, [3052] = 3048, - [3053] = 3053, - [3054] = 3054, - [3055] = 3055, - [3056] = 3056, - [3057] = 3053, + [3053] = 3047, + [3054] = 1523, + [3055] = 3047, + [3056] = 1524, + [3057] = 3057, [3058] = 3058, - [3059] = 3059, - [3060] = 1513, - [3061] = 3048, - [3062] = 1514, + [3059] = 1525, + [3060] = 3060, + [3061] = 3047, + [3062] = 3062, [3063] = 3063, - [3064] = 3048, - [3065] = 3048, + [3064] = 3064, + [3065] = 3065, [3066] = 3066, [3067] = 3067, - [3068] = 3068, - [3069] = 3053, + [3068] = 3048, + [3069] = 3069, [3070] = 3070, [3071] = 3071, [3072] = 3072, - [3073] = 1526, + [3073] = 3073, [3074] = 3074, - [3075] = 3053, - [3076] = 3076, - [3077] = 3077, - [3078] = 3078, + [3075] = 3047, + [3076] = 1514, + [3077] = 1512, + [3078] = 3047, [3079] = 3079, [3080] = 3080, - [3081] = 3053, - [3082] = 1517, - [3083] = 1519, - [3084] = 3084, + [3081] = 3081, + [3082] = 3082, + [3083] = 3083, + [3084] = 1538, [3085] = 3085, - [3086] = 3086, - [3087] = 3048, - [3088] = 1602, - [3089] = 1584, - [3090] = 1585, - [3091] = 1586, - [3092] = 1589, - [3093] = 1590, - [3094] = 1593, - [3095] = 1627, - [3096] = 1630, - [3097] = 1635, + [3086] = 1602, + [3087] = 3087, + [3088] = 988, + [3089] = 1604, + [3090] = 1610, + [3091] = 1624, + [3092] = 1628, + [3093] = 1629, + [3094] = 991, + [3095] = 1634, + [3096] = 1644, + [3097] = 3097, [3098] = 3098, - [3099] = 3099, - [3100] = 1510, + [3099] = 992, + [3100] = 1630, [3101] = 1638, - [3102] = 1552, - [3103] = 978, - [3104] = 1597, - [3105] = 1540, - [3106] = 1591, - [3107] = 3107, - [3108] = 3108, - [3109] = 1640, - [3110] = 3110, - [3111] = 1644, - [3112] = 1553, - [3113] = 1649, - [3114] = 1529, - [3115] = 1607, - [3116] = 1560, - [3117] = 3117, - [3118] = 1561, - [3119] = 1610, - [3120] = 1611, - [3121] = 1601, - [3122] = 1564, - [3123] = 1631, - [3124] = 3124, - [3125] = 1623, - [3126] = 1530, - [3127] = 1533, - [3128] = 1580, - [3129] = 1613, - [3130] = 1539, - [3131] = 1521, - [3132] = 1565, - [3133] = 3133, - [3134] = 979, + [3102] = 1639, + [3103] = 1640, + [3104] = 1641, + [3105] = 3105, + [3106] = 1552, + [3107] = 1540, + [3108] = 1599, + [3109] = 1623, + [3110] = 1625, + [3111] = 3111, + [3112] = 1636, + [3113] = 1530, + [3114] = 1532, + [3115] = 1533, + [3116] = 1537, + [3117] = 1542, + [3118] = 1543, + [3119] = 1546, + [3120] = 1547, + [3121] = 1565, + [3122] = 1566, + [3123] = 1567, + [3124] = 1562, + [3125] = 1569, + [3126] = 1570, + [3127] = 1571, + [3128] = 1572, + [3129] = 1505, + [3130] = 1573, + [3131] = 1575, + [3132] = 1583, + [3133] = 1584, + [3134] = 1585, [3135] = 3135, - [3136] = 1551, - [3137] = 1566, - [3138] = 1639, - [3139] = 1641, - [3140] = 1567, - [3141] = 1574, - [3142] = 1568, - [3143] = 977, - [3144] = 1569, - [3145] = 1537, - [3146] = 1575, - [3147] = 1528, - [3148] = 1543, - [3149] = 1556, - [3150] = 1559, - [3151] = 1577, - [3152] = 1578, - [3153] = 1562, - [3154] = 1618, - [3155] = 1582, - [3156] = 3156, - [3157] = 1583, - [3158] = 3158, - [3159] = 1599, - [3160] = 1534, - [3161] = 243, + [3136] = 1586, + [3137] = 1587, + [3138] = 1589, + [3139] = 1591, + [3140] = 1650, + [3141] = 1596, + [3142] = 1597, + [3143] = 3143, + [3144] = 3144, + [3145] = 1557, + [3146] = 1561, + [3147] = 3147, + [3148] = 1643, + [3149] = 1645, + [3150] = 1595, + [3151] = 1527, + [3152] = 3152, + [3153] = 1592, + [3154] = 1605, + [3155] = 1550, + [3156] = 1568, + [3157] = 3157, + [3158] = 1512, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, [3162] = 3162, [3163] = 3163, - [3164] = 1581, - [3165] = 3165, - [3166] = 3166, + [3164] = 3164, + [3165] = 1170, + [3166] = 1525, [3167] = 3167, - [3168] = 1152, - [3169] = 1600, + [3168] = 1548, + [3169] = 3169, [3170] = 3170, - [3171] = 1509, - [3172] = 1506, + [3171] = 3171, + [3172] = 3172, [3173] = 3173, - [3174] = 1505, - [3175] = 1513, + [3174] = 3174, + [3175] = 3167, [3176] = 3176, [3177] = 3177, [3178] = 3178, - [3179] = 3179, + [3179] = 1166, [3180] = 3180, - [3181] = 3181, - [3182] = 1162, + [3181] = 1514, + [3182] = 3182, [3183] = 3183, - [3184] = 1514, + [3184] = 3167, [3185] = 3185, - [3186] = 1519, + [3186] = 3167, [3187] = 3187, [3188] = 3188, [3189] = 3189, - [3190] = 1160, + [3190] = 3190, [3191] = 3191, [3192] = 3192, - [3193] = 3193, + [3193] = 1522, [3194] = 3194, [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3198, + [3196] = 1504, + [3197] = 1509, + [3198] = 1506, [3199] = 3199, - [3200] = 1526, - [3201] = 3201, + [3200] = 1574, + [3201] = 1171, [3202] = 3202, [3203] = 3203, - [3204] = 3198, - [3205] = 244, - [3206] = 3206, - [3207] = 3207, - [3208] = 1522, - [3209] = 1648, - [3210] = 3198, - [3211] = 3198, - [3212] = 3198, - [3213] = 1520, - [3214] = 3214, - [3215] = 3215, - [3216] = 3216, - [3217] = 1517, - [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 1623, - [3222] = 1633, - [3223] = 1594, - [3224] = 1599, - [3225] = 1612, - [3226] = 1613, - [3227] = 1580, - [3228] = 1615, - [3229] = 1634, - [3230] = 1551, - [3231] = 1591, - [3232] = 979, - [3233] = 1536, - [3234] = 1574, + [3204] = 1516, + [3205] = 3205, + [3206] = 1529, + [3207] = 1523, + [3208] = 3208, + [3209] = 3209, + [3210] = 3210, + [3211] = 3211, + [3212] = 1524, + [3213] = 3213, + [3214] = 3167, + [3215] = 1603, + [3216] = 1649, + [3217] = 1545, + [3218] = 713, + [3219] = 1552, + [3220] = 1550, + [3221] = 1562, + [3222] = 1592, + [3223] = 988, + [3224] = 1602, + [3225] = 1604, + [3226] = 1610, + [3227] = 3227, + [3228] = 1624, + [3229] = 1631, + [3230] = 1628, + [3231] = 1629, + [3232] = 1576, + [3233] = 1630, + [3234] = 1638, [3235] = 1639, - [3236] = 3236, - [3237] = 712, - [3238] = 1537, - [3239] = 1596, - [3240] = 977, - [3241] = 1575, - [3242] = 1541, - [3243] = 1597, - [3244] = 711, - [3245] = 1602, - [3246] = 1607, - [3247] = 1542, - [3248] = 1587, - [3249] = 1610, - [3250] = 1510, - [3251] = 1548, - [3252] = 1521, + [3236] = 1640, + [3237] = 1641, + [3238] = 991, + [3239] = 1577, + [3240] = 1578, + [3241] = 711, + [3242] = 1634, + [3243] = 1600, + [3244] = 1605, + [3245] = 715, + [3246] = 1642, + [3247] = 992, + [3248] = 1644, + [3249] = 1646, + [3250] = 1626, + [3251] = 1645, + [3252] = 712, [3253] = 3253, - [3254] = 1552, - [3255] = 1608, - [3256] = 1558, - [3257] = 1629, - [3258] = 1562, - [3259] = 1535, - [3260] = 1546, - [3261] = 978, - [3262] = 1547, - [3263] = 1544, - [3264] = 1563, - [3265] = 1614, - [3266] = 1571, - [3267] = 1572, - [3268] = 1619, - [3269] = 1625, - [3270] = 1641, - [3271] = 1573, - [3272] = 1628, - [3273] = 1595, - [3274] = 1616, - [3275] = 1647, - [3276] = 1550, - [3277] = 1553, - [3278] = 3278, + [3254] = 1558, + [3255] = 1609, + [3256] = 3256, + [3257] = 1611, + [3258] = 1613, + [3259] = 1551, + [3260] = 1614, + [3261] = 1553, + [3262] = 1505, + [3263] = 1621, + [3264] = 1620, + [3265] = 1632, + [3266] = 1635, + [3267] = 1557, + [3268] = 3174, + [3269] = 1559, + [3270] = 1560, + [3271] = 1544, + [3272] = 1554, + [3273] = 1556, + [3274] = 1536, + [3275] = 1561, + [3276] = 1643, + [3277] = 714, + [3278] = 1527, [3279] = 3279, - [3280] = 1554, - [3281] = 714, - [3282] = 3220, - [3283] = 1598, - [3284] = 713, - [3285] = 1555, - [3286] = 1601, - [3287] = 1618, - [3288] = 1531, - [3289] = 1556, - [3290] = 1631, - [3291] = 710, - [3292] = 1611, - [3293] = 3293, + [3280] = 1563, + [3281] = 1580, + [3282] = 1594, + [3283] = 1595, + [3284] = 1598, + [3285] = 1622, + [3286] = 1637, + [3287] = 1522, + [3288] = 1525, + [3289] = 1548, + [3290] = 3290, + [3291] = 3291, + [3292] = 3292, + [3293] = 3291, [3294] = 3294, - [3295] = 1648, - [3296] = 1520, - [3297] = 1600, + [3295] = 3295, + [3296] = 3296, + [3297] = 3290, [3298] = 3298, [3299] = 3299, - [3300] = 1581, - [3301] = 3301, + [3300] = 3290, + [3301] = 1523, [3302] = 3302, - [3303] = 3303, + [3303] = 1514, [3304] = 3304, - [3305] = 1522, - [3306] = 1513, + [3305] = 1524, + [3306] = 1505, [3307] = 3307, - [3308] = 3308, - [3309] = 3309, - [3310] = 3310, - [3311] = 3311, + [3308] = 3291, + [3309] = 1516, + [3310] = 3294, + [3311] = 1574, [3312] = 3312, - [3313] = 3294, - [3314] = 3310, - [3315] = 1526, - [3316] = 1519, - [3317] = 1510, - [3318] = 1514, - [3319] = 3293, - [3320] = 3302, - [3321] = 3294, - [3322] = 3322, - [3323] = 3293, + [3313] = 3313, + [3314] = 3314, + [3315] = 3315, + [3316] = 3298, + [3317] = 1529, + [3318] = 3318, + [3319] = 1626, + [3320] = 3320, + [3321] = 3321, + [3322] = 1613, + [3323] = 3323, [3324] = 3324, - [3325] = 3325, + [3325] = 1614, [3326] = 3326, - [3327] = 3327, - [3328] = 711, - [3329] = 3329, - [3330] = 3330, - [3331] = 3331, - [3332] = 1639, - [3333] = 1162, - [3334] = 1526, - [3335] = 3335, - [3336] = 1558, - [3337] = 1641, - [3338] = 3338, - [3339] = 3339, - [3340] = 3340, + [3327] = 1576, + [3328] = 1577, + [3329] = 1578, + [3330] = 3315, + [3331] = 711, + [3332] = 1621, + [3333] = 3333, + [3334] = 3334, + [3335] = 1592, + [3336] = 1637, + [3337] = 714, + [3338] = 1649, + [3339] = 1552, + [3340] = 3302, [3341] = 3341, - [3342] = 1571, - [3343] = 1612, - [3344] = 1572, - [3345] = 3345, - [3346] = 1573, - [3347] = 714, + [3342] = 3342, + [3343] = 3343, + [3344] = 1600, + [3345] = 1605, + [3346] = 213, + [3347] = 1558, [3348] = 3348, [3349] = 3349, - [3350] = 1613, - [3351] = 3198, - [3352] = 1615, - [3353] = 3198, - [3354] = 1596, - [3355] = 3355, - [3356] = 712, - [3357] = 3357, - [3358] = 1594, - [3359] = 1599, - [3360] = 3198, - [3361] = 3361, - [3362] = 243, - [3363] = 3363, - [3364] = 3364, - [3365] = 3307, - [3366] = 1614, + [3350] = 3350, + [3351] = 1170, + [3352] = 219, + [3353] = 3167, + [3354] = 1645, + [3355] = 1631, + [3356] = 1634, + [3357] = 1166, + [3358] = 3358, + [3359] = 1171, + [3360] = 3360, + [3361] = 3304, + [3362] = 3362, + [3363] = 1545, + [3364] = 3167, + [3365] = 3365, + [3366] = 3366, [3367] = 3367, [3368] = 3368, - [3369] = 1619, - [3370] = 3370, - [3371] = 1562, - [3372] = 244, - [3373] = 1517, - [3374] = 1625, - [3375] = 3312, + [3369] = 3369, + [3370] = 3167, + [3371] = 3371, + [3372] = 1166, + [3373] = 1642, + [3374] = 3167, + [3375] = 1644, [3376] = 3376, [3377] = 3377, - [3378] = 1152, + [3378] = 1646, [3379] = 3379, - [3380] = 1535, + [3380] = 3380, [3381] = 3381, - [3382] = 3361, - [3383] = 3301, - [3384] = 1628, - [3385] = 1595, - [3386] = 3386, - [3387] = 1152, - [3388] = 1616, - [3389] = 1647, - [3390] = 3390, - [3391] = 3381, + [3382] = 1170, + [3383] = 1563, + [3384] = 1643, + [3385] = 3385, + [3386] = 712, + [3387] = 3387, + [3388] = 1514, + [3389] = 3349, + [3390] = 715, + [3391] = 3391, [3392] = 3392, [3393] = 3393, - [3394] = 1587, - [3395] = 3395, - [3396] = 1162, + [3394] = 3394, + [3395] = 3341, + [3396] = 3396, [3397] = 3397, - [3398] = 3398, - [3399] = 1160, + [3398] = 1622, + [3399] = 3399, [3400] = 3400, - [3401] = 1544, - [3402] = 1550, + [3401] = 1603, + [3402] = 3402, [3403] = 3403, - [3404] = 1548, + [3404] = 3404, [3405] = 3405, - [3406] = 3406, - [3407] = 3198, - [3408] = 3386, + [3406] = 1594, + [3407] = 3381, + [3408] = 3408, [3409] = 3409, [3410] = 3410, - [3411] = 3411, - [3412] = 1552, + [3411] = 3341, + [3412] = 1512, [3413] = 3413, - [3414] = 3198, - [3415] = 1608, + [3414] = 3414, + [3415] = 3415, [3416] = 3416, - [3417] = 3417, + [3417] = 3167, [3418] = 3418, - [3419] = 3381, - [3420] = 3420, - [3421] = 3421, - [3422] = 1546, - [3423] = 1547, - [3424] = 3424, + [3419] = 3419, + [3420] = 1609, + [3421] = 3416, + [3422] = 3422, + [3423] = 3423, + [3424] = 3413, [3425] = 3425, - [3426] = 1553, - [3427] = 3427, - [3428] = 3198, - [3429] = 1160, - [3430] = 3430, - [3431] = 3431, - [3432] = 1554, - [3433] = 3433, - [3434] = 1555, - [3435] = 3435, - [3436] = 3420, - [3437] = 1563, - [3438] = 3438, - [3439] = 1629, + [3426] = 3426, + [3427] = 3167, + [3428] = 3428, + [3429] = 3429, + [3430] = 1551, + [3431] = 1620, + [3432] = 1553, + [3433] = 1557, + [3434] = 3349, + [3435] = 3365, + [3436] = 1595, + [3437] = 1632, + [3438] = 3362, + [3439] = 1635, [3440] = 3440, - [3441] = 1247, - [3442] = 1556, - [3443] = 3392, - [3444] = 3444, - [3445] = 710, + [3441] = 3404, + [3442] = 3442, + [3443] = 1171, + [3444] = 1559, + [3445] = 1560, [3446] = 3446, - [3447] = 1598, - [3448] = 3420, - [3449] = 1601, - [3450] = 3450, - [3451] = 1634, - [3452] = 3395, - [3453] = 3376, - [3454] = 3454, - [3455] = 3363, - [3456] = 3456, - [3457] = 3457, - [3458] = 713, + [3447] = 1561, + [3448] = 1544, + [3449] = 3449, + [3450] = 1554, + [3451] = 3451, + [3452] = 3452, + [3453] = 1556, + [3454] = 1536, + [3455] = 1598, + [3456] = 713, + [3457] = 1611, + [3458] = 3458, [3459] = 3459, [3460] = 3460, [3461] = 3461, - [3462] = 1633, - [3463] = 1531, - [3464] = 1536, + [3462] = 3462, + [3463] = 1580, + [3464] = 3464, [3465] = 3465, - [3466] = 1537, - [3467] = 1541, + [3466] = 3466, + [3467] = 3467, [3468] = 3468, - [3469] = 1542, + [3469] = 3469, [3470] = 3470, - [3471] = 3471, + [3471] = 3174, [3472] = 3472, [3473] = 3473, - [3474] = 3471, - [3475] = 3475, - [3476] = 3476, - [3477] = 211, - [3478] = 3478, - [3479] = 3471, - [3480] = 3220, - [3481] = 3481, - [3482] = 3482, - [3483] = 3483, - [3484] = 213, + [3474] = 3472, + [3475] = 3473, + [3476] = 3473, + [3477] = 3473, + [3478] = 3473, + [3479] = 3473, + [3480] = 3469, + [3481] = 3472, + [3482] = 213, + [3483] = 219, + [3484] = 3473, [3485] = 3485, - [3486] = 1519, - [3487] = 3487, - [3488] = 3483, - [3489] = 3483, - [3490] = 3483, - [3491] = 3483, - [3492] = 3471, - [3493] = 3493, - [3494] = 1521, - [3495] = 3483, - [3496] = 1514, - [3497] = 977, + [3486] = 3472, + [3487] = 1527, + [3488] = 3488, + [3489] = 991, + [3490] = 992, + [3491] = 3491, + [3492] = 3492, + [3493] = 1523, + [3494] = 1524, + [3495] = 3495, + [3496] = 3472, + [3497] = 3497, [3498] = 3498, - [3499] = 3499, - [3500] = 3483, - [3501] = 3312, - [3502] = 3502, - [3503] = 3503, - [3504] = 3471, - [3505] = 3475, - [3506] = 978, - [3507] = 3483, + [3499] = 200, + [3500] = 201, + [3501] = 3473, + [3502] = 3302, + [3503] = 1525, + [3504] = 3472, + [3505] = 3505, + [3506] = 988, + [3507] = 3507, [3508] = 3508, - [3509] = 3471, - [3510] = 979, - [3511] = 1513, + [3509] = 3509, + [3510] = 3510, + [3511] = 3511, [3512] = 3512, [3513] = 3513, [3514] = 3514, @@ -8047,31 +7997,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3522] = 3522, [3523] = 3523, [3524] = 3524, - [3525] = 3525, + [3525] = 3299, [3526] = 3526, [3527] = 3527, [3528] = 3528, [3529] = 3529, - [3530] = 209, + [3530] = 3530, [3531] = 3531, [3532] = 3532, [3533] = 3533, - [3534] = 240, - [3535] = 241, + [3534] = 3534, + [3535] = 3535, [3536] = 3536, [3537] = 3537, [3538] = 3538, [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3513, - [3543] = 3543, + [3542] = 1605, + [3543] = 3508, [3544] = 3544, [3545] = 3545, - [3546] = 3546, + [3546] = 3540, [3547] = 3547, - [3548] = 3544, - [3549] = 3512, + [3548] = 3548, + [3549] = 1525, [3550] = 3550, [3551] = 3551, [3552] = 3552, @@ -8083,113 +8033,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3558] = 3558, [3559] = 3559, [3560] = 3560, - [3561] = 3518, - [3562] = 3521, - [3563] = 3533, + [3561] = 3561, + [3562] = 3562, + [3563] = 3508, [3564] = 3564, [3565] = 3565, [3566] = 3566, [3567] = 3567, [3568] = 3568, [3569] = 3569, - [3570] = 3570, - [3571] = 1519, - [3572] = 3572, + [3570] = 3508, + [3571] = 3571, + [3572] = 3540, [3573] = 3573, - [3574] = 3574, - [3575] = 3575, + [3574] = 3508, + [3575] = 3540, [3576] = 3576, [3577] = 3577, [3578] = 3578, - [3579] = 3335, + [3579] = 3579, [3580] = 3580, - [3581] = 3581, + [3581] = 3555, [3582] = 3582, - [3583] = 3379, + [3583] = 3583, [3584] = 3584, [3585] = 3585, [3586] = 3586, - [3587] = 3553, + [3587] = 3366, [3588] = 3588, [3589] = 3589, [3590] = 3590, [3591] = 3591, - [3592] = 3553, - [3593] = 3593, - [3594] = 3557, + [3592] = 3592, + [3593] = 3508, + [3594] = 3594, [3595] = 3595, - [3596] = 3596, - [3597] = 3566, - [3598] = 3573, - [3599] = 3599, - [3600] = 3600, + [3596] = 3595, + [3597] = 3597, + [3598] = 3598, + [3599] = 3540, + [3600] = 3577, [3601] = 3601, [3602] = 3602, - [3603] = 3557, - [3604] = 3566, + [3603] = 3603, + [3604] = 3604, [3605] = 3605, [3606] = 3606, [3607] = 3607, [3608] = 3608, - [3609] = 3330, - [3610] = 3348, + [3609] = 3540, + [3610] = 3605, [3611] = 3611, - [3612] = 3410, + [3612] = 3612, [3613] = 3613, - [3614] = 3557, - [3615] = 3566, - [3616] = 3566, - [3617] = 3551, + [3614] = 3371, + [3615] = 3615, + [3616] = 3545, + [3617] = 3617, [3618] = 3618, [3619] = 3619, - [3620] = 3557, - [3621] = 3621, - [3622] = 3557, - [3623] = 3566, + [3620] = 3620, + [3621] = 3594, + [3622] = 3622, + [3623] = 3623, [3624] = 3624, [3625] = 3625, [3626] = 3626, - [3627] = 3593, - [3628] = 3569, + [3627] = 3627, + [3628] = 3628, [3629] = 3629, [3630] = 3630, [3631] = 3631, [3632] = 3632, - [3633] = 3624, - [3634] = 3557, + [3633] = 3633, + [3634] = 3634, [3635] = 3635, [3636] = 3636, [3637] = 3637, - [3638] = 3638, - [3639] = 3573, + [3638] = 3507, + [3639] = 3636, [3640] = 3640, - [3641] = 1513, + [3641] = 3641, [3642] = 3642, - [3643] = 1514, - [3644] = 3644, - [3645] = 1601, - [3646] = 1613, + [3643] = 3643, + [3644] = 3377, + [3645] = 3619, + [3646] = 3646, [3647] = 3647, [3648] = 3648, - [3649] = 1553, - [3650] = 1556, - [3651] = 1639, - [3652] = 1641, + [3649] = 3649, + [3650] = 3634, + [3651] = 3651, + [3652] = 3652, [3653] = 3653, [3654] = 3654, [3655] = 3655, - [3656] = 1599, - [3657] = 3574, - [3658] = 3279, - [3659] = 3545, - [3660] = 3575, - [3661] = 3661, - [3662] = 3662, - [3663] = 3663, + [3656] = 3656, + [3657] = 3657, + [3658] = 3658, + [3659] = 3659, + [3660] = 1595, + [3661] = 1592, + [3662] = 1552, + [3663] = 3508, [3664] = 3664, [3665] = 3665, [3666] = 3666, - [3667] = 3667, + [3667] = 3410, [3668] = 3668, [3669] = 3669, [3670] = 3670, @@ -8197,34 +8147,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3672] = 3672, [3673] = 3673, [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, + [3675] = 3545, + [3676] = 3643, + [3677] = 3652, [3678] = 3678, [3679] = 3679, - [3680] = 3680, + [3680] = 3532, [3681] = 3681, [3682] = 3682, [3683] = 3683, [3684] = 3684, - [3685] = 3685, + [3685] = 3666, [3686] = 3686, [3687] = 3687, [3688] = 3688, - [3689] = 3689, + [3689] = 3555, [3690] = 3690, [3691] = 3691, - [3692] = 3692, - [3693] = 3693, - [3694] = 3694, - [3695] = 3299, - [3696] = 3696, - [3697] = 3697, - [3698] = 3698, + [3692] = 3579, + [3693] = 3642, + [3694] = 3253, + [3695] = 3508, + [3696] = 1523, + [3697] = 1524, + [3698] = 203, [3699] = 3699, [3700] = 3700, [3701] = 3701, - [3702] = 3557, + [3702] = 3409, [3703] = 3703, [3704] = 3704, [3705] = 3705, @@ -8233,424 +8183,424 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3708] = 3708, [3709] = 3709, [3710] = 3710, - [3711] = 3711, + [3711] = 1634, [3712] = 3712, - [3713] = 3713, + [3713] = 1644, [3714] = 3714, [3715] = 3715, - [3716] = 3716, - [3717] = 3717, + [3716] = 3578, + [3717] = 3590, [3718] = 3718, - [3719] = 3626, - [3720] = 3720, - [3721] = 3576, + [3719] = 3642, + [3720] = 3709, + [3721] = 3721, [3722] = 3722, - [3723] = 3630, - [3724] = 3679, - [3725] = 3685, + [3723] = 3634, + [3724] = 3724, + [3725] = 3725, [3726] = 3726, [3727] = 3727, - [3728] = 1537, - [3729] = 1552, - [3730] = 1562, - [3731] = 3731, - [3732] = 3732, - [3733] = 3733, + [3728] = 3728, + [3729] = 3729, + [3730] = 1557, + [3731] = 1561, + [3732] = 1643, + [3733] = 1645, [3734] = 3734, [3735] = 3735, [3736] = 3736, [3737] = 3737, - [3738] = 3679, - [3739] = 3739, - [3740] = 3685, + [3738] = 3738, + [3739] = 3540, + [3740] = 239, [3741] = 3741, [3742] = 3742, - [3743] = 3743, - [3744] = 3744, + [3743] = 240, + [3744] = 3558, [3745] = 3745, [3746] = 3746, [3747] = 3747, [3748] = 3748, [3749] = 3749, [3750] = 3750, - [3751] = 3751, + [3751] = 3606, [3752] = 3752, [3753] = 3753, - [3754] = 3566, + [3754] = 3524, [3755] = 3755, - [3756] = 3756, - [3757] = 3757, + [3756] = 3749, + [3757] = 3527, [3758] = 3758, - [3759] = 3759, - [3760] = 3760, - [3761] = 3755, - [3762] = 3762, - [3763] = 3756, - [3764] = 3759, - [3765] = 3765, - [3766] = 3766, - [3767] = 3756, - [3768] = 3768, - [3769] = 3769, - [3770] = 3770, - [3771] = 3771, - [3772] = 3682, + [3759] = 3625, + [3760] = 712, + [3761] = 3761, + [3762] = 3668, + [3763] = 1643, + [3764] = 3764, + [3765] = 3304, + [3766] = 1645, + [3767] = 1595, + [3768] = 3755, + [3769] = 1592, + [3770] = 3649, + [3771] = 1552, + [3772] = 713, [3773] = 3773, [3774] = 3774, - [3775] = 3775, - [3776] = 3696, + [3775] = 3755, + [3776] = 711, [3777] = 3777, - [3778] = 3759, - [3779] = 3779, + [3778] = 3778, + [3779] = 3227, [3780] = 3780, [3781] = 3781, - [3782] = 1601, - [3783] = 3756, - [3784] = 3759, - [3785] = 1613, + [3782] = 3782, + [3783] = 3626, + [3784] = 3755, + [3785] = 3764, [3786] = 3786, - [3787] = 3766, - [3788] = 3779, - [3789] = 3789, - [3790] = 3636, + [3787] = 3787, + [3788] = 3755, + [3789] = 3707, + [3790] = 3786, [3791] = 3791, [3792] = 3792, - [3793] = 710, - [3794] = 711, - [3795] = 3638, - [3796] = 3236, - [3797] = 3797, + [3793] = 3786, + [3794] = 3794, + [3795] = 3795, + [3796] = 3631, + [3797] = 3794, [3798] = 3798, - [3799] = 3799, - [3800] = 3762, - [3801] = 712, - [3802] = 3722, - [3803] = 3640, - [3804] = 3779, - [3805] = 3792, - [3806] = 3766, - [3807] = 3780, - [3808] = 1553, - [3809] = 3756, - [3810] = 1556, - [3811] = 3759, - [3812] = 1639, - [3813] = 3766, - [3814] = 1641, - [3815] = 3686, - [3816] = 3687, + [3799] = 3589, + [3800] = 3632, + [3801] = 3750, + [3802] = 3802, + [3803] = 3794, + [3804] = 3804, + [3805] = 3547, + [3806] = 3315, + [3807] = 3807, + [3808] = 3794, + [3809] = 3777, + [3810] = 3777, + [3811] = 3811, + [3812] = 3812, + [3813] = 3640, + [3814] = 3786, + [3815] = 3777, + [3816] = 3816, [3817] = 3817, - [3818] = 3689, - [3819] = 713, - [3820] = 3766, - [3821] = 3821, - [3822] = 3780, - [3823] = 3779, - [3824] = 3824, + [3818] = 3818, + [3819] = 3627, + [3820] = 3598, + [3821] = 3761, + [3822] = 3752, + [3823] = 3823, + [3824] = 1557, [3825] = 3825, - [3826] = 3780, - [3827] = 3680, - [3828] = 3704, + [3826] = 3826, + [3827] = 3827, + [3828] = 3780, [3829] = 3829, - [3830] = 3690, - [3831] = 3756, + [3830] = 3774, + [3831] = 3831, [3832] = 3832, - [3833] = 3759, - [3834] = 3683, - [3835] = 3760, + [3833] = 3833, + [3834] = 3834, + [3835] = 3835, [3836] = 3836, - [3837] = 3766, - [3838] = 3838, - [3839] = 3817, - [3840] = 3301, - [3841] = 1599, - [3842] = 3842, + [3837] = 3837, + [3838] = 1605, + [3839] = 3601, + [3840] = 3840, + [3841] = 3841, + [3842] = 3826, [3843] = 3843, - [3844] = 3844, + [3844] = 3777, [3845] = 3845, - [3846] = 714, - [3847] = 3847, - [3848] = 3848, - [3849] = 1262, - [3850] = 3698, - [3851] = 3758, + [3846] = 3846, + [3847] = 3604, + [3848] = 3597, + [3849] = 1561, + [3850] = 1644, + [3851] = 3851, [3852] = 3852, - [3853] = 3853, - [3854] = 3854, - [3855] = 3780, + [3853] = 3816, + [3854] = 3823, + [3855] = 3633, [3856] = 3856, - [3857] = 3857, - [3858] = 3797, - [3859] = 3859, - [3860] = 3714, - [3861] = 3825, - [3862] = 3668, - [3863] = 3669, - [3864] = 3824, - [3865] = 3857, - [3866] = 3866, - [3867] = 3670, - [3868] = 3868, - [3869] = 3671, - [3870] = 3870, - [3871] = 3845, - [3872] = 3838, - [3873] = 3873, - [3874] = 3691, - [3875] = 3692, - [3876] = 3870, - [3877] = 1537, - [3878] = 1552, - [3879] = 3844, - [3880] = 3693, - [3881] = 1562, - [3882] = 3681, - [3883] = 3779, - [3884] = 3732, - [3885] = 3885, - [3886] = 3694, - [3887] = 3887, - [3888] = 3888, - [3889] = 3825, - [3890] = 3843, - [3891] = 3868, - [3892] = 3892, - [3893] = 3791, - [3894] = 3894, - [3895] = 3307, - [3896] = 3887, - [3897] = 3868, - [3898] = 3798, - [3899] = 3786, - [3900] = 3779, - [3901] = 3789, - [3902] = 3780, + [3857] = 1634, + [3858] = 3858, + [3859] = 3831, + [3860] = 3833, + [3861] = 3852, + [3862] = 3862, + [3863] = 3863, + [3864] = 3750, + [3865] = 3761, + [3866] = 3804, + [3867] = 3858, + [3868] = 3794, + [3869] = 3869, + [3870] = 3608, + [3871] = 3782, + [3872] = 3851, + [3873] = 3812, + [3874] = 3874, + [3875] = 3786, + [3876] = 714, + [3877] = 3877, + [3878] = 3837, + [3879] = 3750, + [3880] = 3880, + [3881] = 3559, + [3882] = 3863, + [3883] = 3755, + [3884] = 3786, + [3885] = 3521, + [3886] = 3886, + [3887] = 3777, + [3888] = 3840, + [3889] = 3750, + [3890] = 3753, + [3891] = 3750, + [3892] = 715, + [3893] = 3637, + [3894] = 3831, + [3895] = 3522, + [3896] = 3794, + [3897] = 3880, + [3898] = 3836, + [3899] = 3899, + [3900] = 3714, + [3901] = 3901, + [3902] = 3902, [3903] = 3903, - [3904] = 3768, + [3904] = 3904, [3905] = 3905, - [3906] = 3613, - [3907] = 892, + [3906] = 3906, + [3907] = 3907, [3908] = 3908, [3909] = 3909, [3910] = 3910, [3911] = 3911, - [3912] = 836, + [3912] = 3912, [3913] = 3913, [3914] = 3914, - [3915] = 923, - [3916] = 824, + [3915] = 3915, + [3916] = 3916, [3917] = 3917, - [3918] = 3918, - [3919] = 3919, + [3918] = 3811, + [3919] = 3862, [3920] = 3920, - [3921] = 3921, + [3921] = 3886, [3922] = 3922, [3923] = 3923, [3924] = 3924, - [3925] = 3925, - [3926] = 3926, - [3927] = 3927, - [3928] = 3928, - [3929] = 3929, + [3925] = 921, + [3926] = 929, + [3927] = 938, + [3928] = 942, + [3929] = 944, [3930] = 3930, - [3931] = 3931, - [3932] = 3932, - [3933] = 3933, - [3934] = 3934, - [3935] = 3935, - [3936] = 3922, + [3931] = 794, + [3932] = 814, + [3933] = 816, + [3934] = 818, + [3935] = 822, + [3936] = 3936, [3937] = 3937, [3938] = 3938, [3939] = 3939, [3940] = 3940, - [3941] = 3941, + [3941] = 3592, [3942] = 3942, - [3943] = 3943, + [3943] = 839, [3944] = 3944, - [3945] = 3945, - [3946] = 3946, - [3947] = 869, + [3945] = 842, + [3946] = 846, + [3947] = 3947, [3948] = 3948, - [3949] = 930, + [3949] = 3949, [3950] = 3950, [3951] = 3951, [3952] = 3952, - [3953] = 3953, - [3954] = 3954, - [3955] = 3955, + [3953] = 902, + [3954] = 903, + [3955] = 904, [3956] = 3956, [3957] = 3957, [3958] = 3958, [3959] = 3959, [3960] = 3960, - [3961] = 3836, + [3961] = 3961, [3962] = 3962, [3963] = 3963, - [3964] = 781, + [3964] = 3964, [3965] = 3965, [3966] = 3966, [3967] = 3967, [3968] = 3968, - [3969] = 929, + [3969] = 3969, [3970] = 3970, [3971] = 3971, [3972] = 3972, - [3973] = 878, - [3974] = 3948, + [3973] = 3973, + [3974] = 3974, [3975] = 3975, [3976] = 3976, - [3977] = 776, - [3978] = 803, - [3979] = 3979, + [3977] = 3977, + [3978] = 3978, + [3979] = 812, [3980] = 3980, - [3981] = 3981, - [3982] = 3945, - [3983] = 797, - [3984] = 3950, - [3985] = 3985, + [3981] = 786, + [3982] = 851, + [3983] = 3983, + [3984] = 869, + [3985] = 870, [3986] = 3986, [3987] = 3987, [3988] = 3988, [3989] = 3989, [3990] = 3990, [3991] = 3991, - [3992] = 3992, + [3992] = 873, [3993] = 3993, - [3994] = 3994, - [3995] = 3995, - [3996] = 3930, - [3997] = 3582, - [3998] = 3584, - [3999] = 859, - [4000] = 860, + [3994] = 893, + [3995] = 896, + [3996] = 899, + [3997] = 799, + [3998] = 796, + [3999] = 804, + [4000] = 811, [4001] = 4001, - [4002] = 4002, + [4002] = 788, [4003] = 4003, - [4004] = 4004, + [4004] = 909, [4005] = 4005, [4006] = 4006, - [4007] = 3910, + [4007] = 801, [4008] = 4008, [4009] = 4009, [4010] = 4010, - [4011] = 4011, - [4012] = 3952, + [4011] = 923, + [4012] = 4012, [4013] = 4013, - [4014] = 3922, + [4014] = 4014, [4015] = 4015, - [4016] = 4016, - [4017] = 4017, - [4018] = 3932, + [4016] = 879, + [4017] = 857, + [4018] = 866, [4019] = 4019, - [4020] = 4020, - [4021] = 3938, + [4020] = 910, + [4021] = 4021, [4022] = 4022, [4023] = 4023, - [4024] = 3952, + [4024] = 4024, [4025] = 4025, [4026] = 4026, [4027] = 4027, - [4028] = 3910, + [4028] = 4028, [4029] = 4029, [4030] = 4030, [4031] = 4031, - [4032] = 4032, - [4033] = 4033, - [4034] = 887, - [4035] = 903, + [4032] = 934, + [4033] = 936, + [4034] = 939, + [4035] = 941, [4036] = 911, - [4037] = 3932, + [4037] = 4037, [4038] = 4038, - [4039] = 4039, - [4040] = 4040, - [4041] = 4041, - [4042] = 4042, - [4043] = 4043, - [4044] = 4044, - [4045] = 4045, - [4046] = 4046, - [4047] = 4047, - [4048] = 4048, - [4049] = 220, - [4050] = 3922, + [4039] = 3964, + [4040] = 862, + [4041] = 875, + [4042] = 4012, + [4043] = 912, + [4044] = 792, + [4045] = 797, + [4046] = 3923, + [4047] = 791, + [4048] = 925, + [4049] = 4049, + [4050] = 4050, [4051] = 4051, [4052] = 4052, - [4053] = 4053, - [4054] = 3938, + [4053] = 3944, + [4054] = 4054, [4055] = 4055, [4056] = 4056, - [4057] = 4057, - [4058] = 3852, + [4057] = 3901, + [4058] = 4058, [4059] = 4059, - [4060] = 3853, - [4061] = 3854, - [4062] = 926, - [4063] = 4063, - [4064] = 928, - [4065] = 809, - [4066] = 810, - [4067] = 811, - [4068] = 780, - [4069] = 813, - [4070] = 815, - [4071] = 817, - [4072] = 823, - [4073] = 4073, - [4074] = 4074, - [4075] = 236, - [4076] = 3541, - [4077] = 839, - [4078] = 842, - [4079] = 845, - [4080] = 3922, + [4060] = 4060, + [4061] = 883, + [4062] = 3964, + [4063] = 885, + [4064] = 4064, + [4065] = 4065, + [4066] = 4066, + [4067] = 890, + [4068] = 891, + [4069] = 894, + [4070] = 901, + [4071] = 927, + [4072] = 863, + [4073] = 825, + [4074] = 806, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 859, + [4079] = 4079, + [4080] = 4080, [4081] = 4081, [4082] = 4082, - [4083] = 3938, + [4083] = 4083, [4084] = 4084, - [4085] = 4085, + [4085] = 3923, [4086] = 4086, - [4087] = 4087, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, - [4091] = 900, - [4092] = 901, - [4093] = 902, - [4094] = 4094, - [4095] = 3988, + [4087] = 3948, + [4088] = 881, + [4089] = 886, + [4090] = 888, + [4091] = 898, + [4092] = 3901, + [4093] = 4093, + [4094] = 4009, + [4095] = 4095, [4096] = 4096, - [4097] = 3739, + [4097] = 4097, [4098] = 4098, [4099] = 4099, [4100] = 4100, - [4101] = 3956, + [4101] = 4101, [4102] = 4102, [4103] = 4103, - [4104] = 4104, + [4104] = 4005, [4105] = 4105, [4106] = 4106, - [4107] = 3957, - [4108] = 4108, + [4107] = 3923, + [4108] = 3901, [4109] = 4109, [4110] = 4110, [4111] = 4111, - [4112] = 4112, + [4112] = 3901, [4113] = 4113, [4114] = 4114, [4115] = 4115, - [4116] = 4116, + [4116] = 3971, [4117] = 4117, [4118] = 4118, - [4119] = 3990, + [4119] = 4119, [4120] = 4120, [4121] = 4121, [4122] = 4122, [4123] = 4123, - [4124] = 847, - [4125] = 4125, - [4126] = 851, - [4127] = 867, - [4128] = 868, + [4124] = 4124, + [4125] = 3972, + [4126] = 4126, + [4127] = 4127, + [4128] = 4128, [4129] = 4129, [4130] = 4130, [4131] = 4131, @@ -8660,45 +8610,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4135] = 4135, [4136] = 4136, [4137] = 4137, - [4138] = 3985, + [4138] = 4138, [4139] = 4139, [4140] = 4140, - [4141] = 934, - [4142] = 3958, - [4143] = 4015, - [4144] = 4032, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, + [4144] = 4144, [4145] = 4145, - [4146] = 889, - [4147] = 4147, + [4146] = 4146, + [4147] = 3987, [4148] = 4148, [4149] = 4149, [4150] = 4150, - [4151] = 896, - [4152] = 777, - [4153] = 779, - [4154] = 783, - [4155] = 904, + [4151] = 3976, + [4152] = 4152, + [4153] = 4150, + [4154] = 4154, + [4155] = 4155, [4156] = 4156, [4157] = 4157, [4158] = 4158, [4159] = 4159, - [4160] = 914, - [4161] = 4135, + [4160] = 4160, + [4161] = 4161, [4162] = 4162, [4163] = 4163, - [4164] = 3968, - [4165] = 880, - [4166] = 4003, + [4164] = 4164, + [4165] = 4165, + [4166] = 4166, [4167] = 4167, - [4168] = 4132, - [4169] = 4133, - [4170] = 855, - [4171] = 865, - [4172] = 4011, - [4173] = 852, + [4168] = 4168, + [4169] = 4169, + [4170] = 4170, + [4171] = 3939, + [4172] = 4172, + [4173] = 4173, [4174] = 4174, [4175] = 4175, - [4176] = 4176, + [4176] = 4038, [4177] = 4177, [4178] = 4178, [4179] = 4179, @@ -8711,177 +8661,177 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4186] = 4186, [4187] = 4187, [4188] = 4188, - [4189] = 4189, + [4189] = 4013, [4190] = 4190, - [4191] = 4191, - [4192] = 4017, - [4193] = 3963, - [4194] = 4074, + [4191] = 3980, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, [4195] = 4195, [4196] = 4196, [4197] = 4197, - [4198] = 3965, - [4199] = 933, - [4200] = 808, - [4201] = 873, - [4202] = 861, - [4203] = 4178, - [4204] = 829, + [4198] = 4198, + [4199] = 4199, + [4200] = 4031, + [4201] = 4154, + [4202] = 3983, + [4203] = 4184, + [4204] = 4204, [4205] = 4205, [4206] = 4206, - [4207] = 4179, - [4208] = 875, - [4209] = 908, + [4207] = 4185, + [4208] = 3951, + [4209] = 4209, [4210] = 4210, [4211] = 4211, - [4212] = 4136, - [4213] = 812, - [4214] = 778, - [4215] = 787, - [4216] = 794, - [4217] = 927, - [4218] = 4218, + [4212] = 4212, + [4213] = 4213, + [4214] = 4214, + [4215] = 4215, + [4216] = 4216, + [4217] = 3987, + [4218] = 3923, [4219] = 4219, [4220] = 4220, [4221] = 4221, - [4222] = 4222, - [4223] = 4125, - [4224] = 4224, - [4225] = 4225, + [4222] = 4150, + [4223] = 4223, + [4224] = 4160, + [4225] = 4161, [4226] = 4226, - [4227] = 882, - [4228] = 884, - [4229] = 4135, - [4230] = 4015, - [4231] = 4032, + [4227] = 4227, + [4228] = 3986, + [4229] = 4038, + [4230] = 4230, + [4231] = 4231, [4232] = 4232, [4233] = 4233, [4234] = 4234, [4235] = 4235, [4236] = 4236, - [4237] = 4011, - [4238] = 3967, + [4237] = 4237, + [4238] = 4238, [4239] = 4239, [4240] = 4240, - [4241] = 893, - [4242] = 894, - [4243] = 897, - [4244] = 906, - [4245] = 921, + [4241] = 4241, + [4242] = 4242, + [4243] = 4243, + [4244] = 4244, + [4245] = 4245, [4246] = 4246, [4247] = 4247, - [4248] = 912, + [4248] = 4172, [4249] = 4249, - [4250] = 850, - [4251] = 795, + [4250] = 3961, + [4251] = 4251, [4252] = 4252, [4253] = 4253, - [4254] = 4254, + [4254] = 3962, [4255] = 4255, [4256] = 4256, - [4257] = 864, + [4257] = 4257, [4258] = 4258, [4259] = 4259, - [4260] = 886, - [4261] = 890, - [4262] = 891, - [4263] = 899, + [4260] = 4173, + [4261] = 4261, + [4262] = 4262, + [4263] = 4263, [4264] = 4264, [4265] = 4265, [4266] = 4266, [4267] = 4267, [4268] = 4268, [4269] = 4269, - [4270] = 4270, + [4270] = 231, [4271] = 4271, [4272] = 4272, - [4273] = 4273, + [4273] = 4174, [4274] = 4274, - [4275] = 4275, - [4276] = 4276, - [4277] = 4277, + [4275] = 831, + [4276] = 3654, + [4277] = 3989, [4278] = 4278, - [4279] = 4279, - [4280] = 3937, + [4279] = 4175, + [4280] = 217, [4281] = 4281, [4282] = 4282, [4283] = 4283, [4284] = 4284, [4285] = 4285, - [4286] = 4125, - [4287] = 4287, + [4286] = 919, + [4287] = 824, [4288] = 4288, [4289] = 4289, - [4290] = 4290, + [4290] = 3903, [4291] = 4291, [4292] = 4292, - [4293] = 4293, + [4293] = 4193, [4294] = 4294, [4295] = 4295, [4296] = 4296, [4297] = 4297, - [4298] = 3971, + [4298] = 4157, [4299] = 4299, [4300] = 4300, [4301] = 4301, - [4302] = 3727, + [4302] = 4302, [4303] = 4303, - [4304] = 4304, - [4305] = 4305, - [4306] = 3938, + [4304] = 4301, + [4305] = 4197, + [4306] = 4306, [4307] = 4307, - [4308] = 4308, - [4309] = 4309, - [4310] = 4310, - [4311] = 4311, + [4308] = 4001, + [4309] = 3722, + [4310] = 867, + [4311] = 878, [4312] = 4312, [4313] = 4313, - [4314] = 4188, + [4314] = 4314, [4315] = 4315, [4316] = 4316, - [4317] = 4317, + [4317] = 3948, [4318] = 4318, - [4319] = 1551, - [4320] = 4139, - [4321] = 1597, - [4322] = 4084, - [4323] = 4323, - [4324] = 4324, + [4319] = 4249, + [4320] = 4010, + [4321] = 3971, + [4322] = 3972, + [4323] = 4190, + [4324] = 3825, [4325] = 4325, - [4326] = 4326, - [4327] = 4327, + [4326] = 3989, + [4327] = 937, [4328] = 4328, [4329] = 4329, - [4330] = 4330, + [4330] = 844, [4331] = 4331, [4332] = 4332, [4333] = 4333, [4334] = 4334, - [4335] = 3981, + [4335] = 4335, [4336] = 4336, [4337] = 4337, [4338] = 4338, [4339] = 4339, - [4340] = 4340, - [4341] = 4341, - [4342] = 3937, - [4343] = 4343, - [4344] = 4197, - [4345] = 3970, - [4346] = 3956, - [4347] = 3957, - [4348] = 4191, - [4349] = 3989, - [4350] = 3971, - [4351] = 4351, + [4340] = 3607, + [4341] = 3687, + [4342] = 850, + [4343] = 856, + [4344] = 4344, + [4345] = 4345, + [4346] = 4346, + [4347] = 4347, + [4348] = 4160, + [4349] = 4349, + [4350] = 1624, + [4351] = 1630, [4352] = 4352, [4353] = 4353, - [4354] = 4354, - [4355] = 4355, + [4354] = 4161, + [4355] = 3944, [4356] = 4356, [4357] = 4357, [4358] = 4358, - [4359] = 4359, + [4359] = 4196, [4360] = 4360, [4361] = 4361, [4362] = 4362, @@ -8893,157 +8843,157 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4368] = 4368, [4369] = 4369, [4370] = 4370, - [4371] = 4371, + [4371] = 877, [4372] = 4372, - [4373] = 4373, - [4374] = 4374, - [4375] = 4375, + [4373] = 4145, + [4374] = 897, + [4375] = 907, [4376] = 4376, [4377] = 4377, - [4378] = 3940, + [4378] = 4378, [4379] = 4379, [4380] = 4380, [4381] = 4381, [4382] = 4382, - [4383] = 4140, - [4384] = 4384, + [4383] = 4383, + [4384] = 4382, [4385] = 4385, [4386] = 4386, [4387] = 4387, - [4388] = 4388, + [4388] = 4382, [4389] = 4389, - [4390] = 4388, + [4390] = 4390, [4391] = 4391, - [4392] = 4392, - [4393] = 4393, + [4392] = 4380, + [4393] = 4390, [4394] = 4394, - [4395] = 4395, - [4396] = 4396, - [4397] = 4397, - [4398] = 4393, + [4395] = 4381, + [4396] = 4380, + [4397] = 4387, + [4398] = 4398, [4399] = 4399, - [4400] = 4394, - [4401] = 4391, - [4402] = 4402, + [4400] = 4400, + [4401] = 4401, + [4402] = 4394, [4403] = 4403, - [4404] = 4404, - [4405] = 4405, + [4404] = 4390, + [4405] = 4387, [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 4393, + [4409] = 4409, [4410] = 4410, - [4411] = 4397, - [4412] = 4392, - [4413] = 4408, - [4414] = 4388, - [4415] = 4415, + [4411] = 4380, + [4412] = 4394, + [4413] = 4413, + [4414] = 4414, + [4415] = 4391, [4416] = 4416, - [4417] = 4417, + [4417] = 3792, [4418] = 4418, [4419] = 4419, [4420] = 4420, - [4421] = 4421, + [4421] = 4389, [4422] = 4422, [4423] = 4423, [4424] = 4424, - [4425] = 4425, + [4425] = 3722, [4426] = 4426, [4427] = 4427, - [4428] = 4428, - [4429] = 4429, - [4430] = 4399, + [4428] = 4413, + [4429] = 4408, + [4430] = 4413, [4431] = 4431, - [4432] = 4432, - [4433] = 4408, - [4434] = 4434, - [4435] = 4404, + [4432] = 4409, + [4433] = 4391, + [4434] = 4387, + [4435] = 4409, [4436] = 4436, - [4437] = 4437, - [4438] = 4438, - [4439] = 4389, + [4437] = 4391, + [4438] = 4413, + [4439] = 4439, [4440] = 4440, - [4441] = 4404, - [4442] = 4429, - [4443] = 4443, + [4441] = 4441, + [4442] = 4442, + [4443] = 4381, [4444] = 4444, - [4445] = 4388, - [4446] = 4394, + [4445] = 4445, + [4446] = 4446, [4447] = 4447, - [4448] = 3739, - [4449] = 4396, - [4450] = 4397, - [4451] = 4451, - [4452] = 4452, - [4453] = 4453, - [4454] = 4393, - [4455] = 4429, - [4456] = 4456, - [4457] = 4399, - [4458] = 4394, - [4459] = 4429, - [4460] = 4389, - [4461] = 4461, - [4462] = 4396, - [4463] = 3774, - [4464] = 4422, - [4465] = 4408, - [4466] = 4396, - [4467] = 4389, - [4468] = 4388, - [4469] = 4397, - [4470] = 4470, - [4471] = 4393, - [4472] = 4424, - [4473] = 4389, - [4474] = 4396, - [4475] = 4404, - [4476] = 4404, - [4477] = 4477, - [4478] = 4393, - [4479] = 3770, - [4480] = 4417, - [4481] = 4393, - [4482] = 4482, - [4483] = 4437, + [4448] = 4420, + [4449] = 4439, + [4450] = 4385, + [4451] = 4416, + [4452] = 4381, + [4453] = 4390, + [4454] = 4391, + [4455] = 4455, + [4456] = 4381, + [4457] = 3807, + [4458] = 4458, + [4459] = 4459, + [4460] = 4427, + [4461] = 4409, + [4462] = 4462, + [4463] = 4444, + [4464] = 4426, + [4465] = 4394, + [4466] = 4381, + [4467] = 4467, + [4468] = 4382, + [4469] = 4469, + [4470] = 4413, + [4471] = 4390, + [4472] = 4439, + [4473] = 4420, + [4474] = 4439, + [4475] = 4407, + [4476] = 4394, + [4477] = 4387, + [4478] = 4381, + [4479] = 4406, + [4480] = 4480, + [4481] = 4481, + [4482] = 4380, + [4483] = 4483, [4484] = 4484, [4485] = 4485, - [4486] = 4399, + [4486] = 4409, [4487] = 4487, - [4488] = 4456, - [4489] = 4489, - [4490] = 4429, - [4491] = 4394, - [4492] = 4399, - [4493] = 4396, - [4494] = 4389, - [4495] = 4397, - [4496] = 4496, - [4497] = 4399, - [4498] = 4394, - [4499] = 4423, - [4500] = 4424, - [4501] = 4396, - [4502] = 4502, - [4503] = 4397, - [4504] = 4504, - [4505] = 4424, - [4506] = 4399, - [4507] = 4424, - [4508] = 4508, - [4509] = 4470, - [4510] = 4394, - [4511] = 4428, - [4512] = 4429, - [4513] = 4397, - [4514] = 4429, - [4515] = 4387, - [4516] = 4389, - [4517] = 4443, - [4518] = 4424, - [4519] = 4408, - [4520] = 4408, - [4521] = 4424, + [4488] = 4488, + [4489] = 4420, + [4490] = 4391, + [4491] = 4491, + [4492] = 4420, + [4493] = 4390, + [4494] = 4494, + [4495] = 4495, + [4496] = 4380, + [4497] = 4420, + [4498] = 4391, + [4499] = 4499, + [4500] = 4382, + [4501] = 4413, + [4502] = 4382, + [4503] = 4439, + [4504] = 4413, + [4505] = 4505, + [4506] = 4459, + [4507] = 4439, + [4508] = 4439, + [4509] = 4390, + [4510] = 4420, + [4511] = 4380, + [4512] = 4394, + [4513] = 4394, + [4514] = 4514, + [4515] = 4458, + [4516] = 4516, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, + [4521] = 4521, [4522] = 4522, [4523] = 4523, [4524] = 4524, @@ -9064,11 +9014,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4539] = 4539, [4540] = 4540, [4541] = 4541, - [4542] = 4527, + [4542] = 4542, [4543] = 4543, - [4544] = 4529, - [4545] = 4537, - [4546] = 3774, + [4544] = 4544, + [4545] = 4545, + [4546] = 4546, [4547] = 4547, [4548] = 4548, [4549] = 4549, @@ -9076,7 +9026,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4551] = 4551, [4552] = 4552, [4553] = 4553, - [4554] = 4548, + [4554] = 4554, [4555] = 4555, [4556] = 4556, [4557] = 4557, @@ -9085,51 +9035,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4560] = 4560, [4561] = 4561, [4562] = 4562, - [4563] = 4547, - [4564] = 4548, + [4563] = 4563, + [4564] = 4564, [4565] = 4565, [4566] = 4566, [4567] = 4567, - [4568] = 4568, + [4568] = 4540, [4569] = 4569, [4570] = 4570, - [4571] = 4547, + [4571] = 4571, [4572] = 4572, [4573] = 4573, [4574] = 4574, [4575] = 4575, [4576] = 4576, [4577] = 4577, - [4578] = 4578, + [4578] = 4531, [4579] = 4579, [4580] = 4580, [4581] = 4581, [4582] = 4582, [4583] = 4583, - [4584] = 4535, + [4584] = 4584, [4585] = 4585, - [4586] = 4586, - [4587] = 4551, - [4588] = 4588, + [4586] = 4540, + [4587] = 4541, + [4588] = 4542, [4589] = 4589, - [4590] = 4590, - [4591] = 4591, - [4592] = 4527, - [4593] = 4529, - [4594] = 4537, - [4595] = 4547, - [4596] = 4548, - [4597] = 4597, + [4590] = 4544, + [4591] = 4545, + [4592] = 4592, + [4593] = 4593, + [4594] = 4533, + [4595] = 4537, + [4596] = 4543, + [4597] = 4553, [4598] = 4598, - [4599] = 4599, - [4600] = 4539, - [4601] = 4550, - [4602] = 4558, - [4603] = 4577, + [4599] = 4552, + [4600] = 4600, + [4601] = 4601, + [4602] = 4554, + [4603] = 4603, [4604] = 4604, [4605] = 4605, - [4606] = 4556, - [4607] = 4557, + [4606] = 4606, + [4607] = 4607, [4608] = 4608, [4609] = 4609, [4610] = 4610, @@ -9142,44 +9092,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4617] = 4617, [4618] = 4618, [4619] = 4619, - [4620] = 4620, + [4620] = 4552, [4621] = 4621, - [4622] = 4622, + [4622] = 4541, [4623] = 4623, [4624] = 4624, [4625] = 4625, [4626] = 4626, - [4627] = 4579, + [4627] = 4627, [4628] = 4628, - [4629] = 4615, + [4629] = 4629, [4630] = 4630, [4631] = 4631, [4632] = 4632, [4633] = 4633, [4634] = 4634, - [4635] = 4537, - [4636] = 4636, - [4637] = 4547, - [4638] = 4548, - [4639] = 4639, - [4640] = 4557, - [4641] = 3722, + [4635] = 4635, + [4636] = 4542, + [4637] = 4637, + [4638] = 4544, + [4639] = 4545, + [4640] = 4640, + [4641] = 4641, [4642] = 4642, [4643] = 4643, - [4644] = 4556, - [4645] = 3770, + [4644] = 4554, + [4645] = 4645, [4646] = 4646, - [4647] = 4647, - [4648] = 4547, - [4649] = 4548, - [4650] = 4650, - [4651] = 4557, + [4647] = 4554, + [4648] = 4648, + [4649] = 4552, + [4650] = 4531, + [4651] = 4148, [4652] = 4652, - [4653] = 4556, - [4654] = 4654, + [4653] = 4544, + [4654] = 4545, [4655] = 4655, - [4656] = 4656, - [4657] = 4526, + [4656] = 4554, + [4657] = 4657, [4658] = 4658, [4659] = 4659, [4660] = 4660, @@ -9197,56 +9147,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4672] = 4672, [4673] = 4673, [4674] = 4674, - [4675] = 4129, - [4676] = 4557, + [4675] = 4675, + [4676] = 4676, [4677] = 4677, [4678] = 4678, - [4679] = 4524, - [4680] = 4535, - [4681] = 4681, + [4679] = 4679, + [4680] = 4680, + [4681] = 4531, [4682] = 4682, [4683] = 4683, [4684] = 4684, [4685] = 4685, - [4686] = 4686, - [4687] = 4687, - [4688] = 4688, + [4686] = 4671, + [4687] = 4663, + [4688] = 4643, [4689] = 4689, [4690] = 4690, [4691] = 4691, - [4692] = 4670, - [4693] = 4693, + [4692] = 4646, + [4693] = 4542, [4694] = 4694, [4695] = 4695, - [4696] = 788, - [4697] = 4697, - [4698] = 4698, + [4696] = 4696, + [4697] = 790, + [4698] = 4554, [4699] = 4699, - [4700] = 4580, + [4700] = 4700, [4701] = 4701, [4702] = 4702, - [4703] = 4673, + [4703] = 4703, [4704] = 4704, - [4705] = 4557, + [4705] = 4705, [4706] = 4706, - [4707] = 4529, - [4708] = 4708, + [4707] = 4707, + [4708] = 4541, [4709] = 4709, [4710] = 4710, [4711] = 4711, [4712] = 4712, [4713] = 4713, - [4714] = 4714, + [4714] = 4555, [4715] = 4715, [4716] = 4716, [4717] = 4717, [4718] = 4718, [4719] = 4719, [4720] = 4720, - [4721] = 4721, + [4721] = 4576, [4722] = 4722, [4723] = 4723, - [4724] = 4661, + [4724] = 4724, [4725] = 4725, [4726] = 4726, [4727] = 4727, @@ -9255,19 +9205,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4730] = 4730, [4731] = 4731, [4732] = 4732, - [4733] = 4733, + [4733] = 4524, [4734] = 4734, [4735] = 4735, [4736] = 4736, [4737] = 4737, [4738] = 4738, [4739] = 4739, - [4740] = 4740, + [4740] = 4685, [4741] = 4741, [4742] = 4742, [4743] = 4743, - [4744] = 4744, - [4745] = 4745, + [4744] = 4734, + [4745] = 4736, [4746] = 4746, [4747] = 4747, [4748] = 4748, @@ -9293,58 +9243,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4768] = 4768, [4769] = 4769, [4770] = 4770, - [4771] = 4303, - [4772] = 4535, + [4771] = 4771, + [4772] = 4772, [4773] = 4773, [4774] = 4774, [4775] = 4775, [4776] = 4776, [4777] = 4777, - [4778] = 4720, + [4778] = 4778, [4779] = 4779, [4780] = 4780, - [4781] = 4667, + [4781] = 4781, [4782] = 4782, [4783] = 4783, [4784] = 4784, [4785] = 4785, [4786] = 4786, [4787] = 4787, - [4788] = 4535, - [4789] = 4789, - [4790] = 4790, + [4788] = 4788, + [4789] = 4544, + [4790] = 4545, [4791] = 4791, [4792] = 4792, [4793] = 4793, [4794] = 4794, [4795] = 4795, [4796] = 4796, - [4797] = 4797, + [4797] = 4672, [4798] = 4798, [4799] = 4799, [4800] = 4800, [4801] = 4801, [4802] = 4802, - [4803] = 4535, + [4803] = 4803, [4804] = 4804, [4805] = 4805, [4806] = 4806, [4807] = 4807, - [4808] = 4808, - [4809] = 3732, - [4810] = 3714, + [4808] = 4531, + [4809] = 4809, + [4810] = 4792, [4811] = 4811, [4812] = 4812, [4813] = 4813, - [4814] = 4814, - [4815] = 4815, + [4814] = 3559, + [4815] = 4802, [4816] = 4816, - [4817] = 4632, + [4817] = 4817, [4818] = 4818, [4819] = 4819, [4820] = 4820, [4821] = 4821, - [4822] = 4605, + [4822] = 4822, [4823] = 4823, [4824] = 4824, [4825] = 4825, @@ -9400,55 +9350,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4875] = 4875, [4876] = 4876, [4877] = 4877, - [4878] = 4528, + [4878] = 4531, [4879] = 4879, [4880] = 4880, [4881] = 4881, [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4610, + [4885] = 4885, [4886] = 4886, [4887] = 4887, [4888] = 4888, [4889] = 4889, [4890] = 4890, - [4891] = 4891, + [4891] = 4288, [4892] = 4892, [4893] = 4893, [4894] = 4894, [4895] = 4895, [4896] = 4896, - [4897] = 4897, + [4897] = 3807, [4898] = 4898, - [4899] = 4899, + [4899] = 4621, [4900] = 4900, - [4901] = 4704, - [4902] = 4526, + [4901] = 4901, + [4902] = 4902, [4903] = 4903, - [4904] = 4551, - [4905] = 4824, - [4906] = 4835, + [4904] = 4904, + [4905] = 4905, + [4906] = 4906, [4907] = 4907, - [4908] = 4908, + [4908] = 4668, [4909] = 4909, - [4910] = 4910, + [4910] = 4576, [4911] = 4911, [4912] = 4912, [4913] = 4913, [4914] = 4914, - [4915] = 4527, - [4916] = 4611, + [4915] = 4915, + [4916] = 4916, [4917] = 4917, [4918] = 4918, [4919] = 4919, [4920] = 4920, [4921] = 4921, - [4922] = 4668, + [4922] = 4922, [4923] = 4923, [4924] = 4924, - [4925] = 4925, - [4926] = 4535, + [4925] = 4734, + [4926] = 4926, [4927] = 4927, [4928] = 4928, [4929] = 4929, @@ -9457,113 +9407,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4932] = 4932, [4933] = 4933, [4934] = 4934, - [4935] = 4879, + [4935] = 3668, [4936] = 4936, - [4937] = 3704, + [4937] = 4937, [4938] = 4938, - [4939] = 4939, - [4940] = 4824, - [4941] = 4910, + [4939] = 4621, + [4940] = 4940, + [4941] = 4941, [4942] = 4942, [4943] = 4943, - [4944] = 1548, - [4945] = 1596, + [4944] = 4944, + [4945] = 4945, [4946] = 4946, - [4947] = 4894, + [4947] = 4947, [4948] = 4948, [4949] = 4949, - [4950] = 4950, + [4950] = 4531, [4951] = 4951, - [4952] = 4728, + [4952] = 4952, [4953] = 4953, [4954] = 4954, [4955] = 4955, - [4956] = 4730, + [4956] = 4540, [4957] = 4957, [4958] = 4958, - [4959] = 4959, - [4960] = 4960, - [4961] = 4908, - [4962] = 4962, + [4959] = 4806, + [4960] = 4792, + [4961] = 4812, + [4962] = 4712, [4963] = 4963, - [4964] = 4894, - [4965] = 4910, - [4966] = 4966, + [4964] = 4869, + [4965] = 4812, + [4966] = 4716, [4967] = 4967, [4968] = 4968, - [4969] = 4527, + [4969] = 4927, [4970] = 4970, - [4971] = 4971, + [4971] = 4946, [4972] = 4972, [4973] = 4973, [4974] = 4974, - [4975] = 4975, - [4976] = 4529, + [4975] = 4955, + [4976] = 4976, [4977] = 4977, [4978] = 4978, [4979] = 4979, [4980] = 4980, - [4981] = 4981, + [4981] = 4541, [4982] = 4982, - [4983] = 4529, + [4983] = 4983, [4984] = 4984, [4985] = 4985, [4986] = 4986, - [4987] = 4987, + [4987] = 4879, [4988] = 4988, [4989] = 4989, - [4990] = 4990, - [4991] = 4537, + [4990] = 4890, + [4991] = 4991, [4992] = 4992, [4993] = 4993, - [4994] = 4566, - [4995] = 4525, - [4996] = 4996, - [4997] = 4547, - [4998] = 4548, - [4999] = 4999, - [5000] = 4578, - [5001] = 5001, + [4994] = 4994, + [4995] = 4995, + [4996] = 4678, + [4997] = 4700, + [4998] = 4998, + [4999] = 4540, + [5000] = 5000, + [5001] = 4541, [5002] = 5002, [5003] = 5003, [5004] = 5004, - [5005] = 5005, - [5006] = 5006, - [5007] = 4539, - [5008] = 4550, + [5005] = 5000, + [5006] = 4542, + [5007] = 5007, + [5008] = 4544, [5009] = 5009, - [5010] = 4558, - [5011] = 4577, + [5010] = 5010, + [5011] = 4545, [5012] = 5012, - [5013] = 5013, - [5014] = 5014, + [5013] = 3707, + [5014] = 4869, [5015] = 5015, - [5016] = 4588, + [5016] = 4542, [5017] = 5017, [5018] = 5018, - [5019] = 5019, - [5020] = 4617, + [5019] = 5003, + [5020] = 5020, [5021] = 5021, - [5022] = 4529, - [5023] = 5023, + [5022] = 4541, + [5023] = 4977, [5024] = 5024, [5025] = 5025, - [5026] = 5026, - [5027] = 5027, + [5026] = 3792, + [5027] = 4533, [5028] = 5028, - [5029] = 4556, - [5030] = 5030, + [5029] = 5029, + [5030] = 4537, [5031] = 5031, - [5032] = 5032, - [5033] = 5033, - [5034] = 4557, + [5032] = 4543, + [5033] = 4553, + [5034] = 5034, [5035] = 5035, [5036] = 5036, [5037] = 5037, - [5038] = 5038, - [5039] = 5039, + [5038] = 4713, + [5039] = 4564, [5040] = 5040, - [5041] = 5041, + [5041] = 4566, [5042] = 5042, [5043] = 5043, [5044] = 5044, @@ -9574,17 +9524,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5049] = 5049, [5050] = 5050, [5051] = 5051, - [5052] = 5052, + [5052] = 4552, [5053] = 5053, [5054] = 5054, [5055] = 5055, - [5056] = 4537, + [5056] = 5056, [5057] = 5057, [5058] = 5058, [5059] = 5059, [5060] = 5060, [5061] = 5061, - [5062] = 5062, + [5062] = 4554, [5063] = 5063, [5064] = 5064, [5065] = 5065, @@ -9597,8 +9547,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5072] = 5072, [5073] = 5073, [5074] = 5074, - [5075] = 5075, - [5076] = 5076, + [5075] = 1626, + [5076] = 1545, [5077] = 5077, [5078] = 5078, [5079] = 5079, @@ -9613,12 +9563,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5088] = 5088, [5089] = 5089, [5090] = 5090, - [5091] = 4541, + [5091] = 5091, [5092] = 5092, [5093] = 5093, [5094] = 5094, [5095] = 5095, - [5096] = 5096, + [5096] = 3722, [5097] = 5097, [5098] = 5098, [5099] = 5099, @@ -9628,37 +9578,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5103] = 5103, [5104] = 5104, [5105] = 5105, - [5106] = 3739, + [5106] = 4164, [5107] = 5107, - [5108] = 5108, + [5108] = 4780, [5109] = 5109, - [5110] = 4562, + [5110] = 5110, [5111] = 5111, [5112] = 5112, [5113] = 5113, [5114] = 5114, - [5115] = 5115, - [5116] = 4367, + [5115] = 4544, + [5116] = 4545, [5117] = 5117, [5118] = 5118, - [5119] = 4622, + [5119] = 5119, [5120] = 5120, [5121] = 5121, [5122] = 5122, [5123] = 5123, [5124] = 5124, - [5125] = 5125, + [5125] = 3547, [5126] = 5126, [5127] = 5127, [5128] = 5128, [5129] = 5129, [5130] = 5130, [5131] = 5131, - [5132] = 4683, + [5132] = 5132, [5133] = 5133, - [5134] = 4567, + [5134] = 2650, [5135] = 5135, - [5136] = 4704, + [5136] = 5136, [5137] = 5137, [5138] = 5138, [5139] = 5139, @@ -9669,14 +9619,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5144] = 5144, [5145] = 5145, [5146] = 5146, - [5147] = 5147, + [5147] = 2672, [5148] = 5148, [5149] = 5149, [5150] = 5150, [5151] = 5151, [5152] = 5152, [5153] = 5153, - [5154] = 5154, + [5154] = 5130, [5155] = 5155, [5156] = 5156, [5157] = 5157, @@ -9686,7 +9636,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5161] = 5161, [5162] = 5162, [5163] = 5163, - [5164] = 2658, + [5164] = 5164, [5165] = 5165, [5166] = 5166, [5167] = 5167, @@ -9695,715 +9645,703 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5170] = 5170, [5171] = 5171, [5172] = 5172, - [5173] = 5173, - [5174] = 5174, + [5173] = 5130, + [5174] = 5163, [5175] = 5175, - [5176] = 5176, + [5176] = 5166, [5177] = 5177, [5178] = 5178, - [5179] = 5179, - [5180] = 2684, - [5181] = 5146, - [5182] = 2717, + [5179] = 5167, + [5180] = 5180, + [5181] = 5181, + [5182] = 5182, [5183] = 5183, - [5184] = 5168, + [5184] = 5184, [5185] = 5185, [5186] = 5186, [5187] = 5187, [5188] = 5188, [5189] = 5189, [5190] = 5190, - [5191] = 5168, - [5192] = 3836, - [5193] = 5193, - [5194] = 5194, - [5195] = 5195, - [5196] = 5161, + [5191] = 5191, + [5192] = 5192, + [5193] = 3811, + [5194] = 1674, + [5195] = 1675, + [5196] = 3862, [5197] = 5197, - [5198] = 5198, - [5199] = 5199, - [5200] = 5200, - [5201] = 5201, - [5202] = 2689, - [5203] = 2696, - [5204] = 5168, - [5205] = 5205, - [5206] = 2688, - [5207] = 5207, - [5208] = 2704, - [5209] = 5157, - [5210] = 5210, - [5211] = 5211, - [5212] = 5156, - [5213] = 5211, - [5214] = 5214, + [5198] = 5182, + [5199] = 3886, + [5200] = 5184, + [5201] = 5149, + [5202] = 5202, + [5203] = 5161, + [5204] = 5204, + [5205] = 5146, + [5206] = 5202, + [5207] = 5172, + [5208] = 5163, + [5209] = 5209, + [5210] = 5167, + [5211] = 5189, + [5212] = 5212, + [5213] = 5213, + [5214] = 2655, [5215] = 5215, - [5216] = 2656, - [5217] = 5217, + [5216] = 5216, + [5217] = 5127, [5218] = 5218, [5219] = 5219, - [5220] = 5160, - [5221] = 5221, - [5222] = 5222, - [5223] = 5176, - [5224] = 2715, - [5225] = 5178, + [5220] = 5220, + [5221] = 2657, + [5222] = 5168, + [5223] = 5223, + [5224] = 5224, + [5225] = 5225, [5226] = 5226, [5227] = 5227, [5228] = 5228, - [5229] = 5178, - [5230] = 2705, - [5231] = 2716, + [5229] = 5138, + [5230] = 5230, + [5231] = 5219, [5232] = 5232, [5233] = 5233, [5234] = 5234, [5235] = 5235, - [5236] = 2683, - [5237] = 2711, - [5238] = 5238, + [5236] = 5236, + [5237] = 5183, + [5238] = 2662, [5239] = 5239, - [5240] = 5238, - [5241] = 5241, - [5242] = 5242, - [5243] = 2677, + [5240] = 5128, + [5241] = 5228, + [5242] = 5133, + [5243] = 5146, [5244] = 5244, [5245] = 5245, [5246] = 5246, [5247] = 5247, - [5248] = 5148, - [5249] = 5151, - [5250] = 5250, - [5251] = 5251, - [5252] = 5252, - [5253] = 5251, - [5254] = 5254, - [5255] = 5255, + [5248] = 5146, + [5249] = 5233, + [5250] = 5187, + [5251] = 5146, + [5252] = 5163, + [5253] = 5167, + [5254] = 5190, + [5255] = 5144, [5256] = 5256, [5257] = 5257, - [5258] = 5160, - [5259] = 5259, - [5260] = 5176, - [5261] = 5178, - [5262] = 5262, + [5258] = 5258, + [5259] = 2708, + [5260] = 5260, + [5261] = 5137, + [5262] = 2693, [5263] = 5263, - [5264] = 5264, + [5264] = 5162, [5265] = 5265, - [5266] = 5266, + [5266] = 5143, [5267] = 5267, - [5268] = 5268, - [5269] = 5269, + [5268] = 5145, + [5269] = 5162, [5270] = 5270, - [5271] = 5160, + [5271] = 5191, [5272] = 5272, - [5273] = 5273, + [5273] = 5143, [5274] = 5274, - [5275] = 3852, - [5276] = 5276, + [5275] = 5166, + [5276] = 5224, [5277] = 5277, - [5278] = 5176, - [5279] = 1660, + [5278] = 5278, + [5279] = 5184, [5280] = 5280, - [5281] = 5222, - [5282] = 5255, + [5281] = 5190, + [5282] = 5191, [5283] = 5283, [5284] = 5284, - [5285] = 5254, - [5286] = 5286, - [5287] = 5232, - [5288] = 5198, + [5285] = 5285, + [5286] = 5280, + [5287] = 5287, + [5288] = 5150, [5289] = 5289, [5290] = 5290, - [5291] = 5291, - [5292] = 5292, + [5291] = 5158, + [5292] = 5163, [5293] = 5293, - [5294] = 5294, + [5294] = 5283, [5295] = 5295, - [5296] = 5296, - [5297] = 5297, - [5298] = 5298, - [5299] = 5299, - [5300] = 5300, - [5301] = 5301, - [5302] = 5187, + [5296] = 5287, + [5297] = 2710, + [5298] = 5181, + [5299] = 5175, + [5300] = 5227, + [5301] = 5155, + [5302] = 5302, [5303] = 5303, - [5304] = 5233, - [5305] = 5165, - [5306] = 5267, - [5307] = 5147, - [5308] = 5308, + [5304] = 5304, + [5305] = 5305, + [5306] = 3825, + [5307] = 5307, + [5308] = 5162, [5309] = 5309, - [5310] = 5177, - [5311] = 5311, - [5312] = 5195, - [5313] = 5269, + [5310] = 5310, + [5311] = 5143, + [5312] = 5312, + [5313] = 5313, [5314] = 5314, - [5315] = 5158, - [5316] = 5316, - [5317] = 5242, - [5318] = 5289, - [5319] = 5297, - [5320] = 5320, - [5321] = 5321, - [5322] = 5221, - [5323] = 5323, + [5315] = 5315, + [5316] = 2669, + [5317] = 5191, + [5318] = 5318, + [5319] = 5319, + [5320] = 5283, + [5321] = 5130, + [5322] = 5322, + [5323] = 5283, [5324] = 5324, - [5325] = 5325, - [5326] = 5172, - [5327] = 5327, - [5328] = 2702, + [5325] = 5166, + [5326] = 5326, + [5327] = 5130, + [5328] = 5233, [5329] = 5329, - [5330] = 2712, + [5330] = 5330, [5331] = 5331, - [5332] = 5174, - [5333] = 5262, + [5332] = 5188, + [5333] = 5333, [5334] = 5334, [5335] = 5335, [5336] = 5336, - [5337] = 5176, - [5338] = 5338, - [5339] = 5339, - [5340] = 5340, - [5341] = 5341, - [5342] = 5274, + [5337] = 5337, + [5338] = 5184, + [5339] = 5190, + [5340] = 5303, + [5341] = 5304, + [5342] = 5342, [5343] = 5343, - [5344] = 1676, - [5345] = 1677, - [5346] = 5289, - [5347] = 5297, - [5348] = 5222, - [5349] = 5274, + [5344] = 5344, + [5345] = 2712, + [5346] = 5346, + [5347] = 5302, + [5348] = 2653, + [5349] = 5349, [5350] = 5350, - [5351] = 5351, - [5352] = 5289, - [5353] = 5190, - [5354] = 5297, + [5351] = 5218, + [5352] = 5166, + [5353] = 5353, + [5354] = 5184, [5355] = 5355, [5356] = 5356, - [5357] = 5357, - [5358] = 5214, + [5357] = 5190, + [5358] = 5358, [5359] = 5359, [5360] = 5360, - [5361] = 5361, - [5362] = 5362, - [5363] = 5270, - [5364] = 5244, - [5365] = 2670, - [5366] = 5149, - [5367] = 5147, - [5368] = 5156, - [5369] = 5187, + [5361] = 5146, + [5362] = 5312, + [5363] = 5315, + [5364] = 5364, + [5365] = 5318, + [5366] = 5324, + [5367] = 5367, + [5368] = 2690, + [5369] = 5326, [5370] = 5370, - [5371] = 5274, - [5372] = 5158, - [5373] = 5156, - [5374] = 5301, - [5375] = 5158, - [5376] = 5159, - [5377] = 5377, - [5378] = 5160, - [5379] = 5156, - [5380] = 5380, + [5371] = 5197, + [5372] = 5344, + [5373] = 5373, + [5374] = 5183, + [5375] = 5163, + [5376] = 5293, + [5377] = 5224, + [5378] = 5167, + [5379] = 5379, + [5380] = 5162, [5381] = 5381, - [5382] = 5159, - [5383] = 5161, - [5384] = 5161, - [5385] = 2693, - [5386] = 5264, - [5387] = 5158, - [5388] = 3853, - [5389] = 5159, + [5382] = 5143, + [5383] = 1659, + [5384] = 5384, + [5385] = 5385, + [5386] = 5191, + [5387] = 5167, + [5388] = 5283, + [5389] = 2659, [5390] = 5390, - [5391] = 5161, - [5392] = 5176, - [5393] = 5272, - [5394] = 5320, - [5395] = 5321, - [5396] = 5256, - [5397] = 5274, - [5398] = 2652, - [5399] = 5143, - [5400] = 5289, - [5401] = 2680, - [5402] = 5298, - [5403] = 5145, - [5404] = 5404, - [5405] = 5405, - [5406] = 5168, - [5407] = 5168, - [5408] = 5408, - [5409] = 5178, - [5410] = 5327, - [5411] = 5152, + [5391] = 5135, + [5392] = 2660, + [5393] = 5393, + [5394] = 5192, + [5395] = 5395, + [5396] = 5130, + [5397] = 5227, + [5398] = 5398, + [5399] = 5390, + [5400] = 5400, + [5401] = 5401, + [5402] = 5402, + [5403] = 5364, + [5404] = 5274, + [5405] = 5310, + [5406] = 5406, + [5407] = 5239, + [5408] = 5204, + [5409] = 5175, + [5410] = 5228, + [5411] = 5411, [5412] = 5412, - [5413] = 5329, - [5414] = 5270, - [5415] = 5297, - [5416] = 5217, - [5417] = 5178, - [5418] = 5331, + [5413] = 5413, + [5414] = 5234, + [5415] = 5415, + [5416] = 2687, + [5417] = 5417, + [5418] = 5418, [5419] = 5419, - [5420] = 5242, - [5421] = 5335, - [5422] = 5194, - [5423] = 5150, + [5420] = 2707, + [5421] = 5235, + [5422] = 5395, + [5423] = 5423, [5424] = 5424, - [5425] = 5425, - [5426] = 5338, - [5427] = 5427, + [5425] = 5424, + [5426] = 5426, + [5427] = 5130, [5428] = 5428, - [5429] = 5429, - [5430] = 5430, + [5429] = 5236, + [5430] = 5303, [5431] = 5431, - [5432] = 5432, - [5433] = 5433, - [5434] = 5431, - [5435] = 5435, - [5436] = 5277, - [5437] = 5325, - [5438] = 5320, - [5439] = 5168, - [5440] = 5308, - [5441] = 3854, - [5442] = 5160, + [5432] = 5212, + [5433] = 2695, + [5434] = 2688, + [5435] = 5426, + [5436] = 5436, + [5437] = 5437, + [5438] = 5213, + [5439] = 5439, + [5440] = 5440, + [5441] = 2696, + [5442] = 5440, [5443] = 5443, - [5444] = 5425, - [5445] = 5445, - [5446] = 5284, - [5447] = 5189, - [5448] = 5448, - [5449] = 5290, - [5450] = 5450, - [5451] = 5451, - [5452] = 5452, - [5453] = 2691, - [5454] = 5207, - [5455] = 5408, - [5456] = 5316, - [5457] = 5291, - [5458] = 5159, - [5459] = 5452, - [5460] = 5244, - [5461] = 2697, - [5462] = 5265, - [5463] = 5294, - [5464] = 5160, - [5465] = 5262, - [5466] = 5176, - [5467] = 5295, + [5444] = 5180, + [5445] = 5186, + [5446] = 5215, + [5447] = 5346, + [5448] = 5216, + [5449] = 5418, + [5450] = 5220, + [5451] = 5350, + [5452] = 5223, + [5453] = 5247, + [5454] = 5146, + [5455] = 5158, + [5456] = 5163, + [5457] = 5423, + [5458] = 5344, + [5459] = 5167, + [5460] = 5460, + [5461] = 5428, + [5462] = 5462, + [5463] = 2702, + [5464] = 2704, + [5465] = 2668, + [5466] = 5466, + [5467] = 5467, [5468] = 5468, - [5469] = 5152, - [5470] = 5178, - [5471] = 5296, - [5472] = 5218, - [5473] = 5300, - [5474] = 5235, + [5469] = 5469, + [5470] = 5470, + [5471] = 5471, + [5472] = 5472, + [5473] = 5471, + [5474] = 5474, [5475] = 5475, - [5476] = 5381, - [5477] = 5273, - [5478] = 5478, + [5476] = 5476, + [5477] = 5466, + [5478] = 5472, [5479] = 5479, [5480] = 5480, [5481] = 5481, [5482] = 5482, - [5483] = 5483, - [5484] = 5482, - [5485] = 5485, - [5486] = 5486, + [5483] = 5469, + [5484] = 5484, + [5485] = 5467, + [5486] = 5474, [5487] = 5487, [5488] = 5488, - [5489] = 5478, + [5489] = 5489, [5490] = 5490, - [5491] = 5491, + [5491] = 5472, [5492] = 5492, [5493] = 5493, - [5494] = 5494, + [5494] = 5482, [5495] = 5495, - [5496] = 5486, + [5496] = 5496, [5497] = 5497, [5498] = 5498, - [5499] = 5499, + [5499] = 5469, [5500] = 5500, [5501] = 5501, [5502] = 5502, - [5503] = 5503, - [5504] = 5504, - [5505] = 5505, + [5503] = 5493, + [5504] = 5480, + [5505] = 5469, [5506] = 5506, - [5507] = 5507, - [5508] = 5494, + [5507] = 5476, + [5508] = 5466, [5509] = 5509, [5510] = 5510, [5511] = 5511, [5512] = 5512, [5513] = 5513, - [5514] = 5514, + [5514] = 5512, [5515] = 5515, [5516] = 5516, - [5517] = 5486, - [5518] = 5518, - [5519] = 5519, - [5520] = 5520, + [5517] = 5495, + [5518] = 5472, + [5519] = 5475, + [5520] = 5495, [5521] = 5521, - [5522] = 5514, - [5523] = 5515, - [5524] = 5524, - [5525] = 5478, + [5522] = 5492, + [5523] = 5496, + [5524] = 5521, + [5525] = 5525, [5526] = 5526, - [5527] = 5527, - [5528] = 5509, - [5529] = 5529, + [5527] = 5475, + [5528] = 5476, + [5529] = 5466, [5530] = 5530, - [5531] = 5531, - [5532] = 5532, - [5533] = 5533, + [5531] = 5479, + [5532] = 5480, + [5533] = 5481, [5534] = 5534, - [5535] = 5515, + [5535] = 5474, [5536] = 5536, - [5537] = 5504, - [5538] = 5515, + [5537] = 5521, + [5538] = 5538, [5539] = 5539, - [5540] = 5488, - [5541] = 5478, - [5542] = 5534, - [5543] = 5491, + [5540] = 5540, + [5541] = 5489, + [5542] = 5542, + [5543] = 5543, [5544] = 5492, - [5545] = 5493, - [5546] = 5504, + [5545] = 5545, + [5546] = 5546, [5547] = 5547, - [5548] = 5533, - [5549] = 5549, + [5548] = 5548, + [5549] = 5493, [5550] = 5550, [5551] = 5551, - [5552] = 5552, - [5553] = 5501, - [5554] = 5534, - [5555] = 5506, - [5556] = 5556, + [5552] = 5547, + [5553] = 5553, + [5554] = 5554, + [5555] = 5479, + [5556] = 5493, [5557] = 5557, - [5558] = 5558, - [5559] = 5504, - [5560] = 5560, + [5558] = 5466, + [5559] = 5559, + [5560] = 5547, [5561] = 5561, [5562] = 5562, - [5563] = 5530, - [5564] = 5488, - [5565] = 5478, - [5566] = 5529, - [5567] = 5491, - [5568] = 5568, - [5569] = 5569, - [5570] = 5510, - [5571] = 5514, - [5572] = 5572, - [5573] = 5504, - [5574] = 5482, - [5575] = 5536, - [5576] = 5576, - [5577] = 5577, - [5578] = 5501, + [5563] = 5563, + [5564] = 5471, + [5565] = 5565, + [5566] = 5566, + [5567] = 5474, + [5568] = 5467, + [5569] = 5475, + [5570] = 5501, + [5571] = 5484, + [5572] = 5521, + [5573] = 5548, + [5574] = 5476, + [5575] = 5513, + [5576] = 5557, + [5577] = 5472, + [5578] = 5480, [5579] = 5579, - [5580] = 5580, - [5581] = 5581, - [5582] = 5582, - [5583] = 5495, - [5584] = 5491, - [5585] = 5585, - [5586] = 5488, - [5587] = 5514, + [5580] = 5492, + [5581] = 5559, + [5582] = 5476, + [5583] = 5583, + [5584] = 5584, + [5585] = 5466, + [5586] = 5480, + [5587] = 5495, [5588] = 5588, - [5589] = 5558, - [5590] = 5590, - [5591] = 5591, - [5592] = 5482, - [5593] = 5593, - [5594] = 5594, + [5589] = 5479, + [5590] = 5480, + [5591] = 5481, + [5592] = 5521, + [5593] = 5495, + [5594] = 5481, [5595] = 5595, - [5596] = 5500, - [5597] = 5510, - [5598] = 5598, - [5599] = 5492, - [5600] = 5600, - [5601] = 5493, - [5602] = 5488, - [5603] = 5478, - [5604] = 5492, - [5605] = 5510, + [5596] = 5596, + [5597] = 5597, + [5598] = 5479, + [5599] = 5467, + [5600] = 5480, + [5601] = 5481, + [5602] = 5602, + [5603] = 5603, + [5604] = 5604, + [5605] = 5605, [5606] = 5606, - [5607] = 5491, - [5608] = 5492, - [5609] = 5493, - [5610] = 5491, - [5611] = 5581, - [5612] = 5492, - [5613] = 5493, - [5614] = 5534, - [5615] = 5615, - [5616] = 5492, - [5617] = 5504, - [5618] = 5479, - [5619] = 5493, + [5607] = 5607, + [5608] = 5608, + [5609] = 5609, + [5610] = 5489, + [5611] = 5611, + [5612] = 5612, + [5613] = 5613, + [5614] = 5614, + [5615] = 5489, + [5616] = 5538, + [5617] = 5617, + [5618] = 5469, + [5619] = 5475, [5620] = 5620, - [5621] = 5501, - [5622] = 5501, - [5623] = 5623, - [5624] = 5624, + [5621] = 5548, + [5622] = 5622, + [5623] = 5534, + [5624] = 5497, [5625] = 5625, - [5626] = 5486, - [5627] = 5524, - [5628] = 5628, - [5629] = 5629, - [5630] = 5630, - [5631] = 5623, - [5632] = 5632, - [5633] = 5495, - [5634] = 5585, + [5626] = 5626, + [5627] = 5482, + [5628] = 5614, + [5629] = 5626, + [5630] = 5470, + [5631] = 5631, + [5632] = 5547, + [5633] = 5474, + [5634] = 5476, [5635] = 5635, - [5636] = 5620, + [5636] = 5470, [5637] = 5637, [5638] = 5638, - [5639] = 5527, - [5640] = 5632, - [5641] = 5514, + [5639] = 5475, + [5640] = 5640, + [5641] = 5596, [5642] = 5642, - [5643] = 5493, - [5644] = 5550, + [5643] = 5643, + [5644] = 5644, [5645] = 5645, - [5646] = 5556, - [5647] = 5591, - [5648] = 5598, - [5649] = 5649, + [5646] = 5469, + [5647] = 5472, + [5648] = 5648, + [5649] = 5553, [5650] = 5650, - [5651] = 5494, - [5652] = 5652, - [5653] = 5645, - [5654] = 5515, - [5655] = 5655, + [5651] = 5493, + [5652] = 5617, + [5653] = 5547, + [5654] = 5469, + [5655] = 5482, [5656] = 5656, - [5657] = 5628, - [5658] = 5629, - [5659] = 5534, + [5657] = 5657, + [5658] = 5489, + [5659] = 5659, [5660] = 5660, - [5661] = 5534, - [5662] = 5569, - [5663] = 5635, - [5664] = 5483, - [5665] = 5519, - [5666] = 5510, - [5667] = 5667, - [5668] = 5581, - [5669] = 5581, - [5670] = 5670, - [5671] = 5486, - [5672] = 5672, - [5673] = 5526, - [5674] = 5529, - [5675] = 5530, - [5676] = 5642, - [5677] = 5495, - [5678] = 5480, - [5679] = 5623, - [5680] = 5479, - [5681] = 5480, - [5682] = 5660, - [5683] = 5511, - [5684] = 5511, - [5685] = 5494, - [5686] = 5686, - [5687] = 5569, - [5688] = 5660, - [5689] = 5550, - [5690] = 5511, + [5661] = 5603, + [5662] = 5553, + [5663] = 5663, + [5664] = 5500, + [5665] = 5665, + [5666] = 5515, + [5667] = 5607, + [5668] = 5482, + [5669] = 5510, + [5670] = 5493, + [5671] = 5547, + [5672] = 5596, + [5673] = 5501, + [5674] = 5656, + [5675] = 5501, + [5676] = 5611, + [5677] = 5603, + [5678] = 5622, + [5679] = 5513, + [5680] = 5561, + [5681] = 5681, + [5682] = 5665, + [5683] = 5553, + [5684] = 5540, + [5685] = 5607, + [5686] = 5611, + [5687] = 5511, + [5688] = 5688, + [5689] = 5635, + [5690] = 5690, [5691] = 5691, - [5692] = 5656, - [5693] = 5551, - [5694] = 5500, - [5695] = 5506, - [5696] = 5660, - [5697] = 5511, - [5698] = 5569, - [5699] = 5534, - [5700] = 5516, - [5701] = 5701, - [5702] = 5526, - [5703] = 5703, - [5704] = 5479, - [5705] = 5502, - [5706] = 5660, - [5707] = 5531, - [5708] = 5557, - [5709] = 5511, - [5710] = 5482, - [5711] = 5561, - [5712] = 5712, - [5713] = 5572, - [5714] = 5514, - [5715] = 5569, - [5716] = 5716, - [5717] = 5480, - [5718] = 5499, - [5719] = 5551, - [5720] = 5720, - [5721] = 5569, - [5722] = 5480, - [5723] = 5723, - [5724] = 5625, - [5725] = 5519, - [5726] = 5629, - [5727] = 5488, - [5728] = 5478, + [5692] = 5645, + [5693] = 5481, + [5694] = 5510, + [5695] = 5642, + [5696] = 5681, + [5697] = 5583, + [5698] = 5492, + [5699] = 5540, + [5700] = 5635, + [5701] = 5497, + [5702] = 5502, + [5703] = 5512, + [5704] = 5665, + [5705] = 5648, + [5706] = 5546, + [5707] = 5638, + [5708] = 5489, + [5709] = 5493, + [5710] = 5710, + [5711] = 5547, + [5712] = 5650, + [5713] = 5659, + [5714] = 5660, + [5715] = 5691, + [5716] = 5645, + [5717] = 5583, + [5718] = 5583, + [5719] = 5497, + [5720] = 5502, + [5721] = 5512, + [5722] = 5722, + [5723] = 5562, + [5724] = 5501, + [5725] = 5642, + [5726] = 5565, + [5727] = 5650, + [5728] = 5546, [5729] = 5729, - [5730] = 5532, - [5731] = 5731, - [5732] = 5491, - [5733] = 5733, - [5734] = 5519, - [5735] = 5526, - [5736] = 5526, - [5737] = 5510, - [5738] = 5529, - [5739] = 5529, - [5740] = 5530, - [5741] = 5550, - [5742] = 5530, - [5743] = 5492, - [5744] = 5550, - [5745] = 5500, - [5746] = 5551, - [5747] = 5483, - [5748] = 5667, - [5749] = 5493, - [5750] = 5551, - [5751] = 5576, - [5752] = 5506, - [5753] = 5506, - [5754] = 5557, - [5755] = 5524, - [5756] = 5510, - [5757] = 5561, - [5758] = 5509, - [5759] = 5572, - [5760] = 5557, - [5761] = 5561, - [5762] = 5579, - [5763] = 5533, - [5764] = 5582, - [5765] = 5500, - [5766] = 5766, - [5767] = 5536, - [5768] = 5733, - [5769] = 5572, - [5770] = 5557, - [5771] = 5558, - [5772] = 5591, - [5773] = 5598, - [5774] = 5500, - [5775] = 5561, - [5776] = 5716, - [5777] = 5777, - [5778] = 5483, - [5779] = 5667, - [5780] = 5488, - [5781] = 5781, - [5782] = 5576, - [5783] = 5478, - [5784] = 5629, - [5785] = 5482, - [5786] = 5552, - [5787] = 5623, - [5788] = 5491, - [5789] = 5524, - [5790] = 5492, - [5791] = 5493, - [5792] = 5509, - [5793] = 5533, - [5794] = 5483, - [5795] = 5536, - [5796] = 5796, - [5797] = 5501, - [5798] = 5667, - [5799] = 5558, - [5800] = 5501, - [5801] = 5628, - [5802] = 5501, - [5803] = 5629, - [5804] = 5591, - [5805] = 5598, - [5806] = 5576, - [5807] = 5524, - [5808] = 5808, - [5809] = 5733, - [5810] = 5509, - [5811] = 5495, - [5812] = 5488, - [5813] = 5533, - [5814] = 5536, - [5815] = 5482, - [5816] = 5629, - [5817] = 5628, - [5818] = 5558, - [5819] = 5686, - [5820] = 5660, - [5821] = 5691, - [5822] = 5591, - [5823] = 5808, - [5824] = 5478, - [5825] = 5825, + [5730] = 5730, + [5731] = 5617, + [5732] = 5484, + [5733] = 5602, + [5734] = 5490, + [5735] = 5735, + [5736] = 5736, + [5737] = 5596, + [5738] = 5530, + [5739] = 5739, + [5740] = 5603, + [5741] = 5470, + [5742] = 5607, + [5743] = 5659, + [5744] = 5645, + [5745] = 5611, + [5746] = 5484, + [5747] = 5501, + [5748] = 5748, + [5749] = 5546, + [5750] = 5750, + [5751] = 5542, + [5752] = 5476, + [5753] = 5635, + [5754] = 5638, + [5755] = 5466, + [5756] = 5691, + [5757] = 5642, + [5758] = 5489, + [5759] = 5596, + [5760] = 5479, + [5761] = 5603, + [5762] = 5480, + [5763] = 5607, + [5764] = 5481, + [5765] = 5650, + [5766] = 5659, + [5767] = 5660, + [5768] = 5476, + [5769] = 5472, + [5770] = 5496, + [5771] = 5466, + [5772] = 5660, + [5773] = 5492, + [5774] = 5476, + [5775] = 5665, + [5776] = 5479, + [5777] = 5495, + [5778] = 5480, + [5779] = 5481, + [5780] = 5513, + [5781] = 5611, + [5782] = 5644, + [5783] = 5489, + [5784] = 5510, + [5785] = 5471, + [5786] = 5681, + [5787] = 5496, + [5788] = 5489, + [5789] = 5538, + [5790] = 5476, + [5791] = 5540, + [5792] = 5792, + [5793] = 5793, + [5794] = 5691, + [5795] = 5635, + [5796] = 5474, + [5797] = 5645, + [5798] = 5638, + [5799] = 5583, + [5800] = 5466, + [5801] = 5553, + [5802] = 5642, + [5803] = 5492, + [5804] = 5650, + [5805] = 5538, + [5806] = 5497, + [5807] = 5502, + [5808] = 5659, + [5809] = 5512, + [5810] = 5660, + [5811] = 5546, + [5812] = 5812, + [5813] = 5813, + [5814] = 5481, + [5815] = 5492, + [5816] = 5538, + [5817] = 5812, + [5818] = 5617, + [5819] = 5681, + [5820] = 5820, + [5821] = 5466, + [5822] = 5813, + [5823] = 5492, + [5824] = 5496, + [5825] = 5479, [5826] = 5826, - [5827] = 5482, - [5828] = 5628, - [5829] = 5598, - [5830] = 5501, - [5831] = 5660, - [5832] = 5733, - [5833] = 5488, - [5834] = 5581, - [5835] = 5482, - [5836] = 5836, - [5837] = 5593, - [5838] = 5511, - [5839] = 5482, - [5840] = 5623, - [5841] = 5491, - [5842] = 5479, - [5843] = 5492, - [5844] = 5493, - [5845] = 5733, - [5846] = 5638, - [5847] = 5701, - [5848] = 5491, - [5849] = 5623, - [5850] = 5850, - [5851] = 5485, - [5852] = 5488, - [5853] = 5569, - [5854] = 5628, - [5855] = 5629, - [5856] = 5494, - [5857] = 5502, - [5858] = 5556, - [5859] = 5590, - [5860] = 5729, - [5861] = 5507, - [5862] = 5576, - [5863] = 5572, - [5864] = 5712, - [5865] = 5478, - [5866] = 5826, - [5867] = 5481, - [5868] = 5495, - [5869] = 5500, - [5870] = 5502, - [5871] = 5871, - [5872] = 5850, - [5873] = 5520, - [5874] = 5623, - [5875] = 5519, - [5876] = 5667, - [5877] = 5628, - [5878] = 5501, - [5879] = 5879, - [5880] = 5556, - [5881] = 5588, + [5827] = 5492, + [5828] = 5521, + [5829] = 5479, + [5830] = 5617, + [5831] = 5480, + [5832] = 5665, + [5833] = 5471, + [5834] = 5481, + [5835] = 5498, + [5836] = 5729, + [5837] = 5487, + [5838] = 5750, + [5839] = 5488, + [5840] = 5475, + [5841] = 5665, + [5842] = 5538, + [5843] = 5617, + [5844] = 5844, + [5845] = 5845, + [5846] = 5510, + [5847] = 5739, + [5848] = 5548, + [5849] = 5597, + [5850] = 5793, + [5851] = 5710, + [5852] = 5681, + [5853] = 5484, + [5854] = 5826, + [5855] = 5516, + [5856] = 5617, + [5857] = 5584, + [5858] = 5665, + [5859] = 5479, + [5860] = 5467, + [5861] = 5501, + [5862] = 5540, + [5863] = 5863, + [5864] = 5691, + [5865] = 5538, + [5866] = 5502, + [5867] = 5489, + [5868] = 5548, + [5869] = 5638, }; static TSCharacterRange extras_character_set_1[] = { @@ -10426,1660 +10364,1413 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(97); + if (eof) ADVANCE(76); ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 10, - '$', 236, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 113, - '*', 100, - '+', 173, - ',', 107, - '-', 177, - '.', 127, - '/', 222, - '0', 227, - ':', 114, - ';', 112, - '<', 186, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 55, - ']', 116, - '^', 163, - '`', 220, - '{', 106, - '|', 166, - '}', 108, - '~', 198, + '!', 89, + '"', 169, + '#', 6, + '$', 206, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 141, + ',', 86, + '-', 145, + '.', 97, + '/', 192, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 33, + ']', 95, + '^', 131, + '`', 190, + '{', 85, + '|', 134, + '}', 87, + '~', 166, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); - if (lookahead > '@') ADVANCE(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(73); + if (lookahead > '@') ADVANCE(207); END_STATE(); case 1: - if (lookahead == '\n') SKIP(1); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '<') ADVANCE(120); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(119); - if (lookahead != 0) ADVANCE(117); + if (lookahead == '\n') SKIP(24); + if (lookahead == '/') ADVANCE(17); + if (lookahead == '[') ADVANCE(32); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(193); + if (lookahead != 0) ADVANCE(194); END_STATE(); case 2: - if (lookahead == '\n') SKIP(29); - if (lookahead == '/') ADVANCE(22); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(223); - if (lookahead != 0) ADVANCE(224); + ADVANCE_MAP( + '!', 89, + '"', 169, + '#', 31, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 140, + ',', 86, + '-', 144, + '.', 97, + '/', 147, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 131, + '`', 190, + '{', 85, + '|', 134, + '}', 87, + '~', 166, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(2); + if (lookahead > '#') ADVANCE(207); END_STATE(); case 3: ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 113, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 127, - '/', 179, - '0', 227, - ':', 114, - ';', 112, - '<', 186, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 105, - '|', 165, - '}', 108, - '~', 198, + '!', 89, + '"', 169, + '#', 31, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 140, + ',', 86, + '-', 144, + '.', 97, + '/', 147, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 131, + '`', 190, + '{', 84, + '|', 133, + '}', 87, + '~', 166, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); - if (lookahead > '#') ADVANCE(237); + if (lookahead > '#') ADVANCE(207); END_STATE(); case 4: ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 113, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 127, - '/', 179, - '0', 227, - ':', 114, - '<', 186, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - '^', 163, - '`', 220, - '{', 106, - '|', 165, - '~', 198, + '!', 89, + '%', 148, + '&', 129, + '(', 90, + ')', 92, + '*', 80, + '+', 139, + ',', 86, + '-', 143, + '.', 96, + '/', 146, + ':', 93, + ';', 91, + '<', 154, + '=', 28, + '>', 163, + '?', 21, + '[', 94, + '\\', 35, + ']', 95, + '^', 130, + '`', 190, + '{', 84, + '|', 135, + '}', 87, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '`' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 5: ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 113, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 128, - '/', 179, - '0', 227, - ':', 114, - ';', 112, - '<', 185, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 106, - '|', 166, - '}', 108, + '!', 89, + '%', 148, + '&', 129, + '(', 90, + ')', 92, + '*', 80, + '+', 139, + ',', 86, + '-', 143, + '.', 96, + '/', 146, + ':', 93, + ';', 91, + '<', 154, + '=', 28, + '>', 163, + '?', 21, + '[', 94, + '\\', 35, + ']', 95, + '^', 130, + '`', 190, + '{', 84, + '|', 135, + '}', 87, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 6: - ADVANCE_MAP( - '!', 110, - '"', 129, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 113, - '*', 100, - '+', 172, - ',', 107, - '-', 176, - '.', 126, - '/', 179, - ':', 114, - ';', 112, - '<', 185, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 105, - '|', 165, - '}', 108, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + if (lookahead == '!') ADVANCE(77); + if (lookahead == '\\') ADVANCE(34); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(208); END_STATE(); case 7: ADVANCE_MAP( - '!', 110, - '%', 180, - '&', 161, - '(', 111, - ')', 113, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 126, - '/', 178, - ':', 114, - ';', 112, - '<', 187, - '=', 102, - '>', 125, - '?', 243, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 168, - '}', 108, + '!', 88, + '"', 169, + '#', 31, + '&', 127, + '\'', 170, + '(', 90, + ')', 92, + '*', 78, + '+', 139, + ',', 86, + '-', 143, + '.', 97, + '/', 146, + '0', 197, + ':', 93, + ';', 91, + '<', 152, + '=', 83, + '>', 161, + '?', 211, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 84, + '|', 137, + '}', 87, + '~', 166, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead)) ADVANCE(207); END_STATE(); case 8: ADVANCE_MAP( - '!', 110, - '%', 180, - '&', 161, - '(', 111, - ')', 113, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 126, - '/', 178, - ':', 114, - ';', 112, - '<', 187, - '=', 33, - '>', 125, - '?', 26, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 167, - '}', 108, + '!', 88, + '"', 169, + '#', 31, + '&', 127, + '\'', 170, + '(', 90, + ')', 92, + '*', 78, + '+', 139, + ',', 86, + '-', 143, + '.', 97, + '/', 146, + '0', 197, + '<', 152, + '?', 210, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 85, + '|', 132, + '~', 166, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 9: ADVANCE_MAP( - '!', 110, - '%', 180, - '&', 161, - '(', 111, - ')', 113, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 126, - '/', 178, - ':', 114, - ';', 112, - '<', 187, - '=', 33, - '>', 125, - '?', 26, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 167, - '}', 108, + '"', 169, + '#', 31, + '&', 127, + '\'', 170, + '(', 90, + '*', 78, + '+', 138, + ',', 86, + '-', 142, + '.', 20, + '/', 17, + '0', 197, + ';', 91, + '<', 152, + '>', 161, + '?', 210, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 85, + '|', 137, + '}', 87, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(98); - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(238); - END_STATE(); - case 11: ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 113, - '*', 99, - '+', 171, - ',', 107, - '-', 175, - '.', 25, - '/', 178, - '0', 227, - '<', 189, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 106, - '|', 164, - '~', 198, + '"', 169, + '#', 31, + '\'', 170, + '(', 90, + '*', 78, + '+', 138, + ',', 86, + '-', 142, + '.', 20, + '/', 17, + '0', 197, + ';', 91, + '<', 152, + '@', 209, + '[', 94, + '\\', 35, + '{', 84, + '|', 45, + '}', 87, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(169); + if (lookahead == '/') ADVANCE(17); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); END_STATE(); case 12: - ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 113, - '*', 99, - '+', 170, - ',', 107, - '-', 174, - '.', 127, - '/', 22, - '0', 227, - ':', 114, - ';', 112, - '<', 184, - '=', 104, - '>', 123, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 106, - '|', 169, - '}', 108, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(12); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + if (lookahead == '"') ADVANCE(169); + if (lookahead == '/') ADVANCE(171); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\n' || + lookahead == '\r') SKIP(11); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(174); + if (lookahead != 0) ADVANCE(176); END_STATE(); case 13: ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 113, - '*', 99, - '+', 170, - ',', 107, - '-', 174, - '.', 127, - '/', 22, - '0', 227, - ':', 114, - ';', 112, - '<', 184, - '=', 104, - '>', 123, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '{', 105, - '|', 169, - '}', 108, + '$', 37, + '+', 29, + '-', 30, + '/', 17, + ':', 93, + '?', 27, + '\\', 36, + '`', 190, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); END_STATE(); case 14: - ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 38, - '&', 159, - '\'', 130, - '(', 111, - ')', 113, - '+', 171, - ',', 107, - '-', 175, - '.', 127, - '/', 178, - '0', 227, - ':', 114, - ';', 112, - '<', 189, - '=', 104, - '>', 123, - '?', 241, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 105, - '|', 169, - '}', 108, - '~', 198, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == '$') ADVANCE(37); + if (lookahead == '+') ADVANCE(29); + if (lookahead == '-') ADVANCE(30); + if (lookahead == '/') ADVANCE(17); + if (lookahead == ':') ADVANCE(93); + if (lookahead == '?') ADVANCE(27); + if (lookahead == '`') ADVANCE(190); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(237); END_STATE(); case 15: - ADVANCE_MAP( - '"', 129, - '&', 159, - '\'', 130, - '(', 111, - ')', 113, - '*', 99, - ',', 107, - '.', 126, - '/', 22, - ':', 114, - ';', 112, - '<', 184, - '=', 104, - '>', 123, - '?', 241, - '[', 115, - '\\', 57, - ']', 116, - '{', 105, - '|', 169, - '}', 108, - ); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '/') ADVANCE(17); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(129); - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '/') ADVANCE(177); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\n' || + lookahead == '\r') SKIP(15); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180); + if (lookahead != 0) ADVANCE(182); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(129); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '\n' || - lookahead == '\r') SKIP(16); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(204); - if (lookahead != 0) ADVANCE(206); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '/') ADVANCE(189); END_STATE(); case 18: - ADVANCE_MAP( - '$', 59, - '+', 36, - '-', 37, - '/', 22, - ':', 114, - '?', 32, - '\\', 58, - '`', 220, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(188); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 19: - if (lookahead == '$') ADVANCE(59); - if (lookahead == '+') ADVANCE(36); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '/') ADVANCE(22); - if (lookahead == ':') ADVANCE(114); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '`') ADVANCE(220); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '*') ADVANCE(18); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 20: - if (lookahead == '\'') ADVANCE(130); - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); + if (lookahead == '.') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); case 21: - if (lookahead == '\'') ADVANCE(130); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '\n' || - lookahead == '\r') SKIP(20); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(210); - if (lookahead != 0) ADVANCE(212); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '?') ADVANCE(164); END_STATE(); case 22: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + if (lookahead == '.') ADVANCE(116); END_STATE(); case 23: - if (lookahead == '*') ADVANCE(23); - if (lookahead == '/') ADVANCE(218); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '/') ADVANCE(192); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 24: - if (lookahead == '*') ADVANCE(23); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '/') ADVANCE(17); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 25: - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (lookahead == ':') ADVANCE(215); END_STATE(); case 26: - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(196); + if (lookahead == ':') ADVANCE(214); END_STATE(); case 27: - if (lookahead == '.') ADVANCE(148); + if (lookahead == ':') ADVANCE(216); END_STATE(); case 28: - if (lookahead == '/') ADVANCE(222); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); + if (lookahead == '=') ADVANCE(156); END_STATE(); case 29: - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); + if (lookahead == '?') ADVANCE(25); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(245); + if (lookahead == '?') ADVANCE(26); END_STATE(); case 31: - if (lookahead == ':') ADVANCE(244); + if (lookahead == '\\') ADVANCE(34); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(208); END_STATE(); case 32: - if (lookahead == ':') ADVANCE(246); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(194); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(32); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(191); + if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'x') ADVANCE(63); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(187); + if (lookahead != 0) ADVANCE(183); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(121); + if (lookahead == 'u') ADVANCE(39); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(122); + if (lookahead == 'u') ADVANCE(40); END_STATE(); case 36: - if (lookahead == '?') ADVANCE(30); + if (lookahead == 'u') ADVANCE(41); + if (lookahead == 'x') ADVANCE(63); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(187); + if (lookahead != 0) ADVANCE(183); END_STATE(); case 37: - if (lookahead == '?') ADVANCE(31); + if (lookahead == '{') ADVANCE(191); END_STATE(); case 38: - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(238); + if (lookahead == '{') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(68); END_STATE(); case 39: - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(224); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + if (lookahead == '{') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); END_STATE(); case 40: - if (lookahead == 'a') ADVANCE(52); + if (lookahead == '{') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(53); + if (lookahead == '{') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == '}') ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == '}') ADVANCE(208); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == '}') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(49); + if (lookahead == '}') ADVANCE(218); END_STATE(); case 46: - if (lookahead == 'l') ADVANCE(40); + if (lookahead == '}') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 47: - if (lookahead == 'l') ADVANCE(41); + if (lookahead == '+' || + lookahead == '-') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); case 48: - if (lookahead == 'm') ADVANCE(50); + if (lookahead == '0' || + lookahead == '1') ADVANCE(200); END_STATE(); case 49: - if (lookahead == 'm') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(201); END_STATE(); case 50: - if (lookahead == 'p') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); END_STATE(); case 51: - if (lookahead == 'p') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(207); END_STATE(); case 55: - if (lookahead == 'u') ADVANCE(60); - if (lookahead == 'x') ADVANCE(84); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(217); - if (lookahead != 0) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(208); END_STATE(); case 56: - if (lookahead == 'u') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(183); END_STATE(); case 57: - if (lookahead == 'u') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(202); END_STATE(); case 58: - if (lookahead == 'u') ADVANCE(63); - if (lookahead == 'x') ADVANCE(84); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(217); - if (lookahead != 0) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 59: - if (lookahead == '{') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); END_STATE(); case 60: - if (lookahead == '{') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); END_STATE(); case 61: - if (lookahead == '{') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 62: - if (lookahead == '{') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 63: - if (lookahead == '{') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); case 64: - if (lookahead == '}') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 65: - if (lookahead == '}') ADVANCE(238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); END_STATE(); case 66: - if (lookahead == '}') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 67: - if (lookahead == '}') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 68: - if (lookahead == '+' || - lookahead == '-') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); END_STATE(); case 69: - if (lookahead == '0' || - lookahead == '1') ADVANCE(230); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 70: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); case 71: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(32); END_STATE(); case 72: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(194); END_STATE(); case 73: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (eof) ADVANCE(76); + ADVANCE_MAP( + '!', 89, + '"', 169, + '#', 6, + '$', 206, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 141, + ',', 86, + '-', 145, + '.', 97, + '/', 147, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 131, + '`', 190, + '{', 85, + '|', 134, + '}', 87, + '~', 166, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(73); + if (lookahead > '@') ADVANCE(207); END_STATE(); case 74: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (eof) ADVANCE(76); + ADVANCE_MAP( + '!', 89, + '"', 169, + '#', 31, + '%', 148, + '&', 129, + '\'', 170, + '(', 90, + ')', 92, + '*', 80, + '+', 139, + ',', 86, + '-', 143, + '.', 98, + '/', 146, + '0', 197, + ':', 93, + ';', 91, + '<', 154, + '=', 81, + '>', 163, + '?', 213, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 130, + '`', 190, + '{', 84, + '|', 136, + '}', 87, + '~', 166, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(74); + if (lookahead > '#') ADVANCE(207); END_STATE(); case 75: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); + if (eof) ADVANCE(76); + ADVANCE_MAP( + '!', 88, + '"', 169, + '#', 6, + '&', 127, + '\'', 170, + '(', 90, + ')', 92, + '*', 78, + '+', 139, + ',', 86, + '-', 143, + '.', 97, + '/', 146, + '0', 197, + ':', 93, + ';', 91, + '<', 152, + '=', 83, + '>', 161, + '?', 210, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 84, + '|', 137, + '}', 87, + '~', 166, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(75); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(207); END_STATE(); case 76: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(238); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 77: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); + ACCEPT_TOKEN(sym_hash_bang_line); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(77); END_STATE(); case 78: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 79: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '=') ADVANCE(103); END_STATE(); case 80: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(214); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(150); END_STATE(); case 81: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(156); END_STATE(); case 82: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(156); + if (lookahead == '>') ADVANCE(99); END_STATE(); case 83: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(99); END_STATE(); case 84: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 85: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(217); END_STATE(); case 86: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 87: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(76); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 88: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(75); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 89: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(158); END_STATE(); case 90: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 91: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 92: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 93: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(224); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 94: - if (eof) ADVANCE(97); - ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 10, - '$', 236, - '%', 181, - '&', 160, - '\'', 130, - '(', 111, - ')', 113, - '*', 100, - '+', 173, - ',', 107, - '-', 177, - '.', 127, - '/', 179, - '0', 227, - ':', 114, - ';', 112, - '<', 186, - '=', 103, - '>', 124, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 163, - '`', 220, - '{', 106, - '|', 166, - '}', 108, - '~', 198, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); - if (lookahead > '@') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 95: - if (eof) ADVANCE(97); - ADVANCE_MAP( - '!', 110, - '"', 129, - '#', 38, - '%', 180, - '&', 161, - '\'', 130, - '(', 111, - ')', 113, - '*', 101, - '+', 171, - ',', 107, - '-', 175, - '.', 128, - '/', 178, - '0', 227, - ':', 114, - ';', 112, - '<', 188, - '=', 102, - '>', 125, - '?', 26, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 162, - '`', 220, - '{', 105, - '|', 167, - '}', 108, - '~', 198, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(95); - if (lookahead > '#') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 96: - if (eof) ADVANCE(97); - ADVANCE_MAP( - '!', 109, - '"', 129, - '#', 10, - '&', 159, - '\'', 130, - '(', 111, - ')', 113, - '*', 99, - '+', 171, - ',', 107, - '-', 175, - '.', 127, - '/', 178, - '0', 227, - ':', 114, - ';', 112, - '<', 189, - '=', 104, - '>', 123, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 105, - '|', 169, - '}', 108, - '~', 198, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(96); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(237); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 97: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); case 98: - ACCEPT_TOKEN(sym_hash_bang_line); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '=') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(191); - if (lookahead == '>') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(247); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 117: - ACCEPT_TOKEN(sym__glimmer_template_content); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 118: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 119: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '<') ADVANCE(120); - if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(119); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(117); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 120: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(54); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 121: - ACCEPT_TOKEN(sym_glimmer_opening_tag); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(109); + if (lookahead == '>') ADVANCE(124); END_STATE(); case 122: - ACCEPT_TOKEN(sym_glimmer_closing_tag); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(123); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(118); + if (lookahead == '=') ADVANCE(107); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(117); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(106); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '|') ADVANCE(120); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '|') ADVANCE(120); + if (lookahead == '}') ADVANCE(218); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(119); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(119); + if (lookahead == '}') ADVANCE(218); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '}') ADVANCE(218); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(167); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(167); + if (lookahead == '=') ADVANCE(101); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(167); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '?') ADVANCE(25); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(168); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(168); + if (lookahead == '=') ADVANCE(102); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(168); + if (lookahead == '=') ADVANCE(102); + if (lookahead == '?') ADVANCE(26); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '/') ADVANCE(189); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '=') ADVANCE(104); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(141); - if (lookahead == '>') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(126); + if (lookahead == '=') ADVANCE(155); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(155); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(142); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(157); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(159); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(150); - if (lookahead == '=') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(160); + if (lookahead == '>') ADVANCE(121); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(160); + if (lookahead == '>') ADVANCE(122); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(140); - if (lookahead == '|') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(140); - if (lookahead == '|') ADVANCE(152); - if (lookahead == '}') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(151); - if (lookahead == '}') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '/') ADVANCE(175); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(176); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); - if (lookahead == '=') ADVANCE(133); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '/') ADVANCE(176); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(173); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); - if (lookahead == '=') ADVANCE(133); - if (lookahead == '?') ADVANCE(30); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(172); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(173); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(171); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(174); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(176); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(176); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(175); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(134); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(176); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '?') ADVANCE(31); + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '/') ADVANCE(181); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(182); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '/') ADVANCE(182); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); - if (lookahead == '=') ADVANCE(136); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(137); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(144); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(158); - if (lookahead == '=') ADVANCE(190); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(158); - if (lookahead == '=') ADVANCE(190); - if (lookahead == 't') ADVANCE(42); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') ADVANCE(190); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') ADVANCE(190); - if (lookahead == 't') ADVANCE(42); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(42); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(192); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(194); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(147); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 201: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(203); - if (lookahead == '/') ADVANCE(205); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != '\\') ADVANCE(206); - END_STATE(); - case 202: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(202); - if (lookahead == '/') ADVANCE(206); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != '\\') ADVANCE(203); - END_STATE(); - case 203: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(202); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != '\\') ADVANCE(203); - END_STATE(); - case 204: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(201); - if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n' && - lookahead != '\r') ADVANCE(204); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != '"' && - lookahead != '\\') ADVANCE(206); - END_STATE(); - case 205: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(206); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != '\\') ADVANCE(205); - END_STATE(); - case 206: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != '\\') ADVANCE(206); - END_STATE(); - case 207: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '/') ADVANCE(211); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(212); - END_STATE(); - case 208: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '/') ADVANCE(212); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(209); - END_STATE(); - case 209: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(208); + if (lookahead == '*') ADVANCE(178); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '\\') ADVANCE(179); END_STATE(); - case 210: + case 180: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '/') ADVANCE(177); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(210); + lookahead != '\r') ADVANCE(180); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(182); END_STATE(); - case 211: + case 181: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(212); + lookahead == 0x2029) ADVANCE(182); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(211); + lookahead != '\\') ADVANCE(181); END_STATE(); - case 212: + case 182: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(182); END_STATE(); - case 213: + case 183: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 214: + case 184: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(57); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 215: + case 185: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(213); + lookahead == 0x2029) ADVANCE(183); END_STATE(); - case 216: + case 186: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(183); END_STATE(); - case 217: + case 187: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(216); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); END_STATE(); - case 218: + case 188: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 219: + case 189: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(219); + lookahead != 0x2029) ADVANCE(189); END_STATE(); - case 220: + case 190: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 221: + case 191: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 222: + case 192: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 223: + case 193: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(29); - if (lookahead == '/') ADVANCE(22); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(223); - if (lookahead != 0) ADVANCE(224); + if (lookahead == '\n') SKIP(24); + if (lookahead == '/') ADVANCE(17); + if (lookahead == '[') ADVANCE(32); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(193); + if (lookahead != 0) ADVANCE(194); END_STATE(); - case 224: + case 194: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); + if (lookahead == '[') ADVANCE(32); + if (lookahead == '\\') ADVANCE(72); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(224); + lookahead != '/') ADVANCE(194); END_STATE(); - case 225: + case 195: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(57); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 226: + case 196: ACCEPT_TOKEN(sym_number); END_STATE(); - case 227: + case 197: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 235, - '0', 229, - '_', 73, - 'n', 226, - 'B', 69, - 'b', 69, - 'E', 68, - 'e', 68, - 'O', 70, - 'o', 70, - 'X', 78, - 'x', 78, + '.', 205, + '0', 199, + '_', 52, + 'n', 196, + 'B', 48, + 'b', 48, + 'E', 47, + 'e', 47, + 'O', 49, + 'o', 49, + 'X', 57, + 'x', 57, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); END_STATE(); - case 228: + case 198: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '_') ADVANCE(71); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '.') ADVANCE(205); + if (lookahead == '_') ADVANCE(50); + if (lookahead == 'n') ADVANCE(196); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); END_STATE(); - case 229: + case 199: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(73); - if (lookahead == 'n') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == '_') ADVANCE(52); + if (lookahead == 'n') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); - case 230: + case 200: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(69); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '_') ADVANCE(48); + if (lookahead == 'n') ADVANCE(196); if (lookahead == '0' || - lookahead == '1') ADVANCE(230); + lookahead == '1') ADVANCE(200); END_STATE(); - case 231: + case 201: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(70); - if (lookahead == 'n') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(231); + if (lookahead == '_') ADVANCE(49); + if (lookahead == 'n') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(201); END_STATE(); - case 232: + case 202: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(78); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '_') ADVANCE(57); + if (lookahead == 'n') ADVANCE(196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(202); END_STATE(); - case 233: + case 203: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(72); + if (lookahead == '_') ADVANCE(51); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); - case 234: + case 204: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (lookahead == '_') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); - case 235: + case 205: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); - case 236: + case 206: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == '{') ADVANCE(221); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (lookahead == '{') ADVANCE(191); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 237: + case 207: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(57); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 238: + case 208: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(238); + if (lookahead == '\\') ADVANCE(34); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(208); END_STATE(); - case 239: + case 209: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 240: + case 210: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 241: + case 211: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); + if (lookahead == '.') ADVANCE(100); END_STATE(); - case 242: + case 212: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(197); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '?') ADVANCE(165); END_STATE(); - case 243: + case 213: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(196); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '?') ADVANCE(164); END_STATE(); - case 244: + case 214: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); - case 245: + case 215: ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); - case 246: + case 216: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 247: + case 217: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 248: + case 218: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -13233,112 +12924,112 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 96, .external_lex_state = 2}, - [2] = {.lex_state = 4, .external_lex_state = 3}, - [3] = {.lex_state = 4, .external_lex_state = 3}, - [4] = {.lex_state = 96, .external_lex_state = 2}, - [5] = {.lex_state = 96, .external_lex_state = 2}, - [6] = {.lex_state = 96, .external_lex_state = 2}, - [7] = {.lex_state = 96, .external_lex_state = 2}, - [8] = {.lex_state = 96, .external_lex_state = 2}, - [9] = {.lex_state = 96, .external_lex_state = 2}, - [10] = {.lex_state = 96, .external_lex_state = 2}, - [11] = {.lex_state = 96, .external_lex_state = 2}, - [12] = {.lex_state = 96, .external_lex_state = 2}, - [13] = {.lex_state = 96, .external_lex_state = 2}, - [14] = {.lex_state = 96, .external_lex_state = 2}, - [15] = {.lex_state = 96, .external_lex_state = 2}, - [16] = {.lex_state = 96, .external_lex_state = 2}, - [17] = {.lex_state = 96, .external_lex_state = 2}, - [18] = {.lex_state = 96, .external_lex_state = 2}, - [19] = {.lex_state = 96, .external_lex_state = 2}, - [20] = {.lex_state = 96, .external_lex_state = 2}, - [21] = {.lex_state = 96, .external_lex_state = 2}, - [22] = {.lex_state = 96, .external_lex_state = 2}, - [23] = {.lex_state = 96, .external_lex_state = 2}, - [24] = {.lex_state = 96, .external_lex_state = 2}, - [25] = {.lex_state = 96, .external_lex_state = 2}, - [26] = {.lex_state = 96, .external_lex_state = 2}, - [27] = {.lex_state = 96, .external_lex_state = 2}, - [28] = {.lex_state = 96, .external_lex_state = 2}, - [29] = {.lex_state = 96, .external_lex_state = 2}, - [30] = {.lex_state = 96, .external_lex_state = 2}, - [31] = {.lex_state = 96, .external_lex_state = 2}, - [32] = {.lex_state = 96, .external_lex_state = 2}, - [33] = {.lex_state = 96, .external_lex_state = 2}, - [34] = {.lex_state = 96, .external_lex_state = 2}, - [35] = {.lex_state = 96, .external_lex_state = 2}, - [36] = {.lex_state = 96, .external_lex_state = 2}, - [37] = {.lex_state = 96, .external_lex_state = 2}, - [38] = {.lex_state = 11, .external_lex_state = 2}, - [39] = {.lex_state = 96, .external_lex_state = 2}, - [40] = {.lex_state = 96, .external_lex_state = 2}, - [41] = {.lex_state = 96, .external_lex_state = 2}, - [42] = {.lex_state = 96, .external_lex_state = 2}, - [43] = {.lex_state = 96, .external_lex_state = 2}, - [44] = {.lex_state = 96, .external_lex_state = 2}, - [45] = {.lex_state = 96, .external_lex_state = 2}, - [46] = {.lex_state = 96, .external_lex_state = 2}, - [47] = {.lex_state = 96, .external_lex_state = 2}, - [48] = {.lex_state = 96, .external_lex_state = 2}, - [49] = {.lex_state = 96, .external_lex_state = 2}, - [50] = {.lex_state = 96, .external_lex_state = 2}, - [51] = {.lex_state = 96, .external_lex_state = 2}, - [52] = {.lex_state = 96, .external_lex_state = 2}, - [53] = {.lex_state = 96, .external_lex_state = 2}, - [54] = {.lex_state = 96, .external_lex_state = 2}, - [55] = {.lex_state = 96, .external_lex_state = 2}, - [56] = {.lex_state = 11, .external_lex_state = 2}, - [57] = {.lex_state = 96, .external_lex_state = 2}, - [58] = {.lex_state = 96, .external_lex_state = 2}, - [59] = {.lex_state = 96, .external_lex_state = 2}, - [60] = {.lex_state = 11, .external_lex_state = 2}, - [61] = {.lex_state = 96, .external_lex_state = 2}, - [62] = {.lex_state = 96, .external_lex_state = 2}, - [63] = {.lex_state = 11, .external_lex_state = 2}, - [64] = {.lex_state = 11, .external_lex_state = 2}, - [65] = {.lex_state = 96, .external_lex_state = 2}, - [66] = {.lex_state = 11, .external_lex_state = 2}, - [67] = {.lex_state = 11, .external_lex_state = 2}, - [68] = {.lex_state = 11, .external_lex_state = 2}, - [69] = {.lex_state = 11, .external_lex_state = 2}, - [70] = {.lex_state = 96, .external_lex_state = 2}, - [71] = {.lex_state = 11, .external_lex_state = 2}, + [1] = {.lex_state = 75, .external_lex_state = 2}, + [2] = {.lex_state = 2, .external_lex_state = 3}, + [3] = {.lex_state = 2, .external_lex_state = 3}, + [4] = {.lex_state = 75, .external_lex_state = 2}, + [5] = {.lex_state = 75, .external_lex_state = 2}, + [6] = {.lex_state = 75, .external_lex_state = 2}, + [7] = {.lex_state = 75, .external_lex_state = 2}, + [8] = {.lex_state = 75, .external_lex_state = 2}, + [9] = {.lex_state = 75, .external_lex_state = 2}, + [10] = {.lex_state = 75, .external_lex_state = 2}, + [11] = {.lex_state = 75, .external_lex_state = 2}, + [12] = {.lex_state = 75, .external_lex_state = 2}, + [13] = {.lex_state = 75, .external_lex_state = 2}, + [14] = {.lex_state = 75, .external_lex_state = 2}, + [15] = {.lex_state = 75, .external_lex_state = 2}, + [16] = {.lex_state = 75, .external_lex_state = 2}, + [17] = {.lex_state = 75, .external_lex_state = 2}, + [18] = {.lex_state = 75, .external_lex_state = 2}, + [19] = {.lex_state = 75, .external_lex_state = 2}, + [20] = {.lex_state = 75, .external_lex_state = 2}, + [21] = {.lex_state = 75, .external_lex_state = 2}, + [22] = {.lex_state = 75, .external_lex_state = 2}, + [23] = {.lex_state = 75, .external_lex_state = 2}, + [24] = {.lex_state = 75, .external_lex_state = 2}, + [25] = {.lex_state = 75, .external_lex_state = 2}, + [26] = {.lex_state = 75, .external_lex_state = 2}, + [27] = {.lex_state = 75, .external_lex_state = 2}, + [28] = {.lex_state = 75, .external_lex_state = 2}, + [29] = {.lex_state = 75, .external_lex_state = 2}, + [30] = {.lex_state = 75, .external_lex_state = 2}, + [31] = {.lex_state = 8, .external_lex_state = 2}, + [32] = {.lex_state = 75, .external_lex_state = 2}, + [33] = {.lex_state = 75, .external_lex_state = 2}, + [34] = {.lex_state = 75, .external_lex_state = 2}, + [35] = {.lex_state = 75, .external_lex_state = 2}, + [36] = {.lex_state = 75, .external_lex_state = 2}, + [37] = {.lex_state = 75, .external_lex_state = 2}, + [38] = {.lex_state = 8, .external_lex_state = 2}, + [39] = {.lex_state = 75, .external_lex_state = 2}, + [40] = {.lex_state = 8, .external_lex_state = 2}, + [41] = {.lex_state = 75, .external_lex_state = 2}, + [42] = {.lex_state = 75, .external_lex_state = 2}, + [43] = {.lex_state = 75, .external_lex_state = 2}, + [44] = {.lex_state = 75, .external_lex_state = 2}, + [45] = {.lex_state = 75, .external_lex_state = 2}, + [46] = {.lex_state = 75, .external_lex_state = 2}, + [47] = {.lex_state = 75, .external_lex_state = 2}, + [48] = {.lex_state = 75, .external_lex_state = 2}, + [49] = {.lex_state = 75, .external_lex_state = 2}, + [50] = {.lex_state = 75, .external_lex_state = 2}, + [51] = {.lex_state = 75, .external_lex_state = 2}, + [52] = {.lex_state = 75, .external_lex_state = 2}, + [53] = {.lex_state = 8, .external_lex_state = 2}, + [54] = {.lex_state = 75, .external_lex_state = 2}, + [55] = {.lex_state = 75, .external_lex_state = 2}, + [56] = {.lex_state = 8, .external_lex_state = 2}, + [57] = {.lex_state = 75, .external_lex_state = 2}, + [58] = {.lex_state = 75, .external_lex_state = 2}, + [59] = {.lex_state = 75, .external_lex_state = 2}, + [60] = {.lex_state = 75, .external_lex_state = 2}, + [61] = {.lex_state = 75, .external_lex_state = 2}, + [62] = {.lex_state = 75, .external_lex_state = 2}, + [63] = {.lex_state = 8, .external_lex_state = 2}, + [64] = {.lex_state = 75, .external_lex_state = 2}, + [65] = {.lex_state = 75, .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 = 75, .external_lex_state = 2}, + [71] = {.lex_state = 75, .external_lex_state = 2}, [72] = {.lex_state = 3, .external_lex_state = 4}, [73] = {.lex_state = 3, .external_lex_state = 4}, [74] = {.lex_state = 3, .external_lex_state = 4}, [75] = {.lex_state = 3, .external_lex_state = 3}, - [76] = {.lex_state = 3, .external_lex_state = 3}, - [77] = {.lex_state = 11, .external_lex_state = 2}, + [76] = {.lex_state = 8, .external_lex_state = 2}, + [77] = {.lex_state = 8, .external_lex_state = 2}, [78] = {.lex_state = 3, .external_lex_state = 3}, [79] = {.lex_state = 3, .external_lex_state = 3}, [80] = {.lex_state = 3, .external_lex_state = 3}, - [81] = {.lex_state = 3, .external_lex_state = 3}, - [82] = {.lex_state = 11, .external_lex_state = 2}, + [81] = {.lex_state = 8, .external_lex_state = 2}, + [82] = {.lex_state = 3, .external_lex_state = 3}, [83] = {.lex_state = 3, .external_lex_state = 3}, [84] = {.lex_state = 3, .external_lex_state = 3}, - [85] = {.lex_state = 11, .external_lex_state = 2}, - [86] = {.lex_state = 11, .external_lex_state = 2}, + [85] = {.lex_state = 3, .external_lex_state = 3}, + [86] = {.lex_state = 8, .external_lex_state = 2}, [87] = {.lex_state = 3, .external_lex_state = 3}, - [88] = {.lex_state = 11, .external_lex_state = 2}, - [89] = {.lex_state = 3, .external_lex_state = 3}, - [90] = {.lex_state = 11, .external_lex_state = 2}, - [91] = {.lex_state = 11, .external_lex_state = 2}, - [92] = {.lex_state = 11, .external_lex_state = 2}, + [88] = {.lex_state = 3, .external_lex_state = 3}, + [89] = {.lex_state = 8, .external_lex_state = 2}, + [90] = {.lex_state = 8, .external_lex_state = 2}, + [91] = {.lex_state = 8, .external_lex_state = 2}, + [92] = {.lex_state = 8, .external_lex_state = 2}, [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 = 4}, - [97] = {.lex_state = 3, .external_lex_state = 3}, + [96] = {.lex_state = 3, .external_lex_state = 3}, + [97] = {.lex_state = 3, .external_lex_state = 4}, [98] = {.lex_state = 3, .external_lex_state = 3}, [99] = {.lex_state = 3, .external_lex_state = 4}, [100] = {.lex_state = 3, .external_lex_state = 4}, - [101] = {.lex_state = 3, .external_lex_state = 4}, + [101] = {.lex_state = 3, .external_lex_state = 3}, [102] = {.lex_state = 3, .external_lex_state = 4}, [103] = {.lex_state = 3, .external_lex_state = 4}, [104] = {.lex_state = 3, .external_lex_state = 4}, [105] = {.lex_state = 3, .external_lex_state = 4}, - [106] = {.lex_state = 3, .external_lex_state = 3}, + [106] = {.lex_state = 3, .external_lex_state = 4}, [107] = {.lex_state = 3, .external_lex_state = 3}, [108] = {.lex_state = 3, .external_lex_state = 3}, [109] = {.lex_state = 3, .external_lex_state = 3}, @@ -13348,7 +13039,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 3, .external_lex_state = 3}, [114] = {.lex_state = 3, .external_lex_state = 3}, [115] = {.lex_state = 3, .external_lex_state = 3}, - [116] = {.lex_state = 3, .external_lex_state = 3}, + [116] = {.lex_state = 3, .external_lex_state = 4}, [117] = {.lex_state = 3, .external_lex_state = 3}, [118] = {.lex_state = 3, .external_lex_state = 4}, [119] = {.lex_state = 3, .external_lex_state = 3}, @@ -13357,7 +13048,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 3, .external_lex_state = 3}, [123] = {.lex_state = 3, .external_lex_state = 3}, [124] = {.lex_state = 3, .external_lex_state = 3}, - [125] = {.lex_state = 3, .external_lex_state = 4}, + [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}, @@ -13375,5745 +13066,5733 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [143] = {.lex_state = 8, .external_lex_state = 2}, [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 = 11, .external_lex_state = 2}, + [147] = {.lex_state = 3, .external_lex_state = 3}, [148] = {.lex_state = 3, .external_lex_state = 3}, [149] = {.lex_state = 3, .external_lex_state = 3}, - [150] = {.lex_state = 11, .external_lex_state = 2}, - [151] = {.lex_state = 11, .external_lex_state = 2}, - [152] = {.lex_state = 11, .external_lex_state = 2}, - [153] = {.lex_state = 11, .external_lex_state = 2}, - [154] = {.lex_state = 11, .external_lex_state = 2}, - [155] = {.lex_state = 11, .external_lex_state = 2}, - [156] = {.lex_state = 11, .external_lex_state = 2}, - [157] = {.lex_state = 11, .external_lex_state = 2}, - [158] = {.lex_state = 11, .external_lex_state = 2}, - [159] = {.lex_state = 11, .external_lex_state = 2}, - [160] = {.lex_state = 11, .external_lex_state = 2}, - [161] = {.lex_state = 11, .external_lex_state = 2}, - [162] = {.lex_state = 11, .external_lex_state = 2}, - [163] = {.lex_state = 95, .external_lex_state = 3}, - [164] = {.lex_state = 95, .external_lex_state = 4}, - [165] = {.lex_state = 95, .external_lex_state = 4}, - [166] = {.lex_state = 95, .external_lex_state = 3}, - [167] = {.lex_state = 95, .external_lex_state = 4}, - [168] = {.lex_state = 95, .external_lex_state = 3}, - [169] = {.lex_state = 95, .external_lex_state = 3}, - [170] = {.lex_state = 95, .external_lex_state = 3}, - [171] = {.lex_state = 95, .external_lex_state = 3}, - [172] = {.lex_state = 95, .external_lex_state = 3}, - [173] = {.lex_state = 5, .external_lex_state = 3}, - [174] = {.lex_state = 96, .external_lex_state = 2}, - [175] = {.lex_state = 96, .external_lex_state = 2}, - [176] = {.lex_state = 96, .external_lex_state = 2}, - [177] = {.lex_state = 5, .external_lex_state = 4}, - [178] = {.lex_state = 96, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 4}, - [180] = {.lex_state = 96, .external_lex_state = 2}, - [181] = {.lex_state = 96, .external_lex_state = 2}, - [182] = {.lex_state = 5, .external_lex_state = 3}, - [183] = {.lex_state = 5, .external_lex_state = 3}, - [184] = {.lex_state = 5, .external_lex_state = 3}, - [185] = {.lex_state = 5, .external_lex_state = 4}, - [186] = {.lex_state = 5, .external_lex_state = 3}, - [187] = {.lex_state = 5, .external_lex_state = 3}, - [188] = {.lex_state = 5, .external_lex_state = 3}, - [189] = {.lex_state = 5, .external_lex_state = 3}, - [190] = {.lex_state = 5, .external_lex_state = 3}, - [191] = {.lex_state = 5, .external_lex_state = 3}, - [192] = {.lex_state = 5, .external_lex_state = 3}, - [193] = {.lex_state = 5, .external_lex_state = 3}, - [194] = {.lex_state = 96, .external_lex_state = 2}, - [195] = {.lex_state = 96, .external_lex_state = 2}, - [196] = {.lex_state = 96, .external_lex_state = 2}, - [197] = {.lex_state = 96, .external_lex_state = 2}, - [198] = {.lex_state = 96, .external_lex_state = 2}, - [199] = {.lex_state = 96, .external_lex_state = 2}, - [200] = {.lex_state = 96, .external_lex_state = 2}, - [201] = {.lex_state = 96, .external_lex_state = 2}, - [202] = {.lex_state = 96, .external_lex_state = 2}, - [203] = {.lex_state = 96, .external_lex_state = 2}, - [204] = {.lex_state = 96, .external_lex_state = 2}, - [205] = {.lex_state = 96, .external_lex_state = 2}, - [206] = {.lex_state = 96, .external_lex_state = 2}, - [207] = {.lex_state = 95, .external_lex_state = 4}, - [208] = {.lex_state = 96, .external_lex_state = 2}, - [209] = {.lex_state = 95, .external_lex_state = 4}, - [210] = {.lex_state = 96, .external_lex_state = 2}, - [211] = {.lex_state = 95, .external_lex_state = 4}, - [212] = {.lex_state = 96, .external_lex_state = 2}, - [213] = {.lex_state = 95, .external_lex_state = 4}, - [214] = {.lex_state = 96, .external_lex_state = 2}, - [215] = {.lex_state = 96, .external_lex_state = 2}, - [216] = {.lex_state = 96, .external_lex_state = 2}, - [217] = {.lex_state = 95, .external_lex_state = 4}, - [218] = {.lex_state = 95, .external_lex_state = 4}, - [219] = {.lex_state = 95, .external_lex_state = 4}, - [220] = {.lex_state = 95, .external_lex_state = 4}, - [221] = {.lex_state = 95, .external_lex_state = 4}, - [222] = {.lex_state = 96, .external_lex_state = 2}, - [223] = {.lex_state = 95, .external_lex_state = 4}, - [224] = {.lex_state = 95, .external_lex_state = 4}, - [225] = {.lex_state = 95, .external_lex_state = 4}, - [226] = {.lex_state = 95, .external_lex_state = 4}, - [227] = {.lex_state = 95, .external_lex_state = 4}, - [228] = {.lex_state = 95, .external_lex_state = 4}, - [229] = {.lex_state = 95, .external_lex_state = 4}, - [230] = {.lex_state = 95, .external_lex_state = 4}, - [231] = {.lex_state = 96, .external_lex_state = 5}, - [232] = {.lex_state = 95, .external_lex_state = 4}, - [233] = {.lex_state = 95, .external_lex_state = 4}, - [234] = {.lex_state = 95, .external_lex_state = 4}, - [235] = {.lex_state = 95, .external_lex_state = 4}, - [236] = {.lex_state = 95, .external_lex_state = 4}, - [237] = {.lex_state = 95, .external_lex_state = 4}, - [238] = {.lex_state = 95, .external_lex_state = 4}, - [239] = {.lex_state = 95, .external_lex_state = 4}, - [240] = {.lex_state = 95, .external_lex_state = 4}, - [241] = {.lex_state = 95, .external_lex_state = 4}, - [242] = {.lex_state = 96, .external_lex_state = 2}, - [243] = {.lex_state = 95, .external_lex_state = 4}, - [244] = {.lex_state = 95, .external_lex_state = 4}, - [245] = {.lex_state = 96, .external_lex_state = 2}, - [246] = {.lex_state = 96, .external_lex_state = 2}, - [247] = {.lex_state = 96, .external_lex_state = 2}, - [248] = {.lex_state = 96, .external_lex_state = 2}, - [249] = {.lex_state = 96, .external_lex_state = 2}, - [250] = {.lex_state = 96, .external_lex_state = 2}, - [251] = {.lex_state = 96, .external_lex_state = 2}, - [252] = {.lex_state = 96, .external_lex_state = 2}, - [253] = {.lex_state = 96, .external_lex_state = 2}, - [254] = {.lex_state = 96, .external_lex_state = 2}, - [255] = {.lex_state = 96, .external_lex_state = 2}, - [256] = {.lex_state = 96, .external_lex_state = 2}, - [257] = {.lex_state = 96, .external_lex_state = 2}, - [258] = {.lex_state = 96, .external_lex_state = 2}, - [259] = {.lex_state = 96, .external_lex_state = 2}, - [260] = {.lex_state = 3, .external_lex_state = 3}, - [261] = {.lex_state = 96, .external_lex_state = 2}, - [262] = {.lex_state = 3, .external_lex_state = 3}, - [263] = {.lex_state = 96, .external_lex_state = 2}, - [264] = {.lex_state = 96, .external_lex_state = 2}, - [265] = {.lex_state = 96, .external_lex_state = 2}, - [266] = {.lex_state = 96, .external_lex_state = 2}, - [267] = {.lex_state = 96, .external_lex_state = 2}, - [268] = {.lex_state = 3, .external_lex_state = 3}, - [269] = {.lex_state = 3, .external_lex_state = 3}, - [270] = {.lex_state = 96, .external_lex_state = 2}, - [271] = {.lex_state = 96, .external_lex_state = 2}, - [272] = {.lex_state = 96, .external_lex_state = 2}, - [273] = {.lex_state = 96, .external_lex_state = 2}, - [274] = {.lex_state = 96, .external_lex_state = 2}, - [275] = {.lex_state = 96, .external_lex_state = 2}, - [276] = {.lex_state = 96, .external_lex_state = 2}, - [277] = {.lex_state = 96, .external_lex_state = 2}, - [278] = {.lex_state = 96, .external_lex_state = 2}, - [279] = {.lex_state = 96, .external_lex_state = 2}, - [280] = {.lex_state = 96, .external_lex_state = 2}, - [281] = {.lex_state = 96, .external_lex_state = 2}, - [282] = {.lex_state = 96, .external_lex_state = 2}, - [283] = {.lex_state = 96, .external_lex_state = 2}, - [284] = {.lex_state = 96, .external_lex_state = 2}, - [285] = {.lex_state = 96, .external_lex_state = 2}, - [286] = {.lex_state = 96, .external_lex_state = 2}, - [287] = {.lex_state = 96, .external_lex_state = 2}, - [288] = {.lex_state = 96, .external_lex_state = 2}, - [289] = {.lex_state = 96, .external_lex_state = 2}, - [290] = {.lex_state = 96, .external_lex_state = 2}, - [291] = {.lex_state = 96, .external_lex_state = 2}, - [292] = {.lex_state = 96, .external_lex_state = 2}, - [293] = {.lex_state = 96, .external_lex_state = 2}, - [294] = {.lex_state = 96, .external_lex_state = 2}, - [295] = {.lex_state = 96, .external_lex_state = 2}, - [296] = {.lex_state = 96, .external_lex_state = 2}, - [297] = {.lex_state = 96, .external_lex_state = 5}, - [298] = {.lex_state = 96, .external_lex_state = 2}, - [299] = {.lex_state = 96, .external_lex_state = 2}, - [300] = {.lex_state = 96, .external_lex_state = 2}, - [301] = {.lex_state = 96, .external_lex_state = 2}, - [302] = {.lex_state = 96, .external_lex_state = 2}, - [303] = {.lex_state = 96, .external_lex_state = 2}, - [304] = {.lex_state = 96, .external_lex_state = 2}, - [305] = {.lex_state = 96, .external_lex_state = 2}, - [306] = {.lex_state = 96, .external_lex_state = 2}, - [307] = {.lex_state = 96, .external_lex_state = 2}, - [308] = {.lex_state = 96, .external_lex_state = 2}, - [309] = {.lex_state = 96, .external_lex_state = 2}, - [310] = {.lex_state = 96, .external_lex_state = 2}, - [311] = {.lex_state = 96, .external_lex_state = 2}, - [312] = {.lex_state = 96, .external_lex_state = 2}, - [313] = {.lex_state = 96, .external_lex_state = 2}, - [314] = {.lex_state = 96, .external_lex_state = 2}, - [315] = {.lex_state = 96, .external_lex_state = 2}, - [316] = {.lex_state = 96, .external_lex_state = 2}, - [317] = {.lex_state = 96, .external_lex_state = 2}, - [318] = {.lex_state = 96, .external_lex_state = 2}, - [319] = {.lex_state = 96, .external_lex_state = 2}, - [320] = {.lex_state = 96, .external_lex_state = 2}, - [321] = {.lex_state = 96, .external_lex_state = 2}, - [322] = {.lex_state = 96, .external_lex_state = 2}, - [323] = {.lex_state = 96, .external_lex_state = 2}, - [324] = {.lex_state = 96, .external_lex_state = 2}, - [325] = {.lex_state = 96, .external_lex_state = 2}, - [326] = {.lex_state = 96, .external_lex_state = 2}, - [327] = {.lex_state = 96, .external_lex_state = 2}, - [328] = {.lex_state = 96, .external_lex_state = 2}, - [329] = {.lex_state = 96, .external_lex_state = 2}, - [330] = {.lex_state = 96, .external_lex_state = 2}, - [331] = {.lex_state = 96, .external_lex_state = 2}, - [332] = {.lex_state = 96, .external_lex_state = 2}, - [333] = {.lex_state = 96, .external_lex_state = 2}, - [334] = {.lex_state = 96, .external_lex_state = 2}, - [335] = {.lex_state = 96, .external_lex_state = 2}, - [336] = {.lex_state = 96, .external_lex_state = 2}, - [337] = {.lex_state = 96, .external_lex_state = 2}, - [338] = {.lex_state = 96, .external_lex_state = 2}, - [339] = {.lex_state = 96, .external_lex_state = 2}, - [340] = {.lex_state = 96, .external_lex_state = 2}, - [341] = {.lex_state = 96, .external_lex_state = 2}, - [342] = {.lex_state = 96, .external_lex_state = 2}, - [343] = {.lex_state = 96, .external_lex_state = 2}, - [344] = {.lex_state = 96, .external_lex_state = 2}, - [345] = {.lex_state = 96, .external_lex_state = 2}, - [346] = {.lex_state = 96, .external_lex_state = 2}, - [347] = {.lex_state = 96, .external_lex_state = 2}, - [348] = {.lex_state = 96, .external_lex_state = 2}, - [349] = {.lex_state = 96, .external_lex_state = 2}, - [350] = {.lex_state = 96, .external_lex_state = 2}, - [351] = {.lex_state = 96, .external_lex_state = 2}, - [352] = {.lex_state = 96, .external_lex_state = 2}, - [353] = {.lex_state = 96, .external_lex_state = 2}, - [354] = {.lex_state = 96, .external_lex_state = 2}, - [355] = {.lex_state = 96, .external_lex_state = 2}, - [356] = {.lex_state = 96, .external_lex_state = 2}, - [357] = {.lex_state = 96, .external_lex_state = 2}, - [358] = {.lex_state = 96, .external_lex_state = 2}, - [359] = {.lex_state = 96, .external_lex_state = 2}, - [360] = {.lex_state = 96, .external_lex_state = 2}, - [361] = {.lex_state = 96, .external_lex_state = 2}, - [362] = {.lex_state = 96, .external_lex_state = 2}, - [363] = {.lex_state = 96, .external_lex_state = 2}, - [364] = {.lex_state = 96, .external_lex_state = 2}, - [365] = {.lex_state = 96, .external_lex_state = 2}, - [366] = {.lex_state = 96, .external_lex_state = 2}, - [367] = {.lex_state = 96, .external_lex_state = 2}, - [368] = {.lex_state = 96, .external_lex_state = 2}, - [369] = {.lex_state = 96, .external_lex_state = 2}, - [370] = {.lex_state = 96, .external_lex_state = 2}, - [371] = {.lex_state = 96, .external_lex_state = 2}, - [372] = {.lex_state = 96, .external_lex_state = 2}, - [373] = {.lex_state = 96, .external_lex_state = 2}, - [374] = {.lex_state = 96, .external_lex_state = 2}, - [375] = {.lex_state = 96, .external_lex_state = 2}, - [376] = {.lex_state = 96, .external_lex_state = 2}, - [377] = {.lex_state = 96, .external_lex_state = 2}, - [378] = {.lex_state = 96, .external_lex_state = 2}, - [379] = {.lex_state = 96, .external_lex_state = 2}, - [380] = {.lex_state = 96, .external_lex_state = 2}, - [381] = {.lex_state = 96, .external_lex_state = 2}, - [382] = {.lex_state = 96, .external_lex_state = 2}, - [383] = {.lex_state = 96, .external_lex_state = 2}, - [384] = {.lex_state = 96, .external_lex_state = 2}, - [385] = {.lex_state = 96, .external_lex_state = 2}, - [386] = {.lex_state = 96, .external_lex_state = 2}, - [387] = {.lex_state = 96, .external_lex_state = 2}, - [388] = {.lex_state = 96, .external_lex_state = 2}, - [389] = {.lex_state = 96, .external_lex_state = 2}, - [390] = {.lex_state = 96, .external_lex_state = 2}, - [391] = {.lex_state = 96, .external_lex_state = 2}, - [392] = {.lex_state = 96, .external_lex_state = 2}, - [393] = {.lex_state = 96, .external_lex_state = 2}, - [394] = {.lex_state = 96, .external_lex_state = 2}, - [395] = {.lex_state = 96, .external_lex_state = 2}, - [396] = {.lex_state = 96, .external_lex_state = 2}, - [397] = {.lex_state = 96, .external_lex_state = 2}, - [398] = {.lex_state = 96, .external_lex_state = 2}, - [399] = {.lex_state = 96, .external_lex_state = 2}, - [400] = {.lex_state = 96, .external_lex_state = 2}, - [401] = {.lex_state = 96, .external_lex_state = 2}, - [402] = {.lex_state = 96, .external_lex_state = 2}, - [403] = {.lex_state = 96, .external_lex_state = 2}, - [404] = {.lex_state = 96, .external_lex_state = 2}, - [405] = {.lex_state = 96, .external_lex_state = 2}, - [406] = {.lex_state = 96, .external_lex_state = 2}, - [407] = {.lex_state = 96, .external_lex_state = 2}, - [408] = {.lex_state = 96, .external_lex_state = 2}, - [409] = {.lex_state = 96, .external_lex_state = 2}, - [410] = {.lex_state = 96, .external_lex_state = 2}, - [411] = {.lex_state = 96, .external_lex_state = 2}, - [412] = {.lex_state = 96, .external_lex_state = 2}, - [413] = {.lex_state = 96, .external_lex_state = 2}, - [414] = {.lex_state = 96, .external_lex_state = 2}, - [415] = {.lex_state = 96, .external_lex_state = 2}, - [416] = {.lex_state = 96, .external_lex_state = 2}, - [417] = {.lex_state = 96, .external_lex_state = 2}, - [418] = {.lex_state = 96, .external_lex_state = 2}, - [419] = {.lex_state = 96, .external_lex_state = 2}, - [420] = {.lex_state = 96, .external_lex_state = 2}, - [421] = {.lex_state = 96, .external_lex_state = 2}, - [422] = {.lex_state = 96, .external_lex_state = 2}, - [423] = {.lex_state = 96, .external_lex_state = 2}, - [424] = {.lex_state = 96, .external_lex_state = 2}, - [425] = {.lex_state = 96, .external_lex_state = 2}, - [426] = {.lex_state = 96, .external_lex_state = 2}, - [427] = {.lex_state = 96, .external_lex_state = 2}, - [428] = {.lex_state = 96, .external_lex_state = 2}, - [429] = {.lex_state = 96, .external_lex_state = 2}, - [430] = {.lex_state = 96, .external_lex_state = 2}, - [431] = {.lex_state = 96, .external_lex_state = 2}, - [432] = {.lex_state = 96, .external_lex_state = 2}, - [433] = {.lex_state = 96, .external_lex_state = 2}, - [434] = {.lex_state = 96, .external_lex_state = 2}, - [435] = {.lex_state = 96, .external_lex_state = 2}, - [436] = {.lex_state = 96, .external_lex_state = 2}, - [437] = {.lex_state = 96, .external_lex_state = 2}, - [438] = {.lex_state = 96, .external_lex_state = 2}, - [439] = {.lex_state = 96, .external_lex_state = 2}, - [440] = {.lex_state = 96, .external_lex_state = 2}, - [441] = {.lex_state = 96, .external_lex_state = 2}, - [442] = {.lex_state = 96, .external_lex_state = 2}, - [443] = {.lex_state = 96, .external_lex_state = 2}, - [444] = {.lex_state = 96, .external_lex_state = 2}, - [445] = {.lex_state = 96, .external_lex_state = 2}, - [446] = {.lex_state = 96, .external_lex_state = 2}, - [447] = {.lex_state = 96, .external_lex_state = 2}, - [448] = {.lex_state = 96, .external_lex_state = 2}, - [449] = {.lex_state = 96, .external_lex_state = 2}, - [450] = {.lex_state = 96, .external_lex_state = 2}, - [451] = {.lex_state = 96, .external_lex_state = 2}, - [452] = {.lex_state = 96, .external_lex_state = 2}, - [453] = {.lex_state = 96, .external_lex_state = 2}, - [454] = {.lex_state = 96, .external_lex_state = 2}, - [455] = {.lex_state = 96, .external_lex_state = 2}, - [456] = {.lex_state = 96, .external_lex_state = 2}, - [457] = {.lex_state = 96, .external_lex_state = 2}, - [458] = {.lex_state = 96, .external_lex_state = 2}, - [459] = {.lex_state = 96, .external_lex_state = 2}, - [460] = {.lex_state = 96, .external_lex_state = 2}, - [461] = {.lex_state = 96, .external_lex_state = 2}, - [462] = {.lex_state = 96, .external_lex_state = 2}, - [463] = {.lex_state = 96, .external_lex_state = 2}, - [464] = {.lex_state = 96, .external_lex_state = 2}, - [465] = {.lex_state = 96, .external_lex_state = 2}, - [466] = {.lex_state = 96, .external_lex_state = 2}, - [467] = {.lex_state = 96, .external_lex_state = 2}, - [468] = {.lex_state = 96, .external_lex_state = 2}, - [469] = {.lex_state = 96, .external_lex_state = 2}, - [470] = {.lex_state = 96, .external_lex_state = 2}, - [471] = {.lex_state = 96, .external_lex_state = 2}, - [472] = {.lex_state = 96, .external_lex_state = 2}, - [473] = {.lex_state = 96, .external_lex_state = 2}, - [474] = {.lex_state = 96, .external_lex_state = 2}, - [475] = {.lex_state = 96, .external_lex_state = 2}, - [476] = {.lex_state = 96, .external_lex_state = 2}, - [477] = {.lex_state = 96, .external_lex_state = 2}, - [478] = {.lex_state = 96, .external_lex_state = 2}, - [479] = {.lex_state = 96, .external_lex_state = 2}, - [480] = {.lex_state = 96, .external_lex_state = 2}, - [481] = {.lex_state = 96, .external_lex_state = 2}, - [482] = {.lex_state = 96, .external_lex_state = 2}, - [483] = {.lex_state = 96, .external_lex_state = 2}, - [484] = {.lex_state = 96, .external_lex_state = 2}, - [485] = {.lex_state = 96, .external_lex_state = 2}, - [486] = {.lex_state = 96, .external_lex_state = 2}, - [487] = {.lex_state = 96, .external_lex_state = 2}, - [488] = {.lex_state = 96, .external_lex_state = 2}, - [489] = {.lex_state = 96, .external_lex_state = 2}, - [490] = {.lex_state = 96, .external_lex_state = 2}, - [491] = {.lex_state = 96, .external_lex_state = 2}, - [492] = {.lex_state = 96, .external_lex_state = 2}, - [493] = {.lex_state = 96, .external_lex_state = 2}, - [494] = {.lex_state = 96, .external_lex_state = 2}, - [495] = {.lex_state = 96, .external_lex_state = 2}, - [496] = {.lex_state = 96, .external_lex_state = 2}, - [497] = {.lex_state = 96, .external_lex_state = 2}, - [498] = {.lex_state = 96, .external_lex_state = 2}, - [499] = {.lex_state = 96, .external_lex_state = 2}, - [500] = {.lex_state = 96, .external_lex_state = 2}, - [501] = {.lex_state = 96, .external_lex_state = 2}, - [502] = {.lex_state = 96, .external_lex_state = 2}, - [503] = {.lex_state = 96, .external_lex_state = 2}, - [504] = {.lex_state = 96, .external_lex_state = 2}, - [505] = {.lex_state = 96, .external_lex_state = 2}, - [506] = {.lex_state = 96, .external_lex_state = 2}, - [507] = {.lex_state = 96, .external_lex_state = 2}, - [508] = {.lex_state = 96, .external_lex_state = 2}, - [509] = {.lex_state = 96, .external_lex_state = 2}, - [510] = {.lex_state = 96, .external_lex_state = 2}, - [511] = {.lex_state = 96, .external_lex_state = 2}, - [512] = {.lex_state = 96, .external_lex_state = 2}, - [513] = {.lex_state = 96, .external_lex_state = 2}, - [514] = {.lex_state = 96, .external_lex_state = 2}, - [515] = {.lex_state = 96, .external_lex_state = 2}, - [516] = {.lex_state = 96, .external_lex_state = 2}, - [517] = {.lex_state = 96, .external_lex_state = 2}, - [518] = {.lex_state = 96, .external_lex_state = 2}, - [519] = {.lex_state = 96, .external_lex_state = 2}, - [520] = {.lex_state = 96, .external_lex_state = 2}, - [521] = {.lex_state = 96, .external_lex_state = 2}, - [522] = {.lex_state = 96, .external_lex_state = 2}, - [523] = {.lex_state = 96, .external_lex_state = 2}, - [524] = {.lex_state = 96, .external_lex_state = 2}, - [525] = {.lex_state = 96, .external_lex_state = 2}, - [526] = {.lex_state = 96, .external_lex_state = 2}, - [527] = {.lex_state = 96, .external_lex_state = 2}, - [528] = {.lex_state = 96, .external_lex_state = 2}, - [529] = {.lex_state = 96, .external_lex_state = 2}, - [530] = {.lex_state = 96, .external_lex_state = 2}, - [531] = {.lex_state = 96, .external_lex_state = 2}, - [532] = {.lex_state = 96, .external_lex_state = 2}, - [533] = {.lex_state = 96, .external_lex_state = 2}, - [534] = {.lex_state = 96, .external_lex_state = 2}, - [535] = {.lex_state = 96, .external_lex_state = 2}, - [536] = {.lex_state = 96, .external_lex_state = 2}, - [537] = {.lex_state = 96, .external_lex_state = 2}, - [538] = {.lex_state = 96, .external_lex_state = 2}, - [539] = {.lex_state = 96, .external_lex_state = 2}, - [540] = {.lex_state = 96, .external_lex_state = 2}, - [541] = {.lex_state = 96, .external_lex_state = 2}, - [542] = {.lex_state = 96, .external_lex_state = 2}, - [543] = {.lex_state = 96, .external_lex_state = 2}, - [544] = {.lex_state = 96, .external_lex_state = 2}, - [545] = {.lex_state = 96, .external_lex_state = 2}, - [546] = {.lex_state = 96, .external_lex_state = 2}, - [547] = {.lex_state = 96, .external_lex_state = 2}, - [548] = {.lex_state = 96, .external_lex_state = 2}, - [549] = {.lex_state = 96, .external_lex_state = 2}, - [550] = {.lex_state = 96, .external_lex_state = 2}, - [551] = {.lex_state = 96, .external_lex_state = 2}, - [552] = {.lex_state = 96, .external_lex_state = 2}, - [553] = {.lex_state = 96, .external_lex_state = 2}, - [554] = {.lex_state = 96, .external_lex_state = 2}, - [555] = {.lex_state = 96, .external_lex_state = 2}, - [556] = {.lex_state = 96, .external_lex_state = 2}, - [557] = {.lex_state = 96, .external_lex_state = 2}, - [558] = {.lex_state = 96, .external_lex_state = 2}, - [559] = {.lex_state = 96, .external_lex_state = 2}, - [560] = {.lex_state = 96, .external_lex_state = 2}, - [561] = {.lex_state = 96, .external_lex_state = 2}, - [562] = {.lex_state = 96, .external_lex_state = 2}, - [563] = {.lex_state = 96, .external_lex_state = 2}, - [564] = {.lex_state = 96, .external_lex_state = 2}, - [565] = {.lex_state = 96, .external_lex_state = 2}, - [566] = {.lex_state = 96, .external_lex_state = 2}, - [567] = {.lex_state = 96, .external_lex_state = 2}, - [568] = {.lex_state = 96, .external_lex_state = 2}, - [569] = {.lex_state = 96, .external_lex_state = 2}, - [570] = {.lex_state = 96, .external_lex_state = 2}, - [571] = {.lex_state = 96, .external_lex_state = 2}, - [572] = {.lex_state = 96, .external_lex_state = 2}, - [573] = {.lex_state = 96, .external_lex_state = 2}, - [574] = {.lex_state = 96, .external_lex_state = 2}, - [575] = {.lex_state = 96, .external_lex_state = 2}, - [576] = {.lex_state = 96, .external_lex_state = 2}, - [577] = {.lex_state = 96, .external_lex_state = 2}, - [578] = {.lex_state = 96, .external_lex_state = 2}, - [579] = {.lex_state = 96, .external_lex_state = 2}, - [580] = {.lex_state = 96, .external_lex_state = 2}, - [581] = {.lex_state = 96, .external_lex_state = 2}, - [582] = {.lex_state = 96, .external_lex_state = 2}, - [583] = {.lex_state = 96, .external_lex_state = 2}, - [584] = {.lex_state = 96, .external_lex_state = 2}, - [585] = {.lex_state = 96, .external_lex_state = 2}, - [586] = {.lex_state = 96, .external_lex_state = 2}, - [587] = {.lex_state = 96, .external_lex_state = 2}, - [588] = {.lex_state = 96, .external_lex_state = 2}, - [589] = {.lex_state = 96, .external_lex_state = 2}, - [590] = {.lex_state = 96, .external_lex_state = 2}, - [591] = {.lex_state = 96, .external_lex_state = 2}, - [592] = {.lex_state = 96, .external_lex_state = 2}, - [593] = {.lex_state = 96, .external_lex_state = 2}, - [594] = {.lex_state = 96, .external_lex_state = 2}, - [595] = {.lex_state = 96, .external_lex_state = 2}, - [596] = {.lex_state = 96, .external_lex_state = 2}, - [597] = {.lex_state = 96, .external_lex_state = 2}, - [598] = {.lex_state = 96, .external_lex_state = 2}, - [599] = {.lex_state = 96, .external_lex_state = 2}, - [600] = {.lex_state = 96, .external_lex_state = 2}, - [601] = {.lex_state = 96, .external_lex_state = 2}, - [602] = {.lex_state = 96, .external_lex_state = 2}, - [603] = {.lex_state = 96, .external_lex_state = 2}, - [604] = {.lex_state = 96, .external_lex_state = 2}, - [605] = {.lex_state = 96, .external_lex_state = 2}, - [606] = {.lex_state = 96, .external_lex_state = 2}, - [607] = {.lex_state = 96, .external_lex_state = 2}, - [608] = {.lex_state = 96, .external_lex_state = 2}, - [609] = {.lex_state = 96, .external_lex_state = 2}, - [610] = {.lex_state = 96, .external_lex_state = 2}, - [611] = {.lex_state = 96, .external_lex_state = 2}, - [612] = {.lex_state = 96, .external_lex_state = 2}, - [613] = {.lex_state = 96, .external_lex_state = 2}, - [614] = {.lex_state = 96, .external_lex_state = 2}, - [615] = {.lex_state = 96, .external_lex_state = 2}, - [616] = {.lex_state = 96, .external_lex_state = 2}, - [617] = {.lex_state = 96, .external_lex_state = 2}, - [618] = {.lex_state = 96, .external_lex_state = 2}, - [619] = {.lex_state = 96, .external_lex_state = 2}, - [620] = {.lex_state = 96, .external_lex_state = 2}, - [621] = {.lex_state = 96, .external_lex_state = 2}, - [622] = {.lex_state = 96, .external_lex_state = 2}, - [623] = {.lex_state = 96, .external_lex_state = 2}, - [624] = {.lex_state = 96, .external_lex_state = 2}, - [625] = {.lex_state = 96, .external_lex_state = 2}, - [626] = {.lex_state = 96, .external_lex_state = 2}, - [627] = {.lex_state = 96, .external_lex_state = 2}, - [628] = {.lex_state = 96, .external_lex_state = 2}, - [629] = {.lex_state = 96, .external_lex_state = 2}, - [630] = {.lex_state = 96, .external_lex_state = 2}, - [631] = {.lex_state = 96, .external_lex_state = 2}, - [632] = {.lex_state = 96, .external_lex_state = 2}, - [633] = {.lex_state = 96, .external_lex_state = 2}, - [634] = {.lex_state = 96, .external_lex_state = 2}, - [635] = {.lex_state = 96, .external_lex_state = 2}, - [636] = {.lex_state = 96, .external_lex_state = 2}, - [637] = {.lex_state = 96, .external_lex_state = 2}, - [638] = {.lex_state = 96, .external_lex_state = 2}, - [639] = {.lex_state = 96, .external_lex_state = 2}, - [640] = {.lex_state = 96, .external_lex_state = 2}, - [641] = {.lex_state = 96, .external_lex_state = 2}, - [642] = {.lex_state = 96, .external_lex_state = 2}, - [643] = {.lex_state = 96, .external_lex_state = 2}, - [644] = {.lex_state = 96, .external_lex_state = 2}, - [645] = {.lex_state = 96, .external_lex_state = 2}, - [646] = {.lex_state = 96, .external_lex_state = 2}, - [647] = {.lex_state = 96, .external_lex_state = 2}, - [648] = {.lex_state = 96, .external_lex_state = 2}, - [649] = {.lex_state = 96, .external_lex_state = 2}, - [650] = {.lex_state = 96, .external_lex_state = 2}, - [651] = {.lex_state = 96, .external_lex_state = 2}, - [652] = {.lex_state = 96, .external_lex_state = 2}, - [653] = {.lex_state = 96, .external_lex_state = 2}, - [654] = {.lex_state = 96, .external_lex_state = 2}, - [655] = {.lex_state = 96, .external_lex_state = 2}, - [656] = {.lex_state = 96, .external_lex_state = 2}, - [657] = {.lex_state = 96, .external_lex_state = 2}, - [658] = {.lex_state = 96, .external_lex_state = 2}, - [659] = {.lex_state = 96, .external_lex_state = 2}, - [660] = {.lex_state = 96, .external_lex_state = 2}, - [661] = {.lex_state = 96, .external_lex_state = 2}, - [662] = {.lex_state = 96, .external_lex_state = 2}, - [663] = {.lex_state = 96, .external_lex_state = 2}, - [664] = {.lex_state = 96, .external_lex_state = 2}, - [665] = {.lex_state = 96, .external_lex_state = 2}, - [666] = {.lex_state = 96, .external_lex_state = 2}, - [667] = {.lex_state = 96, .external_lex_state = 2}, - [668] = {.lex_state = 96, .external_lex_state = 2}, - [669] = {.lex_state = 96, .external_lex_state = 2}, - [670] = {.lex_state = 96, .external_lex_state = 2}, - [671] = {.lex_state = 96, .external_lex_state = 2}, - [672] = {.lex_state = 96, .external_lex_state = 2}, - [673] = {.lex_state = 96, .external_lex_state = 2}, - [674] = {.lex_state = 96, .external_lex_state = 2}, - [675] = {.lex_state = 96, .external_lex_state = 2}, - [676] = {.lex_state = 96, .external_lex_state = 2}, - [677] = {.lex_state = 96, .external_lex_state = 2}, - [678] = {.lex_state = 96, .external_lex_state = 2}, - [679] = {.lex_state = 96, .external_lex_state = 2}, - [680] = {.lex_state = 96, .external_lex_state = 2}, - [681] = {.lex_state = 96, .external_lex_state = 2}, - [682] = {.lex_state = 96, .external_lex_state = 2}, - [683] = {.lex_state = 96, .external_lex_state = 2}, - [684] = {.lex_state = 96, .external_lex_state = 2}, - [685] = {.lex_state = 96, .external_lex_state = 2}, - [686] = {.lex_state = 96, .external_lex_state = 2}, - [687] = {.lex_state = 6, .external_lex_state = 4}, - [688] = {.lex_state = 6, .external_lex_state = 4}, - [689] = {.lex_state = 6, .external_lex_state = 4}, - [690] = {.lex_state = 5, .external_lex_state = 4}, - [691] = {.lex_state = 5, .external_lex_state = 4}, - [692] = {.lex_state = 5, .external_lex_state = 4}, - [693] = {.lex_state = 5, .external_lex_state = 4}, - [694] = {.lex_state = 5, .external_lex_state = 4}, - [695] = {.lex_state = 5, .external_lex_state = 4}, - [696] = {.lex_state = 6, .external_lex_state = 4}, - [697] = {.lex_state = 6, .external_lex_state = 4}, - [698] = {.lex_state = 5, .external_lex_state = 4}, - [699] = {.lex_state = 5, .external_lex_state = 4}, - [700] = {.lex_state = 5, .external_lex_state = 4}, - [701] = {.lex_state = 5, .external_lex_state = 4}, - [702] = {.lex_state = 5, .external_lex_state = 4}, - [703] = {.lex_state = 5, .external_lex_state = 4}, - [704] = {.lex_state = 5, .external_lex_state = 4}, - [705] = {.lex_state = 96, .external_lex_state = 2}, - [706] = {.lex_state = 96, .external_lex_state = 2}, - [707] = {.lex_state = 5, .external_lex_state = 4}, - [708] = {.lex_state = 5, .external_lex_state = 4}, - [709] = {.lex_state = 5, .external_lex_state = 4}, - [710] = {.lex_state = 96, .external_lex_state = 2}, - [711] = {.lex_state = 96, .external_lex_state = 2}, - [712] = {.lex_state = 96, .external_lex_state = 2}, - [713] = {.lex_state = 96, .external_lex_state = 2}, - [714] = {.lex_state = 96, .external_lex_state = 2}, - [715] = {.lex_state = 5, .external_lex_state = 4}, - [716] = {.lex_state = 5, .external_lex_state = 4}, - [717] = {.lex_state = 5, .external_lex_state = 4}, - [718] = {.lex_state = 5, .external_lex_state = 4}, - [719] = {.lex_state = 5, .external_lex_state = 4}, - [720] = {.lex_state = 5, .external_lex_state = 4}, - [721] = {.lex_state = 5, .external_lex_state = 4}, - [722] = {.lex_state = 5, .external_lex_state = 4}, - [723] = {.lex_state = 5, .external_lex_state = 4}, - [724] = {.lex_state = 5, .external_lex_state = 3}, - [725] = {.lex_state = 5, .external_lex_state = 3}, - [726] = {.lex_state = 5, .external_lex_state = 3}, - [727] = {.lex_state = 5, .external_lex_state = 3}, - [728] = {.lex_state = 5, .external_lex_state = 4}, - [729] = {.lex_state = 5, .external_lex_state = 3}, - [730] = {.lex_state = 5, .external_lex_state = 3}, - [731] = {.lex_state = 5, .external_lex_state = 4}, - [732] = {.lex_state = 5, .external_lex_state = 4}, - [733] = {.lex_state = 5, .external_lex_state = 4}, - [734] = {.lex_state = 5, .external_lex_state = 4}, - [735] = {.lex_state = 5, .external_lex_state = 4}, - [736] = {.lex_state = 96, .external_lex_state = 5}, - [737] = {.lex_state = 6, .external_lex_state = 3}, - [738] = {.lex_state = 5, .external_lex_state = 3}, - [739] = {.lex_state = 5, .external_lex_state = 3}, - [740] = {.lex_state = 96, .external_lex_state = 2}, - [741] = {.lex_state = 96, .external_lex_state = 5}, - [742] = {.lex_state = 6, .external_lex_state = 3}, - [743] = {.lex_state = 5, .external_lex_state = 3}, - [744] = {.lex_state = 5, .external_lex_state = 3}, - [745] = {.lex_state = 5, .external_lex_state = 3}, - [746] = {.lex_state = 96, .external_lex_state = 2}, - [747] = {.lex_state = 5, .external_lex_state = 3}, - [748] = {.lex_state = 5, .external_lex_state = 4}, - [749] = {.lex_state = 96, .external_lex_state = 5}, - [750] = {.lex_state = 96, .external_lex_state = 5}, - [751] = {.lex_state = 96, .external_lex_state = 5}, - [752] = {.lex_state = 96, .external_lex_state = 5}, - [753] = {.lex_state = 96, .external_lex_state = 5}, - [754] = {.lex_state = 96, .external_lex_state = 5}, - [755] = {.lex_state = 5, .external_lex_state = 4}, - [756] = {.lex_state = 5, .external_lex_state = 4}, - [757] = {.lex_state = 96, .external_lex_state = 2}, - [758] = {.lex_state = 5, .external_lex_state = 4}, - [759] = {.lex_state = 5, .external_lex_state = 3}, - [760] = {.lex_state = 5, .external_lex_state = 4}, - [761] = {.lex_state = 5, .external_lex_state = 3}, - [762] = {.lex_state = 5, .external_lex_state = 3}, - [763] = {.lex_state = 96, .external_lex_state = 2}, - [764] = {.lex_state = 96, .external_lex_state = 2}, - [765] = {.lex_state = 5, .external_lex_state = 3}, - [766] = {.lex_state = 5, .external_lex_state = 3}, - [767] = {.lex_state = 5, .external_lex_state = 3}, - [768] = {.lex_state = 5, .external_lex_state = 3}, - [769] = {.lex_state = 5, .external_lex_state = 3}, - [770] = {.lex_state = 5, .external_lex_state = 3}, - [771] = {.lex_state = 5, .external_lex_state = 3}, - [772] = {.lex_state = 96, .external_lex_state = 2}, - [773] = {.lex_state = 96, .external_lex_state = 5}, - [774] = {.lex_state = 96, .external_lex_state = 2}, - [775] = {.lex_state = 5, .external_lex_state = 3}, - [776] = {.lex_state = 96, .external_lex_state = 5}, - [777] = {.lex_state = 96, .external_lex_state = 5}, - [778] = {.lex_state = 96, .external_lex_state = 5}, - [779] = {.lex_state = 96, .external_lex_state = 5}, - [780] = {.lex_state = 96, .external_lex_state = 5}, - [781] = {.lex_state = 96, .external_lex_state = 5}, - [782] = {.lex_state = 5, .external_lex_state = 3}, - [783] = {.lex_state = 96, .external_lex_state = 5}, - [784] = {.lex_state = 5, .external_lex_state = 3}, - [785] = {.lex_state = 96, .external_lex_state = 2}, - [786] = {.lex_state = 96, .external_lex_state = 2}, - [787] = {.lex_state = 96, .external_lex_state = 5}, - [788] = {.lex_state = 96, .external_lex_state = 2}, - [789] = {.lex_state = 96, .external_lex_state = 2}, - [790] = {.lex_state = 96, .external_lex_state = 5}, - [791] = {.lex_state = 5, .external_lex_state = 3}, - [792] = {.lex_state = 96, .external_lex_state = 2}, - [793] = {.lex_state = 5, .external_lex_state = 3}, - [794] = {.lex_state = 96, .external_lex_state = 5}, - [795] = {.lex_state = 96, .external_lex_state = 5}, - [796] = {.lex_state = 96, .external_lex_state = 5}, - [797] = {.lex_state = 96, .external_lex_state = 5}, - [798] = {.lex_state = 5, .external_lex_state = 3}, - [799] = {.lex_state = 5, .external_lex_state = 3}, - [800] = {.lex_state = 5, .external_lex_state = 3}, - [801] = {.lex_state = 96, .external_lex_state = 2}, - [802] = {.lex_state = 96, .external_lex_state = 2}, - [803] = {.lex_state = 96, .external_lex_state = 5}, - [804] = {.lex_state = 5, .external_lex_state = 3}, - [805] = {.lex_state = 5, .external_lex_state = 3}, - [806] = {.lex_state = 5, .external_lex_state = 3}, - [807] = {.lex_state = 96, .external_lex_state = 2}, - [808] = {.lex_state = 96, .external_lex_state = 2}, - [809] = {.lex_state = 96, .external_lex_state = 2}, - [810] = {.lex_state = 96, .external_lex_state = 2}, - [811] = {.lex_state = 96, .external_lex_state = 2}, - [812] = {.lex_state = 96, .external_lex_state = 2}, - [813] = {.lex_state = 96, .external_lex_state = 2}, - [814] = {.lex_state = 12, .external_lex_state = 2}, - [815] = {.lex_state = 96, .external_lex_state = 2}, - [816] = {.lex_state = 96, .external_lex_state = 2}, - [817] = {.lex_state = 96, .external_lex_state = 2}, - [818] = {.lex_state = 96, .external_lex_state = 2}, - [819] = {.lex_state = 96, .external_lex_state = 2}, - [820] = {.lex_state = 96, .external_lex_state = 2}, - [821] = {.lex_state = 96, .external_lex_state = 2}, - [822] = {.lex_state = 96, .external_lex_state = 2}, - [823] = {.lex_state = 96, .external_lex_state = 2}, - [824] = {.lex_state = 96, .external_lex_state = 2}, - [825] = {.lex_state = 96, .external_lex_state = 2}, - [826] = {.lex_state = 96, .external_lex_state = 2}, - [827] = {.lex_state = 96, .external_lex_state = 2}, - [828] = {.lex_state = 96, .external_lex_state = 2}, - [829] = {.lex_state = 96, .external_lex_state = 2}, - [830] = {.lex_state = 96, .external_lex_state = 2}, - [831] = {.lex_state = 96, .external_lex_state = 2}, - [832] = {.lex_state = 96, .external_lex_state = 2}, - [833] = {.lex_state = 96, .external_lex_state = 2}, - [834] = {.lex_state = 96, .external_lex_state = 2}, - [835] = {.lex_state = 96, .external_lex_state = 2}, - [836] = {.lex_state = 96, .external_lex_state = 2}, - [837] = {.lex_state = 96, .external_lex_state = 2}, - [838] = {.lex_state = 96, .external_lex_state = 2}, - [839] = {.lex_state = 96, .external_lex_state = 2}, - [840] = {.lex_state = 12, .external_lex_state = 2}, - [841] = {.lex_state = 96, .external_lex_state = 2}, - [842] = {.lex_state = 96, .external_lex_state = 2}, - [843] = {.lex_state = 96, .external_lex_state = 2}, - [844] = {.lex_state = 96, .external_lex_state = 2}, - [845] = {.lex_state = 96, .external_lex_state = 2}, - [846] = {.lex_state = 96, .external_lex_state = 2}, - [847] = {.lex_state = 96, .external_lex_state = 2}, - [848] = {.lex_state = 96, .external_lex_state = 2}, - [849] = {.lex_state = 96, .external_lex_state = 2}, - [850] = {.lex_state = 96, .external_lex_state = 2}, - [851] = {.lex_state = 96, .external_lex_state = 2}, - [852] = {.lex_state = 96, .external_lex_state = 2}, - [853] = {.lex_state = 96, .external_lex_state = 2}, - [854] = {.lex_state = 96, .external_lex_state = 2}, - [855] = {.lex_state = 96, .external_lex_state = 2}, - [856] = {.lex_state = 96, .external_lex_state = 2}, - [857] = {.lex_state = 96, .external_lex_state = 2}, - [858] = {.lex_state = 96, .external_lex_state = 2}, - [859] = {.lex_state = 96, .external_lex_state = 2}, - [860] = {.lex_state = 96, .external_lex_state = 2}, - [861] = {.lex_state = 96, .external_lex_state = 2}, - [862] = {.lex_state = 96, .external_lex_state = 2}, - [863] = {.lex_state = 96, .external_lex_state = 2}, - [864] = {.lex_state = 96, .external_lex_state = 2}, - [865] = {.lex_state = 96, .external_lex_state = 2}, - [866] = {.lex_state = 96, .external_lex_state = 2}, - [867] = {.lex_state = 96, .external_lex_state = 2}, - [868] = {.lex_state = 96, .external_lex_state = 2}, - [869] = {.lex_state = 96, .external_lex_state = 2}, - [870] = {.lex_state = 96, .external_lex_state = 2}, - [871] = {.lex_state = 96, .external_lex_state = 2}, - [872] = {.lex_state = 96, .external_lex_state = 2}, - [873] = {.lex_state = 96, .external_lex_state = 2}, - [874] = {.lex_state = 96, .external_lex_state = 2}, - [875] = {.lex_state = 96, .external_lex_state = 2}, - [876] = {.lex_state = 96, .external_lex_state = 2}, - [877] = {.lex_state = 96, .external_lex_state = 2}, - [878] = {.lex_state = 96, .external_lex_state = 2}, - [879] = {.lex_state = 12, .external_lex_state = 2}, - [880] = {.lex_state = 96, .external_lex_state = 2}, - [881] = {.lex_state = 96, .external_lex_state = 2}, - [882] = {.lex_state = 96, .external_lex_state = 2}, - [883] = {.lex_state = 96, .external_lex_state = 2}, - [884] = {.lex_state = 96, .external_lex_state = 2}, - [885] = {.lex_state = 96, .external_lex_state = 2}, - [886] = {.lex_state = 96, .external_lex_state = 2}, - [887] = {.lex_state = 96, .external_lex_state = 2}, - [888] = {.lex_state = 96, .external_lex_state = 2}, - [889] = {.lex_state = 96, .external_lex_state = 2}, - [890] = {.lex_state = 96, .external_lex_state = 2}, - [891] = {.lex_state = 96, .external_lex_state = 2}, - [892] = {.lex_state = 96, .external_lex_state = 2}, - [893] = {.lex_state = 96, .external_lex_state = 2}, - [894] = {.lex_state = 96, .external_lex_state = 2}, - [895] = {.lex_state = 96, .external_lex_state = 2}, - [896] = {.lex_state = 96, .external_lex_state = 2}, - [897] = {.lex_state = 96, .external_lex_state = 2}, - [898] = {.lex_state = 96, .external_lex_state = 2}, - [899] = {.lex_state = 96, .external_lex_state = 2}, - [900] = {.lex_state = 96, .external_lex_state = 2}, - [901] = {.lex_state = 96, .external_lex_state = 2}, - [902] = {.lex_state = 96, .external_lex_state = 2}, - [903] = {.lex_state = 96, .external_lex_state = 2}, - [904] = {.lex_state = 96, .external_lex_state = 2}, - [905] = {.lex_state = 96, .external_lex_state = 2}, - [906] = {.lex_state = 96, .external_lex_state = 2}, - [907] = {.lex_state = 96, .external_lex_state = 2}, - [908] = {.lex_state = 96, .external_lex_state = 2}, - [909] = {.lex_state = 96, .external_lex_state = 2}, - [910] = {.lex_state = 96, .external_lex_state = 2}, - [911] = {.lex_state = 96, .external_lex_state = 2}, - [912] = {.lex_state = 96, .external_lex_state = 2}, - [913] = {.lex_state = 96, .external_lex_state = 2}, - [914] = {.lex_state = 96, .external_lex_state = 2}, - [915] = {.lex_state = 96, .external_lex_state = 2}, - [916] = {.lex_state = 96, .external_lex_state = 2}, - [917] = {.lex_state = 96, .external_lex_state = 2}, - [918] = {.lex_state = 96, .external_lex_state = 2}, - [919] = {.lex_state = 96, .external_lex_state = 2}, - [920] = {.lex_state = 96, .external_lex_state = 2}, - [921] = {.lex_state = 96, .external_lex_state = 2}, - [922] = {.lex_state = 12, .external_lex_state = 2}, - [923] = {.lex_state = 96, .external_lex_state = 2}, - [924] = {.lex_state = 96, .external_lex_state = 2}, - [925] = {.lex_state = 12, .external_lex_state = 2}, - [926] = {.lex_state = 96, .external_lex_state = 2}, - [927] = {.lex_state = 96, .external_lex_state = 2}, - [928] = {.lex_state = 96, .external_lex_state = 2}, - [929] = {.lex_state = 96, .external_lex_state = 2}, - [930] = {.lex_state = 96, .external_lex_state = 2}, - [931] = {.lex_state = 96, .external_lex_state = 2}, - [932] = {.lex_state = 96, .external_lex_state = 2}, - [933] = {.lex_state = 96, .external_lex_state = 2}, - [934] = {.lex_state = 96, .external_lex_state = 2}, - [935] = {.lex_state = 12, .external_lex_state = 2}, - [936] = {.lex_state = 12, .external_lex_state = 2}, - [937] = {.lex_state = 12, .external_lex_state = 2}, - [938] = {.lex_state = 12, .external_lex_state = 2}, - [939] = {.lex_state = 12, .external_lex_state = 2}, - [940] = {.lex_state = 12, .external_lex_state = 2}, - [941] = {.lex_state = 12, .external_lex_state = 2}, - [942] = {.lex_state = 12, .external_lex_state = 2}, - [943] = {.lex_state = 12, .external_lex_state = 2}, - [944] = {.lex_state = 12, .external_lex_state = 2}, - [945] = {.lex_state = 12, .external_lex_state = 2}, - [946] = {.lex_state = 96, .external_lex_state = 2}, - [947] = {.lex_state = 96, .external_lex_state = 2}, - [948] = {.lex_state = 96, .external_lex_state = 2}, - [949] = {.lex_state = 96, .external_lex_state = 2}, - [950] = {.lex_state = 96, .external_lex_state = 2}, - [951] = {.lex_state = 96, .external_lex_state = 2}, - [952] = {.lex_state = 96, .external_lex_state = 2}, - [953] = {.lex_state = 96, .external_lex_state = 2}, - [954] = {.lex_state = 96, .external_lex_state = 2}, - [955] = {.lex_state = 96, .external_lex_state = 2}, - [956] = {.lex_state = 96, .external_lex_state = 2}, - [957] = {.lex_state = 96, .external_lex_state = 2}, - [958] = {.lex_state = 96, .external_lex_state = 2}, - [959] = {.lex_state = 96, .external_lex_state = 2}, - [960] = {.lex_state = 12, .external_lex_state = 2}, - [961] = {.lex_state = 12, .external_lex_state = 2}, - [962] = {.lex_state = 12, .external_lex_state = 2}, - [963] = {.lex_state = 12, .external_lex_state = 2}, - [964] = {.lex_state = 12, .external_lex_state = 2}, - [965] = {.lex_state = 12, .external_lex_state = 2}, - [966] = {.lex_state = 12, .external_lex_state = 2}, - [967] = {.lex_state = 12, .external_lex_state = 2}, - [968] = {.lex_state = 12, .external_lex_state = 2}, - [969] = {.lex_state = 12, .external_lex_state = 2}, - [970] = {.lex_state = 12, .external_lex_state = 2}, - [971] = {.lex_state = 12, .external_lex_state = 2}, - [972] = {.lex_state = 12, .external_lex_state = 2}, - [973] = {.lex_state = 12, .external_lex_state = 2}, - [974] = {.lex_state = 12, .external_lex_state = 2}, - [975] = {.lex_state = 12, .external_lex_state = 2}, - [976] = {.lex_state = 12, .external_lex_state = 2}, - [977] = {.lex_state = 14, .external_lex_state = 2}, - [978] = {.lex_state = 14, .external_lex_state = 2}, - [979] = {.lex_state = 14, .external_lex_state = 2}, - [980] = {.lex_state = 12, .external_lex_state = 2}, - [981] = {.lex_state = 12, .external_lex_state = 2}, - [982] = {.lex_state = 12, .external_lex_state = 2}, - [983] = {.lex_state = 12, .external_lex_state = 2}, - [984] = {.lex_state = 12, .external_lex_state = 2}, - [985] = {.lex_state = 12, .external_lex_state = 2}, - [986] = {.lex_state = 12, .external_lex_state = 2}, - [987] = {.lex_state = 12, .external_lex_state = 2}, - [988] = {.lex_state = 12, .external_lex_state = 2}, - [989] = {.lex_state = 12, .external_lex_state = 2}, - [990] = {.lex_state = 12, .external_lex_state = 2}, - [991] = {.lex_state = 12, .external_lex_state = 2}, - [992] = {.lex_state = 12, .external_lex_state = 2}, - [993] = {.lex_state = 12, .external_lex_state = 2}, - [994] = {.lex_state = 12, .external_lex_state = 2}, - [995] = {.lex_state = 12, .external_lex_state = 2}, - [996] = {.lex_state = 12, .external_lex_state = 2}, - [997] = {.lex_state = 12, .external_lex_state = 2}, - [998] = {.lex_state = 12, .external_lex_state = 2}, - [999] = {.lex_state = 12, .external_lex_state = 2}, - [1000] = {.lex_state = 12, .external_lex_state = 2}, - [1001] = {.lex_state = 12, .external_lex_state = 2}, - [1002] = {.lex_state = 12, .external_lex_state = 2}, - [1003] = {.lex_state = 12, .external_lex_state = 2}, - [1004] = {.lex_state = 12, .external_lex_state = 2}, - [1005] = {.lex_state = 12, .external_lex_state = 2}, - [1006] = {.lex_state = 12, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, - [1008] = {.lex_state = 12, .external_lex_state = 2}, - [1009] = {.lex_state = 12, .external_lex_state = 2}, - [1010] = {.lex_state = 12, .external_lex_state = 2}, - [1011] = {.lex_state = 12, .external_lex_state = 2}, - [1012] = {.lex_state = 12, .external_lex_state = 2}, - [1013] = {.lex_state = 12, .external_lex_state = 2}, - [1014] = {.lex_state = 12, .external_lex_state = 2}, - [1015] = {.lex_state = 12, .external_lex_state = 2}, - [1016] = {.lex_state = 12, .external_lex_state = 2}, - [1017] = {.lex_state = 12, .external_lex_state = 2}, - [1018] = {.lex_state = 12, .external_lex_state = 2}, - [1019] = {.lex_state = 12, .external_lex_state = 2}, - [1020] = {.lex_state = 12, .external_lex_state = 2}, - [1021] = {.lex_state = 12, .external_lex_state = 2}, - [1022] = {.lex_state = 12, .external_lex_state = 2}, - [1023] = {.lex_state = 12, .external_lex_state = 2}, - [1024] = {.lex_state = 12, .external_lex_state = 2}, - [1025] = {.lex_state = 12, .external_lex_state = 2}, - [1026] = {.lex_state = 12, .external_lex_state = 2}, - [1027] = {.lex_state = 12, .external_lex_state = 2}, - [1028] = {.lex_state = 12, .external_lex_state = 2}, - [1029] = {.lex_state = 12, .external_lex_state = 2}, - [1030] = {.lex_state = 12, .external_lex_state = 2}, - [1031] = {.lex_state = 12, .external_lex_state = 2}, - [1032] = {.lex_state = 12, .external_lex_state = 2}, - [1033] = {.lex_state = 12, .external_lex_state = 2}, - [1034] = {.lex_state = 12, .external_lex_state = 2}, - [1035] = {.lex_state = 12, .external_lex_state = 2}, - [1036] = {.lex_state = 12, .external_lex_state = 2}, - [1037] = {.lex_state = 12, .external_lex_state = 2}, - [1038] = {.lex_state = 12, .external_lex_state = 2}, - [1039] = {.lex_state = 12, .external_lex_state = 2}, - [1040] = {.lex_state = 12, .external_lex_state = 2}, - [1041] = {.lex_state = 12, .external_lex_state = 2}, - [1042] = {.lex_state = 12, .external_lex_state = 2}, - [1043] = {.lex_state = 12, .external_lex_state = 2}, - [1044] = {.lex_state = 12, .external_lex_state = 2}, - [1045] = {.lex_state = 12, .external_lex_state = 2}, - [1046] = {.lex_state = 12, .external_lex_state = 2}, - [1047] = {.lex_state = 12, .external_lex_state = 2}, - [1048] = {.lex_state = 12, .external_lex_state = 2}, - [1049] = {.lex_state = 12, .external_lex_state = 2}, - [1050] = {.lex_state = 12, .external_lex_state = 2}, - [1051] = {.lex_state = 12, .external_lex_state = 2}, - [1052] = {.lex_state = 12, .external_lex_state = 2}, - [1053] = {.lex_state = 12, .external_lex_state = 2}, - [1054] = {.lex_state = 12, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 12, .external_lex_state = 2}, - [1057] = {.lex_state = 12, .external_lex_state = 2}, - [1058] = {.lex_state = 12, .external_lex_state = 2}, - [1059] = {.lex_state = 12, .external_lex_state = 2}, - [1060] = {.lex_state = 12, .external_lex_state = 2}, - [1061] = {.lex_state = 12, .external_lex_state = 2}, - [1062] = {.lex_state = 12, .external_lex_state = 2}, - [1063] = {.lex_state = 12, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, - [1065] = {.lex_state = 12, .external_lex_state = 2}, - [1066] = {.lex_state = 12, .external_lex_state = 2}, - [1067] = {.lex_state = 12, .external_lex_state = 2}, - [1068] = {.lex_state = 12, .external_lex_state = 2}, - [1069] = {.lex_state = 12, .external_lex_state = 2}, - [1070] = {.lex_state = 12, .external_lex_state = 2}, - [1071] = {.lex_state = 12, .external_lex_state = 2}, - [1072] = {.lex_state = 12, .external_lex_state = 2}, - [1073] = {.lex_state = 12, .external_lex_state = 2}, - [1074] = {.lex_state = 12, .external_lex_state = 2}, - [1075] = {.lex_state = 12, .external_lex_state = 2}, - [1076] = {.lex_state = 12, .external_lex_state = 2}, - [1077] = {.lex_state = 12, .external_lex_state = 2}, - [1078] = {.lex_state = 12, .external_lex_state = 2}, - [1079] = {.lex_state = 12, .external_lex_state = 2}, - [1080] = {.lex_state = 12, .external_lex_state = 2}, - [1081] = {.lex_state = 12, .external_lex_state = 2}, - [1082] = {.lex_state = 12, .external_lex_state = 2}, - [1083] = {.lex_state = 12, .external_lex_state = 2}, - [1084] = {.lex_state = 12, .external_lex_state = 2}, - [1085] = {.lex_state = 12, .external_lex_state = 2}, - [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 12, .external_lex_state = 2}, - [1088] = {.lex_state = 12, .external_lex_state = 2}, - [1089] = {.lex_state = 12, .external_lex_state = 2}, - [1090] = {.lex_state = 12, .external_lex_state = 2}, - [1091] = {.lex_state = 12, .external_lex_state = 2}, - [1092] = {.lex_state = 12, .external_lex_state = 2}, - [1093] = {.lex_state = 12, .external_lex_state = 2}, - [1094] = {.lex_state = 12, .external_lex_state = 2}, - [1095] = {.lex_state = 12, .external_lex_state = 2}, - [1096] = {.lex_state = 12, .external_lex_state = 2}, - [1097] = {.lex_state = 12, .external_lex_state = 2}, - [1098] = {.lex_state = 12, .external_lex_state = 2}, - [1099] = {.lex_state = 12, .external_lex_state = 2}, - [1100] = {.lex_state = 12, .external_lex_state = 2}, - [1101] = {.lex_state = 12, .external_lex_state = 2}, - [1102] = {.lex_state = 12, .external_lex_state = 2}, - [1103] = {.lex_state = 12, .external_lex_state = 2}, - [1104] = {.lex_state = 12, .external_lex_state = 2}, - [1105] = {.lex_state = 12, .external_lex_state = 2}, - [1106] = {.lex_state = 12, .external_lex_state = 2}, - [1107] = {.lex_state = 12, .external_lex_state = 2}, - [1108] = {.lex_state = 12, .external_lex_state = 2}, - [1109] = {.lex_state = 12, .external_lex_state = 2}, - [1110] = {.lex_state = 12, .external_lex_state = 2}, - [1111] = {.lex_state = 12, .external_lex_state = 2}, - [1112] = {.lex_state = 12, .external_lex_state = 2}, - [1113] = {.lex_state = 12, .external_lex_state = 2}, - [1114] = {.lex_state = 12, .external_lex_state = 2}, - [1115] = {.lex_state = 12, .external_lex_state = 2}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, - [1117] = {.lex_state = 12, .external_lex_state = 2}, - [1118] = {.lex_state = 12, .external_lex_state = 2}, - [1119] = {.lex_state = 12, .external_lex_state = 2}, - [1120] = {.lex_state = 12, .external_lex_state = 2}, - [1121] = {.lex_state = 12, .external_lex_state = 2}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 12, .external_lex_state = 2}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, - [1125] = {.lex_state = 12, .external_lex_state = 2}, - [1126] = {.lex_state = 12, .external_lex_state = 2}, - [1127] = {.lex_state = 12, .external_lex_state = 2}, - [1128] = {.lex_state = 12, .external_lex_state = 2}, - [1129] = {.lex_state = 12, .external_lex_state = 2}, - [1130] = {.lex_state = 12, .external_lex_state = 2}, - [1131] = {.lex_state = 12, .external_lex_state = 2}, - [1132] = {.lex_state = 12, .external_lex_state = 2}, - [1133] = {.lex_state = 12, .external_lex_state = 2}, - [1134] = {.lex_state = 12, .external_lex_state = 2}, - [1135] = {.lex_state = 12, .external_lex_state = 2}, - [1136] = {.lex_state = 12, .external_lex_state = 2}, - [1137] = {.lex_state = 12, .external_lex_state = 2}, - [1138] = {.lex_state = 12, .external_lex_state = 2}, - [1139] = {.lex_state = 12, .external_lex_state = 2}, - [1140] = {.lex_state = 12, .external_lex_state = 2}, - [1141] = {.lex_state = 12, .external_lex_state = 2}, - [1142] = {.lex_state = 12, .external_lex_state = 2}, - [1143] = {.lex_state = 12, .external_lex_state = 2}, - [1144] = {.lex_state = 12, .external_lex_state = 2}, - [1145] = {.lex_state = 12, .external_lex_state = 2}, - [1146] = {.lex_state = 12, .external_lex_state = 2}, - [1147] = {.lex_state = 12, .external_lex_state = 2}, - [1148] = {.lex_state = 12, .external_lex_state = 2}, - [1149] = {.lex_state = 12, .external_lex_state = 2}, - [1150] = {.lex_state = 12, .external_lex_state = 2}, - [1151] = {.lex_state = 13, .external_lex_state = 2}, - [1152] = {.lex_state = 96, .external_lex_state = 2}, - [1153] = {.lex_state = 13, .external_lex_state = 2}, - [1154] = {.lex_state = 13, .external_lex_state = 2}, - [1155] = {.lex_state = 13, .external_lex_state = 2}, - [1156] = {.lex_state = 13, .external_lex_state = 2}, - [1157] = {.lex_state = 13, .external_lex_state = 2}, - [1158] = {.lex_state = 13, .external_lex_state = 2}, - [1159] = {.lex_state = 13, .external_lex_state = 2}, - [1160] = {.lex_state = 96, .external_lex_state = 2}, - [1161] = {.lex_state = 13, .external_lex_state = 2}, - [1162] = {.lex_state = 96, .external_lex_state = 2}, - [1163] = {.lex_state = 13, .external_lex_state = 2}, - [1164] = {.lex_state = 13, .external_lex_state = 2}, - [1165] = {.lex_state = 13, .external_lex_state = 2}, - [1166] = {.lex_state = 6, .external_lex_state = 4}, - [1167] = {.lex_state = 5, .external_lex_state = 4}, - [1168] = {.lex_state = 5, .external_lex_state = 4}, - [1169] = {.lex_state = 5, .external_lex_state = 4}, - [1170] = {.lex_state = 6, .external_lex_state = 4}, - [1171] = {.lex_state = 5, .external_lex_state = 4}, - [1172] = {.lex_state = 5, .external_lex_state = 4}, - [1173] = {.lex_state = 5, .external_lex_state = 4}, - [1174] = {.lex_state = 6, .external_lex_state = 4}, - [1175] = {.lex_state = 5, .external_lex_state = 3}, - [1176] = {.lex_state = 5, .external_lex_state = 3}, - [1177] = {.lex_state = 5, .external_lex_state = 3}, - [1178] = {.lex_state = 5, .external_lex_state = 3}, - [1179] = {.lex_state = 13, .external_lex_state = 2}, - [1180] = {.lex_state = 13, .external_lex_state = 2}, - [1181] = {.lex_state = 5, .external_lex_state = 4}, - [1182] = {.lex_state = 5, .external_lex_state = 4}, - [1183] = {.lex_state = 5, .external_lex_state = 4}, - [1184] = {.lex_state = 5, .external_lex_state = 4}, - [1185] = {.lex_state = 5, .external_lex_state = 4}, - [1186] = {.lex_state = 5, .external_lex_state = 4}, - [1187] = {.lex_state = 6, .external_lex_state = 4}, - [1188] = {.lex_state = 6, .external_lex_state = 4}, - [1189] = {.lex_state = 5, .external_lex_state = 3}, - [1190] = {.lex_state = 5, .external_lex_state = 4}, - [1191] = {.lex_state = 5, .external_lex_state = 4}, - [1192] = {.lex_state = 5, .external_lex_state = 3}, - [1193] = {.lex_state = 5, .external_lex_state = 4}, - [1194] = {.lex_state = 6, .external_lex_state = 3}, - [1195] = {.lex_state = 5, .external_lex_state = 3}, - [1196] = {.lex_state = 5, .external_lex_state = 3}, - [1197] = {.lex_state = 6, .external_lex_state = 3}, - [1198] = {.lex_state = 6, .external_lex_state = 3}, - [1199] = {.lex_state = 6, .external_lex_state = 3}, - [1200] = {.lex_state = 6, .external_lex_state = 3}, - [1201] = {.lex_state = 6, .external_lex_state = 3}, - [1202] = {.lex_state = 6, .external_lex_state = 3}, - [1203] = {.lex_state = 5, .external_lex_state = 3}, - [1204] = {.lex_state = 6, .external_lex_state = 3}, - [1205] = {.lex_state = 6, .external_lex_state = 3}, - [1206] = {.lex_state = 6, .external_lex_state = 3}, - [1207] = {.lex_state = 5, .external_lex_state = 3}, - [1208] = {.lex_state = 5, .external_lex_state = 4}, - [1209] = {.lex_state = 5, .external_lex_state = 4}, - [1210] = {.lex_state = 6, .external_lex_state = 3}, - [1211] = {.lex_state = 5, .external_lex_state = 3}, - [1212] = {.lex_state = 6, .external_lex_state = 3}, - [1213] = {.lex_state = 5, .external_lex_state = 4}, - [1214] = {.lex_state = 5, .external_lex_state = 3}, - [1215] = {.lex_state = 5, .external_lex_state = 4}, - [1216] = {.lex_state = 6, .external_lex_state = 3}, - [1217] = {.lex_state = 5, .external_lex_state = 4}, - [1218] = {.lex_state = 6, .external_lex_state = 4}, - [1219] = {.lex_state = 5, .external_lex_state = 4}, - [1220] = {.lex_state = 5, .external_lex_state = 4}, - [1221] = {.lex_state = 6, .external_lex_state = 3}, - [1222] = {.lex_state = 5, .external_lex_state = 4}, - [1223] = {.lex_state = 6, .external_lex_state = 4}, - [1224] = {.lex_state = 5, .external_lex_state = 4}, - [1225] = {.lex_state = 5, .external_lex_state = 4}, - [1226] = {.lex_state = 5, .external_lex_state = 4}, - [1227] = {.lex_state = 5, .external_lex_state = 4}, - [1228] = {.lex_state = 6, .external_lex_state = 3}, - [1229] = {.lex_state = 5, .external_lex_state = 4}, - [1230] = {.lex_state = 5, .external_lex_state = 3}, - [1231] = {.lex_state = 5, .external_lex_state = 3}, - [1232] = {.lex_state = 5, .external_lex_state = 3}, - [1233] = {.lex_state = 5, .external_lex_state = 4}, - [1234] = {.lex_state = 5, .external_lex_state = 3}, - [1235] = {.lex_state = 5, .external_lex_state = 3}, - [1236] = {.lex_state = 5, .external_lex_state = 3}, - [1237] = {.lex_state = 5, .external_lex_state = 4}, - [1238] = {.lex_state = 5, .external_lex_state = 3}, - [1239] = {.lex_state = 5, .external_lex_state = 3}, - [1240] = {.lex_state = 5, .external_lex_state = 3}, - [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 5, .external_lex_state = 4}, - [1243] = {.lex_state = 5, .external_lex_state = 3}, - [1244] = {.lex_state = 5, .external_lex_state = 4}, - [1245] = {.lex_state = 5, .external_lex_state = 3}, - [1246] = {.lex_state = 5, .external_lex_state = 3}, - [1247] = {.lex_state = 96, .external_lex_state = 2}, - [1248] = {.lex_state = 5, .external_lex_state = 3}, - [1249] = {.lex_state = 6, .external_lex_state = 3}, - [1250] = {.lex_state = 5, .external_lex_state = 3}, - [1251] = {.lex_state = 5, .external_lex_state = 3}, - [1252] = {.lex_state = 5, .external_lex_state = 3}, - [1253] = {.lex_state = 96, .external_lex_state = 2}, - [1254] = {.lex_state = 6, .external_lex_state = 3}, - [1255] = {.lex_state = 5, .external_lex_state = 3}, - [1256] = {.lex_state = 5, .external_lex_state = 3}, - [1257] = {.lex_state = 96, .external_lex_state = 2}, - [1258] = {.lex_state = 5, .external_lex_state = 4}, - [1259] = {.lex_state = 5, .external_lex_state = 3}, - [1260] = {.lex_state = 5, .external_lex_state = 3}, - [1261] = {.lex_state = 5, .external_lex_state = 3}, - [1262] = {.lex_state = 96, .external_lex_state = 2}, - [1263] = {.lex_state = 5, .external_lex_state = 3}, - [1264] = {.lex_state = 5, .external_lex_state = 3}, - [1265] = {.lex_state = 5, .external_lex_state = 4}, - [1266] = {.lex_state = 96, .external_lex_state = 2}, - [1267] = {.lex_state = 5, .external_lex_state = 3}, - [1268] = {.lex_state = 5, .external_lex_state = 3}, - [1269] = {.lex_state = 5, .external_lex_state = 3}, - [1270] = {.lex_state = 5, .external_lex_state = 3}, - [1271] = {.lex_state = 5, .external_lex_state = 3}, - [1272] = {.lex_state = 5, .external_lex_state = 3}, - [1273] = {.lex_state = 5, .external_lex_state = 3}, - [1274] = {.lex_state = 5, .external_lex_state = 4}, - [1275] = {.lex_state = 5, .external_lex_state = 3}, - [1276] = {.lex_state = 5, .external_lex_state = 3}, - [1277] = {.lex_state = 5, .external_lex_state = 3}, - [1278] = {.lex_state = 5, .external_lex_state = 4}, - [1279] = {.lex_state = 5, .external_lex_state = 3}, - [1280] = {.lex_state = 5, .external_lex_state = 3}, - [1281] = {.lex_state = 5, .external_lex_state = 3}, - [1282] = {.lex_state = 5, .external_lex_state = 4}, - [1283] = {.lex_state = 5, .external_lex_state = 4}, - [1284] = {.lex_state = 96, .external_lex_state = 2}, - [1285] = {.lex_state = 5, .external_lex_state = 4}, - [1286] = {.lex_state = 96, .external_lex_state = 2}, - [1287] = {.lex_state = 5, .external_lex_state = 4}, - [1288] = {.lex_state = 5, .external_lex_state = 3}, - [1289] = {.lex_state = 5, .external_lex_state = 3}, - [1290] = {.lex_state = 5, .external_lex_state = 4}, - [1291] = {.lex_state = 5, .external_lex_state = 3}, - [1292] = {.lex_state = 6, .external_lex_state = 3}, - [1293] = {.lex_state = 5, .external_lex_state = 3}, - [1294] = {.lex_state = 5, .external_lex_state = 4}, - [1295] = {.lex_state = 5, .external_lex_state = 3}, - [1296] = {.lex_state = 5, .external_lex_state = 4}, - [1297] = {.lex_state = 96, .external_lex_state = 2}, - [1298] = {.lex_state = 5, .external_lex_state = 3}, - [1299] = {.lex_state = 96, .external_lex_state = 2}, - [1300] = {.lex_state = 5, .external_lex_state = 3}, - [1301] = {.lex_state = 5, .external_lex_state = 3}, - [1302] = {.lex_state = 5, .external_lex_state = 3}, - [1303] = {.lex_state = 5, .external_lex_state = 4}, - [1304] = {.lex_state = 5, .external_lex_state = 3}, - [1305] = {.lex_state = 5, .external_lex_state = 3}, - [1306] = {.lex_state = 5, .external_lex_state = 3}, - [1307] = {.lex_state = 5, .external_lex_state = 3}, - [1308] = {.lex_state = 5, .external_lex_state = 4}, - [1309] = {.lex_state = 5, .external_lex_state = 3}, - [1310] = {.lex_state = 5, .external_lex_state = 3}, - [1311] = {.lex_state = 5, .external_lex_state = 4}, - [1312] = {.lex_state = 6, .external_lex_state = 3}, - [1313] = {.lex_state = 5, .external_lex_state = 3}, - [1314] = {.lex_state = 5, .external_lex_state = 3}, - [1315] = {.lex_state = 5, .external_lex_state = 3}, - [1316] = {.lex_state = 5, .external_lex_state = 4}, - [1317] = {.lex_state = 5, .external_lex_state = 4}, - [1318] = {.lex_state = 5, .external_lex_state = 4}, - [1319] = {.lex_state = 5, .external_lex_state = 4}, - [1320] = {.lex_state = 5, .external_lex_state = 3}, - [1321] = {.lex_state = 5, .external_lex_state = 4}, - [1322] = {.lex_state = 5, .external_lex_state = 4}, - [1323] = {.lex_state = 5, .external_lex_state = 4}, - [1324] = {.lex_state = 5, .external_lex_state = 3}, - [1325] = {.lex_state = 5, .external_lex_state = 4}, - [1326] = {.lex_state = 5, .external_lex_state = 3}, - [1327] = {.lex_state = 5, .external_lex_state = 4}, - [1328] = {.lex_state = 5, .external_lex_state = 3}, - [1329] = {.lex_state = 5, .external_lex_state = 4}, - [1330] = {.lex_state = 5, .external_lex_state = 4}, - [1331] = {.lex_state = 5, .external_lex_state = 4}, - [1332] = {.lex_state = 5, .external_lex_state = 4}, - [1333] = {.lex_state = 5, .external_lex_state = 4}, - [1334] = {.lex_state = 5, .external_lex_state = 4}, - [1335] = {.lex_state = 5, .external_lex_state = 4}, - [1336] = {.lex_state = 5, .external_lex_state = 3}, - [1337] = {.lex_state = 5, .external_lex_state = 3}, - [1338] = {.lex_state = 5, .external_lex_state = 3}, - [1339] = {.lex_state = 5, .external_lex_state = 4}, - [1340] = {.lex_state = 5, .external_lex_state = 3}, - [1341] = {.lex_state = 5, .external_lex_state = 4}, - [1342] = {.lex_state = 5, .external_lex_state = 4}, - [1343] = {.lex_state = 5, .external_lex_state = 4}, - [1344] = {.lex_state = 5, .external_lex_state = 3}, - [1345] = {.lex_state = 5, .external_lex_state = 4}, - [1346] = {.lex_state = 5, .external_lex_state = 3}, - [1347] = {.lex_state = 5, .external_lex_state = 4}, - [1348] = {.lex_state = 5, .external_lex_state = 3}, - [1349] = {.lex_state = 5, .external_lex_state = 4}, - [1350] = {.lex_state = 5, .external_lex_state = 4}, - [1351] = {.lex_state = 5, .external_lex_state = 3}, - [1352] = {.lex_state = 6, .external_lex_state = 3}, - [1353] = {.lex_state = 5, .external_lex_state = 4}, - [1354] = {.lex_state = 5, .external_lex_state = 3}, - [1355] = {.lex_state = 5, .external_lex_state = 3}, - [1356] = {.lex_state = 5, .external_lex_state = 4}, - [1357] = {.lex_state = 5, .external_lex_state = 3}, - [1358] = {.lex_state = 5, .external_lex_state = 3}, - [1359] = {.lex_state = 5, .external_lex_state = 3}, - [1360] = {.lex_state = 5, .external_lex_state = 3}, - [1361] = {.lex_state = 5, .external_lex_state = 3}, - [1362] = {.lex_state = 5, .external_lex_state = 3}, - [1363] = {.lex_state = 5, .external_lex_state = 3}, - [1364] = {.lex_state = 5, .external_lex_state = 4}, - [1365] = {.lex_state = 5, .external_lex_state = 4}, - [1366] = {.lex_state = 5, .external_lex_state = 3}, - [1367] = {.lex_state = 6, .external_lex_state = 3}, - [1368] = {.lex_state = 5, .external_lex_state = 3}, - [1369] = {.lex_state = 5, .external_lex_state = 3}, - [1370] = {.lex_state = 5, .external_lex_state = 3}, - [1371] = {.lex_state = 5, .external_lex_state = 3}, - [1372] = {.lex_state = 5, .external_lex_state = 3}, - [1373] = {.lex_state = 6, .external_lex_state = 3}, - [1374] = {.lex_state = 6, .external_lex_state = 3}, - [1375] = {.lex_state = 5, .external_lex_state = 3}, - [1376] = {.lex_state = 5, .external_lex_state = 3}, - [1377] = {.lex_state = 5, .external_lex_state = 3}, - [1378] = {.lex_state = 5, .external_lex_state = 3}, - [1379] = {.lex_state = 12, .external_lex_state = 2}, - [1380] = {.lex_state = 5, .external_lex_state = 4}, - [1381] = {.lex_state = 5, .external_lex_state = 3}, - [1382] = {.lex_state = 5, .external_lex_state = 3}, - [1383] = {.lex_state = 5, .external_lex_state = 3}, - [1384] = {.lex_state = 5, .external_lex_state = 3}, - [1385] = {.lex_state = 5, .external_lex_state = 3}, - [1386] = {.lex_state = 5, .external_lex_state = 3}, - [1387] = {.lex_state = 12, .external_lex_state = 2}, - [1388] = {.lex_state = 12, .external_lex_state = 2}, - [1389] = {.lex_state = 12, .external_lex_state = 2}, - [1390] = {.lex_state = 5, .external_lex_state = 3}, - [1391] = {.lex_state = 6, .external_lex_state = 3}, - [1392] = {.lex_state = 5, .external_lex_state = 4}, - [1393] = {.lex_state = 5, .external_lex_state = 3}, - [1394] = {.lex_state = 5, .external_lex_state = 3}, - [1395] = {.lex_state = 5, .external_lex_state = 3}, - [1396] = {.lex_state = 12, .external_lex_state = 2}, - [1397] = {.lex_state = 5, .external_lex_state = 3}, - [1398] = {.lex_state = 5, .external_lex_state = 4}, - [1399] = {.lex_state = 5, .external_lex_state = 3}, - [1400] = {.lex_state = 5, .external_lex_state = 4}, - [1401] = {.lex_state = 12, .external_lex_state = 2}, - [1402] = {.lex_state = 5, .external_lex_state = 3}, - [1403] = {.lex_state = 5, .external_lex_state = 3}, - [1404] = {.lex_state = 5, .external_lex_state = 3}, - [1405] = {.lex_state = 5, .external_lex_state = 3}, - [1406] = {.lex_state = 5, .external_lex_state = 3}, - [1407] = {.lex_state = 5, .external_lex_state = 3}, - [1408] = {.lex_state = 5, .external_lex_state = 3}, - [1409] = {.lex_state = 5, .external_lex_state = 3}, - [1410] = {.lex_state = 5, .external_lex_state = 3}, - [1411] = {.lex_state = 5, .external_lex_state = 3}, - [1412] = {.lex_state = 5, .external_lex_state = 3}, - [1413] = {.lex_state = 5, .external_lex_state = 3}, - [1414] = {.lex_state = 5, .external_lex_state = 3}, - [1415] = {.lex_state = 5, .external_lex_state = 3}, - [1416] = {.lex_state = 5, .external_lex_state = 3}, - [1417] = {.lex_state = 5, .external_lex_state = 4}, - [1418] = {.lex_state = 5, .external_lex_state = 3}, - [1419] = {.lex_state = 12, .external_lex_state = 2}, - [1420] = {.lex_state = 5, .external_lex_state = 3}, - [1421] = {.lex_state = 5, .external_lex_state = 3}, - [1422] = {.lex_state = 12, .external_lex_state = 2}, - [1423] = {.lex_state = 5, .external_lex_state = 3}, - [1424] = {.lex_state = 12, .external_lex_state = 2}, - [1425] = {.lex_state = 12, .external_lex_state = 2}, - [1426] = {.lex_state = 5, .external_lex_state = 3}, - [1427] = {.lex_state = 5, .external_lex_state = 3}, - [1428] = {.lex_state = 12, .external_lex_state = 2}, - [1429] = {.lex_state = 12, .external_lex_state = 2}, - [1430] = {.lex_state = 5, .external_lex_state = 3}, - [1431] = {.lex_state = 5, .external_lex_state = 3}, - [1432] = {.lex_state = 5, .external_lex_state = 3}, - [1433] = {.lex_state = 12, .external_lex_state = 2}, - [1434] = {.lex_state = 5, .external_lex_state = 3}, - [1435] = {.lex_state = 12, .external_lex_state = 2}, - [1436] = {.lex_state = 12, .external_lex_state = 2}, - [1437] = {.lex_state = 5, .external_lex_state = 3}, - [1438] = {.lex_state = 5, .external_lex_state = 3}, - [1439] = {.lex_state = 5, .external_lex_state = 3}, - [1440] = {.lex_state = 12, .external_lex_state = 2}, - [1441] = {.lex_state = 12, .external_lex_state = 2}, - [1442] = {.lex_state = 5, .external_lex_state = 3}, - [1443] = {.lex_state = 5, .external_lex_state = 3}, - [1444] = {.lex_state = 12, .external_lex_state = 2}, - [1445] = {.lex_state = 12, .external_lex_state = 2}, - [1446] = {.lex_state = 5, .external_lex_state = 3}, - [1447] = {.lex_state = 5, .external_lex_state = 3}, - [1448] = {.lex_state = 5, .external_lex_state = 3}, - [1449] = {.lex_state = 5, .external_lex_state = 3}, - [1450] = {.lex_state = 5, .external_lex_state = 3}, - [1451] = {.lex_state = 5, .external_lex_state = 3}, - [1452] = {.lex_state = 5, .external_lex_state = 3}, - [1453] = {.lex_state = 5, .external_lex_state = 3}, - [1454] = {.lex_state = 5, .external_lex_state = 3}, - [1455] = {.lex_state = 12, .external_lex_state = 2}, - [1456] = {.lex_state = 12, .external_lex_state = 2}, - [1457] = {.lex_state = 5, .external_lex_state = 3}, - [1458] = {.lex_state = 12, .external_lex_state = 2}, - [1459] = {.lex_state = 5, .external_lex_state = 3}, - [1460] = {.lex_state = 5, .external_lex_state = 3}, - [1461] = {.lex_state = 5, .external_lex_state = 3}, - [1462] = {.lex_state = 12, .external_lex_state = 2}, - [1463] = {.lex_state = 12, .external_lex_state = 2}, - [1464] = {.lex_state = 5, .external_lex_state = 3}, - [1465] = {.lex_state = 5, .external_lex_state = 3}, - [1466] = {.lex_state = 5, .external_lex_state = 3}, - [1467] = {.lex_state = 5, .external_lex_state = 3}, - [1468] = {.lex_state = 5, .external_lex_state = 3}, - [1469] = {.lex_state = 5, .external_lex_state = 3}, - [1470] = {.lex_state = 5, .external_lex_state = 3}, - [1471] = {.lex_state = 5, .external_lex_state = 3}, - [1472] = {.lex_state = 5, .external_lex_state = 3}, - [1473] = {.lex_state = 5, .external_lex_state = 3}, - [1474] = {.lex_state = 12, .external_lex_state = 2}, - [1475] = {.lex_state = 12, .external_lex_state = 2}, - [1476] = {.lex_state = 12, .external_lex_state = 2}, - [1477] = {.lex_state = 12, .external_lex_state = 2}, - [1478] = {.lex_state = 12, .external_lex_state = 2}, - [1479] = {.lex_state = 12, .external_lex_state = 2}, - [1480] = {.lex_state = 12, .external_lex_state = 2}, - [1481] = {.lex_state = 12, .external_lex_state = 2}, - [1482] = {.lex_state = 13, .external_lex_state = 5}, - [1483] = {.lex_state = 13, .external_lex_state = 5}, - [1484] = {.lex_state = 13, .external_lex_state = 5}, - [1485] = {.lex_state = 12, .external_lex_state = 2}, - [1486] = {.lex_state = 13, .external_lex_state = 5}, - [1487] = {.lex_state = 12, .external_lex_state = 2}, - [1488] = {.lex_state = 12, .external_lex_state = 2}, - [1489] = {.lex_state = 12, .external_lex_state = 2}, - [1490] = {.lex_state = 12, .external_lex_state = 2}, - [1491] = {.lex_state = 12, .external_lex_state = 2}, - [1492] = {.lex_state = 12, .external_lex_state = 2}, - [1493] = {.lex_state = 13, .external_lex_state = 5}, - [1494] = {.lex_state = 12, .external_lex_state = 2}, - [1495] = {.lex_state = 12, .external_lex_state = 2}, - [1496] = {.lex_state = 12, .external_lex_state = 2}, - [1497] = {.lex_state = 96, .external_lex_state = 2}, - [1498] = {.lex_state = 96, .external_lex_state = 2}, - [1499] = {.lex_state = 96, .external_lex_state = 2}, - [1500] = {.lex_state = 96, .external_lex_state = 2}, - [1501] = {.lex_state = 96, .external_lex_state = 2}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 96, .external_lex_state = 2}, - [1504] = {.lex_state = 7, .external_lex_state = 4}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 13, .external_lex_state = 5}, - [1508] = {.lex_state = 13, .external_lex_state = 5}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 3}, - [1511] = {.lex_state = 7, .external_lex_state = 4}, - [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 4}, - [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, - [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 96, .external_lex_state = 2}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, - [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 7, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 7, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 4}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 4}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 7, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 3}, - [1609] = {.lex_state = 7, .external_lex_state = 4}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 4}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 4}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 7, .external_lex_state = 3}, - [1669] = {.lex_state = 7, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 12, .external_lex_state = 5}, - [1690] = {.lex_state = 7, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, - [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 7, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 4}, - [1711] = {.lex_state = 7, .external_lex_state = 4}, - [1712] = {.lex_state = 7, .external_lex_state = 4}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, - [1719] = {.lex_state = 12, .external_lex_state = 5}, - [1720] = {.lex_state = 12, .external_lex_state = 5}, - [1721] = {.lex_state = 12, .external_lex_state = 5}, - [1722] = {.lex_state = 12, .external_lex_state = 5}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 12, .external_lex_state = 5}, - [1725] = {.lex_state = 13, .external_lex_state = 5}, - [1726] = {.lex_state = 7, .external_lex_state = 4}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 4}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .external_lex_state = 4}, - [1731] = {.lex_state = 7, .external_lex_state = 3}, - [1732] = {.lex_state = 7, .external_lex_state = 4}, - [1733] = {.lex_state = 12, .external_lex_state = 5}, - [1734] = {.lex_state = 7, .external_lex_state = 4}, - [1735] = {.lex_state = 7, .external_lex_state = 4}, - [1736] = {.lex_state = 12, .external_lex_state = 5}, - [1737] = {.lex_state = 7, .external_lex_state = 4}, - [1738] = {.lex_state = 12, .external_lex_state = 5}, - [1739] = {.lex_state = 7, .external_lex_state = 4}, - [1740] = {.lex_state = 12, .external_lex_state = 5}, - [1741] = {.lex_state = 7, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 3}, - [1743] = {.lex_state = 7, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 7, .external_lex_state = 3}, - [1747] = {.lex_state = 7, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 7, .external_lex_state = 3}, - [1750] = {.lex_state = 7, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 7, .external_lex_state = 4}, - [1753] = {.lex_state = 7, .external_lex_state = 3}, - [1754] = {.lex_state = 7, .external_lex_state = 3}, - [1755] = {.lex_state = 7, .external_lex_state = 3}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 3}, - [1761] = {.lex_state = 7, .external_lex_state = 3}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 3}, - [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 12, .external_lex_state = 5}, - [1767] = {.lex_state = 7, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 4}, - [1769] = {.lex_state = 12, .external_lex_state = 5}, - [1770] = {.lex_state = 7, .external_lex_state = 4}, - [1771] = {.lex_state = 7, .external_lex_state = 3}, - [1772] = {.lex_state = 12, .external_lex_state = 5}, - [1773] = {.lex_state = 12, .external_lex_state = 5}, - [1774] = {.lex_state = 12, .external_lex_state = 5}, - [1775] = {.lex_state = 12, .external_lex_state = 5}, - [1776] = {.lex_state = 7, .external_lex_state = 4}, - [1777] = {.lex_state = 12, .external_lex_state = 5}, - [1778] = {.lex_state = 7, .external_lex_state = 3}, - [1779] = {.lex_state = 7, .external_lex_state = 3}, - [1780] = {.lex_state = 7, .external_lex_state = 3}, - [1781] = {.lex_state = 7, .external_lex_state = 3}, - [1782] = {.lex_state = 7, .external_lex_state = 4}, - [1783] = {.lex_state = 7, .external_lex_state = 4}, - [1784] = {.lex_state = 7, .external_lex_state = 4}, - [1785] = {.lex_state = 12, .external_lex_state = 5}, - [1786] = {.lex_state = 12, .external_lex_state = 5}, - [1787] = {.lex_state = 7, .external_lex_state = 4}, - [1788] = {.lex_state = 7, .external_lex_state = 4}, - [1789] = {.lex_state = 7, .external_lex_state = 4}, - [1790] = {.lex_state = 7, .external_lex_state = 4}, - [1791] = {.lex_state = 12, .external_lex_state = 5}, - [1792] = {.lex_state = 7, .external_lex_state = 4}, - [1793] = {.lex_state = 7, .external_lex_state = 3}, - [1794] = {.lex_state = 7, .external_lex_state = 4}, - [1795] = {.lex_state = 7, .external_lex_state = 3}, - [1796] = {.lex_state = 7, .external_lex_state = 4}, - [1797] = {.lex_state = 7, .external_lex_state = 4}, - [1798] = {.lex_state = 7, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 4}, - [1802] = {.lex_state = 7, .external_lex_state = 4}, - [1803] = {.lex_state = 7, .external_lex_state = 4}, - [1804] = {.lex_state = 7, .external_lex_state = 4}, - [1805] = {.lex_state = 7, .external_lex_state = 4}, - [1806] = {.lex_state = 7, .external_lex_state = 4}, - [1807] = {.lex_state = 7, .external_lex_state = 4}, - [1808] = {.lex_state = 7, .external_lex_state = 4}, - [1809] = {.lex_state = 7, .external_lex_state = 4}, - [1810] = {.lex_state = 7, .external_lex_state = 4}, - [1811] = {.lex_state = 7, .external_lex_state = 4}, - [1812] = {.lex_state = 7, .external_lex_state = 4}, - [1813] = {.lex_state = 7, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 4}, - [1815] = {.lex_state = 7, .external_lex_state = 4}, - [1816] = {.lex_state = 7, .external_lex_state = 4}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 4}, - [1819] = {.lex_state = 7, .external_lex_state = 4}, - [1820] = {.lex_state = 7, .external_lex_state = 4}, - [1821] = {.lex_state = 7, .external_lex_state = 4}, - [1822] = {.lex_state = 7, .external_lex_state = 4}, - [1823] = {.lex_state = 7, .external_lex_state = 4}, - [1824] = {.lex_state = 8, .external_lex_state = 3}, - [1825] = {.lex_state = 12, .external_lex_state = 5}, - [1826] = {.lex_state = 7, .external_lex_state = 4}, - [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 4}, - [1829] = {.lex_state = 7, .external_lex_state = 4}, - [1830] = {.lex_state = 7, .external_lex_state = 4}, - [1831] = {.lex_state = 12, .external_lex_state = 5}, - [1832] = {.lex_state = 7, .external_lex_state = 4}, - [1833] = {.lex_state = 7, .external_lex_state = 4}, - [1834] = {.lex_state = 7, .external_lex_state = 3}, - [1835] = {.lex_state = 12, .external_lex_state = 5}, - [1836] = {.lex_state = 7, .external_lex_state = 4}, - [1837] = {.lex_state = 7, .external_lex_state = 4}, - [1838] = {.lex_state = 7, .external_lex_state = 4}, - [1839] = {.lex_state = 7, .external_lex_state = 4}, - [1840] = {.lex_state = 7, .external_lex_state = 4}, - [1841] = {.lex_state = 7, .external_lex_state = 4}, - [1842] = {.lex_state = 7, .external_lex_state = 4}, - [1843] = {.lex_state = 7, .external_lex_state = 4}, - [1844] = {.lex_state = 7, .external_lex_state = 4}, - [1845] = {.lex_state = 7, .external_lex_state = 4}, - [1846] = {.lex_state = 7, .external_lex_state = 4}, - [1847] = {.lex_state = 7, .external_lex_state = 4}, - [1848] = {.lex_state = 7, .external_lex_state = 4}, - [1849] = {.lex_state = 7, .external_lex_state = 4}, - [1850] = {.lex_state = 7, .external_lex_state = 4}, - [1851] = {.lex_state = 7, .external_lex_state = 4}, - [1852] = {.lex_state = 7, .external_lex_state = 4}, - [1853] = {.lex_state = 7, .external_lex_state = 4}, - [1854] = {.lex_state = 7, .external_lex_state = 4}, - [1855] = {.lex_state = 7, .external_lex_state = 4}, - [1856] = {.lex_state = 7, .external_lex_state = 4}, - [1857] = {.lex_state = 7, .external_lex_state = 4}, - [1858] = {.lex_state = 7, .external_lex_state = 4}, - [1859] = {.lex_state = 7, .external_lex_state = 4}, - [1860] = {.lex_state = 7, .external_lex_state = 4}, - [1861] = {.lex_state = 7, .external_lex_state = 4}, - [1862] = {.lex_state = 7, .external_lex_state = 4}, - [1863] = {.lex_state = 7, .external_lex_state = 4}, - [1864] = {.lex_state = 7, .external_lex_state = 4}, - [1865] = {.lex_state = 7, .external_lex_state = 4}, - [1866] = {.lex_state = 7, .external_lex_state = 3}, - [1867] = {.lex_state = 7, .external_lex_state = 4}, - [1868] = {.lex_state = 7, .external_lex_state = 3}, - [1869] = {.lex_state = 7, .external_lex_state = 4}, - [1870] = {.lex_state = 7, .external_lex_state = 4}, - [1871] = {.lex_state = 12, .external_lex_state = 5}, - [1872] = {.lex_state = 12, .external_lex_state = 5}, - [1873] = {.lex_state = 7, .external_lex_state = 4}, - [1874] = {.lex_state = 7, .external_lex_state = 4}, - [1875] = {.lex_state = 7, .external_lex_state = 4}, - [1876] = {.lex_state = 7, .external_lex_state = 4}, - [1877] = {.lex_state = 7, .external_lex_state = 4}, - [1878] = {.lex_state = 7, .external_lex_state = 4}, - [1879] = {.lex_state = 12, .external_lex_state = 2}, - [1880] = {.lex_state = 7, .external_lex_state = 4}, - [1881] = {.lex_state = 7, .external_lex_state = 4}, - [1882] = {.lex_state = 7, .external_lex_state = 4}, - [1883] = {.lex_state = 7, .external_lex_state = 4}, - [1884] = {.lex_state = 7, .external_lex_state = 4}, - [1885] = {.lex_state = 7, .external_lex_state = 3}, - [1886] = {.lex_state = 7, .external_lex_state = 3}, - [1887] = {.lex_state = 7, .external_lex_state = 3}, - [1888] = {.lex_state = 7, .external_lex_state = 3}, - [1889] = {.lex_state = 7, .external_lex_state = 3}, - [1890] = {.lex_state = 7, .external_lex_state = 3}, - [1891] = {.lex_state = 12, .external_lex_state = 2}, - [1892] = {.lex_state = 7, .external_lex_state = 3}, - [1893] = {.lex_state = 7, .external_lex_state = 4}, - [1894] = {.lex_state = 7, .external_lex_state = 3}, - [1895] = {.lex_state = 7, .external_lex_state = 3}, - [1896] = {.lex_state = 7, .external_lex_state = 4}, - [1897] = {.lex_state = 7, .external_lex_state = 3}, - [1898] = {.lex_state = 7, .external_lex_state = 3}, - [1899] = {.lex_state = 7, .external_lex_state = 3}, - [1900] = {.lex_state = 7, .external_lex_state = 3}, - [1901] = {.lex_state = 7, .external_lex_state = 3}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 7, .external_lex_state = 3}, - [1904] = {.lex_state = 7, .external_lex_state = 3}, - [1905] = {.lex_state = 7, .external_lex_state = 4}, - [1906] = {.lex_state = 7, .external_lex_state = 3}, - [1907] = {.lex_state = 7, .external_lex_state = 3}, - [1908] = {.lex_state = 7, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 4}, - [1910] = {.lex_state = 7, .external_lex_state = 4}, - [1911] = {.lex_state = 7, .external_lex_state = 4}, - [1912] = {.lex_state = 7, .external_lex_state = 4}, - [1913] = {.lex_state = 7, .external_lex_state = 3}, - [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 7, .external_lex_state = 4}, - [1916] = {.lex_state = 12, .external_lex_state = 5}, - [1917] = {.lex_state = 12, .external_lex_state = 2}, - [1918] = {.lex_state = 7, .external_lex_state = 4}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, - [1920] = {.lex_state = 7, .external_lex_state = 3}, - [1921] = {.lex_state = 7, .external_lex_state = 4}, - [1922] = {.lex_state = 7, .external_lex_state = 4}, - [1923] = {.lex_state = 7, .external_lex_state = 4}, - [1924] = {.lex_state = 7, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 4}, - [1926] = {.lex_state = 7, .external_lex_state = 4}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 12, .external_lex_state = 5}, - [1929] = {.lex_state = 7, .external_lex_state = 4}, - [1930] = {.lex_state = 7, .external_lex_state = 3}, - [1931] = {.lex_state = 7, .external_lex_state = 4}, - [1932] = {.lex_state = 7, .external_lex_state = 4}, - [1933] = {.lex_state = 7, .external_lex_state = 3}, - [1934] = {.lex_state = 7, .external_lex_state = 3}, - [1935] = {.lex_state = 7, .external_lex_state = 4}, - [1936] = {.lex_state = 7, .external_lex_state = 3}, - [1937] = {.lex_state = 7, .external_lex_state = 4}, - [1938] = {.lex_state = 7, .external_lex_state = 4}, - [1939] = {.lex_state = 7, .external_lex_state = 4}, - [1940] = {.lex_state = 7, .external_lex_state = 4}, - [1941] = {.lex_state = 7, .external_lex_state = 4}, - [1942] = {.lex_state = 7, .external_lex_state = 4}, - [1943] = {.lex_state = 7, .external_lex_state = 4}, - [1944] = {.lex_state = 7, .external_lex_state = 4}, - [1945] = {.lex_state = 7, .external_lex_state = 4}, - [1946] = {.lex_state = 7, .external_lex_state = 4}, - [1947] = {.lex_state = 7, .external_lex_state = 4}, - [1948] = {.lex_state = 12, .external_lex_state = 2}, - [1949] = {.lex_state = 7, .external_lex_state = 3}, - [1950] = {.lex_state = 7, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 4}, - [1952] = {.lex_state = 7, .external_lex_state = 4}, - [1953] = {.lex_state = 12, .external_lex_state = 2}, - [1954] = {.lex_state = 7, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 7, .external_lex_state = 4}, - [1957] = {.lex_state = 7, .external_lex_state = 4}, - [1958] = {.lex_state = 7, .external_lex_state = 4}, - [1959] = {.lex_state = 7, .external_lex_state = 3}, - [1960] = {.lex_state = 7, .external_lex_state = 3}, - [1961] = {.lex_state = 7, .external_lex_state = 4}, - [1962] = {.lex_state = 12, .external_lex_state = 5}, - [1963] = {.lex_state = 7, .external_lex_state = 4}, - [1964] = {.lex_state = 96, .external_lex_state = 2}, - [1965] = {.lex_state = 7, .external_lex_state = 4}, - [1966] = {.lex_state = 7, .external_lex_state = 4}, - [1967] = {.lex_state = 7, .external_lex_state = 4}, - [1968] = {.lex_state = 7, .external_lex_state = 4}, - [1969] = {.lex_state = 7, .external_lex_state = 4}, - [1970] = {.lex_state = 12, .external_lex_state = 5}, - [1971] = {.lex_state = 12, .external_lex_state = 5}, - [1972] = {.lex_state = 7, .external_lex_state = 4}, - [1973] = {.lex_state = 7, .external_lex_state = 4}, - [1974] = {.lex_state = 7, .external_lex_state = 4}, - [1975] = {.lex_state = 7, .external_lex_state = 3}, - [1976] = {.lex_state = 7, .external_lex_state = 4}, - [1977] = {.lex_state = 12, .external_lex_state = 5}, - [1978] = {.lex_state = 7, .external_lex_state = 4}, - [1979] = {.lex_state = 7, .external_lex_state = 4}, - [1980] = {.lex_state = 7, .external_lex_state = 4}, - [1981] = {.lex_state = 7, .external_lex_state = 4}, - [1982] = {.lex_state = 7, .external_lex_state = 4}, - [1983] = {.lex_state = 7, .external_lex_state = 4}, - [1984] = {.lex_state = 7, .external_lex_state = 4}, - [1985] = {.lex_state = 7, .external_lex_state = 4}, - [1986] = {.lex_state = 7, .external_lex_state = 4}, - [1987] = {.lex_state = 7, .external_lex_state = 4}, - [1988] = {.lex_state = 7, .external_lex_state = 4}, - [1989] = {.lex_state = 7, .external_lex_state = 4}, - [1990] = {.lex_state = 7, .external_lex_state = 4}, - [1991] = {.lex_state = 7, .external_lex_state = 4}, - [1992] = {.lex_state = 7, .external_lex_state = 4}, - [1993] = {.lex_state = 7, .external_lex_state = 4}, - [1994] = {.lex_state = 7, .external_lex_state = 4}, - [1995] = {.lex_state = 12, .external_lex_state = 5}, - [1996] = {.lex_state = 7, .external_lex_state = 4}, - [1997] = {.lex_state = 7, .external_lex_state = 4}, - [1998] = {.lex_state = 7, .external_lex_state = 4}, - [1999] = {.lex_state = 7, .external_lex_state = 4}, - [2000] = {.lex_state = 7, .external_lex_state = 4}, - [2001] = {.lex_state = 7, .external_lex_state = 4}, - [2002] = {.lex_state = 7, .external_lex_state = 4}, - [2003] = {.lex_state = 7, .external_lex_state = 3}, - [2004] = {.lex_state = 7, .external_lex_state = 3}, - [2005] = {.lex_state = 7, .external_lex_state = 4}, - [2006] = {.lex_state = 7, .external_lex_state = 4}, - [2007] = {.lex_state = 7, .external_lex_state = 4}, - [2008] = {.lex_state = 7, .external_lex_state = 4}, - [2009] = {.lex_state = 7, .external_lex_state = 4}, - [2010] = {.lex_state = 7, .external_lex_state = 4}, - [2011] = {.lex_state = 7, .external_lex_state = 4}, - [2012] = {.lex_state = 7, .external_lex_state = 4}, - [2013] = {.lex_state = 7, .external_lex_state = 4}, - [2014] = {.lex_state = 7, .external_lex_state = 4}, - [2015] = {.lex_state = 7, .external_lex_state = 4}, - [2016] = {.lex_state = 12, .external_lex_state = 5}, - [2017] = {.lex_state = 7, .external_lex_state = 4}, - [2018] = {.lex_state = 7, .external_lex_state = 4}, - [2019] = {.lex_state = 7, .external_lex_state = 4}, - [2020] = {.lex_state = 7, .external_lex_state = 4}, - [2021] = {.lex_state = 7, .external_lex_state = 3}, - [2022] = {.lex_state = 7, .external_lex_state = 4}, - [2023] = {.lex_state = 7, .external_lex_state = 4}, - [2024] = {.lex_state = 7, .external_lex_state = 4}, - [2025] = {.lex_state = 7, .external_lex_state = 4}, - [2026] = {.lex_state = 7, .external_lex_state = 3}, - [2027] = {.lex_state = 7, .external_lex_state = 4}, - [2028] = {.lex_state = 7, .external_lex_state = 3}, - [2029] = {.lex_state = 7, .external_lex_state = 4}, - [2030] = {.lex_state = 7, .external_lex_state = 4}, - [2031] = {.lex_state = 7, .external_lex_state = 4}, - [2032] = {.lex_state = 7, .external_lex_state = 4}, - [2033] = {.lex_state = 7, .external_lex_state = 4}, - [2034] = {.lex_state = 7, .external_lex_state = 4}, - [2035] = {.lex_state = 7, .external_lex_state = 4}, - [2036] = {.lex_state = 7, .external_lex_state = 4}, - [2037] = {.lex_state = 7, .external_lex_state = 4}, - [2038] = {.lex_state = 96, .external_lex_state = 2}, - [2039] = {.lex_state = 7, .external_lex_state = 4}, - [2040] = {.lex_state = 7, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 4}, - [2042] = {.lex_state = 7, .external_lex_state = 4}, - [2043] = {.lex_state = 7, .external_lex_state = 4}, - [2044] = {.lex_state = 7, .external_lex_state = 4}, - [2045] = {.lex_state = 7, .external_lex_state = 3}, - [2046] = {.lex_state = 7, .external_lex_state = 4}, - [2047] = {.lex_state = 7, .external_lex_state = 4}, - [2048] = {.lex_state = 7, .external_lex_state = 4}, - [2049] = {.lex_state = 7, .external_lex_state = 4}, - [2050] = {.lex_state = 7, .external_lex_state = 4}, - [2051] = {.lex_state = 7, .external_lex_state = 4}, - [2052] = {.lex_state = 7, .external_lex_state = 4}, - [2053] = {.lex_state = 7, .external_lex_state = 4}, - [2054] = {.lex_state = 7, .external_lex_state = 4}, - [2055] = {.lex_state = 7, .external_lex_state = 4}, - [2056] = {.lex_state = 7, .external_lex_state = 4}, - [2057] = {.lex_state = 7, .external_lex_state = 4}, - [2058] = {.lex_state = 7, .external_lex_state = 4}, - [2059] = {.lex_state = 7, .external_lex_state = 4}, - [2060] = {.lex_state = 7, .external_lex_state = 4}, - [2061] = {.lex_state = 7, .external_lex_state = 4}, - [2062] = {.lex_state = 7, .external_lex_state = 4}, - [2063] = {.lex_state = 7, .external_lex_state = 4}, - [2064] = {.lex_state = 7, .external_lex_state = 4}, - [2065] = {.lex_state = 7, .external_lex_state = 4}, - [2066] = {.lex_state = 7, .external_lex_state = 4}, - [2067] = {.lex_state = 12, .external_lex_state = 5}, - [2068] = {.lex_state = 12, .external_lex_state = 5}, - [2069] = {.lex_state = 7, .external_lex_state = 4}, - [2070] = {.lex_state = 12, .external_lex_state = 5}, - [2071] = {.lex_state = 7, .external_lex_state = 4}, - [2072] = {.lex_state = 12, .external_lex_state = 5}, - [2073] = {.lex_state = 12, .external_lex_state = 5}, - [2074] = {.lex_state = 7, .external_lex_state = 4}, - [2075] = {.lex_state = 7, .external_lex_state = 4}, - [2076] = {.lex_state = 7, .external_lex_state = 4}, - [2077] = {.lex_state = 12, .external_lex_state = 2}, - [2078] = {.lex_state = 7, .external_lex_state = 4}, - [2079] = {.lex_state = 7, .external_lex_state = 4}, - [2080] = {.lex_state = 7, .external_lex_state = 4}, - [2081] = {.lex_state = 7, .external_lex_state = 4}, - [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 7, .external_lex_state = 3}, - [2084] = {.lex_state = 7, .external_lex_state = 3}, - [2085] = {.lex_state = 7, .external_lex_state = 3}, - [2086] = {.lex_state = 7, .external_lex_state = 3}, - [2087] = {.lex_state = 7, .external_lex_state = 3}, - [2088] = {.lex_state = 7, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 3}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, - [2092] = {.lex_state = 7, .external_lex_state = 3}, - [2093] = {.lex_state = 7, .external_lex_state = 3}, - [2094] = {.lex_state = 7, .external_lex_state = 3}, - [2095] = {.lex_state = 7, .external_lex_state = 3}, - [2096] = {.lex_state = 7, .external_lex_state = 3}, - [2097] = {.lex_state = 7, .external_lex_state = 3}, - [2098] = {.lex_state = 7, .external_lex_state = 3}, - [2099] = {.lex_state = 7, .external_lex_state = 3}, - [2100] = {.lex_state = 7, .external_lex_state = 3}, - [2101] = {.lex_state = 7, .external_lex_state = 3}, - [2102] = {.lex_state = 7, .external_lex_state = 3}, - [2103] = {.lex_state = 7, .external_lex_state = 3}, - [2104] = {.lex_state = 7, .external_lex_state = 3}, - [2105] = {.lex_state = 7, .external_lex_state = 3}, - [2106] = {.lex_state = 7, .external_lex_state = 3}, - [2107] = {.lex_state = 7, .external_lex_state = 3}, - [2108] = {.lex_state = 7, .external_lex_state = 3}, - [2109] = {.lex_state = 7, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, - [2111] = {.lex_state = 7, .external_lex_state = 3}, - [2112] = {.lex_state = 7, .external_lex_state = 4}, - [2113] = {.lex_state = 7, .external_lex_state = 3}, - [2114] = {.lex_state = 7, .external_lex_state = 4}, - [2115] = {.lex_state = 7, .external_lex_state = 4}, - [2116] = {.lex_state = 7, .external_lex_state = 3}, - [2117] = {.lex_state = 7, .external_lex_state = 4}, - [2118] = {.lex_state = 7, .external_lex_state = 4}, - [2119] = {.lex_state = 12, .external_lex_state = 5}, - [2120] = {.lex_state = 7, .external_lex_state = 4}, - [2121] = {.lex_state = 7, .external_lex_state = 4}, - [2122] = {.lex_state = 12, .external_lex_state = 5}, - [2123] = {.lex_state = 12, .external_lex_state = 5}, - [2124] = {.lex_state = 7, .external_lex_state = 3}, - [2125] = {.lex_state = 7, .external_lex_state = 4}, - [2126] = {.lex_state = 7, .external_lex_state = 3}, - [2127] = {.lex_state = 7, .external_lex_state = 4}, - [2128] = {.lex_state = 7, .external_lex_state = 3}, - [2129] = {.lex_state = 7, .external_lex_state = 4}, - [2130] = {.lex_state = 7, .external_lex_state = 4}, - [2131] = {.lex_state = 7, .external_lex_state = 4}, - [2132] = {.lex_state = 7, .external_lex_state = 4}, - [2133] = {.lex_state = 7, .external_lex_state = 4}, - [2134] = {.lex_state = 7, .external_lex_state = 4}, - [2135] = {.lex_state = 7, .external_lex_state = 4}, - [2136] = {.lex_state = 7, .external_lex_state = 3}, - [2137] = {.lex_state = 7, .external_lex_state = 4}, - [2138] = {.lex_state = 12, .external_lex_state = 2}, - [2139] = {.lex_state = 7, .external_lex_state = 3}, - [2140] = {.lex_state = 12, .external_lex_state = 2}, - [2141] = {.lex_state = 7, .external_lex_state = 4}, - [2142] = {.lex_state = 7, .external_lex_state = 3}, - [2143] = {.lex_state = 7, .external_lex_state = 3}, - [2144] = {.lex_state = 7, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 7, .external_lex_state = 3}, - [2147] = {.lex_state = 7, .external_lex_state = 3}, - [2148] = {.lex_state = 12, .external_lex_state = 2}, - [2149] = {.lex_state = 7, .external_lex_state = 3}, - [2150] = {.lex_state = 12, .external_lex_state = 2}, - [2151] = {.lex_state = 12, .external_lex_state = 5}, - [2152] = {.lex_state = 12, .external_lex_state = 5}, - [2153] = {.lex_state = 7, .external_lex_state = 3}, - [2154] = {.lex_state = 7, .external_lex_state = 3}, - [2155] = {.lex_state = 96, .external_lex_state = 2}, - [2156] = {.lex_state = 12, .external_lex_state = 5}, - [2157] = {.lex_state = 12, .external_lex_state = 5}, - [2158] = {.lex_state = 7, .external_lex_state = 3}, - [2159] = {.lex_state = 7, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 4}, - [2161] = {.lex_state = 7, .external_lex_state = 4}, - [2162] = {.lex_state = 7, .external_lex_state = 4}, - [2163] = {.lex_state = 12, .external_lex_state = 5}, - [2164] = {.lex_state = 12, .external_lex_state = 5}, - [2165] = {.lex_state = 12, .external_lex_state = 5}, - [2166] = {.lex_state = 12, .external_lex_state = 5}, - [2167] = {.lex_state = 7, .external_lex_state = 4}, - [2168] = {.lex_state = 12, .external_lex_state = 5}, - [2169] = {.lex_state = 12, .external_lex_state = 5}, - [2170] = {.lex_state = 7, .external_lex_state = 4}, - [2171] = {.lex_state = 7, .external_lex_state = 4}, - [2172] = {.lex_state = 7, .external_lex_state = 4}, - [2173] = {.lex_state = 7, .external_lex_state = 4}, - [2174] = {.lex_state = 12, .external_lex_state = 5}, - [2175] = {.lex_state = 7, .external_lex_state = 3}, - [2176] = {.lex_state = 8, .external_lex_state = 4}, - [2177] = {.lex_state = 7, .external_lex_state = 3}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, - [2179] = {.lex_state = 7, .external_lex_state = 3}, - [2180] = {.lex_state = 7, .external_lex_state = 3}, - [2181] = {.lex_state = 7, .external_lex_state = 4}, - [2182] = {.lex_state = 7, .external_lex_state = 3}, - [2183] = {.lex_state = 7, .external_lex_state = 4}, - [2184] = {.lex_state = 7, .external_lex_state = 4}, - [2185] = {.lex_state = 7, .external_lex_state = 4}, - [2186] = {.lex_state = 7, .external_lex_state = 4}, - [2187] = {.lex_state = 7, .external_lex_state = 3}, - [2188] = {.lex_state = 7, .external_lex_state = 4}, - [2189] = {.lex_state = 7, .external_lex_state = 4}, - [2190] = {.lex_state = 7, .external_lex_state = 4}, - [2191] = {.lex_state = 7, .external_lex_state = 4}, - [2192] = {.lex_state = 7, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 4}, - [2194] = {.lex_state = 7, .external_lex_state = 3}, - [2195] = {.lex_state = 7, .external_lex_state = 4}, - [2196] = {.lex_state = 7, .external_lex_state = 4}, - [2197] = {.lex_state = 7, .external_lex_state = 4}, - [2198] = {.lex_state = 7, .external_lex_state = 4}, - [2199] = {.lex_state = 7, .external_lex_state = 4}, - [2200] = {.lex_state = 7, .external_lex_state = 4}, - [2201] = {.lex_state = 7, .external_lex_state = 4}, - [2202] = {.lex_state = 7, .external_lex_state = 4}, - [2203] = {.lex_state = 7, .external_lex_state = 4}, - [2204] = {.lex_state = 7, .external_lex_state = 4}, - [2205] = {.lex_state = 7, .external_lex_state = 4}, - [2206] = {.lex_state = 7, .external_lex_state = 4}, - [2207] = {.lex_state = 7, .external_lex_state = 4}, - [2208] = {.lex_state = 7, .external_lex_state = 4}, - [2209] = {.lex_state = 7, .external_lex_state = 4}, - [2210] = {.lex_state = 7, .external_lex_state = 4}, - [2211] = {.lex_state = 7, .external_lex_state = 4}, - [2212] = {.lex_state = 12, .external_lex_state = 5}, - [2213] = {.lex_state = 12, .external_lex_state = 5}, - [2214] = {.lex_state = 7, .external_lex_state = 3}, - [2215] = {.lex_state = 7, .external_lex_state = 4}, - [2216] = {.lex_state = 7, .external_lex_state = 4}, - [2217] = {.lex_state = 7, .external_lex_state = 4}, - [2218] = {.lex_state = 12, .external_lex_state = 5}, - [2219] = {.lex_state = 12, .external_lex_state = 5}, - [2220] = {.lex_state = 12, .external_lex_state = 5}, - [2221] = {.lex_state = 7, .external_lex_state = 3}, - [2222] = {.lex_state = 7, .external_lex_state = 4}, - [2223] = {.lex_state = 7, .external_lex_state = 4}, - [2224] = {.lex_state = 12, .external_lex_state = 5}, - [2225] = {.lex_state = 7, .external_lex_state = 4}, - [2226] = {.lex_state = 12, .external_lex_state = 5}, - [2227] = {.lex_state = 12, .external_lex_state = 5}, - [2228] = {.lex_state = 12, .external_lex_state = 5}, - [2229] = {.lex_state = 12, .external_lex_state = 5}, - [2230] = {.lex_state = 12, .external_lex_state = 5}, - [2231] = {.lex_state = 12, .external_lex_state = 5}, - [2232] = {.lex_state = 7, .external_lex_state = 4}, - [2233] = {.lex_state = 7, .external_lex_state = 3}, - [2234] = {.lex_state = 7, .external_lex_state = 4}, - [2235] = {.lex_state = 7, .external_lex_state = 4}, - [2236] = {.lex_state = 7, .external_lex_state = 3}, - [2237] = {.lex_state = 7, .external_lex_state = 4}, - [2238] = {.lex_state = 7, .external_lex_state = 4}, - [2239] = {.lex_state = 7, .external_lex_state = 4}, - [2240] = {.lex_state = 7, .external_lex_state = 4}, - [2241] = {.lex_state = 7, .external_lex_state = 3}, - [2242] = {.lex_state = 7, .external_lex_state = 4}, - [2243] = {.lex_state = 7, .external_lex_state = 4}, - [2244] = {.lex_state = 7, .external_lex_state = 4}, - [2245] = {.lex_state = 7, .external_lex_state = 4}, - [2246] = {.lex_state = 12, .external_lex_state = 5}, - [2247] = {.lex_state = 12, .external_lex_state = 5}, - [2248] = {.lex_state = 7, .external_lex_state = 3}, - [2249] = {.lex_state = 7, .external_lex_state = 4}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 7, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 4}, - [2255] = {.lex_state = 7, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 4}, - [2260] = {.lex_state = 7, .external_lex_state = 4}, - [2261] = {.lex_state = 7, .external_lex_state = 4}, - [2262] = {.lex_state = 7, .external_lex_state = 4}, - [2263] = {.lex_state = 7, .external_lex_state = 4}, - [2264] = {.lex_state = 12, .external_lex_state = 5}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 4}, - [2267] = {.lex_state = 12, .external_lex_state = 2}, - [2268] = {.lex_state = 12, .external_lex_state = 2}, - [2269] = {.lex_state = 7, .external_lex_state = 4}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 12, .external_lex_state = 2}, - [2273] = {.lex_state = 7, .external_lex_state = 4}, - [2274] = {.lex_state = 12, .external_lex_state = 5}, - [2275] = {.lex_state = 12, .external_lex_state = 2}, - [2276] = {.lex_state = 7, .external_lex_state = 4}, - [2277] = {.lex_state = 7, .external_lex_state = 4}, - [2278] = {.lex_state = 7, .external_lex_state = 4}, - [2279] = {.lex_state = 7, .external_lex_state = 4}, - [2280] = {.lex_state = 7, .external_lex_state = 4}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 12, .external_lex_state = 5}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 7, .external_lex_state = 3}, - [2285] = {.lex_state = 12, .external_lex_state = 5}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 12, .external_lex_state = 5}, - [2288] = {.lex_state = 7, .external_lex_state = 4}, - [2289] = {.lex_state = 7, .external_lex_state = 4}, - [2290] = {.lex_state = 7, .external_lex_state = 4}, - [2291] = {.lex_state = 7, .external_lex_state = 4}, - [2292] = {.lex_state = 7, .external_lex_state = 4}, - [2293] = {.lex_state = 7, .external_lex_state = 4}, - [2294] = {.lex_state = 7, .external_lex_state = 4}, - [2295] = {.lex_state = 7, .external_lex_state = 4}, - [2296] = {.lex_state = 7, .external_lex_state = 4}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 7, .external_lex_state = 3}, - [2300] = {.lex_state = 7, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 7, .external_lex_state = 3}, - [2303] = {.lex_state = 7, .external_lex_state = 3}, - [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 3}, - [2306] = {.lex_state = 7, .external_lex_state = 4}, - [2307] = {.lex_state = 12, .external_lex_state = 5}, - [2308] = {.lex_state = 12, .external_lex_state = 5}, - [2309] = {.lex_state = 7, .external_lex_state = 3}, - [2310] = {.lex_state = 12, .external_lex_state = 5}, - [2311] = {.lex_state = 7, .external_lex_state = 4}, - [2312] = {.lex_state = 7, .external_lex_state = 4}, - [2313] = {.lex_state = 7, .external_lex_state = 4}, - [2314] = {.lex_state = 12, .external_lex_state = 5}, - [2315] = {.lex_state = 7, .external_lex_state = 4}, - [2316] = {.lex_state = 12, .external_lex_state = 5}, - [2317] = {.lex_state = 12, .external_lex_state = 5}, - [2318] = {.lex_state = 12, .external_lex_state = 5}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 4}, - [2321] = {.lex_state = 12, .external_lex_state = 5}, - [2322] = {.lex_state = 12, .external_lex_state = 5}, - [2323] = {.lex_state = 7, .external_lex_state = 3}, - [2324] = {.lex_state = 96, .external_lex_state = 2}, - [2325] = {.lex_state = 7, .external_lex_state = 4}, - [2326] = {.lex_state = 7, .external_lex_state = 4}, - [2327] = {.lex_state = 7, .external_lex_state = 4}, - [2328] = {.lex_state = 7, .external_lex_state = 3}, - [2329] = {.lex_state = 7, .external_lex_state = 4}, - [2330] = {.lex_state = 7, .external_lex_state = 4}, - [2331] = {.lex_state = 7, .external_lex_state = 4}, - [2332] = {.lex_state = 7, .external_lex_state = 4}, - [2333] = {.lex_state = 7, .external_lex_state = 4}, - [2334] = {.lex_state = 12, .external_lex_state = 2}, - [2335] = {.lex_state = 12, .external_lex_state = 2}, - [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, - [2338] = {.lex_state = 7, .external_lex_state = 3}, - [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 4}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 7, .external_lex_state = 3}, - [2343] = {.lex_state = 12, .external_lex_state = 5}, - [2344] = {.lex_state = 7, .external_lex_state = 4}, - [2345] = {.lex_state = 12, .external_lex_state = 2}, - [2346] = {.lex_state = 12, .external_lex_state = 2}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 8, .external_lex_state = 4}, - [2349] = {.lex_state = 7, .external_lex_state = 4}, - [2350] = {.lex_state = 7, .external_lex_state = 4}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, - [2352] = {.lex_state = 7, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 7, .external_lex_state = 4}, - [2355] = {.lex_state = 7, .external_lex_state = 3}, - [2356] = {.lex_state = 7, .external_lex_state = 4}, - [2357] = {.lex_state = 12, .external_lex_state = 5}, - [2358] = {.lex_state = 12, .external_lex_state = 5}, - [2359] = {.lex_state = 7, .external_lex_state = 4}, - [2360] = {.lex_state = 12, .external_lex_state = 5}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 4}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, - [2364] = {.lex_state = 7, .external_lex_state = 3}, - [2365] = {.lex_state = 7, .external_lex_state = 3}, - [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, - [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 7, .external_lex_state = 3}, - [2370] = {.lex_state = 7, .external_lex_state = 3}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 7, .external_lex_state = 3}, - [2373] = {.lex_state = 7, .external_lex_state = 3}, - [2374] = {.lex_state = 7, .external_lex_state = 3}, - [2375] = {.lex_state = 7, .external_lex_state = 3}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 7, .external_lex_state = 3}, - [2379] = {.lex_state = 7, .external_lex_state = 3}, - [2380] = {.lex_state = 7, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 7, .external_lex_state = 3}, - [2383] = {.lex_state = 7, .external_lex_state = 3}, - [2384] = {.lex_state = 7, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, - [2386] = {.lex_state = 7, .external_lex_state = 3}, - [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 7, .external_lex_state = 3}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 4}, - [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 7, .external_lex_state = 3}, - [2393] = {.lex_state = 7, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 7, .external_lex_state = 3}, - [2399] = {.lex_state = 7, .external_lex_state = 3}, - [2400] = {.lex_state = 7, .external_lex_state = 3}, - [2401] = {.lex_state = 7, .external_lex_state = 3}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 7, .external_lex_state = 3}, - [2406] = {.lex_state = 7, .external_lex_state = 3}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, - [2409] = {.lex_state = 7, .external_lex_state = 3}, - [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, - [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 7, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 4}, - [2418] = {.lex_state = 12, .external_lex_state = 5}, - [2419] = {.lex_state = 12, .external_lex_state = 2}, - [2420] = {.lex_state = 12, .external_lex_state = 5}, - [2421] = {.lex_state = 96, .external_lex_state = 2}, - [2422] = {.lex_state = 7, .external_lex_state = 3}, - [2423] = {.lex_state = 7, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 4}, - [2425] = {.lex_state = 7, .external_lex_state = 4}, - [2426] = {.lex_state = 12, .external_lex_state = 5}, - [2427] = {.lex_state = 12, .external_lex_state = 5}, - [2428] = {.lex_state = 7, .external_lex_state = 3}, - [2429] = {.lex_state = 12, .external_lex_state = 5}, - [2430] = {.lex_state = 12, .external_lex_state = 2}, - [2431] = {.lex_state = 7, .external_lex_state = 4}, - [2432] = {.lex_state = 8, .external_lex_state = 3}, - [2433] = {.lex_state = 7, .external_lex_state = 4}, - [2434] = {.lex_state = 7, .external_lex_state = 4}, - [2435] = {.lex_state = 7, .external_lex_state = 3}, - [2436] = {.lex_state = 12, .external_lex_state = 2}, - [2437] = {.lex_state = 12, .external_lex_state = 5}, - [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 7, .external_lex_state = 3}, - [2440] = {.lex_state = 7, .external_lex_state = 3}, - [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 4}, - [2443] = {.lex_state = 12, .external_lex_state = 5}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, - [2445] = {.lex_state = 12, .external_lex_state = 2}, - [2446] = {.lex_state = 12, .external_lex_state = 5}, - [2447] = {.lex_state = 12, .external_lex_state = 5}, - [2448] = {.lex_state = 12, .external_lex_state = 5}, - [2449] = {.lex_state = 7, .external_lex_state = 3}, - [2450] = {.lex_state = 7, .external_lex_state = 3}, - [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 7, .external_lex_state = 3}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, - [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 12, .external_lex_state = 5}, - [2456] = {.lex_state = 12, .external_lex_state = 2}, - [2457] = {.lex_state = 7, .external_lex_state = 4}, - [2458] = {.lex_state = 7, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 3}, - [2461] = {.lex_state = 7, .external_lex_state = 3}, - [2462] = {.lex_state = 12, .external_lex_state = 5}, - [2463] = {.lex_state = 7, .external_lex_state = 3}, - [2464] = {.lex_state = 7, .external_lex_state = 3}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 7, .external_lex_state = 3}, - [2467] = {.lex_state = 12, .external_lex_state = 5}, - [2468] = {.lex_state = 7, .external_lex_state = 4}, - [2469] = {.lex_state = 96, .external_lex_state = 2}, - [2470] = {.lex_state = 7, .external_lex_state = 4}, - [2471] = {.lex_state = 12, .external_lex_state = 2}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.lex_state = 12, .external_lex_state = 5}, - [2474] = {.lex_state = 12, .external_lex_state = 5}, - [2475] = {.lex_state = 7, .external_lex_state = 3}, - [2476] = {.lex_state = 12, .external_lex_state = 5}, - [2477] = {.lex_state = 12, .external_lex_state = 2}, - [2478] = {.lex_state = 12, .external_lex_state = 5}, - [2479] = {.lex_state = 12, .external_lex_state = 5}, - [2480] = {.lex_state = 7, .external_lex_state = 3}, - [2481] = {.lex_state = 12, .external_lex_state = 5}, - [2482] = {.lex_state = 7, .external_lex_state = 3}, - [2483] = {.lex_state = 12, .external_lex_state = 2}, - [2484] = {.lex_state = 12, .external_lex_state = 5}, - [2485] = {.lex_state = 12, .external_lex_state = 5}, - [2486] = {.lex_state = 7, .external_lex_state = 3}, - [2487] = {.lex_state = 7, .external_lex_state = 3}, - [2488] = {.lex_state = 12, .external_lex_state = 5}, - [2489] = {.lex_state = 7, .external_lex_state = 3}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, - [2491] = {.lex_state = 7, .external_lex_state = 3}, - [2492] = {.lex_state = 7, .external_lex_state = 3}, - [2493] = {.lex_state = 7, .external_lex_state = 3}, - [2494] = {.lex_state = 7, .external_lex_state = 3}, - [2495] = {.lex_state = 7, .external_lex_state = 3}, - [2496] = {.lex_state = 7, .external_lex_state = 3}, - [2497] = {.lex_state = 7, .external_lex_state = 3}, - [2498] = {.lex_state = 7, .external_lex_state = 3}, - [2499] = {.lex_state = 7, .external_lex_state = 3}, - [2500] = {.lex_state = 7, .external_lex_state = 3}, - [2501] = {.lex_state = 7, .external_lex_state = 3}, - [2502] = {.lex_state = 7, .external_lex_state = 3}, - [2503] = {.lex_state = 7, .external_lex_state = 3}, - [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 7, .external_lex_state = 3}, - [2506] = {.lex_state = 7, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .external_lex_state = 3}, - [2508] = {.lex_state = 7, .external_lex_state = 3}, - [2509] = {.lex_state = 7, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, - [2511] = {.lex_state = 7, .external_lex_state = 3}, - [2512] = {.lex_state = 7, .external_lex_state = 3}, - [2513] = {.lex_state = 7, .external_lex_state = 3}, - [2514] = {.lex_state = 7, .external_lex_state = 3}, - [2515] = {.lex_state = 7, .external_lex_state = 3}, - [2516] = {.lex_state = 7, .external_lex_state = 4}, - [2517] = {.lex_state = 7, .external_lex_state = 3}, - [2518] = {.lex_state = 7, .external_lex_state = 3}, - [2519] = {.lex_state = 7, .external_lex_state = 3}, - [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 12, .external_lex_state = 5}, - [2523] = {.lex_state = 12, .external_lex_state = 5}, - [2524] = {.lex_state = 7, .external_lex_state = 3}, - [2525] = {.lex_state = 7, .external_lex_state = 3}, - [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 7, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, - [2529] = {.lex_state = 7, .external_lex_state = 3}, - [2530] = {.lex_state = 96, .external_lex_state = 5}, - [2531] = {.lex_state = 96, .external_lex_state = 5}, - [2532] = {.lex_state = 96, .external_lex_state = 5}, - [2533] = {.lex_state = 12, .external_lex_state = 5}, - [2534] = {.lex_state = 7, .external_lex_state = 3}, - [2535] = {.lex_state = 12, .external_lex_state = 5}, - [2536] = {.lex_state = 12, .external_lex_state = 2}, - [2537] = {.lex_state = 12, .external_lex_state = 2}, - [2538] = {.lex_state = 7, .external_lex_state = 3}, - [2539] = {.lex_state = 7, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, - [2541] = {.lex_state = 7, .external_lex_state = 3}, - [2542] = {.lex_state = 7, .external_lex_state = 3}, - [2543] = {.lex_state = 7, .external_lex_state = 3}, - [2544] = {.lex_state = 7, .external_lex_state = 3}, - [2545] = {.lex_state = 7, .external_lex_state = 3}, - [2546] = {.lex_state = 7, .external_lex_state = 3}, - [2547] = {.lex_state = 7, .external_lex_state = 3}, - [2548] = {.lex_state = 96, .external_lex_state = 5}, - [2549] = {.lex_state = 96, .external_lex_state = 5}, - [2550] = {.lex_state = 7, .external_lex_state = 3}, - [2551] = {.lex_state = 96, .external_lex_state = 5}, - [2552] = {.lex_state = 96, .external_lex_state = 5}, - [2553] = {.lex_state = 7, .external_lex_state = 3}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, - [2555] = {.lex_state = 7, .external_lex_state = 3}, - [2556] = {.lex_state = 7, .external_lex_state = 3}, - [2557] = {.lex_state = 7, .external_lex_state = 3}, - [2558] = {.lex_state = 7, .external_lex_state = 3}, - [2559] = {.lex_state = 12, .external_lex_state = 2}, - [2560] = {.lex_state = 7, .external_lex_state = 3}, - [2561] = {.lex_state = 7, .external_lex_state = 3}, - [2562] = {.lex_state = 12, .external_lex_state = 2}, - [2563] = {.lex_state = 7, .external_lex_state = 3}, - [2564] = {.lex_state = 7, .external_lex_state = 3}, - [2565] = {.lex_state = 7, .external_lex_state = 3}, - [2566] = {.lex_state = 7, .external_lex_state = 3}, - [2567] = {.lex_state = 7, .external_lex_state = 3}, - [2568] = {.lex_state = 7, .external_lex_state = 3}, - [2569] = {.lex_state = 7, .external_lex_state = 3}, - [2570] = {.lex_state = 7, .external_lex_state = 3}, - [2571] = {.lex_state = 7, .external_lex_state = 3}, - [2572] = {.lex_state = 7, .external_lex_state = 3}, - [2573] = {.lex_state = 96, .external_lex_state = 5}, - [2574] = {.lex_state = 7, .external_lex_state = 3}, - [2575] = {.lex_state = 7, .external_lex_state = 3}, - [2576] = {.lex_state = 7, .external_lex_state = 3}, - [2577] = {.lex_state = 7, .external_lex_state = 3}, - [2578] = {.lex_state = 7, .external_lex_state = 3}, - [2579] = {.lex_state = 7, .external_lex_state = 3}, - [2580] = {.lex_state = 7, .external_lex_state = 3}, - [2581] = {.lex_state = 7, .external_lex_state = 3}, - [2582] = {.lex_state = 7, .external_lex_state = 4}, - [2583] = {.lex_state = 7, .external_lex_state = 3}, - [2584] = {.lex_state = 7, .external_lex_state = 3}, - [2585] = {.lex_state = 7, .external_lex_state = 3}, - [2586] = {.lex_state = 7, .external_lex_state = 3}, - [2587] = {.lex_state = 7, .external_lex_state = 3}, - [2588] = {.lex_state = 7, .external_lex_state = 3}, - [2589] = {.lex_state = 7, .external_lex_state = 3}, - [2590] = {.lex_state = 96, .external_lex_state = 5}, - [2591] = {.lex_state = 7, .external_lex_state = 3}, - [2592] = {.lex_state = 96, .external_lex_state = 2}, - [2593] = {.lex_state = 7, .external_lex_state = 3}, - [2594] = {.lex_state = 7, .external_lex_state = 3}, - [2595] = {.lex_state = 7, .external_lex_state = 3}, - [2596] = {.lex_state = 7, .external_lex_state = 3}, - [2597] = {.lex_state = 7, .external_lex_state = 3}, - [2598] = {.lex_state = 7, .external_lex_state = 3}, - [2599] = {.lex_state = 7, .external_lex_state = 3}, - [2600] = {.lex_state = 7, .external_lex_state = 3}, - [2601] = {.lex_state = 12, .external_lex_state = 2}, - [2602] = {.lex_state = 96, .external_lex_state = 2}, - [2603] = {.lex_state = 7, .external_lex_state = 3}, - [2604] = {.lex_state = 96, .external_lex_state = 2}, - [2605] = {.lex_state = 7, .external_lex_state = 3}, - [2606] = {.lex_state = 7, .external_lex_state = 3}, - [2607] = {.lex_state = 7, .external_lex_state = 3}, - [2608] = {.lex_state = 7, .external_lex_state = 3}, - [2609] = {.lex_state = 7, .external_lex_state = 3}, - [2610] = {.lex_state = 7, .external_lex_state = 3}, - [2611] = {.lex_state = 96, .external_lex_state = 5}, - [2612] = {.lex_state = 7, .external_lex_state = 3}, - [2613] = {.lex_state = 96, .external_lex_state = 5}, - [2614] = {.lex_state = 96, .external_lex_state = 5}, - [2615] = {.lex_state = 7, .external_lex_state = 3}, - [2616] = {.lex_state = 12, .external_lex_state = 2}, - [2617] = {.lex_state = 96, .external_lex_state = 5}, - [2618] = {.lex_state = 12, .external_lex_state = 2}, - [2619] = {.lex_state = 12, .external_lex_state = 2}, - [2620] = {.lex_state = 12, .external_lex_state = 2}, - [2621] = {.lex_state = 12, .external_lex_state = 2}, - [2622] = {.lex_state = 12, .external_lex_state = 2}, - [2623] = {.lex_state = 96, .external_lex_state = 5}, - [2624] = {.lex_state = 96, .external_lex_state = 5}, - [2625] = {.lex_state = 7, .external_lex_state = 3}, - [2626] = {.lex_state = 12, .external_lex_state = 2}, - [2627] = {.lex_state = 96, .external_lex_state = 5}, - [2628] = {.lex_state = 12, .external_lex_state = 2}, - [2629] = {.lex_state = 96, .external_lex_state = 5}, - [2630] = {.lex_state = 12, .external_lex_state = 2}, - [2631] = {.lex_state = 8, .external_lex_state = 3}, - [2632] = {.lex_state = 96, .external_lex_state = 5}, - [2633] = {.lex_state = 96, .external_lex_state = 5}, - [2634] = {.lex_state = 12, .external_lex_state = 2}, - [2635] = {.lex_state = 12, .external_lex_state = 2}, - [2636] = {.lex_state = 96, .external_lex_state = 5}, - [2637] = {.lex_state = 96, .external_lex_state = 5}, - [2638] = {.lex_state = 7, .external_lex_state = 3}, - [2639] = {.lex_state = 96, .external_lex_state = 5}, - [2640] = {.lex_state = 12, .external_lex_state = 2}, - [2641] = {.lex_state = 12, .external_lex_state = 2}, - [2642] = {.lex_state = 12, .external_lex_state = 2}, - [2643] = {.lex_state = 96, .external_lex_state = 5}, - [2644] = {.lex_state = 96, .external_lex_state = 5}, - [2645] = {.lex_state = 96, .external_lex_state = 5}, - [2646] = {.lex_state = 7, .external_lex_state = 3}, - [2647] = {.lex_state = 96, .external_lex_state = 5}, - [2648] = {.lex_state = 7, .external_lex_state = 3}, - [2649] = {.lex_state = 7, .external_lex_state = 3}, - [2650] = {.lex_state = 12, .external_lex_state = 2}, - [2651] = {.lex_state = 12, .external_lex_state = 2}, - [2652] = {.lex_state = 12, .external_lex_state = 5}, - [2653] = {.lex_state = 12, .external_lex_state = 5}, - [2654] = {.lex_state = 7, .external_lex_state = 3}, - [2655] = {.lex_state = 12, .external_lex_state = 5}, - [2656] = {.lex_state = 12, .external_lex_state = 5}, - [2657] = {.lex_state = 12, .external_lex_state = 5}, - [2658] = {.lex_state = 12, .external_lex_state = 5}, - [2659] = {.lex_state = 12, .external_lex_state = 5}, - [2660] = {.lex_state = 7, .external_lex_state = 3}, - [2661] = {.lex_state = 12, .external_lex_state = 5}, - [2662] = {.lex_state = 12, .external_lex_state = 5}, - [2663] = {.lex_state = 12, .external_lex_state = 2}, - [2664] = {.lex_state = 12, .external_lex_state = 5}, - [2665] = {.lex_state = 7, .external_lex_state = 3}, - [2666] = {.lex_state = 7, .external_lex_state = 3}, - [2667] = {.lex_state = 7, .external_lex_state = 3}, - [2668] = {.lex_state = 12, .external_lex_state = 5}, - [2669] = {.lex_state = 12, .external_lex_state = 5}, - [2670] = {.lex_state = 12, .external_lex_state = 5}, - [2671] = {.lex_state = 12, .external_lex_state = 5}, - [2672] = {.lex_state = 12, .external_lex_state = 5}, - [2673] = {.lex_state = 12, .external_lex_state = 5}, - [2674] = {.lex_state = 12, .external_lex_state = 5}, - [2675] = {.lex_state = 12, .external_lex_state = 5}, - [2676] = {.lex_state = 12, .external_lex_state = 5}, - [2677] = {.lex_state = 12, .external_lex_state = 5}, - [2678] = {.lex_state = 12, .external_lex_state = 5}, - [2679] = {.lex_state = 7, .external_lex_state = 3}, - [2680] = {.lex_state = 12, .external_lex_state = 5}, - [2681] = {.lex_state = 12, .external_lex_state = 5}, - [2682] = {.lex_state = 12, .external_lex_state = 5}, - [2683] = {.lex_state = 12, .external_lex_state = 5}, - [2684] = {.lex_state = 12, .external_lex_state = 5}, - [2685] = {.lex_state = 12, .external_lex_state = 5}, - [2686] = {.lex_state = 7, .external_lex_state = 3}, - [2687] = {.lex_state = 12, .external_lex_state = 5}, - [2688] = {.lex_state = 12, .external_lex_state = 5}, - [2689] = {.lex_state = 12, .external_lex_state = 5}, - [2690] = {.lex_state = 12, .external_lex_state = 2}, - [2691] = {.lex_state = 12, .external_lex_state = 5}, - [2692] = {.lex_state = 12, .external_lex_state = 5}, - [2693] = {.lex_state = 12, .external_lex_state = 5}, - [2694] = {.lex_state = 12, .external_lex_state = 5}, - [2695] = {.lex_state = 12, .external_lex_state = 5}, - [2696] = {.lex_state = 12, .external_lex_state = 5}, - [2697] = {.lex_state = 12, .external_lex_state = 5}, - [2698] = {.lex_state = 12, .external_lex_state = 5}, - [2699] = {.lex_state = 12, .external_lex_state = 5}, - [2700] = {.lex_state = 7, .external_lex_state = 3}, - [2701] = {.lex_state = 12, .external_lex_state = 5}, - [2702] = {.lex_state = 12, .external_lex_state = 5}, - [2703] = {.lex_state = 12, .external_lex_state = 5}, - [2704] = {.lex_state = 12, .external_lex_state = 5}, - [2705] = {.lex_state = 12, .external_lex_state = 5}, - [2706] = {.lex_state = 7, .external_lex_state = 3}, - [2707] = {.lex_state = 12, .external_lex_state = 5}, - [2708] = {.lex_state = 12, .external_lex_state = 2}, - [2709] = {.lex_state = 12, .external_lex_state = 5}, - [2710] = {.lex_state = 12, .external_lex_state = 5}, - [2711] = {.lex_state = 12, .external_lex_state = 5}, - [2712] = {.lex_state = 12, .external_lex_state = 5}, - [2713] = {.lex_state = 7, .external_lex_state = 3}, - [2714] = {.lex_state = 7, .external_lex_state = 3}, - [2715] = {.lex_state = 12, .external_lex_state = 5}, - [2716] = {.lex_state = 12, .external_lex_state = 5}, - [2717] = {.lex_state = 12, .external_lex_state = 5}, - [2718] = {.lex_state = 12, .external_lex_state = 2}, - [2719] = {.lex_state = 12, .external_lex_state = 2}, - [2720] = {.lex_state = 7, .external_lex_state = 3}, - [2721] = {.lex_state = 12, .external_lex_state = 2}, - [2722] = {.lex_state = 12, .external_lex_state = 2}, - [2723] = {.lex_state = 12, .external_lex_state = 2}, - [2724] = {.lex_state = 12, .external_lex_state = 2}, - [2725] = {.lex_state = 12, .external_lex_state = 2}, - [2726] = {.lex_state = 12, .external_lex_state = 2}, - [2727] = {.lex_state = 12, .external_lex_state = 2}, - [2728] = {.lex_state = 12, .external_lex_state = 2}, - [2729] = {.lex_state = 12, .external_lex_state = 2}, - [2730] = {.lex_state = 12, .external_lex_state = 2}, - [2731] = {.lex_state = 12, .external_lex_state = 2}, - [2732] = {.lex_state = 96, .external_lex_state = 2}, - [2733] = {.lex_state = 12, .external_lex_state = 2}, - [2734] = {.lex_state = 12, .external_lex_state = 2}, - [2735] = {.lex_state = 12, .external_lex_state = 2}, - [2736] = {.lex_state = 12, .external_lex_state = 2}, - [2737] = {.lex_state = 12, .external_lex_state = 2}, - [2738] = {.lex_state = 12, .external_lex_state = 2}, - [2739] = {.lex_state = 12, .external_lex_state = 2}, - [2740] = {.lex_state = 12, .external_lex_state = 2}, - [2741] = {.lex_state = 12, .external_lex_state = 2}, - [2742] = {.lex_state = 96, .external_lex_state = 2}, - [2743] = {.lex_state = 12, .external_lex_state = 2}, - [2744] = {.lex_state = 12, .external_lex_state = 2}, - [2745] = {.lex_state = 12, .external_lex_state = 2}, - [2746] = {.lex_state = 96, .external_lex_state = 2}, - [2747] = {.lex_state = 12, .external_lex_state = 2}, - [2748] = {.lex_state = 96, .external_lex_state = 2}, - [2749] = {.lex_state = 12, .external_lex_state = 2}, - [2750] = {.lex_state = 12, .external_lex_state = 2}, - [2751] = {.lex_state = 12, .external_lex_state = 2}, - [2752] = {.lex_state = 12, .external_lex_state = 2}, - [2753] = {.lex_state = 12, .external_lex_state = 2}, - [2754] = {.lex_state = 12, .external_lex_state = 2}, - [2755] = {.lex_state = 12, .external_lex_state = 2}, - [2756] = {.lex_state = 12, .external_lex_state = 2}, - [2757] = {.lex_state = 12, .external_lex_state = 2}, - [2758] = {.lex_state = 12, .external_lex_state = 2}, - [2759] = {.lex_state = 12, .external_lex_state = 2}, - [2760] = {.lex_state = 12, .external_lex_state = 2}, - [2761] = {.lex_state = 96, .external_lex_state = 2}, - [2762] = {.lex_state = 12, .external_lex_state = 2}, - [2763] = {.lex_state = 12, .external_lex_state = 2}, - [2764] = {.lex_state = 12, .external_lex_state = 2}, - [2765] = {.lex_state = 12, .external_lex_state = 2}, - [2766] = {.lex_state = 12, .external_lex_state = 2}, - [2767] = {.lex_state = 12, .external_lex_state = 2}, - [2768] = {.lex_state = 12, .external_lex_state = 2}, - [2769] = {.lex_state = 12, .external_lex_state = 2}, - [2770] = {.lex_state = 12, .external_lex_state = 2}, - [2771] = {.lex_state = 12, .external_lex_state = 2}, - [2772] = {.lex_state = 12, .external_lex_state = 2}, - [2773] = {.lex_state = 96, .external_lex_state = 2}, - [2774] = {.lex_state = 96, .external_lex_state = 2}, - [2775] = {.lex_state = 96, .external_lex_state = 2}, - [2776] = {.lex_state = 96, .external_lex_state = 2}, - [2777] = {.lex_state = 96, .external_lex_state = 2}, - [2778] = {.lex_state = 96, .external_lex_state = 2}, - [2779] = {.lex_state = 96, .external_lex_state = 2}, - [2780] = {.lex_state = 96, .external_lex_state = 2}, - [2781] = {.lex_state = 96, .external_lex_state = 2}, - [2782] = {.lex_state = 96, .external_lex_state = 2}, - [2783] = {.lex_state = 96, .external_lex_state = 2}, - [2784] = {.lex_state = 96, .external_lex_state = 2}, - [2785] = {.lex_state = 96, .external_lex_state = 2}, - [2786] = {.lex_state = 96, .external_lex_state = 2}, - [2787] = {.lex_state = 96, .external_lex_state = 2}, - [2788] = {.lex_state = 96, .external_lex_state = 2}, - [2789] = {.lex_state = 96, .external_lex_state = 2}, - [2790] = {.lex_state = 96, .external_lex_state = 2}, - [2791] = {.lex_state = 96, .external_lex_state = 2}, - [2792] = {.lex_state = 96, .external_lex_state = 2}, - [2793] = {.lex_state = 96, .external_lex_state = 2}, - [2794] = {.lex_state = 96, .external_lex_state = 2}, - [2795] = {.lex_state = 96, .external_lex_state = 2}, - [2796] = {.lex_state = 96, .external_lex_state = 2}, - [2797] = {.lex_state = 96, .external_lex_state = 2}, - [2798] = {.lex_state = 96, .external_lex_state = 2}, - [2799] = {.lex_state = 96, .external_lex_state = 2}, - [2800] = {.lex_state = 96, .external_lex_state = 2}, - [2801] = {.lex_state = 96, .external_lex_state = 2}, - [2802] = {.lex_state = 96, .external_lex_state = 2}, - [2803] = {.lex_state = 12, .external_lex_state = 2}, - [2804] = {.lex_state = 96, .external_lex_state = 2}, - [2805] = {.lex_state = 96, .external_lex_state = 2}, - [2806] = {.lex_state = 96, .external_lex_state = 2}, - [2807] = {.lex_state = 96, .external_lex_state = 2}, - [2808] = {.lex_state = 96, .external_lex_state = 2}, - [2809] = {.lex_state = 96, .external_lex_state = 2}, - [2810] = {.lex_state = 96, .external_lex_state = 2}, - [2811] = {.lex_state = 96, .external_lex_state = 2}, - [2812] = {.lex_state = 96, .external_lex_state = 2}, - [2813] = {.lex_state = 96, .external_lex_state = 2}, - [2814] = {.lex_state = 96, .external_lex_state = 2}, - [2815] = {.lex_state = 96, .external_lex_state = 2}, - [2816] = {.lex_state = 96, .external_lex_state = 2}, - [2817] = {.lex_state = 96, .external_lex_state = 2}, - [2818] = {.lex_state = 96, .external_lex_state = 2}, - [2819] = {.lex_state = 96, .external_lex_state = 2}, - [2820] = {.lex_state = 96, .external_lex_state = 2}, - [2821] = {.lex_state = 96, .external_lex_state = 2}, - [2822] = {.lex_state = 96, .external_lex_state = 2}, - [2823] = {.lex_state = 96, .external_lex_state = 2}, - [2824] = {.lex_state = 96, .external_lex_state = 2}, - [2825] = {.lex_state = 96, .external_lex_state = 2}, - [2826] = {.lex_state = 96, .external_lex_state = 2}, - [2827] = {.lex_state = 96, .external_lex_state = 2}, - [2828] = {.lex_state = 96, .external_lex_state = 2}, - [2829] = {.lex_state = 96, .external_lex_state = 2}, - [2830] = {.lex_state = 96, .external_lex_state = 2}, - [2831] = {.lex_state = 96, .external_lex_state = 2}, - [2832] = {.lex_state = 96, .external_lex_state = 2}, - [2833] = {.lex_state = 96, .external_lex_state = 2}, - [2834] = {.lex_state = 96, .external_lex_state = 2}, - [2835] = {.lex_state = 96, .external_lex_state = 2}, - [2836] = {.lex_state = 96, .external_lex_state = 2}, - [2837] = {.lex_state = 96, .external_lex_state = 2}, - [2838] = {.lex_state = 96, .external_lex_state = 2}, - [2839] = {.lex_state = 96, .external_lex_state = 2}, - [2840] = {.lex_state = 96, .external_lex_state = 2}, - [2841] = {.lex_state = 96, .external_lex_state = 2}, - [2842] = {.lex_state = 96, .external_lex_state = 2}, - [2843] = {.lex_state = 96, .external_lex_state = 2}, - [2844] = {.lex_state = 96, .external_lex_state = 2}, - [2845] = {.lex_state = 96, .external_lex_state = 2}, - [2846] = {.lex_state = 96, .external_lex_state = 2}, - [2847] = {.lex_state = 96, .external_lex_state = 2}, - [2848] = {.lex_state = 96, .external_lex_state = 2}, - [2849] = {.lex_state = 96, .external_lex_state = 2}, - [2850] = {.lex_state = 96, .external_lex_state = 2}, - [2851] = {.lex_state = 96, .external_lex_state = 2}, - [2852] = {.lex_state = 96, .external_lex_state = 2}, - [2853] = {.lex_state = 96, .external_lex_state = 2}, - [2854] = {.lex_state = 96, .external_lex_state = 2}, - [2855] = {.lex_state = 96, .external_lex_state = 2}, - [2856] = {.lex_state = 96, .external_lex_state = 2}, - [2857] = {.lex_state = 96, .external_lex_state = 2}, - [2858] = {.lex_state = 96, .external_lex_state = 2}, - [2859] = {.lex_state = 96, .external_lex_state = 2}, - [2860] = {.lex_state = 96, .external_lex_state = 2}, - [2861] = {.lex_state = 96, .external_lex_state = 2}, - [2862] = {.lex_state = 96, .external_lex_state = 2}, - [2863] = {.lex_state = 96, .external_lex_state = 2}, - [2864] = {.lex_state = 96, .external_lex_state = 2}, - [2865] = {.lex_state = 96, .external_lex_state = 2}, - [2866] = {.lex_state = 96, .external_lex_state = 2}, - [2867] = {.lex_state = 96, .external_lex_state = 2}, - [2868] = {.lex_state = 96, .external_lex_state = 2}, - [2869] = {.lex_state = 96, .external_lex_state = 2}, - [2870] = {.lex_state = 96, .external_lex_state = 2}, - [2871] = {.lex_state = 96, .external_lex_state = 2}, - [2872] = {.lex_state = 96, .external_lex_state = 2}, - [2873] = {.lex_state = 96, .external_lex_state = 2}, - [2874] = {.lex_state = 96, .external_lex_state = 2}, - [2875] = {.lex_state = 96, .external_lex_state = 2}, - [2876] = {.lex_state = 96, .external_lex_state = 2}, - [2877] = {.lex_state = 96, .external_lex_state = 2}, - [2878] = {.lex_state = 96, .external_lex_state = 2}, - [2879] = {.lex_state = 96, .external_lex_state = 2}, - [2880] = {.lex_state = 15, .external_lex_state = 2}, - [2881] = {.lex_state = 15, .external_lex_state = 2}, - [2882] = {.lex_state = 15, .external_lex_state = 2}, - [2883] = {.lex_state = 15, .external_lex_state = 2}, - [2884] = {.lex_state = 15, .external_lex_state = 2}, - [2885] = {.lex_state = 15, .external_lex_state = 2}, - [2886] = {.lex_state = 15, .external_lex_state = 2}, - [2887] = {.lex_state = 15, .external_lex_state = 2}, - [2888] = {.lex_state = 15, .external_lex_state = 2}, - [2889] = {.lex_state = 15, .external_lex_state = 2}, - [2890] = {.lex_state = 15, .external_lex_state = 2}, - [2891] = {.lex_state = 15, .external_lex_state = 2}, - [2892] = {.lex_state = 15, .external_lex_state = 2}, - [2893] = {.lex_state = 15, .external_lex_state = 2}, - [2894] = {.lex_state = 15, .external_lex_state = 2}, - [2895] = {.lex_state = 15, .external_lex_state = 2}, - [2896] = {.lex_state = 15, .external_lex_state = 2}, - [2897] = {.lex_state = 15, .external_lex_state = 2}, - [2898] = {.lex_state = 15, .external_lex_state = 2}, - [2899] = {.lex_state = 15, .external_lex_state = 2}, - [2900] = {.lex_state = 15, .external_lex_state = 2}, - [2901] = {.lex_state = 15, .external_lex_state = 2}, - [2902] = {.lex_state = 15, .external_lex_state = 2}, - [2903] = {.lex_state = 15, .external_lex_state = 2}, - [2904] = {.lex_state = 15, .external_lex_state = 2}, - [2905] = {.lex_state = 15, .external_lex_state = 2}, - [2906] = {.lex_state = 15, .external_lex_state = 2}, - [2907] = {.lex_state = 15, .external_lex_state = 2}, - [2908] = {.lex_state = 15, .external_lex_state = 2}, - [2909] = {.lex_state = 15, .external_lex_state = 2}, - [2910] = {.lex_state = 15, .external_lex_state = 2}, - [2911] = {.lex_state = 15, .external_lex_state = 2}, - [2912] = {.lex_state = 15, .external_lex_state = 2}, - [2913] = {.lex_state = 15, .external_lex_state = 2}, - [2914] = {.lex_state = 15, .external_lex_state = 2}, - [2915] = {.lex_state = 15, .external_lex_state = 2}, - [2916] = {.lex_state = 15, .external_lex_state = 2}, - [2917] = {.lex_state = 13, .external_lex_state = 5}, - [2918] = {.lex_state = 13, .external_lex_state = 5}, - [2919] = {.lex_state = 14, .external_lex_state = 2}, - [2920] = {.lex_state = 13, .external_lex_state = 2}, - [2921] = {.lex_state = 96, .external_lex_state = 2}, - [2922] = {.lex_state = 14, .external_lex_state = 2}, - [2923] = {.lex_state = 96, .external_lex_state = 2}, - [2924] = {.lex_state = 14, .external_lex_state = 2}, - [2925] = {.lex_state = 96, .external_lex_state = 2}, - [2926] = {.lex_state = 15, .external_lex_state = 5}, - [2927] = {.lex_state = 14, .external_lex_state = 2}, - [2928] = {.lex_state = 15, .external_lex_state = 2}, - [2929] = {.lex_state = 96, .external_lex_state = 2}, - [2930] = {.lex_state = 13, .external_lex_state = 2}, - [2931] = {.lex_state = 15, .external_lex_state = 5}, - [2932] = {.lex_state = 13, .external_lex_state = 2}, - [2933] = {.lex_state = 96, .external_lex_state = 2}, - [2934] = {.lex_state = 13, .external_lex_state = 2}, - [2935] = {.lex_state = 14, .external_lex_state = 2}, - [2936] = {.lex_state = 96, .external_lex_state = 2}, - [2937] = {.lex_state = 15, .external_lex_state = 5}, - [2938] = {.lex_state = 96, .external_lex_state = 2}, - [2939] = {.lex_state = 96, .external_lex_state = 2}, - [2940] = {.lex_state = 96, .external_lex_state = 2}, - [2941] = {.lex_state = 13, .external_lex_state = 2}, - [2942] = {.lex_state = 96, .external_lex_state = 2}, - [2943] = {.lex_state = 96, .external_lex_state = 2}, - [2944] = {.lex_state = 96, .external_lex_state = 2}, - [2945] = {.lex_state = 96, .external_lex_state = 2}, - [2946] = {.lex_state = 15, .external_lex_state = 5}, - [2947] = {.lex_state = 15, .external_lex_state = 5}, - [2948] = {.lex_state = 96, .external_lex_state = 2}, - [2949] = {.lex_state = 96, .external_lex_state = 2}, - [2950] = {.lex_state = 96, .external_lex_state = 2}, - [2951] = {.lex_state = 96, .external_lex_state = 2}, - [2952] = {.lex_state = 96, .external_lex_state = 2}, - [2953] = {.lex_state = 96, .external_lex_state = 2}, - [2954] = {.lex_state = 96, .external_lex_state = 2}, - [2955] = {.lex_state = 15, .external_lex_state = 6}, - [2956] = {.lex_state = 15, .external_lex_state = 6}, - [2957] = {.lex_state = 15, .external_lex_state = 6}, - [2958] = {.lex_state = 4, .external_lex_state = 2}, - [2959] = {.lex_state = 96, .external_lex_state = 2}, - [2960] = {.lex_state = 96, .external_lex_state = 2}, - [2961] = {.lex_state = 96, .external_lex_state = 2}, - [2962] = {.lex_state = 96, .external_lex_state = 2}, - [2963] = {.lex_state = 15, .external_lex_state = 5}, - [2964] = {.lex_state = 96, .external_lex_state = 2}, - [2965] = {.lex_state = 15, .external_lex_state = 5}, - [2966] = {.lex_state = 96, .external_lex_state = 2}, - [2967] = {.lex_state = 15, .external_lex_state = 5}, - [2968] = {.lex_state = 15, .external_lex_state = 5}, - [2969] = {.lex_state = 4, .external_lex_state = 2}, - [2970] = {.lex_state = 15, .external_lex_state = 5}, - [2971] = {.lex_state = 15, .external_lex_state = 5}, - [2972] = {.lex_state = 15, .external_lex_state = 5}, - [2973] = {.lex_state = 15, .external_lex_state = 5}, - [2974] = {.lex_state = 96, .external_lex_state = 2}, - [2975] = {.lex_state = 15, .external_lex_state = 5}, - [2976] = {.lex_state = 15, .external_lex_state = 5}, - [2977] = {.lex_state = 96, .external_lex_state = 2}, - [2978] = {.lex_state = 96, .external_lex_state = 2}, - [2979] = {.lex_state = 96, .external_lex_state = 2}, - [2980] = {.lex_state = 96, .external_lex_state = 2}, - [2981] = {.lex_state = 15, .external_lex_state = 5}, - [2982] = {.lex_state = 15, .external_lex_state = 5}, - [2983] = {.lex_state = 15, .external_lex_state = 5}, - [2984] = {.lex_state = 4, .external_lex_state = 2}, - [2985] = {.lex_state = 96, .external_lex_state = 2}, - [2986] = {.lex_state = 15, .external_lex_state = 5}, - [2987] = {.lex_state = 96, .external_lex_state = 2}, - [2988] = {.lex_state = 96, .external_lex_state = 2}, - [2989] = {.lex_state = 96, .external_lex_state = 2}, - [2990] = {.lex_state = 96, .external_lex_state = 2}, - [2991] = {.lex_state = 96, .external_lex_state = 2}, - [2992] = {.lex_state = 96, .external_lex_state = 2}, - [2993] = {.lex_state = 96, .external_lex_state = 2}, - [2994] = {.lex_state = 96, .external_lex_state = 2}, - [2995] = {.lex_state = 96, .external_lex_state = 2}, - [2996] = {.lex_state = 96, .external_lex_state = 2}, - [2997] = {.lex_state = 96, .external_lex_state = 2}, - [2998] = {.lex_state = 96, .external_lex_state = 2}, - [2999] = {.lex_state = 96, .external_lex_state = 2}, - [3000] = {.lex_state = 96, .external_lex_state = 2}, - [3001] = {.lex_state = 4, .external_lex_state = 2}, - [3002] = {.lex_state = 96, .external_lex_state = 2}, - [3003] = {.lex_state = 96, .external_lex_state = 2}, - [3004] = {.lex_state = 96, .external_lex_state = 2}, - [3005] = {.lex_state = 96, .external_lex_state = 2}, - [3006] = {.lex_state = 4, .external_lex_state = 2}, - [3007] = {.lex_state = 15, .external_lex_state = 5}, - [3008] = {.lex_state = 15, .external_lex_state = 5}, - [3009] = {.lex_state = 15, .external_lex_state = 5}, - [3010] = {.lex_state = 4, .external_lex_state = 2}, - [3011] = {.lex_state = 15, .external_lex_state = 5}, - [3012] = {.lex_state = 4, .external_lex_state = 2}, - [3013] = {.lex_state = 96, .external_lex_state = 2}, - [3014] = {.lex_state = 96, .external_lex_state = 2}, - [3015] = {.lex_state = 96, .external_lex_state = 2}, - [3016] = {.lex_state = 96, .external_lex_state = 2}, - [3017] = {.lex_state = 96, .external_lex_state = 2}, - [3018] = {.lex_state = 96, .external_lex_state = 2}, - [3019] = {.lex_state = 15, .external_lex_state = 5}, - [3020] = {.lex_state = 96, .external_lex_state = 2}, - [3021] = {.lex_state = 15, .external_lex_state = 5}, - [3022] = {.lex_state = 15, .external_lex_state = 5}, - [3023] = {.lex_state = 15, .external_lex_state = 5}, - [3024] = {.lex_state = 15, .external_lex_state = 5}, - [3025] = {.lex_state = 96, .external_lex_state = 2}, - [3026] = {.lex_state = 15, .external_lex_state = 5}, - [3027] = {.lex_state = 13, .external_lex_state = 5}, - [3028] = {.lex_state = 15, .external_lex_state = 5}, - [3029] = {.lex_state = 96, .external_lex_state = 2}, - [3030] = {.lex_state = 96, .external_lex_state = 2}, - [3031] = {.lex_state = 96, .external_lex_state = 2}, - [3032] = {.lex_state = 96, .external_lex_state = 2}, - [3033] = {.lex_state = 4, .external_lex_state = 2}, - [3034] = {.lex_state = 15, .external_lex_state = 5}, - [3035] = {.lex_state = 96, .external_lex_state = 2}, - [3036] = {.lex_state = 4, .external_lex_state = 2}, - [3037] = {.lex_state = 4, .external_lex_state = 2}, - [3038] = {.lex_state = 15, .external_lex_state = 5}, - [3039] = {.lex_state = 15, .external_lex_state = 5}, - [3040] = {.lex_state = 15, .external_lex_state = 5}, - [3041] = {.lex_state = 96, .external_lex_state = 2}, - [3042] = {.lex_state = 96, .external_lex_state = 2}, - [3043] = {.lex_state = 15, .external_lex_state = 5}, - [3044] = {.lex_state = 15, .external_lex_state = 5}, - [3045] = {.lex_state = 15, .external_lex_state = 5}, - [3046] = {.lex_state = 96, .external_lex_state = 2}, - [3047] = {.lex_state = 12, .external_lex_state = 5}, - [3048] = {.lex_state = 96, .external_lex_state = 2}, - [3049] = {.lex_state = 96, .external_lex_state = 2}, - [3050] = {.lex_state = 12, .external_lex_state = 5}, - [3051] = {.lex_state = 12, .external_lex_state = 5}, - [3052] = {.lex_state = 96, .external_lex_state = 2}, - [3053] = {.lex_state = 12, .external_lex_state = 5}, - [3054] = {.lex_state = 12, .external_lex_state = 5}, - [3055] = {.lex_state = 12, .external_lex_state = 5}, - [3056] = {.lex_state = 12, .external_lex_state = 5}, - [3057] = {.lex_state = 12, .external_lex_state = 5}, - [3058] = {.lex_state = 12, .external_lex_state = 5}, - [3059] = {.lex_state = 12, .external_lex_state = 5}, - [3060] = {.lex_state = 96, .external_lex_state = 2}, - [3061] = {.lex_state = 96, .external_lex_state = 2}, - [3062] = {.lex_state = 96, .external_lex_state = 2}, - [3063] = {.lex_state = 12, .external_lex_state = 5}, - [3064] = {.lex_state = 96, .external_lex_state = 2}, - [3065] = {.lex_state = 96, .external_lex_state = 2}, - [3066] = {.lex_state = 12, .external_lex_state = 5}, - [3067] = {.lex_state = 12, .external_lex_state = 5}, - [3068] = {.lex_state = 12, .external_lex_state = 5}, - [3069] = {.lex_state = 12, .external_lex_state = 5}, - [3070] = {.lex_state = 12, .external_lex_state = 5}, - [3071] = {.lex_state = 12, .external_lex_state = 5}, - [3072] = {.lex_state = 12, .external_lex_state = 5}, - [3073] = {.lex_state = 96, .external_lex_state = 5}, - [3074] = {.lex_state = 12, .external_lex_state = 5}, - [3075] = {.lex_state = 12, .external_lex_state = 5}, - [3076] = {.lex_state = 12, .external_lex_state = 5}, - [3077] = {.lex_state = 12, .external_lex_state = 5}, - [3078] = {.lex_state = 96, .external_lex_state = 2}, - [3079] = {.lex_state = 12, .external_lex_state = 5}, - [3080] = {.lex_state = 12, .external_lex_state = 5}, - [3081] = {.lex_state = 12, .external_lex_state = 5}, - [3082] = {.lex_state = 13, .external_lex_state = 5}, - [3083] = {.lex_state = 96, .external_lex_state = 2}, - [3084] = {.lex_state = 12, .external_lex_state = 5}, - [3085] = {.lex_state = 12, .external_lex_state = 5}, - [3086] = {.lex_state = 12, .external_lex_state = 5}, - [3087] = {.lex_state = 96, .external_lex_state = 2}, - [3088] = {.lex_state = 96, .external_lex_state = 5}, - [3089] = {.lex_state = 15, .external_lex_state = 6}, - [3090] = {.lex_state = 15, .external_lex_state = 6}, - [3091] = {.lex_state = 15, .external_lex_state = 6}, - [3092] = {.lex_state = 15, .external_lex_state = 6}, - [3093] = {.lex_state = 15, .external_lex_state = 6}, - [3094] = {.lex_state = 15, .external_lex_state = 6}, - [3095] = {.lex_state = 15, .external_lex_state = 6}, - [3096] = {.lex_state = 15, .external_lex_state = 6}, - [3097] = {.lex_state = 15, .external_lex_state = 6}, - [3098] = {.lex_state = 12, .external_lex_state = 5}, - [3099] = {.lex_state = 12, .external_lex_state = 2}, - [3100] = {.lex_state = 13, .external_lex_state = 6}, - [3101] = {.lex_state = 15, .external_lex_state = 6}, - [3102] = {.lex_state = 96, .external_lex_state = 2}, - [3103] = {.lex_state = 14, .external_lex_state = 5}, - [3104] = {.lex_state = 13, .external_lex_state = 5}, - [3105] = {.lex_state = 15, .external_lex_state = 6}, - [3106] = {.lex_state = 14, .external_lex_state = 5}, - [3107] = {.lex_state = 12, .external_lex_state = 5}, - [3108] = {.lex_state = 12, .external_lex_state = 5}, - [3109] = {.lex_state = 15, .external_lex_state = 6}, - [3110] = {.lex_state = 12, .external_lex_state = 5}, - [3111] = {.lex_state = 15, .external_lex_state = 6}, - [3112] = {.lex_state = 96, .external_lex_state = 2}, - [3113] = {.lex_state = 15, .external_lex_state = 6}, - [3114] = {.lex_state = 15, .external_lex_state = 6}, - [3115] = {.lex_state = 96, .external_lex_state = 5}, - [3116] = {.lex_state = 15, .external_lex_state = 6}, - [3117] = {.lex_state = 12, .external_lex_state = 5}, - [3118] = {.lex_state = 15, .external_lex_state = 6}, - [3119] = {.lex_state = 96, .external_lex_state = 5}, - [3120] = {.lex_state = 96, .external_lex_state = 5}, - [3121] = {.lex_state = 96, .external_lex_state = 2}, - [3122] = {.lex_state = 15, .external_lex_state = 6}, - [3123] = {.lex_state = 14, .external_lex_state = 5}, - [3124] = {.lex_state = 12, .external_lex_state = 5}, - [3125] = {.lex_state = 14, .external_lex_state = 5}, - [3126] = {.lex_state = 15, .external_lex_state = 6}, - [3127] = {.lex_state = 15, .external_lex_state = 6}, - [3128] = {.lex_state = 14, .external_lex_state = 5}, - [3129] = {.lex_state = 96, .external_lex_state = 2}, - [3130] = {.lex_state = 15, .external_lex_state = 6}, - [3131] = {.lex_state = 13, .external_lex_state = 5}, - [3132] = {.lex_state = 15, .external_lex_state = 6}, - [3133] = {.lex_state = 12, .external_lex_state = 5}, - [3134] = {.lex_state = 14, .external_lex_state = 5}, - [3135] = {.lex_state = 12, .external_lex_state = 5}, - [3136] = {.lex_state = 13, .external_lex_state = 5}, - [3137] = {.lex_state = 15, .external_lex_state = 6}, - [3138] = {.lex_state = 96, .external_lex_state = 2}, - [3139] = {.lex_state = 96, .external_lex_state = 2}, - [3140] = {.lex_state = 15, .external_lex_state = 6}, - [3141] = {.lex_state = 96, .external_lex_state = 5}, - [3142] = {.lex_state = 15, .external_lex_state = 6}, - [3143] = {.lex_state = 14, .external_lex_state = 5}, - [3144] = {.lex_state = 15, .external_lex_state = 6}, - [3145] = {.lex_state = 96, .external_lex_state = 2}, - [3146] = {.lex_state = 96, .external_lex_state = 5}, - [3147] = {.lex_state = 15, .external_lex_state = 6}, - [3148] = {.lex_state = 15, .external_lex_state = 6}, - [3149] = {.lex_state = 96, .external_lex_state = 2}, - [3150] = {.lex_state = 15, .external_lex_state = 6}, - [3151] = {.lex_state = 15, .external_lex_state = 6}, - [3152] = {.lex_state = 15, .external_lex_state = 6}, - [3153] = {.lex_state = 96, .external_lex_state = 2}, - [3154] = {.lex_state = 14, .external_lex_state = 5}, - [3155] = {.lex_state = 15, .external_lex_state = 6}, - [3156] = {.lex_state = 12, .external_lex_state = 5}, - [3157] = {.lex_state = 15, .external_lex_state = 6}, - [3158] = {.lex_state = 12, .external_lex_state = 5}, - [3159] = {.lex_state = 96, .external_lex_state = 2}, - [3160] = {.lex_state = 15, .external_lex_state = 6}, - [3161] = {.lex_state = 12, .external_lex_state = 2}, - [3162] = {.lex_state = 12, .external_lex_state = 5}, - [3163] = {.lex_state = 12, .external_lex_state = 5}, - [3164] = {.lex_state = 96, .external_lex_state = 5}, - [3165] = {.lex_state = 12, .external_lex_state = 5}, - [3166] = {.lex_state = 12, .external_lex_state = 5}, - [3167] = {.lex_state = 12, .external_lex_state = 5}, - [3168] = {.lex_state = 96, .external_lex_state = 5}, - [3169] = {.lex_state = 96, .external_lex_state = 5}, - [3170] = {.lex_state = 12, .external_lex_state = 5}, - [3171] = {.lex_state = 15, .external_lex_state = 2}, - [3172] = {.lex_state = 15, .external_lex_state = 2}, - [3173] = {.lex_state = 96, .external_lex_state = 2}, - [3174] = {.lex_state = 15, .external_lex_state = 2}, - [3175] = {.lex_state = 96, .external_lex_state = 5}, - [3176] = {.lex_state = 12, .external_lex_state = 5}, - [3177] = {.lex_state = 12, .external_lex_state = 5}, - [3178] = {.lex_state = 12, .external_lex_state = 5}, - [3179] = {.lex_state = 12, .external_lex_state = 5}, - [3180] = {.lex_state = 12, .external_lex_state = 5}, - [3181] = {.lex_state = 12, .external_lex_state = 5}, - [3182] = {.lex_state = 96, .external_lex_state = 5}, - [3183] = {.lex_state = 12, .external_lex_state = 5}, - [3184] = {.lex_state = 96, .external_lex_state = 5}, - [3185] = {.lex_state = 12, .external_lex_state = 5}, - [3186] = {.lex_state = 96, .external_lex_state = 5}, - [3187] = {.lex_state = 12, .external_lex_state = 5}, - [3188] = {.lex_state = 12, .external_lex_state = 5}, - [3189] = {.lex_state = 12, .external_lex_state = 5}, - [3190] = {.lex_state = 96, .external_lex_state = 5}, - [3191] = {.lex_state = 12, .external_lex_state = 5}, - [3192] = {.lex_state = 12, .external_lex_state = 5}, - [3193] = {.lex_state = 12, .external_lex_state = 5}, - [3194] = {.lex_state = 12, .external_lex_state = 5}, - [3195] = {.lex_state = 12, .external_lex_state = 5}, - [3196] = {.lex_state = 12, .external_lex_state = 5}, - [3197] = {.lex_state = 12, .external_lex_state = 5}, - [3198] = {.lex_state = 12, .external_lex_state = 5}, - [3199] = {.lex_state = 12, .external_lex_state = 5}, - [3200] = {.lex_state = 96, .external_lex_state = 6}, - [3201] = {.lex_state = 12, .external_lex_state = 5}, - [3202] = {.lex_state = 12, .external_lex_state = 5}, - [3203] = {.lex_state = 12, .external_lex_state = 5}, - [3204] = {.lex_state = 12, .external_lex_state = 5}, - [3205] = {.lex_state = 12, .external_lex_state = 2}, - [3206] = {.lex_state = 12, .external_lex_state = 5}, - [3207] = {.lex_state = 12, .external_lex_state = 2}, - [3208] = {.lex_state = 96, .external_lex_state = 5}, - [3209] = {.lex_state = 96, .external_lex_state = 5}, - [3210] = {.lex_state = 12, .external_lex_state = 5}, - [3211] = {.lex_state = 12, .external_lex_state = 5}, - [3212] = {.lex_state = 12, .external_lex_state = 5}, - [3213] = {.lex_state = 96, .external_lex_state = 5}, - [3214] = {.lex_state = 12, .external_lex_state = 5}, - [3215] = {.lex_state = 12, .external_lex_state = 5}, - [3216] = {.lex_state = 12, .external_lex_state = 5}, - [3217] = {.lex_state = 13, .external_lex_state = 6}, - [3218] = {.lex_state = 12, .external_lex_state = 5}, - [3219] = {.lex_state = 12, .external_lex_state = 5}, - [3220] = {.lex_state = 96, .external_lex_state = 2}, - [3221] = {.lex_state = 14, .external_lex_state = 6}, - [3222] = {.lex_state = 96, .external_lex_state = 5}, - [3223] = {.lex_state = 96, .external_lex_state = 5}, - [3224] = {.lex_state = 96, .external_lex_state = 5}, - [3225] = {.lex_state = 96, .external_lex_state = 5}, - [3226] = {.lex_state = 96, .external_lex_state = 5}, - [3227] = {.lex_state = 14, .external_lex_state = 6}, - [3228] = {.lex_state = 96, .external_lex_state = 5}, - [3229] = {.lex_state = 96, .external_lex_state = 5}, - [3230] = {.lex_state = 13, .external_lex_state = 6}, - [3231] = {.lex_state = 14, .external_lex_state = 6}, - [3232] = {.lex_state = 14, .external_lex_state = 6}, - [3233] = {.lex_state = 96, .external_lex_state = 5}, - [3234] = {.lex_state = 96, .external_lex_state = 6}, - [3235] = {.lex_state = 96, .external_lex_state = 5}, - [3236] = {.lex_state = 12, .external_lex_state = 5}, - [3237] = {.lex_state = 96, .external_lex_state = 5}, - [3238] = {.lex_state = 96, .external_lex_state = 5}, - [3239] = {.lex_state = 96, .external_lex_state = 5}, - [3240] = {.lex_state = 14, .external_lex_state = 6}, - [3241] = {.lex_state = 96, .external_lex_state = 6}, - [3242] = {.lex_state = 96, .external_lex_state = 5}, - [3243] = {.lex_state = 13, .external_lex_state = 6}, - [3244] = {.lex_state = 96, .external_lex_state = 5}, - [3245] = {.lex_state = 96, .external_lex_state = 6}, - [3246] = {.lex_state = 96, .external_lex_state = 6}, - [3247] = {.lex_state = 96, .external_lex_state = 5}, - [3248] = {.lex_state = 96, .external_lex_state = 5}, - [3249] = {.lex_state = 96, .external_lex_state = 6}, - [3250] = {.lex_state = 12, .external_lex_state = 2}, - [3251] = {.lex_state = 96, .external_lex_state = 5}, - [3252] = {.lex_state = 13, .external_lex_state = 6}, - [3253] = {.lex_state = 12, .external_lex_state = 5}, - [3254] = {.lex_state = 96, .external_lex_state = 5}, - [3255] = {.lex_state = 96, .external_lex_state = 5}, - [3256] = {.lex_state = 96, .external_lex_state = 5}, - [3257] = {.lex_state = 96, .external_lex_state = 5}, - [3258] = {.lex_state = 96, .external_lex_state = 5}, - [3259] = {.lex_state = 96, .external_lex_state = 5}, - [3260] = {.lex_state = 96, .external_lex_state = 5}, - [3261] = {.lex_state = 14, .external_lex_state = 6}, - [3262] = {.lex_state = 96, .external_lex_state = 5}, - [3263] = {.lex_state = 96, .external_lex_state = 5}, - [3264] = {.lex_state = 96, .external_lex_state = 5}, - [3265] = {.lex_state = 96, .external_lex_state = 5}, - [3266] = {.lex_state = 96, .external_lex_state = 5}, - [3267] = {.lex_state = 96, .external_lex_state = 5}, - [3268] = {.lex_state = 96, .external_lex_state = 5}, - [3269] = {.lex_state = 96, .external_lex_state = 5}, - [3270] = {.lex_state = 96, .external_lex_state = 5}, - [3271] = {.lex_state = 96, .external_lex_state = 5}, - [3272] = {.lex_state = 96, .external_lex_state = 5}, - [3273] = {.lex_state = 96, .external_lex_state = 5}, - [3274] = {.lex_state = 96, .external_lex_state = 5}, - [3275] = {.lex_state = 96, .external_lex_state = 5}, - [3276] = {.lex_state = 96, .external_lex_state = 5}, - [3277] = {.lex_state = 96, .external_lex_state = 5}, - [3278] = {.lex_state = 96, .external_lex_state = 2}, - [3279] = {.lex_state = 12, .external_lex_state = 5}, - [3280] = {.lex_state = 96, .external_lex_state = 5}, - [3281] = {.lex_state = 96, .external_lex_state = 5}, - [3282] = {.lex_state = 96, .external_lex_state = 5}, - [3283] = {.lex_state = 96, .external_lex_state = 5}, - [3284] = {.lex_state = 96, .external_lex_state = 5}, - [3285] = {.lex_state = 96, .external_lex_state = 5}, - [3286] = {.lex_state = 96, .external_lex_state = 5}, - [3287] = {.lex_state = 14, .external_lex_state = 6}, - [3288] = {.lex_state = 96, .external_lex_state = 5}, - [3289] = {.lex_state = 96, .external_lex_state = 5}, - [3290] = {.lex_state = 14, .external_lex_state = 6}, - [3291] = {.lex_state = 96, .external_lex_state = 5}, - [3292] = {.lex_state = 96, .external_lex_state = 6}, - [3293] = {.lex_state = 13, .external_lex_state = 2}, - [3294] = {.lex_state = 13, .external_lex_state = 2}, - [3295] = {.lex_state = 96, .external_lex_state = 6}, - [3296] = {.lex_state = 96, .external_lex_state = 6}, - [3297] = {.lex_state = 96, .external_lex_state = 6}, - [3298] = {.lex_state = 96, .external_lex_state = 2}, - [3299] = {.lex_state = 12, .external_lex_state = 5}, - [3300] = {.lex_state = 96, .external_lex_state = 6}, - [3301] = {.lex_state = 96, .external_lex_state = 5}, - [3302] = {.lex_state = 13, .external_lex_state = 2}, - [3303] = {.lex_state = 96, .external_lex_state = 2}, - [3304] = {.lex_state = 13, .external_lex_state = 2}, - [3305] = {.lex_state = 96, .external_lex_state = 6}, - [3306] = {.lex_state = 96, .external_lex_state = 6}, - [3307] = {.lex_state = 96, .external_lex_state = 5}, - [3308] = {.lex_state = 96, .external_lex_state = 5}, - [3309] = {.lex_state = 96, .external_lex_state = 5}, - [3310] = {.lex_state = 13, .external_lex_state = 2}, - [3311] = {.lex_state = 96, .external_lex_state = 2}, - [3312] = {.lex_state = 96, .external_lex_state = 5}, - [3313] = {.lex_state = 13, .external_lex_state = 2}, - [3314] = {.lex_state = 13, .external_lex_state = 2}, - [3315] = {.lex_state = 96, .external_lex_state = 2}, - [3316] = {.lex_state = 96, .external_lex_state = 6}, - [3317] = {.lex_state = 12, .external_lex_state = 2}, - [3318] = {.lex_state = 96, .external_lex_state = 6}, - [3319] = {.lex_state = 13, .external_lex_state = 2}, - [3320] = {.lex_state = 13, .external_lex_state = 2}, - [3321] = {.lex_state = 13, .external_lex_state = 2}, - [3322] = {.lex_state = 96, .external_lex_state = 2}, - [3323] = {.lex_state = 13, .external_lex_state = 2}, - [3324] = {.lex_state = 96, .external_lex_state = 5}, - [3325] = {.lex_state = 96, .external_lex_state = 5}, - [3326] = {.lex_state = 96, .external_lex_state = 5}, - [3327] = {.lex_state = 96, .external_lex_state = 5}, - [3328] = {.lex_state = 96, .external_lex_state = 6}, - [3329] = {.lex_state = 96, .external_lex_state = 5}, - [3330] = {.lex_state = 96, .external_lex_state = 2}, - [3331] = {.lex_state = 96, .external_lex_state = 5}, - [3332] = {.lex_state = 96, .external_lex_state = 6}, - [3333] = {.lex_state = 11, .external_lex_state = 2}, - [3334] = {.lex_state = 96, .external_lex_state = 2}, - [3335] = {.lex_state = 96, .external_lex_state = 2}, - [3336] = {.lex_state = 96, .external_lex_state = 6}, - [3337] = {.lex_state = 96, .external_lex_state = 6}, - [3338] = {.lex_state = 96, .external_lex_state = 5}, - [3339] = {.lex_state = 96, .external_lex_state = 5}, - [3340] = {.lex_state = 96, .external_lex_state = 5}, - [3341] = {.lex_state = 96, .external_lex_state = 5}, - [3342] = {.lex_state = 96, .external_lex_state = 6}, - [3343] = {.lex_state = 96, .external_lex_state = 6}, - [3344] = {.lex_state = 96, .external_lex_state = 6}, - [3345] = {.lex_state = 96, .external_lex_state = 5}, - [3346] = {.lex_state = 96, .external_lex_state = 6}, - [3347] = {.lex_state = 96, .external_lex_state = 6}, - [3348] = {.lex_state = 96, .external_lex_state = 2}, - [3349] = {.lex_state = 96, .external_lex_state = 5}, - [3350] = {.lex_state = 96, .external_lex_state = 6}, - [3351] = {.lex_state = 12, .external_lex_state = 2}, - [3352] = {.lex_state = 96, .external_lex_state = 6}, - [3353] = {.lex_state = 12, .external_lex_state = 2}, - [3354] = {.lex_state = 96, .external_lex_state = 6}, - [3355] = {.lex_state = 96, .external_lex_state = 2}, - [3356] = {.lex_state = 96, .external_lex_state = 6}, - [3357] = {.lex_state = 96, .external_lex_state = 5}, - [3358] = {.lex_state = 96, .external_lex_state = 6}, - [3359] = {.lex_state = 96, .external_lex_state = 6}, - [3360] = {.lex_state = 12, .external_lex_state = 2}, - [3361] = {.lex_state = 13, .external_lex_state = 2}, - [3362] = {.lex_state = 96, .external_lex_state = 6}, - [3363] = {.lex_state = 13, .external_lex_state = 2}, - [3364] = {.lex_state = 96, .external_lex_state = 5}, - [3365] = {.lex_state = 96, .external_lex_state = 6}, - [3366] = {.lex_state = 96, .external_lex_state = 6}, - [3367] = {.lex_state = 96, .external_lex_state = 5}, - [3368] = {.lex_state = 96, .external_lex_state = 5}, - [3369] = {.lex_state = 96, .external_lex_state = 6}, - [3370] = {.lex_state = 96, .external_lex_state = 5}, - [3371] = {.lex_state = 96, .external_lex_state = 6}, - [3372] = {.lex_state = 96, .external_lex_state = 6}, - [3373] = {.lex_state = 12, .external_lex_state = 2}, - [3374] = {.lex_state = 96, .external_lex_state = 6}, - [3375] = {.lex_state = 96, .external_lex_state = 2}, - [3376] = {.lex_state = 13, .external_lex_state = 2}, - [3377] = {.lex_state = 96, .external_lex_state = 5}, - [3378] = {.lex_state = 96, .external_lex_state = 6}, - [3379] = {.lex_state = 96, .external_lex_state = 2}, - [3380] = {.lex_state = 96, .external_lex_state = 6}, - [3381] = {.lex_state = 13, .external_lex_state = 2}, - [3382] = {.lex_state = 13, .external_lex_state = 2}, - [3383] = {.lex_state = 96, .external_lex_state = 6}, - [3384] = {.lex_state = 96, .external_lex_state = 6}, - [3385] = {.lex_state = 96, .external_lex_state = 6}, - [3386] = {.lex_state = 13, .external_lex_state = 2}, - [3387] = {.lex_state = 11, .external_lex_state = 2}, - [3388] = {.lex_state = 96, .external_lex_state = 6}, - [3389] = {.lex_state = 96, .external_lex_state = 6}, - [3390] = {.lex_state = 96, .external_lex_state = 2}, - [3391] = {.lex_state = 13, .external_lex_state = 2}, - [3392] = {.lex_state = 13, .external_lex_state = 2}, - [3393] = {.lex_state = 96, .external_lex_state = 5}, - [3394] = {.lex_state = 96, .external_lex_state = 6}, - [3395] = {.lex_state = 13, .external_lex_state = 2}, - [3396] = {.lex_state = 96, .external_lex_state = 6}, - [3397] = {.lex_state = 96, .external_lex_state = 5}, - [3398] = {.lex_state = 96, .external_lex_state = 2}, - [3399] = {.lex_state = 96, .external_lex_state = 6}, - [3400] = {.lex_state = 96, .external_lex_state = 5}, - [3401] = {.lex_state = 96, .external_lex_state = 6}, - [3402] = {.lex_state = 96, .external_lex_state = 6}, - [3403] = {.lex_state = 96, .external_lex_state = 5}, - [3404] = {.lex_state = 96, .external_lex_state = 6}, - [3405] = {.lex_state = 96, .external_lex_state = 5}, - [3406] = {.lex_state = 96, .external_lex_state = 5}, - [3407] = {.lex_state = 12, .external_lex_state = 2}, - [3408] = {.lex_state = 13, .external_lex_state = 2}, - [3409] = {.lex_state = 96, .external_lex_state = 5}, - [3410] = {.lex_state = 96, .external_lex_state = 2}, - [3411] = {.lex_state = 96, .external_lex_state = 5}, - [3412] = {.lex_state = 96, .external_lex_state = 6}, - [3413] = {.lex_state = 96, .external_lex_state = 5}, - [3414] = {.lex_state = 12, .external_lex_state = 2}, - [3415] = {.lex_state = 96, .external_lex_state = 6}, - [3416] = {.lex_state = 96, .external_lex_state = 5}, - [3417] = {.lex_state = 96, .external_lex_state = 5}, - [3418] = {.lex_state = 96, .external_lex_state = 5}, - [3419] = {.lex_state = 13, .external_lex_state = 2}, - [3420] = {.lex_state = 13, .external_lex_state = 2}, - [3421] = {.lex_state = 96, .external_lex_state = 5}, - [3422] = {.lex_state = 96, .external_lex_state = 6}, - [3423] = {.lex_state = 96, .external_lex_state = 6}, - [3424] = {.lex_state = 96, .external_lex_state = 5}, - [3425] = {.lex_state = 96, .external_lex_state = 5}, - [3426] = {.lex_state = 96, .external_lex_state = 6}, - [3427] = {.lex_state = 96, .external_lex_state = 5}, - [3428] = {.lex_state = 12, .external_lex_state = 2}, - [3429] = {.lex_state = 11, .external_lex_state = 2}, - [3430] = {.lex_state = 96, .external_lex_state = 5}, - [3431] = {.lex_state = 96, .external_lex_state = 5}, - [3432] = {.lex_state = 96, .external_lex_state = 6}, - [3433] = {.lex_state = 96, .external_lex_state = 5}, - [3434] = {.lex_state = 96, .external_lex_state = 6}, - [3435] = {.lex_state = 96, .external_lex_state = 5}, - [3436] = {.lex_state = 13, .external_lex_state = 2}, - [3437] = {.lex_state = 96, .external_lex_state = 6}, - [3438] = {.lex_state = 96, .external_lex_state = 5}, - [3439] = {.lex_state = 96, .external_lex_state = 6}, - [3440] = {.lex_state = 96, .external_lex_state = 5}, - [3441] = {.lex_state = 12, .external_lex_state = 2}, - [3442] = {.lex_state = 96, .external_lex_state = 6}, - [3443] = {.lex_state = 13, .external_lex_state = 2}, - [3444] = {.lex_state = 96, .external_lex_state = 5}, - [3445] = {.lex_state = 96, .external_lex_state = 6}, - [3446] = {.lex_state = 96, .external_lex_state = 5}, - [3447] = {.lex_state = 96, .external_lex_state = 6}, - [3448] = {.lex_state = 13, .external_lex_state = 2}, - [3449] = {.lex_state = 96, .external_lex_state = 6}, - [3450] = {.lex_state = 96, .external_lex_state = 5}, - [3451] = {.lex_state = 96, .external_lex_state = 6}, - [3452] = {.lex_state = 13, .external_lex_state = 2}, - [3453] = {.lex_state = 13, .external_lex_state = 2}, - [3454] = {.lex_state = 96, .external_lex_state = 5}, - [3455] = {.lex_state = 13, .external_lex_state = 2}, - [3456] = {.lex_state = 96, .external_lex_state = 5}, - [3457] = {.lex_state = 13, .external_lex_state = 2}, - [3458] = {.lex_state = 96, .external_lex_state = 6}, - [3459] = {.lex_state = 96, .external_lex_state = 5}, - [3460] = {.lex_state = 96, .external_lex_state = 5}, - [3461] = {.lex_state = 96, .external_lex_state = 5}, - [3462] = {.lex_state = 96, .external_lex_state = 6}, - [3463] = {.lex_state = 96, .external_lex_state = 6}, - [3464] = {.lex_state = 96, .external_lex_state = 6}, - [3465] = {.lex_state = 96, .external_lex_state = 5}, - [3466] = {.lex_state = 96, .external_lex_state = 6}, - [3467] = {.lex_state = 96, .external_lex_state = 6}, - [3468] = {.lex_state = 96, .external_lex_state = 5}, - [3469] = {.lex_state = 96, .external_lex_state = 6}, - [3470] = {.lex_state = 96, .external_lex_state = 5}, - [3471] = {.lex_state = 96, .external_lex_state = 2}, - [3472] = {.lex_state = 96, .external_lex_state = 2}, - [3473] = {.lex_state = 18, .external_lex_state = 2}, - [3474] = {.lex_state = 96, .external_lex_state = 2}, - [3475] = {.lex_state = 96, .external_lex_state = 2}, - [3476] = {.lex_state = 18, .external_lex_state = 2}, - [3477] = {.lex_state = 96, .external_lex_state = 5}, - [3478] = {.lex_state = 96, .external_lex_state = 5}, - [3479] = {.lex_state = 96, .external_lex_state = 2}, - [3480] = {.lex_state = 96, .external_lex_state = 2}, - [3481] = {.lex_state = 96, .external_lex_state = 5}, - [3482] = {.lex_state = 18, .external_lex_state = 2}, - [3483] = {.lex_state = 18, .external_lex_state = 7}, - [3484] = {.lex_state = 96, .external_lex_state = 5}, - [3485] = {.lex_state = 18, .external_lex_state = 2}, - [3486] = {.lex_state = 96, .external_lex_state = 2}, - [3487] = {.lex_state = 18, .external_lex_state = 2}, - [3488] = {.lex_state = 18, .external_lex_state = 7}, - [3489] = {.lex_state = 18, .external_lex_state = 7}, - [3490] = {.lex_state = 18, .external_lex_state = 7}, - [3491] = {.lex_state = 18, .external_lex_state = 7}, - [3492] = {.lex_state = 96, .external_lex_state = 2}, - [3493] = {.lex_state = 18, .external_lex_state = 2}, - [3494] = {.lex_state = 12, .external_lex_state = 2}, - [3495] = {.lex_state = 18, .external_lex_state = 7}, - [3496] = {.lex_state = 96, .external_lex_state = 2}, - [3497] = {.lex_state = 14, .external_lex_state = 2}, - [3498] = {.lex_state = 18, .external_lex_state = 2}, - [3499] = {.lex_state = 18, .external_lex_state = 2}, - [3500] = {.lex_state = 18, .external_lex_state = 7}, - [3501] = {.lex_state = 96, .external_lex_state = 6}, - [3502] = {.lex_state = 96, .external_lex_state = 5}, - [3503] = {.lex_state = 96, .external_lex_state = 5}, - [3504] = {.lex_state = 96, .external_lex_state = 2}, - [3505] = {.lex_state = 96, .external_lex_state = 2}, - [3506] = {.lex_state = 14, .external_lex_state = 2}, - [3507] = {.lex_state = 18, .external_lex_state = 7}, - [3508] = {.lex_state = 18, .external_lex_state = 2}, - [3509] = {.lex_state = 96, .external_lex_state = 2}, - [3510] = {.lex_state = 14, .external_lex_state = 2}, - [3511] = {.lex_state = 96, .external_lex_state = 2}, - [3512] = {.lex_state = 12, .external_lex_state = 2}, - [3513] = {.lex_state = 15, .external_lex_state = 2}, - [3514] = {.lex_state = 96, .external_lex_state = 2}, - [3515] = {.lex_state = 96, .external_lex_state = 5}, - [3516] = {.lex_state = 96, .external_lex_state = 5}, - [3517] = {.lex_state = 96, .external_lex_state = 5}, - [3518] = {.lex_state = 96, .external_lex_state = 2}, - [3519] = {.lex_state = 96, .external_lex_state = 5}, - [3520] = {.lex_state = 96, .external_lex_state = 5}, - [3521] = {.lex_state = 96, .external_lex_state = 2}, - [3522] = {.lex_state = 96, .external_lex_state = 5}, - [3523] = {.lex_state = 96, .external_lex_state = 5}, - [3524] = {.lex_state = 96, .external_lex_state = 5}, - [3525] = {.lex_state = 96, .external_lex_state = 5}, - [3526] = {.lex_state = 96, .external_lex_state = 5}, - [3527] = {.lex_state = 96, .external_lex_state = 5}, - [3528] = {.lex_state = 12, .external_lex_state = 2}, - [3529] = {.lex_state = 96, .external_lex_state = 5}, - [3530] = {.lex_state = 96, .external_lex_state = 5}, - [3531] = {.lex_state = 96, .external_lex_state = 5}, - [3532] = {.lex_state = 96, .external_lex_state = 5}, - [3533] = {.lex_state = 96, .external_lex_state = 2}, - [3534] = {.lex_state = 96, .external_lex_state = 5}, - [3535] = {.lex_state = 96, .external_lex_state = 5}, - [3536] = {.lex_state = 96, .external_lex_state = 5}, - [3537] = {.lex_state = 96, .external_lex_state = 5}, - [3538] = {.lex_state = 96, .external_lex_state = 5}, - [3539] = {.lex_state = 96, .external_lex_state = 5}, - [3540] = {.lex_state = 96, .external_lex_state = 5}, - [3541] = {.lex_state = 96, .external_lex_state = 5}, - [3542] = {.lex_state = 15, .external_lex_state = 2}, - [3543] = {.lex_state = 96, .external_lex_state = 5}, - [3544] = {.lex_state = 96, .external_lex_state = 2}, - [3545] = {.lex_state = 96, .external_lex_state = 2}, - [3546] = {.lex_state = 96, .external_lex_state = 2}, - [3547] = {.lex_state = 96, .external_lex_state = 5}, - [3548] = {.lex_state = 96, .external_lex_state = 2}, - [3549] = {.lex_state = 12, .external_lex_state = 2}, - [3550] = {.lex_state = 96, .external_lex_state = 5}, - [3551] = {.lex_state = 12, .external_lex_state = 2}, - [3552] = {.lex_state = 12, .external_lex_state = 2}, - [3553] = {.lex_state = 96, .external_lex_state = 2}, - [3554] = {.lex_state = 96, .external_lex_state = 5}, - [3555] = {.lex_state = 96, .external_lex_state = 5}, - [3556] = {.lex_state = 96, .external_lex_state = 5}, - [3557] = {.lex_state = 15, .external_lex_state = 2}, - [3558] = {.lex_state = 96, .external_lex_state = 5}, - [3559] = {.lex_state = 96, .external_lex_state = 5}, - [3560] = {.lex_state = 96, .external_lex_state = 5}, - [3561] = {.lex_state = 96, .external_lex_state = 2}, - [3562] = {.lex_state = 96, .external_lex_state = 2}, - [3563] = {.lex_state = 96, .external_lex_state = 2}, - [3564] = {.lex_state = 96, .external_lex_state = 5}, - [3565] = {.lex_state = 96, .external_lex_state = 5}, - [3566] = {.lex_state = 15, .external_lex_state = 2}, - [3567] = {.lex_state = 96, .external_lex_state = 5}, - [3568] = {.lex_state = 96, .external_lex_state = 5}, - [3569] = {.lex_state = 96, .external_lex_state = 2}, - [3570] = {.lex_state = 96, .external_lex_state = 5}, - [3571] = {.lex_state = 96, .external_lex_state = 2}, - [3572] = {.lex_state = 96, .external_lex_state = 5}, - [3573] = {.lex_state = 96, .external_lex_state = 2}, - [3574] = {.lex_state = 96, .external_lex_state = 2}, - [3575] = {.lex_state = 96, .external_lex_state = 2}, - [3576] = {.lex_state = 96, .external_lex_state = 2}, - [3577] = {.lex_state = 96, .external_lex_state = 5}, - [3578] = {.lex_state = 96, .external_lex_state = 5}, - [3579] = {.lex_state = 96, .external_lex_state = 5}, - [3580] = {.lex_state = 96, .external_lex_state = 5}, - [3581] = {.lex_state = 96, .external_lex_state = 2}, - [3582] = {.lex_state = 96, .external_lex_state = 5}, - [3583] = {.lex_state = 96, .external_lex_state = 5}, - [3584] = {.lex_state = 96, .external_lex_state = 5}, - [3585] = {.lex_state = 96, .external_lex_state = 5}, - [3586] = {.lex_state = 96, .external_lex_state = 5}, - [3587] = {.lex_state = 96, .external_lex_state = 2}, - [3588] = {.lex_state = 96, .external_lex_state = 5}, - [3589] = {.lex_state = 96, .external_lex_state = 5}, - [3590] = {.lex_state = 96, .external_lex_state = 5}, - [3591] = {.lex_state = 96, .external_lex_state = 5}, - [3592] = {.lex_state = 96, .external_lex_state = 2}, - [3593] = {.lex_state = 12, .external_lex_state = 2}, - [3594] = {.lex_state = 15, .external_lex_state = 2}, - [3595] = {.lex_state = 96, .external_lex_state = 5}, - [3596] = {.lex_state = 96, .external_lex_state = 5}, - [3597] = {.lex_state = 15, .external_lex_state = 2}, - [3598] = {.lex_state = 96, .external_lex_state = 2}, - [3599] = {.lex_state = 96, .external_lex_state = 5}, - [3600] = {.lex_state = 96, .external_lex_state = 5}, - [3601] = {.lex_state = 96, .external_lex_state = 5}, - [3602] = {.lex_state = 96, .external_lex_state = 5}, - [3603] = {.lex_state = 15, .external_lex_state = 2}, - [3604] = {.lex_state = 15, .external_lex_state = 2}, - [3605] = {.lex_state = 96, .external_lex_state = 2}, - [3606] = {.lex_state = 96, .external_lex_state = 2}, - [3607] = {.lex_state = 96, .external_lex_state = 2}, - [3608] = {.lex_state = 96, .external_lex_state = 2}, - [3609] = {.lex_state = 96, .external_lex_state = 5}, - [3610] = {.lex_state = 96, .external_lex_state = 5}, - [3611] = {.lex_state = 96, .external_lex_state = 2}, - [3612] = {.lex_state = 96, .external_lex_state = 5}, - [3613] = {.lex_state = 96, .external_lex_state = 5}, - [3614] = {.lex_state = 15, .external_lex_state = 2}, - [3615] = {.lex_state = 15, .external_lex_state = 2}, - [3616] = {.lex_state = 15, .external_lex_state = 2}, - [3617] = {.lex_state = 12, .external_lex_state = 2}, - [3618] = {.lex_state = 96, .external_lex_state = 5}, - [3619] = {.lex_state = 96, .external_lex_state = 2}, - [3620] = {.lex_state = 15, .external_lex_state = 2}, - [3621] = {.lex_state = 96, .external_lex_state = 5}, - [3622] = {.lex_state = 15, .external_lex_state = 2}, - [3623] = {.lex_state = 15, .external_lex_state = 2}, - [3624] = {.lex_state = 96, .external_lex_state = 2}, - [3625] = {.lex_state = 96, .external_lex_state = 5}, - [3626] = {.lex_state = 96, .external_lex_state = 2}, - [3627] = {.lex_state = 12, .external_lex_state = 2}, - [3628] = {.lex_state = 96, .external_lex_state = 2}, - [3629] = {.lex_state = 12, .external_lex_state = 2}, - [3630] = {.lex_state = 12, .external_lex_state = 2}, - [3631] = {.lex_state = 96, .external_lex_state = 5}, - [3632] = {.lex_state = 96, .external_lex_state = 5}, - [3633] = {.lex_state = 96, .external_lex_state = 2}, - [3634] = {.lex_state = 15, .external_lex_state = 2}, - [3635] = {.lex_state = 96, .external_lex_state = 5}, - [3636] = {.lex_state = 96, .external_lex_state = 5}, - [3637] = {.lex_state = 96, .external_lex_state = 5}, - [3638] = {.lex_state = 96, .external_lex_state = 5}, - [3639] = {.lex_state = 96, .external_lex_state = 2}, - [3640] = {.lex_state = 96, .external_lex_state = 5}, - [3641] = {.lex_state = 96, .external_lex_state = 2}, - [3642] = {.lex_state = 96, .external_lex_state = 5}, - [3643] = {.lex_state = 96, .external_lex_state = 2}, - [3644] = {.lex_state = 96, .external_lex_state = 5}, - [3645] = {.lex_state = 96, .external_lex_state = 2}, - [3646] = {.lex_state = 96, .external_lex_state = 2}, - [3647] = {.lex_state = 96, .external_lex_state = 5}, - [3648] = {.lex_state = 96, .external_lex_state = 5}, - [3649] = {.lex_state = 96, .external_lex_state = 2}, - [3650] = {.lex_state = 96, .external_lex_state = 2}, - [3651] = {.lex_state = 96, .external_lex_state = 2}, - [3652] = {.lex_state = 96, .external_lex_state = 2}, - [3653] = {.lex_state = 96, .external_lex_state = 2}, - [3654] = {.lex_state = 96, .external_lex_state = 5}, - [3655] = {.lex_state = 96, .external_lex_state = 5}, - [3656] = {.lex_state = 96, .external_lex_state = 2}, - [3657] = {.lex_state = 96, .external_lex_state = 2}, - [3658] = {.lex_state = 12, .external_lex_state = 2}, - [3659] = {.lex_state = 96, .external_lex_state = 2}, - [3660] = {.lex_state = 96, .external_lex_state = 2}, - [3661] = {.lex_state = 96, .external_lex_state = 5}, - [3662] = {.lex_state = 96, .external_lex_state = 5}, - [3663] = {.lex_state = 12, .external_lex_state = 2}, - [3664] = {.lex_state = 96, .external_lex_state = 5}, - [3665] = {.lex_state = 96, .external_lex_state = 5}, - [3666] = {.lex_state = 96, .external_lex_state = 5}, - [3667] = {.lex_state = 96, .external_lex_state = 5}, - [3668] = {.lex_state = 96, .external_lex_state = 5}, - [3669] = {.lex_state = 96, .external_lex_state = 5}, - [3670] = {.lex_state = 96, .external_lex_state = 5}, - [3671] = {.lex_state = 96, .external_lex_state = 5}, - [3672] = {.lex_state = 96, .external_lex_state = 2}, - [3673] = {.lex_state = 96, .external_lex_state = 5}, - [3674] = {.lex_state = 96, .external_lex_state = 5}, - [3675] = {.lex_state = 96, .external_lex_state = 5}, - [3676] = {.lex_state = 96, .external_lex_state = 5}, - [3677] = {.lex_state = 96, .external_lex_state = 5}, - [3678] = {.lex_state = 96, .external_lex_state = 5}, - [3679] = {.lex_state = 12, .external_lex_state = 2}, - [3680] = {.lex_state = 96, .external_lex_state = 5}, - [3681] = {.lex_state = 96, .external_lex_state = 5}, - [3682] = {.lex_state = 96, .external_lex_state = 5}, - [3683] = {.lex_state = 96, .external_lex_state = 5}, - [3684] = {.lex_state = 96, .external_lex_state = 5}, - [3685] = {.lex_state = 12, .external_lex_state = 2}, - [3686] = {.lex_state = 96, .external_lex_state = 5}, - [3687] = {.lex_state = 96, .external_lex_state = 5}, - [3688] = {.lex_state = 96, .external_lex_state = 5}, - [3689] = {.lex_state = 96, .external_lex_state = 5}, - [3690] = {.lex_state = 96, .external_lex_state = 5}, - [3691] = {.lex_state = 96, .external_lex_state = 5}, - [3692] = {.lex_state = 96, .external_lex_state = 5}, - [3693] = {.lex_state = 96, .external_lex_state = 5}, - [3694] = {.lex_state = 96, .external_lex_state = 5}, - [3695] = {.lex_state = 12, .external_lex_state = 2}, - [3696] = {.lex_state = 96, .external_lex_state = 5}, - [3697] = {.lex_state = 96, .external_lex_state = 5}, - [3698] = {.lex_state = 96, .external_lex_state = 5}, - [3699] = {.lex_state = 96, .external_lex_state = 5}, - [3700] = {.lex_state = 96, .external_lex_state = 5}, - [3701] = {.lex_state = 96, .external_lex_state = 5}, - [3702] = {.lex_state = 15, .external_lex_state = 2}, - [3703] = {.lex_state = 96, .external_lex_state = 5}, - [3704] = {.lex_state = 96, .external_lex_state = 5}, - [3705] = {.lex_state = 96, .external_lex_state = 5}, - [3706] = {.lex_state = 96, .external_lex_state = 5}, - [3707] = {.lex_state = 96, .external_lex_state = 5}, - [3708] = {.lex_state = 96, .external_lex_state = 5}, - [3709] = {.lex_state = 96, .external_lex_state = 5}, - [3710] = {.lex_state = 96, .external_lex_state = 5}, - [3711] = {.lex_state = 96, .external_lex_state = 5}, - [3712] = {.lex_state = 96, .external_lex_state = 5}, - [3713] = {.lex_state = 96, .external_lex_state = 5}, - [3714] = {.lex_state = 96, .external_lex_state = 5}, - [3715] = {.lex_state = 96, .external_lex_state = 5}, - [3716] = {.lex_state = 96, .external_lex_state = 5}, - [3717] = {.lex_state = 96, .external_lex_state = 5}, - [3718] = {.lex_state = 96, .external_lex_state = 5}, - [3719] = {.lex_state = 96, .external_lex_state = 2}, - [3720] = {.lex_state = 96, .external_lex_state = 5}, - [3721] = {.lex_state = 96, .external_lex_state = 2}, - [3722] = {.lex_state = 96, .external_lex_state = 5}, - [3723] = {.lex_state = 12, .external_lex_state = 2}, - [3724] = {.lex_state = 12, .external_lex_state = 2}, - [3725] = {.lex_state = 12, .external_lex_state = 2}, - [3726] = {.lex_state = 96, .external_lex_state = 5}, - [3727] = {.lex_state = 96, .external_lex_state = 2}, - [3728] = {.lex_state = 96, .external_lex_state = 2}, - [3729] = {.lex_state = 96, .external_lex_state = 2}, - [3730] = {.lex_state = 96, .external_lex_state = 2}, - [3731] = {.lex_state = 96, .external_lex_state = 5}, - [3732] = {.lex_state = 96, .external_lex_state = 5}, - [3733] = {.lex_state = 96, .external_lex_state = 5}, - [3734] = {.lex_state = 96, .external_lex_state = 5}, - [3735] = {.lex_state = 96, .external_lex_state = 5}, - [3736] = {.lex_state = 96, .external_lex_state = 5}, - [3737] = {.lex_state = 96, .external_lex_state = 5}, - [3738] = {.lex_state = 12, .external_lex_state = 2}, - [3739] = {.lex_state = 96, .external_lex_state = 2}, - [3740] = {.lex_state = 12, .external_lex_state = 2}, - [3741] = {.lex_state = 96, .external_lex_state = 5}, - [3742] = {.lex_state = 96, .external_lex_state = 5}, - [3743] = {.lex_state = 96, .external_lex_state = 5}, - [3744] = {.lex_state = 96, .external_lex_state = 5}, - [3745] = {.lex_state = 96, .external_lex_state = 5}, - [3746] = {.lex_state = 96, .external_lex_state = 5}, - [3747] = {.lex_state = 96, .external_lex_state = 5}, - [3748] = {.lex_state = 96, .external_lex_state = 5}, - [3749] = {.lex_state = 96, .external_lex_state = 5}, - [3750] = {.lex_state = 96, .external_lex_state = 5}, - [3751] = {.lex_state = 96, .external_lex_state = 5}, - [3752] = {.lex_state = 96, .external_lex_state = 5}, - [3753] = {.lex_state = 96, .external_lex_state = 5}, - [3754] = {.lex_state = 15, .external_lex_state = 2}, - [3755] = {.lex_state = 12, .external_lex_state = 2}, - [3756] = {.lex_state = 96, .external_lex_state = 5}, - [3757] = {.lex_state = 96, .external_lex_state = 2}, - [3758] = {.lex_state = 12, .external_lex_state = 2}, - [3759] = {.lex_state = 96, .external_lex_state = 5}, - [3760] = {.lex_state = 12, .external_lex_state = 2}, - [3761] = {.lex_state = 12, .external_lex_state = 2}, - [3762] = {.lex_state = 12, .external_lex_state = 2}, - [3763] = {.lex_state = 96, .external_lex_state = 5}, - [3764] = {.lex_state = 96, .external_lex_state = 5}, - [3765] = {.lex_state = 12, .external_lex_state = 2}, - [3766] = {.lex_state = 96, .external_lex_state = 5}, - [3767] = {.lex_state = 96, .external_lex_state = 5}, - [3768] = {.lex_state = 12, .external_lex_state = 2}, - [3769] = {.lex_state = 96, .external_lex_state = 2}, - [3770] = {.lex_state = 96, .external_lex_state = 2}, - [3771] = {.lex_state = 12, .external_lex_state = 2}, - [3772] = {.lex_state = 96, .external_lex_state = 6}, - [3773] = {.lex_state = 96, .external_lex_state = 2}, - [3774] = {.lex_state = 96, .external_lex_state = 2}, - [3775] = {.lex_state = 12, .external_lex_state = 2}, - [3776] = {.lex_state = 96, .external_lex_state = 6}, - [3777] = {.lex_state = 12, .external_lex_state = 2}, - [3778] = {.lex_state = 96, .external_lex_state = 5}, - [3779] = {.lex_state = 96, .external_lex_state = 2}, - [3780] = {.lex_state = 96, .external_lex_state = 5}, - [3781] = {.lex_state = 96, .external_lex_state = 2}, - [3782] = {.lex_state = 96, .external_lex_state = 2}, - [3783] = {.lex_state = 96, .external_lex_state = 5}, - [3784] = {.lex_state = 96, .external_lex_state = 5}, - [3785] = {.lex_state = 96, .external_lex_state = 2}, - [3786] = {.lex_state = 12, .external_lex_state = 2}, - [3787] = {.lex_state = 96, .external_lex_state = 5}, - [3788] = {.lex_state = 96, .external_lex_state = 2}, - [3789] = {.lex_state = 18, .external_lex_state = 7}, - [3790] = {.lex_state = 96, .external_lex_state = 6}, - [3791] = {.lex_state = 96, .external_lex_state = 2}, - [3792] = {.lex_state = 12, .external_lex_state = 2}, - [3793] = {.lex_state = 96, .external_lex_state = 2}, - [3794] = {.lex_state = 96, .external_lex_state = 2}, - [3795] = {.lex_state = 96, .external_lex_state = 6}, - [3796] = {.lex_state = 12, .external_lex_state = 2}, - [3797] = {.lex_state = 12, .external_lex_state = 2}, - [3798] = {.lex_state = 12, .external_lex_state = 2}, - [3799] = {.lex_state = 12, .external_lex_state = 2}, - [3800] = {.lex_state = 12, .external_lex_state = 2}, - [3801] = {.lex_state = 96, .external_lex_state = 2}, - [3802] = {.lex_state = 96, .external_lex_state = 6}, - [3803] = {.lex_state = 96, .external_lex_state = 6}, - [3804] = {.lex_state = 96, .external_lex_state = 2}, - [3805] = {.lex_state = 12, .external_lex_state = 2}, - [3806] = {.lex_state = 96, .external_lex_state = 5}, - [3807] = {.lex_state = 96, .external_lex_state = 5}, - [3808] = {.lex_state = 96, .external_lex_state = 2}, - [3809] = {.lex_state = 96, .external_lex_state = 5}, - [3810] = {.lex_state = 96, .external_lex_state = 2}, - [3811] = {.lex_state = 96, .external_lex_state = 5}, - [3812] = {.lex_state = 96, .external_lex_state = 2}, - [3813] = {.lex_state = 96, .external_lex_state = 5}, - [3814] = {.lex_state = 96, .external_lex_state = 2}, - [3815] = {.lex_state = 96, .external_lex_state = 6}, - [3816] = {.lex_state = 96, .external_lex_state = 6}, - [3817] = {.lex_state = 12, .external_lex_state = 2}, - [3818] = {.lex_state = 96, .external_lex_state = 6}, - [3819] = {.lex_state = 96, .external_lex_state = 2}, - [3820] = {.lex_state = 96, .external_lex_state = 5}, - [3821] = {.lex_state = 12, .external_lex_state = 2}, - [3822] = {.lex_state = 96, .external_lex_state = 5}, - [3823] = {.lex_state = 96, .external_lex_state = 2}, - [3824] = {.lex_state = 12, .external_lex_state = 2}, - [3825] = {.lex_state = 12, .external_lex_state = 2}, - [3826] = {.lex_state = 96, .external_lex_state = 5}, - [3827] = {.lex_state = 96, .external_lex_state = 6}, - [3828] = {.lex_state = 96, .external_lex_state = 6}, - [3829] = {.lex_state = 96, .external_lex_state = 5}, - [3830] = {.lex_state = 96, .external_lex_state = 6}, - [3831] = {.lex_state = 96, .external_lex_state = 5}, - [3832] = {.lex_state = 96, .external_lex_state = 2}, - [3833] = {.lex_state = 96, .external_lex_state = 5}, - [3834] = {.lex_state = 96, .external_lex_state = 6}, - [3835] = {.lex_state = 12, .external_lex_state = 2}, - [3836] = {.lex_state = 96, .external_lex_state = 5}, - [3837] = {.lex_state = 96, .external_lex_state = 5}, - [3838] = {.lex_state = 12, .external_lex_state = 2}, - [3839] = {.lex_state = 12, .external_lex_state = 2}, - [3840] = {.lex_state = 96, .external_lex_state = 2}, - [3841] = {.lex_state = 96, .external_lex_state = 2}, - [3842] = {.lex_state = 96, .external_lex_state = 2}, - [3843] = {.lex_state = 96, .external_lex_state = 2}, - [3844] = {.lex_state = 12, .external_lex_state = 2}, - [3845] = {.lex_state = 96, .external_lex_state = 2}, - [3846] = {.lex_state = 96, .external_lex_state = 2}, - [3847] = {.lex_state = 96, .external_lex_state = 2}, - [3848] = {.lex_state = 96, .external_lex_state = 2}, - [3849] = {.lex_state = 96, .external_lex_state = 2}, - [3850] = {.lex_state = 96, .external_lex_state = 6}, - [3851] = {.lex_state = 12, .external_lex_state = 2}, - [3852] = {.lex_state = 96, .external_lex_state = 5}, - [3853] = {.lex_state = 96, .external_lex_state = 5}, - [3854] = {.lex_state = 96, .external_lex_state = 5}, - [3855] = {.lex_state = 96, .external_lex_state = 5}, - [3856] = {.lex_state = 12, .external_lex_state = 2}, - [3857] = {.lex_state = 12, .external_lex_state = 2}, - [3858] = {.lex_state = 12, .external_lex_state = 2}, - [3859] = {.lex_state = 12, .external_lex_state = 2}, - [3860] = {.lex_state = 96, .external_lex_state = 6}, - [3861] = {.lex_state = 12, .external_lex_state = 2}, - [3862] = {.lex_state = 96, .external_lex_state = 6}, - [3863] = {.lex_state = 96, .external_lex_state = 6}, - [3864] = {.lex_state = 12, .external_lex_state = 2}, - [3865] = {.lex_state = 12, .external_lex_state = 2}, - [3866] = {.lex_state = 12, .external_lex_state = 2}, - [3867] = {.lex_state = 96, .external_lex_state = 6}, - [3868] = {.lex_state = 12, .external_lex_state = 2}, - [3869] = {.lex_state = 96, .external_lex_state = 6}, - [3870] = {.lex_state = 18, .external_lex_state = 7}, - [3871] = {.lex_state = 96, .external_lex_state = 2}, - [3872] = {.lex_state = 12, .external_lex_state = 2}, - [3873] = {.lex_state = 12, .external_lex_state = 2}, - [3874] = {.lex_state = 96, .external_lex_state = 6}, - [3875] = {.lex_state = 96, .external_lex_state = 6}, - [3876] = {.lex_state = 18, .external_lex_state = 7}, - [3877] = {.lex_state = 96, .external_lex_state = 2}, - [3878] = {.lex_state = 96, .external_lex_state = 2}, - [3879] = {.lex_state = 12, .external_lex_state = 2}, - [3880] = {.lex_state = 96, .external_lex_state = 6}, - [3881] = {.lex_state = 96, .external_lex_state = 2}, - [3882] = {.lex_state = 96, .external_lex_state = 6}, - [3883] = {.lex_state = 96, .external_lex_state = 2}, - [3884] = {.lex_state = 96, .external_lex_state = 6}, - [3885] = {.lex_state = 12, .external_lex_state = 2}, - [3886] = {.lex_state = 96, .external_lex_state = 6}, - [3887] = {.lex_state = 12, .external_lex_state = 2}, - [3888] = {.lex_state = 96, .external_lex_state = 2}, - [3889] = {.lex_state = 12, .external_lex_state = 2}, - [3890] = {.lex_state = 96, .external_lex_state = 2}, - [3891] = {.lex_state = 12, .external_lex_state = 2}, - [3892] = {.lex_state = 18, .external_lex_state = 7}, - [3893] = {.lex_state = 96, .external_lex_state = 2}, - [3894] = {.lex_state = 12, .external_lex_state = 2}, - [3895] = {.lex_state = 96, .external_lex_state = 2}, - [3896] = {.lex_state = 12, .external_lex_state = 2}, - [3897] = {.lex_state = 12, .external_lex_state = 2}, - [3898] = {.lex_state = 12, .external_lex_state = 2}, - [3899] = {.lex_state = 12, .external_lex_state = 2}, - [3900] = {.lex_state = 96, .external_lex_state = 2}, - [3901] = {.lex_state = 18, .external_lex_state = 7}, - [3902] = {.lex_state = 96, .external_lex_state = 5}, - [3903] = {.lex_state = 96, .external_lex_state = 2}, - [3904] = {.lex_state = 12, .external_lex_state = 2}, - [3905] = {.lex_state = 96, .external_lex_state = 2}, - [3906] = {.lex_state = 96, .external_lex_state = 6}, - [3907] = {.lex_state = 96, .external_lex_state = 5}, - [3908] = {.lex_state = 96, .external_lex_state = 5}, - [3909] = {.lex_state = 96, .external_lex_state = 5}, - [3910] = {.lex_state = 96, .external_lex_state = 2}, - [3911] = {.lex_state = 96, .external_lex_state = 5}, - [3912] = {.lex_state = 96, .external_lex_state = 5}, - [3913] = {.lex_state = 96, .external_lex_state = 5}, - [3914] = {.lex_state = 96, .external_lex_state = 5}, - [3915] = {.lex_state = 96, .external_lex_state = 5}, - [3916] = {.lex_state = 96, .external_lex_state = 5}, - [3917] = {.lex_state = 96, .external_lex_state = 5}, - [3918] = {.lex_state = 96, .external_lex_state = 5}, - [3919] = {.lex_state = 96, .external_lex_state = 5}, - [3920] = {.lex_state = 96, .external_lex_state = 2}, - [3921] = {.lex_state = 96, .external_lex_state = 2}, - [3922] = {.lex_state = 18, .external_lex_state = 8}, - [3923] = {.lex_state = 96, .external_lex_state = 5}, - [3924] = {.lex_state = 96, .external_lex_state = 5}, - [3925] = {.lex_state = 96, .external_lex_state = 5}, - [3926] = {.lex_state = 96, .external_lex_state = 2}, - [3927] = {.lex_state = 96, .external_lex_state = 2}, - [3928] = {.lex_state = 96, .external_lex_state = 2}, - [3929] = {.lex_state = 96, .external_lex_state = 5}, - [3930] = {.lex_state = 96, .external_lex_state = 2}, - [3931] = {.lex_state = 96, .external_lex_state = 5}, - [3932] = {.lex_state = 96, .external_lex_state = 6}, - [3933] = {.lex_state = 96, .external_lex_state = 5}, - [3934] = {.lex_state = 96, .external_lex_state = 5}, - [3935] = {.lex_state = 96, .external_lex_state = 5}, - [3936] = {.lex_state = 18, .external_lex_state = 8}, - [3937] = {.lex_state = 96, .external_lex_state = 2}, - [3938] = {.lex_state = 18, .external_lex_state = 8}, - [3939] = {.lex_state = 96, .external_lex_state = 5}, - [3940] = {.lex_state = 4, .external_lex_state = 2}, - [3941] = {.lex_state = 96, .external_lex_state = 5}, - [3942] = {.lex_state = 96, .external_lex_state = 5}, - [3943] = {.lex_state = 96, .external_lex_state = 5}, - [3944] = {.lex_state = 96, .external_lex_state = 5}, - [3945] = {.lex_state = 96, .external_lex_state = 5}, - [3946] = {.lex_state = 96, .external_lex_state = 5}, - [3947] = {.lex_state = 96, .external_lex_state = 5}, - [3948] = {.lex_state = 96, .external_lex_state = 6}, - [3949] = {.lex_state = 96, .external_lex_state = 5}, - [3950] = {.lex_state = 96, .external_lex_state = 5}, - [3951] = {.lex_state = 12, .external_lex_state = 2}, - [3952] = {.lex_state = 96, .external_lex_state = 6}, - [3953] = {.lex_state = 96, .external_lex_state = 5}, - [3954] = {.lex_state = 96, .external_lex_state = 5}, - [3955] = {.lex_state = 96, .external_lex_state = 5}, - [3956] = {.lex_state = 96, .external_lex_state = 2}, - [3957] = {.lex_state = 96, .external_lex_state = 2}, - [3958] = {.lex_state = 96, .external_lex_state = 2}, - [3959] = {.lex_state = 96, .external_lex_state = 5}, - [3960] = {.lex_state = 96, .external_lex_state = 2}, - [3961] = {.lex_state = 96, .external_lex_state = 6}, - [3962] = {.lex_state = 96, .external_lex_state = 5}, - [3963] = {.lex_state = 96, .external_lex_state = 6}, - [3964] = {.lex_state = 96, .external_lex_state = 5}, - [3965] = {.lex_state = 96, .external_lex_state = 5}, - [3966] = {.lex_state = 96, .external_lex_state = 5}, - [3967] = {.lex_state = 12, .external_lex_state = 2}, - [3968] = {.lex_state = 12, .external_lex_state = 2}, - [3969] = {.lex_state = 96, .external_lex_state = 5}, - [3970] = {.lex_state = 12, .external_lex_state = 2}, - [3971] = {.lex_state = 96, .external_lex_state = 2}, - [3972] = {.lex_state = 96, .external_lex_state = 5}, - [3973] = {.lex_state = 96, .external_lex_state = 5}, - [3974] = {.lex_state = 96, .external_lex_state = 6}, - [3975] = {.lex_state = 96, .external_lex_state = 5}, - [3976] = {.lex_state = 96, .external_lex_state = 5}, - [3977] = {.lex_state = 96, .external_lex_state = 5}, - [3978] = {.lex_state = 96, .external_lex_state = 5}, - [3979] = {.lex_state = 96, .external_lex_state = 5}, - [3980] = {.lex_state = 96, .external_lex_state = 5}, - [3981] = {.lex_state = 12, .external_lex_state = 2}, - [3982] = {.lex_state = 96, .external_lex_state = 5}, - [3983] = {.lex_state = 96, .external_lex_state = 5}, - [3984] = {.lex_state = 96, .external_lex_state = 5}, - [3985] = {.lex_state = 12, .external_lex_state = 2}, - [3986] = {.lex_state = 96, .external_lex_state = 5}, - [3987] = {.lex_state = 96, .external_lex_state = 5}, - [3988] = {.lex_state = 12, .external_lex_state = 2}, - [3989] = {.lex_state = 12, .external_lex_state = 2}, - [3990] = {.lex_state = 12, .external_lex_state = 2}, - [3991] = {.lex_state = 96, .external_lex_state = 5}, - [3992] = {.lex_state = 96, .external_lex_state = 5}, - [3993] = {.lex_state = 96, .external_lex_state = 5}, - [3994] = {.lex_state = 96, .external_lex_state = 5}, - [3995] = {.lex_state = 96, .external_lex_state = 5}, - [3996] = {.lex_state = 96, .external_lex_state = 2}, - [3997] = {.lex_state = 96, .external_lex_state = 2}, - [3998] = {.lex_state = 96, .external_lex_state = 2}, - [3999] = {.lex_state = 96, .external_lex_state = 5}, - [4000] = {.lex_state = 96, .external_lex_state = 5}, - [4001] = {.lex_state = 96, .external_lex_state = 5}, - [4002] = {.lex_state = 96, .external_lex_state = 5}, - [4003] = {.lex_state = 12, .external_lex_state = 2}, - [4004] = {.lex_state = 96, .external_lex_state = 5}, - [4005] = {.lex_state = 96, .external_lex_state = 5}, - [4006] = {.lex_state = 96, .external_lex_state = 5}, - [4007] = {.lex_state = 96, .external_lex_state = 2}, - [4008] = {.lex_state = 96, .external_lex_state = 5}, - [4009] = {.lex_state = 96, .external_lex_state = 5}, - [4010] = {.lex_state = 96, .external_lex_state = 5}, - [4011] = {.lex_state = 12, .external_lex_state = 2}, - [4012] = {.lex_state = 96, .external_lex_state = 6}, - [4013] = {.lex_state = 96, .external_lex_state = 5}, - [4014] = {.lex_state = 18, .external_lex_state = 8}, - [4015] = {.lex_state = 12, .external_lex_state = 2}, - [4016] = {.lex_state = 96, .external_lex_state = 5}, - [4017] = {.lex_state = 12, .external_lex_state = 2}, - [4018] = {.lex_state = 96, .external_lex_state = 6}, - [4019] = {.lex_state = 96, .external_lex_state = 5}, - [4020] = {.lex_state = 96, .external_lex_state = 5}, - [4021] = {.lex_state = 18, .external_lex_state = 8}, - [4022] = {.lex_state = 96, .external_lex_state = 5}, - [4023] = {.lex_state = 96, .external_lex_state = 5}, - [4024] = {.lex_state = 96, .external_lex_state = 6}, - [4025] = {.lex_state = 96, .external_lex_state = 5}, - [4026] = {.lex_state = 96, .external_lex_state = 5}, - [4027] = {.lex_state = 96, .external_lex_state = 5}, - [4028] = {.lex_state = 96, .external_lex_state = 2}, - [4029] = {.lex_state = 96, .external_lex_state = 5}, - [4030] = {.lex_state = 96, .external_lex_state = 5}, - [4031] = {.lex_state = 96, .external_lex_state = 5}, - [4032] = {.lex_state = 12, .external_lex_state = 2}, - [4033] = {.lex_state = 96, .external_lex_state = 5}, - [4034] = {.lex_state = 96, .external_lex_state = 5}, - [4035] = {.lex_state = 96, .external_lex_state = 5}, - [4036] = {.lex_state = 96, .external_lex_state = 5}, - [4037] = {.lex_state = 96, .external_lex_state = 6}, - [4038] = {.lex_state = 96, .external_lex_state = 5}, - [4039] = {.lex_state = 12, .external_lex_state = 2}, - [4040] = {.lex_state = 96, .external_lex_state = 5}, - [4041] = {.lex_state = 96, .external_lex_state = 5}, - [4042] = {.lex_state = 96, .external_lex_state = 5}, - [4043] = {.lex_state = 96, .external_lex_state = 5}, - [4044] = {.lex_state = 96, .external_lex_state = 5}, - [4045] = {.lex_state = 96, .external_lex_state = 5}, - [4046] = {.lex_state = 96, .external_lex_state = 5}, - [4047] = {.lex_state = 96, .external_lex_state = 5}, - [4048] = {.lex_state = 96, .external_lex_state = 5}, - [4049] = {.lex_state = 96, .external_lex_state = 5}, - [4050] = {.lex_state = 18, .external_lex_state = 8}, - [4051] = {.lex_state = 96, .external_lex_state = 5}, - [4052] = {.lex_state = 96, .external_lex_state = 5}, - [4053] = {.lex_state = 96, .external_lex_state = 5}, - [4054] = {.lex_state = 18, .external_lex_state = 8}, - [4055] = {.lex_state = 96, .external_lex_state = 5}, - [4056] = {.lex_state = 96, .external_lex_state = 5}, - [4057] = {.lex_state = 96, .external_lex_state = 2}, - [4058] = {.lex_state = 96, .external_lex_state = 6}, - [4059] = {.lex_state = 96, .external_lex_state = 5}, - [4060] = {.lex_state = 96, .external_lex_state = 6}, - [4061] = {.lex_state = 96, .external_lex_state = 6}, - [4062] = {.lex_state = 96, .external_lex_state = 5}, - [4063] = {.lex_state = 96, .external_lex_state = 5}, - [4064] = {.lex_state = 96, .external_lex_state = 5}, - [4065] = {.lex_state = 96, .external_lex_state = 5}, - [4066] = {.lex_state = 96, .external_lex_state = 5}, - [4067] = {.lex_state = 96, .external_lex_state = 5}, - [4068] = {.lex_state = 96, .external_lex_state = 5}, - [4069] = {.lex_state = 96, .external_lex_state = 5}, - [4070] = {.lex_state = 96, .external_lex_state = 5}, - [4071] = {.lex_state = 96, .external_lex_state = 5}, - [4072] = {.lex_state = 96, .external_lex_state = 5}, - [4073] = {.lex_state = 96, .external_lex_state = 5}, - [4074] = {.lex_state = 12, .external_lex_state = 2}, - [4075] = {.lex_state = 96, .external_lex_state = 5}, - [4076] = {.lex_state = 96, .external_lex_state = 2}, - [4077] = {.lex_state = 96, .external_lex_state = 5}, - [4078] = {.lex_state = 96, .external_lex_state = 5}, - [4079] = {.lex_state = 96, .external_lex_state = 5}, - [4080] = {.lex_state = 18, .external_lex_state = 8}, - [4081] = {.lex_state = 96, .external_lex_state = 5}, - [4082] = {.lex_state = 96, .external_lex_state = 5}, - [4083] = {.lex_state = 18, .external_lex_state = 8}, - [4084] = {.lex_state = 96, .external_lex_state = 2}, - [4085] = {.lex_state = 96, .external_lex_state = 2}, - [4086] = {.lex_state = 96, .external_lex_state = 5}, - [4087] = {.lex_state = 96, .external_lex_state = 5}, - [4088] = {.lex_state = 12, .external_lex_state = 2}, - [4089] = {.lex_state = 96, .external_lex_state = 2}, - [4090] = {.lex_state = 96, .external_lex_state = 5}, - [4091] = {.lex_state = 96, .external_lex_state = 5}, - [4092] = {.lex_state = 96, .external_lex_state = 5}, - [4093] = {.lex_state = 96, .external_lex_state = 5}, - [4094] = {.lex_state = 96, .external_lex_state = 5}, - [4095] = {.lex_state = 12, .external_lex_state = 2}, - [4096] = {.lex_state = 96, .external_lex_state = 5}, - [4097] = {.lex_state = 96, .external_lex_state = 2}, - [4098] = {.lex_state = 96, .external_lex_state = 5}, - [4099] = {.lex_state = 12, .external_lex_state = 2}, - [4100] = {.lex_state = 96, .external_lex_state = 5}, - [4101] = {.lex_state = 96, .external_lex_state = 2}, - [4102] = {.lex_state = 96, .external_lex_state = 5}, - [4103] = {.lex_state = 96, .external_lex_state = 5}, - [4104] = {.lex_state = 96, .external_lex_state = 5}, - [4105] = {.lex_state = 96, .external_lex_state = 5}, - [4106] = {.lex_state = 96, .external_lex_state = 5}, - [4107] = {.lex_state = 96, .external_lex_state = 2}, - [4108] = {.lex_state = 96, .external_lex_state = 5}, - [4109] = {.lex_state = 96, .external_lex_state = 5}, - [4110] = {.lex_state = 12, .external_lex_state = 2}, - [4111] = {.lex_state = 96, .external_lex_state = 5}, - [4112] = {.lex_state = 96, .external_lex_state = 2}, - [4113] = {.lex_state = 96, .external_lex_state = 5}, - [4114] = {.lex_state = 96, .external_lex_state = 2}, - [4115] = {.lex_state = 18, .external_lex_state = 8}, - [4116] = {.lex_state = 96, .external_lex_state = 2}, - [4117] = {.lex_state = 96, .external_lex_state = 5}, - [4118] = {.lex_state = 96, .external_lex_state = 5}, - [4119] = {.lex_state = 12, .external_lex_state = 2}, - [4120] = {.lex_state = 96, .external_lex_state = 5}, - [4121] = {.lex_state = 96, .external_lex_state = 5}, - [4122] = {.lex_state = 96, .external_lex_state = 5}, - [4123] = {.lex_state = 96, .external_lex_state = 5}, - [4124] = {.lex_state = 96, .external_lex_state = 5}, - [4125] = {.lex_state = 12, .external_lex_state = 2}, - [4126] = {.lex_state = 96, .external_lex_state = 5}, - [4127] = {.lex_state = 96, .external_lex_state = 5}, - [4128] = {.lex_state = 96, .external_lex_state = 5}, - [4129] = {.lex_state = 96, .external_lex_state = 2}, - [4130] = {.lex_state = 96, .external_lex_state = 2}, - [4131] = {.lex_state = 96, .external_lex_state = 5}, - [4132] = {.lex_state = 12, .external_lex_state = 2}, - [4133] = {.lex_state = 12, .external_lex_state = 2}, - [4134] = {.lex_state = 96, .external_lex_state = 5}, - [4135] = {.lex_state = 96, .external_lex_state = 2}, - [4136] = {.lex_state = 12, .external_lex_state = 2}, - [4137] = {.lex_state = 96, .external_lex_state = 5}, - [4138] = {.lex_state = 12, .external_lex_state = 2}, - [4139] = {.lex_state = 12, .external_lex_state = 2}, - [4140] = {.lex_state = 15, .external_lex_state = 2}, - [4141] = {.lex_state = 96, .external_lex_state = 5}, - [4142] = {.lex_state = 96, .external_lex_state = 2}, - [4143] = {.lex_state = 12, .external_lex_state = 2}, - [4144] = {.lex_state = 12, .external_lex_state = 2}, - [4145] = {.lex_state = 96, .external_lex_state = 5}, - [4146] = {.lex_state = 96, .external_lex_state = 5}, - [4147] = {.lex_state = 96, .external_lex_state = 5}, - [4148] = {.lex_state = 96, .external_lex_state = 5}, - [4149] = {.lex_state = 96, .external_lex_state = 5}, - [4150] = {.lex_state = 96, .external_lex_state = 5}, - [4151] = {.lex_state = 96, .external_lex_state = 5}, - [4152] = {.lex_state = 96, .external_lex_state = 5}, - [4153] = {.lex_state = 96, .external_lex_state = 5}, - [4154] = {.lex_state = 96, .external_lex_state = 5}, - [4155] = {.lex_state = 96, .external_lex_state = 5}, - [4156] = {.lex_state = 96, .external_lex_state = 5}, - [4157] = {.lex_state = 96, .external_lex_state = 5}, - [4158] = {.lex_state = 96, .external_lex_state = 5}, - [4159] = {.lex_state = 96, .external_lex_state = 5}, - [4160] = {.lex_state = 96, .external_lex_state = 5}, - [4161] = {.lex_state = 96, .external_lex_state = 2}, - [4162] = {.lex_state = 96, .external_lex_state = 5}, - [4163] = {.lex_state = 96, .external_lex_state = 5}, - [4164] = {.lex_state = 12, .external_lex_state = 2}, - [4165] = {.lex_state = 96, .external_lex_state = 5}, - [4166] = {.lex_state = 12, .external_lex_state = 2}, - [4167] = {.lex_state = 96, .external_lex_state = 5}, - [4168] = {.lex_state = 12, .external_lex_state = 2}, - [4169] = {.lex_state = 12, .external_lex_state = 2}, - [4170] = {.lex_state = 96, .external_lex_state = 5}, - [4171] = {.lex_state = 96, .external_lex_state = 5}, - [4172] = {.lex_state = 12, .external_lex_state = 2}, - [4173] = {.lex_state = 96, .external_lex_state = 5}, - [4174] = {.lex_state = 96, .external_lex_state = 5}, - [4175] = {.lex_state = 96, .external_lex_state = 5}, - [4176] = {.lex_state = 96, .external_lex_state = 5}, - [4177] = {.lex_state = 96, .external_lex_state = 2}, - [4178] = {.lex_state = 12, .external_lex_state = 2}, - [4179] = {.lex_state = 12, .external_lex_state = 2}, - [4180] = {.lex_state = 96, .external_lex_state = 5}, - [4181] = {.lex_state = 96, .external_lex_state = 5}, - [4182] = {.lex_state = 96, .external_lex_state = 5}, - [4183] = {.lex_state = 96, .external_lex_state = 5}, - [4184] = {.lex_state = 96, .external_lex_state = 2}, - [4185] = {.lex_state = 96, .external_lex_state = 5}, - [4186] = {.lex_state = 96, .external_lex_state = 5}, - [4187] = {.lex_state = 96, .external_lex_state = 5}, - [4188] = {.lex_state = 12, .external_lex_state = 2}, - [4189] = {.lex_state = 96, .external_lex_state = 5}, - [4190] = {.lex_state = 96, .external_lex_state = 5}, - [4191] = {.lex_state = 12, .external_lex_state = 2}, - [4192] = {.lex_state = 12, .external_lex_state = 2}, - [4193] = {.lex_state = 96, .external_lex_state = 6}, - [4194] = {.lex_state = 12, .external_lex_state = 2}, - [4195] = {.lex_state = 96, .external_lex_state = 5}, - [4196] = {.lex_state = 96, .external_lex_state = 5}, - [4197] = {.lex_state = 12, .external_lex_state = 2}, - [4198] = {.lex_state = 96, .external_lex_state = 5}, - [4199] = {.lex_state = 96, .external_lex_state = 5}, - [4200] = {.lex_state = 96, .external_lex_state = 5}, - [4201] = {.lex_state = 96, .external_lex_state = 5}, - [4202] = {.lex_state = 96, .external_lex_state = 5}, - [4203] = {.lex_state = 12, .external_lex_state = 2}, - [4204] = {.lex_state = 96, .external_lex_state = 5}, - [4205] = {.lex_state = 96, .external_lex_state = 5}, - [4206] = {.lex_state = 96, .external_lex_state = 5}, - [4207] = {.lex_state = 12, .external_lex_state = 2}, - [4208] = {.lex_state = 96, .external_lex_state = 5}, - [4209] = {.lex_state = 96, .external_lex_state = 5}, - [4210] = {.lex_state = 96, .external_lex_state = 5}, - [4211] = {.lex_state = 96, .external_lex_state = 5}, - [4212] = {.lex_state = 12, .external_lex_state = 2}, - [4213] = {.lex_state = 96, .external_lex_state = 5}, - [4214] = {.lex_state = 96, .external_lex_state = 5}, - [4215] = {.lex_state = 96, .external_lex_state = 5}, - [4216] = {.lex_state = 96, .external_lex_state = 5}, - [4217] = {.lex_state = 96, .external_lex_state = 5}, - [4218] = {.lex_state = 96, .external_lex_state = 5}, - [4219] = {.lex_state = 96, .external_lex_state = 5}, - [4220] = {.lex_state = 96, .external_lex_state = 5}, - [4221] = {.lex_state = 96, .external_lex_state = 5}, - [4222] = {.lex_state = 96, .external_lex_state = 5}, - [4223] = {.lex_state = 12, .external_lex_state = 2}, - [4224] = {.lex_state = 96, .external_lex_state = 5}, - [4225] = {.lex_state = 96, .external_lex_state = 5}, - [4226] = {.lex_state = 96, .external_lex_state = 2}, - [4227] = {.lex_state = 96, .external_lex_state = 5}, - [4228] = {.lex_state = 96, .external_lex_state = 5}, - [4229] = {.lex_state = 96, .external_lex_state = 2}, - [4230] = {.lex_state = 12, .external_lex_state = 2}, - [4231] = {.lex_state = 12, .external_lex_state = 2}, - [4232] = {.lex_state = 96, .external_lex_state = 5}, - [4233] = {.lex_state = 96, .external_lex_state = 2}, - [4234] = {.lex_state = 96, .external_lex_state = 5}, - [4235] = {.lex_state = 96, .external_lex_state = 2}, - [4236] = {.lex_state = 96, .external_lex_state = 2}, - [4237] = {.lex_state = 12, .external_lex_state = 2}, - [4238] = {.lex_state = 12, .external_lex_state = 2}, - [4239] = {.lex_state = 96, .external_lex_state = 5}, - [4240] = {.lex_state = 96, .external_lex_state = 5}, - [4241] = {.lex_state = 96, .external_lex_state = 5}, - [4242] = {.lex_state = 96, .external_lex_state = 5}, - [4243] = {.lex_state = 96, .external_lex_state = 5}, - [4244] = {.lex_state = 96, .external_lex_state = 5}, - [4245] = {.lex_state = 96, .external_lex_state = 5}, - [4246] = {.lex_state = 96, .external_lex_state = 5}, - [4247] = {.lex_state = 96, .external_lex_state = 5}, - [4248] = {.lex_state = 96, .external_lex_state = 5}, - [4249] = {.lex_state = 96, .external_lex_state = 5}, - [4250] = {.lex_state = 96, .external_lex_state = 5}, - [4251] = {.lex_state = 96, .external_lex_state = 5}, - [4252] = {.lex_state = 96, .external_lex_state = 5}, - [4253] = {.lex_state = 96, .external_lex_state = 5}, - [4254] = {.lex_state = 96, .external_lex_state = 5}, - [4255] = {.lex_state = 96, .external_lex_state = 5}, - [4256] = {.lex_state = 96, .external_lex_state = 5}, - [4257] = {.lex_state = 96, .external_lex_state = 5}, - [4258] = {.lex_state = 96, .external_lex_state = 5}, - [4259] = {.lex_state = 96, .external_lex_state = 5}, - [4260] = {.lex_state = 96, .external_lex_state = 5}, - [4261] = {.lex_state = 96, .external_lex_state = 5}, - [4262] = {.lex_state = 96, .external_lex_state = 5}, - [4263] = {.lex_state = 96, .external_lex_state = 5}, - [4264] = {.lex_state = 96, .external_lex_state = 5}, - [4265] = {.lex_state = 96, .external_lex_state = 5}, - [4266] = {.lex_state = 96, .external_lex_state = 5}, - [4267] = {.lex_state = 96, .external_lex_state = 5}, - [4268] = {.lex_state = 96, .external_lex_state = 5}, - [4269] = {.lex_state = 96, .external_lex_state = 5}, - [4270] = {.lex_state = 96, .external_lex_state = 5}, - [4271] = {.lex_state = 12, .external_lex_state = 2}, - [4272] = {.lex_state = 96, .external_lex_state = 5}, - [4273] = {.lex_state = 96, .external_lex_state = 5}, - [4274] = {.lex_state = 96, .external_lex_state = 5}, - [4275] = {.lex_state = 96, .external_lex_state = 5}, - [4276] = {.lex_state = 96, .external_lex_state = 5}, - [4277] = {.lex_state = 96, .external_lex_state = 5}, - [4278] = {.lex_state = 96, .external_lex_state = 5}, - [4279] = {.lex_state = 96, .external_lex_state = 5}, - [4280] = {.lex_state = 96, .external_lex_state = 2}, - [4281] = {.lex_state = 96, .external_lex_state = 5}, - [4282] = {.lex_state = 96, .external_lex_state = 5}, - [4283] = {.lex_state = 96, .external_lex_state = 5}, - [4284] = {.lex_state = 96, .external_lex_state = 5}, - [4285] = {.lex_state = 96, .external_lex_state = 5}, - [4286] = {.lex_state = 12, .external_lex_state = 2}, - [4287] = {.lex_state = 96, .external_lex_state = 5}, - [4288] = {.lex_state = 96, .external_lex_state = 5}, - [4289] = {.lex_state = 96, .external_lex_state = 5}, - [4290] = {.lex_state = 96, .external_lex_state = 5}, - [4291] = {.lex_state = 96, .external_lex_state = 5}, - [4292] = {.lex_state = 96, .external_lex_state = 5}, - [4293] = {.lex_state = 96, .external_lex_state = 5}, - [4294] = {.lex_state = 96, .external_lex_state = 5}, - [4295] = {.lex_state = 96, .external_lex_state = 5}, - [4296] = {.lex_state = 96, .external_lex_state = 5}, - [4297] = {.lex_state = 96, .external_lex_state = 5}, - [4298] = {.lex_state = 96, .external_lex_state = 2}, - [4299] = {.lex_state = 12, .external_lex_state = 2}, - [4300] = {.lex_state = 96, .external_lex_state = 5}, - [4301] = {.lex_state = 96, .external_lex_state = 5}, - [4302] = {.lex_state = 96, .external_lex_state = 2}, - [4303] = {.lex_state = 96, .external_lex_state = 2}, - [4304] = {.lex_state = 96, .external_lex_state = 5}, - [4305] = {.lex_state = 96, .external_lex_state = 5}, - [4306] = {.lex_state = 18, .external_lex_state = 8}, - [4307] = {.lex_state = 96, .external_lex_state = 5}, - [4308] = {.lex_state = 96, .external_lex_state = 5}, - [4309] = {.lex_state = 96, .external_lex_state = 5}, - [4310] = {.lex_state = 96, .external_lex_state = 5}, - [4311] = {.lex_state = 96, .external_lex_state = 5}, - [4312] = {.lex_state = 12, .external_lex_state = 2}, - [4313] = {.lex_state = 96, .external_lex_state = 5}, - [4314] = {.lex_state = 12, .external_lex_state = 2}, - [4315] = {.lex_state = 96, .external_lex_state = 5}, - [4316] = {.lex_state = 96, .external_lex_state = 5}, - [4317] = {.lex_state = 96, .external_lex_state = 5}, - [4318] = {.lex_state = 96, .external_lex_state = 5}, - [4319] = {.lex_state = 12, .external_lex_state = 2}, - [4320] = {.lex_state = 12, .external_lex_state = 2}, - [4321] = {.lex_state = 12, .external_lex_state = 2}, - [4322] = {.lex_state = 96, .external_lex_state = 2}, - [4323] = {.lex_state = 96, .external_lex_state = 5}, - [4324] = {.lex_state = 12, .external_lex_state = 2}, - [4325] = {.lex_state = 96, .external_lex_state = 5}, - [4326] = {.lex_state = 96, .external_lex_state = 5}, - [4327] = {.lex_state = 96, .external_lex_state = 2}, - [4328] = {.lex_state = 96, .external_lex_state = 5}, - [4329] = {.lex_state = 12, .external_lex_state = 2}, - [4330] = {.lex_state = 96, .external_lex_state = 5}, - [4331] = {.lex_state = 96, .external_lex_state = 2}, - [4332] = {.lex_state = 96, .external_lex_state = 5}, - [4333] = {.lex_state = 96, .external_lex_state = 5}, - [4334] = {.lex_state = 96, .external_lex_state = 5}, - [4335] = {.lex_state = 12, .external_lex_state = 2}, - [4336] = {.lex_state = 12, .external_lex_state = 2}, - [4337] = {.lex_state = 96, .external_lex_state = 5}, - [4338] = {.lex_state = 96, .external_lex_state = 5}, - [4339] = {.lex_state = 96, .external_lex_state = 5}, - [4340] = {.lex_state = 96, .external_lex_state = 5}, - [4341] = {.lex_state = 96, .external_lex_state = 5}, - [4342] = {.lex_state = 96, .external_lex_state = 2}, - [4343] = {.lex_state = 96, .external_lex_state = 5}, - [4344] = {.lex_state = 12, .external_lex_state = 2}, - [4345] = {.lex_state = 12, .external_lex_state = 2}, - [4346] = {.lex_state = 96, .external_lex_state = 2}, - [4347] = {.lex_state = 96, .external_lex_state = 2}, - [4348] = {.lex_state = 12, .external_lex_state = 2}, - [4349] = {.lex_state = 12, .external_lex_state = 2}, - [4350] = {.lex_state = 96, .external_lex_state = 2}, - [4351] = {.lex_state = 96, .external_lex_state = 5}, - [4352] = {.lex_state = 96, .external_lex_state = 5}, - [4353] = {.lex_state = 96, .external_lex_state = 5}, - [4354] = {.lex_state = 96, .external_lex_state = 5}, - [4355] = {.lex_state = 96, .external_lex_state = 5}, - [4356] = {.lex_state = 96, .external_lex_state = 5}, - [4357] = {.lex_state = 96, .external_lex_state = 5}, - [4358] = {.lex_state = 96, .external_lex_state = 5}, - [4359] = {.lex_state = 96, .external_lex_state = 5}, - [4360] = {.lex_state = 12, .external_lex_state = 2}, - [4361] = {.lex_state = 96, .external_lex_state = 5}, - [4362] = {.lex_state = 96, .external_lex_state = 5}, - [4363] = {.lex_state = 96, .external_lex_state = 5}, - [4364] = {.lex_state = 96, .external_lex_state = 5}, - [4365] = {.lex_state = 96, .external_lex_state = 5}, - [4366] = {.lex_state = 96, .external_lex_state = 5}, - [4367] = {.lex_state = 96, .external_lex_state = 2}, - [4368] = {.lex_state = 96, .external_lex_state = 5}, - [4369] = {.lex_state = 96, .external_lex_state = 5}, - [4370] = {.lex_state = 96, .external_lex_state = 5}, - [4371] = {.lex_state = 96, .external_lex_state = 5}, - [4372] = {.lex_state = 96, .external_lex_state = 5}, - [4373] = {.lex_state = 96, .external_lex_state = 5}, - [4374] = {.lex_state = 96, .external_lex_state = 5}, - [4375] = {.lex_state = 96, .external_lex_state = 5}, - [4376] = {.lex_state = 96, .external_lex_state = 5}, - [4377] = {.lex_state = 96, .external_lex_state = 5}, - [4378] = {.lex_state = 4, .external_lex_state = 2}, - [4379] = {.lex_state = 96, .external_lex_state = 5}, - [4380] = {.lex_state = 96, .external_lex_state = 5}, - [4381] = {.lex_state = 96, .external_lex_state = 5}, - [4382] = {.lex_state = 96, .external_lex_state = 5}, - [4383] = {.lex_state = 15, .external_lex_state = 2}, - [4384] = {.lex_state = 96, .external_lex_state = 5}, - [4385] = {.lex_state = 96, .external_lex_state = 5}, - [4386] = {.lex_state = 96, .external_lex_state = 5}, - [4387] = {.lex_state = 96, .external_lex_state = 5}, - [4388] = {.lex_state = 96, .external_lex_state = 2}, - [4389] = {.lex_state = 12, .external_lex_state = 2}, - [4390] = {.lex_state = 96, .external_lex_state = 2}, - [4391] = {.lex_state = 96, .external_lex_state = 5}, - [4392] = {.lex_state = 96, .external_lex_state = 5}, - [4393] = {.lex_state = 96, .external_lex_state = 2}, - [4394] = {.lex_state = 21, .external_lex_state = 9}, - [4395] = {.lex_state = 96, .external_lex_state = 2}, - [4396] = {.lex_state = 17, .external_lex_state = 9}, - [4397] = {.lex_state = 21, .external_lex_state = 9}, - [4398] = {.lex_state = 96, .external_lex_state = 2}, - [4399] = {.lex_state = 17, .external_lex_state = 9}, - [4400] = {.lex_state = 21, .external_lex_state = 9}, - [4401] = {.lex_state = 96, .external_lex_state = 5}, - [4402] = {.lex_state = 96, .external_lex_state = 2}, - [4403] = {.lex_state = 12, .external_lex_state = 2}, - [4404] = {.lex_state = 96, .external_lex_state = 2}, - [4405] = {.lex_state = 12, .external_lex_state = 2}, - [4406] = {.lex_state = 96, .external_lex_state = 2}, - [4407] = {.lex_state = 96, .external_lex_state = 2}, - [4408] = {.lex_state = 12, .external_lex_state = 2}, - [4409] = {.lex_state = 96, .external_lex_state = 2}, - [4410] = {.lex_state = 96, .external_lex_state = 2}, - [4411] = {.lex_state = 21, .external_lex_state = 9}, - [4412] = {.lex_state = 96, .external_lex_state = 5}, - [4413] = {.lex_state = 12, .external_lex_state = 2}, - [4414] = {.lex_state = 96, .external_lex_state = 2}, - [4415] = {.lex_state = 96, .external_lex_state = 5}, - [4416] = {.lex_state = 96, .external_lex_state = 2}, - [4417] = {.lex_state = 15, .external_lex_state = 2}, - [4418] = {.lex_state = 96, .external_lex_state = 2}, - [4419] = {.lex_state = 4, .external_lex_state = 2}, - [4420] = {.lex_state = 4, .external_lex_state = 2}, - [4421] = {.lex_state = 4, .external_lex_state = 2}, - [4422] = {.lex_state = 96, .external_lex_state = 5}, - [4423] = {.lex_state = 96, .external_lex_state = 2}, - [4424] = {.lex_state = 96, .external_lex_state = 2}, - [4425] = {.lex_state = 96, .external_lex_state = 5}, - [4426] = {.lex_state = 96, .external_lex_state = 2}, - [4427] = {.lex_state = 96, .external_lex_state = 2}, - [4428] = {.lex_state = 96, .external_lex_state = 2}, - [4429] = {.lex_state = 12, .external_lex_state = 2}, - [4430] = {.lex_state = 17, .external_lex_state = 9}, - [4431] = {.lex_state = 17, .external_lex_state = 9}, - [4432] = {.lex_state = 96, .external_lex_state = 2}, - [4433] = {.lex_state = 12, .external_lex_state = 2}, - [4434] = {.lex_state = 96, .external_lex_state = 2}, - [4435] = {.lex_state = 96, .external_lex_state = 2}, - [4436] = {.lex_state = 21, .external_lex_state = 9}, - [4437] = {.lex_state = 96, .external_lex_state = 2}, - [4438] = {.lex_state = 18, .external_lex_state = 7}, - [4439] = {.lex_state = 12, .external_lex_state = 2}, - [4440] = {.lex_state = 4, .external_lex_state = 2}, - [4441] = {.lex_state = 96, .external_lex_state = 2}, - [4442] = {.lex_state = 12, .external_lex_state = 2}, - [4443] = {.lex_state = 96, .external_lex_state = 5}, - [4444] = {.lex_state = 96, .external_lex_state = 2}, - [4445] = {.lex_state = 96, .external_lex_state = 2}, - [4446] = {.lex_state = 21, .external_lex_state = 9}, - [4447] = {.lex_state = 4, .external_lex_state = 2}, - [4448] = {.lex_state = 96, .external_lex_state = 2}, - [4449] = {.lex_state = 17, .external_lex_state = 9}, - [4450] = {.lex_state = 21, .external_lex_state = 9}, - [4451] = {.lex_state = 96, .external_lex_state = 2}, - [4452] = {.lex_state = 96, .external_lex_state = 2}, - [4453] = {.lex_state = 96, .external_lex_state = 2}, - [4454] = {.lex_state = 96, .external_lex_state = 2}, - [4455] = {.lex_state = 12, .external_lex_state = 2}, - [4456] = {.lex_state = 96, .external_lex_state = 2}, - [4457] = {.lex_state = 17, .external_lex_state = 9}, - [4458] = {.lex_state = 21, .external_lex_state = 9}, - [4459] = {.lex_state = 12, .external_lex_state = 2}, - [4460] = {.lex_state = 12, .external_lex_state = 2}, - [4461] = {.lex_state = 96, .external_lex_state = 2}, - [4462] = {.lex_state = 17, .external_lex_state = 9}, - [4463] = {.lex_state = 96, .external_lex_state = 5}, - [4464] = {.lex_state = 96, .external_lex_state = 5}, - [4465] = {.lex_state = 12, .external_lex_state = 2}, - [4466] = {.lex_state = 17, .external_lex_state = 9}, - [4467] = {.lex_state = 12, .external_lex_state = 2}, - [4468] = {.lex_state = 96, .external_lex_state = 2}, - [4469] = {.lex_state = 21, .external_lex_state = 9}, - [4470] = {.lex_state = 96, .external_lex_state = 5}, - [4471] = {.lex_state = 96, .external_lex_state = 2}, - [4472] = {.lex_state = 96, .external_lex_state = 2}, - [4473] = {.lex_state = 12, .external_lex_state = 2}, - [4474] = {.lex_state = 17, .external_lex_state = 9}, - [4475] = {.lex_state = 96, .external_lex_state = 2}, - [4476] = {.lex_state = 96, .external_lex_state = 2}, - [4477] = {.lex_state = 96, .external_lex_state = 2}, - [4478] = {.lex_state = 96, .external_lex_state = 2}, - [4479] = {.lex_state = 96, .external_lex_state = 5}, - [4480] = {.lex_state = 15, .external_lex_state = 2}, - [4481] = {.lex_state = 96, .external_lex_state = 2}, - [4482] = {.lex_state = 96, .external_lex_state = 2}, - [4483] = {.lex_state = 96, .external_lex_state = 2}, - [4484] = {.lex_state = 96, .external_lex_state = 5}, - [4485] = {.lex_state = 96, .external_lex_state = 6}, - [4486] = {.lex_state = 17, .external_lex_state = 9}, - [4487] = {.lex_state = 96, .external_lex_state = 2}, - [4488] = {.lex_state = 96, .external_lex_state = 2}, - [4489] = {.lex_state = 96, .external_lex_state = 2}, - [4490] = {.lex_state = 12, .external_lex_state = 2}, - [4491] = {.lex_state = 21, .external_lex_state = 9}, - [4492] = {.lex_state = 17, .external_lex_state = 9}, - [4493] = {.lex_state = 17, .external_lex_state = 9}, - [4494] = {.lex_state = 12, .external_lex_state = 2}, - [4495] = {.lex_state = 21, .external_lex_state = 9}, - [4496] = {.lex_state = 12, .external_lex_state = 2}, - [4497] = {.lex_state = 17, .external_lex_state = 9}, - [4498] = {.lex_state = 21, .external_lex_state = 9}, - [4499] = {.lex_state = 96, .external_lex_state = 2}, - [4500] = {.lex_state = 96, .external_lex_state = 2}, - [4501] = {.lex_state = 17, .external_lex_state = 9}, - [4502] = {.lex_state = 96, .external_lex_state = 2}, - [4503] = {.lex_state = 21, .external_lex_state = 9}, - [4504] = {.lex_state = 18, .external_lex_state = 7}, - [4505] = {.lex_state = 96, .external_lex_state = 2}, - [4506] = {.lex_state = 17, .external_lex_state = 9}, - [4507] = {.lex_state = 96, .external_lex_state = 2}, - [4508] = {.lex_state = 96, .external_lex_state = 2}, - [4509] = {.lex_state = 96, .external_lex_state = 5}, - [4510] = {.lex_state = 21, .external_lex_state = 9}, - [4511] = {.lex_state = 96, .external_lex_state = 2}, - [4512] = {.lex_state = 12, .external_lex_state = 2}, - [4513] = {.lex_state = 21, .external_lex_state = 9}, - [4514] = {.lex_state = 12, .external_lex_state = 2}, - [4515] = {.lex_state = 96, .external_lex_state = 5}, - [4516] = {.lex_state = 12, .external_lex_state = 2}, - [4517] = {.lex_state = 96, .external_lex_state = 5}, - [4518] = {.lex_state = 96, .external_lex_state = 2}, - [4519] = {.lex_state = 12, .external_lex_state = 2}, - [4520] = {.lex_state = 12, .external_lex_state = 2}, - [4521] = {.lex_state = 96, .external_lex_state = 2}, - [4522] = {.lex_state = 96, .external_lex_state = 2}, - [4523] = {.lex_state = 96, .external_lex_state = 2}, - [4524] = {.lex_state = 96, .external_lex_state = 2}, - [4525] = {.lex_state = 12, .external_lex_state = 2}, - [4526] = {.lex_state = 96, .external_lex_state = 2}, - [4527] = {.lex_state = 96, .external_lex_state = 2}, - [4528] = {.lex_state = 96, .external_lex_state = 2}, - [4529] = {.lex_state = 96, .external_lex_state = 2}, - [4530] = {.lex_state = 96, .external_lex_state = 5}, - [4531] = {.lex_state = 96, .external_lex_state = 5}, - [4532] = {.lex_state = 96, .external_lex_state = 5}, - [4533] = {.lex_state = 96, .external_lex_state = 5}, - [4534] = {.lex_state = 96, .external_lex_state = 2}, - [4535] = {.lex_state = 96, .external_lex_state = 2}, - [4536] = {.lex_state = 96, .external_lex_state = 5}, - [4537] = {.lex_state = 96, .external_lex_state = 2}, - [4538] = {.lex_state = 96, .external_lex_state = 5}, - [4539] = {.lex_state = 96, .external_lex_state = 2}, - [4540] = {.lex_state = 96, .external_lex_state = 5}, - [4541] = {.lex_state = 96, .external_lex_state = 2}, - [4542] = {.lex_state = 96, .external_lex_state = 2}, - [4543] = {.lex_state = 96, .external_lex_state = 5}, - [4544] = {.lex_state = 96, .external_lex_state = 2}, - [4545] = {.lex_state = 96, .external_lex_state = 2}, - [4546] = {.lex_state = 96, .external_lex_state = 2}, - [4547] = {.lex_state = 96, .external_lex_state = 2}, - [4548] = {.lex_state = 96, .external_lex_state = 2}, - [4549] = {.lex_state = 96, .external_lex_state = 2}, - [4550] = {.lex_state = 96, .external_lex_state = 2}, - [4551] = {.lex_state = 96, .external_lex_state = 2}, - [4552] = {.lex_state = 96, .external_lex_state = 5}, - [4553] = {.lex_state = 96, .external_lex_state = 2}, - [4554] = {.lex_state = 96, .external_lex_state = 2}, - [4555] = {.lex_state = 96, .external_lex_state = 5}, - [4556] = {.lex_state = 96, .external_lex_state = 2}, - [4557] = {.lex_state = 96, .external_lex_state = 2}, - [4558] = {.lex_state = 96, .external_lex_state = 2}, - [4559] = {.lex_state = 96, .external_lex_state = 5}, - [4560] = {.lex_state = 96, .external_lex_state = 5}, - [4561] = {.lex_state = 96, .external_lex_state = 5}, - [4562] = {.lex_state = 4, .external_lex_state = 2}, - [4563] = {.lex_state = 96, .external_lex_state = 2}, - [4564] = {.lex_state = 96, .external_lex_state = 2}, - [4565] = {.lex_state = 96, .external_lex_state = 5}, - [4566] = {.lex_state = 96, .external_lex_state = 2}, - [4567] = {.lex_state = 96, .external_lex_state = 2}, - [4568] = {.lex_state = 96, .external_lex_state = 5}, - [4569] = {.lex_state = 96, .external_lex_state = 5}, - [4570] = {.lex_state = 96, .external_lex_state = 5}, - [4571] = {.lex_state = 96, .external_lex_state = 2}, - [4572] = {.lex_state = 96, .external_lex_state = 5}, - [4573] = {.lex_state = 96, .external_lex_state = 5}, - [4574] = {.lex_state = 96, .external_lex_state = 5}, - [4575] = {.lex_state = 96, .external_lex_state = 5}, - [4576] = {.lex_state = 96, .external_lex_state = 5}, - [4577] = {.lex_state = 96, .external_lex_state = 2}, - [4578] = {.lex_state = 96, .external_lex_state = 2}, - [4579] = {.lex_state = 96, .external_lex_state = 2}, - [4580] = {.lex_state = 96, .external_lex_state = 2}, - [4581] = {.lex_state = 96, .external_lex_state = 5}, - [4582] = {.lex_state = 96, .external_lex_state = 5}, - [4583] = {.lex_state = 96, .external_lex_state = 5}, - [4584] = {.lex_state = 96, .external_lex_state = 2}, - [4585] = {.lex_state = 96, .external_lex_state = 5}, - [4586] = {.lex_state = 96, .external_lex_state = 5}, - [4587] = {.lex_state = 96, .external_lex_state = 2}, - [4588] = {.lex_state = 96, .external_lex_state = 2}, - [4589] = {.lex_state = 96, .external_lex_state = 5}, - [4590] = {.lex_state = 96, .external_lex_state = 5}, - [4591] = {.lex_state = 96, .external_lex_state = 5}, - [4592] = {.lex_state = 96, .external_lex_state = 2}, - [4593] = {.lex_state = 96, .external_lex_state = 2}, - [4594] = {.lex_state = 96, .external_lex_state = 2}, - [4595] = {.lex_state = 96, .external_lex_state = 2}, - [4596] = {.lex_state = 96, .external_lex_state = 2}, - [4597] = {.lex_state = 96, .external_lex_state = 5}, - [4598] = {.lex_state = 96, .external_lex_state = 5}, - [4599] = {.lex_state = 96, .external_lex_state = 5}, - [4600] = {.lex_state = 96, .external_lex_state = 2}, - [4601] = {.lex_state = 96, .external_lex_state = 2}, - [4602] = {.lex_state = 96, .external_lex_state = 2}, - [4603] = {.lex_state = 96, .external_lex_state = 2}, - [4604] = {.lex_state = 96, .external_lex_state = 5}, - [4605] = {.lex_state = 96, .external_lex_state = 2}, - [4606] = {.lex_state = 96, .external_lex_state = 2}, - [4607] = {.lex_state = 96, .external_lex_state = 2}, - [4608] = {.lex_state = 96, .external_lex_state = 5}, - [4609] = {.lex_state = 96, .external_lex_state = 2}, - [4610] = {.lex_state = 96, .external_lex_state = 5}, - [4611] = {.lex_state = 96, .external_lex_state = 5}, - [4612] = {.lex_state = 4, .external_lex_state = 2}, - [4613] = {.lex_state = 1, .external_lex_state = 2}, - [4614] = {.lex_state = 96, .external_lex_state = 5}, - [4615] = {.lex_state = 96, .external_lex_state = 2}, - [4616] = {.lex_state = 96, .external_lex_state = 5}, - [4617] = {.lex_state = 96, .external_lex_state = 2}, - [4618] = {.lex_state = 96, .external_lex_state = 5}, - [4619] = {.lex_state = 96, .external_lex_state = 5}, - [4620] = {.lex_state = 96, .external_lex_state = 5}, - [4621] = {.lex_state = 96, .external_lex_state = 5}, - [4622] = {.lex_state = 96, .external_lex_state = 2}, - [4623] = {.lex_state = 96, .external_lex_state = 5}, - [4624] = {.lex_state = 96, .external_lex_state = 5}, - [4625] = {.lex_state = 96, .external_lex_state = 5}, - [4626] = {.lex_state = 96, .external_lex_state = 5}, - [4627] = {.lex_state = 96, .external_lex_state = 2}, - [4628] = {.lex_state = 96, .external_lex_state = 5}, - [4629] = {.lex_state = 96, .external_lex_state = 2}, - [4630] = {.lex_state = 96, .external_lex_state = 5}, - [4631] = {.lex_state = 96, .external_lex_state = 5}, - [4632] = {.lex_state = 1, .external_lex_state = 2}, - [4633] = {.lex_state = 96, .external_lex_state = 5}, - [4634] = {.lex_state = 96, .external_lex_state = 5}, - [4635] = {.lex_state = 96, .external_lex_state = 2}, - [4636] = {.lex_state = 96, .external_lex_state = 5}, - [4637] = {.lex_state = 96, .external_lex_state = 2}, - [4638] = {.lex_state = 96, .external_lex_state = 2}, - [4639] = {.lex_state = 96, .external_lex_state = 2}, - [4640] = {.lex_state = 96, .external_lex_state = 2}, - [4641] = {.lex_state = 96, .external_lex_state = 2}, - [4642] = {.lex_state = 96, .external_lex_state = 5}, - [4643] = {.lex_state = 96, .external_lex_state = 5}, - [4644] = {.lex_state = 96, .external_lex_state = 2}, - [4645] = {.lex_state = 96, .external_lex_state = 2}, - [4646] = {.lex_state = 96, .external_lex_state = 5}, - [4647] = {.lex_state = 96, .external_lex_state = 5}, - [4648] = {.lex_state = 96, .external_lex_state = 2}, - [4649] = {.lex_state = 96, .external_lex_state = 2}, - [4650] = {.lex_state = 96, .external_lex_state = 5}, - [4651] = {.lex_state = 96, .external_lex_state = 2}, - [4652] = {.lex_state = 96, .external_lex_state = 5}, - [4653] = {.lex_state = 96, .external_lex_state = 2}, - [4654] = {.lex_state = 96, .external_lex_state = 2}, - [4655] = {.lex_state = 96, .external_lex_state = 5}, - [4656] = {.lex_state = 96, .external_lex_state = 5}, - [4657] = {.lex_state = 96, .external_lex_state = 2}, - [4658] = {.lex_state = 96, .external_lex_state = 5}, - [4659] = {.lex_state = 96, .external_lex_state = 5}, - [4660] = {.lex_state = 96, .external_lex_state = 5}, - [4661] = {.lex_state = 96, .external_lex_state = 2}, - [4662] = {.lex_state = 96, .external_lex_state = 5}, - [4663] = {.lex_state = 96, .external_lex_state = 5}, - [4664] = {.lex_state = 96, .external_lex_state = 5}, - [4665] = {.lex_state = 96, .external_lex_state = 5}, - [4666] = {.lex_state = 96, .external_lex_state = 2}, - [4667] = {.lex_state = 96, .external_lex_state = 2}, - [4668] = {.lex_state = 96, .external_lex_state = 2}, - [4669] = {.lex_state = 96, .external_lex_state = 5}, - [4670] = {.lex_state = 4, .external_lex_state = 2}, - [4671] = {.lex_state = 96, .external_lex_state = 5}, - [4672] = {.lex_state = 96, .external_lex_state = 5}, - [4673] = {.lex_state = 96, .external_lex_state = 2}, - [4674] = {.lex_state = 96, .external_lex_state = 5}, - [4675] = {.lex_state = 4, .external_lex_state = 2}, - [4676] = {.lex_state = 96, .external_lex_state = 2}, - [4677] = {.lex_state = 96, .external_lex_state = 2}, - [4678] = {.lex_state = 96, .external_lex_state = 5}, - [4679] = {.lex_state = 96, .external_lex_state = 2}, - [4680] = {.lex_state = 96, .external_lex_state = 2}, - [4681] = {.lex_state = 96, .external_lex_state = 5}, - [4682] = {.lex_state = 96, .external_lex_state = 5}, - [4683] = {.lex_state = 96, .external_lex_state = 2}, - [4684] = {.lex_state = 96, .external_lex_state = 5}, - [4685] = {.lex_state = 96, .external_lex_state = 2}, - [4686] = {.lex_state = 12, .external_lex_state = 2}, - [4687] = {.lex_state = 96, .external_lex_state = 2}, - [4688] = {.lex_state = 96, .external_lex_state = 5}, - [4689] = {.lex_state = 96, .external_lex_state = 5}, - [4690] = {.lex_state = 96, .external_lex_state = 5}, - [4691] = {.lex_state = 96, .external_lex_state = 5}, - [4692] = {.lex_state = 4, .external_lex_state = 2}, - [4693] = {.lex_state = 96, .external_lex_state = 5}, - [4694] = {.lex_state = 96, .external_lex_state = 5}, - [4695] = {.lex_state = 96, .external_lex_state = 2}, - [4696] = {.lex_state = 96, .external_lex_state = 2}, - [4697] = {.lex_state = 96, .external_lex_state = 5}, - [4698] = {.lex_state = 96, .external_lex_state = 5}, - [4699] = {.lex_state = 96, .external_lex_state = 5}, - [4700] = {.lex_state = 96, .external_lex_state = 2}, - [4701] = {.lex_state = 96, .external_lex_state = 5}, - [4702] = {.lex_state = 96, .external_lex_state = 5}, - [4703] = {.lex_state = 96, .external_lex_state = 2}, - [4704] = {.lex_state = 96, .external_lex_state = 2}, - [4705] = {.lex_state = 96, .external_lex_state = 2}, - [4706] = {.lex_state = 96, .external_lex_state = 5}, - [4707] = {.lex_state = 96, .external_lex_state = 2}, - [4708] = {.lex_state = 96, .external_lex_state = 5}, - [4709] = {.lex_state = 96, .external_lex_state = 5}, - [4710] = {.lex_state = 96, .external_lex_state = 5}, - [4711] = {.lex_state = 96, .external_lex_state = 5}, - [4712] = {.lex_state = 96, .external_lex_state = 5}, - [4713] = {.lex_state = 96, .external_lex_state = 5}, - [4714] = {.lex_state = 96, .external_lex_state = 5}, - [4715] = {.lex_state = 96, .external_lex_state = 5}, - [4716] = {.lex_state = 96, .external_lex_state = 5}, - [4717] = {.lex_state = 96, .external_lex_state = 5}, - [4718] = {.lex_state = 96, .external_lex_state = 5}, - [4719] = {.lex_state = 96, .external_lex_state = 5}, - [4720] = {.lex_state = 96, .external_lex_state = 2}, - [4721] = {.lex_state = 96, .external_lex_state = 5}, - [4722] = {.lex_state = 96, .external_lex_state = 5}, - [4723] = {.lex_state = 96, .external_lex_state = 5}, - [4724] = {.lex_state = 96, .external_lex_state = 2}, - [4725] = {.lex_state = 96, .external_lex_state = 5}, - [4726] = {.lex_state = 96, .external_lex_state = 5}, - [4727] = {.lex_state = 96, .external_lex_state = 5}, - [4728] = {.lex_state = 96, .external_lex_state = 2}, - [4729] = {.lex_state = 96, .external_lex_state = 5}, - [4730] = {.lex_state = 96, .external_lex_state = 2}, - [4731] = {.lex_state = 96, .external_lex_state = 5}, - [4732] = {.lex_state = 96, .external_lex_state = 5}, - [4733] = {.lex_state = 96, .external_lex_state = 5}, - [4734] = {.lex_state = 96, .external_lex_state = 5}, - [4735] = {.lex_state = 96, .external_lex_state = 5}, - [4736] = {.lex_state = 96, .external_lex_state = 5}, - [4737] = {.lex_state = 96, .external_lex_state = 5}, - [4738] = {.lex_state = 96, .external_lex_state = 5}, - [4739] = {.lex_state = 96, .external_lex_state = 5}, - [4740] = {.lex_state = 96, .external_lex_state = 5}, - [4741] = {.lex_state = 96, .external_lex_state = 5}, - [4742] = {.lex_state = 96, .external_lex_state = 5}, - [4743] = {.lex_state = 96, .external_lex_state = 5}, - [4744] = {.lex_state = 96, .external_lex_state = 5}, - [4745] = {.lex_state = 96, .external_lex_state = 5}, - [4746] = {.lex_state = 96, .external_lex_state = 5}, - [4747] = {.lex_state = 96, .external_lex_state = 5}, - [4748] = {.lex_state = 96, .external_lex_state = 5}, - [4749] = {.lex_state = 96, .external_lex_state = 5}, - [4750] = {.lex_state = 96, .external_lex_state = 2}, - [4751] = {.lex_state = 96, .external_lex_state = 5}, - [4752] = {.lex_state = 96, .external_lex_state = 5}, - [4753] = {.lex_state = 96, .external_lex_state = 5}, - [4754] = {.lex_state = 96, .external_lex_state = 5}, - [4755] = {.lex_state = 96, .external_lex_state = 5}, - [4756] = {.lex_state = 96, .external_lex_state = 5}, - [4757] = {.lex_state = 96, .external_lex_state = 5}, - [4758] = {.lex_state = 96, .external_lex_state = 2}, - [4759] = {.lex_state = 96, .external_lex_state = 5}, - [4760] = {.lex_state = 96, .external_lex_state = 5}, - [4761] = {.lex_state = 96, .external_lex_state = 5}, - [4762] = {.lex_state = 96, .external_lex_state = 5}, - [4763] = {.lex_state = 96, .external_lex_state = 5}, - [4764] = {.lex_state = 96, .external_lex_state = 5}, - [4765] = {.lex_state = 96, .external_lex_state = 5}, - [4766] = {.lex_state = 96, .external_lex_state = 5}, - [4767] = {.lex_state = 96, .external_lex_state = 2}, - [4768] = {.lex_state = 96, .external_lex_state = 5}, - [4769] = {.lex_state = 96, .external_lex_state = 2}, - [4770] = {.lex_state = 96, .external_lex_state = 5}, - [4771] = {.lex_state = 4, .external_lex_state = 2}, - [4772] = {.lex_state = 96, .external_lex_state = 2}, - [4773] = {.lex_state = 96, .external_lex_state = 5}, - [4774] = {.lex_state = 96, .external_lex_state = 5}, - [4775] = {.lex_state = 96, .external_lex_state = 2}, - [4776] = {.lex_state = 96, .external_lex_state = 5}, - [4777] = {.lex_state = 96, .external_lex_state = 5}, - [4778] = {.lex_state = 96, .external_lex_state = 2}, - [4779] = {.lex_state = 96, .external_lex_state = 2}, - [4780] = {.lex_state = 96, .external_lex_state = 5}, - [4781] = {.lex_state = 96, .external_lex_state = 2}, - [4782] = {.lex_state = 96, .external_lex_state = 5}, - [4783] = {.lex_state = 96, .external_lex_state = 2}, - [4784] = {.lex_state = 96, .external_lex_state = 2}, - [4785] = {.lex_state = 96, .external_lex_state = 5}, - [4786] = {.lex_state = 96, .external_lex_state = 5}, - [4787] = {.lex_state = 96, .external_lex_state = 2}, - [4788] = {.lex_state = 96, .external_lex_state = 2}, - [4789] = {.lex_state = 96, .external_lex_state = 2}, - [4790] = {.lex_state = 96, .external_lex_state = 5}, - [4791] = {.lex_state = 96, .external_lex_state = 5}, - [4792] = {.lex_state = 96, .external_lex_state = 5}, - [4793] = {.lex_state = 96, .external_lex_state = 5}, - [4794] = {.lex_state = 96, .external_lex_state = 5}, - [4795] = {.lex_state = 96, .external_lex_state = 5}, - [4796] = {.lex_state = 96, .external_lex_state = 5}, - [4797] = {.lex_state = 96, .external_lex_state = 5}, - [4798] = {.lex_state = 96, .external_lex_state = 5}, - [4799] = {.lex_state = 96, .external_lex_state = 5}, - [4800] = {.lex_state = 96, .external_lex_state = 5}, - [4801] = {.lex_state = 96, .external_lex_state = 5}, - [4802] = {.lex_state = 96, .external_lex_state = 5}, - [4803] = {.lex_state = 96, .external_lex_state = 2}, - [4804] = {.lex_state = 96, .external_lex_state = 5}, - [4805] = {.lex_state = 96, .external_lex_state = 5}, - [4806] = {.lex_state = 96, .external_lex_state = 5}, - [4807] = {.lex_state = 96, .external_lex_state = 2}, - [4808] = {.lex_state = 96, .external_lex_state = 5}, - [4809] = {.lex_state = 96, .external_lex_state = 2}, - [4810] = {.lex_state = 96, .external_lex_state = 2}, - [4811] = {.lex_state = 96, .external_lex_state = 5}, - [4812] = {.lex_state = 96, .external_lex_state = 5}, - [4813] = {.lex_state = 96, .external_lex_state = 5}, - [4814] = {.lex_state = 96, .external_lex_state = 5}, - [4815] = {.lex_state = 96, .external_lex_state = 5}, - [4816] = {.lex_state = 96, .external_lex_state = 5}, - [4817] = {.lex_state = 1, .external_lex_state = 2}, - [4818] = {.lex_state = 96, .external_lex_state = 5}, - [4819] = {.lex_state = 96, .external_lex_state = 5}, - [4820] = {.lex_state = 96, .external_lex_state = 2}, - [4821] = {.lex_state = 96, .external_lex_state = 5}, - [4822] = {.lex_state = 96, .external_lex_state = 2}, - [4823] = {.lex_state = 96, .external_lex_state = 5}, - [4824] = {.lex_state = 96, .external_lex_state = 2}, - [4825] = {.lex_state = 96, .external_lex_state = 2}, - [4826] = {.lex_state = 96, .external_lex_state = 5}, - [4827] = {.lex_state = 96, .external_lex_state = 5}, - [4828] = {.lex_state = 96, .external_lex_state = 5}, - [4829] = {.lex_state = 96, .external_lex_state = 5}, - [4830] = {.lex_state = 96, .external_lex_state = 5}, - [4831] = {.lex_state = 96, .external_lex_state = 5}, - [4832] = {.lex_state = 96, .external_lex_state = 5}, - [4833] = {.lex_state = 96, .external_lex_state = 5}, - [4834] = {.lex_state = 96, .external_lex_state = 5}, - [4835] = {.lex_state = 96, .external_lex_state = 2}, - [4836] = {.lex_state = 96, .external_lex_state = 5}, - [4837] = {.lex_state = 96, .external_lex_state = 5}, - [4838] = {.lex_state = 96, .external_lex_state = 5}, - [4839] = {.lex_state = 96, .external_lex_state = 5}, - [4840] = {.lex_state = 96, .external_lex_state = 5}, - [4841] = {.lex_state = 96, .external_lex_state = 5}, - [4842] = {.lex_state = 96, .external_lex_state = 5}, - [4843] = {.lex_state = 96, .external_lex_state = 5}, - [4844] = {.lex_state = 96, .external_lex_state = 5}, - [4845] = {.lex_state = 96, .external_lex_state = 2}, - [4846] = {.lex_state = 96, .external_lex_state = 5}, - [4847] = {.lex_state = 96, .external_lex_state = 5}, - [4848] = {.lex_state = 96, .external_lex_state = 5}, - [4849] = {.lex_state = 96, .external_lex_state = 5}, - [4850] = {.lex_state = 96, .external_lex_state = 5}, - [4851] = {.lex_state = 96, .external_lex_state = 5}, - [4852] = {.lex_state = 96, .external_lex_state = 5}, - [4853] = {.lex_state = 96, .external_lex_state = 5}, - [4854] = {.lex_state = 96, .external_lex_state = 5}, - [4855] = {.lex_state = 96, .external_lex_state = 5}, - [4856] = {.lex_state = 96, .external_lex_state = 5}, - [4857] = {.lex_state = 96, .external_lex_state = 5}, - [4858] = {.lex_state = 96, .external_lex_state = 5}, - [4859] = {.lex_state = 96, .external_lex_state = 5}, - [4860] = {.lex_state = 96, .external_lex_state = 5}, - [4861] = {.lex_state = 96, .external_lex_state = 5}, - [4862] = {.lex_state = 96, .external_lex_state = 5}, - [4863] = {.lex_state = 96, .external_lex_state = 5}, - [4864] = {.lex_state = 96, .external_lex_state = 5}, - [4865] = {.lex_state = 96, .external_lex_state = 5}, - [4866] = {.lex_state = 96, .external_lex_state = 5}, - [4867] = {.lex_state = 96, .external_lex_state = 5}, - [4868] = {.lex_state = 96, .external_lex_state = 5}, - [4869] = {.lex_state = 96, .external_lex_state = 5}, - [4870] = {.lex_state = 96, .external_lex_state = 5}, - [4871] = {.lex_state = 96, .external_lex_state = 5}, - [4872] = {.lex_state = 96, .external_lex_state = 5}, - [4873] = {.lex_state = 96, .external_lex_state = 5}, - [4874] = {.lex_state = 96, .external_lex_state = 5}, - [4875] = {.lex_state = 96, .external_lex_state = 5}, - [4876] = {.lex_state = 96, .external_lex_state = 5}, - [4877] = {.lex_state = 96, .external_lex_state = 5}, - [4878] = {.lex_state = 96, .external_lex_state = 2}, - [4879] = {.lex_state = 1, .external_lex_state = 2}, - [4880] = {.lex_state = 96, .external_lex_state = 5}, - [4881] = {.lex_state = 96, .external_lex_state = 5}, - [4882] = {.lex_state = 96, .external_lex_state = 5}, - [4883] = {.lex_state = 96, .external_lex_state = 5}, - [4884] = {.lex_state = 96, .external_lex_state = 5}, - [4885] = {.lex_state = 96, .external_lex_state = 5}, - [4886] = {.lex_state = 96, .external_lex_state = 5}, - [4887] = {.lex_state = 96, .external_lex_state = 5}, - [4888] = {.lex_state = 96, .external_lex_state = 2}, - [4889] = {.lex_state = 96, .external_lex_state = 5}, - [4890] = {.lex_state = 96, .external_lex_state = 5}, - [4891] = {.lex_state = 96, .external_lex_state = 5}, - [4892] = {.lex_state = 96, .external_lex_state = 5}, - [4893] = {.lex_state = 96, .external_lex_state = 5}, - [4894] = {.lex_state = 96, .external_lex_state = 2}, - [4895] = {.lex_state = 96, .external_lex_state = 5}, - [4896] = {.lex_state = 96, .external_lex_state = 5}, - [4897] = {.lex_state = 96, .external_lex_state = 2}, - [4898] = {.lex_state = 96, .external_lex_state = 5}, - [4899] = {.lex_state = 96, .external_lex_state = 5}, - [4900] = {.lex_state = 96, .external_lex_state = 5}, - [4901] = {.lex_state = 96, .external_lex_state = 2}, - [4902] = {.lex_state = 96, .external_lex_state = 2}, - [4903] = {.lex_state = 96, .external_lex_state = 5}, - [4904] = {.lex_state = 96, .external_lex_state = 2}, - [4905] = {.lex_state = 96, .external_lex_state = 2}, - [4906] = {.lex_state = 96, .external_lex_state = 2}, - [4907] = {.lex_state = 96, .external_lex_state = 5}, - [4908] = {.lex_state = 96, .external_lex_state = 2}, - [4909] = {.lex_state = 96, .external_lex_state = 5}, - [4910] = {.lex_state = 96, .external_lex_state = 2}, - [4911] = {.lex_state = 96, .external_lex_state = 5}, - [4912] = {.lex_state = 96, .external_lex_state = 5}, - [4913] = {.lex_state = 96, .external_lex_state = 5}, - [4914] = {.lex_state = 96, .external_lex_state = 5}, - [4915] = {.lex_state = 96, .external_lex_state = 2}, - [4916] = {.lex_state = 96, .external_lex_state = 5}, - [4917] = {.lex_state = 96, .external_lex_state = 5}, - [4918] = {.lex_state = 96, .external_lex_state = 5}, - [4919] = {.lex_state = 96, .external_lex_state = 5}, - [4920] = {.lex_state = 96, .external_lex_state = 5}, - [4921] = {.lex_state = 96, .external_lex_state = 5}, - [4922] = {.lex_state = 96, .external_lex_state = 2}, - [4923] = {.lex_state = 96, .external_lex_state = 5}, - [4924] = {.lex_state = 96, .external_lex_state = 5}, - [4925] = {.lex_state = 96, .external_lex_state = 5}, - [4926] = {.lex_state = 96, .external_lex_state = 2}, - [4927] = {.lex_state = 96, .external_lex_state = 5}, - [4928] = {.lex_state = 96, .external_lex_state = 5}, - [4929] = {.lex_state = 96, .external_lex_state = 5}, - [4930] = {.lex_state = 96, .external_lex_state = 5}, - [4931] = {.lex_state = 96, .external_lex_state = 5}, - [4932] = {.lex_state = 96, .external_lex_state = 5}, - [4933] = {.lex_state = 96, .external_lex_state = 5}, - [4934] = {.lex_state = 96, .external_lex_state = 5}, - [4935] = {.lex_state = 1, .external_lex_state = 2}, - [4936] = {.lex_state = 96, .external_lex_state = 5}, - [4937] = {.lex_state = 96, .external_lex_state = 2}, - [4938] = {.lex_state = 96, .external_lex_state = 5}, - [4939] = {.lex_state = 96, .external_lex_state = 2}, - [4940] = {.lex_state = 96, .external_lex_state = 2}, - [4941] = {.lex_state = 96, .external_lex_state = 2}, - [4942] = {.lex_state = 18, .external_lex_state = 8}, - [4943] = {.lex_state = 96, .external_lex_state = 5}, - [4944] = {.lex_state = 4, .external_lex_state = 2}, - [4945] = {.lex_state = 4, .external_lex_state = 2}, - [4946] = {.lex_state = 96, .external_lex_state = 5}, - [4947] = {.lex_state = 96, .external_lex_state = 2}, - [4948] = {.lex_state = 96, .external_lex_state = 2}, - [4949] = {.lex_state = 96, .external_lex_state = 5}, - [4950] = {.lex_state = 96, .external_lex_state = 5}, - [4951] = {.lex_state = 96, .external_lex_state = 5}, - [4952] = {.lex_state = 96, .external_lex_state = 2}, - [4953] = {.lex_state = 96, .external_lex_state = 5}, - [4954] = {.lex_state = 96, .external_lex_state = 5}, - [4955] = {.lex_state = 96, .external_lex_state = 5}, - [4956] = {.lex_state = 96, .external_lex_state = 2}, - [4957] = {.lex_state = 96, .external_lex_state = 5}, - [4958] = {.lex_state = 96, .external_lex_state = 5}, - [4959] = {.lex_state = 96, .external_lex_state = 5}, - [4960] = {.lex_state = 96, .external_lex_state = 5}, - [4961] = {.lex_state = 96, .external_lex_state = 2}, - [4962] = {.lex_state = 96, .external_lex_state = 5}, - [4963] = {.lex_state = 96, .external_lex_state = 2}, - [4964] = {.lex_state = 96, .external_lex_state = 2}, - [4965] = {.lex_state = 96, .external_lex_state = 2}, - [4966] = {.lex_state = 96, .external_lex_state = 5}, - [4967] = {.lex_state = 96, .external_lex_state = 5}, - [4968] = {.lex_state = 96, .external_lex_state = 5}, - [4969] = {.lex_state = 96, .external_lex_state = 2}, - [4970] = {.lex_state = 96, .external_lex_state = 2}, - [4971] = {.lex_state = 96, .external_lex_state = 2}, - [4972] = {.lex_state = 96, .external_lex_state = 5}, - [4973] = {.lex_state = 96, .external_lex_state = 5}, - [4974] = {.lex_state = 96, .external_lex_state = 2}, - [4975] = {.lex_state = 96, .external_lex_state = 5}, - [4976] = {.lex_state = 96, .external_lex_state = 2}, - [4977] = {.lex_state = 96, .external_lex_state = 5}, - [4978] = {.lex_state = 96, .external_lex_state = 5}, - [4979] = {.lex_state = 96, .external_lex_state = 5}, - [4980] = {.lex_state = 96, .external_lex_state = 5}, - [4981] = {.lex_state = 96, .external_lex_state = 5}, - [4982] = {.lex_state = 96, .external_lex_state = 5}, - [4983] = {.lex_state = 96, .external_lex_state = 2}, - [4984] = {.lex_state = 96, .external_lex_state = 5}, - [4985] = {.lex_state = 96, .external_lex_state = 5}, - [4986] = {.lex_state = 96, .external_lex_state = 5}, - [4987] = {.lex_state = 96, .external_lex_state = 2}, - [4988] = {.lex_state = 96, .external_lex_state = 2}, - [4989] = {.lex_state = 96, .external_lex_state = 5}, - [4990] = {.lex_state = 96, .external_lex_state = 2}, - [4991] = {.lex_state = 96, .external_lex_state = 2}, - [4992] = {.lex_state = 96, .external_lex_state = 5}, - [4993] = {.lex_state = 96, .external_lex_state = 5}, - [4994] = {.lex_state = 96, .external_lex_state = 2}, - [4995] = {.lex_state = 12, .external_lex_state = 2}, - [4996] = {.lex_state = 96, .external_lex_state = 5}, - [4997] = {.lex_state = 96, .external_lex_state = 2}, - [4998] = {.lex_state = 96, .external_lex_state = 2}, - [4999] = {.lex_state = 96, .external_lex_state = 5}, - [5000] = {.lex_state = 96, .external_lex_state = 2}, - [5001] = {.lex_state = 96, .external_lex_state = 5}, - [5002] = {.lex_state = 96, .external_lex_state = 5}, - [5003] = {.lex_state = 96, .external_lex_state = 5}, - [5004] = {.lex_state = 96, .external_lex_state = 5}, - [5005] = {.lex_state = 96, .external_lex_state = 5}, - [5006] = {.lex_state = 96, .external_lex_state = 5}, - [5007] = {.lex_state = 96, .external_lex_state = 2}, - [5008] = {.lex_state = 96, .external_lex_state = 2}, - [5009] = {.lex_state = 96, .external_lex_state = 5}, - [5010] = {.lex_state = 96, .external_lex_state = 2}, - [5011] = {.lex_state = 96, .external_lex_state = 2}, - [5012] = {.lex_state = 96, .external_lex_state = 5}, - [5013] = {.lex_state = 96, .external_lex_state = 5}, - [5014] = {.lex_state = 96, .external_lex_state = 5}, - [5015] = {.lex_state = 96, .external_lex_state = 5}, - [5016] = {.lex_state = 96, .external_lex_state = 2}, - [5017] = {.lex_state = 96, .external_lex_state = 5}, - [5018] = {.lex_state = 96, .external_lex_state = 5}, - [5019] = {.lex_state = 96, .external_lex_state = 5}, - [5020] = {.lex_state = 96, .external_lex_state = 2}, - [5021] = {.lex_state = 96, .external_lex_state = 5}, - [5022] = {.lex_state = 96, .external_lex_state = 2}, - [5023] = {.lex_state = 96, .external_lex_state = 5}, - [5024] = {.lex_state = 96, .external_lex_state = 5}, - [5025] = {.lex_state = 96, .external_lex_state = 5}, - [5026] = {.lex_state = 96, .external_lex_state = 5}, - [5027] = {.lex_state = 96, .external_lex_state = 5}, - [5028] = {.lex_state = 96, .external_lex_state = 5}, - [5029] = {.lex_state = 96, .external_lex_state = 2}, - [5030] = {.lex_state = 96, .external_lex_state = 5}, - [5031] = {.lex_state = 96, .external_lex_state = 5}, - [5032] = {.lex_state = 96, .external_lex_state = 5}, - [5033] = {.lex_state = 96, .external_lex_state = 5}, - [5034] = {.lex_state = 96, .external_lex_state = 2}, - [5035] = {.lex_state = 96, .external_lex_state = 5}, - [5036] = {.lex_state = 96, .external_lex_state = 5}, - [5037] = {.lex_state = 96, .external_lex_state = 5}, - [5038] = {.lex_state = 96, .external_lex_state = 5}, - [5039] = {.lex_state = 96, .external_lex_state = 5}, - [5040] = {.lex_state = 96, .external_lex_state = 5}, - [5041] = {.lex_state = 96, .external_lex_state = 5}, - [5042] = {.lex_state = 96, .external_lex_state = 5}, - [5043] = {.lex_state = 96, .external_lex_state = 5}, - [5044] = {.lex_state = 96, .external_lex_state = 5}, - [5045] = {.lex_state = 96, .external_lex_state = 5}, - [5046] = {.lex_state = 96, .external_lex_state = 5}, - [5047] = {.lex_state = 96, .external_lex_state = 5}, - [5048] = {.lex_state = 96, .external_lex_state = 5}, - [5049] = {.lex_state = 96, .external_lex_state = 5}, - [5050] = {.lex_state = 96, .external_lex_state = 5}, - [5051] = {.lex_state = 96, .external_lex_state = 5}, - [5052] = {.lex_state = 96, .external_lex_state = 5}, - [5053] = {.lex_state = 96, .external_lex_state = 5}, - [5054] = {.lex_state = 96, .external_lex_state = 5}, - [5055] = {.lex_state = 96, .external_lex_state = 5}, - [5056] = {.lex_state = 96, .external_lex_state = 2}, - [5057] = {.lex_state = 96, .external_lex_state = 5}, - [5058] = {.lex_state = 96, .external_lex_state = 5}, - [5059] = {.lex_state = 96, .external_lex_state = 5}, - [5060] = {.lex_state = 96, .external_lex_state = 5}, - [5061] = {.lex_state = 96, .external_lex_state = 5}, - [5062] = {.lex_state = 96, .external_lex_state = 5}, - [5063] = {.lex_state = 96, .external_lex_state = 5}, - [5064] = {.lex_state = 96, .external_lex_state = 5}, - [5065] = {.lex_state = 96, .external_lex_state = 5}, - [5066] = {.lex_state = 96, .external_lex_state = 5}, - [5067] = {.lex_state = 96, .external_lex_state = 5}, - [5068] = {.lex_state = 96, .external_lex_state = 5}, - [5069] = {.lex_state = 96, .external_lex_state = 5}, - [5070] = {.lex_state = 96, .external_lex_state = 5}, - [5071] = {.lex_state = 96, .external_lex_state = 5}, - [5072] = {.lex_state = 96, .external_lex_state = 5}, - [5073] = {.lex_state = 96, .external_lex_state = 5}, - [5074] = {.lex_state = 96, .external_lex_state = 5}, - [5075] = {.lex_state = 96, .external_lex_state = 5}, - [5076] = {.lex_state = 96, .external_lex_state = 5}, - [5077] = {.lex_state = 96, .external_lex_state = 5}, - [5078] = {.lex_state = 96, .external_lex_state = 5}, - [5079] = {.lex_state = 96, .external_lex_state = 5}, - [5080] = {.lex_state = 96, .external_lex_state = 5}, - [5081] = {.lex_state = 96, .external_lex_state = 5}, - [5082] = {.lex_state = 96, .external_lex_state = 5}, - [5083] = {.lex_state = 96, .external_lex_state = 5}, - [5084] = {.lex_state = 96, .external_lex_state = 5}, - [5085] = {.lex_state = 96, .external_lex_state = 5}, - [5086] = {.lex_state = 96, .external_lex_state = 5}, - [5087] = {.lex_state = 96, .external_lex_state = 5}, - [5088] = {.lex_state = 96, .external_lex_state = 5}, - [5089] = {.lex_state = 96, .external_lex_state = 5}, - [5090] = {.lex_state = 96, .external_lex_state = 5}, - [5091] = {.lex_state = 96, .external_lex_state = 2}, - [5092] = {.lex_state = 96, .external_lex_state = 5}, - [5093] = {.lex_state = 96, .external_lex_state = 5}, - [5094] = {.lex_state = 96, .external_lex_state = 5}, - [5095] = {.lex_state = 96, .external_lex_state = 5}, - [5096] = {.lex_state = 96, .external_lex_state = 5}, - [5097] = {.lex_state = 96, .external_lex_state = 5}, - [5098] = {.lex_state = 96, .external_lex_state = 5}, - [5099] = {.lex_state = 96, .external_lex_state = 5}, - [5100] = {.lex_state = 96, .external_lex_state = 5}, - [5101] = {.lex_state = 96, .external_lex_state = 5}, - [5102] = {.lex_state = 96, .external_lex_state = 5}, - [5103] = {.lex_state = 96, .external_lex_state = 5}, - [5104] = {.lex_state = 96, .external_lex_state = 5}, - [5105] = {.lex_state = 96, .external_lex_state = 5}, - [5106] = {.lex_state = 96, .external_lex_state = 2}, - [5107] = {.lex_state = 96, .external_lex_state = 5}, - [5108] = {.lex_state = 96, .external_lex_state = 5}, - [5109] = {.lex_state = 96, .external_lex_state = 5}, - [5110] = {.lex_state = 4, .external_lex_state = 2}, - [5111] = {.lex_state = 96, .external_lex_state = 5}, - [5112] = {.lex_state = 96, .external_lex_state = 5}, - [5113] = {.lex_state = 96, .external_lex_state = 5}, - [5114] = {.lex_state = 96, .external_lex_state = 5}, - [5115] = {.lex_state = 96, .external_lex_state = 5}, - [5116] = {.lex_state = 4, .external_lex_state = 2}, - [5117] = {.lex_state = 96, .external_lex_state = 5}, - [5118] = {.lex_state = 96, .external_lex_state = 5}, - [5119] = {.lex_state = 96, .external_lex_state = 2}, - [5120] = {.lex_state = 96, .external_lex_state = 5}, - [5121] = {.lex_state = 96, .external_lex_state = 5}, - [5122] = {.lex_state = 96, .external_lex_state = 5}, - [5123] = {.lex_state = 96, .external_lex_state = 5}, - [5124] = {.lex_state = 96, .external_lex_state = 5}, - [5125] = {.lex_state = 96, .external_lex_state = 5}, - [5126] = {.lex_state = 96, .external_lex_state = 5}, - [5127] = {.lex_state = 96, .external_lex_state = 5}, - [5128] = {.lex_state = 96, .external_lex_state = 5}, - [5129] = {.lex_state = 96, .external_lex_state = 5}, - [5130] = {.lex_state = 96, .external_lex_state = 5}, - [5131] = {.lex_state = 96, .external_lex_state = 5}, - [5132] = {.lex_state = 96, .external_lex_state = 2}, - [5133] = {.lex_state = 96, .external_lex_state = 5}, - [5134] = {.lex_state = 96, .external_lex_state = 2}, - [5135] = {.lex_state = 96, .external_lex_state = 5}, - [5136] = {.lex_state = 96, .external_lex_state = 2}, - [5137] = {.lex_state = 96, .external_lex_state = 5}, - [5138] = {.lex_state = 96, .external_lex_state = 2}, - [5139] = {.lex_state = 96, .external_lex_state = 2}, - [5140] = {.lex_state = 96, .external_lex_state = 2}, - [5141] = {.lex_state = 96, .external_lex_state = 2}, - [5142] = {.lex_state = 96, .external_lex_state = 2}, - [5143] = {.lex_state = 96, .external_lex_state = 2}, - [5144] = {.lex_state = 96, .external_lex_state = 5}, - [5145] = {.lex_state = 96, .external_lex_state = 2}, - [5146] = {.lex_state = 96, .external_lex_state = 2}, - [5147] = {.lex_state = 96, .external_lex_state = 2}, - [5148] = {.lex_state = 96, .external_lex_state = 5}, - [5149] = {.lex_state = 96, .external_lex_state = 2}, - [5150] = {.lex_state = 96, .external_lex_state = 2}, - [5151] = {.lex_state = 96, .external_lex_state = 5}, - [5152] = {.lex_state = 96, .external_lex_state = 2}, - [5153] = {.lex_state = 96, .external_lex_state = 5}, - [5154] = {.lex_state = 96, .external_lex_state = 2}, - [5155] = {.lex_state = 96, .external_lex_state = 2}, - [5156] = {.lex_state = 96, .external_lex_state = 2}, - [5157] = {.lex_state = 96, .external_lex_state = 2}, - [5158] = {.lex_state = 96, .external_lex_state = 2}, - [5159] = {.lex_state = 96, .external_lex_state = 2}, - [5160] = {.lex_state = 96, .external_lex_state = 2}, - [5161] = {.lex_state = 96, .external_lex_state = 2}, - [5162] = {.lex_state = 96, .external_lex_state = 2}, - [5163] = {.lex_state = 96, .external_lex_state = 5}, - [5164] = {.lex_state = 96, .external_lex_state = 2}, - [5165] = {.lex_state = 96, .external_lex_state = 2}, - [5166] = {.lex_state = 96, .external_lex_state = 2}, - [5167] = {.lex_state = 96, .external_lex_state = 2}, - [5168] = {.lex_state = 96, .external_lex_state = 2}, - [5169] = {.lex_state = 96, .external_lex_state = 2}, - [5170] = {.lex_state = 96, .external_lex_state = 2}, - [5171] = {.lex_state = 96, .external_lex_state = 2}, - [5172] = {.lex_state = 96, .external_lex_state = 2}, - [5173] = {.lex_state = 96, .external_lex_state = 5}, - [5174] = {.lex_state = 96, .external_lex_state = 2}, - [5175] = {.lex_state = 96, .external_lex_state = 2}, - [5176] = {.lex_state = 96, .external_lex_state = 2}, - [5177] = {.lex_state = 96, .external_lex_state = 5}, - [5178] = {.lex_state = 96, .external_lex_state = 2}, - [5179] = {.lex_state = 96, .external_lex_state = 2}, - [5180] = {.lex_state = 96, .external_lex_state = 2}, - [5181] = {.lex_state = 96, .external_lex_state = 2}, - [5182] = {.lex_state = 96, .external_lex_state = 2}, - [5183] = {.lex_state = 96, .external_lex_state = 2}, - [5184] = {.lex_state = 96, .external_lex_state = 2}, - [5185] = {.lex_state = 96, .external_lex_state = 2}, - [5186] = {.lex_state = 96, .external_lex_state = 5}, - [5187] = {.lex_state = 96, .external_lex_state = 2}, - [5188] = {.lex_state = 96, .external_lex_state = 2}, - [5189] = {.lex_state = 96, .external_lex_state = 2}, - [5190] = {.lex_state = 96, .external_lex_state = 2}, - [5191] = {.lex_state = 96, .external_lex_state = 2}, - [5192] = {.lex_state = 96, .external_lex_state = 2}, - [5193] = {.lex_state = 96, .external_lex_state = 2}, - [5194] = {.lex_state = 96, .external_lex_state = 2}, - [5195] = {.lex_state = 96, .external_lex_state = 5}, - [5196] = {.lex_state = 96, .external_lex_state = 2}, - [5197] = {.lex_state = 96, .external_lex_state = 2}, - [5198] = {.lex_state = 96, .external_lex_state = 5}, - [5199] = {.lex_state = 96, .external_lex_state = 2}, - [5200] = {.lex_state = 96, .external_lex_state = 2}, - [5201] = {.lex_state = 96, .external_lex_state = 2}, - [5202] = {.lex_state = 96, .external_lex_state = 2}, - [5203] = {.lex_state = 96, .external_lex_state = 2}, - [5204] = {.lex_state = 96, .external_lex_state = 2}, - [5205] = {.lex_state = 96, .external_lex_state = 2}, - [5206] = {.lex_state = 96, .external_lex_state = 2}, - [5207] = {.lex_state = 96, .external_lex_state = 2}, - [5208] = {.lex_state = 96, .external_lex_state = 2}, - [5209] = {.lex_state = 96, .external_lex_state = 2}, - [5210] = {.lex_state = 96, .external_lex_state = 2}, - [5211] = {.lex_state = 96, .external_lex_state = 2}, - [5212] = {.lex_state = 96, .external_lex_state = 2}, - [5213] = {.lex_state = 96, .external_lex_state = 2}, - [5214] = {.lex_state = 96, .external_lex_state = 2}, - [5215] = {.lex_state = 96, .external_lex_state = 2}, - [5216] = {.lex_state = 96, .external_lex_state = 2}, - [5217] = {.lex_state = 96, .external_lex_state = 2}, - [5218] = {.lex_state = 96, .external_lex_state = 2}, - [5219] = {.lex_state = 96, .external_lex_state = 2}, - [5220] = {.lex_state = 96, .external_lex_state = 2}, - [5221] = {.lex_state = 96, .external_lex_state = 2}, - [5222] = {.lex_state = 96, .external_lex_state = 2}, - [5223] = {.lex_state = 96, .external_lex_state = 2}, - [5224] = {.lex_state = 96, .external_lex_state = 2}, - [5225] = {.lex_state = 96, .external_lex_state = 2}, - [5226] = {.lex_state = 96, .external_lex_state = 2}, - [5227] = {.lex_state = 96, .external_lex_state = 2}, - [5228] = {.lex_state = 96, .external_lex_state = 2}, - [5229] = {.lex_state = 96, .external_lex_state = 2}, - [5230] = {.lex_state = 96, .external_lex_state = 2}, - [5231] = {.lex_state = 96, .external_lex_state = 2}, - [5232] = {.lex_state = 96, .external_lex_state = 2}, - [5233] = {.lex_state = 96, .external_lex_state = 2}, - [5234] = {.lex_state = 96, .external_lex_state = 2}, - [5235] = {.lex_state = 96, .external_lex_state = 2}, - [5236] = {.lex_state = 96, .external_lex_state = 2}, - [5237] = {.lex_state = 96, .external_lex_state = 2}, - [5238] = {.lex_state = 96, .external_lex_state = 2}, - [5239] = {.lex_state = 96, .external_lex_state = 2}, - [5240] = {.lex_state = 96, .external_lex_state = 2}, - [5241] = {.lex_state = 96, .external_lex_state = 2}, - [5242] = {.lex_state = 96, .external_lex_state = 2}, - [5243] = {.lex_state = 96, .external_lex_state = 2}, - [5244] = {.lex_state = 96, .external_lex_state = 2}, - [5245] = {.lex_state = 96, .external_lex_state = 2}, - [5246] = {.lex_state = 96, .external_lex_state = 2}, - [5247] = {.lex_state = 96, .external_lex_state = 2}, - [5248] = {.lex_state = 96, .external_lex_state = 5}, - [5249] = {.lex_state = 96, .external_lex_state = 5}, - [5250] = {.lex_state = 96, .external_lex_state = 2}, - [5251] = {.lex_state = 96, .external_lex_state = 2}, - [5252] = {.lex_state = 96, .external_lex_state = 2}, - [5253] = {.lex_state = 96, .external_lex_state = 2}, - [5254] = {.lex_state = 96, .external_lex_state = 2}, - [5255] = {.lex_state = 96, .external_lex_state = 2}, - [5256] = {.lex_state = 96, .external_lex_state = 2}, - [5257] = {.lex_state = 96, .external_lex_state = 2}, - [5258] = {.lex_state = 96, .external_lex_state = 2}, - [5259] = {.lex_state = 96, .external_lex_state = 2}, - [5260] = {.lex_state = 96, .external_lex_state = 2}, - [5261] = {.lex_state = 96, .external_lex_state = 2}, - [5262] = {.lex_state = 96, .external_lex_state = 2}, - [5263] = {.lex_state = 96, .external_lex_state = 2}, - [5264] = {.lex_state = 96, .external_lex_state = 2}, - [5265] = {.lex_state = 96, .external_lex_state = 2}, - [5266] = {.lex_state = 96, .external_lex_state = 2}, - [5267] = {.lex_state = 96, .external_lex_state = 2}, - [5268] = {.lex_state = 96, .external_lex_state = 2}, - [5269] = {.lex_state = 96, .external_lex_state = 2}, - [5270] = {.lex_state = 96, .external_lex_state = 2}, - [5271] = {.lex_state = 96, .external_lex_state = 2}, - [5272] = {.lex_state = 96, .external_lex_state = 2}, - [5273] = {.lex_state = 96, .external_lex_state = 2}, - [5274] = {.lex_state = 96, .external_lex_state = 2}, - [5275] = {.lex_state = 96, .external_lex_state = 2}, - [5276] = {.lex_state = 96, .external_lex_state = 2}, - [5277] = {.lex_state = 96, .external_lex_state = 2}, - [5278] = {.lex_state = 96, .external_lex_state = 2}, - [5279] = {.lex_state = 96, .external_lex_state = 5}, - [5280] = {.lex_state = 96, .external_lex_state = 2}, - [5281] = {.lex_state = 96, .external_lex_state = 2}, - [5282] = {.lex_state = 96, .external_lex_state = 2}, - [5283] = {.lex_state = 96, .external_lex_state = 2}, - [5284] = {.lex_state = 96, .external_lex_state = 2}, - [5285] = {.lex_state = 96, .external_lex_state = 2}, - [5286] = {.lex_state = 96, .external_lex_state = 2}, - [5287] = {.lex_state = 96, .external_lex_state = 2}, - [5288] = {.lex_state = 96, .external_lex_state = 5}, - [5289] = {.lex_state = 96, .external_lex_state = 2}, - [5290] = {.lex_state = 96, .external_lex_state = 2}, - [5291] = {.lex_state = 96, .external_lex_state = 2}, - [5292] = {.lex_state = 96, .external_lex_state = 2}, - [5293] = {.lex_state = 96, .external_lex_state = 2}, - [5294] = {.lex_state = 96, .external_lex_state = 2}, - [5295] = {.lex_state = 96, .external_lex_state = 2}, - [5296] = {.lex_state = 96, .external_lex_state = 2}, - [5297] = {.lex_state = 96, .external_lex_state = 2}, - [5298] = {.lex_state = 96, .external_lex_state = 2}, - [5299] = {.lex_state = 96, .external_lex_state = 2}, - [5300] = {.lex_state = 96, .external_lex_state = 2}, - [5301] = {.lex_state = 96, .external_lex_state = 2}, - [5302] = {.lex_state = 96, .external_lex_state = 2}, - [5303] = {.lex_state = 96, .external_lex_state = 5}, - [5304] = {.lex_state = 96, .external_lex_state = 2}, - [5305] = {.lex_state = 96, .external_lex_state = 2}, - [5306] = {.lex_state = 96, .external_lex_state = 2}, - [5307] = {.lex_state = 96, .external_lex_state = 2}, - [5308] = {.lex_state = 96, .external_lex_state = 2}, - [5309] = {.lex_state = 96, .external_lex_state = 2}, - [5310] = {.lex_state = 96, .external_lex_state = 5}, - [5311] = {.lex_state = 96, .external_lex_state = 2}, - [5312] = {.lex_state = 96, .external_lex_state = 5}, - [5313] = {.lex_state = 96, .external_lex_state = 2}, - [5314] = {.lex_state = 96, .external_lex_state = 2}, - [5315] = {.lex_state = 96, .external_lex_state = 2}, - [5316] = {.lex_state = 96, .external_lex_state = 2}, - [5317] = {.lex_state = 96, .external_lex_state = 2}, - [5318] = {.lex_state = 96, .external_lex_state = 2}, - [5319] = {.lex_state = 96, .external_lex_state = 2}, - [5320] = {.lex_state = 96, .external_lex_state = 2}, - [5321] = {.lex_state = 96, .external_lex_state = 2}, - [5322] = {.lex_state = 96, .external_lex_state = 2}, - [5323] = {.lex_state = 96, .external_lex_state = 2}, - [5324] = {.lex_state = 96, .external_lex_state = 2}, - [5325] = {.lex_state = 96, .external_lex_state = 2}, - [5326] = {.lex_state = 96, .external_lex_state = 2}, - [5327] = {.lex_state = 96, .external_lex_state = 2}, - [5328] = {.lex_state = 96, .external_lex_state = 2}, - [5329] = {.lex_state = 96, .external_lex_state = 2}, - [5330] = {.lex_state = 96, .external_lex_state = 2}, - [5331] = {.lex_state = 96, .external_lex_state = 2}, - [5332] = {.lex_state = 96, .external_lex_state = 2}, - [5333] = {.lex_state = 96, .external_lex_state = 2}, - [5334] = {.lex_state = 96, .external_lex_state = 2}, - [5335] = {.lex_state = 96, .external_lex_state = 2}, - [5336] = {.lex_state = 96, .external_lex_state = 2}, - [5337] = {.lex_state = 96, .external_lex_state = 2}, - [5338] = {.lex_state = 96, .external_lex_state = 2}, - [5339] = {.lex_state = 96, .external_lex_state = 2}, - [5340] = {.lex_state = 96, .external_lex_state = 2}, - [5341] = {.lex_state = 96, .external_lex_state = 5}, - [5342] = {.lex_state = 96, .external_lex_state = 2}, - [5343] = {.lex_state = 96, .external_lex_state = 2}, - [5344] = {.lex_state = 96, .external_lex_state = 5}, - [5345] = {.lex_state = 96, .external_lex_state = 5}, - [5346] = {.lex_state = 96, .external_lex_state = 2}, - [5347] = {.lex_state = 96, .external_lex_state = 2}, - [5348] = {.lex_state = 96, .external_lex_state = 2}, - [5349] = {.lex_state = 96, .external_lex_state = 2}, - [5350] = {.lex_state = 96, .external_lex_state = 2}, - [5351] = {.lex_state = 96, .external_lex_state = 2}, - [5352] = {.lex_state = 96, .external_lex_state = 2}, - [5353] = {.lex_state = 96, .external_lex_state = 2}, - [5354] = {.lex_state = 96, .external_lex_state = 2}, - [5355] = {.lex_state = 96, .external_lex_state = 2}, - [5356] = {.lex_state = 96, .external_lex_state = 2}, - [5357] = {.lex_state = 96, .external_lex_state = 2}, - [5358] = {.lex_state = 96, .external_lex_state = 2}, - [5359] = {.lex_state = 96, .external_lex_state = 2}, - [5360] = {.lex_state = 96, .external_lex_state = 2}, - [5361] = {.lex_state = 96, .external_lex_state = 2}, - [5362] = {.lex_state = 96, .external_lex_state = 2}, - [5363] = {.lex_state = 96, .external_lex_state = 2}, - [5364] = {.lex_state = 96, .external_lex_state = 2}, - [5365] = {.lex_state = 96, .external_lex_state = 2}, - [5366] = {.lex_state = 96, .external_lex_state = 2}, - [5367] = {.lex_state = 96, .external_lex_state = 2}, - [5368] = {.lex_state = 96, .external_lex_state = 2}, - [5369] = {.lex_state = 96, .external_lex_state = 2}, - [5370] = {.lex_state = 96, .external_lex_state = 2}, - [5371] = {.lex_state = 96, .external_lex_state = 2}, - [5372] = {.lex_state = 96, .external_lex_state = 2}, - [5373] = {.lex_state = 96, .external_lex_state = 2}, - [5374] = {.lex_state = 96, .external_lex_state = 2}, - [5375] = {.lex_state = 96, .external_lex_state = 2}, - [5376] = {.lex_state = 96, .external_lex_state = 2}, - [5377] = {.lex_state = 96, .external_lex_state = 5}, - [5378] = {.lex_state = 96, .external_lex_state = 2}, - [5379] = {.lex_state = 96, .external_lex_state = 2}, - [5380] = {.lex_state = 96, .external_lex_state = 2}, - [5381] = {.lex_state = 96, .external_lex_state = 2}, - [5382] = {.lex_state = 96, .external_lex_state = 2}, - [5383] = {.lex_state = 96, .external_lex_state = 2}, - [5384] = {.lex_state = 96, .external_lex_state = 2}, - [5385] = {.lex_state = 96, .external_lex_state = 2}, - [5386] = {.lex_state = 96, .external_lex_state = 2}, - [5387] = {.lex_state = 96, .external_lex_state = 2}, - [5388] = {.lex_state = 96, .external_lex_state = 2}, - [5389] = {.lex_state = 96, .external_lex_state = 2}, - [5390] = {.lex_state = 96, .external_lex_state = 2}, - [5391] = {.lex_state = 96, .external_lex_state = 2}, - [5392] = {.lex_state = 96, .external_lex_state = 2}, - [5393] = {.lex_state = 96, .external_lex_state = 2}, - [5394] = {.lex_state = 96, .external_lex_state = 2}, - [5395] = {.lex_state = 96, .external_lex_state = 2}, - [5396] = {.lex_state = 96, .external_lex_state = 2}, - [5397] = {.lex_state = 96, .external_lex_state = 2}, - [5398] = {.lex_state = 96, .external_lex_state = 2}, - [5399] = {.lex_state = 96, .external_lex_state = 2}, - [5400] = {.lex_state = 96, .external_lex_state = 2}, - [5401] = {.lex_state = 96, .external_lex_state = 2}, - [5402] = {.lex_state = 96, .external_lex_state = 2}, - [5403] = {.lex_state = 96, .external_lex_state = 2}, - [5404] = {.lex_state = 96, .external_lex_state = 5}, - [5405] = {.lex_state = 96, .external_lex_state = 2}, - [5406] = {.lex_state = 96, .external_lex_state = 2}, - [5407] = {.lex_state = 96, .external_lex_state = 2}, - [5408] = {.lex_state = 96, .external_lex_state = 2}, - [5409] = {.lex_state = 96, .external_lex_state = 2}, - [5410] = {.lex_state = 96, .external_lex_state = 2}, - [5411] = {.lex_state = 96, .external_lex_state = 2}, - [5412] = {.lex_state = 96, .external_lex_state = 2}, - [5413] = {.lex_state = 96, .external_lex_state = 2}, - [5414] = {.lex_state = 96, .external_lex_state = 2}, - [5415] = {.lex_state = 96, .external_lex_state = 2}, - [5416] = {.lex_state = 96, .external_lex_state = 2}, - [5417] = {.lex_state = 96, .external_lex_state = 2}, - [5418] = {.lex_state = 96, .external_lex_state = 2}, - [5419] = {.lex_state = 96, .external_lex_state = 5}, - [5420] = {.lex_state = 96, .external_lex_state = 2}, - [5421] = {.lex_state = 96, .external_lex_state = 2}, - [5422] = {.lex_state = 96, .external_lex_state = 2}, - [5423] = {.lex_state = 96, .external_lex_state = 2}, - [5424] = {.lex_state = 96, .external_lex_state = 2}, - [5425] = {.lex_state = 96, .external_lex_state = 2}, - [5426] = {.lex_state = 96, .external_lex_state = 2}, - [5427] = {.lex_state = 96, .external_lex_state = 5}, - [5428] = {.lex_state = 96, .external_lex_state = 2}, - [5429] = {.lex_state = 96, .external_lex_state = 2}, - [5430] = {.lex_state = 96, .external_lex_state = 2}, - [5431] = {.lex_state = 96, .external_lex_state = 2}, - [5432] = {.lex_state = 96, .external_lex_state = 2}, - [5433] = {.lex_state = 96, .external_lex_state = 5}, - [5434] = {.lex_state = 96, .external_lex_state = 2}, - [5435] = {.lex_state = 96, .external_lex_state = 2}, - [5436] = {.lex_state = 96, .external_lex_state = 2}, - [5437] = {.lex_state = 96, .external_lex_state = 2}, - [5438] = {.lex_state = 96, .external_lex_state = 2}, - [5439] = {.lex_state = 96, .external_lex_state = 2}, - [5440] = {.lex_state = 96, .external_lex_state = 2}, - [5441] = {.lex_state = 96, .external_lex_state = 2}, - [5442] = {.lex_state = 96, .external_lex_state = 2}, - [5443] = {.lex_state = 96, .external_lex_state = 5}, - [5444] = {.lex_state = 96, .external_lex_state = 2}, - [5445] = {.lex_state = 96, .external_lex_state = 2}, - [5446] = {.lex_state = 96, .external_lex_state = 2}, - [5447] = {.lex_state = 96, .external_lex_state = 2}, - [5448] = {.lex_state = 96, .external_lex_state = 5}, - [5449] = {.lex_state = 96, .external_lex_state = 2}, - [5450] = {.lex_state = 96, .external_lex_state = 2}, - [5451] = {.lex_state = 96, .external_lex_state = 2}, - [5452] = {.lex_state = 96, .external_lex_state = 2}, - [5453] = {.lex_state = 96, .external_lex_state = 2}, - [5454] = {.lex_state = 96, .external_lex_state = 2}, - [5455] = {.lex_state = 96, .external_lex_state = 2}, - [5456] = {.lex_state = 96, .external_lex_state = 2}, - [5457] = {.lex_state = 96, .external_lex_state = 2}, - [5458] = {.lex_state = 96, .external_lex_state = 2}, - [5459] = {.lex_state = 96, .external_lex_state = 2}, - [5460] = {.lex_state = 96, .external_lex_state = 2}, - [5461] = {.lex_state = 96, .external_lex_state = 2}, - [5462] = {.lex_state = 96, .external_lex_state = 2}, - [5463] = {.lex_state = 96, .external_lex_state = 2}, - [5464] = {.lex_state = 96, .external_lex_state = 2}, - [5465] = {.lex_state = 96, .external_lex_state = 2}, - [5466] = {.lex_state = 96, .external_lex_state = 2}, - [5467] = {.lex_state = 96, .external_lex_state = 2}, - [5468] = {.lex_state = 96, .external_lex_state = 2}, - [5469] = {.lex_state = 96, .external_lex_state = 2}, - [5470] = {.lex_state = 96, .external_lex_state = 2}, - [5471] = {.lex_state = 96, .external_lex_state = 2}, - [5472] = {.lex_state = 96, .external_lex_state = 2}, - [5473] = {.lex_state = 96, .external_lex_state = 2}, - [5474] = {.lex_state = 96, .external_lex_state = 2}, - [5475] = {.lex_state = 96, .external_lex_state = 5}, - [5476] = {.lex_state = 96, .external_lex_state = 2}, - [5477] = {.lex_state = 96, .external_lex_state = 2}, - [5478] = {.lex_state = 96, .external_lex_state = 2}, - [5479] = {.lex_state = 96, .external_lex_state = 2}, - [5480] = {.lex_state = 96, .external_lex_state = 2}, - [5481] = {.lex_state = 96, .external_lex_state = 2}, - [5482] = {.lex_state = 96, .external_lex_state = 2}, - [5483] = {.lex_state = 96, .external_lex_state = 2}, - [5484] = {.lex_state = 96, .external_lex_state = 2}, - [5485] = {.lex_state = 96, .external_lex_state = 2}, - [5486] = {.lex_state = 2, .external_lex_state = 10}, - [5487] = {.lex_state = 96, .external_lex_state = 2}, - [5488] = {.lex_state = 96, .external_lex_state = 2}, - [5489] = {.lex_state = 96, .external_lex_state = 2}, - [5490] = {.lex_state = 96, .external_lex_state = 2}, - [5491] = {.lex_state = 96, .external_lex_state = 2}, - [5492] = {.lex_state = 96, .external_lex_state = 2}, - [5493] = {.lex_state = 96, .external_lex_state = 2}, - [5494] = {.lex_state = 96, .external_lex_state = 2}, - [5495] = {.lex_state = 96, .external_lex_state = 2}, - [5496] = {.lex_state = 2, .external_lex_state = 10}, - [5497] = {.lex_state = 96, .external_lex_state = 2}, - [5498] = {.lex_state = 96, .external_lex_state = 2}, - [5499] = {.lex_state = 96, .external_lex_state = 2}, - [5500] = {.lex_state = 96, .external_lex_state = 2}, - [5501] = {.lex_state = 96, .external_lex_state = 2}, - [5502] = {.lex_state = 96, .external_lex_state = 2}, - [5503] = {.lex_state = 96, .external_lex_state = 2}, - [5504] = {.lex_state = 96, .external_lex_state = 2}, - [5505] = {.lex_state = 96, .external_lex_state = 2}, - [5506] = {.lex_state = 96, .external_lex_state = 2}, - [5507] = {.lex_state = 96, .external_lex_state = 2}, - [5508] = {.lex_state = 96, .external_lex_state = 2}, - [5509] = {.lex_state = 96, .external_lex_state = 2}, - [5510] = {.lex_state = 96, .external_lex_state = 2}, - [5511] = {.lex_state = 96, .external_lex_state = 2}, - [5512] = {.lex_state = 96, .external_lex_state = 2}, - [5513] = {.lex_state = 96, .external_lex_state = 2}, - [5514] = {.lex_state = 96, .external_lex_state = 2}, - [5515] = {.lex_state = 96, .external_lex_state = 2}, - [5516] = {.lex_state = 96, .external_lex_state = 2}, - [5517] = {.lex_state = 2, .external_lex_state = 10}, - [5518] = {.lex_state = 96, .external_lex_state = 2}, - [5519] = {.lex_state = 96, .external_lex_state = 2}, - [5520] = {.lex_state = 96, .external_lex_state = 2}, - [5521] = {.lex_state = 96, .external_lex_state = 2}, - [5522] = {.lex_state = 96, .external_lex_state = 2}, - [5523] = {.lex_state = 96, .external_lex_state = 2}, - [5524] = {.lex_state = 96, .external_lex_state = 2}, - [5525] = {.lex_state = 96, .external_lex_state = 2}, - [5526] = {.lex_state = 96, .external_lex_state = 2}, - [5527] = {.lex_state = 96, .external_lex_state = 2}, - [5528] = {.lex_state = 96, .external_lex_state = 2}, - [5529] = {.lex_state = 96, .external_lex_state = 2}, - [5530] = {.lex_state = 96, .external_lex_state = 2}, - [5531] = {.lex_state = 96, .external_lex_state = 2}, - [5532] = {.lex_state = 96, .external_lex_state = 2}, - [5533] = {.lex_state = 96, .external_lex_state = 2}, - [5534] = {.lex_state = 96, .external_lex_state = 2}, - [5535] = {.lex_state = 96, .external_lex_state = 2}, - [5536] = {.lex_state = 96, .external_lex_state = 2}, - [5537] = {.lex_state = 96, .external_lex_state = 2}, - [5538] = {.lex_state = 96, .external_lex_state = 2}, - [5539] = {.lex_state = 96, .external_lex_state = 2}, - [5540] = {.lex_state = 96, .external_lex_state = 2}, - [5541] = {.lex_state = 96, .external_lex_state = 2}, - [5542] = {.lex_state = 96, .external_lex_state = 2}, - [5543] = {.lex_state = 96, .external_lex_state = 2}, - [5544] = {.lex_state = 96, .external_lex_state = 2}, - [5545] = {.lex_state = 96, .external_lex_state = 2}, - [5546] = {.lex_state = 96, .external_lex_state = 2}, - [5547] = {.lex_state = 96, .external_lex_state = 2}, - [5548] = {.lex_state = 96, .external_lex_state = 2}, - [5549] = {.lex_state = 96, .external_lex_state = 2}, - [5550] = {.lex_state = 96, .external_lex_state = 2}, - [5551] = {.lex_state = 96, .external_lex_state = 2}, - [5552] = {.lex_state = 96, .external_lex_state = 2}, - [5553] = {.lex_state = 96, .external_lex_state = 2}, - [5554] = {.lex_state = 96, .external_lex_state = 2}, - [5555] = {.lex_state = 96, .external_lex_state = 2}, - [5556] = {.lex_state = 96, .external_lex_state = 2}, - [5557] = {.lex_state = 96, .external_lex_state = 2}, - [5558] = {.lex_state = 96, .external_lex_state = 2}, - [5559] = {.lex_state = 96, .external_lex_state = 2}, - [5560] = {.lex_state = 96, .external_lex_state = 2}, - [5561] = {.lex_state = 96, .external_lex_state = 2}, - [5562] = {.lex_state = 96, .external_lex_state = 2}, - [5563] = {.lex_state = 96, .external_lex_state = 2}, - [5564] = {.lex_state = 96, .external_lex_state = 2}, - [5565] = {.lex_state = 96, .external_lex_state = 2}, - [5566] = {.lex_state = 96, .external_lex_state = 2}, - [5567] = {.lex_state = 96, .external_lex_state = 2}, - [5568] = {.lex_state = 96, .external_lex_state = 2}, - [5569] = {.lex_state = 96, .external_lex_state = 2}, - [5570] = {.lex_state = 96, .external_lex_state = 2}, - [5571] = {.lex_state = 96, .external_lex_state = 2}, - [5572] = {.lex_state = 96, .external_lex_state = 2}, - [5573] = {.lex_state = 96, .external_lex_state = 2}, - [5574] = {.lex_state = 96, .external_lex_state = 2}, - [5575] = {.lex_state = 96, .external_lex_state = 2}, - [5576] = {.lex_state = 96, .external_lex_state = 2}, - [5577] = {.lex_state = 96, .external_lex_state = 2}, - [5578] = {.lex_state = 96, .external_lex_state = 2}, - [5579] = {.lex_state = 96, .external_lex_state = 2}, - [5580] = {.lex_state = 96, .external_lex_state = 2}, - [5581] = {.lex_state = 28, .external_lex_state = 2}, - [5582] = {.lex_state = 96, .external_lex_state = 2}, - [5583] = {.lex_state = 96, .external_lex_state = 2}, - [5584] = {.lex_state = 96, .external_lex_state = 2}, - [5585] = {.lex_state = 96, .external_lex_state = 2}, - [5586] = {.lex_state = 96, .external_lex_state = 2}, - [5587] = {.lex_state = 96, .external_lex_state = 2}, - [5588] = {.lex_state = 96, .external_lex_state = 2}, - [5589] = {.lex_state = 96, .external_lex_state = 2}, - [5590] = {.lex_state = 96, .external_lex_state = 2}, - [5591] = {.lex_state = 96, .external_lex_state = 2}, - [5592] = {.lex_state = 96, .external_lex_state = 2}, - [5593] = {.lex_state = 96, .external_lex_state = 2}, - [5594] = {.lex_state = 96, .external_lex_state = 2}, - [5595] = {.lex_state = 96, .external_lex_state = 2}, - [5596] = {.lex_state = 96, .external_lex_state = 2}, - [5597] = {.lex_state = 96, .external_lex_state = 2}, - [5598] = {.lex_state = 96, .external_lex_state = 2}, - [5599] = {.lex_state = 96, .external_lex_state = 2}, - [5600] = {.lex_state = 96, .external_lex_state = 2}, - [5601] = {.lex_state = 96, .external_lex_state = 2}, - [5602] = {.lex_state = 96, .external_lex_state = 2}, - [5603] = {.lex_state = 96, .external_lex_state = 2}, - [5604] = {.lex_state = 96, .external_lex_state = 2}, - [5605] = {.lex_state = 96, .external_lex_state = 2}, - [5606] = {.lex_state = 96, .external_lex_state = 2}, - [5607] = {.lex_state = 96, .external_lex_state = 2}, - [5608] = {.lex_state = 96, .external_lex_state = 2}, - [5609] = {.lex_state = 96, .external_lex_state = 2}, - [5610] = {.lex_state = 96, .external_lex_state = 2}, - [5611] = {.lex_state = 28, .external_lex_state = 2}, - [5612] = {.lex_state = 96, .external_lex_state = 2}, - [5613] = {.lex_state = 96, .external_lex_state = 2}, - [5614] = {.lex_state = 96, .external_lex_state = 2}, - [5615] = {.lex_state = 96, .external_lex_state = 2}, - [5616] = {.lex_state = 96, .external_lex_state = 2}, - [5617] = {.lex_state = 96, .external_lex_state = 2}, - [5618] = {.lex_state = 96, .external_lex_state = 2}, - [5619] = {.lex_state = 96, .external_lex_state = 2}, - [5620] = {.lex_state = 96, .external_lex_state = 2}, - [5621] = {.lex_state = 96, .external_lex_state = 2}, - [5622] = {.lex_state = 96, .external_lex_state = 2}, - [5623] = {.lex_state = 96, .external_lex_state = 2}, - [5624] = {.lex_state = 96, .external_lex_state = 2}, - [5625] = {.lex_state = 96, .external_lex_state = 2}, - [5626] = {.lex_state = 2, .external_lex_state = 10}, - [5627] = {.lex_state = 96, .external_lex_state = 2}, - [5628] = {.lex_state = 96, .external_lex_state = 2}, - [5629] = {.lex_state = 96, .external_lex_state = 2}, - [5630] = {.lex_state = 96, .external_lex_state = 2}, - [5631] = {.lex_state = 96, .external_lex_state = 2}, - [5632] = {.lex_state = 96, .external_lex_state = 2}, - [5633] = {.lex_state = 96, .external_lex_state = 2}, - [5634] = {.lex_state = 96, .external_lex_state = 2}, - [5635] = {.lex_state = 96, .external_lex_state = 2}, - [5636] = {.lex_state = 96, .external_lex_state = 2}, - [5637] = {.lex_state = 96, .external_lex_state = 2}, - [5638] = {.lex_state = 96, .external_lex_state = 2}, - [5639] = {.lex_state = 96, .external_lex_state = 2}, - [5640] = {.lex_state = 96, .external_lex_state = 2}, - [5641] = {.lex_state = 96, .external_lex_state = 2}, - [5642] = {.lex_state = 96, .external_lex_state = 2}, - [5643] = {.lex_state = 96, .external_lex_state = 2}, - [5644] = {.lex_state = 96, .external_lex_state = 2}, - [5645] = {.lex_state = 96, .external_lex_state = 2}, - [5646] = {.lex_state = 96, .external_lex_state = 2}, - [5647] = {.lex_state = 96, .external_lex_state = 2}, - [5648] = {.lex_state = 96, .external_lex_state = 2}, - [5649] = {.lex_state = 96, .external_lex_state = 2}, - [5650] = {.lex_state = 96, .external_lex_state = 2}, - [5651] = {.lex_state = 96, .external_lex_state = 2}, - [5652] = {.lex_state = 96, .external_lex_state = 2}, - [5653] = {.lex_state = 96, .external_lex_state = 2}, - [5654] = {.lex_state = 96, .external_lex_state = 2}, - [5655] = {.lex_state = 96, .external_lex_state = 2}, - [5656] = {.lex_state = 96, .external_lex_state = 2}, - [5657] = {.lex_state = 96, .external_lex_state = 2}, - [5658] = {.lex_state = 96, .external_lex_state = 2}, - [5659] = {.lex_state = 96, .external_lex_state = 2}, - [5660] = {.lex_state = 96, .external_lex_state = 2}, - [5661] = {.lex_state = 96, .external_lex_state = 2}, - [5662] = {.lex_state = 96, .external_lex_state = 2}, - [5663] = {.lex_state = 96, .external_lex_state = 2}, - [5664] = {.lex_state = 96, .external_lex_state = 2}, - [5665] = {.lex_state = 96, .external_lex_state = 2}, - [5666] = {.lex_state = 96, .external_lex_state = 2}, - [5667] = {.lex_state = 96, .external_lex_state = 2}, - [5668] = {.lex_state = 28, .external_lex_state = 2}, - [5669] = {.lex_state = 28, .external_lex_state = 2}, - [5670] = {.lex_state = 96, .external_lex_state = 2}, - [5671] = {.lex_state = 2, .external_lex_state = 10}, - [5672] = {.lex_state = 96, .external_lex_state = 2}, - [5673] = {.lex_state = 96, .external_lex_state = 2}, - [5674] = {.lex_state = 96, .external_lex_state = 2}, - [5675] = {.lex_state = 96, .external_lex_state = 2}, - [5676] = {.lex_state = 96, .external_lex_state = 2}, - [5677] = {.lex_state = 96, .external_lex_state = 2}, - [5678] = {.lex_state = 96, .external_lex_state = 2}, - [5679] = {.lex_state = 96, .external_lex_state = 2}, - [5680] = {.lex_state = 96, .external_lex_state = 2}, - [5681] = {.lex_state = 96, .external_lex_state = 2}, - [5682] = {.lex_state = 96, .external_lex_state = 2}, - [5683] = {.lex_state = 96, .external_lex_state = 2}, - [5684] = {.lex_state = 96, .external_lex_state = 2}, - [5685] = {.lex_state = 96, .external_lex_state = 2}, - [5686] = {.lex_state = 96, .external_lex_state = 2}, - [5687] = {.lex_state = 96, .external_lex_state = 2}, - [5688] = {.lex_state = 96, .external_lex_state = 2}, - [5689] = {.lex_state = 96, .external_lex_state = 2}, - [5690] = {.lex_state = 96, .external_lex_state = 2}, - [5691] = {.lex_state = 96, .external_lex_state = 2}, - [5692] = {.lex_state = 96, .external_lex_state = 2}, - [5693] = {.lex_state = 96, .external_lex_state = 2}, - [5694] = {.lex_state = 96, .external_lex_state = 2}, - [5695] = {.lex_state = 96, .external_lex_state = 2}, - [5696] = {.lex_state = 96, .external_lex_state = 2}, - [5697] = {.lex_state = 96, .external_lex_state = 2}, - [5698] = {.lex_state = 96, .external_lex_state = 2}, - [5699] = {.lex_state = 96, .external_lex_state = 2}, - [5700] = {.lex_state = 96, .external_lex_state = 2}, - [5701] = {.lex_state = 96, .external_lex_state = 2}, - [5702] = {.lex_state = 96, .external_lex_state = 2}, - [5703] = {.lex_state = 96, .external_lex_state = 2}, - [5704] = {.lex_state = 96, .external_lex_state = 2}, - [5705] = {.lex_state = 96, .external_lex_state = 2}, - [5706] = {.lex_state = 96, .external_lex_state = 2}, - [5707] = {.lex_state = 96, .external_lex_state = 2}, - [5708] = {.lex_state = 96, .external_lex_state = 2}, - [5709] = {.lex_state = 96, .external_lex_state = 2}, - [5710] = {.lex_state = 96, .external_lex_state = 2}, - [5711] = {.lex_state = 96, .external_lex_state = 2}, - [5712] = {.lex_state = 96, .external_lex_state = 2}, - [5713] = {.lex_state = 96, .external_lex_state = 2}, - [5714] = {.lex_state = 96, .external_lex_state = 2}, - [5715] = {.lex_state = 96, .external_lex_state = 2}, - [5716] = {.lex_state = 96, .external_lex_state = 2}, - [5717] = {.lex_state = 96, .external_lex_state = 2}, - [5718] = {.lex_state = 96, .external_lex_state = 2}, - [5719] = {.lex_state = 96, .external_lex_state = 2}, - [5720] = {.lex_state = 96, .external_lex_state = 2}, - [5721] = {.lex_state = 96, .external_lex_state = 2}, - [5722] = {.lex_state = 96, .external_lex_state = 2}, - [5723] = {.lex_state = 96, .external_lex_state = 2}, - [5724] = {.lex_state = 96, .external_lex_state = 2}, - [5725] = {.lex_state = 96, .external_lex_state = 2}, - [5726] = {.lex_state = 96, .external_lex_state = 2}, - [5727] = {.lex_state = 96, .external_lex_state = 2}, - [5728] = {.lex_state = 96, .external_lex_state = 2}, - [5729] = {.lex_state = 96, .external_lex_state = 2}, - [5730] = {.lex_state = 96, .external_lex_state = 2}, - [5731] = {.lex_state = 96, .external_lex_state = 2}, - [5732] = {.lex_state = 96, .external_lex_state = 2}, - [5733] = {.lex_state = 96, .external_lex_state = 2}, - [5734] = {.lex_state = 96, .external_lex_state = 2}, - [5735] = {.lex_state = 96, .external_lex_state = 2}, - [5736] = {.lex_state = 96, .external_lex_state = 2}, - [5737] = {.lex_state = 96, .external_lex_state = 2}, - [5738] = {.lex_state = 96, .external_lex_state = 2}, - [5739] = {.lex_state = 96, .external_lex_state = 2}, - [5740] = {.lex_state = 96, .external_lex_state = 2}, - [5741] = {.lex_state = 96, .external_lex_state = 2}, - [5742] = {.lex_state = 96, .external_lex_state = 2}, - [5743] = {.lex_state = 96, .external_lex_state = 2}, - [5744] = {.lex_state = 96, .external_lex_state = 2}, - [5745] = {.lex_state = 96, .external_lex_state = 2}, - [5746] = {.lex_state = 96, .external_lex_state = 2}, - [5747] = {.lex_state = 96, .external_lex_state = 2}, - [5748] = {.lex_state = 96, .external_lex_state = 2}, - [5749] = {.lex_state = 96, .external_lex_state = 2}, - [5750] = {.lex_state = 96, .external_lex_state = 2}, - [5751] = {.lex_state = 96, .external_lex_state = 2}, - [5752] = {.lex_state = 96, .external_lex_state = 2}, - [5753] = {.lex_state = 96, .external_lex_state = 2}, - [5754] = {.lex_state = 96, .external_lex_state = 2}, - [5755] = {.lex_state = 96, .external_lex_state = 2}, - [5756] = {.lex_state = 96, .external_lex_state = 2}, - [5757] = {.lex_state = 96, .external_lex_state = 2}, - [5758] = {.lex_state = 96, .external_lex_state = 2}, - [5759] = {.lex_state = 96, .external_lex_state = 2}, - [5760] = {.lex_state = 96, .external_lex_state = 2}, - [5761] = {.lex_state = 96, .external_lex_state = 2}, - [5762] = {.lex_state = 96, .external_lex_state = 2}, - [5763] = {.lex_state = 96, .external_lex_state = 2}, - [5764] = {.lex_state = 96, .external_lex_state = 2}, - [5765] = {.lex_state = 96, .external_lex_state = 2}, - [5766] = {.lex_state = 96, .external_lex_state = 2}, - [5767] = {.lex_state = 96, .external_lex_state = 2}, - [5768] = {.lex_state = 96, .external_lex_state = 2}, - [5769] = {.lex_state = 96, .external_lex_state = 2}, - [5770] = {.lex_state = 96, .external_lex_state = 2}, - [5771] = {.lex_state = 96, .external_lex_state = 2}, - [5772] = {.lex_state = 96, .external_lex_state = 2}, - [5773] = {.lex_state = 96, .external_lex_state = 2}, - [5774] = {.lex_state = 96, .external_lex_state = 2}, - [5775] = {.lex_state = 96, .external_lex_state = 2}, - [5776] = {.lex_state = 96, .external_lex_state = 2}, - [5777] = {.lex_state = 96, .external_lex_state = 2}, - [5778] = {.lex_state = 96, .external_lex_state = 2}, - [5779] = {.lex_state = 96, .external_lex_state = 2}, - [5780] = {.lex_state = 96, .external_lex_state = 2}, - [5781] = {.lex_state = 96, .external_lex_state = 2}, - [5782] = {.lex_state = 96, .external_lex_state = 2}, - [5783] = {.lex_state = 96, .external_lex_state = 2}, - [5784] = {.lex_state = 96, .external_lex_state = 2}, - [5785] = {.lex_state = 96, .external_lex_state = 2}, - [5786] = {.lex_state = 96, .external_lex_state = 2}, - [5787] = {.lex_state = 96, .external_lex_state = 2}, - [5788] = {.lex_state = 96, .external_lex_state = 2}, - [5789] = {.lex_state = 96, .external_lex_state = 2}, - [5790] = {.lex_state = 96, .external_lex_state = 2}, - [5791] = {.lex_state = 96, .external_lex_state = 2}, - [5792] = {.lex_state = 96, .external_lex_state = 2}, - [5793] = {.lex_state = 96, .external_lex_state = 2}, - [5794] = {.lex_state = 96, .external_lex_state = 2}, - [5795] = {.lex_state = 96, .external_lex_state = 2}, - [5796] = {.lex_state = 96, .external_lex_state = 2}, - [5797] = {.lex_state = 96, .external_lex_state = 2}, - [5798] = {.lex_state = 96, .external_lex_state = 2}, - [5799] = {.lex_state = 96, .external_lex_state = 2}, - [5800] = {.lex_state = 96, .external_lex_state = 2}, - [5801] = {.lex_state = 96, .external_lex_state = 2}, - [5802] = {.lex_state = 96, .external_lex_state = 2}, - [5803] = {.lex_state = 96, .external_lex_state = 2}, - [5804] = {.lex_state = 96, .external_lex_state = 2}, - [5805] = {.lex_state = 96, .external_lex_state = 2}, - [5806] = {.lex_state = 96, .external_lex_state = 2}, - [5807] = {.lex_state = 96, .external_lex_state = 2}, - [5808] = {.lex_state = 96, .external_lex_state = 2}, - [5809] = {.lex_state = 96, .external_lex_state = 2}, - [5810] = {.lex_state = 96, .external_lex_state = 2}, - [5811] = {.lex_state = 96, .external_lex_state = 2}, - [5812] = {.lex_state = 96, .external_lex_state = 2}, - [5813] = {.lex_state = 96, .external_lex_state = 2}, - [5814] = {.lex_state = 96, .external_lex_state = 2}, - [5815] = {.lex_state = 96, .external_lex_state = 2}, - [5816] = {.lex_state = 96, .external_lex_state = 2}, - [5817] = {.lex_state = 96, .external_lex_state = 2}, - [5818] = {.lex_state = 96, .external_lex_state = 2}, - [5819] = {.lex_state = 96, .external_lex_state = 2}, - [5820] = {.lex_state = 96, .external_lex_state = 2}, - [5821] = {.lex_state = 96, .external_lex_state = 2}, - [5822] = {.lex_state = 96, .external_lex_state = 2}, - [5823] = {.lex_state = 96, .external_lex_state = 2}, - [5824] = {.lex_state = 96, .external_lex_state = 2}, - [5825] = {.lex_state = 96, .external_lex_state = 2}, - [5826] = {.lex_state = 96, .external_lex_state = 2}, - [5827] = {.lex_state = 96, .external_lex_state = 2}, - [5828] = {.lex_state = 96, .external_lex_state = 2}, - [5829] = {.lex_state = 96, .external_lex_state = 2}, - [5830] = {.lex_state = 96, .external_lex_state = 2}, - [5831] = {.lex_state = 96, .external_lex_state = 2}, - [5832] = {.lex_state = 96, .external_lex_state = 2}, - [5833] = {.lex_state = 96, .external_lex_state = 2}, - [5834] = {.lex_state = 28, .external_lex_state = 2}, - [5835] = {.lex_state = 96, .external_lex_state = 2}, - [5836] = {.lex_state = 96, .external_lex_state = 2}, - [5837] = {.lex_state = 96, .external_lex_state = 2}, - [5838] = {.lex_state = 96, .external_lex_state = 2}, - [5839] = {.lex_state = 96, .external_lex_state = 2}, - [5840] = {.lex_state = 96, .external_lex_state = 2}, - [5841] = {.lex_state = 96, .external_lex_state = 2}, - [5842] = {.lex_state = 96, .external_lex_state = 2}, - [5843] = {.lex_state = 96, .external_lex_state = 2}, - [5844] = {.lex_state = 96, .external_lex_state = 2}, - [5845] = {.lex_state = 96, .external_lex_state = 2}, - [5846] = {.lex_state = 96, .external_lex_state = 2}, - [5847] = {.lex_state = 96, .external_lex_state = 2}, - [5848] = {.lex_state = 96, .external_lex_state = 2}, - [5849] = {.lex_state = 96, .external_lex_state = 2}, - [5850] = {.lex_state = 96, .external_lex_state = 2}, - [5851] = {.lex_state = 96, .external_lex_state = 2}, - [5852] = {.lex_state = 96, .external_lex_state = 2}, - [5853] = {.lex_state = 96, .external_lex_state = 2}, - [5854] = {.lex_state = 96, .external_lex_state = 2}, - [5855] = {.lex_state = 96, .external_lex_state = 2}, - [5856] = {.lex_state = 96, .external_lex_state = 2}, - [5857] = {.lex_state = 96, .external_lex_state = 2}, - [5858] = {.lex_state = 96, .external_lex_state = 2}, - [5859] = {.lex_state = 96, .external_lex_state = 2}, - [5860] = {.lex_state = 96, .external_lex_state = 2}, - [5861] = {.lex_state = 96, .external_lex_state = 2}, - [5862] = {.lex_state = 96, .external_lex_state = 2}, - [5863] = {.lex_state = 96, .external_lex_state = 2}, - [5864] = {.lex_state = 96, .external_lex_state = 2}, - [5865] = {.lex_state = 96, .external_lex_state = 2}, - [5866] = {.lex_state = 96, .external_lex_state = 2}, - [5867] = {.lex_state = 96, .external_lex_state = 2}, - [5868] = {.lex_state = 96, .external_lex_state = 2}, - [5869] = {.lex_state = 96, .external_lex_state = 2}, - [5870] = {.lex_state = 96, .external_lex_state = 2}, - [5871] = {.lex_state = 96, .external_lex_state = 2}, - [5872] = {.lex_state = 96, .external_lex_state = 2}, - [5873] = {.lex_state = 96, .external_lex_state = 2}, - [5874] = {.lex_state = 96, .external_lex_state = 2}, - [5875] = {.lex_state = 96, .external_lex_state = 2}, - [5876] = {.lex_state = 96, .external_lex_state = 2}, - [5877] = {.lex_state = 96, .external_lex_state = 2}, - [5878] = {.lex_state = 96, .external_lex_state = 2}, - [5879] = {.lex_state = 96, .external_lex_state = 2}, - [5880] = {.lex_state = 96, .external_lex_state = 2}, - [5881] = {.lex_state = 96, .external_lex_state = 2}, + [150] = {.lex_state = 8, .external_lex_state = 2}, + [151] = {.lex_state = 8, .external_lex_state = 2}, + [152] = {.lex_state = 8, .external_lex_state = 2}, + [153] = {.lex_state = 8, .external_lex_state = 2}, + [154] = {.lex_state = 8, .external_lex_state = 2}, + [155] = {.lex_state = 8, .external_lex_state = 2}, + [156] = {.lex_state = 8, .external_lex_state = 2}, + [157] = {.lex_state = 8, .external_lex_state = 2}, + [158] = {.lex_state = 8, .external_lex_state = 2}, + [159] = {.lex_state = 8, .external_lex_state = 2}, + [160] = {.lex_state = 8, .external_lex_state = 2}, + [161] = {.lex_state = 8, .external_lex_state = 2}, + [162] = {.lex_state = 8, .external_lex_state = 2}, + [163] = {.lex_state = 74, .external_lex_state = 3}, + [164] = {.lex_state = 74, .external_lex_state = 4}, + [165] = {.lex_state = 74, .external_lex_state = 4}, + [166] = {.lex_state = 74, .external_lex_state = 3}, + [167] = {.lex_state = 74, .external_lex_state = 3}, + [168] = {.lex_state = 74, .external_lex_state = 4}, + [169] = {.lex_state = 74, .external_lex_state = 3}, + [170] = {.lex_state = 74, .external_lex_state = 3}, + [171] = {.lex_state = 74, .external_lex_state = 3}, + [172] = {.lex_state = 74, .external_lex_state = 3}, + [173] = {.lex_state = 2, .external_lex_state = 3}, + [174] = {.lex_state = 2, .external_lex_state = 4}, + [175] = {.lex_state = 2, .external_lex_state = 4}, + [176] = {.lex_state = 2, .external_lex_state = 3}, + [177] = {.lex_state = 2, .external_lex_state = 3}, + [178] = {.lex_state = 2, .external_lex_state = 3}, + [179] = {.lex_state = 75, .external_lex_state = 2}, + [180] = {.lex_state = 75, .external_lex_state = 2}, + [181] = {.lex_state = 75, .external_lex_state = 2}, + [182] = {.lex_state = 2, .external_lex_state = 3}, + [183] = {.lex_state = 2, .external_lex_state = 4}, + [184] = {.lex_state = 75, .external_lex_state = 2}, + [185] = {.lex_state = 2, .external_lex_state = 3}, + [186] = {.lex_state = 75, .external_lex_state = 2}, + [187] = {.lex_state = 2, .external_lex_state = 3}, + [188] = {.lex_state = 75, .external_lex_state = 2}, + [189] = {.lex_state = 2, .external_lex_state = 3}, + [190] = {.lex_state = 2, .external_lex_state = 3}, + [191] = {.lex_state = 2, .external_lex_state = 3}, + [192] = {.lex_state = 2, .external_lex_state = 3}, + [193] = {.lex_state = 2, .external_lex_state = 3}, + [194] = {.lex_state = 75, .external_lex_state = 2}, + [195] = {.lex_state = 75, .external_lex_state = 2}, + [196] = {.lex_state = 75, .external_lex_state = 2}, + [197] = {.lex_state = 75, .external_lex_state = 2}, + [198] = {.lex_state = 75, .external_lex_state = 2}, + [199] = {.lex_state = 75, .external_lex_state = 2}, + [200] = {.lex_state = 74, .external_lex_state = 4}, + [201] = {.lex_state = 74, .external_lex_state = 4}, + [202] = {.lex_state = 75, .external_lex_state = 2}, + [203] = {.lex_state = 74, .external_lex_state = 4}, + [204] = {.lex_state = 75, .external_lex_state = 2}, + [205] = {.lex_state = 75, .external_lex_state = 2}, + [206] = {.lex_state = 74, .external_lex_state = 4}, + [207] = {.lex_state = 75, .external_lex_state = 2}, + [208] = {.lex_state = 75, .external_lex_state = 2}, + [209] = {.lex_state = 74, .external_lex_state = 4}, + [210] = {.lex_state = 74, .external_lex_state = 4}, + [211] = {.lex_state = 74, .external_lex_state = 4}, + [212] = {.lex_state = 74, .external_lex_state = 4}, + [213] = {.lex_state = 74, .external_lex_state = 4}, + [214] = {.lex_state = 74, .external_lex_state = 4}, + [215] = {.lex_state = 75, .external_lex_state = 2}, + [216] = {.lex_state = 75, .external_lex_state = 2}, + [217] = {.lex_state = 74, .external_lex_state = 4}, + [218] = {.lex_state = 75, .external_lex_state = 2}, + [219] = {.lex_state = 74, .external_lex_state = 4}, + [220] = {.lex_state = 74, .external_lex_state = 4}, + [221] = {.lex_state = 75, .external_lex_state = 2}, + [222] = {.lex_state = 74, .external_lex_state = 4}, + [223] = {.lex_state = 74, .external_lex_state = 4}, + [224] = {.lex_state = 74, .external_lex_state = 4}, + [225] = {.lex_state = 74, .external_lex_state = 4}, + [226] = {.lex_state = 74, .external_lex_state = 4}, + [227] = {.lex_state = 74, .external_lex_state = 4}, + [228] = {.lex_state = 74, .external_lex_state = 4}, + [229] = {.lex_state = 75, .external_lex_state = 2}, + [230] = {.lex_state = 74, .external_lex_state = 4}, + [231] = {.lex_state = 74, .external_lex_state = 4}, + [232] = {.lex_state = 74, .external_lex_state = 4}, + [233] = {.lex_state = 74, .external_lex_state = 4}, + [234] = {.lex_state = 75, .external_lex_state = 2}, + [235] = {.lex_state = 74, .external_lex_state = 4}, + [236] = {.lex_state = 74, .external_lex_state = 4}, + [237] = {.lex_state = 75, .external_lex_state = 2}, + [238] = {.lex_state = 74, .external_lex_state = 4}, + [239] = {.lex_state = 74, .external_lex_state = 4}, + [240] = {.lex_state = 74, .external_lex_state = 4}, + [241] = {.lex_state = 75, .external_lex_state = 2}, + [242] = {.lex_state = 75, .external_lex_state = 5}, + [243] = {.lex_state = 75, .external_lex_state = 2}, + [244] = {.lex_state = 75, .external_lex_state = 2}, + [245] = {.lex_state = 75, .external_lex_state = 2}, + [246] = {.lex_state = 75, .external_lex_state = 2}, + [247] = {.lex_state = 75, .external_lex_state = 2}, + [248] = {.lex_state = 75, .external_lex_state = 2}, + [249] = {.lex_state = 75, .external_lex_state = 2}, + [250] = {.lex_state = 75, .external_lex_state = 2}, + [251] = {.lex_state = 75, .external_lex_state = 2}, + [252] = {.lex_state = 75, .external_lex_state = 2}, + [253] = {.lex_state = 75, .external_lex_state = 2}, + [254] = {.lex_state = 75, .external_lex_state = 2}, + [255] = {.lex_state = 75, .external_lex_state = 2}, + [256] = {.lex_state = 3, .external_lex_state = 3}, + [257] = {.lex_state = 3, .external_lex_state = 3}, + [258] = {.lex_state = 3, .external_lex_state = 3}, + [259] = {.lex_state = 3, .external_lex_state = 3}, + [260] = {.lex_state = 75, .external_lex_state = 2}, + [261] = {.lex_state = 75, .external_lex_state = 2}, + [262] = {.lex_state = 75, .external_lex_state = 2}, + [263] = {.lex_state = 75, .external_lex_state = 2}, + [264] = {.lex_state = 75, .external_lex_state = 2}, + [265] = {.lex_state = 75, .external_lex_state = 2}, + [266] = {.lex_state = 75, .external_lex_state = 2}, + [267] = {.lex_state = 75, .external_lex_state = 2}, + [268] = {.lex_state = 75, .external_lex_state = 2}, + [269] = {.lex_state = 75, .external_lex_state = 2}, + [270] = {.lex_state = 75, .external_lex_state = 2}, + [271] = {.lex_state = 75, .external_lex_state = 2}, + [272] = {.lex_state = 75, .external_lex_state = 2}, + [273] = {.lex_state = 75, .external_lex_state = 2}, + [274] = {.lex_state = 75, .external_lex_state = 2}, + [275] = {.lex_state = 75, .external_lex_state = 2}, + [276] = {.lex_state = 75, .external_lex_state = 2}, + [277] = {.lex_state = 75, .external_lex_state = 2}, + [278] = {.lex_state = 75, .external_lex_state = 2}, + [279] = {.lex_state = 75, .external_lex_state = 2}, + [280] = {.lex_state = 75, .external_lex_state = 2}, + [281] = {.lex_state = 75, .external_lex_state = 2}, + [282] = {.lex_state = 75, .external_lex_state = 2}, + [283] = {.lex_state = 75, .external_lex_state = 2}, + [284] = {.lex_state = 75, .external_lex_state = 2}, + [285] = {.lex_state = 75, .external_lex_state = 2}, + [286] = {.lex_state = 75, .external_lex_state = 2}, + [287] = {.lex_state = 75, .external_lex_state = 2}, + [288] = {.lex_state = 75, .external_lex_state = 2}, + [289] = {.lex_state = 75, .external_lex_state = 2}, + [290] = {.lex_state = 75, .external_lex_state = 2}, + [291] = {.lex_state = 75, .external_lex_state = 2}, + [292] = {.lex_state = 75, .external_lex_state = 2}, + [293] = {.lex_state = 75, .external_lex_state = 2}, + [294] = {.lex_state = 75, .external_lex_state = 2}, + [295] = {.lex_state = 75, .external_lex_state = 2}, + [296] = {.lex_state = 75, .external_lex_state = 2}, + [297] = {.lex_state = 75, .external_lex_state = 5}, + [298] = {.lex_state = 75, .external_lex_state = 2}, + [299] = {.lex_state = 75, .external_lex_state = 2}, + [300] = {.lex_state = 75, .external_lex_state = 2}, + [301] = {.lex_state = 75, .external_lex_state = 2}, + [302] = {.lex_state = 75, .external_lex_state = 2}, + [303] = {.lex_state = 75, .external_lex_state = 2}, + [304] = {.lex_state = 75, .external_lex_state = 2}, + [305] = {.lex_state = 75, .external_lex_state = 2}, + [306] = {.lex_state = 75, .external_lex_state = 2}, + [307] = {.lex_state = 75, .external_lex_state = 2}, + [308] = {.lex_state = 75, .external_lex_state = 2}, + [309] = {.lex_state = 75, .external_lex_state = 2}, + [310] = {.lex_state = 75, .external_lex_state = 2}, + [311] = {.lex_state = 75, .external_lex_state = 2}, + [312] = {.lex_state = 75, .external_lex_state = 2}, + [313] = {.lex_state = 75, .external_lex_state = 2}, + [314] = {.lex_state = 75, .external_lex_state = 2}, + [315] = {.lex_state = 75, .external_lex_state = 2}, + [316] = {.lex_state = 75, .external_lex_state = 2}, + [317] = {.lex_state = 75, .external_lex_state = 2}, + [318] = {.lex_state = 75, .external_lex_state = 2}, + [319] = {.lex_state = 75, .external_lex_state = 2}, + [320] = {.lex_state = 75, .external_lex_state = 2}, + [321] = {.lex_state = 75, .external_lex_state = 2}, + [322] = {.lex_state = 75, .external_lex_state = 2}, + [323] = {.lex_state = 75, .external_lex_state = 2}, + [324] = {.lex_state = 75, .external_lex_state = 2}, + [325] = {.lex_state = 75, .external_lex_state = 2}, + [326] = {.lex_state = 75, .external_lex_state = 2}, + [327] = {.lex_state = 75, .external_lex_state = 2}, + [328] = {.lex_state = 75, .external_lex_state = 2}, + [329] = {.lex_state = 75, .external_lex_state = 2}, + [330] = {.lex_state = 75, .external_lex_state = 2}, + [331] = {.lex_state = 75, .external_lex_state = 2}, + [332] = {.lex_state = 75, .external_lex_state = 2}, + [333] = {.lex_state = 75, .external_lex_state = 2}, + [334] = {.lex_state = 75, .external_lex_state = 2}, + [335] = {.lex_state = 75, .external_lex_state = 2}, + [336] = {.lex_state = 75, .external_lex_state = 2}, + [337] = {.lex_state = 75, .external_lex_state = 2}, + [338] = {.lex_state = 75, .external_lex_state = 2}, + [339] = {.lex_state = 75, .external_lex_state = 2}, + [340] = {.lex_state = 75, .external_lex_state = 2}, + [341] = {.lex_state = 75, .external_lex_state = 2}, + [342] = {.lex_state = 75, .external_lex_state = 2}, + [343] = {.lex_state = 75, .external_lex_state = 2}, + [344] = {.lex_state = 75, .external_lex_state = 2}, + [345] = {.lex_state = 75, .external_lex_state = 2}, + [346] = {.lex_state = 75, .external_lex_state = 2}, + [347] = {.lex_state = 75, .external_lex_state = 2}, + [348] = {.lex_state = 75, .external_lex_state = 2}, + [349] = {.lex_state = 75, .external_lex_state = 2}, + [350] = {.lex_state = 75, .external_lex_state = 2}, + [351] = {.lex_state = 75, .external_lex_state = 2}, + [352] = {.lex_state = 75, .external_lex_state = 2}, + [353] = {.lex_state = 75, .external_lex_state = 2}, + [354] = {.lex_state = 75, .external_lex_state = 2}, + [355] = {.lex_state = 75, .external_lex_state = 2}, + [356] = {.lex_state = 75, .external_lex_state = 2}, + [357] = {.lex_state = 75, .external_lex_state = 2}, + [358] = {.lex_state = 75, .external_lex_state = 2}, + [359] = {.lex_state = 75, .external_lex_state = 2}, + [360] = {.lex_state = 75, .external_lex_state = 2}, + [361] = {.lex_state = 75, .external_lex_state = 2}, + [362] = {.lex_state = 75, .external_lex_state = 2}, + [363] = {.lex_state = 75, .external_lex_state = 2}, + [364] = {.lex_state = 75, .external_lex_state = 2}, + [365] = {.lex_state = 75, .external_lex_state = 2}, + [366] = {.lex_state = 75, .external_lex_state = 2}, + [367] = {.lex_state = 75, .external_lex_state = 2}, + [368] = {.lex_state = 75, .external_lex_state = 2}, + [369] = {.lex_state = 75, .external_lex_state = 2}, + [370] = {.lex_state = 75, .external_lex_state = 2}, + [371] = {.lex_state = 75, .external_lex_state = 2}, + [372] = {.lex_state = 75, .external_lex_state = 2}, + [373] = {.lex_state = 75, .external_lex_state = 2}, + [374] = {.lex_state = 75, .external_lex_state = 2}, + [375] = {.lex_state = 75, .external_lex_state = 2}, + [376] = {.lex_state = 75, .external_lex_state = 2}, + [377] = {.lex_state = 75, .external_lex_state = 2}, + [378] = {.lex_state = 75, .external_lex_state = 2}, + [379] = {.lex_state = 75, .external_lex_state = 2}, + [380] = {.lex_state = 75, .external_lex_state = 2}, + [381] = {.lex_state = 75, .external_lex_state = 2}, + [382] = {.lex_state = 75, .external_lex_state = 2}, + [383] = {.lex_state = 75, .external_lex_state = 2}, + [384] = {.lex_state = 75, .external_lex_state = 2}, + [385] = {.lex_state = 75, .external_lex_state = 2}, + [386] = {.lex_state = 75, .external_lex_state = 2}, + [387] = {.lex_state = 75, .external_lex_state = 2}, + [388] = {.lex_state = 75, .external_lex_state = 2}, + [389] = {.lex_state = 75, .external_lex_state = 2}, + [390] = {.lex_state = 75, .external_lex_state = 2}, + [391] = {.lex_state = 75, .external_lex_state = 2}, + [392] = {.lex_state = 75, .external_lex_state = 2}, + [393] = {.lex_state = 75, .external_lex_state = 2}, + [394] = {.lex_state = 75, .external_lex_state = 2}, + [395] = {.lex_state = 75, .external_lex_state = 2}, + [396] = {.lex_state = 75, .external_lex_state = 2}, + [397] = {.lex_state = 75, .external_lex_state = 2}, + [398] = {.lex_state = 75, .external_lex_state = 2}, + [399] = {.lex_state = 75, .external_lex_state = 2}, + [400] = {.lex_state = 75, .external_lex_state = 2}, + [401] = {.lex_state = 75, .external_lex_state = 2}, + [402] = {.lex_state = 75, .external_lex_state = 2}, + [403] = {.lex_state = 75, .external_lex_state = 2}, + [404] = {.lex_state = 75, .external_lex_state = 2}, + [405] = {.lex_state = 75, .external_lex_state = 2}, + [406] = {.lex_state = 75, .external_lex_state = 2}, + [407] = {.lex_state = 75, .external_lex_state = 2}, + [408] = {.lex_state = 75, .external_lex_state = 2}, + [409] = {.lex_state = 75, .external_lex_state = 2}, + [410] = {.lex_state = 75, .external_lex_state = 2}, + [411] = {.lex_state = 75, .external_lex_state = 2}, + [412] = {.lex_state = 75, .external_lex_state = 2}, + [413] = {.lex_state = 75, .external_lex_state = 2}, + [414] = {.lex_state = 75, .external_lex_state = 2}, + [415] = {.lex_state = 75, .external_lex_state = 2}, + [416] = {.lex_state = 75, .external_lex_state = 2}, + [417] = {.lex_state = 75, .external_lex_state = 2}, + [418] = {.lex_state = 75, .external_lex_state = 2}, + [419] = {.lex_state = 75, .external_lex_state = 2}, + [420] = {.lex_state = 75, .external_lex_state = 2}, + [421] = {.lex_state = 75, .external_lex_state = 2}, + [422] = {.lex_state = 75, .external_lex_state = 2}, + [423] = {.lex_state = 75, .external_lex_state = 2}, + [424] = {.lex_state = 75, .external_lex_state = 2}, + [425] = {.lex_state = 75, .external_lex_state = 2}, + [426] = {.lex_state = 75, .external_lex_state = 2}, + [427] = {.lex_state = 3, .external_lex_state = 4}, + [428] = {.lex_state = 75, .external_lex_state = 2}, + [429] = {.lex_state = 75, .external_lex_state = 2}, + [430] = {.lex_state = 75, .external_lex_state = 2}, + [431] = {.lex_state = 75, .external_lex_state = 2}, + [432] = {.lex_state = 75, .external_lex_state = 2}, + [433] = {.lex_state = 75, .external_lex_state = 2}, + [434] = {.lex_state = 75, .external_lex_state = 2}, + [435] = {.lex_state = 75, .external_lex_state = 2}, + [436] = {.lex_state = 75, .external_lex_state = 2}, + [437] = {.lex_state = 75, .external_lex_state = 2}, + [438] = {.lex_state = 75, .external_lex_state = 2}, + [439] = {.lex_state = 75, .external_lex_state = 2}, + [440] = {.lex_state = 3, .external_lex_state = 4}, + [441] = {.lex_state = 75, .external_lex_state = 2}, + [442] = {.lex_state = 75, .external_lex_state = 2}, + [443] = {.lex_state = 75, .external_lex_state = 2}, + [444] = {.lex_state = 75, .external_lex_state = 2}, + [445] = {.lex_state = 75, .external_lex_state = 2}, + [446] = {.lex_state = 75, .external_lex_state = 2}, + [447] = {.lex_state = 75, .external_lex_state = 2}, + [448] = {.lex_state = 75, .external_lex_state = 2}, + [449] = {.lex_state = 75, .external_lex_state = 2}, + [450] = {.lex_state = 75, .external_lex_state = 2}, + [451] = {.lex_state = 75, .external_lex_state = 2}, + [452] = {.lex_state = 75, .external_lex_state = 2}, + [453] = {.lex_state = 75, .external_lex_state = 2}, + [454] = {.lex_state = 75, .external_lex_state = 2}, + [455] = {.lex_state = 75, .external_lex_state = 2}, + [456] = {.lex_state = 75, .external_lex_state = 2}, + [457] = {.lex_state = 75, .external_lex_state = 2}, + [458] = {.lex_state = 75, .external_lex_state = 2}, + [459] = {.lex_state = 75, .external_lex_state = 2}, + [460] = {.lex_state = 75, .external_lex_state = 2}, + [461] = {.lex_state = 75, .external_lex_state = 2}, + [462] = {.lex_state = 75, .external_lex_state = 2}, + [463] = {.lex_state = 75, .external_lex_state = 2}, + [464] = {.lex_state = 75, .external_lex_state = 2}, + [465] = {.lex_state = 75, .external_lex_state = 2}, + [466] = {.lex_state = 75, .external_lex_state = 2}, + [467] = {.lex_state = 75, .external_lex_state = 2}, + [468] = {.lex_state = 75, .external_lex_state = 2}, + [469] = {.lex_state = 75, .external_lex_state = 2}, + [470] = {.lex_state = 75, .external_lex_state = 2}, + [471] = {.lex_state = 75, .external_lex_state = 2}, + [472] = {.lex_state = 75, .external_lex_state = 2}, + [473] = {.lex_state = 75, .external_lex_state = 2}, + [474] = {.lex_state = 75, .external_lex_state = 2}, + [475] = {.lex_state = 75, .external_lex_state = 2}, + [476] = {.lex_state = 75, .external_lex_state = 2}, + [477] = {.lex_state = 75, .external_lex_state = 2}, + [478] = {.lex_state = 75, .external_lex_state = 2}, + [479] = {.lex_state = 75, .external_lex_state = 2}, + [480] = {.lex_state = 75, .external_lex_state = 2}, + [481] = {.lex_state = 75, .external_lex_state = 2}, + [482] = {.lex_state = 75, .external_lex_state = 2}, + [483] = {.lex_state = 75, .external_lex_state = 2}, + [484] = {.lex_state = 75, .external_lex_state = 2}, + [485] = {.lex_state = 75, .external_lex_state = 2}, + [486] = {.lex_state = 75, .external_lex_state = 2}, + [487] = {.lex_state = 75, .external_lex_state = 2}, + [488] = {.lex_state = 75, .external_lex_state = 2}, + [489] = {.lex_state = 75, .external_lex_state = 2}, + [490] = {.lex_state = 75, .external_lex_state = 2}, + [491] = {.lex_state = 75, .external_lex_state = 2}, + [492] = {.lex_state = 75, .external_lex_state = 2}, + [493] = {.lex_state = 75, .external_lex_state = 2}, + [494] = {.lex_state = 75, .external_lex_state = 2}, + [495] = {.lex_state = 75, .external_lex_state = 2}, + [496] = {.lex_state = 75, .external_lex_state = 2}, + [497] = {.lex_state = 75, .external_lex_state = 2}, + [498] = {.lex_state = 75, .external_lex_state = 2}, + [499] = {.lex_state = 75, .external_lex_state = 2}, + [500] = {.lex_state = 75, .external_lex_state = 2}, + [501] = {.lex_state = 75, .external_lex_state = 2}, + [502] = {.lex_state = 75, .external_lex_state = 2}, + [503] = {.lex_state = 75, .external_lex_state = 2}, + [504] = {.lex_state = 75, .external_lex_state = 2}, + [505] = {.lex_state = 75, .external_lex_state = 2}, + [506] = {.lex_state = 75, .external_lex_state = 2}, + [507] = {.lex_state = 75, .external_lex_state = 2}, + [508] = {.lex_state = 75, .external_lex_state = 2}, + [509] = {.lex_state = 75, .external_lex_state = 2}, + [510] = {.lex_state = 75, .external_lex_state = 2}, + [511] = {.lex_state = 75, .external_lex_state = 2}, + [512] = {.lex_state = 75, .external_lex_state = 2}, + [513] = {.lex_state = 75, .external_lex_state = 2}, + [514] = {.lex_state = 75, .external_lex_state = 2}, + [515] = {.lex_state = 75, .external_lex_state = 2}, + [516] = {.lex_state = 75, .external_lex_state = 2}, + [517] = {.lex_state = 75, .external_lex_state = 2}, + [518] = {.lex_state = 75, .external_lex_state = 2}, + [519] = {.lex_state = 75, .external_lex_state = 2}, + [520] = {.lex_state = 75, .external_lex_state = 2}, + [521] = {.lex_state = 75, .external_lex_state = 2}, + [522] = {.lex_state = 75, .external_lex_state = 2}, + [523] = {.lex_state = 75, .external_lex_state = 2}, + [524] = {.lex_state = 75, .external_lex_state = 2}, + [525] = {.lex_state = 75, .external_lex_state = 2}, + [526] = {.lex_state = 75, .external_lex_state = 2}, + [527] = {.lex_state = 75, .external_lex_state = 2}, + [528] = {.lex_state = 75, .external_lex_state = 2}, + [529] = {.lex_state = 75, .external_lex_state = 2}, + [530] = {.lex_state = 75, .external_lex_state = 2}, + [531] = {.lex_state = 75, .external_lex_state = 2}, + [532] = {.lex_state = 75, .external_lex_state = 2}, + [533] = {.lex_state = 75, .external_lex_state = 2}, + [534] = {.lex_state = 75, .external_lex_state = 2}, + [535] = {.lex_state = 75, .external_lex_state = 2}, + [536] = {.lex_state = 75, .external_lex_state = 2}, + [537] = {.lex_state = 75, .external_lex_state = 2}, + [538] = {.lex_state = 75, .external_lex_state = 2}, + [539] = {.lex_state = 75, .external_lex_state = 2}, + [540] = {.lex_state = 75, .external_lex_state = 2}, + [541] = {.lex_state = 75, .external_lex_state = 2}, + [542] = {.lex_state = 75, .external_lex_state = 2}, + [543] = {.lex_state = 75, .external_lex_state = 2}, + [544] = {.lex_state = 75, .external_lex_state = 2}, + [545] = {.lex_state = 75, .external_lex_state = 2}, + [546] = {.lex_state = 75, .external_lex_state = 2}, + [547] = {.lex_state = 75, .external_lex_state = 2}, + [548] = {.lex_state = 75, .external_lex_state = 2}, + [549] = {.lex_state = 75, .external_lex_state = 2}, + [550] = {.lex_state = 75, .external_lex_state = 2}, + [551] = {.lex_state = 75, .external_lex_state = 2}, + [552] = {.lex_state = 75, .external_lex_state = 2}, + [553] = {.lex_state = 75, .external_lex_state = 2}, + [554] = {.lex_state = 75, .external_lex_state = 2}, + [555] = {.lex_state = 75, .external_lex_state = 2}, + [556] = {.lex_state = 75, .external_lex_state = 2}, + [557] = {.lex_state = 75, .external_lex_state = 2}, + [558] = {.lex_state = 75, .external_lex_state = 2}, + [559] = {.lex_state = 75, .external_lex_state = 2}, + [560] = {.lex_state = 75, .external_lex_state = 2}, + [561] = {.lex_state = 75, .external_lex_state = 2}, + [562] = {.lex_state = 75, .external_lex_state = 2}, + [563] = {.lex_state = 75, .external_lex_state = 2}, + [564] = {.lex_state = 75, .external_lex_state = 2}, + [565] = {.lex_state = 75, .external_lex_state = 2}, + [566] = {.lex_state = 75, .external_lex_state = 2}, + [567] = {.lex_state = 75, .external_lex_state = 2}, + [568] = {.lex_state = 75, .external_lex_state = 2}, + [569] = {.lex_state = 75, .external_lex_state = 2}, + [570] = {.lex_state = 75, .external_lex_state = 2}, + [571] = {.lex_state = 75, .external_lex_state = 2}, + [572] = {.lex_state = 75, .external_lex_state = 2}, + [573] = {.lex_state = 75, .external_lex_state = 2}, + [574] = {.lex_state = 75, .external_lex_state = 2}, + [575] = {.lex_state = 75, .external_lex_state = 2}, + [576] = {.lex_state = 75, .external_lex_state = 2}, + [577] = {.lex_state = 75, .external_lex_state = 2}, + [578] = {.lex_state = 75, .external_lex_state = 2}, + [579] = {.lex_state = 75, .external_lex_state = 2}, + [580] = {.lex_state = 75, .external_lex_state = 2}, + [581] = {.lex_state = 75, .external_lex_state = 2}, + [582] = {.lex_state = 75, .external_lex_state = 2}, + [583] = {.lex_state = 75, .external_lex_state = 2}, + [584] = {.lex_state = 75, .external_lex_state = 2}, + [585] = {.lex_state = 75, .external_lex_state = 2}, + [586] = {.lex_state = 75, .external_lex_state = 2}, + [587] = {.lex_state = 75, .external_lex_state = 2}, + [588] = {.lex_state = 75, .external_lex_state = 2}, + [589] = {.lex_state = 75, .external_lex_state = 2}, + [590] = {.lex_state = 3, .external_lex_state = 4}, + [591] = {.lex_state = 75, .external_lex_state = 2}, + [592] = {.lex_state = 75, .external_lex_state = 2}, + [593] = {.lex_state = 75, .external_lex_state = 2}, + [594] = {.lex_state = 75, .external_lex_state = 2}, + [595] = {.lex_state = 75, .external_lex_state = 2}, + [596] = {.lex_state = 75, .external_lex_state = 2}, + [597] = {.lex_state = 75, .external_lex_state = 2}, + [598] = {.lex_state = 75, .external_lex_state = 2}, + [599] = {.lex_state = 75, .external_lex_state = 2}, + [600] = {.lex_state = 75, .external_lex_state = 2}, + [601] = {.lex_state = 75, .external_lex_state = 2}, + [602] = {.lex_state = 75, .external_lex_state = 2}, + [603] = {.lex_state = 75, .external_lex_state = 2}, + [604] = {.lex_state = 75, .external_lex_state = 2}, + [605] = {.lex_state = 75, .external_lex_state = 2}, + [606] = {.lex_state = 75, .external_lex_state = 2}, + [607] = {.lex_state = 75, .external_lex_state = 2}, + [608] = {.lex_state = 75, .external_lex_state = 2}, + [609] = {.lex_state = 75, .external_lex_state = 2}, + [610] = {.lex_state = 75, .external_lex_state = 2}, + [611] = {.lex_state = 75, .external_lex_state = 2}, + [612] = {.lex_state = 75, .external_lex_state = 2}, + [613] = {.lex_state = 75, .external_lex_state = 2}, + [614] = {.lex_state = 75, .external_lex_state = 2}, + [615] = {.lex_state = 75, .external_lex_state = 2}, + [616] = {.lex_state = 75, .external_lex_state = 2}, + [617] = {.lex_state = 75, .external_lex_state = 2}, + [618] = {.lex_state = 75, .external_lex_state = 2}, + [619] = {.lex_state = 75, .external_lex_state = 2}, + [620] = {.lex_state = 75, .external_lex_state = 2}, + [621] = {.lex_state = 75, .external_lex_state = 2}, + [622] = {.lex_state = 75, .external_lex_state = 2}, + [623] = {.lex_state = 75, .external_lex_state = 2}, + [624] = {.lex_state = 75, .external_lex_state = 2}, + [625] = {.lex_state = 75, .external_lex_state = 2}, + [626] = {.lex_state = 75, .external_lex_state = 2}, + [627] = {.lex_state = 75, .external_lex_state = 2}, + [628] = {.lex_state = 75, .external_lex_state = 2}, + [629] = {.lex_state = 75, .external_lex_state = 2}, + [630] = {.lex_state = 75, .external_lex_state = 2}, + [631] = {.lex_state = 75, .external_lex_state = 2}, + [632] = {.lex_state = 75, .external_lex_state = 2}, + [633] = {.lex_state = 75, .external_lex_state = 2}, + [634] = {.lex_state = 75, .external_lex_state = 2}, + [635] = {.lex_state = 75, .external_lex_state = 2}, + [636] = {.lex_state = 75, .external_lex_state = 2}, + [637] = {.lex_state = 75, .external_lex_state = 2}, + [638] = {.lex_state = 75, .external_lex_state = 2}, + [639] = {.lex_state = 75, .external_lex_state = 2}, + [640] = {.lex_state = 75, .external_lex_state = 2}, + [641] = {.lex_state = 75, .external_lex_state = 2}, + [642] = {.lex_state = 75, .external_lex_state = 2}, + [643] = {.lex_state = 75, .external_lex_state = 2}, + [644] = {.lex_state = 75, .external_lex_state = 2}, + [645] = {.lex_state = 75, .external_lex_state = 2}, + [646] = {.lex_state = 75, .external_lex_state = 2}, + [647] = {.lex_state = 75, .external_lex_state = 2}, + [648] = {.lex_state = 75, .external_lex_state = 2}, + [649] = {.lex_state = 75, .external_lex_state = 2}, + [650] = {.lex_state = 75, .external_lex_state = 2}, + [651] = {.lex_state = 75, .external_lex_state = 2}, + [652] = {.lex_state = 75, .external_lex_state = 2}, + [653] = {.lex_state = 75, .external_lex_state = 2}, + [654] = {.lex_state = 75, .external_lex_state = 2}, + [655] = {.lex_state = 75, .external_lex_state = 2}, + [656] = {.lex_state = 75, .external_lex_state = 2}, + [657] = {.lex_state = 75, .external_lex_state = 2}, + [658] = {.lex_state = 75, .external_lex_state = 2}, + [659] = {.lex_state = 75, .external_lex_state = 2}, + [660] = {.lex_state = 75, .external_lex_state = 2}, + [661] = {.lex_state = 75, .external_lex_state = 2}, + [662] = {.lex_state = 75, .external_lex_state = 2}, + [663] = {.lex_state = 75, .external_lex_state = 2}, + [664] = {.lex_state = 75, .external_lex_state = 2}, + [665] = {.lex_state = 75, .external_lex_state = 2}, + [666] = {.lex_state = 75, .external_lex_state = 2}, + [667] = {.lex_state = 75, .external_lex_state = 2}, + [668] = {.lex_state = 75, .external_lex_state = 2}, + [669] = {.lex_state = 75, .external_lex_state = 2}, + [670] = {.lex_state = 75, .external_lex_state = 2}, + [671] = {.lex_state = 75, .external_lex_state = 2}, + [672] = {.lex_state = 75, .external_lex_state = 2}, + [673] = {.lex_state = 75, .external_lex_state = 2}, + [674] = {.lex_state = 75, .external_lex_state = 2}, + [675] = {.lex_state = 75, .external_lex_state = 2}, + [676] = {.lex_state = 75, .external_lex_state = 2}, + [677] = {.lex_state = 75, .external_lex_state = 2}, + [678] = {.lex_state = 75, .external_lex_state = 2}, + [679] = {.lex_state = 75, .external_lex_state = 2}, + [680] = {.lex_state = 75, .external_lex_state = 2}, + [681] = {.lex_state = 75, .external_lex_state = 2}, + [682] = {.lex_state = 75, .external_lex_state = 2}, + [683] = {.lex_state = 75, .external_lex_state = 2}, + [684] = {.lex_state = 75, .external_lex_state = 2}, + [685] = {.lex_state = 75, .external_lex_state = 2}, + [686] = {.lex_state = 75, .external_lex_state = 2}, + [687] = {.lex_state = 75, .external_lex_state = 2}, + [688] = {.lex_state = 75, .external_lex_state = 2}, + [689] = {.lex_state = 75, .external_lex_state = 2}, + [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 = 3, .external_lex_state = 4}, + [697] = {.lex_state = 3, .external_lex_state = 4}, + [698] = {.lex_state = 2, .external_lex_state = 4}, + [699] = {.lex_state = 2, .external_lex_state = 4}, + [700] = {.lex_state = 2, .external_lex_state = 4}, + [701] = {.lex_state = 2, .external_lex_state = 4}, + [702] = {.lex_state = 2, .external_lex_state = 4}, + [703] = {.lex_state = 2, .external_lex_state = 4}, + [704] = {.lex_state = 2, .external_lex_state = 4}, + [705] = {.lex_state = 2, .external_lex_state = 4}, + [706] = {.lex_state = 2, .external_lex_state = 4}, + [707] = {.lex_state = 2, .external_lex_state = 4}, + [708] = {.lex_state = 75, .external_lex_state = 2}, + [709] = {.lex_state = 75, .external_lex_state = 2}, + [710] = {.lex_state = 2, .external_lex_state = 4}, + [711] = {.lex_state = 75, .external_lex_state = 2}, + [712] = {.lex_state = 75, .external_lex_state = 2}, + [713] = {.lex_state = 75, .external_lex_state = 2}, + [714] = {.lex_state = 75, .external_lex_state = 2}, + [715] = {.lex_state = 75, .external_lex_state = 2}, + [716] = {.lex_state = 2, .external_lex_state = 4}, + [717] = {.lex_state = 2, .external_lex_state = 4}, + [718] = {.lex_state = 2, .external_lex_state = 4}, + [719] = {.lex_state = 2, .external_lex_state = 4}, + [720] = {.lex_state = 2, .external_lex_state = 4}, + [721] = {.lex_state = 2, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 3}, + [726] = {.lex_state = 2, .external_lex_state = 3}, + [727] = {.lex_state = 2, .external_lex_state = 3}, + [728] = {.lex_state = 2, .external_lex_state = 4}, + [729] = {.lex_state = 2, .external_lex_state = 4}, + [730] = {.lex_state = 2, .external_lex_state = 4}, + [731] = {.lex_state = 2, .external_lex_state = 3}, + [732] = {.lex_state = 2, .external_lex_state = 4}, + [733] = {.lex_state = 2, .external_lex_state = 3}, + [734] = {.lex_state = 2, .external_lex_state = 4}, + [735] = {.lex_state = 2, .external_lex_state = 4}, + [736] = {.lex_state = 2, .external_lex_state = 3}, + [737] = {.lex_state = 3, .external_lex_state = 3}, + [738] = {.lex_state = 2, .external_lex_state = 3}, + [739] = {.lex_state = 2, .external_lex_state = 3}, + [740] = {.lex_state = 3, .external_lex_state = 3}, + [741] = {.lex_state = 2, .external_lex_state = 3}, + [742] = {.lex_state = 2, .external_lex_state = 3}, + [743] = {.lex_state = 2, .external_lex_state = 4}, + [744] = {.lex_state = 2, .external_lex_state = 3}, + [745] = {.lex_state = 75, .external_lex_state = 2}, + [746] = {.lex_state = 2, .external_lex_state = 3}, + [747] = {.lex_state = 75, .external_lex_state = 5}, + [748] = {.lex_state = 2, .external_lex_state = 4}, + [749] = {.lex_state = 2, .external_lex_state = 4}, + [750] = {.lex_state = 2, .external_lex_state = 4}, + [751] = {.lex_state = 2, .external_lex_state = 3}, + [752] = {.lex_state = 2, .external_lex_state = 4}, + [753] = {.lex_state = 75, .external_lex_state = 5}, + [754] = {.lex_state = 75, .external_lex_state = 5}, + [755] = {.lex_state = 75, .external_lex_state = 2}, + [756] = {.lex_state = 75, .external_lex_state = 5}, + [757] = {.lex_state = 75, .external_lex_state = 5}, + [758] = {.lex_state = 75, .external_lex_state = 5}, + [759] = {.lex_state = 75, .external_lex_state = 5}, + [760] = {.lex_state = 75, .external_lex_state = 5}, + [761] = {.lex_state = 2, .external_lex_state = 3}, + [762] = {.lex_state = 2, .external_lex_state = 3}, + [763] = {.lex_state = 2, .external_lex_state = 3}, + [764] = {.lex_state = 2, .external_lex_state = 3}, + [765] = {.lex_state = 2, .external_lex_state = 3}, + [766] = {.lex_state = 2, .external_lex_state = 3}, + [767] = {.lex_state = 2, .external_lex_state = 3}, + [768] = {.lex_state = 2, .external_lex_state = 3}, + [769] = {.lex_state = 75, .external_lex_state = 2}, + [770] = {.lex_state = 75, .external_lex_state = 2}, + [771] = {.lex_state = 2, .external_lex_state = 3}, + [772] = {.lex_state = 2, .external_lex_state = 3}, + [773] = {.lex_state = 2, .external_lex_state = 3}, + [774] = {.lex_state = 2, .external_lex_state = 3}, + [775] = {.lex_state = 2, .external_lex_state = 3}, + [776] = {.lex_state = 2, .external_lex_state = 3}, + [777] = {.lex_state = 2, .external_lex_state = 3}, + [778] = {.lex_state = 2, .external_lex_state = 3}, + [779] = {.lex_state = 2, .external_lex_state = 3}, + [780] = {.lex_state = 75, .external_lex_state = 2}, + [781] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, + [783] = {.lex_state = 75, .external_lex_state = 2}, + [784] = {.lex_state = 9, .external_lex_state = 2}, + [785] = {.lex_state = 75, .external_lex_state = 5}, + [786] = {.lex_state = 75, .external_lex_state = 5}, + [787] = {.lex_state = 75, .external_lex_state = 5}, + [788] = {.lex_state = 75, .external_lex_state = 5}, + [789] = {.lex_state = 75, .external_lex_state = 2}, + [790] = {.lex_state = 75, .external_lex_state = 2}, + [791] = {.lex_state = 75, .external_lex_state = 5}, + [792] = {.lex_state = 75, .external_lex_state = 5}, + [793] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 75, .external_lex_state = 5}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 75, .external_lex_state = 5}, + [797] = {.lex_state = 75, .external_lex_state = 5}, + [798] = {.lex_state = 75, .external_lex_state = 2}, + [799] = {.lex_state = 75, .external_lex_state = 5}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 75, .external_lex_state = 5}, + [802] = {.lex_state = 75, .external_lex_state = 2}, + [803] = {.lex_state = 75, .external_lex_state = 5}, + [804] = {.lex_state = 75, .external_lex_state = 5}, + [805] = {.lex_state = 9, .external_lex_state = 2}, + [806] = {.lex_state = 75, .external_lex_state = 5}, + [807] = {.lex_state = 75, .external_lex_state = 2}, + [808] = {.lex_state = 75, .external_lex_state = 2}, + [809] = {.lex_state = 75, .external_lex_state = 2}, + [810] = {.lex_state = 75, .external_lex_state = 2}, + [811] = {.lex_state = 75, .external_lex_state = 5}, + [812] = {.lex_state = 75, .external_lex_state = 2}, + [813] = {.lex_state = 75, .external_lex_state = 2}, + [814] = {.lex_state = 75, .external_lex_state = 2}, + [815] = {.lex_state = 75, .external_lex_state = 2}, + [816] = {.lex_state = 75, .external_lex_state = 2}, + [817] = {.lex_state = 75, .external_lex_state = 2}, + [818] = {.lex_state = 75, .external_lex_state = 2}, + [819] = {.lex_state = 75, .external_lex_state = 2}, + [820] = {.lex_state = 9, .external_lex_state = 2}, + [821] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 75, .external_lex_state = 2}, + [823] = {.lex_state = 75, .external_lex_state = 2}, + [824] = {.lex_state = 75, .external_lex_state = 2}, + [825] = {.lex_state = 75, .external_lex_state = 2}, + [826] = {.lex_state = 75, .external_lex_state = 2}, + [827] = {.lex_state = 75, .external_lex_state = 2}, + [828] = {.lex_state = 75, .external_lex_state = 2}, + [829] = {.lex_state = 75, .external_lex_state = 2}, + [830] = {.lex_state = 75, .external_lex_state = 2}, + [831] = {.lex_state = 75, .external_lex_state = 2}, + [832] = {.lex_state = 75, .external_lex_state = 2}, + [833] = {.lex_state = 75, .external_lex_state = 2}, + [834] = {.lex_state = 75, .external_lex_state = 2}, + [835] = {.lex_state = 75, .external_lex_state = 2}, + [836] = {.lex_state = 75, .external_lex_state = 2}, + [837] = {.lex_state = 75, .external_lex_state = 2}, + [838] = {.lex_state = 75, .external_lex_state = 2}, + [839] = {.lex_state = 75, .external_lex_state = 2}, + [840] = {.lex_state = 75, .external_lex_state = 2}, + [841] = {.lex_state = 75, .external_lex_state = 2}, + [842] = {.lex_state = 75, .external_lex_state = 2}, + [843] = {.lex_state = 75, .external_lex_state = 2}, + [844] = {.lex_state = 75, .external_lex_state = 2}, + [845] = {.lex_state = 75, .external_lex_state = 2}, + [846] = {.lex_state = 75, .external_lex_state = 2}, + [847] = {.lex_state = 75, .external_lex_state = 2}, + [848] = {.lex_state = 9, .external_lex_state = 2}, + [849] = {.lex_state = 75, .external_lex_state = 2}, + [850] = {.lex_state = 75, .external_lex_state = 2}, + [851] = {.lex_state = 75, .external_lex_state = 2}, + [852] = {.lex_state = 75, .external_lex_state = 2}, + [853] = {.lex_state = 75, .external_lex_state = 2}, + [854] = {.lex_state = 75, .external_lex_state = 2}, + [855] = {.lex_state = 75, .external_lex_state = 2}, + [856] = {.lex_state = 75, .external_lex_state = 2}, + [857] = {.lex_state = 75, .external_lex_state = 2}, + [858] = {.lex_state = 75, .external_lex_state = 2}, + [859] = {.lex_state = 75, .external_lex_state = 2}, + [860] = {.lex_state = 75, .external_lex_state = 2}, + [861] = {.lex_state = 75, .external_lex_state = 2}, + [862] = {.lex_state = 75, .external_lex_state = 2}, + [863] = {.lex_state = 75, .external_lex_state = 2}, + [864] = {.lex_state = 75, .external_lex_state = 2}, + [865] = {.lex_state = 75, .external_lex_state = 2}, + [866] = {.lex_state = 75, .external_lex_state = 2}, + [867] = {.lex_state = 75, .external_lex_state = 2}, + [868] = {.lex_state = 9, .external_lex_state = 2}, + [869] = {.lex_state = 75, .external_lex_state = 2}, + [870] = {.lex_state = 75, .external_lex_state = 2}, + [871] = {.lex_state = 75, .external_lex_state = 2}, + [872] = {.lex_state = 75, .external_lex_state = 2}, + [873] = {.lex_state = 75, .external_lex_state = 2}, + [874] = {.lex_state = 75, .external_lex_state = 2}, + [875] = {.lex_state = 75, .external_lex_state = 2}, + [876] = {.lex_state = 9, .external_lex_state = 2}, + [877] = {.lex_state = 75, .external_lex_state = 2}, + [878] = {.lex_state = 75, .external_lex_state = 2}, + [879] = {.lex_state = 75, .external_lex_state = 2}, + [880] = {.lex_state = 75, .external_lex_state = 2}, + [881] = {.lex_state = 75, .external_lex_state = 2}, + [882] = {.lex_state = 75, .external_lex_state = 2}, + [883] = {.lex_state = 75, .external_lex_state = 2}, + [884] = {.lex_state = 75, .external_lex_state = 2}, + [885] = {.lex_state = 75, .external_lex_state = 2}, + [886] = {.lex_state = 75, .external_lex_state = 2}, + [887] = {.lex_state = 75, .external_lex_state = 2}, + [888] = {.lex_state = 75, .external_lex_state = 2}, + [889] = {.lex_state = 9, .external_lex_state = 2}, + [890] = {.lex_state = 75, .external_lex_state = 2}, + [891] = {.lex_state = 75, .external_lex_state = 2}, + [892] = {.lex_state = 75, .external_lex_state = 2}, + [893] = {.lex_state = 75, .external_lex_state = 2}, + [894] = {.lex_state = 75, .external_lex_state = 2}, + [895] = {.lex_state = 75, .external_lex_state = 2}, + [896] = {.lex_state = 75, .external_lex_state = 2}, + [897] = {.lex_state = 75, .external_lex_state = 2}, + [898] = {.lex_state = 75, .external_lex_state = 2}, + [899] = {.lex_state = 75, .external_lex_state = 2}, + [900] = {.lex_state = 9, .external_lex_state = 2}, + [901] = {.lex_state = 75, .external_lex_state = 2}, + [902] = {.lex_state = 75, .external_lex_state = 2}, + [903] = {.lex_state = 75, .external_lex_state = 2}, + [904] = {.lex_state = 75, .external_lex_state = 2}, + [905] = {.lex_state = 75, .external_lex_state = 2}, + [906] = {.lex_state = 9, .external_lex_state = 2}, + [907] = {.lex_state = 75, .external_lex_state = 2}, + [908] = {.lex_state = 75, .external_lex_state = 2}, + [909] = {.lex_state = 75, .external_lex_state = 2}, + [910] = {.lex_state = 75, .external_lex_state = 2}, + [911] = {.lex_state = 75, .external_lex_state = 2}, + [912] = {.lex_state = 75, .external_lex_state = 2}, + [913] = {.lex_state = 75, .external_lex_state = 2}, + [914] = {.lex_state = 75, .external_lex_state = 2}, + [915] = {.lex_state = 75, .external_lex_state = 2}, + [916] = {.lex_state = 75, .external_lex_state = 2}, + [917] = {.lex_state = 75, .external_lex_state = 2}, + [918] = {.lex_state = 75, .external_lex_state = 2}, + [919] = {.lex_state = 75, .external_lex_state = 2}, + [920] = {.lex_state = 75, .external_lex_state = 2}, + [921] = {.lex_state = 75, .external_lex_state = 2}, + [922] = {.lex_state = 75, .external_lex_state = 2}, + [923] = {.lex_state = 75, .external_lex_state = 2}, + [924] = {.lex_state = 75, .external_lex_state = 2}, + [925] = {.lex_state = 75, .external_lex_state = 2}, + [926] = {.lex_state = 75, .external_lex_state = 2}, + [927] = {.lex_state = 75, .external_lex_state = 2}, + [928] = {.lex_state = 75, .external_lex_state = 2}, + [929] = {.lex_state = 75, .external_lex_state = 2}, + [930] = {.lex_state = 75, .external_lex_state = 2}, + [931] = {.lex_state = 75, .external_lex_state = 2}, + [932] = {.lex_state = 75, .external_lex_state = 2}, + [933] = {.lex_state = 9, .external_lex_state = 2}, + [934] = {.lex_state = 75, .external_lex_state = 2}, + [935] = {.lex_state = 9, .external_lex_state = 2}, + [936] = {.lex_state = 75, .external_lex_state = 2}, + [937] = {.lex_state = 75, .external_lex_state = 2}, + [938] = {.lex_state = 75, .external_lex_state = 2}, + [939] = {.lex_state = 75, .external_lex_state = 2}, + [940] = {.lex_state = 75, .external_lex_state = 2}, + [941] = {.lex_state = 75, .external_lex_state = 2}, + [942] = {.lex_state = 75, .external_lex_state = 2}, + [943] = {.lex_state = 75, .external_lex_state = 2}, + [944] = {.lex_state = 75, .external_lex_state = 2}, + [945] = {.lex_state = 9, .external_lex_state = 2}, + [946] = {.lex_state = 9, .external_lex_state = 2}, + [947] = {.lex_state = 75, .external_lex_state = 2}, + [948] = {.lex_state = 9, .external_lex_state = 2}, + [949] = {.lex_state = 9, .external_lex_state = 2}, + [950] = {.lex_state = 75, .external_lex_state = 2}, + [951] = {.lex_state = 9, .external_lex_state = 2}, + [952] = {.lex_state = 75, .external_lex_state = 2}, + [953] = {.lex_state = 9, .external_lex_state = 2}, + [954] = {.lex_state = 75, .external_lex_state = 2}, + [955] = {.lex_state = 75, .external_lex_state = 2}, + [956] = {.lex_state = 75, .external_lex_state = 2}, + [957] = {.lex_state = 9, .external_lex_state = 2}, + [958] = {.lex_state = 75, .external_lex_state = 2}, + [959] = {.lex_state = 9, .external_lex_state = 2}, + [960] = {.lex_state = 75, .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}, + [964] = {.lex_state = 9, .external_lex_state = 2}, + [965] = {.lex_state = 75, .external_lex_state = 2}, + [966] = {.lex_state = 75, .external_lex_state = 2}, + [967] = {.lex_state = 9, .external_lex_state = 2}, + [968] = {.lex_state = 9, .external_lex_state = 2}, + [969] = {.lex_state = 75, .external_lex_state = 2}, + [970] = {.lex_state = 75, .external_lex_state = 2}, + [971] = {.lex_state = 9, .external_lex_state = 2}, + [972] = {.lex_state = 75, .external_lex_state = 2}, + [973] = {.lex_state = 9, .external_lex_state = 2}, + [974] = {.lex_state = 9, .external_lex_state = 2}, + [975] = {.lex_state = 75, .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 = 7, .external_lex_state = 2}, + [989] = {.lex_state = 9, .external_lex_state = 2}, + [990] = {.lex_state = 9, .external_lex_state = 2}, + [991] = {.lex_state = 7, .external_lex_state = 2}, + [992] = {.lex_state = 7, .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 = 9, .external_lex_state = 2}, + [1126] = {.lex_state = 9, .external_lex_state = 2}, + [1127] = {.lex_state = 9, .external_lex_state = 2}, + [1128] = {.lex_state = 9, .external_lex_state = 2}, + [1129] = {.lex_state = 9, .external_lex_state = 2}, + [1130] = {.lex_state = 9, .external_lex_state = 2}, + [1131] = {.lex_state = 9, .external_lex_state = 2}, + [1132] = {.lex_state = 9, .external_lex_state = 2}, + [1133] = {.lex_state = 9, .external_lex_state = 2}, + [1134] = {.lex_state = 9, .external_lex_state = 2}, + [1135] = {.lex_state = 9, .external_lex_state = 2}, + [1136] = {.lex_state = 9, .external_lex_state = 2}, + [1137] = {.lex_state = 9, .external_lex_state = 2}, + [1138] = {.lex_state = 9, .external_lex_state = 2}, + [1139] = {.lex_state = 9, .external_lex_state = 2}, + [1140] = {.lex_state = 9, .external_lex_state = 2}, + [1141] = {.lex_state = 9, .external_lex_state = 2}, + [1142] = {.lex_state = 9, .external_lex_state = 2}, + [1143] = {.lex_state = 9, .external_lex_state = 2}, + [1144] = {.lex_state = 9, .external_lex_state = 2}, + [1145] = {.lex_state = 9, .external_lex_state = 2}, + [1146] = {.lex_state = 9, .external_lex_state = 2}, + [1147] = {.lex_state = 9, .external_lex_state = 2}, + [1148] = {.lex_state = 9, .external_lex_state = 2}, + [1149] = {.lex_state = 9, .external_lex_state = 2}, + [1150] = {.lex_state = 9, .external_lex_state = 2}, + [1151] = {.lex_state = 10, .external_lex_state = 2}, + [1152] = {.lex_state = 10, .external_lex_state = 2}, + [1153] = {.lex_state = 10, .external_lex_state = 2}, + [1154] = {.lex_state = 10, .external_lex_state = 2}, + [1155] = {.lex_state = 10, .external_lex_state = 2}, + [1156] = {.lex_state = 10, .external_lex_state = 2}, + [1157] = {.lex_state = 10, .external_lex_state = 2}, + [1158] = {.lex_state = 10, .external_lex_state = 2}, + [1159] = {.lex_state = 10, .external_lex_state = 2}, + [1160] = {.lex_state = 10, .external_lex_state = 2}, + [1161] = {.lex_state = 10, .external_lex_state = 2}, + [1162] = {.lex_state = 10, .external_lex_state = 2}, + [1163] = {.lex_state = 3, .external_lex_state = 4}, + [1164] = {.lex_state = 2, .external_lex_state = 4}, + [1165] = {.lex_state = 3, .external_lex_state = 4}, + [1166] = {.lex_state = 75, .external_lex_state = 2}, + [1167] = {.lex_state = 2, .external_lex_state = 4}, + [1168] = {.lex_state = 2, .external_lex_state = 4}, + [1169] = {.lex_state = 3, .external_lex_state = 4}, + [1170] = {.lex_state = 75, .external_lex_state = 2}, + [1171] = {.lex_state = 75, .external_lex_state = 2}, + [1172] = {.lex_state = 2, .external_lex_state = 4}, + [1173] = {.lex_state = 2, .external_lex_state = 4}, + [1174] = {.lex_state = 2, .external_lex_state = 4}, + [1175] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 2, .external_lex_state = 3}, + [1178] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 10, .external_lex_state = 2}, + [1180] = {.lex_state = 10, .external_lex_state = 2}, + [1181] = {.lex_state = 2, .external_lex_state = 4}, + [1182] = {.lex_state = 3, .external_lex_state = 4}, + [1183] = {.lex_state = 2, .external_lex_state = 4}, + [1184] = {.lex_state = 2, .external_lex_state = 4}, + [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 2, .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 = 4}, + [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 = 3}, + [1196] = {.lex_state = 2, .external_lex_state = 4}, + [1197] = {.lex_state = 3, .external_lex_state = 3}, + [1198] = {.lex_state = 3, .external_lex_state = 3}, + [1199] = {.lex_state = 3, .external_lex_state = 3}, + [1200] = {.lex_state = 3, .external_lex_state = 3}, + [1201] = {.lex_state = 3, .external_lex_state = 3}, + [1202] = {.lex_state = 3, .external_lex_state = 3}, + [1203] = {.lex_state = 2, .external_lex_state = 3}, + [1204] = {.lex_state = 3, .external_lex_state = 3}, + [1205] = {.lex_state = 3, .external_lex_state = 3}, + [1206] = {.lex_state = 3, .external_lex_state = 3}, + [1207] = {.lex_state = 3, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 3}, + [1209] = {.lex_state = 3, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1212] = {.lex_state = 3, .external_lex_state = 3}, + [1213] = {.lex_state = 3, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 4}, + [1216] = {.lex_state = 2, .external_lex_state = 4}, + [1217] = {.lex_state = 3, .external_lex_state = 3}, + [1218] = {.lex_state = 2, .external_lex_state = 4}, + [1219] = {.lex_state = 3, .external_lex_state = 3}, + [1220] = {.lex_state = 2, .external_lex_state = 4}, + [1221] = {.lex_state = 3, .external_lex_state = 4}, + [1222] = {.lex_state = 3, .external_lex_state = 4}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 4}, + [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1226] = {.lex_state = 2, .external_lex_state = 4}, + [1227] = {.lex_state = 2, .external_lex_state = 4}, + [1228] = {.lex_state = 2, .external_lex_state = 4}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 4}, + [1231] = {.lex_state = 2, .external_lex_state = 4}, + [1232] = {.lex_state = 2, .external_lex_state = 4}, + [1233] = {.lex_state = 2, .external_lex_state = 4}, + [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 = 3}, + [1239] = {.lex_state = 2, .external_lex_state = 3}, + [1240] = {.lex_state = 2, .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 = 4}, + [1246] = {.lex_state = 75, .external_lex_state = 2}, + [1247] = {.lex_state = 2, .external_lex_state = 4}, + [1248] = {.lex_state = 2, .external_lex_state = 3}, + [1249] = {.lex_state = 2, .external_lex_state = 4}, + [1250] = {.lex_state = 2, .external_lex_state = 3}, + [1251] = {.lex_state = 2, .external_lex_state = 3}, + [1252] = {.lex_state = 2, .external_lex_state = 3}, + [1253] = {.lex_state = 2, .external_lex_state = 3}, + [1254] = {.lex_state = 3, .external_lex_state = 3}, + [1255] = {.lex_state = 3, .external_lex_state = 3}, + [1256] = {.lex_state = 2, .external_lex_state = 4}, + [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 = 4}, + [1263] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 3}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1266] = {.lex_state = 2, .external_lex_state = 3}, + [1267] = {.lex_state = 2, .external_lex_state = 3}, + [1268] = {.lex_state = 2, .external_lex_state = 3}, + [1269] = {.lex_state = 75, .external_lex_state = 2}, + [1270] = {.lex_state = 2, .external_lex_state = 4}, + [1271] = {.lex_state = 2, .external_lex_state = 3}, + [1272] = {.lex_state = 75, .external_lex_state = 2}, + [1273] = {.lex_state = 2, .external_lex_state = 3}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, + [1275] = {.lex_state = 2, .external_lex_state = 3}, + [1276] = {.lex_state = 2, .external_lex_state = 3}, + [1277] = {.lex_state = 2, .external_lex_state = 3}, + [1278] = {.lex_state = 2, .external_lex_state = 3}, + [1279] = {.lex_state = 2, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 3}, + [1281] = {.lex_state = 2, .external_lex_state = 3}, + [1282] = {.lex_state = 2, .external_lex_state = 4}, + [1283] = {.lex_state = 2, .external_lex_state = 3}, + [1284] = {.lex_state = 2, .external_lex_state = 4}, + [1285] = {.lex_state = 2, .external_lex_state = 4}, + [1286] = {.lex_state = 2, .external_lex_state = 3}, + [1287] = {.lex_state = 75, .external_lex_state = 2}, + [1288] = {.lex_state = 75, .external_lex_state = 2}, + [1289] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 3}, + [1294] = {.lex_state = 2, .external_lex_state = 4}, + [1295] = {.lex_state = 2, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .external_lex_state = 3}, + [1297] = {.lex_state = 75, .external_lex_state = 2}, + [1298] = {.lex_state = 2, .external_lex_state = 3}, + [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 2, .external_lex_state = 4}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, + [1302] = {.lex_state = 3, .external_lex_state = 3}, + [1303] = {.lex_state = 2, .external_lex_state = 4}, + [1304] = {.lex_state = 2, .external_lex_state = 3}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, + [1306] = {.lex_state = 2, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 4}, + [1308] = {.lex_state = 2, .external_lex_state = 4}, + [1309] = {.lex_state = 2, .external_lex_state = 3}, + [1310] = {.lex_state = 2, .external_lex_state = 4}, + [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 = 4}, + [1316] = {.lex_state = 2, .external_lex_state = 4}, + [1317] = {.lex_state = 75, .external_lex_state = 2}, + [1318] = {.lex_state = 2, .external_lex_state = 3}, + [1319] = {.lex_state = 2, .external_lex_state = 3}, + [1320] = {.lex_state = 2, .external_lex_state = 4}, + [1321] = {.lex_state = 2, .external_lex_state = 4}, + [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1323] = {.lex_state = 2, .external_lex_state = 3}, + [1324] = {.lex_state = 2, .external_lex_state = 4}, + [1325] = {.lex_state = 2, .external_lex_state = 4}, + [1326] = {.lex_state = 2, .external_lex_state = 4}, + [1327] = {.lex_state = 2, .external_lex_state = 3}, + [1328] = {.lex_state = 2, .external_lex_state = 4}, + [1329] = {.lex_state = 2, .external_lex_state = 4}, + [1330] = {.lex_state = 2, .external_lex_state = 4}, + [1331] = {.lex_state = 2, .external_lex_state = 4}, + [1332] = {.lex_state = 75, .external_lex_state = 2}, + [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1334] = {.lex_state = 2, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 3}, + [1340] = {.lex_state = 2, .external_lex_state = 3}, + [1341] = {.lex_state = 2, .external_lex_state = 3}, + [1342] = {.lex_state = 2, .external_lex_state = 4}, + [1343] = {.lex_state = 3, .external_lex_state = 3}, + [1344] = {.lex_state = 75, .external_lex_state = 2}, + [1345] = {.lex_state = 2, .external_lex_state = 3}, + [1346] = {.lex_state = 2, .external_lex_state = 3}, + [1347] = {.lex_state = 2, .external_lex_state = 4}, + [1348] = {.lex_state = 2, .external_lex_state = 4}, + [1349] = {.lex_state = 2, .external_lex_state = 3}, + [1350] = {.lex_state = 2, .external_lex_state = 4}, + [1351] = {.lex_state = 2, .external_lex_state = 4}, + [1352] = {.lex_state = 2, .external_lex_state = 3}, + [1353] = {.lex_state = 3, .external_lex_state = 3}, + [1354] = {.lex_state = 2, .external_lex_state = 3}, + [1355] = {.lex_state = 3, .external_lex_state = 3}, + [1356] = {.lex_state = 2, .external_lex_state = 3}, + [1357] = {.lex_state = 2, .external_lex_state = 3}, + [1358] = {.lex_state = 2, .external_lex_state = 3}, + [1359] = {.lex_state = 2, .external_lex_state = 4}, + [1360] = {.lex_state = 2, .external_lex_state = 3}, + [1361] = {.lex_state = 2, .external_lex_state = 3}, + [1362] = {.lex_state = 2, .external_lex_state = 4}, + [1363] = {.lex_state = 2, .external_lex_state = 3}, + [1364] = {.lex_state = 2, .external_lex_state = 4}, + [1365] = {.lex_state = 2, .external_lex_state = 3}, + [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1367] = {.lex_state = 2, .external_lex_state = 4}, + [1368] = {.lex_state = 2, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 3, .external_lex_state = 3}, + [1375] = {.lex_state = 3, .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 = 9, .external_lex_state = 2}, + [1381] = {.lex_state = 2, .external_lex_state = 3}, + [1382] = {.lex_state = 9, .external_lex_state = 2}, + [1383] = {.lex_state = 2, .external_lex_state = 4}, + [1384] = {.lex_state = 2, .external_lex_state = 4}, + [1385] = {.lex_state = 2, .external_lex_state = 4}, + [1386] = {.lex_state = 9, .external_lex_state = 2}, + [1387] = {.lex_state = 3, .external_lex_state = 3}, + [1388] = {.lex_state = 2, .external_lex_state = 3}, + [1389] = {.lex_state = 9, .external_lex_state = 2}, + [1390] = {.lex_state = 2, .external_lex_state = 3}, + [1391] = {.lex_state = 2, .external_lex_state = 3}, + [1392] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 4}, + [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 = 2, .external_lex_state = 3}, + [1409] = {.lex_state = 2, .external_lex_state = 3}, + [1410] = {.lex_state = 2, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 3}, + [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 = 2, .external_lex_state = 3}, + [1423] = {.lex_state = 9, .external_lex_state = 2}, + [1424] = {.lex_state = 9, .external_lex_state = 2}, + [1425] = {.lex_state = 2, .external_lex_state = 3}, + [1426] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 2, .external_lex_state = 3}, + [1435] = {.lex_state = 2, .external_lex_state = 3}, + [1436] = {.lex_state = 9, .external_lex_state = 2}, + [1437] = {.lex_state = 9, .external_lex_state = 2}, + [1438] = {.lex_state = 2, .external_lex_state = 3}, + [1439] = {.lex_state = 9, .external_lex_state = 2}, + [1440] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 2, .external_lex_state = 3}, + [1445] = {.lex_state = 2, .external_lex_state = 3}, + [1446] = {.lex_state = 2, .external_lex_state = 3}, + [1447] = {.lex_state = 2, .external_lex_state = 3}, + [1448] = {.lex_state = 2, .external_lex_state = 3}, + [1449] = {.lex_state = 2, .external_lex_state = 3}, + [1450] = {.lex_state = 9, .external_lex_state = 2}, + [1451] = {.lex_state = 2, .external_lex_state = 3}, + [1452] = {.lex_state = 2, .external_lex_state = 3}, + [1453] = {.lex_state = 2, .external_lex_state = 3}, + [1454] = {.lex_state = 9, .external_lex_state = 2}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 2, .external_lex_state = 3}, + [1457] = {.lex_state = 2, .external_lex_state = 3}, + [1458] = {.lex_state = 2, .external_lex_state = 3}, + [1459] = {.lex_state = 2, .external_lex_state = 3}, + [1460] = {.lex_state = 9, .external_lex_state = 2}, + [1461] = {.lex_state = 2, .external_lex_state = 3}, + [1462] = {.lex_state = 9, .external_lex_state = 2}, + [1463] = {.lex_state = 9, .external_lex_state = 2}, + [1464] = {.lex_state = 2, .external_lex_state = 3}, + [1465] = {.lex_state = 2, .external_lex_state = 3}, + [1466] = {.lex_state = 2, .external_lex_state = 3}, + [1467] = {.lex_state = 2, .external_lex_state = 3}, + [1468] = {.lex_state = 2, .external_lex_state = 3}, + [1469] = {.lex_state = 2, .external_lex_state = 3}, + [1470] = {.lex_state = 2, .external_lex_state = 3}, + [1471] = {.lex_state = 2, .external_lex_state = 3}, + [1472] = {.lex_state = 2, .external_lex_state = 3}, + [1473] = {.lex_state = 2, .external_lex_state = 3}, + [1474] = {.lex_state = 9, .external_lex_state = 2}, + [1475] = {.lex_state = 9, .external_lex_state = 2}, + [1476] = {.lex_state = 9, .external_lex_state = 2}, + [1477] = {.lex_state = 9, .external_lex_state = 2}, + [1478] = {.lex_state = 9, .external_lex_state = 2}, + [1479] = {.lex_state = 9, .external_lex_state = 2}, + [1480] = {.lex_state = 9, .external_lex_state = 2}, + [1481] = {.lex_state = 75, .external_lex_state = 5}, + [1482] = {.lex_state = 9, .external_lex_state = 2}, + [1483] = {.lex_state = 9, .external_lex_state = 2}, + [1484] = {.lex_state = 9, .external_lex_state = 2}, + [1485] = {.lex_state = 9, .external_lex_state = 2}, + [1486] = {.lex_state = 75, .external_lex_state = 5}, + [1487] = {.lex_state = 75, .external_lex_state = 5}, + [1488] = {.lex_state = 75, .external_lex_state = 5}, + [1489] = {.lex_state = 9, .external_lex_state = 2}, + [1490] = {.lex_state = 9, .external_lex_state = 2}, + [1491] = {.lex_state = 9, .external_lex_state = 2}, + [1492] = {.lex_state = 9, .external_lex_state = 2}, + [1493] = {.lex_state = 75, .external_lex_state = 5}, + [1494] = {.lex_state = 9, .external_lex_state = 2}, + [1495] = {.lex_state = 9, .external_lex_state = 2}, + [1496] = {.lex_state = 9, .external_lex_state = 2}, + [1497] = {.lex_state = 75, .external_lex_state = 2}, + [1498] = {.lex_state = 75, .external_lex_state = 2}, + [1499] = {.lex_state = 75, .external_lex_state = 2}, + [1500] = {.lex_state = 75, .external_lex_state = 2}, + [1501] = {.lex_state = 74, .external_lex_state = 3}, + [1502] = {.lex_state = 75, .external_lex_state = 2}, + [1503] = {.lex_state = 75, .external_lex_state = 2}, + [1504] = {.lex_state = 74, .external_lex_state = 3}, + [1505] = {.lex_state = 74, .external_lex_state = 3}, + [1506] = {.lex_state = 74, .external_lex_state = 3}, + [1507] = {.lex_state = 75, .external_lex_state = 5}, + [1508] = {.lex_state = 74, .external_lex_state = 4}, + [1509] = {.lex_state = 74, .external_lex_state = 3}, + [1510] = {.lex_state = 75, .external_lex_state = 5}, + [1511] = {.lex_state = 74, .external_lex_state = 4}, + [1512] = {.lex_state = 74, .external_lex_state = 3}, + [1513] = {.lex_state = 74, .external_lex_state = 3}, + [1514] = {.lex_state = 74, .external_lex_state = 3}, + [1515] = {.lex_state = 74, .external_lex_state = 3}, + [1516] = {.lex_state = 74, .external_lex_state = 3}, + [1517] = {.lex_state = 74, .external_lex_state = 3}, + [1518] = {.lex_state = 74, .external_lex_state = 3}, + [1519] = {.lex_state = 74, .external_lex_state = 3}, + [1520] = {.lex_state = 75, .external_lex_state = 2}, + [1521] = {.lex_state = 74, .external_lex_state = 4}, + [1522] = {.lex_state = 74, .external_lex_state = 3}, + [1523] = {.lex_state = 74, .external_lex_state = 3}, + [1524] = {.lex_state = 74, .external_lex_state = 3}, + [1525] = {.lex_state = 74, .external_lex_state = 3}, + [1526] = {.lex_state = 74, .external_lex_state = 3}, + [1527] = {.lex_state = 74, .external_lex_state = 3}, + [1528] = {.lex_state = 74, .external_lex_state = 3}, + [1529] = {.lex_state = 74, .external_lex_state = 3}, + [1530] = {.lex_state = 74, .external_lex_state = 3}, + [1531] = {.lex_state = 74, .external_lex_state = 3}, + [1532] = {.lex_state = 74, .external_lex_state = 3}, + [1533] = {.lex_state = 74, .external_lex_state = 3}, + [1534] = {.lex_state = 74, .external_lex_state = 4}, + [1535] = {.lex_state = 74, .external_lex_state = 3}, + [1536] = {.lex_state = 74, .external_lex_state = 3}, + [1537] = {.lex_state = 74, .external_lex_state = 3}, + [1538] = {.lex_state = 74, .external_lex_state = 3}, + [1539] = {.lex_state = 74, .external_lex_state = 3}, + [1540] = {.lex_state = 74, .external_lex_state = 3}, + [1541] = {.lex_state = 74, .external_lex_state = 3}, + [1542] = {.lex_state = 74, .external_lex_state = 3}, + [1543] = {.lex_state = 74, .external_lex_state = 3}, + [1544] = {.lex_state = 74, .external_lex_state = 3}, + [1545] = {.lex_state = 74, .external_lex_state = 3}, + [1546] = {.lex_state = 74, .external_lex_state = 3}, + [1547] = {.lex_state = 74, .external_lex_state = 3}, + [1548] = {.lex_state = 74, .external_lex_state = 3}, + [1549] = {.lex_state = 74, .external_lex_state = 3}, + [1550] = {.lex_state = 74, .external_lex_state = 3}, + [1551] = {.lex_state = 74, .external_lex_state = 3}, + [1552] = {.lex_state = 74, .external_lex_state = 3}, + [1553] = {.lex_state = 74, .external_lex_state = 3}, + [1554] = {.lex_state = 74, .external_lex_state = 3}, + [1555] = {.lex_state = 74, .external_lex_state = 3}, + [1556] = {.lex_state = 74, .external_lex_state = 3}, + [1557] = {.lex_state = 74, .external_lex_state = 3}, + [1558] = {.lex_state = 74, .external_lex_state = 3}, + [1559] = {.lex_state = 74, .external_lex_state = 3}, + [1560] = {.lex_state = 74, .external_lex_state = 3}, + [1561] = {.lex_state = 74, .external_lex_state = 3}, + [1562] = {.lex_state = 74, .external_lex_state = 3}, + [1563] = {.lex_state = 74, .external_lex_state = 3}, + [1564] = {.lex_state = 74, .external_lex_state = 3}, + [1565] = {.lex_state = 74, .external_lex_state = 3}, + [1566] = {.lex_state = 74, .external_lex_state = 3}, + [1567] = {.lex_state = 74, .external_lex_state = 3}, + [1568] = {.lex_state = 74, .external_lex_state = 3}, + [1569] = {.lex_state = 74, .external_lex_state = 3}, + [1570] = {.lex_state = 74, .external_lex_state = 3}, + [1571] = {.lex_state = 74, .external_lex_state = 3}, + [1572] = {.lex_state = 74, .external_lex_state = 3}, + [1573] = {.lex_state = 74, .external_lex_state = 3}, + [1574] = {.lex_state = 74, .external_lex_state = 3}, + [1575] = {.lex_state = 74, .external_lex_state = 3}, + [1576] = {.lex_state = 74, .external_lex_state = 3}, + [1577] = {.lex_state = 74, .external_lex_state = 3}, + [1578] = {.lex_state = 74, .external_lex_state = 3}, + [1579] = {.lex_state = 74, .external_lex_state = 4}, + [1580] = {.lex_state = 74, .external_lex_state = 3}, + [1581] = {.lex_state = 74, .external_lex_state = 3}, + [1582] = {.lex_state = 74, .external_lex_state = 3}, + [1583] = {.lex_state = 74, .external_lex_state = 3}, + [1584] = {.lex_state = 74, .external_lex_state = 3}, + [1585] = {.lex_state = 74, .external_lex_state = 3}, + [1586] = {.lex_state = 74, .external_lex_state = 3}, + [1587] = {.lex_state = 74, .external_lex_state = 3}, + [1588] = {.lex_state = 74, .external_lex_state = 3}, + [1589] = {.lex_state = 74, .external_lex_state = 3}, + [1590] = {.lex_state = 74, .external_lex_state = 3}, + [1591] = {.lex_state = 74, .external_lex_state = 3}, + [1592] = {.lex_state = 74, .external_lex_state = 3}, + [1593] = {.lex_state = 74, .external_lex_state = 3}, + [1594] = {.lex_state = 74, .external_lex_state = 3}, + [1595] = {.lex_state = 74, .external_lex_state = 3}, + [1596] = {.lex_state = 74, .external_lex_state = 3}, + [1597] = {.lex_state = 74, .external_lex_state = 3}, + [1598] = {.lex_state = 74, .external_lex_state = 3}, + [1599] = {.lex_state = 74, .external_lex_state = 3}, + [1600] = {.lex_state = 74, .external_lex_state = 3}, + [1601] = {.lex_state = 74, .external_lex_state = 3}, + [1602] = {.lex_state = 74, .external_lex_state = 3}, + [1603] = {.lex_state = 74, .external_lex_state = 3}, + [1604] = {.lex_state = 74, .external_lex_state = 3}, + [1605] = {.lex_state = 74, .external_lex_state = 3}, + [1606] = {.lex_state = 74, .external_lex_state = 4}, + [1607] = {.lex_state = 74, .external_lex_state = 3}, + [1608] = {.lex_state = 74, .external_lex_state = 4}, + [1609] = {.lex_state = 74, .external_lex_state = 3}, + [1610] = {.lex_state = 74, .external_lex_state = 3}, + [1611] = {.lex_state = 74, .external_lex_state = 3}, + [1612] = {.lex_state = 74, .external_lex_state = 4}, + [1613] = {.lex_state = 74, .external_lex_state = 3}, + [1614] = {.lex_state = 74, .external_lex_state = 3}, + [1615] = {.lex_state = 74, .external_lex_state = 3}, + [1616] = {.lex_state = 74, .external_lex_state = 3}, + [1617] = {.lex_state = 74, .external_lex_state = 3}, + [1618] = {.lex_state = 74, .external_lex_state = 3}, + [1619] = {.lex_state = 74, .external_lex_state = 3}, + [1620] = {.lex_state = 74, .external_lex_state = 3}, + [1621] = {.lex_state = 74, .external_lex_state = 3}, + [1622] = {.lex_state = 74, .external_lex_state = 3}, + [1623] = {.lex_state = 74, .external_lex_state = 3}, + [1624] = {.lex_state = 74, .external_lex_state = 3}, + [1625] = {.lex_state = 74, .external_lex_state = 3}, + [1626] = {.lex_state = 74, .external_lex_state = 3}, + [1627] = {.lex_state = 74, .external_lex_state = 3}, + [1628] = {.lex_state = 74, .external_lex_state = 3}, + [1629] = {.lex_state = 74, .external_lex_state = 3}, + [1630] = {.lex_state = 74, .external_lex_state = 3}, + [1631] = {.lex_state = 74, .external_lex_state = 3}, + [1632] = {.lex_state = 74, .external_lex_state = 3}, + [1633] = {.lex_state = 74, .external_lex_state = 3}, + [1634] = {.lex_state = 74, .external_lex_state = 3}, + [1635] = {.lex_state = 74, .external_lex_state = 3}, + [1636] = {.lex_state = 74, .external_lex_state = 3}, + [1637] = {.lex_state = 74, .external_lex_state = 3}, + [1638] = {.lex_state = 74, .external_lex_state = 3}, + [1639] = {.lex_state = 74, .external_lex_state = 3}, + [1640] = {.lex_state = 74, .external_lex_state = 3}, + [1641] = {.lex_state = 74, .external_lex_state = 3}, + [1642] = {.lex_state = 74, .external_lex_state = 3}, + [1643] = {.lex_state = 74, .external_lex_state = 3}, + [1644] = {.lex_state = 74, .external_lex_state = 3}, + [1645] = {.lex_state = 74, .external_lex_state = 3}, + [1646] = {.lex_state = 74, .external_lex_state = 3}, + [1647] = {.lex_state = 74, .external_lex_state = 3}, + [1648] = {.lex_state = 74, .external_lex_state = 3}, + [1649] = {.lex_state = 74, .external_lex_state = 3}, + [1650] = {.lex_state = 74, .external_lex_state = 3}, + [1651] = {.lex_state = 74, .external_lex_state = 3}, + [1652] = {.lex_state = 74, .external_lex_state = 3}, + [1653] = {.lex_state = 74, .external_lex_state = 3}, + [1654] = {.lex_state = 74, .external_lex_state = 3}, + [1655] = {.lex_state = 74, .external_lex_state = 3}, + [1656] = {.lex_state = 74, .external_lex_state = 3}, + [1657] = {.lex_state = 74, .external_lex_state = 3}, + [1658] = {.lex_state = 74, .external_lex_state = 3}, + [1659] = {.lex_state = 74, .external_lex_state = 3}, + [1660] = {.lex_state = 74, .external_lex_state = 3}, + [1661] = {.lex_state = 74, .external_lex_state = 3}, + [1662] = {.lex_state = 74, .external_lex_state = 3}, + [1663] = {.lex_state = 74, .external_lex_state = 3}, + [1664] = {.lex_state = 74, .external_lex_state = 3}, + [1665] = {.lex_state = 74, .external_lex_state = 3}, + [1666] = {.lex_state = 74, .external_lex_state = 3}, + [1667] = {.lex_state = 74, .external_lex_state = 3}, + [1668] = {.lex_state = 74, .external_lex_state = 3}, + [1669] = {.lex_state = 74, .external_lex_state = 3}, + [1670] = {.lex_state = 74, .external_lex_state = 3}, + [1671] = {.lex_state = 74, .external_lex_state = 3}, + [1672] = {.lex_state = 74, .external_lex_state = 3}, + [1673] = {.lex_state = 74, .external_lex_state = 3}, + [1674] = {.lex_state = 74, .external_lex_state = 3}, + [1675] = {.lex_state = 74, .external_lex_state = 3}, + [1676] = {.lex_state = 74, .external_lex_state = 3}, + [1677] = {.lex_state = 74, .external_lex_state = 3}, + [1678] = {.lex_state = 74, .external_lex_state = 3}, + [1679] = {.lex_state = 74, .external_lex_state = 3}, + [1680] = {.lex_state = 74, .external_lex_state = 3}, + [1681] = {.lex_state = 74, .external_lex_state = 3}, + [1682] = {.lex_state = 74, .external_lex_state = 3}, + [1683] = {.lex_state = 74, .external_lex_state = 3}, + [1684] = {.lex_state = 74, .external_lex_state = 3}, + [1685] = {.lex_state = 74, .external_lex_state = 3}, + [1686] = {.lex_state = 74, .external_lex_state = 3}, + [1687] = {.lex_state = 74, .external_lex_state = 3}, + [1688] = {.lex_state = 74, .external_lex_state = 3}, + [1689] = {.lex_state = 74, .external_lex_state = 3}, + [1690] = {.lex_state = 74, .external_lex_state = 3}, + [1691] = {.lex_state = 74, .external_lex_state = 3}, + [1692] = {.lex_state = 74, .external_lex_state = 3}, + [1693] = {.lex_state = 74, .external_lex_state = 3}, + [1694] = {.lex_state = 74, .external_lex_state = 3}, + [1695] = {.lex_state = 74, .external_lex_state = 3}, + [1696] = {.lex_state = 74, .external_lex_state = 4}, + [1697] = {.lex_state = 74, .external_lex_state = 3}, + [1698] = {.lex_state = 74, .external_lex_state = 3}, + [1699] = {.lex_state = 74, .external_lex_state = 3}, + [1700] = {.lex_state = 74, .external_lex_state = 3}, + [1701] = {.lex_state = 74, .external_lex_state = 3}, + [1702] = {.lex_state = 74, .external_lex_state = 3}, + [1703] = {.lex_state = 74, .external_lex_state = 3}, + [1704] = {.lex_state = 74, .external_lex_state = 3}, + [1705] = {.lex_state = 74, .external_lex_state = 3}, + [1706] = {.lex_state = 74, .external_lex_state = 3}, + [1707] = {.lex_state = 74, .external_lex_state = 3}, + [1708] = {.lex_state = 74, .external_lex_state = 4}, + [1709] = {.lex_state = 74, .external_lex_state = 4}, + [1710] = {.lex_state = 74, .external_lex_state = 3}, + [1711] = {.lex_state = 74, .external_lex_state = 3}, + [1712] = {.lex_state = 74, .external_lex_state = 3}, + [1713] = {.lex_state = 74, .external_lex_state = 3}, + [1714] = {.lex_state = 74, .external_lex_state = 3}, + [1715] = {.lex_state = 74, .external_lex_state = 3}, + [1716] = {.lex_state = 74, .external_lex_state = 3}, + [1717] = {.lex_state = 75, .external_lex_state = 5}, + [1718] = {.lex_state = 75, .external_lex_state = 5}, + [1719] = {.lex_state = 75, .external_lex_state = 5}, + [1720] = {.lex_state = 75, .external_lex_state = 5}, + [1721] = {.lex_state = 75, .external_lex_state = 5}, + [1722] = {.lex_state = 74, .external_lex_state = 3}, + [1723] = {.lex_state = 74, .external_lex_state = 3}, + [1724] = {.lex_state = 74, .external_lex_state = 4}, + [1725] = {.lex_state = 75, .external_lex_state = 5}, + [1726] = {.lex_state = 74, .external_lex_state = 3}, + [1727] = {.lex_state = 74, .external_lex_state = 4}, + [1728] = {.lex_state = 75, .external_lex_state = 5}, + [1729] = {.lex_state = 74, .external_lex_state = 4}, + [1730] = {.lex_state = 74, .external_lex_state = 4}, + [1731] = {.lex_state = 75, .external_lex_state = 5}, + [1732] = {.lex_state = 74, .external_lex_state = 4}, + [1733] = {.lex_state = 74, .external_lex_state = 4}, + [1734] = {.lex_state = 75, .external_lex_state = 5}, + [1735] = {.lex_state = 74, .external_lex_state = 4}, + [1736] = {.lex_state = 75, .external_lex_state = 5}, + [1737] = {.lex_state = 74, .external_lex_state = 4}, + [1738] = {.lex_state = 75, .external_lex_state = 5}, + [1739] = {.lex_state = 74, .external_lex_state = 3}, + [1740] = {.lex_state = 74, .external_lex_state = 3}, + [1741] = {.lex_state = 74, .external_lex_state = 3}, + [1742] = {.lex_state = 75, .external_lex_state = 5}, + [1743] = {.lex_state = 74, .external_lex_state = 3}, + [1744] = {.lex_state = 74, .external_lex_state = 3}, + [1745] = {.lex_state = 74, .external_lex_state = 3}, + [1746] = {.lex_state = 74, .external_lex_state = 3}, + [1747] = {.lex_state = 74, .external_lex_state = 3}, + [1748] = {.lex_state = 74, .external_lex_state = 3}, + [1749] = {.lex_state = 74, .external_lex_state = 3}, + [1750] = {.lex_state = 74, .external_lex_state = 4}, + [1751] = {.lex_state = 74, .external_lex_state = 3}, + [1752] = {.lex_state = 74, .external_lex_state = 3}, + [1753] = {.lex_state = 74, .external_lex_state = 3}, + [1754] = {.lex_state = 74, .external_lex_state = 3}, + [1755] = {.lex_state = 74, .external_lex_state = 3}, + [1756] = {.lex_state = 74, .external_lex_state = 3}, + [1757] = {.lex_state = 74, .external_lex_state = 3}, + [1758] = {.lex_state = 74, .external_lex_state = 3}, + [1759] = {.lex_state = 74, .external_lex_state = 3}, + [1760] = {.lex_state = 74, .external_lex_state = 3}, + [1761] = {.lex_state = 74, .external_lex_state = 3}, + [1762] = {.lex_state = 74, .external_lex_state = 3}, + [1763] = {.lex_state = 74, .external_lex_state = 3}, + [1764] = {.lex_state = 74, .external_lex_state = 3}, + [1765] = {.lex_state = 74, .external_lex_state = 3}, + [1766] = {.lex_state = 74, .external_lex_state = 4}, + [1767] = {.lex_state = 75, .external_lex_state = 5}, + [1768] = {.lex_state = 74, .external_lex_state = 3}, + [1769] = {.lex_state = 75, .external_lex_state = 5}, + [1770] = {.lex_state = 75, .external_lex_state = 5}, + [1771] = {.lex_state = 74, .external_lex_state = 4}, + [1772] = {.lex_state = 75, .external_lex_state = 5}, + [1773] = {.lex_state = 75, .external_lex_state = 5}, + [1774] = {.lex_state = 74, .external_lex_state = 4}, + [1775] = {.lex_state = 75, .external_lex_state = 5}, + [1776] = {.lex_state = 74, .external_lex_state = 3}, + [1777] = {.lex_state = 74, .external_lex_state = 3}, + [1778] = {.lex_state = 74, .external_lex_state = 3}, + [1779] = {.lex_state = 74, .external_lex_state = 3}, + [1780] = {.lex_state = 74, .external_lex_state = 4}, + [1781] = {.lex_state = 74, .external_lex_state = 4}, + [1782] = {.lex_state = 74, .external_lex_state = 4}, + [1783] = {.lex_state = 75, .external_lex_state = 5}, + [1784] = {.lex_state = 75, .external_lex_state = 5}, + [1785] = {.lex_state = 74, .external_lex_state = 4}, + [1786] = {.lex_state = 74, .external_lex_state = 4}, + [1787] = {.lex_state = 74, .external_lex_state = 3}, + [1788] = {.lex_state = 74, .external_lex_state = 4}, + [1789] = {.lex_state = 74, .external_lex_state = 4}, + [1790] = {.lex_state = 74, .external_lex_state = 4}, + [1791] = {.lex_state = 74, .external_lex_state = 4}, + [1792] = {.lex_state = 75, .external_lex_state = 5}, + [1793] = {.lex_state = 74, .external_lex_state = 3}, + [1794] = {.lex_state = 74, .external_lex_state = 3}, + [1795] = {.lex_state = 74, .external_lex_state = 4}, + [1796] = {.lex_state = 74, .external_lex_state = 4}, + [1797] = {.lex_state = 74, .external_lex_state = 3}, + [1798] = {.lex_state = 74, .external_lex_state = 4}, + [1799] = {.lex_state = 74, .external_lex_state = 3}, + [1800] = {.lex_state = 74, .external_lex_state = 4}, + [1801] = {.lex_state = 74, .external_lex_state = 4}, + [1802] = {.lex_state = 74, .external_lex_state = 4}, + [1803] = {.lex_state = 74, .external_lex_state = 4}, + [1804] = {.lex_state = 74, .external_lex_state = 4}, + [1805] = {.lex_state = 74, .external_lex_state = 4}, + [1806] = {.lex_state = 74, .external_lex_state = 4}, + [1807] = {.lex_state = 74, .external_lex_state = 4}, + [1808] = {.lex_state = 74, .external_lex_state = 4}, + [1809] = {.lex_state = 74, .external_lex_state = 4}, + [1810] = {.lex_state = 74, .external_lex_state = 4}, + [1811] = {.lex_state = 74, .external_lex_state = 4}, + [1812] = {.lex_state = 74, .external_lex_state = 4}, + [1813] = {.lex_state = 74, .external_lex_state = 3}, + [1814] = {.lex_state = 74, .external_lex_state = 4}, + [1815] = {.lex_state = 74, .external_lex_state = 4}, + [1816] = {.lex_state = 74, .external_lex_state = 3}, + [1817] = {.lex_state = 74, .external_lex_state = 4}, + [1818] = {.lex_state = 74, .external_lex_state = 4}, + [1819] = {.lex_state = 74, .external_lex_state = 4}, + [1820] = {.lex_state = 74, .external_lex_state = 4}, + [1821] = {.lex_state = 74, .external_lex_state = 4}, + [1822] = {.lex_state = 74, .external_lex_state = 4}, + [1823] = {.lex_state = 74, .external_lex_state = 4}, + [1824] = {.lex_state = 75, .external_lex_state = 5}, + [1825] = {.lex_state = 74, .external_lex_state = 3}, + [1826] = {.lex_state = 74, .external_lex_state = 4}, + [1827] = {.lex_state = 4, .external_lex_state = 3}, + [1828] = {.lex_state = 74, .external_lex_state = 4}, + [1829] = {.lex_state = 75, .external_lex_state = 5}, + [1830] = {.lex_state = 74, .external_lex_state = 4}, + [1831] = {.lex_state = 74, .external_lex_state = 4}, + [1832] = {.lex_state = 74, .external_lex_state = 3}, + [1833] = {.lex_state = 75, .external_lex_state = 5}, + [1834] = {.lex_state = 74, .external_lex_state = 4}, + [1835] = {.lex_state = 74, .external_lex_state = 4}, + [1836] = {.lex_state = 74, .external_lex_state = 4}, + [1837] = {.lex_state = 74, .external_lex_state = 4}, + [1838] = {.lex_state = 74, .external_lex_state = 4}, + [1839] = {.lex_state = 74, .external_lex_state = 4}, + [1840] = {.lex_state = 74, .external_lex_state = 4}, + [1841] = {.lex_state = 74, .external_lex_state = 4}, + [1842] = {.lex_state = 74, .external_lex_state = 4}, + [1843] = {.lex_state = 74, .external_lex_state = 4}, + [1844] = {.lex_state = 74, .external_lex_state = 4}, + [1845] = {.lex_state = 74, .external_lex_state = 4}, + [1846] = {.lex_state = 74, .external_lex_state = 4}, + [1847] = {.lex_state = 74, .external_lex_state = 4}, + [1848] = {.lex_state = 74, .external_lex_state = 4}, + [1849] = {.lex_state = 74, .external_lex_state = 4}, + [1850] = {.lex_state = 74, .external_lex_state = 4}, + [1851] = {.lex_state = 74, .external_lex_state = 4}, + [1852] = {.lex_state = 74, .external_lex_state = 4}, + [1853] = {.lex_state = 74, .external_lex_state = 4}, + [1854] = {.lex_state = 74, .external_lex_state = 4}, + [1855] = {.lex_state = 74, .external_lex_state = 4}, + [1856] = {.lex_state = 74, .external_lex_state = 4}, + [1857] = {.lex_state = 74, .external_lex_state = 4}, + [1858] = {.lex_state = 74, .external_lex_state = 4}, + [1859] = {.lex_state = 74, .external_lex_state = 4}, + [1860] = {.lex_state = 74, .external_lex_state = 4}, + [1861] = {.lex_state = 74, .external_lex_state = 4}, + [1862] = {.lex_state = 74, .external_lex_state = 4}, + [1863] = {.lex_state = 74, .external_lex_state = 4}, + [1864] = {.lex_state = 74, .external_lex_state = 3}, + [1865] = {.lex_state = 74, .external_lex_state = 4}, + [1866] = {.lex_state = 74, .external_lex_state = 4}, + [1867] = {.lex_state = 74, .external_lex_state = 3}, + [1868] = {.lex_state = 74, .external_lex_state = 4}, + [1869] = {.lex_state = 75, .external_lex_state = 5}, + [1870] = {.lex_state = 75, .external_lex_state = 5}, + [1871] = {.lex_state = 74, .external_lex_state = 4}, + [1872] = {.lex_state = 74, .external_lex_state = 4}, + [1873] = {.lex_state = 74, .external_lex_state = 4}, + [1874] = {.lex_state = 74, .external_lex_state = 4}, + [1875] = {.lex_state = 74, .external_lex_state = 4}, + [1876] = {.lex_state = 74, .external_lex_state = 4}, + [1877] = {.lex_state = 75, .external_lex_state = 2}, + [1878] = {.lex_state = 74, .external_lex_state = 4}, + [1879] = {.lex_state = 74, .external_lex_state = 4}, + [1880] = {.lex_state = 74, .external_lex_state = 4}, + [1881] = {.lex_state = 74, .external_lex_state = 4}, + [1882] = {.lex_state = 74, .external_lex_state = 4}, + [1883] = {.lex_state = 74, .external_lex_state = 4}, + [1884] = {.lex_state = 74, .external_lex_state = 4}, + [1885] = {.lex_state = 74, .external_lex_state = 4}, + [1886] = {.lex_state = 74, .external_lex_state = 3}, + [1887] = {.lex_state = 74, .external_lex_state = 3}, + [1888] = {.lex_state = 74, .external_lex_state = 3}, + [1889] = {.lex_state = 75, .external_lex_state = 2}, + [1890] = {.lex_state = 74, .external_lex_state = 3}, + [1891] = {.lex_state = 74, .external_lex_state = 3}, + [1892] = {.lex_state = 75, .external_lex_state = 5}, + [1893] = {.lex_state = 74, .external_lex_state = 4}, + [1894] = {.lex_state = 74, .external_lex_state = 4}, + [1895] = {.lex_state = 74, .external_lex_state = 3}, + [1896] = {.lex_state = 74, .external_lex_state = 3}, + [1897] = {.lex_state = 74, .external_lex_state = 3}, + [1898] = {.lex_state = 74, .external_lex_state = 3}, + [1899] = {.lex_state = 74, .external_lex_state = 3}, + [1900] = {.lex_state = 74, .external_lex_state = 3}, + [1901] = {.lex_state = 74, .external_lex_state = 3}, + [1902] = {.lex_state = 74, .external_lex_state = 4}, + [1903] = {.lex_state = 74, .external_lex_state = 3}, + [1904] = {.lex_state = 74, .external_lex_state = 3}, + [1905] = {.lex_state = 74, .external_lex_state = 4}, + [1906] = {.lex_state = 74, .external_lex_state = 3}, + [1907] = {.lex_state = 74, .external_lex_state = 3}, + [1908] = {.lex_state = 74, .external_lex_state = 3}, + [1909] = {.lex_state = 74, .external_lex_state = 4}, + [1910] = {.lex_state = 74, .external_lex_state = 4}, + [1911] = {.lex_state = 74, .external_lex_state = 4}, + [1912] = {.lex_state = 74, .external_lex_state = 4}, + [1913] = {.lex_state = 74, .external_lex_state = 3}, + [1914] = {.lex_state = 74, .external_lex_state = 3}, + [1915] = {.lex_state = 74, .external_lex_state = 4}, + [1916] = {.lex_state = 74, .external_lex_state = 4}, + [1917] = {.lex_state = 75, .external_lex_state = 2}, + [1918] = {.lex_state = 74, .external_lex_state = 4}, + [1919] = {.lex_state = 74, .external_lex_state = 3}, + [1920] = {.lex_state = 74, .external_lex_state = 4}, + [1921] = {.lex_state = 74, .external_lex_state = 4}, + [1922] = {.lex_state = 74, .external_lex_state = 3}, + [1923] = {.lex_state = 74, .external_lex_state = 3}, + [1924] = {.lex_state = 74, .external_lex_state = 3}, + [1925] = {.lex_state = 74, .external_lex_state = 4}, + [1926] = {.lex_state = 74, .external_lex_state = 4}, + [1927] = {.lex_state = 74, .external_lex_state = 3}, + [1928] = {.lex_state = 74, .external_lex_state = 4}, + [1929] = {.lex_state = 75, .external_lex_state = 5}, + [1930] = {.lex_state = 74, .external_lex_state = 3}, + [1931] = {.lex_state = 74, .external_lex_state = 4}, + [1932] = {.lex_state = 74, .external_lex_state = 3}, + [1933] = {.lex_state = 75, .external_lex_state = 5}, + [1934] = {.lex_state = 74, .external_lex_state = 3}, + [1935] = {.lex_state = 74, .external_lex_state = 4}, + [1936] = {.lex_state = 74, .external_lex_state = 3}, + [1937] = {.lex_state = 74, .external_lex_state = 4}, + [1938] = {.lex_state = 74, .external_lex_state = 4}, + [1939] = {.lex_state = 74, .external_lex_state = 4}, + [1940] = {.lex_state = 74, .external_lex_state = 4}, + [1941] = {.lex_state = 74, .external_lex_state = 4}, + [1942] = {.lex_state = 74, .external_lex_state = 4}, + [1943] = {.lex_state = 74, .external_lex_state = 4}, + [1944] = {.lex_state = 74, .external_lex_state = 4}, + [1945] = {.lex_state = 74, .external_lex_state = 4}, + [1946] = {.lex_state = 74, .external_lex_state = 3}, + [1947] = {.lex_state = 75, .external_lex_state = 2}, + [1948] = {.lex_state = 74, .external_lex_state = 4}, + [1949] = {.lex_state = 74, .external_lex_state = 3}, + [1950] = {.lex_state = 74, .external_lex_state = 3}, + [1951] = {.lex_state = 74, .external_lex_state = 4}, + [1952] = {.lex_state = 74, .external_lex_state = 4}, + [1953] = {.lex_state = 75, .external_lex_state = 2}, + [1954] = {.lex_state = 74, .external_lex_state = 3}, + [1955] = {.lex_state = 74, .external_lex_state = 3}, + [1956] = {.lex_state = 74, .external_lex_state = 4}, + [1957] = {.lex_state = 74, .external_lex_state = 4}, + [1958] = {.lex_state = 74, .external_lex_state = 4}, + [1959] = {.lex_state = 74, .external_lex_state = 3}, + [1960] = {.lex_state = 74, .external_lex_state = 3}, + [1961] = {.lex_state = 74, .external_lex_state = 4}, + [1962] = {.lex_state = 75, .external_lex_state = 2}, + [1963] = {.lex_state = 74, .external_lex_state = 4}, + [1964] = {.lex_state = 74, .external_lex_state = 4}, + [1965] = {.lex_state = 74, .external_lex_state = 4}, + [1966] = {.lex_state = 74, .external_lex_state = 4}, + [1967] = {.lex_state = 74, .external_lex_state = 4}, + [1968] = {.lex_state = 75, .external_lex_state = 5}, + [1969] = {.lex_state = 75, .external_lex_state = 5}, + [1970] = {.lex_state = 74, .external_lex_state = 4}, + [1971] = {.lex_state = 75, .external_lex_state = 5}, + [1972] = {.lex_state = 75, .external_lex_state = 5}, + [1973] = {.lex_state = 74, .external_lex_state = 4}, + [1974] = {.lex_state = 74, .external_lex_state = 4}, + [1975] = {.lex_state = 74, .external_lex_state = 4}, + [1976] = {.lex_state = 74, .external_lex_state = 3}, + [1977] = {.lex_state = 74, .external_lex_state = 4}, + [1978] = {.lex_state = 74, .external_lex_state = 4}, + [1979] = {.lex_state = 74, .external_lex_state = 4}, + [1980] = {.lex_state = 74, .external_lex_state = 4}, + [1981] = {.lex_state = 74, .external_lex_state = 4}, + [1982] = {.lex_state = 74, .external_lex_state = 4}, + [1983] = {.lex_state = 74, .external_lex_state = 4}, + [1984] = {.lex_state = 74, .external_lex_state = 4}, + [1985] = {.lex_state = 74, .external_lex_state = 4}, + [1986] = {.lex_state = 74, .external_lex_state = 4}, + [1987] = {.lex_state = 74, .external_lex_state = 4}, + [1988] = {.lex_state = 74, .external_lex_state = 4}, + [1989] = {.lex_state = 74, .external_lex_state = 4}, + [1990] = {.lex_state = 74, .external_lex_state = 4}, + [1991] = {.lex_state = 74, .external_lex_state = 4}, + [1992] = {.lex_state = 74, .external_lex_state = 4}, + [1993] = {.lex_state = 74, .external_lex_state = 4}, + [1994] = {.lex_state = 74, .external_lex_state = 4}, + [1995] = {.lex_state = 74, .external_lex_state = 4}, + [1996] = {.lex_state = 74, .external_lex_state = 4}, + [1997] = {.lex_state = 74, .external_lex_state = 4}, + [1998] = {.lex_state = 74, .external_lex_state = 4}, + [1999] = {.lex_state = 74, .external_lex_state = 4}, + [2000] = {.lex_state = 74, .external_lex_state = 4}, + [2001] = {.lex_state = 74, .external_lex_state = 4}, + [2002] = {.lex_state = 74, .external_lex_state = 3}, + [2003] = {.lex_state = 74, .external_lex_state = 3}, + [2004] = {.lex_state = 74, .external_lex_state = 4}, + [2005] = {.lex_state = 74, .external_lex_state = 4}, + [2006] = {.lex_state = 74, .external_lex_state = 4}, + [2007] = {.lex_state = 74, .external_lex_state = 4}, + [2008] = {.lex_state = 74, .external_lex_state = 4}, + [2009] = {.lex_state = 74, .external_lex_state = 4}, + [2010] = {.lex_state = 74, .external_lex_state = 4}, + [2011] = {.lex_state = 74, .external_lex_state = 4}, + [2012] = {.lex_state = 74, .external_lex_state = 4}, + [2013] = {.lex_state = 74, .external_lex_state = 4}, + [2014] = {.lex_state = 75, .external_lex_state = 5}, + [2015] = {.lex_state = 74, .external_lex_state = 4}, + [2016] = {.lex_state = 74, .external_lex_state = 4}, + [2017] = {.lex_state = 74, .external_lex_state = 4}, + [2018] = {.lex_state = 74, .external_lex_state = 4}, + [2019] = {.lex_state = 74, .external_lex_state = 4}, + [2020] = {.lex_state = 74, .external_lex_state = 3}, + [2021] = {.lex_state = 74, .external_lex_state = 4}, + [2022] = {.lex_state = 74, .external_lex_state = 4}, + [2023] = {.lex_state = 74, .external_lex_state = 4}, + [2024] = {.lex_state = 74, .external_lex_state = 4}, + [2025] = {.lex_state = 74, .external_lex_state = 3}, + [2026] = {.lex_state = 74, .external_lex_state = 4}, + [2027] = {.lex_state = 74, .external_lex_state = 3}, + [2028] = {.lex_state = 75, .external_lex_state = 2}, + [2029] = {.lex_state = 74, .external_lex_state = 4}, + [2030] = {.lex_state = 74, .external_lex_state = 4}, + [2031] = {.lex_state = 74, .external_lex_state = 4}, + [2032] = {.lex_state = 74, .external_lex_state = 4}, + [2033] = {.lex_state = 74, .external_lex_state = 4}, + [2034] = {.lex_state = 74, .external_lex_state = 3}, + [2035] = {.lex_state = 74, .external_lex_state = 3}, + [2036] = {.lex_state = 74, .external_lex_state = 4}, + [2037] = {.lex_state = 74, .external_lex_state = 4}, + [2038] = {.lex_state = 74, .external_lex_state = 4}, + [2039] = {.lex_state = 74, .external_lex_state = 4}, + [2040] = {.lex_state = 74, .external_lex_state = 4}, + [2041] = {.lex_state = 74, .external_lex_state = 3}, + [2042] = {.lex_state = 74, .external_lex_state = 4}, + [2043] = {.lex_state = 74, .external_lex_state = 4}, + [2044] = {.lex_state = 74, .external_lex_state = 4}, + [2045] = {.lex_state = 74, .external_lex_state = 4}, + [2046] = {.lex_state = 74, .external_lex_state = 4}, + [2047] = {.lex_state = 74, .external_lex_state = 4}, + [2048] = {.lex_state = 74, .external_lex_state = 4}, + [2049] = {.lex_state = 74, .external_lex_state = 4}, + [2050] = {.lex_state = 74, .external_lex_state = 4}, + [2051] = {.lex_state = 74, .external_lex_state = 4}, + [2052] = {.lex_state = 74, .external_lex_state = 4}, + [2053] = {.lex_state = 74, .external_lex_state = 4}, + [2054] = {.lex_state = 74, .external_lex_state = 4}, + [2055] = {.lex_state = 74, .external_lex_state = 4}, + [2056] = {.lex_state = 74, .external_lex_state = 4}, + [2057] = {.lex_state = 74, .external_lex_state = 4}, + [2058] = {.lex_state = 74, .external_lex_state = 4}, + [2059] = {.lex_state = 74, .external_lex_state = 4}, + [2060] = {.lex_state = 74, .external_lex_state = 4}, + [2061] = {.lex_state = 74, .external_lex_state = 4}, + [2062] = {.lex_state = 74, .external_lex_state = 4}, + [2063] = {.lex_state = 74, .external_lex_state = 4}, + [2064] = {.lex_state = 74, .external_lex_state = 4}, + [2065] = {.lex_state = 75, .external_lex_state = 5}, + [2066] = {.lex_state = 75, .external_lex_state = 5}, + [2067] = {.lex_state = 74, .external_lex_state = 4}, + [2068] = {.lex_state = 75, .external_lex_state = 5}, + [2069] = {.lex_state = 74, .external_lex_state = 4}, + [2070] = {.lex_state = 75, .external_lex_state = 5}, + [2071] = {.lex_state = 75, .external_lex_state = 5}, + [2072] = {.lex_state = 74, .external_lex_state = 4}, + [2073] = {.lex_state = 74, .external_lex_state = 4}, + [2074] = {.lex_state = 74, .external_lex_state = 4}, + [2075] = {.lex_state = 75, .external_lex_state = 2}, + [2076] = {.lex_state = 74, .external_lex_state = 4}, + [2077] = {.lex_state = 74, .external_lex_state = 4}, + [2078] = {.lex_state = 74, .external_lex_state = 4}, + [2079] = {.lex_state = 74, .external_lex_state = 4}, + [2080] = {.lex_state = 74, .external_lex_state = 3}, + [2081] = {.lex_state = 74, .external_lex_state = 3}, + [2082] = {.lex_state = 74, .external_lex_state = 3}, + [2083] = {.lex_state = 74, .external_lex_state = 3}, + [2084] = {.lex_state = 74, .external_lex_state = 3}, + [2085] = {.lex_state = 74, .external_lex_state = 3}, + [2086] = {.lex_state = 74, .external_lex_state = 3}, + [2087] = {.lex_state = 74, .external_lex_state = 3}, + [2088] = {.lex_state = 74, .external_lex_state = 3}, + [2089] = {.lex_state = 74, .external_lex_state = 3}, + [2090] = {.lex_state = 74, .external_lex_state = 3}, + [2091] = {.lex_state = 74, .external_lex_state = 3}, + [2092] = {.lex_state = 74, .external_lex_state = 3}, + [2093] = {.lex_state = 74, .external_lex_state = 3}, + [2094] = {.lex_state = 74, .external_lex_state = 3}, + [2095] = {.lex_state = 74, .external_lex_state = 3}, + [2096] = {.lex_state = 74, .external_lex_state = 3}, + [2097] = {.lex_state = 74, .external_lex_state = 3}, + [2098] = {.lex_state = 74, .external_lex_state = 3}, + [2099] = {.lex_state = 74, .external_lex_state = 3}, + [2100] = {.lex_state = 74, .external_lex_state = 3}, + [2101] = {.lex_state = 74, .external_lex_state = 3}, + [2102] = {.lex_state = 74, .external_lex_state = 3}, + [2103] = {.lex_state = 74, .external_lex_state = 3}, + [2104] = {.lex_state = 74, .external_lex_state = 3}, + [2105] = {.lex_state = 74, .external_lex_state = 3}, + [2106] = {.lex_state = 74, .external_lex_state = 3}, + [2107] = {.lex_state = 74, .external_lex_state = 3}, + [2108] = {.lex_state = 74, .external_lex_state = 3}, + [2109] = {.lex_state = 74, .external_lex_state = 3}, + [2110] = {.lex_state = 74, .external_lex_state = 4}, + [2111] = {.lex_state = 75, .external_lex_state = 5}, + [2112] = {.lex_state = 74, .external_lex_state = 3}, + [2113] = {.lex_state = 74, .external_lex_state = 3}, + [2114] = {.lex_state = 75, .external_lex_state = 5}, + [2115] = {.lex_state = 74, .external_lex_state = 4}, + [2116] = {.lex_state = 74, .external_lex_state = 4}, + [2117] = {.lex_state = 75, .external_lex_state = 5}, + [2118] = {.lex_state = 75, .external_lex_state = 5}, + [2119] = {.lex_state = 75, .external_lex_state = 5}, + [2120] = {.lex_state = 75, .external_lex_state = 5}, + [2121] = {.lex_state = 74, .external_lex_state = 3}, + [2122] = {.lex_state = 75, .external_lex_state = 5}, + [2123] = {.lex_state = 75, .external_lex_state = 5}, + [2124] = {.lex_state = 74, .external_lex_state = 3}, + [2125] = {.lex_state = 74, .external_lex_state = 3}, + [2126] = {.lex_state = 74, .external_lex_state = 3}, + [2127] = {.lex_state = 74, .external_lex_state = 3}, + [2128] = {.lex_state = 74, .external_lex_state = 3}, + [2129] = {.lex_state = 74, .external_lex_state = 3}, + [2130] = {.lex_state = 74, .external_lex_state = 4}, + [2131] = {.lex_state = 74, .external_lex_state = 4}, + [2132] = {.lex_state = 74, .external_lex_state = 4}, + [2133] = {.lex_state = 74, .external_lex_state = 4}, + [2134] = {.lex_state = 74, .external_lex_state = 4}, + [2135] = {.lex_state = 74, .external_lex_state = 3}, + [2136] = {.lex_state = 74, .external_lex_state = 4}, + [2137] = {.lex_state = 75, .external_lex_state = 5}, + [2138] = {.lex_state = 75, .external_lex_state = 5}, + [2139] = {.lex_state = 74, .external_lex_state = 4}, + [2140] = {.lex_state = 74, .external_lex_state = 4}, + [2141] = {.lex_state = 74, .external_lex_state = 4}, + [2142] = {.lex_state = 74, .external_lex_state = 3}, + [2143] = {.lex_state = 74, .external_lex_state = 4}, + [2144] = {.lex_state = 74, .external_lex_state = 3}, + [2145] = {.lex_state = 74, .external_lex_state = 4}, + [2146] = {.lex_state = 74, .external_lex_state = 4}, + [2147] = {.lex_state = 74, .external_lex_state = 4}, + [2148] = {.lex_state = 74, .external_lex_state = 4}, + [2149] = {.lex_state = 74, .external_lex_state = 4}, + [2150] = {.lex_state = 74, .external_lex_state = 4}, + [2151] = {.lex_state = 74, .external_lex_state = 4}, + [2152] = {.lex_state = 74, .external_lex_state = 4}, + [2153] = {.lex_state = 74, .external_lex_state = 4}, + [2154] = {.lex_state = 74, .external_lex_state = 4}, + [2155] = {.lex_state = 74, .external_lex_state = 4}, + [2156] = {.lex_state = 74, .external_lex_state = 4}, + [2157] = {.lex_state = 75, .external_lex_state = 5}, + [2158] = {.lex_state = 74, .external_lex_state = 4}, + [2159] = {.lex_state = 74, .external_lex_state = 4}, + [2160] = {.lex_state = 74, .external_lex_state = 4}, + [2161] = {.lex_state = 74, .external_lex_state = 4}, + [2162] = {.lex_state = 74, .external_lex_state = 4}, + [2163] = {.lex_state = 74, .external_lex_state = 4}, + [2164] = {.lex_state = 74, .external_lex_state = 4}, + [2165] = {.lex_state = 74, .external_lex_state = 4}, + [2166] = {.lex_state = 74, .external_lex_state = 3}, + [2167] = {.lex_state = 74, .external_lex_state = 4}, + [2168] = {.lex_state = 74, .external_lex_state = 4}, + [2169] = {.lex_state = 75, .external_lex_state = 2}, + [2170] = {.lex_state = 74, .external_lex_state = 4}, + [2171] = {.lex_state = 75, .external_lex_state = 5}, + [2172] = {.lex_state = 75, .external_lex_state = 2}, + [2173] = {.lex_state = 74, .external_lex_state = 4}, + [2174] = {.lex_state = 74, .external_lex_state = 3}, + [2175] = {.lex_state = 74, .external_lex_state = 3}, + [2176] = {.lex_state = 74, .external_lex_state = 3}, + [2177] = {.lex_state = 75, .external_lex_state = 5}, + [2178] = {.lex_state = 75, .external_lex_state = 5}, + [2179] = {.lex_state = 75, .external_lex_state = 5}, + [2180] = {.lex_state = 74, .external_lex_state = 4}, + [2181] = {.lex_state = 74, .external_lex_state = 4}, + [2182] = {.lex_state = 74, .external_lex_state = 4}, + [2183] = {.lex_state = 74, .external_lex_state = 3}, + [2184] = {.lex_state = 74, .external_lex_state = 4}, + [2185] = {.lex_state = 74, .external_lex_state = 4}, + [2186] = {.lex_state = 74, .external_lex_state = 4}, + [2187] = {.lex_state = 74, .external_lex_state = 4}, + [2188] = {.lex_state = 74, .external_lex_state = 3}, + [2189] = {.lex_state = 74, .external_lex_state = 4}, + [2190] = {.lex_state = 74, .external_lex_state = 4}, + [2191] = {.lex_state = 74, .external_lex_state = 4}, + [2192] = {.lex_state = 74, .external_lex_state = 4}, + [2193] = {.lex_state = 74, .external_lex_state = 4}, + [2194] = {.lex_state = 74, .external_lex_state = 4}, + [2195] = {.lex_state = 74, .external_lex_state = 4}, + [2196] = {.lex_state = 75, .external_lex_state = 5}, + [2197] = {.lex_state = 74, .external_lex_state = 4}, + [2198] = {.lex_state = 74, .external_lex_state = 4}, + [2199] = {.lex_state = 74, .external_lex_state = 4}, + [2200] = {.lex_state = 74, .external_lex_state = 4}, + [2201] = {.lex_state = 74, .external_lex_state = 4}, + [2202] = {.lex_state = 74, .external_lex_state = 4}, + [2203] = {.lex_state = 75, .external_lex_state = 5}, + [2204] = {.lex_state = 74, .external_lex_state = 4}, + [2205] = {.lex_state = 75, .external_lex_state = 5}, + [2206] = {.lex_state = 74, .external_lex_state = 4}, + [2207] = {.lex_state = 74, .external_lex_state = 4}, + [2208] = {.lex_state = 74, .external_lex_state = 3}, + [2209] = {.lex_state = 4, .external_lex_state = 4}, + [2210] = {.lex_state = 74, .external_lex_state = 4}, + [2211] = {.lex_state = 74, .external_lex_state = 4}, + [2212] = {.lex_state = 74, .external_lex_state = 3}, + [2213] = {.lex_state = 74, .external_lex_state = 3}, + [2214] = {.lex_state = 75, .external_lex_state = 2}, + [2215] = {.lex_state = 75, .external_lex_state = 5}, + [2216] = {.lex_state = 75, .external_lex_state = 5}, + [2217] = {.lex_state = 75, .external_lex_state = 2}, + [2218] = {.lex_state = 75, .external_lex_state = 2}, + [2219] = {.lex_state = 74, .external_lex_state = 3}, + [2220] = {.lex_state = 74, .external_lex_state = 4}, + [2221] = {.lex_state = 4, .external_lex_state = 4}, + [2222] = {.lex_state = 74, .external_lex_state = 4}, + [2223] = {.lex_state = 75, .external_lex_state = 2}, + [2224] = {.lex_state = 74, .external_lex_state = 4}, + [2225] = {.lex_state = 74, .external_lex_state = 3}, + [2226] = {.lex_state = 74, .external_lex_state = 3}, + [2227] = {.lex_state = 74, .external_lex_state = 3}, + [2228] = {.lex_state = 74, .external_lex_state = 4}, + [2229] = {.lex_state = 74, .external_lex_state = 3}, + [2230] = {.lex_state = 74, .external_lex_state = 4}, + [2231] = {.lex_state = 74, .external_lex_state = 3}, + [2232] = {.lex_state = 74, .external_lex_state = 3}, + [2233] = {.lex_state = 74, .external_lex_state = 3}, + [2234] = {.lex_state = 74, .external_lex_state = 4}, + [2235] = {.lex_state = 75, .external_lex_state = 5}, + [2236] = {.lex_state = 74, .external_lex_state = 3}, + [2237] = {.lex_state = 74, .external_lex_state = 3}, + [2238] = {.lex_state = 74, .external_lex_state = 3}, + [2239] = {.lex_state = 74, .external_lex_state = 4}, + [2240] = {.lex_state = 74, .external_lex_state = 4}, + [2241] = {.lex_state = 74, .external_lex_state = 4}, + [2242] = {.lex_state = 74, .external_lex_state = 4}, + [2243] = {.lex_state = 74, .external_lex_state = 3}, + [2244] = {.lex_state = 75, .external_lex_state = 5}, + [2245] = {.lex_state = 74, .external_lex_state = 4}, + [2246] = {.lex_state = 74, .external_lex_state = 4}, + [2247] = {.lex_state = 74, .external_lex_state = 4}, + [2248] = {.lex_state = 75, .external_lex_state = 5}, + [2249] = {.lex_state = 74, .external_lex_state = 4}, + [2250] = {.lex_state = 74, .external_lex_state = 3}, + [2251] = {.lex_state = 74, .external_lex_state = 4}, + [2252] = {.lex_state = 75, .external_lex_state = 5}, + [2253] = {.lex_state = 75, .external_lex_state = 5}, + [2254] = {.lex_state = 74, .external_lex_state = 4}, + [2255] = {.lex_state = 74, .external_lex_state = 4}, + [2256] = {.lex_state = 74, .external_lex_state = 4}, + [2257] = {.lex_state = 75, .external_lex_state = 5}, + [2258] = {.lex_state = 74, .external_lex_state = 4}, + [2259] = {.lex_state = 74, .external_lex_state = 4}, + [2260] = {.lex_state = 74, .external_lex_state = 4}, + [2261] = {.lex_state = 74, .external_lex_state = 3}, + [2262] = {.lex_state = 74, .external_lex_state = 4}, + [2263] = {.lex_state = 75, .external_lex_state = 5}, + [2264] = {.lex_state = 74, .external_lex_state = 3}, + [2265] = {.lex_state = 74, .external_lex_state = 4}, + [2266] = {.lex_state = 74, .external_lex_state = 4}, + [2267] = {.lex_state = 74, .external_lex_state = 4}, + [2268] = {.lex_state = 75, .external_lex_state = 5}, + [2269] = {.lex_state = 74, .external_lex_state = 3}, + [2270] = {.lex_state = 75, .external_lex_state = 5}, + [2271] = {.lex_state = 74, .external_lex_state = 3}, + [2272] = {.lex_state = 74, .external_lex_state = 3}, + [2273] = {.lex_state = 74, .external_lex_state = 3}, + [2274] = {.lex_state = 75, .external_lex_state = 5}, + [2275] = {.lex_state = 74, .external_lex_state = 3}, + [2276] = {.lex_state = 75, .external_lex_state = 5}, + [2277] = {.lex_state = 74, .external_lex_state = 4}, + [2278] = {.lex_state = 74, .external_lex_state = 3}, + [2279] = {.lex_state = 74, .external_lex_state = 4}, + [2280] = {.lex_state = 74, .external_lex_state = 4}, + [2281] = {.lex_state = 74, .external_lex_state = 4}, + [2282] = {.lex_state = 74, .external_lex_state = 4}, + [2283] = {.lex_state = 74, .external_lex_state = 4}, + [2284] = {.lex_state = 74, .external_lex_state = 4}, + [2285] = {.lex_state = 74, .external_lex_state = 3}, + [2286] = {.lex_state = 74, .external_lex_state = 4}, + [2287] = {.lex_state = 74, .external_lex_state = 3}, + [2288] = {.lex_state = 74, .external_lex_state = 3}, + [2289] = {.lex_state = 74, .external_lex_state = 3}, + [2290] = {.lex_state = 74, .external_lex_state = 3}, + [2291] = {.lex_state = 74, .external_lex_state = 3}, + [2292] = {.lex_state = 74, .external_lex_state = 3}, + [2293] = {.lex_state = 74, .external_lex_state = 3}, + [2294] = {.lex_state = 74, .external_lex_state = 3}, + [2295] = {.lex_state = 74, .external_lex_state = 3}, + [2296] = {.lex_state = 74, .external_lex_state = 3}, + [2297] = {.lex_state = 75, .external_lex_state = 5}, + [2298] = {.lex_state = 75, .external_lex_state = 5}, + [2299] = {.lex_state = 74, .external_lex_state = 3}, + [2300] = {.lex_state = 75, .external_lex_state = 5}, + [2301] = {.lex_state = 74, .external_lex_state = 3}, + [2302] = {.lex_state = 74, .external_lex_state = 4}, + [2303] = {.lex_state = 75, .external_lex_state = 5}, + [2304] = {.lex_state = 74, .external_lex_state = 4}, + [2305] = {.lex_state = 74, .external_lex_state = 3}, + [2306] = {.lex_state = 75, .external_lex_state = 5}, + [2307] = {.lex_state = 75, .external_lex_state = 5}, + [2308] = {.lex_state = 74, .external_lex_state = 3}, + [2309] = {.lex_state = 74, .external_lex_state = 4}, + [2310] = {.lex_state = 74, .external_lex_state = 4}, + [2311] = {.lex_state = 74, .external_lex_state = 3}, + [2312] = {.lex_state = 74, .external_lex_state = 3}, + [2313] = {.lex_state = 75, .external_lex_state = 5}, + [2314] = {.lex_state = 74, .external_lex_state = 3}, + [2315] = {.lex_state = 75, .external_lex_state = 2}, + [2316] = {.lex_state = 74, .external_lex_state = 3}, + [2317] = {.lex_state = 74, .external_lex_state = 4}, + [2318] = {.lex_state = 74, .external_lex_state = 4}, + [2319] = {.lex_state = 74, .external_lex_state = 4}, + [2320] = {.lex_state = 74, .external_lex_state = 4}, + [2321] = {.lex_state = 75, .external_lex_state = 2}, + [2322] = {.lex_state = 75, .external_lex_state = 2}, + [2323] = {.lex_state = 74, .external_lex_state = 4}, + [2324] = {.lex_state = 74, .external_lex_state = 4}, + [2325] = {.lex_state = 74, .external_lex_state = 4}, + [2326] = {.lex_state = 74, .external_lex_state = 4}, + [2327] = {.lex_state = 74, .external_lex_state = 4}, + [2328] = {.lex_state = 74, .external_lex_state = 3}, + [2329] = {.lex_state = 74, .external_lex_state = 3}, + [2330] = {.lex_state = 74, .external_lex_state = 3}, + [2331] = {.lex_state = 74, .external_lex_state = 3}, + [2332] = {.lex_state = 75, .external_lex_state = 2}, + [2333] = {.lex_state = 74, .external_lex_state = 4}, + [2334] = {.lex_state = 75, .external_lex_state = 2}, + [2335] = {.lex_state = 75, .external_lex_state = 5}, + [2336] = {.lex_state = 74, .external_lex_state = 3}, + [2337] = {.lex_state = 74, .external_lex_state = 3}, + [2338] = {.lex_state = 74, .external_lex_state = 3}, + [2339] = {.lex_state = 74, .external_lex_state = 3}, + [2340] = {.lex_state = 75, .external_lex_state = 5}, + [2341] = {.lex_state = 74, .external_lex_state = 3}, + [2342] = {.lex_state = 74, .external_lex_state = 4}, + [2343] = {.lex_state = 75, .external_lex_state = 2}, + [2344] = {.lex_state = 75, .external_lex_state = 2}, + [2345] = {.lex_state = 74, .external_lex_state = 4}, + [2346] = {.lex_state = 75, .external_lex_state = 2}, + [2347] = {.lex_state = 75, .external_lex_state = 5}, + [2348] = {.lex_state = 75, .external_lex_state = 5}, + [2349] = {.lex_state = 74, .external_lex_state = 3}, + [2350] = {.lex_state = 74, .external_lex_state = 3}, + [2351] = {.lex_state = 74, .external_lex_state = 3}, + [2352] = {.lex_state = 75, .external_lex_state = 5}, + [2353] = {.lex_state = 74, .external_lex_state = 4}, + [2354] = {.lex_state = 75, .external_lex_state = 5}, + [2355] = {.lex_state = 75, .external_lex_state = 5}, + [2356] = {.lex_state = 74, .external_lex_state = 4}, + [2357] = {.lex_state = 75, .external_lex_state = 5}, + [2358] = {.lex_state = 74, .external_lex_state = 4}, + [2359] = {.lex_state = 74, .external_lex_state = 3}, + [2360] = {.lex_state = 74, .external_lex_state = 3}, + [2361] = {.lex_state = 74, .external_lex_state = 3}, + [2362] = {.lex_state = 74, .external_lex_state = 3}, + [2363] = {.lex_state = 74, .external_lex_state = 3}, + [2364] = {.lex_state = 74, .external_lex_state = 3}, + [2365] = {.lex_state = 74, .external_lex_state = 3}, + [2366] = {.lex_state = 74, .external_lex_state = 3}, + [2367] = {.lex_state = 74, .external_lex_state = 3}, + [2368] = {.lex_state = 74, .external_lex_state = 3}, + [2369] = {.lex_state = 74, .external_lex_state = 3}, + [2370] = {.lex_state = 74, .external_lex_state = 3}, + [2371] = {.lex_state = 74, .external_lex_state = 3}, + [2372] = {.lex_state = 74, .external_lex_state = 4}, + [2373] = {.lex_state = 74, .external_lex_state = 3}, + [2374] = {.lex_state = 75, .external_lex_state = 2}, + [2375] = {.lex_state = 75, .external_lex_state = 5}, + [2376] = {.lex_state = 74, .external_lex_state = 3}, + [2377] = {.lex_state = 74, .external_lex_state = 4}, + [2378] = {.lex_state = 75, .external_lex_state = 2}, + [2379] = {.lex_state = 75, .external_lex_state = 5}, + [2380] = {.lex_state = 75, .external_lex_state = 5}, + [2381] = {.lex_state = 74, .external_lex_state = 4}, + [2382] = {.lex_state = 74, .external_lex_state = 3}, + [2383] = {.lex_state = 75, .external_lex_state = 5}, + [2384] = {.lex_state = 75, .external_lex_state = 2}, + [2385] = {.lex_state = 4, .external_lex_state = 3}, + [2386] = {.lex_state = 74, .external_lex_state = 3}, + [2387] = {.lex_state = 74, .external_lex_state = 3}, + [2388] = {.lex_state = 74, .external_lex_state = 3}, + [2389] = {.lex_state = 74, .external_lex_state = 3}, + [2390] = {.lex_state = 74, .external_lex_state = 3}, + [2391] = {.lex_state = 74, .external_lex_state = 3}, + [2392] = {.lex_state = 74, .external_lex_state = 3}, + [2393] = {.lex_state = 74, .external_lex_state = 3}, + [2394] = {.lex_state = 74, .external_lex_state = 3}, + [2395] = {.lex_state = 74, .external_lex_state = 3}, + [2396] = {.lex_state = 74, .external_lex_state = 3}, + [2397] = {.lex_state = 75, .external_lex_state = 2}, + [2398] = {.lex_state = 75, .external_lex_state = 5}, + [2399] = {.lex_state = 74, .external_lex_state = 3}, + [2400] = {.lex_state = 74, .external_lex_state = 3}, + [2401] = {.lex_state = 75, .external_lex_state = 5}, + [2402] = {.lex_state = 74, .external_lex_state = 3}, + [2403] = {.lex_state = 74, .external_lex_state = 3}, + [2404] = {.lex_state = 74, .external_lex_state = 3}, + [2405] = {.lex_state = 74, .external_lex_state = 3}, + [2406] = {.lex_state = 74, .external_lex_state = 3}, + [2407] = {.lex_state = 74, .external_lex_state = 3}, + [2408] = {.lex_state = 74, .external_lex_state = 3}, + [2409] = {.lex_state = 74, .external_lex_state = 3}, + [2410] = {.lex_state = 74, .external_lex_state = 3}, + [2411] = {.lex_state = 74, .external_lex_state = 4}, + [2412] = {.lex_state = 74, .external_lex_state = 3}, + [2413] = {.lex_state = 74, .external_lex_state = 3}, + [2414] = {.lex_state = 74, .external_lex_state = 3}, + [2415] = {.lex_state = 74, .external_lex_state = 3}, + [2416] = {.lex_state = 74, .external_lex_state = 3}, + [2417] = {.lex_state = 74, .external_lex_state = 3}, + [2418] = {.lex_state = 74, .external_lex_state = 3}, + [2419] = {.lex_state = 74, .external_lex_state = 3}, + [2420] = {.lex_state = 74, .external_lex_state = 3}, + [2421] = {.lex_state = 74, .external_lex_state = 3}, + [2422] = {.lex_state = 74, .external_lex_state = 3}, + [2423] = {.lex_state = 74, .external_lex_state = 3}, + [2424] = {.lex_state = 74, .external_lex_state = 3}, + [2425] = {.lex_state = 74, .external_lex_state = 3}, + [2426] = {.lex_state = 74, .external_lex_state = 3}, + [2427] = {.lex_state = 74, .external_lex_state = 3}, + [2428] = {.lex_state = 75, .external_lex_state = 5}, + [2429] = {.lex_state = 75, .external_lex_state = 2}, + [2430] = {.lex_state = 74, .external_lex_state = 3}, + [2431] = {.lex_state = 75, .external_lex_state = 5}, + [2432] = {.lex_state = 74, .external_lex_state = 3}, + [2433] = {.lex_state = 74, .external_lex_state = 3}, + [2434] = {.lex_state = 75, .external_lex_state = 5}, + [2435] = {.lex_state = 74, .external_lex_state = 4}, + [2436] = {.lex_state = 74, .external_lex_state = 3}, + [2437] = {.lex_state = 75, .external_lex_state = 5}, + [2438] = {.lex_state = 75, .external_lex_state = 2}, + [2439] = {.lex_state = 74, .external_lex_state = 3}, + [2440] = {.lex_state = 75, .external_lex_state = 5}, + [2441] = {.lex_state = 74, .external_lex_state = 4}, + [2442] = {.lex_state = 74, .external_lex_state = 3}, + [2443] = {.lex_state = 75, .external_lex_state = 5}, + [2444] = {.lex_state = 75, .external_lex_state = 5}, + [2445] = {.lex_state = 75, .external_lex_state = 2}, + [2446] = {.lex_state = 74, .external_lex_state = 3}, + [2447] = {.lex_state = 74, .external_lex_state = 3}, + [2448] = {.lex_state = 74, .external_lex_state = 3}, + [2449] = {.lex_state = 74, .external_lex_state = 3}, + [2450] = {.lex_state = 74, .external_lex_state = 3}, + [2451] = {.lex_state = 75, .external_lex_state = 5}, + [2452] = {.lex_state = 75, .external_lex_state = 5}, + [2453] = {.lex_state = 74, .external_lex_state = 4}, + [2454] = {.lex_state = 74, .external_lex_state = 4}, + [2455] = {.lex_state = 75, .external_lex_state = 5}, + [2456] = {.lex_state = 74, .external_lex_state = 3}, + [2457] = {.lex_state = 75, .external_lex_state = 2}, + [2458] = {.lex_state = 74, .external_lex_state = 3}, + [2459] = {.lex_state = 75, .external_lex_state = 5}, + [2460] = {.lex_state = 74, .external_lex_state = 3}, + [2461] = {.lex_state = 75, .external_lex_state = 5}, + [2462] = {.lex_state = 74, .external_lex_state = 3}, + [2463] = {.lex_state = 75, .external_lex_state = 5}, + [2464] = {.lex_state = 74, .external_lex_state = 3}, + [2465] = {.lex_state = 74, .external_lex_state = 3}, + [2466] = {.lex_state = 75, .external_lex_state = 5}, + [2467] = {.lex_state = 74, .external_lex_state = 3}, + [2468] = {.lex_state = 74, .external_lex_state = 3}, + [2469] = {.lex_state = 74, .external_lex_state = 3}, + [2470] = {.lex_state = 74, .external_lex_state = 3}, + [2471] = {.lex_state = 74, .external_lex_state = 3}, + [2472] = {.lex_state = 74, .external_lex_state = 3}, + [2473] = {.lex_state = 75, .external_lex_state = 2}, + [2474] = {.lex_state = 74, .external_lex_state = 3}, + [2475] = {.lex_state = 75, .external_lex_state = 5}, + [2476] = {.lex_state = 74, .external_lex_state = 4}, + [2477] = {.lex_state = 74, .external_lex_state = 4}, + [2478] = {.lex_state = 75, .external_lex_state = 2}, + [2479] = {.lex_state = 74, .external_lex_state = 3}, + [2480] = {.lex_state = 74, .external_lex_state = 4}, + [2481] = {.lex_state = 74, .external_lex_state = 3}, + [2482] = {.lex_state = 74, .external_lex_state = 3}, + [2483] = {.lex_state = 74, .external_lex_state = 3}, + [2484] = {.lex_state = 74, .external_lex_state = 3}, + [2485] = {.lex_state = 74, .external_lex_state = 3}, + [2486] = {.lex_state = 74, .external_lex_state = 3}, + [2487] = {.lex_state = 74, .external_lex_state = 3}, + [2488] = {.lex_state = 74, .external_lex_state = 3}, + [2489] = {.lex_state = 74, .external_lex_state = 3}, + [2490] = {.lex_state = 74, .external_lex_state = 3}, + [2491] = {.lex_state = 74, .external_lex_state = 3}, + [2492] = {.lex_state = 74, .external_lex_state = 3}, + [2493] = {.lex_state = 74, .external_lex_state = 3}, + [2494] = {.lex_state = 74, .external_lex_state = 3}, + [2495] = {.lex_state = 74, .external_lex_state = 3}, + [2496] = {.lex_state = 74, .external_lex_state = 3}, + [2497] = {.lex_state = 74, .external_lex_state = 3}, + [2498] = {.lex_state = 74, .external_lex_state = 3}, + [2499] = {.lex_state = 74, .external_lex_state = 3}, + [2500] = {.lex_state = 74, .external_lex_state = 3}, + [2501] = {.lex_state = 74, .external_lex_state = 3}, + [2502] = {.lex_state = 74, .external_lex_state = 3}, + [2503] = {.lex_state = 74, .external_lex_state = 3}, + [2504] = {.lex_state = 74, .external_lex_state = 3}, + [2505] = {.lex_state = 74, .external_lex_state = 3}, + [2506] = {.lex_state = 74, .external_lex_state = 3}, + [2507] = {.lex_state = 74, .external_lex_state = 3}, + [2508] = {.lex_state = 74, .external_lex_state = 3}, + [2509] = {.lex_state = 74, .external_lex_state = 3}, + [2510] = {.lex_state = 75, .external_lex_state = 5}, + [2511] = {.lex_state = 74, .external_lex_state = 3}, + [2512] = {.lex_state = 74, .external_lex_state = 3}, + [2513] = {.lex_state = 74, .external_lex_state = 4}, + [2514] = {.lex_state = 74, .external_lex_state = 3}, + [2515] = {.lex_state = 74, .external_lex_state = 3}, + [2516] = {.lex_state = 74, .external_lex_state = 3}, + [2517] = {.lex_state = 74, .external_lex_state = 3}, + [2518] = {.lex_state = 74, .external_lex_state = 3}, + [2519] = {.lex_state = 74, .external_lex_state = 3}, + [2520] = {.lex_state = 75, .external_lex_state = 5}, + [2521] = {.lex_state = 74, .external_lex_state = 3}, + [2522] = {.lex_state = 74, .external_lex_state = 3}, + [2523] = {.lex_state = 74, .external_lex_state = 3}, + [2524] = {.lex_state = 75, .external_lex_state = 5}, + [2525] = {.lex_state = 75, .external_lex_state = 2}, + [2526] = {.lex_state = 75, .external_lex_state = 5}, + [2527] = {.lex_state = 74, .external_lex_state = 3}, + [2528] = {.lex_state = 74, .external_lex_state = 3}, + [2529] = {.lex_state = 74, .external_lex_state = 3}, + [2530] = {.lex_state = 74, .external_lex_state = 3}, + [2531] = {.lex_state = 74, .external_lex_state = 3}, + [2532] = {.lex_state = 74, .external_lex_state = 3}, + [2533] = {.lex_state = 74, .external_lex_state = 3}, + [2534] = {.lex_state = 74, .external_lex_state = 3}, + [2535] = {.lex_state = 74, .external_lex_state = 3}, + [2536] = {.lex_state = 74, .external_lex_state = 3}, + [2537] = {.lex_state = 74, .external_lex_state = 3}, + [2538] = {.lex_state = 74, .external_lex_state = 3}, + [2539] = {.lex_state = 74, .external_lex_state = 3}, + [2540] = {.lex_state = 74, .external_lex_state = 3}, + [2541] = {.lex_state = 74, .external_lex_state = 3}, + [2542] = {.lex_state = 74, .external_lex_state = 3}, + [2543] = {.lex_state = 74, .external_lex_state = 3}, + [2544] = {.lex_state = 74, .external_lex_state = 3}, + [2545] = {.lex_state = 74, .external_lex_state = 3}, + [2546] = {.lex_state = 74, .external_lex_state = 3}, + [2547] = {.lex_state = 74, .external_lex_state = 3}, + [2548] = {.lex_state = 74, .external_lex_state = 3}, + [2549] = {.lex_state = 74, .external_lex_state = 3}, + [2550] = {.lex_state = 74, .external_lex_state = 3}, + [2551] = {.lex_state = 74, .external_lex_state = 3}, + [2552] = {.lex_state = 74, .external_lex_state = 3}, + [2553] = {.lex_state = 74, .external_lex_state = 3}, + [2554] = {.lex_state = 75, .external_lex_state = 5}, + [2555] = {.lex_state = 75, .external_lex_state = 5}, + [2556] = {.lex_state = 75, .external_lex_state = 2}, + [2557] = {.lex_state = 74, .external_lex_state = 3}, + [2558] = {.lex_state = 74, .external_lex_state = 3}, + [2559] = {.lex_state = 74, .external_lex_state = 3}, + [2560] = {.lex_state = 74, .external_lex_state = 3}, + [2561] = {.lex_state = 75, .external_lex_state = 2}, + [2562] = {.lex_state = 74, .external_lex_state = 3}, + [2563] = {.lex_state = 75, .external_lex_state = 2}, + [2564] = {.lex_state = 74, .external_lex_state = 3}, + [2565] = {.lex_state = 74, .external_lex_state = 3}, + [2566] = {.lex_state = 74, .external_lex_state = 3}, + [2567] = {.lex_state = 74, .external_lex_state = 3}, + [2568] = {.lex_state = 74, .external_lex_state = 3}, + [2569] = {.lex_state = 75, .external_lex_state = 2}, + [2570] = {.lex_state = 75, .external_lex_state = 2}, + [2571] = {.lex_state = 74, .external_lex_state = 3}, + [2572] = {.lex_state = 74, .external_lex_state = 3}, + [2573] = {.lex_state = 74, .external_lex_state = 3}, + [2574] = {.lex_state = 74, .external_lex_state = 3}, + [2575] = {.lex_state = 74, .external_lex_state = 3}, + [2576] = {.lex_state = 74, .external_lex_state = 3}, + [2577] = {.lex_state = 74, .external_lex_state = 3}, + [2578] = {.lex_state = 74, .external_lex_state = 3}, + [2579] = {.lex_state = 74, .external_lex_state = 3}, + [2580] = {.lex_state = 74, .external_lex_state = 3}, + [2581] = {.lex_state = 75, .external_lex_state = 2}, + [2582] = {.lex_state = 75, .external_lex_state = 2}, + [2583] = {.lex_state = 75, .external_lex_state = 5}, + [2584] = {.lex_state = 75, .external_lex_state = 5}, + [2585] = {.lex_state = 75, .external_lex_state = 5}, + [2586] = {.lex_state = 75, .external_lex_state = 5}, + [2587] = {.lex_state = 74, .external_lex_state = 3}, + [2588] = {.lex_state = 74, .external_lex_state = 3}, + [2589] = {.lex_state = 74, .external_lex_state = 3}, + [2590] = {.lex_state = 74, .external_lex_state = 3}, + [2591] = {.lex_state = 74, .external_lex_state = 3}, + [2592] = {.lex_state = 74, .external_lex_state = 3}, + [2593] = {.lex_state = 75, .external_lex_state = 5}, + [2594] = {.lex_state = 75, .external_lex_state = 5}, + [2595] = {.lex_state = 74, .external_lex_state = 3}, + [2596] = {.lex_state = 74, .external_lex_state = 3}, + [2597] = {.lex_state = 74, .external_lex_state = 3}, + [2598] = {.lex_state = 74, .external_lex_state = 3}, + [2599] = {.lex_state = 74, .external_lex_state = 4}, + [2600] = {.lex_state = 75, .external_lex_state = 5}, + [2601] = {.lex_state = 74, .external_lex_state = 3}, + [2602] = {.lex_state = 75, .external_lex_state = 5}, + [2603] = {.lex_state = 74, .external_lex_state = 3}, + [2604] = {.lex_state = 74, .external_lex_state = 3}, + [2605] = {.lex_state = 74, .external_lex_state = 3}, + [2606] = {.lex_state = 74, .external_lex_state = 3}, + [2607] = {.lex_state = 75, .external_lex_state = 5}, + [2608] = {.lex_state = 74, .external_lex_state = 3}, + [2609] = {.lex_state = 75, .external_lex_state = 2}, + [2610] = {.lex_state = 75, .external_lex_state = 2}, + [2611] = {.lex_state = 74, .external_lex_state = 3}, + [2612] = {.lex_state = 75, .external_lex_state = 5}, + [2613] = {.lex_state = 75, .external_lex_state = 2}, + [2614] = {.lex_state = 75, .external_lex_state = 2}, + [2615] = {.lex_state = 75, .external_lex_state = 2}, + [2616] = {.lex_state = 75, .external_lex_state = 2}, + [2617] = {.lex_state = 75, .external_lex_state = 2}, + [2618] = {.lex_state = 75, .external_lex_state = 2}, + [2619] = {.lex_state = 75, .external_lex_state = 5}, + [2620] = {.lex_state = 75, .external_lex_state = 2}, + [2621] = {.lex_state = 75, .external_lex_state = 2}, + [2622] = {.lex_state = 74, .external_lex_state = 3}, + [2623] = {.lex_state = 75, .external_lex_state = 2}, + [2624] = {.lex_state = 75, .external_lex_state = 5}, + [2625] = {.lex_state = 75, .external_lex_state = 5}, + [2626] = {.lex_state = 75, .external_lex_state = 2}, + [2627] = {.lex_state = 75, .external_lex_state = 2}, + [2628] = {.lex_state = 75, .external_lex_state = 2}, + [2629] = {.lex_state = 75, .external_lex_state = 2}, + [2630] = {.lex_state = 75, .external_lex_state = 2}, + [2631] = {.lex_state = 75, .external_lex_state = 5}, + [2632] = {.lex_state = 75, .external_lex_state = 5}, + [2633] = {.lex_state = 75, .external_lex_state = 5}, + [2634] = {.lex_state = 75, .external_lex_state = 5}, + [2635] = {.lex_state = 75, .external_lex_state = 5}, + [2636] = {.lex_state = 75, .external_lex_state = 5}, + [2637] = {.lex_state = 75, .external_lex_state = 5}, + [2638] = {.lex_state = 4, .external_lex_state = 3}, + [2639] = {.lex_state = 75, .external_lex_state = 5}, + [2640] = {.lex_state = 75, .external_lex_state = 5}, + [2641] = {.lex_state = 75, .external_lex_state = 5}, + [2642] = {.lex_state = 74, .external_lex_state = 3}, + [2643] = {.lex_state = 74, .external_lex_state = 3}, + [2644] = {.lex_state = 74, .external_lex_state = 3}, + [2645] = {.lex_state = 75, .external_lex_state = 5}, + [2646] = {.lex_state = 74, .external_lex_state = 3}, + [2647] = {.lex_state = 75, .external_lex_state = 5}, + [2648] = {.lex_state = 9, .external_lex_state = 5}, + [2649] = {.lex_state = 9, .external_lex_state = 5}, + [2650] = {.lex_state = 9, .external_lex_state = 5}, + [2651] = {.lex_state = 9, .external_lex_state = 5}, + [2652] = {.lex_state = 74, .external_lex_state = 3}, + [2653] = {.lex_state = 9, .external_lex_state = 5}, + [2654] = {.lex_state = 9, .external_lex_state = 5}, + [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 = 9, .external_lex_state = 5}, + [2659] = {.lex_state = 9, .external_lex_state = 5}, + [2660] = {.lex_state = 9, .external_lex_state = 5}, + [2661] = {.lex_state = 9, .external_lex_state = 5}, + [2662] = {.lex_state = 9, .external_lex_state = 5}, + [2663] = {.lex_state = 9, .external_lex_state = 5}, + [2664] = {.lex_state = 9, .external_lex_state = 5}, + [2665] = {.lex_state = 9, .external_lex_state = 5}, + [2666] = {.lex_state = 9, .external_lex_state = 5}, + [2667] = {.lex_state = 74, .external_lex_state = 3}, + [2668] = {.lex_state = 9, .external_lex_state = 5}, + [2669] = {.lex_state = 9, .external_lex_state = 5}, + [2670] = {.lex_state = 9, .external_lex_state = 5}, + [2671] = {.lex_state = 9, .external_lex_state = 5}, + [2672] = {.lex_state = 9, .external_lex_state = 5}, + [2673] = {.lex_state = 9, .external_lex_state = 5}, + [2674] = {.lex_state = 9, .external_lex_state = 5}, + [2675] = {.lex_state = 74, .external_lex_state = 3}, + [2676] = {.lex_state = 74, .external_lex_state = 3}, + [2677] = {.lex_state = 74, .external_lex_state = 3}, + [2678] = {.lex_state = 9, .external_lex_state = 5}, + [2679] = {.lex_state = 9, .external_lex_state = 5}, + [2680] = {.lex_state = 9, .external_lex_state = 5}, + [2681] = {.lex_state = 9, .external_lex_state = 5}, + [2682] = {.lex_state = 74, .external_lex_state = 3}, + [2683] = {.lex_state = 75, .external_lex_state = 2}, + [2684] = {.lex_state = 9, .external_lex_state = 5}, + [2685] = {.lex_state = 9, .external_lex_state = 5}, + [2686] = {.lex_state = 74, .external_lex_state = 3}, + [2687] = {.lex_state = 9, .external_lex_state = 5}, + [2688] = {.lex_state = 9, .external_lex_state = 5}, + [2689] = {.lex_state = 74, .external_lex_state = 3}, + [2690] = {.lex_state = 9, .external_lex_state = 5}, + [2691] = {.lex_state = 9, .external_lex_state = 5}, + [2692] = {.lex_state = 9, .external_lex_state = 5}, + [2693] = {.lex_state = 9, .external_lex_state = 5}, + [2694] = {.lex_state = 74, .external_lex_state = 3}, + [2695] = {.lex_state = 9, .external_lex_state = 5}, + [2696] = {.lex_state = 9, .external_lex_state = 5}, + [2697] = {.lex_state = 9, .external_lex_state = 5}, + [2698] = {.lex_state = 9, .external_lex_state = 5}, + [2699] = {.lex_state = 9, .external_lex_state = 5}, + [2700] = {.lex_state = 9, .external_lex_state = 5}, + [2701] = {.lex_state = 9, .external_lex_state = 5}, + [2702] = {.lex_state = 9, .external_lex_state = 5}, + [2703] = {.lex_state = 9, .external_lex_state = 5}, + [2704] = {.lex_state = 9, .external_lex_state = 5}, + [2705] = {.lex_state = 9, .external_lex_state = 5}, + [2706] = {.lex_state = 74, .external_lex_state = 3}, + [2707] = {.lex_state = 9, .external_lex_state = 5}, + [2708] = {.lex_state = 9, .external_lex_state = 5}, + [2709] = {.lex_state = 74, .external_lex_state = 3}, + [2710] = {.lex_state = 9, .external_lex_state = 5}, + [2711] = {.lex_state = 75, .external_lex_state = 2}, + [2712] = {.lex_state = 9, .external_lex_state = 5}, + [2713] = {.lex_state = 75, .external_lex_state = 2}, + [2714] = {.lex_state = 75, .external_lex_state = 2}, + [2715] = {.lex_state = 9, .external_lex_state = 2}, + [2716] = {.lex_state = 9, .external_lex_state = 2}, + [2717] = {.lex_state = 9, .external_lex_state = 2}, + [2718] = {.lex_state = 9, .external_lex_state = 2}, + [2719] = {.lex_state = 74, .external_lex_state = 3}, + [2720] = {.lex_state = 9, .external_lex_state = 2}, + [2721] = {.lex_state = 9, .external_lex_state = 2}, + [2722] = {.lex_state = 75, .external_lex_state = 2}, + [2723] = {.lex_state = 9, .external_lex_state = 2}, + [2724] = {.lex_state = 75, .external_lex_state = 2}, + [2725] = {.lex_state = 75, .external_lex_state = 2}, + [2726] = {.lex_state = 75, .external_lex_state = 2}, + [2727] = {.lex_state = 75, .external_lex_state = 2}, + [2728] = {.lex_state = 75, .external_lex_state = 2}, + [2729] = {.lex_state = 75, .external_lex_state = 2}, + [2730] = {.lex_state = 75, .external_lex_state = 2}, + [2731] = {.lex_state = 75, .external_lex_state = 2}, + [2732] = {.lex_state = 75, .external_lex_state = 2}, + [2733] = {.lex_state = 75, .external_lex_state = 2}, + [2734] = {.lex_state = 75, .external_lex_state = 2}, + [2735] = {.lex_state = 75, .external_lex_state = 2}, + [2736] = {.lex_state = 75, .external_lex_state = 2}, + [2737] = {.lex_state = 75, .external_lex_state = 2}, + [2738] = {.lex_state = 75, .external_lex_state = 2}, + [2739] = {.lex_state = 75, .external_lex_state = 2}, + [2740] = {.lex_state = 75, .external_lex_state = 2}, + [2741] = {.lex_state = 75, .external_lex_state = 2}, + [2742] = {.lex_state = 75, .external_lex_state = 2}, + [2743] = {.lex_state = 75, .external_lex_state = 2}, + [2744] = {.lex_state = 75, .external_lex_state = 2}, + [2745] = {.lex_state = 75, .external_lex_state = 2}, + [2746] = {.lex_state = 75, .external_lex_state = 2}, + [2747] = {.lex_state = 75, .external_lex_state = 2}, + [2748] = {.lex_state = 75, .external_lex_state = 2}, + [2749] = {.lex_state = 75, .external_lex_state = 2}, + [2750] = {.lex_state = 75, .external_lex_state = 2}, + [2751] = {.lex_state = 75, .external_lex_state = 2}, + [2752] = {.lex_state = 75, .external_lex_state = 2}, + [2753] = {.lex_state = 75, .external_lex_state = 2}, + [2754] = {.lex_state = 75, .external_lex_state = 2}, + [2755] = {.lex_state = 75, .external_lex_state = 2}, + [2756] = {.lex_state = 75, .external_lex_state = 2}, + [2757] = {.lex_state = 75, .external_lex_state = 2}, + [2758] = {.lex_state = 75, .external_lex_state = 2}, + [2759] = {.lex_state = 75, .external_lex_state = 2}, + [2760] = {.lex_state = 75, .external_lex_state = 2}, + [2761] = {.lex_state = 75, .external_lex_state = 2}, + [2762] = {.lex_state = 75, .external_lex_state = 2}, + [2763] = {.lex_state = 75, .external_lex_state = 2}, + [2764] = {.lex_state = 75, .external_lex_state = 2}, + [2765] = {.lex_state = 75, .external_lex_state = 2}, + [2766] = {.lex_state = 75, .external_lex_state = 2}, + [2767] = {.lex_state = 75, .external_lex_state = 2}, + [2768] = {.lex_state = 75, .external_lex_state = 2}, + [2769] = {.lex_state = 75, .external_lex_state = 2}, + [2770] = {.lex_state = 75, .external_lex_state = 2}, + [2771] = {.lex_state = 75, .external_lex_state = 2}, + [2772] = {.lex_state = 75, .external_lex_state = 2}, + [2773] = {.lex_state = 75, .external_lex_state = 2}, + [2774] = {.lex_state = 75, .external_lex_state = 2}, + [2775] = {.lex_state = 75, .external_lex_state = 2}, + [2776] = {.lex_state = 75, .external_lex_state = 2}, + [2777] = {.lex_state = 75, .external_lex_state = 2}, + [2778] = {.lex_state = 75, .external_lex_state = 2}, + [2779] = {.lex_state = 75, .external_lex_state = 2}, + [2780] = {.lex_state = 75, .external_lex_state = 2}, + [2781] = {.lex_state = 75, .external_lex_state = 2}, + [2782] = {.lex_state = 75, .external_lex_state = 2}, + [2783] = {.lex_state = 75, .external_lex_state = 2}, + [2784] = {.lex_state = 75, .external_lex_state = 2}, + [2785] = {.lex_state = 75, .external_lex_state = 2}, + [2786] = {.lex_state = 75, .external_lex_state = 2}, + [2787] = {.lex_state = 75, .external_lex_state = 2}, + [2788] = {.lex_state = 75, .external_lex_state = 2}, + [2789] = {.lex_state = 75, .external_lex_state = 2}, + [2790] = {.lex_state = 75, .external_lex_state = 2}, + [2791] = {.lex_state = 75, .external_lex_state = 2}, + [2792] = {.lex_state = 75, .external_lex_state = 2}, + [2793] = {.lex_state = 75, .external_lex_state = 2}, + [2794] = {.lex_state = 75, .external_lex_state = 2}, + [2795] = {.lex_state = 75, .external_lex_state = 2}, + [2796] = {.lex_state = 75, .external_lex_state = 2}, + [2797] = {.lex_state = 75, .external_lex_state = 2}, + [2798] = {.lex_state = 75, .external_lex_state = 2}, + [2799] = {.lex_state = 75, .external_lex_state = 2}, + [2800] = {.lex_state = 75, .external_lex_state = 2}, + [2801] = {.lex_state = 75, .external_lex_state = 2}, + [2802] = {.lex_state = 75, .external_lex_state = 2}, + [2803] = {.lex_state = 75, .external_lex_state = 2}, + [2804] = {.lex_state = 75, .external_lex_state = 2}, + [2805] = {.lex_state = 75, .external_lex_state = 2}, + [2806] = {.lex_state = 75, .external_lex_state = 2}, + [2807] = {.lex_state = 75, .external_lex_state = 2}, + [2808] = {.lex_state = 75, .external_lex_state = 2}, + [2809] = {.lex_state = 75, .external_lex_state = 2}, + [2810] = {.lex_state = 75, .external_lex_state = 2}, + [2811] = {.lex_state = 75, .external_lex_state = 2}, + [2812] = {.lex_state = 75, .external_lex_state = 2}, + [2813] = {.lex_state = 75, .external_lex_state = 2}, + [2814] = {.lex_state = 75, .external_lex_state = 2}, + [2815] = {.lex_state = 75, .external_lex_state = 2}, + [2816] = {.lex_state = 75, .external_lex_state = 2}, + [2817] = {.lex_state = 75, .external_lex_state = 2}, + [2818] = {.lex_state = 75, .external_lex_state = 2}, + [2819] = {.lex_state = 75, .external_lex_state = 2}, + [2820] = {.lex_state = 75, .external_lex_state = 2}, + [2821] = {.lex_state = 75, .external_lex_state = 2}, + [2822] = {.lex_state = 75, .external_lex_state = 2}, + [2823] = {.lex_state = 75, .external_lex_state = 2}, + [2824] = {.lex_state = 75, .external_lex_state = 2}, + [2825] = {.lex_state = 75, .external_lex_state = 2}, + [2826] = {.lex_state = 75, .external_lex_state = 2}, + [2827] = {.lex_state = 75, .external_lex_state = 2}, + [2828] = {.lex_state = 75, .external_lex_state = 2}, + [2829] = {.lex_state = 75, .external_lex_state = 2}, + [2830] = {.lex_state = 75, .external_lex_state = 2}, + [2831] = {.lex_state = 75, .external_lex_state = 2}, + [2832] = {.lex_state = 75, .external_lex_state = 2}, + [2833] = {.lex_state = 75, .external_lex_state = 2}, + [2834] = {.lex_state = 75, .external_lex_state = 2}, + [2835] = {.lex_state = 75, .external_lex_state = 2}, + [2836] = {.lex_state = 75, .external_lex_state = 2}, + [2837] = {.lex_state = 75, .external_lex_state = 2}, + [2838] = {.lex_state = 75, .external_lex_state = 2}, + [2839] = {.lex_state = 75, .external_lex_state = 2}, + [2840] = {.lex_state = 75, .external_lex_state = 2}, + [2841] = {.lex_state = 75, .external_lex_state = 2}, + [2842] = {.lex_state = 75, .external_lex_state = 2}, + [2843] = {.lex_state = 75, .external_lex_state = 2}, + [2844] = {.lex_state = 75, .external_lex_state = 2}, + [2845] = {.lex_state = 75, .external_lex_state = 2}, + [2846] = {.lex_state = 75, .external_lex_state = 2}, + [2847] = {.lex_state = 75, .external_lex_state = 2}, + [2848] = {.lex_state = 75, .external_lex_state = 2}, + [2849] = {.lex_state = 75, .external_lex_state = 2}, + [2850] = {.lex_state = 75, .external_lex_state = 2}, + [2851] = {.lex_state = 75, .external_lex_state = 2}, + [2852] = {.lex_state = 75, .external_lex_state = 2}, + [2853] = {.lex_state = 75, .external_lex_state = 2}, + [2854] = {.lex_state = 75, .external_lex_state = 2}, + [2855] = {.lex_state = 75, .external_lex_state = 2}, + [2856] = {.lex_state = 75, .external_lex_state = 2}, + [2857] = {.lex_state = 75, .external_lex_state = 2}, + [2858] = {.lex_state = 75, .external_lex_state = 2}, + [2859] = {.lex_state = 75, .external_lex_state = 2}, + [2860] = {.lex_state = 75, .external_lex_state = 2}, + [2861] = {.lex_state = 75, .external_lex_state = 2}, + [2862] = {.lex_state = 75, .external_lex_state = 2}, + [2863] = {.lex_state = 75, .external_lex_state = 2}, + [2864] = {.lex_state = 75, .external_lex_state = 2}, + [2865] = {.lex_state = 75, .external_lex_state = 2}, + [2866] = {.lex_state = 75, .external_lex_state = 2}, + [2867] = {.lex_state = 75, .external_lex_state = 2}, + [2868] = {.lex_state = 75, .external_lex_state = 2}, + [2869] = {.lex_state = 75, .external_lex_state = 2}, + [2870] = {.lex_state = 75, .external_lex_state = 2}, + [2871] = {.lex_state = 75, .external_lex_state = 2}, + [2872] = {.lex_state = 75, .external_lex_state = 2}, + [2873] = {.lex_state = 75, .external_lex_state = 2}, + [2874] = {.lex_state = 75, .external_lex_state = 2}, + [2875] = {.lex_state = 75, .external_lex_state = 2}, + [2876] = {.lex_state = 7, .external_lex_state = 2}, + [2877] = {.lex_state = 7, .external_lex_state = 2}, + [2878] = {.lex_state = 7, .external_lex_state = 2}, + [2879] = {.lex_state = 7, .external_lex_state = 2}, + [2880] = {.lex_state = 7, .external_lex_state = 2}, + [2881] = {.lex_state = 7, .external_lex_state = 2}, + [2882] = {.lex_state = 7, .external_lex_state = 2}, + [2883] = {.lex_state = 7, .external_lex_state = 2}, + [2884] = {.lex_state = 7, .external_lex_state = 2}, + [2885] = {.lex_state = 7, .external_lex_state = 2}, + [2886] = {.lex_state = 7, .external_lex_state = 2}, + [2887] = {.lex_state = 7, .external_lex_state = 2}, + [2888] = {.lex_state = 7, .external_lex_state = 2}, + [2889] = {.lex_state = 7, .external_lex_state = 2}, + [2890] = {.lex_state = 7, .external_lex_state = 2}, + [2891] = {.lex_state = 7, .external_lex_state = 2}, + [2892] = {.lex_state = 7, .external_lex_state = 2}, + [2893] = {.lex_state = 7, .external_lex_state = 2}, + [2894] = {.lex_state = 7, .external_lex_state = 2}, + [2895] = {.lex_state = 7, .external_lex_state = 2}, + [2896] = {.lex_state = 7, .external_lex_state = 2}, + [2897] = {.lex_state = 7, .external_lex_state = 2}, + [2898] = {.lex_state = 7, .external_lex_state = 2}, + [2899] = {.lex_state = 7, .external_lex_state = 2}, + [2900] = {.lex_state = 7, .external_lex_state = 2}, + [2901] = {.lex_state = 7, .external_lex_state = 2}, + [2902] = {.lex_state = 7, .external_lex_state = 2}, + [2903] = {.lex_state = 7, .external_lex_state = 2}, + [2904] = {.lex_state = 7, .external_lex_state = 2}, + [2905] = {.lex_state = 7, .external_lex_state = 2}, + [2906] = {.lex_state = 7, .external_lex_state = 2}, + [2907] = {.lex_state = 7, .external_lex_state = 2}, + [2908] = {.lex_state = 7, .external_lex_state = 2}, + [2909] = {.lex_state = 7, .external_lex_state = 2}, + [2910] = {.lex_state = 7, .external_lex_state = 2}, + [2911] = {.lex_state = 7, .external_lex_state = 2}, + [2912] = {.lex_state = 7, .external_lex_state = 2}, + [2913] = {.lex_state = 75, .external_lex_state = 5}, + [2914] = {.lex_state = 75, .external_lex_state = 5}, + [2915] = {.lex_state = 75, .external_lex_state = 2}, + [2916] = {.lex_state = 7, .external_lex_state = 2}, + [2917] = {.lex_state = 7, .external_lex_state = 2}, + [2918] = {.lex_state = 7, .external_lex_state = 2}, + [2919] = {.lex_state = 75, .external_lex_state = 2}, + [2920] = {.lex_state = 7, .external_lex_state = 2}, + [2921] = {.lex_state = 7, .external_lex_state = 2}, + [2922] = {.lex_state = 7, .external_lex_state = 2}, + [2923] = {.lex_state = 75, .external_lex_state = 2}, + [2924] = {.lex_state = 75, .external_lex_state = 2}, + [2925] = {.lex_state = 7, .external_lex_state = 5}, + [2926] = {.lex_state = 75, .external_lex_state = 2}, + [2927] = {.lex_state = 75, .external_lex_state = 2}, + [2928] = {.lex_state = 75, .external_lex_state = 2}, + [2929] = {.lex_state = 75, .external_lex_state = 2}, + [2930] = {.lex_state = 75, .external_lex_state = 2}, + [2931] = {.lex_state = 7, .external_lex_state = 5}, + [2932] = {.lex_state = 75, .external_lex_state = 2}, + [2933] = {.lex_state = 7, .external_lex_state = 5}, + [2934] = {.lex_state = 75, .external_lex_state = 2}, + [2935] = {.lex_state = 75, .external_lex_state = 2}, + [2936] = {.lex_state = 75, .external_lex_state = 2}, + [2937] = {.lex_state = 75, .external_lex_state = 2}, + [2938] = {.lex_state = 75, .external_lex_state = 2}, + [2939] = {.lex_state = 75, .external_lex_state = 2}, + [2940] = {.lex_state = 75, .external_lex_state = 2}, + [2941] = {.lex_state = 7, .external_lex_state = 5}, + [2942] = {.lex_state = 75, .external_lex_state = 2}, + [2943] = {.lex_state = 7, .external_lex_state = 5}, + [2944] = {.lex_state = 75, .external_lex_state = 2}, + [2945] = {.lex_state = 75, .external_lex_state = 2}, + [2946] = {.lex_state = 7, .external_lex_state = 5}, + [2947] = {.lex_state = 75, .external_lex_state = 2}, + [2948] = {.lex_state = 75, .external_lex_state = 2}, + [2949] = {.lex_state = 75, .external_lex_state = 2}, + [2950] = {.lex_state = 7, .external_lex_state = 5}, + [2951] = {.lex_state = 7, .external_lex_state = 6}, + [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 = 75, .external_lex_state = 2}, + [2956] = {.lex_state = 7, .external_lex_state = 5}, + [2957] = {.lex_state = 75, .external_lex_state = 2}, + [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 = 75, .external_lex_state = 2}, + [2963] = {.lex_state = 7, .external_lex_state = 5}, + [2964] = {.lex_state = 75, .external_lex_state = 2}, + [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 = 75, .external_lex_state = 2}, + [2969] = {.lex_state = 7, .external_lex_state = 5}, + [2970] = {.lex_state = 75, .external_lex_state = 2}, + [2971] = {.lex_state = 75, .external_lex_state = 2}, + [2972] = {.lex_state = 75, .external_lex_state = 2}, + [2973] = {.lex_state = 75, .external_lex_state = 2}, + [2974] = {.lex_state = 75, .external_lex_state = 2}, + [2975] = {.lex_state = 75, .external_lex_state = 2}, + [2976] = {.lex_state = 75, .external_lex_state = 2}, + [2977] = {.lex_state = 75, .external_lex_state = 2}, + [2978] = {.lex_state = 75, .external_lex_state = 2}, + [2979] = {.lex_state = 2, .external_lex_state = 2}, + [2980] = {.lex_state = 2, .external_lex_state = 2}, + [2981] = {.lex_state = 75, .external_lex_state = 2}, + [2982] = {.lex_state = 75, .external_lex_state = 2}, + [2983] = {.lex_state = 7, .external_lex_state = 5}, + [2984] = {.lex_state = 75, .external_lex_state = 2}, + [2985] = {.lex_state = 75, .external_lex_state = 2}, + [2986] = {.lex_state = 2, .external_lex_state = 2}, + [2987] = {.lex_state = 7, .external_lex_state = 5}, + [2988] = {.lex_state = 75, .external_lex_state = 2}, + [2989] = {.lex_state = 7, .external_lex_state = 5}, + [2990] = {.lex_state = 7, .external_lex_state = 5}, + [2991] = {.lex_state = 75, .external_lex_state = 2}, + [2992] = {.lex_state = 75, .external_lex_state = 2}, + [2993] = {.lex_state = 7, .external_lex_state = 5}, + [2994] = {.lex_state = 75, .external_lex_state = 2}, + [2995] = {.lex_state = 7, .external_lex_state = 5}, + [2996] = {.lex_state = 75, .external_lex_state = 2}, + [2997] = {.lex_state = 7, .external_lex_state = 5}, + [2998] = {.lex_state = 75, .external_lex_state = 2}, + [2999] = {.lex_state = 75, .external_lex_state = 2}, + [3000] = {.lex_state = 75, .external_lex_state = 2}, + [3001] = {.lex_state = 75, .external_lex_state = 2}, + [3002] = {.lex_state = 75, .external_lex_state = 2}, + [3003] = {.lex_state = 2, .external_lex_state = 2}, + [3004] = {.lex_state = 2, .external_lex_state = 2}, + [3005] = {.lex_state = 7, .external_lex_state = 5}, + [3006] = {.lex_state = 75, .external_lex_state = 2}, + [3007] = {.lex_state = 75, .external_lex_state = 2}, + [3008] = {.lex_state = 75, .external_lex_state = 2}, + [3009] = {.lex_state = 2, .external_lex_state = 2}, + [3010] = {.lex_state = 75, .external_lex_state = 2}, + [3011] = {.lex_state = 75, .external_lex_state = 2}, + [3012] = {.lex_state = 7, .external_lex_state = 5}, + [3013] = {.lex_state = 2, .external_lex_state = 2}, + [3014] = {.lex_state = 7, .external_lex_state = 5}, + [3015] = {.lex_state = 75, .external_lex_state = 2}, + [3016] = {.lex_state = 75, .external_lex_state = 5}, + [3017] = {.lex_state = 7, .external_lex_state = 5}, + [3018] = {.lex_state = 75, .external_lex_state = 2}, + [3019] = {.lex_state = 75, .external_lex_state = 2}, + [3020] = {.lex_state = 2, .external_lex_state = 2}, + [3021] = {.lex_state = 75, .external_lex_state = 2}, + [3022] = {.lex_state = 7, .external_lex_state = 5}, + [3023] = {.lex_state = 75, .external_lex_state = 2}, + [3024] = {.lex_state = 75, .external_lex_state = 2}, + [3025] = {.lex_state = 2, .external_lex_state = 2}, + [3026] = {.lex_state = 7, .external_lex_state = 6}, + [3027] = {.lex_state = 7, .external_lex_state = 5}, + [3028] = {.lex_state = 7, .external_lex_state = 5}, + [3029] = {.lex_state = 2, .external_lex_state = 2}, + [3030] = {.lex_state = 75, .external_lex_state = 2}, + [3031] = {.lex_state = 7, .external_lex_state = 5}, + [3032] = {.lex_state = 75, .external_lex_state = 2}, + [3033] = {.lex_state = 7, .external_lex_state = 5}, + [3034] = {.lex_state = 75, .external_lex_state = 2}, + [3035] = {.lex_state = 75, .external_lex_state = 2}, + [3036] = {.lex_state = 75, .external_lex_state = 2}, + [3037] = {.lex_state = 7, .external_lex_state = 6}, + [3038] = {.lex_state = 7, .external_lex_state = 5}, + [3039] = {.lex_state = 75, .external_lex_state = 2}, + [3040] = {.lex_state = 75, .external_lex_state = 2}, + [3041] = {.lex_state = 75, .external_lex_state = 2}, + [3042] = {.lex_state = 75, .external_lex_state = 2}, + [3043] = {.lex_state = 75, .external_lex_state = 5}, + [3044] = {.lex_state = 75, .external_lex_state = 5}, + [3045] = {.lex_state = 75, .external_lex_state = 5}, + [3046] = {.lex_state = 75, .external_lex_state = 2}, + [3047] = {.lex_state = 75, .external_lex_state = 2}, + [3048] = {.lex_state = 75, .external_lex_state = 5}, + [3049] = {.lex_state = 75, .external_lex_state = 2}, + [3050] = {.lex_state = 75, .external_lex_state = 5}, + [3051] = {.lex_state = 75, .external_lex_state = 5}, + [3052] = {.lex_state = 75, .external_lex_state = 5}, + [3053] = {.lex_state = 75, .external_lex_state = 2}, + [3054] = {.lex_state = 75, .external_lex_state = 2}, + [3055] = {.lex_state = 75, .external_lex_state = 2}, + [3056] = {.lex_state = 75, .external_lex_state = 2}, + [3057] = {.lex_state = 75, .external_lex_state = 5}, + [3058] = {.lex_state = 75, .external_lex_state = 5}, + [3059] = {.lex_state = 75, .external_lex_state = 2}, + [3060] = {.lex_state = 75, .external_lex_state = 5}, + [3061] = {.lex_state = 75, .external_lex_state = 2}, + [3062] = {.lex_state = 75, .external_lex_state = 5}, + [3063] = {.lex_state = 75, .external_lex_state = 5}, + [3064] = {.lex_state = 75, .external_lex_state = 5}, + [3065] = {.lex_state = 75, .external_lex_state = 5}, + [3066] = {.lex_state = 75, .external_lex_state = 5}, + [3067] = {.lex_state = 75, .external_lex_state = 5}, + [3068] = {.lex_state = 75, .external_lex_state = 5}, + [3069] = {.lex_state = 75, .external_lex_state = 5}, + [3070] = {.lex_state = 75, .external_lex_state = 5}, + [3071] = {.lex_state = 75, .external_lex_state = 5}, + [3072] = {.lex_state = 75, .external_lex_state = 5}, + [3073] = {.lex_state = 75, .external_lex_state = 5}, + [3074] = {.lex_state = 75, .external_lex_state = 5}, + [3075] = {.lex_state = 75, .external_lex_state = 2}, + [3076] = {.lex_state = 75, .external_lex_state = 5}, + [3077] = {.lex_state = 75, .external_lex_state = 5}, + [3078] = {.lex_state = 75, .external_lex_state = 2}, + [3079] = {.lex_state = 75, .external_lex_state = 5}, + [3080] = {.lex_state = 75, .external_lex_state = 5}, + [3081] = {.lex_state = 75, .external_lex_state = 5}, + [3082] = {.lex_state = 75, .external_lex_state = 5}, + [3083] = {.lex_state = 75, .external_lex_state = 5}, + [3084] = {.lex_state = 7, .external_lex_state = 6}, + [3085] = {.lex_state = 75, .external_lex_state = 5}, + [3086] = {.lex_state = 7, .external_lex_state = 5}, + [3087] = {.lex_state = 75, .external_lex_state = 2}, + [3088] = {.lex_state = 7, .external_lex_state = 5}, + [3089] = {.lex_state = 7, .external_lex_state = 5}, + [3090] = {.lex_state = 7, .external_lex_state = 5}, + [3091] = {.lex_state = 75, .external_lex_state = 5}, + [3092] = {.lex_state = 75, .external_lex_state = 5}, + [3093] = {.lex_state = 75, .external_lex_state = 5}, + [3094] = {.lex_state = 7, .external_lex_state = 5}, + [3095] = {.lex_state = 75, .external_lex_state = 2}, + [3096] = {.lex_state = 75, .external_lex_state = 2}, + [3097] = {.lex_state = 75, .external_lex_state = 5}, + [3098] = {.lex_state = 75, .external_lex_state = 5}, + [3099] = {.lex_state = 7, .external_lex_state = 5}, + [3100] = {.lex_state = 75, .external_lex_state = 5}, + [3101] = {.lex_state = 75, .external_lex_state = 5}, + [3102] = {.lex_state = 75, .external_lex_state = 5}, + [3103] = {.lex_state = 75, .external_lex_state = 5}, + [3104] = {.lex_state = 75, .external_lex_state = 5}, + [3105] = {.lex_state = 75, .external_lex_state = 5}, + [3106] = {.lex_state = 75, .external_lex_state = 2}, + [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 = 7, .external_lex_state = 6}, + [3111] = {.lex_state = 75, .external_lex_state = 5}, + [3112] = {.lex_state = 7, .external_lex_state = 6}, + [3113] = {.lex_state = 7, .external_lex_state = 6}, + [3114] = {.lex_state = 7, .external_lex_state = 6}, + [3115] = {.lex_state = 7, .external_lex_state = 6}, + [3116] = {.lex_state = 7, .external_lex_state = 6}, + [3117] = {.lex_state = 7, .external_lex_state = 6}, + [3118] = {.lex_state = 7, .external_lex_state = 6}, + [3119] = {.lex_state = 7, .external_lex_state = 6}, + [3120] = {.lex_state = 7, .external_lex_state = 6}, + [3121] = {.lex_state = 7, .external_lex_state = 6}, + [3122] = {.lex_state = 7, .external_lex_state = 6}, + [3123] = {.lex_state = 7, .external_lex_state = 6}, + [3124] = {.lex_state = 7, .external_lex_state = 5}, + [3125] = {.lex_state = 7, .external_lex_state = 6}, + [3126] = {.lex_state = 7, .external_lex_state = 6}, + [3127] = {.lex_state = 7, .external_lex_state = 6}, + [3128] = {.lex_state = 7, .external_lex_state = 6}, + [3129] = {.lex_state = 75, .external_lex_state = 6}, + [3130] = {.lex_state = 7, .external_lex_state = 6}, + [3131] = {.lex_state = 7, .external_lex_state = 6}, + [3132] = {.lex_state = 7, .external_lex_state = 6}, + [3133] = {.lex_state = 7, .external_lex_state = 6}, + [3134] = {.lex_state = 7, .external_lex_state = 6}, + [3135] = {.lex_state = 75, .external_lex_state = 5}, + [3136] = {.lex_state = 7, .external_lex_state = 6}, + [3137] = {.lex_state = 7, .external_lex_state = 6}, + [3138] = {.lex_state = 7, .external_lex_state = 6}, + [3139] = {.lex_state = 7, .external_lex_state = 6}, + [3140] = {.lex_state = 7, .external_lex_state = 6}, + [3141] = {.lex_state = 7, .external_lex_state = 6}, + [3142] = {.lex_state = 7, .external_lex_state = 6}, + [3143] = {.lex_state = 75, .external_lex_state = 5}, + [3144] = {.lex_state = 75, .external_lex_state = 5}, + [3145] = {.lex_state = 75, .external_lex_state = 2}, + [3146] = {.lex_state = 75, .external_lex_state = 2}, + [3147] = {.lex_state = 75, .external_lex_state = 5}, + [3148] = {.lex_state = 75, .external_lex_state = 2}, + [3149] = {.lex_state = 75, .external_lex_state = 2}, + [3150] = {.lex_state = 75, .external_lex_state = 2}, + [3151] = {.lex_state = 75, .external_lex_state = 5}, + [3152] = {.lex_state = 75, .external_lex_state = 5}, + [3153] = {.lex_state = 75, .external_lex_state = 2}, + [3154] = {.lex_state = 75, .external_lex_state = 2}, + [3155] = {.lex_state = 7, .external_lex_state = 5}, + [3156] = {.lex_state = 7, .external_lex_state = 6}, + [3157] = {.lex_state = 75, .external_lex_state = 5}, + [3158] = {.lex_state = 75, .external_lex_state = 6}, + [3159] = {.lex_state = 75, .external_lex_state = 5}, + [3160] = {.lex_state = 75, .external_lex_state = 5}, + [3161] = {.lex_state = 75, .external_lex_state = 5}, + [3162] = {.lex_state = 75, .external_lex_state = 5}, + [3163] = {.lex_state = 75, .external_lex_state = 5}, + [3164] = {.lex_state = 75, .external_lex_state = 5}, + [3165] = {.lex_state = 75, .external_lex_state = 5}, + [3166] = {.lex_state = 75, .external_lex_state = 5}, + [3167] = {.lex_state = 75, .external_lex_state = 5}, + [3168] = {.lex_state = 75, .external_lex_state = 5}, + [3169] = {.lex_state = 75, .external_lex_state = 5}, + [3170] = {.lex_state = 75, .external_lex_state = 5}, + [3171] = {.lex_state = 75, .external_lex_state = 5}, + [3172] = {.lex_state = 75, .external_lex_state = 5}, + [3173] = {.lex_state = 75, .external_lex_state = 5}, + [3174] = {.lex_state = 75, .external_lex_state = 2}, + [3175] = {.lex_state = 75, .external_lex_state = 5}, + [3176] = {.lex_state = 75, .external_lex_state = 5}, + [3177] = {.lex_state = 75, .external_lex_state = 2}, + [3178] = {.lex_state = 75, .external_lex_state = 5}, + [3179] = {.lex_state = 75, .external_lex_state = 5}, + [3180] = {.lex_state = 75, .external_lex_state = 5}, + [3181] = {.lex_state = 75, .external_lex_state = 6}, + [3182] = {.lex_state = 75, .external_lex_state = 5}, + [3183] = {.lex_state = 75, .external_lex_state = 5}, + [3184] = {.lex_state = 75, .external_lex_state = 5}, + [3185] = {.lex_state = 75, .external_lex_state = 5}, + [3186] = {.lex_state = 75, .external_lex_state = 5}, + [3187] = {.lex_state = 75, .external_lex_state = 5}, + [3188] = {.lex_state = 75, .external_lex_state = 5}, + [3189] = {.lex_state = 75, .external_lex_state = 2}, + [3190] = {.lex_state = 75, .external_lex_state = 5}, + [3191] = {.lex_state = 75, .external_lex_state = 5}, + [3192] = {.lex_state = 75, .external_lex_state = 5}, + [3193] = {.lex_state = 75, .external_lex_state = 5}, + [3194] = {.lex_state = 75, .external_lex_state = 5}, + [3195] = {.lex_state = 75, .external_lex_state = 5}, + [3196] = {.lex_state = 7, .external_lex_state = 2}, + [3197] = {.lex_state = 7, .external_lex_state = 2}, + [3198] = {.lex_state = 7, .external_lex_state = 2}, + [3199] = {.lex_state = 75, .external_lex_state = 5}, + [3200] = {.lex_state = 75, .external_lex_state = 5}, + [3201] = {.lex_state = 75, .external_lex_state = 5}, + [3202] = {.lex_state = 75, .external_lex_state = 5}, + [3203] = {.lex_state = 75, .external_lex_state = 5}, + [3204] = {.lex_state = 75, .external_lex_state = 5}, + [3205] = {.lex_state = 75, .external_lex_state = 5}, + [3206] = {.lex_state = 75, .external_lex_state = 5}, + [3207] = {.lex_state = 75, .external_lex_state = 5}, + [3208] = {.lex_state = 75, .external_lex_state = 5}, + [3209] = {.lex_state = 75, .external_lex_state = 5}, + [3210] = {.lex_state = 75, .external_lex_state = 5}, + [3211] = {.lex_state = 75, .external_lex_state = 5}, + [3212] = {.lex_state = 75, .external_lex_state = 5}, + [3213] = {.lex_state = 75, .external_lex_state = 5}, + [3214] = {.lex_state = 75, .external_lex_state = 5}, + [3215] = {.lex_state = 75, .external_lex_state = 5}, + [3216] = {.lex_state = 75, .external_lex_state = 5}, + [3217] = {.lex_state = 75, .external_lex_state = 5}, + [3218] = {.lex_state = 75, .external_lex_state = 5}, + [3219] = {.lex_state = 75, .external_lex_state = 5}, + [3220] = {.lex_state = 7, .external_lex_state = 6}, + [3221] = {.lex_state = 7, .external_lex_state = 6}, + [3222] = {.lex_state = 75, .external_lex_state = 5}, + [3223] = {.lex_state = 7, .external_lex_state = 6}, + [3224] = {.lex_state = 7, .external_lex_state = 6}, + [3225] = {.lex_state = 7, .external_lex_state = 6}, + [3226] = {.lex_state = 7, .external_lex_state = 6}, + [3227] = {.lex_state = 75, .external_lex_state = 5}, + [3228] = {.lex_state = 75, .external_lex_state = 6}, + [3229] = {.lex_state = 75, .external_lex_state = 5}, + [3230] = {.lex_state = 75, .external_lex_state = 6}, + [3231] = {.lex_state = 75, .external_lex_state = 6}, + [3232] = {.lex_state = 75, .external_lex_state = 5}, + [3233] = {.lex_state = 75, .external_lex_state = 6}, + [3234] = {.lex_state = 75, .external_lex_state = 6}, + [3235] = {.lex_state = 75, .external_lex_state = 6}, + [3236] = {.lex_state = 75, .external_lex_state = 6}, + [3237] = {.lex_state = 75, .external_lex_state = 6}, + [3238] = {.lex_state = 7, .external_lex_state = 6}, + [3239] = {.lex_state = 75, .external_lex_state = 5}, + [3240] = {.lex_state = 75, .external_lex_state = 5}, + [3241] = {.lex_state = 75, .external_lex_state = 5}, + [3242] = {.lex_state = 75, .external_lex_state = 5}, + [3243] = {.lex_state = 75, .external_lex_state = 5}, + [3244] = {.lex_state = 75, .external_lex_state = 5}, + [3245] = {.lex_state = 75, .external_lex_state = 5}, + [3246] = {.lex_state = 75, .external_lex_state = 5}, + [3247] = {.lex_state = 7, .external_lex_state = 6}, + [3248] = {.lex_state = 75, .external_lex_state = 5}, + [3249] = {.lex_state = 75, .external_lex_state = 5}, + [3250] = {.lex_state = 75, .external_lex_state = 5}, + [3251] = {.lex_state = 75, .external_lex_state = 5}, + [3252] = {.lex_state = 75, .external_lex_state = 5}, + [3253] = {.lex_state = 75, .external_lex_state = 5}, + [3254] = {.lex_state = 75, .external_lex_state = 5}, + [3255] = {.lex_state = 75, .external_lex_state = 5}, + [3256] = {.lex_state = 75, .external_lex_state = 2}, + [3257] = {.lex_state = 75, .external_lex_state = 5}, + [3258] = {.lex_state = 75, .external_lex_state = 5}, + [3259] = {.lex_state = 75, .external_lex_state = 5}, + [3260] = {.lex_state = 75, .external_lex_state = 5}, + [3261] = {.lex_state = 75, .external_lex_state = 5}, + [3262] = {.lex_state = 75, .external_lex_state = 2}, + [3263] = {.lex_state = 75, .external_lex_state = 5}, + [3264] = {.lex_state = 75, .external_lex_state = 5}, + [3265] = {.lex_state = 75, .external_lex_state = 5}, + [3266] = {.lex_state = 75, .external_lex_state = 5}, + [3267] = {.lex_state = 75, .external_lex_state = 5}, + [3268] = {.lex_state = 75, .external_lex_state = 5}, + [3269] = {.lex_state = 75, .external_lex_state = 5}, + [3270] = {.lex_state = 75, .external_lex_state = 5}, + [3271] = {.lex_state = 75, .external_lex_state = 5}, + [3272] = {.lex_state = 75, .external_lex_state = 5}, + [3273] = {.lex_state = 75, .external_lex_state = 5}, + [3274] = {.lex_state = 75, .external_lex_state = 5}, + [3275] = {.lex_state = 75, .external_lex_state = 5}, + [3276] = {.lex_state = 75, .external_lex_state = 5}, + [3277] = {.lex_state = 75, .external_lex_state = 5}, + [3278] = {.lex_state = 75, .external_lex_state = 6}, + [3279] = {.lex_state = 75, .external_lex_state = 5}, + [3280] = {.lex_state = 75, .external_lex_state = 5}, + [3281] = {.lex_state = 75, .external_lex_state = 5}, + [3282] = {.lex_state = 75, .external_lex_state = 5}, + [3283] = {.lex_state = 75, .external_lex_state = 5}, + [3284] = {.lex_state = 75, .external_lex_state = 5}, + [3285] = {.lex_state = 75, .external_lex_state = 5}, + [3286] = {.lex_state = 75, .external_lex_state = 5}, + [3287] = {.lex_state = 75, .external_lex_state = 6}, + [3288] = {.lex_state = 75, .external_lex_state = 6}, + [3289] = {.lex_state = 75, .external_lex_state = 6}, + [3290] = {.lex_state = 75, .external_lex_state = 2}, + [3291] = {.lex_state = 75, .external_lex_state = 2}, + [3292] = {.lex_state = 75, .external_lex_state = 2}, + [3293] = {.lex_state = 75, .external_lex_state = 2}, + [3294] = {.lex_state = 75, .external_lex_state = 2}, + [3295] = {.lex_state = 75, .external_lex_state = 2}, + [3296] = {.lex_state = 75, .external_lex_state = 2}, + [3297] = {.lex_state = 75, .external_lex_state = 2}, + [3298] = {.lex_state = 75, .external_lex_state = 2}, + [3299] = {.lex_state = 75, .external_lex_state = 5}, + [3300] = {.lex_state = 75, .external_lex_state = 2}, + [3301] = {.lex_state = 75, .external_lex_state = 6}, + [3302] = {.lex_state = 75, .external_lex_state = 5}, + [3303] = {.lex_state = 75, .external_lex_state = 2}, + [3304] = {.lex_state = 75, .external_lex_state = 5}, + [3305] = {.lex_state = 75, .external_lex_state = 6}, + [3306] = {.lex_state = 75, .external_lex_state = 2}, + [3307] = {.lex_state = 75, .external_lex_state = 2}, + [3308] = {.lex_state = 75, .external_lex_state = 2}, + [3309] = {.lex_state = 75, .external_lex_state = 6}, + [3310] = {.lex_state = 75, .external_lex_state = 2}, + [3311] = {.lex_state = 75, .external_lex_state = 6}, + [3312] = {.lex_state = 75, .external_lex_state = 2}, + [3313] = {.lex_state = 75, .external_lex_state = 5}, + [3314] = {.lex_state = 75, .external_lex_state = 5}, + [3315] = {.lex_state = 75, .external_lex_state = 5}, + [3316] = {.lex_state = 75, .external_lex_state = 2}, + [3317] = {.lex_state = 75, .external_lex_state = 6}, + [3318] = {.lex_state = 75, .external_lex_state = 2}, + [3319] = {.lex_state = 75, .external_lex_state = 6}, + [3320] = {.lex_state = 75, .external_lex_state = 5}, + [3321] = {.lex_state = 75, .external_lex_state = 5}, + [3322] = {.lex_state = 75, .external_lex_state = 6}, + [3323] = {.lex_state = 75, .external_lex_state = 5}, + [3324] = {.lex_state = 75, .external_lex_state = 5}, + [3325] = {.lex_state = 75, .external_lex_state = 6}, + [3326] = {.lex_state = 75, .external_lex_state = 5}, + [3327] = {.lex_state = 75, .external_lex_state = 6}, + [3328] = {.lex_state = 75, .external_lex_state = 6}, + [3329] = {.lex_state = 75, .external_lex_state = 6}, + [3330] = {.lex_state = 75, .external_lex_state = 6}, + [3331] = {.lex_state = 75, .external_lex_state = 6}, + [3332] = {.lex_state = 75, .external_lex_state = 6}, + [3333] = {.lex_state = 75, .external_lex_state = 5}, + [3334] = {.lex_state = 75, .external_lex_state = 5}, + [3335] = {.lex_state = 75, .external_lex_state = 6}, + [3336] = {.lex_state = 75, .external_lex_state = 6}, + [3337] = {.lex_state = 75, .external_lex_state = 6}, + [3338] = {.lex_state = 75, .external_lex_state = 6}, + [3339] = {.lex_state = 75, .external_lex_state = 6}, + [3340] = {.lex_state = 75, .external_lex_state = 2}, + [3341] = {.lex_state = 75, .external_lex_state = 2}, + [3342] = {.lex_state = 75, .external_lex_state = 5}, + [3343] = {.lex_state = 75, .external_lex_state = 5}, + [3344] = {.lex_state = 75, .external_lex_state = 6}, + [3345] = {.lex_state = 75, .external_lex_state = 6}, + [3346] = {.lex_state = 75, .external_lex_state = 6}, + [3347] = {.lex_state = 75, .external_lex_state = 6}, + [3348] = {.lex_state = 75, .external_lex_state = 5}, + [3349] = {.lex_state = 75, .external_lex_state = 2}, + [3350] = {.lex_state = 75, .external_lex_state = 5}, + [3351] = {.lex_state = 75, .external_lex_state = 6}, + [3352] = {.lex_state = 75, .external_lex_state = 6}, + [3353] = {.lex_state = 75, .external_lex_state = 2}, + [3354] = {.lex_state = 75, .external_lex_state = 6}, + [3355] = {.lex_state = 75, .external_lex_state = 6}, + [3356] = {.lex_state = 75, .external_lex_state = 6}, + [3357] = {.lex_state = 75, .external_lex_state = 6}, + [3358] = {.lex_state = 75, .external_lex_state = 5}, + [3359] = {.lex_state = 75, .external_lex_state = 6}, + [3360] = {.lex_state = 75, .external_lex_state = 5}, + [3361] = {.lex_state = 75, .external_lex_state = 6}, + [3362] = {.lex_state = 75, .external_lex_state = 2}, + [3363] = {.lex_state = 75, .external_lex_state = 6}, + [3364] = {.lex_state = 75, .external_lex_state = 2}, + [3365] = {.lex_state = 75, .external_lex_state = 2}, + [3366] = {.lex_state = 75, .external_lex_state = 2}, + [3367] = {.lex_state = 75, .external_lex_state = 5}, + [3368] = {.lex_state = 75, .external_lex_state = 5}, + [3369] = {.lex_state = 75, .external_lex_state = 5}, + [3370] = {.lex_state = 75, .external_lex_state = 2}, + [3371] = {.lex_state = 75, .external_lex_state = 2}, + [3372] = {.lex_state = 8, .external_lex_state = 2}, + [3373] = {.lex_state = 75, .external_lex_state = 6}, + [3374] = {.lex_state = 75, .external_lex_state = 2}, + [3375] = {.lex_state = 75, .external_lex_state = 6}, + [3376] = {.lex_state = 75, .external_lex_state = 5}, + [3377] = {.lex_state = 75, .external_lex_state = 2}, + [3378] = {.lex_state = 75, .external_lex_state = 6}, + [3379] = {.lex_state = 75, .external_lex_state = 5}, + [3380] = {.lex_state = 75, .external_lex_state = 2}, + [3381] = {.lex_state = 75, .external_lex_state = 2}, + [3382] = {.lex_state = 8, .external_lex_state = 2}, + [3383] = {.lex_state = 75, .external_lex_state = 6}, + [3384] = {.lex_state = 75, .external_lex_state = 6}, + [3385] = {.lex_state = 75, .external_lex_state = 5}, + [3386] = {.lex_state = 75, .external_lex_state = 6}, + [3387] = {.lex_state = 75, .external_lex_state = 5}, + [3388] = {.lex_state = 75, .external_lex_state = 2}, + [3389] = {.lex_state = 75, .external_lex_state = 2}, + [3390] = {.lex_state = 75, .external_lex_state = 6}, + [3391] = {.lex_state = 75, .external_lex_state = 5}, + [3392] = {.lex_state = 75, .external_lex_state = 5}, + [3393] = {.lex_state = 75, .external_lex_state = 5}, + [3394] = {.lex_state = 75, .external_lex_state = 5}, + [3395] = {.lex_state = 75, .external_lex_state = 2}, + [3396] = {.lex_state = 75, .external_lex_state = 2}, + [3397] = {.lex_state = 75, .external_lex_state = 5}, + [3398] = {.lex_state = 75, .external_lex_state = 6}, + [3399] = {.lex_state = 75, .external_lex_state = 5}, + [3400] = {.lex_state = 75, .external_lex_state = 5}, + [3401] = {.lex_state = 75, .external_lex_state = 6}, + [3402] = {.lex_state = 75, .external_lex_state = 5}, + [3403] = {.lex_state = 75, .external_lex_state = 5}, + [3404] = {.lex_state = 75, .external_lex_state = 2}, + [3405] = {.lex_state = 75, .external_lex_state = 5}, + [3406] = {.lex_state = 75, .external_lex_state = 6}, + [3407] = {.lex_state = 75, .external_lex_state = 2}, + [3408] = {.lex_state = 75, .external_lex_state = 5}, + [3409] = {.lex_state = 75, .external_lex_state = 2}, + [3410] = {.lex_state = 75, .external_lex_state = 2}, + [3411] = {.lex_state = 75, .external_lex_state = 2}, + [3412] = {.lex_state = 75, .external_lex_state = 2}, + [3413] = {.lex_state = 75, .external_lex_state = 2}, + [3414] = {.lex_state = 75, .external_lex_state = 5}, + [3415] = {.lex_state = 75, .external_lex_state = 5}, + [3416] = {.lex_state = 75, .external_lex_state = 2}, + [3417] = {.lex_state = 75, .external_lex_state = 2}, + [3418] = {.lex_state = 75, .external_lex_state = 5}, + [3419] = {.lex_state = 75, .external_lex_state = 5}, + [3420] = {.lex_state = 75, .external_lex_state = 6}, + [3421] = {.lex_state = 75, .external_lex_state = 2}, + [3422] = {.lex_state = 75, .external_lex_state = 5}, + [3423] = {.lex_state = 75, .external_lex_state = 5}, + [3424] = {.lex_state = 75, .external_lex_state = 2}, + [3425] = {.lex_state = 75, .external_lex_state = 5}, + [3426] = {.lex_state = 75, .external_lex_state = 5}, + [3427] = {.lex_state = 75, .external_lex_state = 2}, + [3428] = {.lex_state = 75, .external_lex_state = 5}, + [3429] = {.lex_state = 75, .external_lex_state = 5}, + [3430] = {.lex_state = 75, .external_lex_state = 6}, + [3431] = {.lex_state = 75, .external_lex_state = 6}, + [3432] = {.lex_state = 75, .external_lex_state = 6}, + [3433] = {.lex_state = 75, .external_lex_state = 6}, + [3434] = {.lex_state = 75, .external_lex_state = 2}, + [3435] = {.lex_state = 75, .external_lex_state = 2}, + [3436] = {.lex_state = 75, .external_lex_state = 6}, + [3437] = {.lex_state = 75, .external_lex_state = 6}, + [3438] = {.lex_state = 75, .external_lex_state = 2}, + [3439] = {.lex_state = 75, .external_lex_state = 6}, + [3440] = {.lex_state = 75, .external_lex_state = 2}, + [3441] = {.lex_state = 75, .external_lex_state = 2}, + [3442] = {.lex_state = 75, .external_lex_state = 5}, + [3443] = {.lex_state = 8, .external_lex_state = 2}, + [3444] = {.lex_state = 75, .external_lex_state = 6}, + [3445] = {.lex_state = 75, .external_lex_state = 6}, + [3446] = {.lex_state = 75, .external_lex_state = 5}, + [3447] = {.lex_state = 75, .external_lex_state = 6}, + [3448] = {.lex_state = 75, .external_lex_state = 6}, + [3449] = {.lex_state = 75, .external_lex_state = 5}, + [3450] = {.lex_state = 75, .external_lex_state = 6}, + [3451] = {.lex_state = 75, .external_lex_state = 5}, + [3452] = {.lex_state = 75, .external_lex_state = 5}, + [3453] = {.lex_state = 75, .external_lex_state = 6}, + [3454] = {.lex_state = 75, .external_lex_state = 6}, + [3455] = {.lex_state = 75, .external_lex_state = 6}, + [3456] = {.lex_state = 75, .external_lex_state = 6}, + [3457] = {.lex_state = 75, .external_lex_state = 6}, + [3458] = {.lex_state = 75, .external_lex_state = 5}, + [3459] = {.lex_state = 75, .external_lex_state = 5}, + [3460] = {.lex_state = 75, .external_lex_state = 5}, + [3461] = {.lex_state = 75, .external_lex_state = 5}, + [3462] = {.lex_state = 75, .external_lex_state = 5}, + [3463] = {.lex_state = 75, .external_lex_state = 6}, + [3464] = {.lex_state = 75, .external_lex_state = 5}, + [3465] = {.lex_state = 13, .external_lex_state = 2}, + [3466] = {.lex_state = 75, .external_lex_state = 5}, + [3467] = {.lex_state = 75, .external_lex_state = 5}, + [3468] = {.lex_state = 13, .external_lex_state = 2}, + [3469] = {.lex_state = 75, .external_lex_state = 2}, + [3470] = {.lex_state = 13, .external_lex_state = 2}, + [3471] = {.lex_state = 75, .external_lex_state = 2}, + [3472] = {.lex_state = 75, .external_lex_state = 2}, + [3473] = {.lex_state = 13, .external_lex_state = 7}, + [3474] = {.lex_state = 75, .external_lex_state = 2}, + [3475] = {.lex_state = 13, .external_lex_state = 7}, + [3476] = {.lex_state = 13, .external_lex_state = 7}, + [3477] = {.lex_state = 13, .external_lex_state = 7}, + [3478] = {.lex_state = 13, .external_lex_state = 7}, + [3479] = {.lex_state = 13, .external_lex_state = 7}, + [3480] = {.lex_state = 75, .external_lex_state = 2}, + [3481] = {.lex_state = 75, .external_lex_state = 2}, + [3482] = {.lex_state = 75, .external_lex_state = 2}, + [3483] = {.lex_state = 75, .external_lex_state = 2}, + [3484] = {.lex_state = 13, .external_lex_state = 7}, + [3485] = {.lex_state = 13, .external_lex_state = 2}, + [3486] = {.lex_state = 75, .external_lex_state = 2}, + [3487] = {.lex_state = 75, .external_lex_state = 2}, + [3488] = {.lex_state = 13, .external_lex_state = 2}, + [3489] = {.lex_state = 7, .external_lex_state = 2}, + [3490] = {.lex_state = 7, .external_lex_state = 2}, + [3491] = {.lex_state = 75, .external_lex_state = 5}, + [3492] = {.lex_state = 75, .external_lex_state = 2}, + [3493] = {.lex_state = 75, .external_lex_state = 2}, + [3494] = {.lex_state = 75, .external_lex_state = 2}, + [3495] = {.lex_state = 13, .external_lex_state = 2}, + [3496] = {.lex_state = 75, .external_lex_state = 2}, + [3497] = {.lex_state = 13, .external_lex_state = 2}, + [3498] = {.lex_state = 13, .external_lex_state = 2}, + [3499] = {.lex_state = 75, .external_lex_state = 5}, + [3500] = {.lex_state = 75, .external_lex_state = 5}, + [3501] = {.lex_state = 13, .external_lex_state = 7}, + [3502] = {.lex_state = 75, .external_lex_state = 6}, + [3503] = {.lex_state = 75, .external_lex_state = 2}, + [3504] = {.lex_state = 75, .external_lex_state = 2}, + [3505] = {.lex_state = 13, .external_lex_state = 2}, + [3506] = {.lex_state = 7, .external_lex_state = 2}, + [3507] = {.lex_state = 75, .external_lex_state = 2}, + [3508] = {.lex_state = 7, .external_lex_state = 2}, + [3509] = {.lex_state = 75, .external_lex_state = 5}, + [3510] = {.lex_state = 75, .external_lex_state = 5}, + [3511] = {.lex_state = 75, .external_lex_state = 5}, + [3512] = {.lex_state = 75, .external_lex_state = 5}, + [3513] = {.lex_state = 75, .external_lex_state = 2}, + [3514] = {.lex_state = 75, .external_lex_state = 5}, + [3515] = {.lex_state = 75, .external_lex_state = 5}, + [3516] = {.lex_state = 75, .external_lex_state = 5}, + [3517] = {.lex_state = 75, .external_lex_state = 5}, + [3518] = {.lex_state = 75, .external_lex_state = 5}, + [3519] = {.lex_state = 75, .external_lex_state = 5}, + [3520] = {.lex_state = 75, .external_lex_state = 5}, + [3521] = {.lex_state = 75, .external_lex_state = 5}, + [3522] = {.lex_state = 75, .external_lex_state = 5}, + [3523] = {.lex_state = 75, .external_lex_state = 5}, + [3524] = {.lex_state = 75, .external_lex_state = 5}, + [3525] = {.lex_state = 75, .external_lex_state = 2}, + [3526] = {.lex_state = 75, .external_lex_state = 2}, + [3527] = {.lex_state = 75, .external_lex_state = 5}, + [3528] = {.lex_state = 75, .external_lex_state = 5}, + [3529] = {.lex_state = 75, .external_lex_state = 5}, + [3530] = {.lex_state = 75, .external_lex_state = 5}, + [3531] = {.lex_state = 75, .external_lex_state = 5}, + [3532] = {.lex_state = 75, .external_lex_state = 2}, + [3533] = {.lex_state = 75, .external_lex_state = 5}, + [3534] = {.lex_state = 75, .external_lex_state = 5}, + [3535] = {.lex_state = 75, .external_lex_state = 2}, + [3536] = {.lex_state = 75, .external_lex_state = 5}, + [3537] = {.lex_state = 75, .external_lex_state = 5}, + [3538] = {.lex_state = 75, .external_lex_state = 5}, + [3539] = {.lex_state = 75, .external_lex_state = 5}, + [3540] = {.lex_state = 7, .external_lex_state = 2}, + [3541] = {.lex_state = 75, .external_lex_state = 5}, + [3542] = {.lex_state = 75, .external_lex_state = 2}, + [3543] = {.lex_state = 7, .external_lex_state = 2}, + [3544] = {.lex_state = 75, .external_lex_state = 5}, + [3545] = {.lex_state = 75, .external_lex_state = 2}, + [3546] = {.lex_state = 7, .external_lex_state = 2}, + [3547] = {.lex_state = 75, .external_lex_state = 5}, + [3548] = {.lex_state = 75, .external_lex_state = 5}, + [3549] = {.lex_state = 75, .external_lex_state = 2}, + [3550] = {.lex_state = 75, .external_lex_state = 5}, + [3551] = {.lex_state = 75, .external_lex_state = 5}, + [3552] = {.lex_state = 75, .external_lex_state = 5}, + [3553] = {.lex_state = 75, .external_lex_state = 5}, + [3554] = {.lex_state = 75, .external_lex_state = 5}, + [3555] = {.lex_state = 75, .external_lex_state = 2}, + [3556] = {.lex_state = 75, .external_lex_state = 5}, + [3557] = {.lex_state = 75, .external_lex_state = 5}, + [3558] = {.lex_state = 75, .external_lex_state = 2}, + [3559] = {.lex_state = 75, .external_lex_state = 5}, + [3560] = {.lex_state = 75, .external_lex_state = 5}, + [3561] = {.lex_state = 75, .external_lex_state = 5}, + [3562] = {.lex_state = 75, .external_lex_state = 5}, + [3563] = {.lex_state = 7, .external_lex_state = 2}, + [3564] = {.lex_state = 75, .external_lex_state = 5}, + [3565] = {.lex_state = 75, .external_lex_state = 5}, + [3566] = {.lex_state = 75, .external_lex_state = 5}, + [3567] = {.lex_state = 75, .external_lex_state = 5}, + [3568] = {.lex_state = 75, .external_lex_state = 2}, + [3569] = {.lex_state = 75, .external_lex_state = 5}, + [3570] = {.lex_state = 7, .external_lex_state = 2}, + [3571] = {.lex_state = 75, .external_lex_state = 5}, + [3572] = {.lex_state = 7, .external_lex_state = 2}, + [3573] = {.lex_state = 75, .external_lex_state = 5}, + [3574] = {.lex_state = 7, .external_lex_state = 2}, + [3575] = {.lex_state = 7, .external_lex_state = 2}, + [3576] = {.lex_state = 75, .external_lex_state = 5}, + [3577] = {.lex_state = 75, .external_lex_state = 2}, + [3578] = {.lex_state = 75, .external_lex_state = 2}, + [3579] = {.lex_state = 75, .external_lex_state = 2}, + [3580] = {.lex_state = 75, .external_lex_state = 5}, + [3581] = {.lex_state = 75, .external_lex_state = 2}, + [3582] = {.lex_state = 75, .external_lex_state = 5}, + [3583] = {.lex_state = 75, .external_lex_state = 5}, + [3584] = {.lex_state = 75, .external_lex_state = 5}, + [3585] = {.lex_state = 75, .external_lex_state = 5}, + [3586] = {.lex_state = 75, .external_lex_state = 5}, + [3587] = {.lex_state = 75, .external_lex_state = 5}, + [3588] = {.lex_state = 75, .external_lex_state = 5}, + [3589] = {.lex_state = 75, .external_lex_state = 5}, + [3590] = {.lex_state = 75, .external_lex_state = 2}, + [3591] = {.lex_state = 75, .external_lex_state = 5}, + [3592] = {.lex_state = 75, .external_lex_state = 5}, + [3593] = {.lex_state = 7, .external_lex_state = 2}, + [3594] = {.lex_state = 75, .external_lex_state = 2}, + [3595] = {.lex_state = 75, .external_lex_state = 2}, + [3596] = {.lex_state = 75, .external_lex_state = 2}, + [3597] = {.lex_state = 75, .external_lex_state = 5}, + [3598] = {.lex_state = 75, .external_lex_state = 5}, + [3599] = {.lex_state = 7, .external_lex_state = 2}, + [3600] = {.lex_state = 75, .external_lex_state = 2}, + [3601] = {.lex_state = 75, .external_lex_state = 5}, + [3602] = {.lex_state = 75, .external_lex_state = 5}, + [3603] = {.lex_state = 75, .external_lex_state = 5}, + [3604] = {.lex_state = 75, .external_lex_state = 5}, + [3605] = {.lex_state = 75, .external_lex_state = 2}, + [3606] = {.lex_state = 75, .external_lex_state = 5}, + [3607] = {.lex_state = 75, .external_lex_state = 5}, + [3608] = {.lex_state = 75, .external_lex_state = 5}, + [3609] = {.lex_state = 7, .external_lex_state = 2}, + [3610] = {.lex_state = 75, .external_lex_state = 2}, + [3611] = {.lex_state = 75, .external_lex_state = 5}, + [3612] = {.lex_state = 75, .external_lex_state = 5}, + [3613] = {.lex_state = 75, .external_lex_state = 5}, + [3614] = {.lex_state = 75, .external_lex_state = 5}, + [3615] = {.lex_state = 75, .external_lex_state = 5}, + [3616] = {.lex_state = 75, .external_lex_state = 2}, + [3617] = {.lex_state = 75, .external_lex_state = 5}, + [3618] = {.lex_state = 75, .external_lex_state = 2}, + [3619] = {.lex_state = 75, .external_lex_state = 2}, + [3620] = {.lex_state = 8, .external_lex_state = 2}, + [3621] = {.lex_state = 75, .external_lex_state = 2}, + [3622] = {.lex_state = 75, .external_lex_state = 5}, + [3623] = {.lex_state = 75, .external_lex_state = 5}, + [3624] = {.lex_state = 75, .external_lex_state = 2}, + [3625] = {.lex_state = 75, .external_lex_state = 5}, + [3626] = {.lex_state = 75, .external_lex_state = 5}, + [3627] = {.lex_state = 75, .external_lex_state = 5}, + [3628] = {.lex_state = 75, .external_lex_state = 5}, + [3629] = {.lex_state = 75, .external_lex_state = 5}, + [3630] = {.lex_state = 75, .external_lex_state = 5}, + [3631] = {.lex_state = 75, .external_lex_state = 5}, + [3632] = {.lex_state = 75, .external_lex_state = 5}, + [3633] = {.lex_state = 75, .external_lex_state = 5}, + [3634] = {.lex_state = 75, .external_lex_state = 2}, + [3635] = {.lex_state = 75, .external_lex_state = 5}, + [3636] = {.lex_state = 7, .external_lex_state = 2}, + [3637] = {.lex_state = 75, .external_lex_state = 5}, + [3638] = {.lex_state = 75, .external_lex_state = 2}, + [3639] = {.lex_state = 7, .external_lex_state = 2}, + [3640] = {.lex_state = 75, .external_lex_state = 5}, + [3641] = {.lex_state = 75, .external_lex_state = 5}, + [3642] = {.lex_state = 75, .external_lex_state = 2}, + [3643] = {.lex_state = 75, .external_lex_state = 2}, + [3644] = {.lex_state = 75, .external_lex_state = 5}, + [3645] = {.lex_state = 75, .external_lex_state = 2}, + [3646] = {.lex_state = 75, .external_lex_state = 5}, + [3647] = {.lex_state = 75, .external_lex_state = 2}, + [3648] = {.lex_state = 75, .external_lex_state = 2}, + [3649] = {.lex_state = 75, .external_lex_state = 5}, + [3650] = {.lex_state = 75, .external_lex_state = 2}, + [3651] = {.lex_state = 75, .external_lex_state = 5}, + [3652] = {.lex_state = 8, .external_lex_state = 2}, + [3653] = {.lex_state = 75, .external_lex_state = 5}, + [3654] = {.lex_state = 75, .external_lex_state = 2}, + [3655] = {.lex_state = 75, .external_lex_state = 5}, + [3656] = {.lex_state = 75, .external_lex_state = 5}, + [3657] = {.lex_state = 75, .external_lex_state = 5}, + [3658] = {.lex_state = 75, .external_lex_state = 5}, + [3659] = {.lex_state = 75, .external_lex_state = 5}, + [3660] = {.lex_state = 75, .external_lex_state = 2}, + [3661] = {.lex_state = 75, .external_lex_state = 2}, + [3662] = {.lex_state = 75, .external_lex_state = 2}, + [3663] = {.lex_state = 7, .external_lex_state = 2}, + [3664] = {.lex_state = 75, .external_lex_state = 5}, + [3665] = {.lex_state = 75, .external_lex_state = 5}, + [3666] = {.lex_state = 75, .external_lex_state = 2}, + [3667] = {.lex_state = 75, .external_lex_state = 5}, + [3668] = {.lex_state = 75, .external_lex_state = 5}, + [3669] = {.lex_state = 75, .external_lex_state = 5}, + [3670] = {.lex_state = 75, .external_lex_state = 2}, + [3671] = {.lex_state = 75, .external_lex_state = 5}, + [3672] = {.lex_state = 75, .external_lex_state = 5}, + [3673] = {.lex_state = 75, .external_lex_state = 5}, + [3674] = {.lex_state = 75, .external_lex_state = 5}, + [3675] = {.lex_state = 75, .external_lex_state = 2}, + [3676] = {.lex_state = 75, .external_lex_state = 2}, + [3677] = {.lex_state = 8, .external_lex_state = 2}, + [3678] = {.lex_state = 75, .external_lex_state = 5}, + [3679] = {.lex_state = 75, .external_lex_state = 5}, + [3680] = {.lex_state = 75, .external_lex_state = 2}, + [3681] = {.lex_state = 75, .external_lex_state = 5}, + [3682] = {.lex_state = 75, .external_lex_state = 5}, + [3683] = {.lex_state = 75, .external_lex_state = 5}, + [3684] = {.lex_state = 75, .external_lex_state = 2}, + [3685] = {.lex_state = 75, .external_lex_state = 2}, + [3686] = {.lex_state = 75, .external_lex_state = 5}, + [3687] = {.lex_state = 75, .external_lex_state = 5}, + [3688] = {.lex_state = 75, .external_lex_state = 2}, + [3689] = {.lex_state = 75, .external_lex_state = 2}, + [3690] = {.lex_state = 75, .external_lex_state = 5}, + [3691] = {.lex_state = 75, .external_lex_state = 5}, + [3692] = {.lex_state = 75, .external_lex_state = 2}, + [3693] = {.lex_state = 75, .external_lex_state = 2}, + [3694] = {.lex_state = 75, .external_lex_state = 2}, + [3695] = {.lex_state = 7, .external_lex_state = 2}, + [3696] = {.lex_state = 75, .external_lex_state = 2}, + [3697] = {.lex_state = 75, .external_lex_state = 2}, + [3698] = {.lex_state = 75, .external_lex_state = 5}, + [3699] = {.lex_state = 75, .external_lex_state = 2}, + [3700] = {.lex_state = 75, .external_lex_state = 5}, + [3701] = {.lex_state = 75, .external_lex_state = 5}, + [3702] = {.lex_state = 75, .external_lex_state = 5}, + [3703] = {.lex_state = 75, .external_lex_state = 5}, + [3704] = {.lex_state = 75, .external_lex_state = 5}, + [3705] = {.lex_state = 75, .external_lex_state = 5}, + [3706] = {.lex_state = 75, .external_lex_state = 5}, + [3707] = {.lex_state = 75, .external_lex_state = 5}, + [3708] = {.lex_state = 75, .external_lex_state = 5}, + [3709] = {.lex_state = 75, .external_lex_state = 2}, + [3710] = {.lex_state = 75, .external_lex_state = 5}, + [3711] = {.lex_state = 75, .external_lex_state = 2}, + [3712] = {.lex_state = 75, .external_lex_state = 5}, + [3713] = {.lex_state = 75, .external_lex_state = 2}, + [3714] = {.lex_state = 75, .external_lex_state = 5}, + [3715] = {.lex_state = 75, .external_lex_state = 2}, + [3716] = {.lex_state = 75, .external_lex_state = 2}, + [3717] = {.lex_state = 75, .external_lex_state = 2}, + [3718] = {.lex_state = 75, .external_lex_state = 5}, + [3719] = {.lex_state = 75, .external_lex_state = 2}, + [3720] = {.lex_state = 75, .external_lex_state = 2}, + [3721] = {.lex_state = 75, .external_lex_state = 5}, + [3722] = {.lex_state = 75, .external_lex_state = 2}, + [3723] = {.lex_state = 75, .external_lex_state = 2}, + [3724] = {.lex_state = 75, .external_lex_state = 5}, + [3725] = {.lex_state = 75, .external_lex_state = 5}, + [3726] = {.lex_state = 75, .external_lex_state = 5}, + [3727] = {.lex_state = 75, .external_lex_state = 5}, + [3728] = {.lex_state = 75, .external_lex_state = 5}, + [3729] = {.lex_state = 75, .external_lex_state = 5}, + [3730] = {.lex_state = 75, .external_lex_state = 2}, + [3731] = {.lex_state = 75, .external_lex_state = 2}, + [3732] = {.lex_state = 75, .external_lex_state = 2}, + [3733] = {.lex_state = 75, .external_lex_state = 2}, + [3734] = {.lex_state = 75, .external_lex_state = 5}, + [3735] = {.lex_state = 75, .external_lex_state = 5}, + [3736] = {.lex_state = 75, .external_lex_state = 5}, + [3737] = {.lex_state = 75, .external_lex_state = 5}, + [3738] = {.lex_state = 75, .external_lex_state = 5}, + [3739] = {.lex_state = 7, .external_lex_state = 2}, + [3740] = {.lex_state = 75, .external_lex_state = 5}, + [3741] = {.lex_state = 75, .external_lex_state = 5}, + [3742] = {.lex_state = 75, .external_lex_state = 2}, + [3743] = {.lex_state = 75, .external_lex_state = 5}, + [3744] = {.lex_state = 75, .external_lex_state = 2}, + [3745] = {.lex_state = 75, .external_lex_state = 5}, + [3746] = {.lex_state = 75, .external_lex_state = 5}, + [3747] = {.lex_state = 75, .external_lex_state = 5}, + [3748] = {.lex_state = 75, .external_lex_state = 5}, + [3749] = {.lex_state = 75, .external_lex_state = 5}, + [3750] = {.lex_state = 75, .external_lex_state = 5}, + [3751] = {.lex_state = 75, .external_lex_state = 6}, + [3752] = {.lex_state = 75, .external_lex_state = 2}, + [3753] = {.lex_state = 75, .external_lex_state = 2}, + [3754] = {.lex_state = 75, .external_lex_state = 6}, + [3755] = {.lex_state = 75, .external_lex_state = 2}, + [3756] = {.lex_state = 75, .external_lex_state = 6}, + [3757] = {.lex_state = 75, .external_lex_state = 6}, + [3758] = {.lex_state = 75, .external_lex_state = 2}, + [3759] = {.lex_state = 75, .external_lex_state = 6}, + [3760] = {.lex_state = 75, .external_lex_state = 2}, + [3761] = {.lex_state = 75, .external_lex_state = 2}, + [3762] = {.lex_state = 75, .external_lex_state = 6}, + [3763] = {.lex_state = 75, .external_lex_state = 2}, + [3764] = {.lex_state = 13, .external_lex_state = 7}, + [3765] = {.lex_state = 75, .external_lex_state = 2}, + [3766] = {.lex_state = 75, .external_lex_state = 2}, + [3767] = {.lex_state = 75, .external_lex_state = 2}, + [3768] = {.lex_state = 75, .external_lex_state = 2}, + [3769] = {.lex_state = 75, .external_lex_state = 2}, + [3770] = {.lex_state = 75, .external_lex_state = 6}, + [3771] = {.lex_state = 75, .external_lex_state = 2}, + [3772] = {.lex_state = 75, .external_lex_state = 2}, + [3773] = {.lex_state = 75, .external_lex_state = 2}, + [3774] = {.lex_state = 75, .external_lex_state = 2}, + [3775] = {.lex_state = 75, .external_lex_state = 2}, + [3776] = {.lex_state = 75, .external_lex_state = 2}, + [3777] = {.lex_state = 75, .external_lex_state = 5}, + [3778] = {.lex_state = 75, .external_lex_state = 2}, + [3779] = {.lex_state = 75, .external_lex_state = 2}, + [3780] = {.lex_state = 75, .external_lex_state = 2}, + [3781] = {.lex_state = 75, .external_lex_state = 2}, + [3782] = {.lex_state = 75, .external_lex_state = 2}, + [3783] = {.lex_state = 75, .external_lex_state = 6}, + [3784] = {.lex_state = 75, .external_lex_state = 2}, + [3785] = {.lex_state = 13, .external_lex_state = 7}, + [3786] = {.lex_state = 75, .external_lex_state = 5}, + [3787] = {.lex_state = 75, .external_lex_state = 2}, + [3788] = {.lex_state = 75, .external_lex_state = 2}, + [3789] = {.lex_state = 75, .external_lex_state = 6}, + [3790] = {.lex_state = 75, .external_lex_state = 5}, + [3791] = {.lex_state = 75, .external_lex_state = 2}, + [3792] = {.lex_state = 75, .external_lex_state = 2}, + [3793] = {.lex_state = 75, .external_lex_state = 5}, + [3794] = {.lex_state = 75, .external_lex_state = 5}, + [3795] = {.lex_state = 75, .external_lex_state = 2}, + [3796] = {.lex_state = 75, .external_lex_state = 6}, + [3797] = {.lex_state = 75, .external_lex_state = 5}, + [3798] = {.lex_state = 75, .external_lex_state = 2}, + [3799] = {.lex_state = 75, .external_lex_state = 6}, + [3800] = {.lex_state = 75, .external_lex_state = 6}, + [3801] = {.lex_state = 75, .external_lex_state = 5}, + [3802] = {.lex_state = 75, .external_lex_state = 2}, + [3803] = {.lex_state = 75, .external_lex_state = 5}, + [3804] = {.lex_state = 75, .external_lex_state = 2}, + [3805] = {.lex_state = 75, .external_lex_state = 6}, + [3806] = {.lex_state = 75, .external_lex_state = 2}, + [3807] = {.lex_state = 75, .external_lex_state = 2}, + [3808] = {.lex_state = 75, .external_lex_state = 5}, + [3809] = {.lex_state = 75, .external_lex_state = 5}, + [3810] = {.lex_state = 75, .external_lex_state = 5}, + [3811] = {.lex_state = 75, .external_lex_state = 5}, + [3812] = {.lex_state = 75, .external_lex_state = 2}, + [3813] = {.lex_state = 75, .external_lex_state = 6}, + [3814] = {.lex_state = 75, .external_lex_state = 5}, + [3815] = {.lex_state = 75, .external_lex_state = 5}, + [3816] = {.lex_state = 75, .external_lex_state = 2}, + [3817] = {.lex_state = 75, .external_lex_state = 2}, + [3818] = {.lex_state = 8, .external_lex_state = 2}, + [3819] = {.lex_state = 75, .external_lex_state = 6}, + [3820] = {.lex_state = 75, .external_lex_state = 6}, + [3821] = {.lex_state = 75, .external_lex_state = 2}, + [3822] = {.lex_state = 75, .external_lex_state = 2}, + [3823] = {.lex_state = 75, .external_lex_state = 2}, + [3824] = {.lex_state = 75, .external_lex_state = 2}, + [3825] = {.lex_state = 75, .external_lex_state = 5}, + [3826] = {.lex_state = 75, .external_lex_state = 2}, + [3827] = {.lex_state = 75, .external_lex_state = 2}, + [3828] = {.lex_state = 75, .external_lex_state = 2}, + [3829] = {.lex_state = 75, .external_lex_state = 2}, + [3830] = {.lex_state = 75, .external_lex_state = 2}, + [3831] = {.lex_state = 75, .external_lex_state = 2}, + [3832] = {.lex_state = 13, .external_lex_state = 7}, + [3833] = {.lex_state = 75, .external_lex_state = 2}, + [3834] = {.lex_state = 75, .external_lex_state = 5}, + [3835] = {.lex_state = 75, .external_lex_state = 2}, + [3836] = {.lex_state = 75, .external_lex_state = 2}, + [3837] = {.lex_state = 75, .external_lex_state = 2}, + [3838] = {.lex_state = 75, .external_lex_state = 2}, + [3839] = {.lex_state = 75, .external_lex_state = 6}, + [3840] = {.lex_state = 75, .external_lex_state = 2}, + [3841] = {.lex_state = 75, .external_lex_state = 2}, + [3842] = {.lex_state = 75, .external_lex_state = 2}, + [3843] = {.lex_state = 75, .external_lex_state = 2}, + [3844] = {.lex_state = 75, .external_lex_state = 5}, + [3845] = {.lex_state = 75, .external_lex_state = 2}, + [3846] = {.lex_state = 75, .external_lex_state = 2}, + [3847] = {.lex_state = 75, .external_lex_state = 6}, + [3848] = {.lex_state = 75, .external_lex_state = 6}, + [3849] = {.lex_state = 75, .external_lex_state = 2}, + [3850] = {.lex_state = 75, .external_lex_state = 2}, + [3851] = {.lex_state = 75, .external_lex_state = 2}, + [3852] = {.lex_state = 13, .external_lex_state = 7}, + [3853] = {.lex_state = 75, .external_lex_state = 2}, + [3854] = {.lex_state = 75, .external_lex_state = 2}, + [3855] = {.lex_state = 75, .external_lex_state = 6}, + [3856] = {.lex_state = 75, .external_lex_state = 2}, + [3857] = {.lex_state = 75, .external_lex_state = 2}, + [3858] = {.lex_state = 75, .external_lex_state = 2}, + [3859] = {.lex_state = 75, .external_lex_state = 2}, + [3860] = {.lex_state = 75, .external_lex_state = 2}, + [3861] = {.lex_state = 13, .external_lex_state = 7}, + [3862] = {.lex_state = 75, .external_lex_state = 5}, + [3863] = {.lex_state = 75, .external_lex_state = 2}, + [3864] = {.lex_state = 75, .external_lex_state = 5}, + [3865] = {.lex_state = 75, .external_lex_state = 2}, + [3866] = {.lex_state = 75, .external_lex_state = 2}, + [3867] = {.lex_state = 75, .external_lex_state = 2}, + [3868] = {.lex_state = 75, .external_lex_state = 5}, + [3869] = {.lex_state = 8, .external_lex_state = 2}, + [3870] = {.lex_state = 75, .external_lex_state = 6}, + [3871] = {.lex_state = 75, .external_lex_state = 2}, + [3872] = {.lex_state = 75, .external_lex_state = 2}, + [3873] = {.lex_state = 75, .external_lex_state = 2}, + [3874] = {.lex_state = 75, .external_lex_state = 2}, + [3875] = {.lex_state = 75, .external_lex_state = 5}, + [3876] = {.lex_state = 75, .external_lex_state = 2}, + [3877] = {.lex_state = 75, .external_lex_state = 2}, + [3878] = {.lex_state = 75, .external_lex_state = 2}, + [3879] = {.lex_state = 75, .external_lex_state = 5}, + [3880] = {.lex_state = 75, .external_lex_state = 2}, + [3881] = {.lex_state = 75, .external_lex_state = 6}, + [3882] = {.lex_state = 75, .external_lex_state = 2}, + [3883] = {.lex_state = 75, .external_lex_state = 2}, + [3884] = {.lex_state = 75, .external_lex_state = 5}, + [3885] = {.lex_state = 75, .external_lex_state = 6}, + [3886] = {.lex_state = 75, .external_lex_state = 5}, + [3887] = {.lex_state = 75, .external_lex_state = 5}, + [3888] = {.lex_state = 75, .external_lex_state = 2}, + [3889] = {.lex_state = 75, .external_lex_state = 5}, + [3890] = {.lex_state = 75, .external_lex_state = 2}, + [3891] = {.lex_state = 75, .external_lex_state = 5}, + [3892] = {.lex_state = 75, .external_lex_state = 2}, + [3893] = {.lex_state = 75, .external_lex_state = 6}, + [3894] = {.lex_state = 75, .external_lex_state = 2}, + [3895] = {.lex_state = 75, .external_lex_state = 6}, + [3896] = {.lex_state = 75, .external_lex_state = 5}, + [3897] = {.lex_state = 75, .external_lex_state = 2}, + [3898] = {.lex_state = 75, .external_lex_state = 2}, + [3899] = {.lex_state = 75, .external_lex_state = 2}, + [3900] = {.lex_state = 75, .external_lex_state = 6}, + [3901] = {.lex_state = 13, .external_lex_state = 8}, + [3902] = {.lex_state = 75, .external_lex_state = 5}, + [3903] = {.lex_state = 75, .external_lex_state = 2}, + [3904] = {.lex_state = 75, .external_lex_state = 5}, + [3905] = {.lex_state = 75, .external_lex_state = 5}, + [3906] = {.lex_state = 75, .external_lex_state = 2}, + [3907] = {.lex_state = 75, .external_lex_state = 5}, + [3908] = {.lex_state = 75, .external_lex_state = 5}, + [3909] = {.lex_state = 75, .external_lex_state = 5}, + [3910] = {.lex_state = 75, .external_lex_state = 5}, + [3911] = {.lex_state = 75, .external_lex_state = 5}, + [3912] = {.lex_state = 75, .external_lex_state = 5}, + [3913] = {.lex_state = 75, .external_lex_state = 5}, + [3914] = {.lex_state = 75, .external_lex_state = 2}, + [3915] = {.lex_state = 75, .external_lex_state = 5}, + [3916] = {.lex_state = 75, .external_lex_state = 5}, + [3917] = {.lex_state = 75, .external_lex_state = 5}, + [3918] = {.lex_state = 75, .external_lex_state = 6}, + [3919] = {.lex_state = 75, .external_lex_state = 6}, + [3920] = {.lex_state = 75, .external_lex_state = 5}, + [3921] = {.lex_state = 75, .external_lex_state = 6}, + [3922] = {.lex_state = 75, .external_lex_state = 2}, + [3923] = {.lex_state = 13, .external_lex_state = 8}, + [3924] = {.lex_state = 75, .external_lex_state = 2}, + [3925] = {.lex_state = 75, .external_lex_state = 5}, + [3926] = {.lex_state = 75, .external_lex_state = 5}, + [3927] = {.lex_state = 75, .external_lex_state = 5}, + [3928] = {.lex_state = 75, .external_lex_state = 5}, + [3929] = {.lex_state = 75, .external_lex_state = 5}, + [3930] = {.lex_state = 75, .external_lex_state = 2}, + [3931] = {.lex_state = 75, .external_lex_state = 5}, + [3932] = {.lex_state = 75, .external_lex_state = 5}, + [3933] = {.lex_state = 75, .external_lex_state = 5}, + [3934] = {.lex_state = 75, .external_lex_state = 5}, + [3935] = {.lex_state = 75, .external_lex_state = 5}, + [3936] = {.lex_state = 75, .external_lex_state = 5}, + [3937] = {.lex_state = 75, .external_lex_state = 5}, + [3938] = {.lex_state = 75, .external_lex_state = 5}, + [3939] = {.lex_state = 75, .external_lex_state = 2}, + [3940] = {.lex_state = 75, .external_lex_state = 5}, + [3941] = {.lex_state = 75, .external_lex_state = 2}, + [3942] = {.lex_state = 75, .external_lex_state = 5}, + [3943] = {.lex_state = 75, .external_lex_state = 5}, + [3944] = {.lex_state = 75, .external_lex_state = 6}, + [3945] = {.lex_state = 75, .external_lex_state = 5}, + [3946] = {.lex_state = 75, .external_lex_state = 5}, + [3947] = {.lex_state = 75, .external_lex_state = 5}, + [3948] = {.lex_state = 75, .external_lex_state = 2}, + [3949] = {.lex_state = 75, .external_lex_state = 5}, + [3950] = {.lex_state = 75, .external_lex_state = 5}, + [3951] = {.lex_state = 2, .external_lex_state = 2}, + [3952] = {.lex_state = 75, .external_lex_state = 5}, + [3953] = {.lex_state = 75, .external_lex_state = 5}, + [3954] = {.lex_state = 75, .external_lex_state = 5}, + [3955] = {.lex_state = 75, .external_lex_state = 5}, + [3956] = {.lex_state = 75, .external_lex_state = 5}, + [3957] = {.lex_state = 75, .external_lex_state = 5}, + [3958] = {.lex_state = 75, .external_lex_state = 5}, + [3959] = {.lex_state = 75, .external_lex_state = 5}, + [3960] = {.lex_state = 75, .external_lex_state = 5}, + [3961] = {.lex_state = 75, .external_lex_state = 6}, + [3962] = {.lex_state = 75, .external_lex_state = 5}, + [3963] = {.lex_state = 75, .external_lex_state = 5}, + [3964] = {.lex_state = 75, .external_lex_state = 6}, + [3965] = {.lex_state = 75, .external_lex_state = 5}, + [3966] = {.lex_state = 75, .external_lex_state = 5}, + [3967] = {.lex_state = 75, .external_lex_state = 5}, + [3968] = {.lex_state = 75, .external_lex_state = 5}, + [3969] = {.lex_state = 75, .external_lex_state = 5}, + [3970] = {.lex_state = 75, .external_lex_state = 5}, + [3971] = {.lex_state = 75, .external_lex_state = 2}, + [3972] = {.lex_state = 75, .external_lex_state = 2}, + [3973] = {.lex_state = 75, .external_lex_state = 5}, + [3974] = {.lex_state = 75, .external_lex_state = 5}, + [3975] = {.lex_state = 75, .external_lex_state = 5}, + [3976] = {.lex_state = 75, .external_lex_state = 2}, + [3977] = {.lex_state = 75, .external_lex_state = 5}, + [3978] = {.lex_state = 75, .external_lex_state = 5}, + [3979] = {.lex_state = 75, .external_lex_state = 5}, + [3980] = {.lex_state = 75, .external_lex_state = 6}, + [3981] = {.lex_state = 75, .external_lex_state = 5}, + [3982] = {.lex_state = 75, .external_lex_state = 5}, + [3983] = {.lex_state = 75, .external_lex_state = 5}, + [3984] = {.lex_state = 75, .external_lex_state = 5}, + [3985] = {.lex_state = 75, .external_lex_state = 5}, + [3986] = {.lex_state = 75, .external_lex_state = 2}, + [3987] = {.lex_state = 75, .external_lex_state = 2}, + [3988] = {.lex_state = 75, .external_lex_state = 5}, + [3989] = {.lex_state = 75, .external_lex_state = 2}, + [3990] = {.lex_state = 75, .external_lex_state = 5}, + [3991] = {.lex_state = 75, .external_lex_state = 5}, + [3992] = {.lex_state = 75, .external_lex_state = 5}, + [3993] = {.lex_state = 75, .external_lex_state = 5}, + [3994] = {.lex_state = 75, .external_lex_state = 5}, + [3995] = {.lex_state = 75, .external_lex_state = 5}, + [3996] = {.lex_state = 75, .external_lex_state = 5}, + [3997] = {.lex_state = 75, .external_lex_state = 5}, + [3998] = {.lex_state = 75, .external_lex_state = 5}, + [3999] = {.lex_state = 75, .external_lex_state = 5}, + [4000] = {.lex_state = 75, .external_lex_state = 5}, + [4001] = {.lex_state = 75, .external_lex_state = 2}, + [4002] = {.lex_state = 75, .external_lex_state = 5}, + [4003] = {.lex_state = 75, .external_lex_state = 5}, + [4004] = {.lex_state = 75, .external_lex_state = 5}, + [4005] = {.lex_state = 75, .external_lex_state = 5}, + [4006] = {.lex_state = 75, .external_lex_state = 5}, + [4007] = {.lex_state = 75, .external_lex_state = 5}, + [4008] = {.lex_state = 75, .external_lex_state = 5}, + [4009] = {.lex_state = 75, .external_lex_state = 2}, + [4010] = {.lex_state = 75, .external_lex_state = 2}, + [4011] = {.lex_state = 75, .external_lex_state = 5}, + [4012] = {.lex_state = 75, .external_lex_state = 2}, + [4013] = {.lex_state = 75, .external_lex_state = 2}, + [4014] = {.lex_state = 75, .external_lex_state = 5}, + [4015] = {.lex_state = 75, .external_lex_state = 5}, + [4016] = {.lex_state = 75, .external_lex_state = 5}, + [4017] = {.lex_state = 75, .external_lex_state = 5}, + [4018] = {.lex_state = 75, .external_lex_state = 5}, + [4019] = {.lex_state = 75, .external_lex_state = 5}, + [4020] = {.lex_state = 75, .external_lex_state = 5}, + [4021] = {.lex_state = 75, .external_lex_state = 5}, + [4022] = {.lex_state = 75, .external_lex_state = 5}, + [4023] = {.lex_state = 75, .external_lex_state = 5}, + [4024] = {.lex_state = 75, .external_lex_state = 2}, + [4025] = {.lex_state = 75, .external_lex_state = 5}, + [4026] = {.lex_state = 75, .external_lex_state = 5}, + [4027] = {.lex_state = 75, .external_lex_state = 5}, + [4028] = {.lex_state = 75, .external_lex_state = 5}, + [4029] = {.lex_state = 75, .external_lex_state = 5}, + [4030] = {.lex_state = 75, .external_lex_state = 5}, + [4031] = {.lex_state = 75, .external_lex_state = 2}, + [4032] = {.lex_state = 75, .external_lex_state = 5}, + [4033] = {.lex_state = 75, .external_lex_state = 5}, + [4034] = {.lex_state = 75, .external_lex_state = 5}, + [4035] = {.lex_state = 75, .external_lex_state = 5}, + [4036] = {.lex_state = 75, .external_lex_state = 5}, + [4037] = {.lex_state = 75, .external_lex_state = 5}, + [4038] = {.lex_state = 75, .external_lex_state = 2}, + [4039] = {.lex_state = 75, .external_lex_state = 6}, + [4040] = {.lex_state = 75, .external_lex_state = 5}, + [4041] = {.lex_state = 75, .external_lex_state = 5}, + [4042] = {.lex_state = 75, .external_lex_state = 2}, + [4043] = {.lex_state = 75, .external_lex_state = 5}, + [4044] = {.lex_state = 75, .external_lex_state = 5}, + [4045] = {.lex_state = 75, .external_lex_state = 5}, + [4046] = {.lex_state = 13, .external_lex_state = 8}, + [4047] = {.lex_state = 75, .external_lex_state = 5}, + [4048] = {.lex_state = 75, .external_lex_state = 5}, + [4049] = {.lex_state = 75, .external_lex_state = 5}, + [4050] = {.lex_state = 75, .external_lex_state = 5}, + [4051] = {.lex_state = 75, .external_lex_state = 5}, + [4052] = {.lex_state = 75, .external_lex_state = 5}, + [4053] = {.lex_state = 75, .external_lex_state = 6}, + [4054] = {.lex_state = 75, .external_lex_state = 5}, + [4055] = {.lex_state = 75, .external_lex_state = 5}, + [4056] = {.lex_state = 75, .external_lex_state = 5}, + [4057] = {.lex_state = 13, .external_lex_state = 8}, + [4058] = {.lex_state = 75, .external_lex_state = 5}, + [4059] = {.lex_state = 75, .external_lex_state = 5}, + [4060] = {.lex_state = 75, .external_lex_state = 5}, + [4061] = {.lex_state = 75, .external_lex_state = 5}, + [4062] = {.lex_state = 75, .external_lex_state = 6}, + [4063] = {.lex_state = 75, .external_lex_state = 5}, + [4064] = {.lex_state = 75, .external_lex_state = 5}, + [4065] = {.lex_state = 75, .external_lex_state = 5}, + [4066] = {.lex_state = 75, .external_lex_state = 5}, + [4067] = {.lex_state = 75, .external_lex_state = 5}, + [4068] = {.lex_state = 75, .external_lex_state = 5}, + [4069] = {.lex_state = 75, .external_lex_state = 5}, + [4070] = {.lex_state = 75, .external_lex_state = 5}, + [4071] = {.lex_state = 75, .external_lex_state = 5}, + [4072] = {.lex_state = 75, .external_lex_state = 5}, + [4073] = {.lex_state = 75, .external_lex_state = 5}, + [4074] = {.lex_state = 75, .external_lex_state = 5}, + [4075] = {.lex_state = 75, .external_lex_state = 5}, + [4076] = {.lex_state = 75, .external_lex_state = 5}, + [4077] = {.lex_state = 75, .external_lex_state = 5}, + [4078] = {.lex_state = 75, .external_lex_state = 5}, + [4079] = {.lex_state = 75, .external_lex_state = 5}, + [4080] = {.lex_state = 75, .external_lex_state = 5}, + [4081] = {.lex_state = 75, .external_lex_state = 5}, + [4082] = {.lex_state = 75, .external_lex_state = 5}, + [4083] = {.lex_state = 75, .external_lex_state = 5}, + [4084] = {.lex_state = 75, .external_lex_state = 5}, + [4085] = {.lex_state = 13, .external_lex_state = 8}, + [4086] = {.lex_state = 75, .external_lex_state = 5}, + [4087] = {.lex_state = 75, .external_lex_state = 2}, + [4088] = {.lex_state = 75, .external_lex_state = 5}, + [4089] = {.lex_state = 75, .external_lex_state = 5}, + [4090] = {.lex_state = 75, .external_lex_state = 5}, + [4091] = {.lex_state = 75, .external_lex_state = 5}, + [4092] = {.lex_state = 13, .external_lex_state = 8}, + [4093] = {.lex_state = 75, .external_lex_state = 5}, + [4094] = {.lex_state = 75, .external_lex_state = 2}, + [4095] = {.lex_state = 75, .external_lex_state = 5}, + [4096] = {.lex_state = 75, .external_lex_state = 5}, + [4097] = {.lex_state = 75, .external_lex_state = 5}, + [4098] = {.lex_state = 75, .external_lex_state = 5}, + [4099] = {.lex_state = 75, .external_lex_state = 5}, + [4100] = {.lex_state = 75, .external_lex_state = 5}, + [4101] = {.lex_state = 75, .external_lex_state = 5}, + [4102] = {.lex_state = 75, .external_lex_state = 5}, + [4103] = {.lex_state = 75, .external_lex_state = 5}, + [4104] = {.lex_state = 75, .external_lex_state = 5}, + [4105] = {.lex_state = 75, .external_lex_state = 5}, + [4106] = {.lex_state = 75, .external_lex_state = 5}, + [4107] = {.lex_state = 13, .external_lex_state = 8}, + [4108] = {.lex_state = 13, .external_lex_state = 8}, + [4109] = {.lex_state = 75, .external_lex_state = 5}, + [4110] = {.lex_state = 75, .external_lex_state = 5}, + [4111] = {.lex_state = 75, .external_lex_state = 5}, + [4112] = {.lex_state = 13, .external_lex_state = 8}, + [4113] = {.lex_state = 75, .external_lex_state = 5}, + [4114] = {.lex_state = 75, .external_lex_state = 5}, + [4115] = {.lex_state = 75, .external_lex_state = 2}, + [4116] = {.lex_state = 75, .external_lex_state = 2}, + [4117] = {.lex_state = 75, .external_lex_state = 5}, + [4118] = {.lex_state = 75, .external_lex_state = 5}, + [4119] = {.lex_state = 75, .external_lex_state = 5}, + [4120] = {.lex_state = 75, .external_lex_state = 5}, + [4121] = {.lex_state = 75, .external_lex_state = 5}, + [4122] = {.lex_state = 75, .external_lex_state = 5}, + [4123] = {.lex_state = 75, .external_lex_state = 5}, + [4124] = {.lex_state = 75, .external_lex_state = 5}, + [4125] = {.lex_state = 75, .external_lex_state = 2}, + [4126] = {.lex_state = 75, .external_lex_state = 5}, + [4127] = {.lex_state = 75, .external_lex_state = 5}, + [4128] = {.lex_state = 75, .external_lex_state = 5}, + [4129] = {.lex_state = 75, .external_lex_state = 2}, + [4130] = {.lex_state = 75, .external_lex_state = 5}, + [4131] = {.lex_state = 75, .external_lex_state = 5}, + [4132] = {.lex_state = 75, .external_lex_state = 2}, + [4133] = {.lex_state = 75, .external_lex_state = 2}, + [4134] = {.lex_state = 75, .external_lex_state = 5}, + [4135] = {.lex_state = 75, .external_lex_state = 5}, + [4136] = {.lex_state = 13, .external_lex_state = 8}, + [4137] = {.lex_state = 75, .external_lex_state = 2}, + [4138] = {.lex_state = 75, .external_lex_state = 5}, + [4139] = {.lex_state = 75, .external_lex_state = 5}, + [4140] = {.lex_state = 75, .external_lex_state = 5}, + [4141] = {.lex_state = 75, .external_lex_state = 5}, + [4142] = {.lex_state = 75, .external_lex_state = 5}, + [4143] = {.lex_state = 8, .external_lex_state = 2}, + [4144] = {.lex_state = 75, .external_lex_state = 5}, + [4145] = {.lex_state = 7, .external_lex_state = 2}, + [4146] = {.lex_state = 75, .external_lex_state = 5}, + [4147] = {.lex_state = 75, .external_lex_state = 2}, + [4148] = {.lex_state = 75, .external_lex_state = 2}, + [4149] = {.lex_state = 75, .external_lex_state = 5}, + [4150] = {.lex_state = 75, .external_lex_state = 2}, + [4151] = {.lex_state = 75, .external_lex_state = 2}, + [4152] = {.lex_state = 75, .external_lex_state = 5}, + [4153] = {.lex_state = 75, .external_lex_state = 2}, + [4154] = {.lex_state = 75, .external_lex_state = 2}, + [4155] = {.lex_state = 75, .external_lex_state = 5}, + [4156] = {.lex_state = 75, .external_lex_state = 5}, + [4157] = {.lex_state = 75, .external_lex_state = 2}, + [4158] = {.lex_state = 75, .external_lex_state = 5}, + [4159] = {.lex_state = 75, .external_lex_state = 5}, + [4160] = {.lex_state = 75, .external_lex_state = 2}, + [4161] = {.lex_state = 75, .external_lex_state = 2}, + [4162] = {.lex_state = 75, .external_lex_state = 5}, + [4163] = {.lex_state = 75, .external_lex_state = 2}, + [4164] = {.lex_state = 75, .external_lex_state = 2}, + [4165] = {.lex_state = 75, .external_lex_state = 5}, + [4166] = {.lex_state = 75, .external_lex_state = 5}, + [4167] = {.lex_state = 75, .external_lex_state = 5}, + [4168] = {.lex_state = 75, .external_lex_state = 5}, + [4169] = {.lex_state = 75, .external_lex_state = 5}, + [4170] = {.lex_state = 75, .external_lex_state = 5}, + [4171] = {.lex_state = 75, .external_lex_state = 2}, + [4172] = {.lex_state = 75, .external_lex_state = 2}, + [4173] = {.lex_state = 75, .external_lex_state = 2}, + [4174] = {.lex_state = 75, .external_lex_state = 2}, + [4175] = {.lex_state = 75, .external_lex_state = 2}, + [4176] = {.lex_state = 75, .external_lex_state = 2}, + [4177] = {.lex_state = 75, .external_lex_state = 5}, + [4178] = {.lex_state = 75, .external_lex_state = 2}, + [4179] = {.lex_state = 75, .external_lex_state = 5}, + [4180] = {.lex_state = 75, .external_lex_state = 2}, + [4181] = {.lex_state = 75, .external_lex_state = 5}, + [4182] = {.lex_state = 75, .external_lex_state = 5}, + [4183] = {.lex_state = 75, .external_lex_state = 5}, + [4184] = {.lex_state = 75, .external_lex_state = 2}, + [4185] = {.lex_state = 75, .external_lex_state = 2}, + [4186] = {.lex_state = 75, .external_lex_state = 5}, + [4187] = {.lex_state = 75, .external_lex_state = 5}, + [4188] = {.lex_state = 75, .external_lex_state = 5}, + [4189] = {.lex_state = 75, .external_lex_state = 2}, + [4190] = {.lex_state = 75, .external_lex_state = 2}, + [4191] = {.lex_state = 75, .external_lex_state = 6}, + [4192] = {.lex_state = 75, .external_lex_state = 5}, + [4193] = {.lex_state = 75, .external_lex_state = 2}, + [4194] = {.lex_state = 75, .external_lex_state = 5}, + [4195] = {.lex_state = 75, .external_lex_state = 5}, + [4196] = {.lex_state = 75, .external_lex_state = 2}, + [4197] = {.lex_state = 75, .external_lex_state = 2}, + [4198] = {.lex_state = 75, .external_lex_state = 5}, + [4199] = {.lex_state = 75, .external_lex_state = 5}, + [4200] = {.lex_state = 75, .external_lex_state = 2}, + [4201] = {.lex_state = 75, .external_lex_state = 2}, + [4202] = {.lex_state = 75, .external_lex_state = 5}, + [4203] = {.lex_state = 75, .external_lex_state = 2}, + [4204] = {.lex_state = 75, .external_lex_state = 5}, + [4205] = {.lex_state = 75, .external_lex_state = 5}, + [4206] = {.lex_state = 75, .external_lex_state = 5}, + [4207] = {.lex_state = 75, .external_lex_state = 2}, + [4208] = {.lex_state = 2, .external_lex_state = 2}, + [4209] = {.lex_state = 75, .external_lex_state = 5}, + [4210] = {.lex_state = 75, .external_lex_state = 2}, + [4211] = {.lex_state = 75, .external_lex_state = 5}, + [4212] = {.lex_state = 75, .external_lex_state = 5}, + [4213] = {.lex_state = 75, .external_lex_state = 5}, + [4214] = {.lex_state = 75, .external_lex_state = 5}, + [4215] = {.lex_state = 75, .external_lex_state = 5}, + [4216] = {.lex_state = 75, .external_lex_state = 5}, + [4217] = {.lex_state = 75, .external_lex_state = 2}, + [4218] = {.lex_state = 13, .external_lex_state = 8}, + [4219] = {.lex_state = 75, .external_lex_state = 5}, + [4220] = {.lex_state = 75, .external_lex_state = 2}, + [4221] = {.lex_state = 75, .external_lex_state = 5}, + [4222] = {.lex_state = 75, .external_lex_state = 2}, + [4223] = {.lex_state = 75, .external_lex_state = 2}, + [4224] = {.lex_state = 75, .external_lex_state = 2}, + [4225] = {.lex_state = 75, .external_lex_state = 2}, + [4226] = {.lex_state = 75, .external_lex_state = 2}, + [4227] = {.lex_state = 75, .external_lex_state = 2}, + [4228] = {.lex_state = 75, .external_lex_state = 2}, + [4229] = {.lex_state = 75, .external_lex_state = 2}, + [4230] = {.lex_state = 75, .external_lex_state = 5}, + [4231] = {.lex_state = 75, .external_lex_state = 5}, + [4232] = {.lex_state = 75, .external_lex_state = 5}, + [4233] = {.lex_state = 75, .external_lex_state = 5}, + [4234] = {.lex_state = 75, .external_lex_state = 5}, + [4235] = {.lex_state = 75, .external_lex_state = 5}, + [4236] = {.lex_state = 75, .external_lex_state = 5}, + [4237] = {.lex_state = 75, .external_lex_state = 5}, + [4238] = {.lex_state = 75, .external_lex_state = 5}, + [4239] = {.lex_state = 75, .external_lex_state = 5}, + [4240] = {.lex_state = 75, .external_lex_state = 5}, + [4241] = {.lex_state = 75, .external_lex_state = 5}, + [4242] = {.lex_state = 75, .external_lex_state = 5}, + [4243] = {.lex_state = 75, .external_lex_state = 5}, + [4244] = {.lex_state = 75, .external_lex_state = 5}, + [4245] = {.lex_state = 75, .external_lex_state = 5}, + [4246] = {.lex_state = 75, .external_lex_state = 5}, + [4247] = {.lex_state = 75, .external_lex_state = 2}, + [4248] = {.lex_state = 75, .external_lex_state = 2}, + [4249] = {.lex_state = 75, .external_lex_state = 2}, + [4250] = {.lex_state = 75, .external_lex_state = 6}, + [4251] = {.lex_state = 75, .external_lex_state = 5}, + [4252] = {.lex_state = 75, .external_lex_state = 5}, + [4253] = {.lex_state = 75, .external_lex_state = 2}, + [4254] = {.lex_state = 75, .external_lex_state = 5}, + [4255] = {.lex_state = 75, .external_lex_state = 5}, + [4256] = {.lex_state = 75, .external_lex_state = 2}, + [4257] = {.lex_state = 75, .external_lex_state = 5}, + [4258] = {.lex_state = 75, .external_lex_state = 2}, + [4259] = {.lex_state = 75, .external_lex_state = 5}, + [4260] = {.lex_state = 75, .external_lex_state = 2}, + [4261] = {.lex_state = 75, .external_lex_state = 5}, + [4262] = {.lex_state = 75, .external_lex_state = 5}, + [4263] = {.lex_state = 75, .external_lex_state = 5}, + [4264] = {.lex_state = 75, .external_lex_state = 5}, + [4265] = {.lex_state = 75, .external_lex_state = 5}, + [4266] = {.lex_state = 75, .external_lex_state = 5}, + [4267] = {.lex_state = 75, .external_lex_state = 5}, + [4268] = {.lex_state = 75, .external_lex_state = 5}, + [4269] = {.lex_state = 75, .external_lex_state = 5}, + [4270] = {.lex_state = 75, .external_lex_state = 5}, + [4271] = {.lex_state = 75, .external_lex_state = 5}, + [4272] = {.lex_state = 75, .external_lex_state = 5}, + [4273] = {.lex_state = 75, .external_lex_state = 2}, + [4274] = {.lex_state = 75, .external_lex_state = 5}, + [4275] = {.lex_state = 75, .external_lex_state = 5}, + [4276] = {.lex_state = 75, .external_lex_state = 2}, + [4277] = {.lex_state = 75, .external_lex_state = 2}, + [4278] = {.lex_state = 75, .external_lex_state = 5}, + [4279] = {.lex_state = 75, .external_lex_state = 2}, + [4280] = {.lex_state = 75, .external_lex_state = 5}, + [4281] = {.lex_state = 75, .external_lex_state = 5}, + [4282] = {.lex_state = 75, .external_lex_state = 5}, + [4283] = {.lex_state = 75, .external_lex_state = 5}, + [4284] = {.lex_state = 75, .external_lex_state = 5}, + [4285] = {.lex_state = 75, .external_lex_state = 2}, + [4286] = {.lex_state = 75, .external_lex_state = 5}, + [4287] = {.lex_state = 75, .external_lex_state = 5}, + [4288] = {.lex_state = 75, .external_lex_state = 2}, + [4289] = {.lex_state = 75, .external_lex_state = 5}, + [4290] = {.lex_state = 75, .external_lex_state = 2}, + [4291] = {.lex_state = 75, .external_lex_state = 2}, + [4292] = {.lex_state = 75, .external_lex_state = 2}, + [4293] = {.lex_state = 75, .external_lex_state = 2}, + [4294] = {.lex_state = 75, .external_lex_state = 5}, + [4295] = {.lex_state = 75, .external_lex_state = 5}, + [4296] = {.lex_state = 75, .external_lex_state = 5}, + [4297] = {.lex_state = 75, .external_lex_state = 5}, + [4298] = {.lex_state = 75, .external_lex_state = 2}, + [4299] = {.lex_state = 75, .external_lex_state = 5}, + [4300] = {.lex_state = 75, .external_lex_state = 5}, + [4301] = {.lex_state = 75, .external_lex_state = 2}, + [4302] = {.lex_state = 75, .external_lex_state = 5}, + [4303] = {.lex_state = 75, .external_lex_state = 2}, + [4304] = {.lex_state = 75, .external_lex_state = 2}, + [4305] = {.lex_state = 75, .external_lex_state = 2}, + [4306] = {.lex_state = 75, .external_lex_state = 2}, + [4307] = {.lex_state = 75, .external_lex_state = 5}, + [4308] = {.lex_state = 75, .external_lex_state = 2}, + [4309] = {.lex_state = 75, .external_lex_state = 2}, + [4310] = {.lex_state = 75, .external_lex_state = 5}, + [4311] = {.lex_state = 75, .external_lex_state = 5}, + [4312] = {.lex_state = 75, .external_lex_state = 2}, + [4313] = {.lex_state = 75, .external_lex_state = 5}, + [4314] = {.lex_state = 75, .external_lex_state = 5}, + [4315] = {.lex_state = 75, .external_lex_state = 5}, + [4316] = {.lex_state = 75, .external_lex_state = 5}, + [4317] = {.lex_state = 75, .external_lex_state = 2}, + [4318] = {.lex_state = 75, .external_lex_state = 5}, + [4319] = {.lex_state = 75, .external_lex_state = 2}, + [4320] = {.lex_state = 75, .external_lex_state = 2}, + [4321] = {.lex_state = 75, .external_lex_state = 2}, + [4322] = {.lex_state = 75, .external_lex_state = 2}, + [4323] = {.lex_state = 75, .external_lex_state = 2}, + [4324] = {.lex_state = 75, .external_lex_state = 6}, + [4325] = {.lex_state = 75, .external_lex_state = 5}, + [4326] = {.lex_state = 75, .external_lex_state = 2}, + [4327] = {.lex_state = 75, .external_lex_state = 5}, + [4328] = {.lex_state = 75, .external_lex_state = 5}, + [4329] = {.lex_state = 75, .external_lex_state = 2}, + [4330] = {.lex_state = 75, .external_lex_state = 5}, + [4331] = {.lex_state = 75, .external_lex_state = 5}, + [4332] = {.lex_state = 75, .external_lex_state = 5}, + [4333] = {.lex_state = 75, .external_lex_state = 5}, + [4334] = {.lex_state = 75, .external_lex_state = 5}, + [4335] = {.lex_state = 75, .external_lex_state = 2}, + [4336] = {.lex_state = 75, .external_lex_state = 5}, + [4337] = {.lex_state = 75, .external_lex_state = 5}, + [4338] = {.lex_state = 75, .external_lex_state = 5}, + [4339] = {.lex_state = 75, .external_lex_state = 2}, + [4340] = {.lex_state = 75, .external_lex_state = 2}, + [4341] = {.lex_state = 75, .external_lex_state = 2}, + [4342] = {.lex_state = 75, .external_lex_state = 5}, + [4343] = {.lex_state = 75, .external_lex_state = 5}, + [4344] = {.lex_state = 75, .external_lex_state = 5}, + [4345] = {.lex_state = 75, .external_lex_state = 5}, + [4346] = {.lex_state = 75, .external_lex_state = 5}, + [4347] = {.lex_state = 75, .external_lex_state = 5}, + [4348] = {.lex_state = 75, .external_lex_state = 2}, + [4349] = {.lex_state = 75, .external_lex_state = 5}, + [4350] = {.lex_state = 8, .external_lex_state = 2}, + [4351] = {.lex_state = 8, .external_lex_state = 2}, + [4352] = {.lex_state = 75, .external_lex_state = 5}, + [4353] = {.lex_state = 75, .external_lex_state = 5}, + [4354] = {.lex_state = 75, .external_lex_state = 2}, + [4355] = {.lex_state = 75, .external_lex_state = 6}, + [4356] = {.lex_state = 75, .external_lex_state = 5}, + [4357] = {.lex_state = 75, .external_lex_state = 5}, + [4358] = {.lex_state = 75, .external_lex_state = 5}, + [4359] = {.lex_state = 75, .external_lex_state = 2}, + [4360] = {.lex_state = 75, .external_lex_state = 5}, + [4361] = {.lex_state = 75, .external_lex_state = 5}, + [4362] = {.lex_state = 75, .external_lex_state = 5}, + [4363] = {.lex_state = 75, .external_lex_state = 5}, + [4364] = {.lex_state = 75, .external_lex_state = 5}, + [4365] = {.lex_state = 75, .external_lex_state = 5}, + [4366] = {.lex_state = 75, .external_lex_state = 5}, + [4367] = {.lex_state = 75, .external_lex_state = 5}, + [4368] = {.lex_state = 75, .external_lex_state = 5}, + [4369] = {.lex_state = 75, .external_lex_state = 5}, + [4370] = {.lex_state = 75, .external_lex_state = 5}, + [4371] = {.lex_state = 75, .external_lex_state = 5}, + [4372] = {.lex_state = 75, .external_lex_state = 5}, + [4373] = {.lex_state = 7, .external_lex_state = 2}, + [4374] = {.lex_state = 75, .external_lex_state = 5}, + [4375] = {.lex_state = 75, .external_lex_state = 5}, + [4376] = {.lex_state = 75, .external_lex_state = 5}, + [4377] = {.lex_state = 75, .external_lex_state = 5}, + [4378] = {.lex_state = 75, .external_lex_state = 5}, + [4379] = {.lex_state = 75, .external_lex_state = 5}, + [4380] = {.lex_state = 16, .external_lex_state = 9}, + [4381] = {.lex_state = 16, .external_lex_state = 9}, + [4382] = {.lex_state = 75, .external_lex_state = 2}, + [4383] = {.lex_state = 75, .external_lex_state = 2}, + [4384] = {.lex_state = 75, .external_lex_state = 2}, + [4385] = {.lex_state = 75, .external_lex_state = 5}, + [4386] = {.lex_state = 75, .external_lex_state = 2}, + [4387] = {.lex_state = 75, .external_lex_state = 2}, + [4388] = {.lex_state = 75, .external_lex_state = 2}, + [4389] = {.lex_state = 7, .external_lex_state = 2}, + [4390] = {.lex_state = 12, .external_lex_state = 9}, + [4391] = {.lex_state = 75, .external_lex_state = 2}, + [4392] = {.lex_state = 16, .external_lex_state = 9}, + [4393] = {.lex_state = 12, .external_lex_state = 9}, + [4394] = {.lex_state = 12, .external_lex_state = 9}, + [4395] = {.lex_state = 16, .external_lex_state = 9}, + [4396] = {.lex_state = 16, .external_lex_state = 9}, + [4397] = {.lex_state = 75, .external_lex_state = 2}, + [4398] = {.lex_state = 75, .external_lex_state = 2}, + [4399] = {.lex_state = 2, .external_lex_state = 2}, + [4400] = {.lex_state = 2, .external_lex_state = 2}, + [4401] = {.lex_state = 2, .external_lex_state = 2}, + [4402] = {.lex_state = 12, .external_lex_state = 9}, + [4403] = {.lex_state = 75, .external_lex_state = 2}, + [4404] = {.lex_state = 12, .external_lex_state = 9}, + [4405] = {.lex_state = 75, .external_lex_state = 2}, + [4406] = {.lex_state = 75, .external_lex_state = 2}, + [4407] = {.lex_state = 75, .external_lex_state = 2}, + [4408] = {.lex_state = 75, .external_lex_state = 2}, + [4409] = {.lex_state = 75, .external_lex_state = 2}, + [4410] = {.lex_state = 75, .external_lex_state = 2}, + [4411] = {.lex_state = 16, .external_lex_state = 9}, + [4412] = {.lex_state = 12, .external_lex_state = 9}, + [4413] = {.lex_state = 75, .external_lex_state = 2}, + [4414] = {.lex_state = 75, .external_lex_state = 2}, + [4415] = {.lex_state = 75, .external_lex_state = 2}, + [4416] = {.lex_state = 75, .external_lex_state = 5}, + [4417] = {.lex_state = 75, .external_lex_state = 5}, + [4418] = {.lex_state = 75, .external_lex_state = 2}, + [4419] = {.lex_state = 75, .external_lex_state = 2}, + [4420] = {.lex_state = 75, .external_lex_state = 2}, + [4421] = {.lex_state = 7, .external_lex_state = 2}, + [4422] = {.lex_state = 75, .external_lex_state = 2}, + [4423] = {.lex_state = 75, .external_lex_state = 2}, + [4424] = {.lex_state = 75, .external_lex_state = 2}, + [4425] = {.lex_state = 75, .external_lex_state = 2}, + [4426] = {.lex_state = 75, .external_lex_state = 5}, + [4427] = {.lex_state = 75, .external_lex_state = 5}, + [4428] = {.lex_state = 75, .external_lex_state = 2}, + [4429] = {.lex_state = 75, .external_lex_state = 2}, + [4430] = {.lex_state = 75, .external_lex_state = 2}, + [4431] = {.lex_state = 75, .external_lex_state = 2}, + [4432] = {.lex_state = 75, .external_lex_state = 2}, + [4433] = {.lex_state = 75, .external_lex_state = 2}, + [4434] = {.lex_state = 75, .external_lex_state = 2}, + [4435] = {.lex_state = 75, .external_lex_state = 2}, + [4436] = {.lex_state = 75, .external_lex_state = 2}, + [4437] = {.lex_state = 75, .external_lex_state = 2}, + [4438] = {.lex_state = 75, .external_lex_state = 2}, + [4439] = {.lex_state = 75, .external_lex_state = 2}, + [4440] = {.lex_state = 75, .external_lex_state = 6}, + [4441] = {.lex_state = 75, .external_lex_state = 2}, + [4442] = {.lex_state = 75, .external_lex_state = 2}, + [4443] = {.lex_state = 16, .external_lex_state = 9}, + [4444] = {.lex_state = 75, .external_lex_state = 2}, + [4445] = {.lex_state = 13, .external_lex_state = 7}, + [4446] = {.lex_state = 75, .external_lex_state = 2}, + [4447] = {.lex_state = 2, .external_lex_state = 2}, + [4448] = {.lex_state = 75, .external_lex_state = 2}, + [4449] = {.lex_state = 75, .external_lex_state = 2}, + [4450] = {.lex_state = 75, .external_lex_state = 5}, + [4451] = {.lex_state = 75, .external_lex_state = 5}, + [4452] = {.lex_state = 16, .external_lex_state = 9}, + [4453] = {.lex_state = 12, .external_lex_state = 9}, + [4454] = {.lex_state = 75, .external_lex_state = 2}, + [4455] = {.lex_state = 75, .external_lex_state = 5}, + [4456] = {.lex_state = 16, .external_lex_state = 9}, + [4457] = {.lex_state = 75, .external_lex_state = 5}, + [4458] = {.lex_state = 75, .external_lex_state = 5}, + [4459] = {.lex_state = 75, .external_lex_state = 5}, + [4460] = {.lex_state = 75, .external_lex_state = 5}, + [4461] = {.lex_state = 75, .external_lex_state = 2}, + [4462] = {.lex_state = 75, .external_lex_state = 2}, + [4463] = {.lex_state = 75, .external_lex_state = 2}, + [4464] = {.lex_state = 75, .external_lex_state = 5}, + [4465] = {.lex_state = 12, .external_lex_state = 9}, + [4466] = {.lex_state = 16, .external_lex_state = 9}, + [4467] = {.lex_state = 75, .external_lex_state = 5}, + [4468] = {.lex_state = 75, .external_lex_state = 2}, + [4469] = {.lex_state = 75, .external_lex_state = 5}, + [4470] = {.lex_state = 75, .external_lex_state = 2}, + [4471] = {.lex_state = 12, .external_lex_state = 9}, + [4472] = {.lex_state = 75, .external_lex_state = 2}, + [4473] = {.lex_state = 75, .external_lex_state = 2}, + [4474] = {.lex_state = 75, .external_lex_state = 2}, + [4475] = {.lex_state = 75, .external_lex_state = 2}, + [4476] = {.lex_state = 12, .external_lex_state = 9}, + [4477] = {.lex_state = 75, .external_lex_state = 2}, + [4478] = {.lex_state = 16, .external_lex_state = 9}, + [4479] = {.lex_state = 75, .external_lex_state = 2}, + [4480] = {.lex_state = 75, .external_lex_state = 2}, + [4481] = {.lex_state = 75, .external_lex_state = 2}, + [4482] = {.lex_state = 16, .external_lex_state = 9}, + [4483] = {.lex_state = 75, .external_lex_state = 2}, + [4484] = {.lex_state = 75, .external_lex_state = 2}, + [4485] = {.lex_state = 2, .external_lex_state = 2}, + [4486] = {.lex_state = 75, .external_lex_state = 2}, + [4487] = {.lex_state = 13, .external_lex_state = 7}, + [4488] = {.lex_state = 75, .external_lex_state = 2}, + [4489] = {.lex_state = 75, .external_lex_state = 2}, + [4490] = {.lex_state = 75, .external_lex_state = 2}, + [4491] = {.lex_state = 75, .external_lex_state = 2}, + [4492] = {.lex_state = 75, .external_lex_state = 2}, + [4493] = {.lex_state = 12, .external_lex_state = 9}, + [4494] = {.lex_state = 12, .external_lex_state = 9}, + [4495] = {.lex_state = 16, .external_lex_state = 9}, + [4496] = {.lex_state = 16, .external_lex_state = 9}, + [4497] = {.lex_state = 75, .external_lex_state = 2}, + [4498] = {.lex_state = 75, .external_lex_state = 2}, + [4499] = {.lex_state = 75, .external_lex_state = 2}, + [4500] = {.lex_state = 75, .external_lex_state = 2}, + [4501] = {.lex_state = 75, .external_lex_state = 2}, + [4502] = {.lex_state = 75, .external_lex_state = 2}, + [4503] = {.lex_state = 75, .external_lex_state = 2}, + [4504] = {.lex_state = 75, .external_lex_state = 2}, + [4505] = {.lex_state = 75, .external_lex_state = 2}, + [4506] = {.lex_state = 75, .external_lex_state = 5}, + [4507] = {.lex_state = 75, .external_lex_state = 2}, + [4508] = {.lex_state = 75, .external_lex_state = 2}, + [4509] = {.lex_state = 12, .external_lex_state = 9}, + [4510] = {.lex_state = 75, .external_lex_state = 2}, + [4511] = {.lex_state = 16, .external_lex_state = 9}, + [4512] = {.lex_state = 12, .external_lex_state = 9}, + [4513] = {.lex_state = 12, .external_lex_state = 9}, + [4514] = {.lex_state = 75, .external_lex_state = 2}, + [4515] = {.lex_state = 75, .external_lex_state = 5}, + [4516] = {.lex_state = 75, .external_lex_state = 5}, + [4517] = {.lex_state = 75, .external_lex_state = 5}, + [4518] = {.lex_state = 75, .external_lex_state = 5}, + [4519] = {.lex_state = 75, .external_lex_state = 5}, + [4520] = {.lex_state = 75, .external_lex_state = 5}, + [4521] = {.lex_state = 75, .external_lex_state = 5}, + [4522] = {.lex_state = 75, .external_lex_state = 5}, + [4523] = {.lex_state = 75, .external_lex_state = 2}, + [4524] = {.lex_state = 75, .external_lex_state = 2}, + [4525] = {.lex_state = 75, .external_lex_state = 5}, + [4526] = {.lex_state = 75, .external_lex_state = 5}, + [4527] = {.lex_state = 75, .external_lex_state = 5}, + [4528] = {.lex_state = 75, .external_lex_state = 5}, + [4529] = {.lex_state = 75, .external_lex_state = 5}, + [4530] = {.lex_state = 75, .external_lex_state = 5}, + [4531] = {.lex_state = 75, .external_lex_state = 2}, + [4532] = {.lex_state = 75, .external_lex_state = 5}, + [4533] = {.lex_state = 75, .external_lex_state = 2}, + [4534] = {.lex_state = 75, .external_lex_state = 5}, + [4535] = {.lex_state = 75, .external_lex_state = 5}, + [4536] = {.lex_state = 75, .external_lex_state = 5}, + [4537] = {.lex_state = 75, .external_lex_state = 2}, + [4538] = {.lex_state = 75, .external_lex_state = 5}, + [4539] = {.lex_state = 75, .external_lex_state = 5}, + [4540] = {.lex_state = 75, .external_lex_state = 2}, + [4541] = {.lex_state = 75, .external_lex_state = 2}, + [4542] = {.lex_state = 75, .external_lex_state = 2}, + [4543] = {.lex_state = 75, .external_lex_state = 2}, + [4544] = {.lex_state = 75, .external_lex_state = 2}, + [4545] = {.lex_state = 75, .external_lex_state = 2}, + [4546] = {.lex_state = 75, .external_lex_state = 5}, + [4547] = {.lex_state = 75, .external_lex_state = 5}, + [4548] = {.lex_state = 75, .external_lex_state = 5}, + [4549] = {.lex_state = 75, .external_lex_state = 5}, + [4550] = {.lex_state = 75, .external_lex_state = 5}, + [4551] = {.lex_state = 75, .external_lex_state = 5}, + [4552] = {.lex_state = 75, .external_lex_state = 2}, + [4553] = {.lex_state = 75, .external_lex_state = 2}, + [4554] = {.lex_state = 75, .external_lex_state = 2}, + [4555] = {.lex_state = 75, .external_lex_state = 2}, + [4556] = {.lex_state = 75, .external_lex_state = 5}, + [4557] = {.lex_state = 75, .external_lex_state = 5}, + [4558] = {.lex_state = 75, .external_lex_state = 5}, + [4559] = {.lex_state = 75, .external_lex_state = 5}, + [4560] = {.lex_state = 75, .external_lex_state = 5}, + [4561] = {.lex_state = 75, .external_lex_state = 5}, + [4562] = {.lex_state = 75, .external_lex_state = 5}, + [4563] = {.lex_state = 75, .external_lex_state = 5}, + [4564] = {.lex_state = 75, .external_lex_state = 5}, + [4565] = {.lex_state = 75, .external_lex_state = 5}, + [4566] = {.lex_state = 75, .external_lex_state = 5}, + [4567] = {.lex_state = 75, .external_lex_state = 5}, + [4568] = {.lex_state = 75, .external_lex_state = 2}, + [4569] = {.lex_state = 75, .external_lex_state = 5}, + [4570] = {.lex_state = 75, .external_lex_state = 5}, + [4571] = {.lex_state = 75, .external_lex_state = 5}, + [4572] = {.lex_state = 75, .external_lex_state = 5}, + [4573] = {.lex_state = 75, .external_lex_state = 5}, + [4574] = {.lex_state = 75, .external_lex_state = 5}, + [4575] = {.lex_state = 75, .external_lex_state = 5}, + [4576] = {.lex_state = 75, .external_lex_state = 2}, + [4577] = {.lex_state = 75, .external_lex_state = 5}, + [4578] = {.lex_state = 75, .external_lex_state = 2}, + [4579] = {.lex_state = 75, .external_lex_state = 5}, + [4580] = {.lex_state = 75, .external_lex_state = 5}, + [4581] = {.lex_state = 75, .external_lex_state = 5}, + [4582] = {.lex_state = 75, .external_lex_state = 5}, + [4583] = {.lex_state = 75, .external_lex_state = 5}, + [4584] = {.lex_state = 75, .external_lex_state = 5}, + [4585] = {.lex_state = 75, .external_lex_state = 5}, + [4586] = {.lex_state = 75, .external_lex_state = 2}, + [4587] = {.lex_state = 75, .external_lex_state = 2}, + [4588] = {.lex_state = 75, .external_lex_state = 2}, + [4589] = {.lex_state = 75, .external_lex_state = 5}, + [4590] = {.lex_state = 75, .external_lex_state = 2}, + [4591] = {.lex_state = 75, .external_lex_state = 2}, + [4592] = {.lex_state = 75, .external_lex_state = 5}, + [4593] = {.lex_state = 75, .external_lex_state = 5}, + [4594] = {.lex_state = 75, .external_lex_state = 2}, + [4595] = {.lex_state = 75, .external_lex_state = 2}, + [4596] = {.lex_state = 75, .external_lex_state = 2}, + [4597] = {.lex_state = 75, .external_lex_state = 2}, + [4598] = {.lex_state = 75, .external_lex_state = 5}, + [4599] = {.lex_state = 75, .external_lex_state = 2}, + [4600] = {.lex_state = 75, .external_lex_state = 5}, + [4601] = {.lex_state = 75, .external_lex_state = 5}, + [4602] = {.lex_state = 75, .external_lex_state = 2}, + [4603] = {.lex_state = 75, .external_lex_state = 5}, + [4604] = {.lex_state = 75, .external_lex_state = 5}, + [4605] = {.lex_state = 75, .external_lex_state = 5}, + [4606] = {.lex_state = 75, .external_lex_state = 5}, + [4607] = {.lex_state = 75, .external_lex_state = 5}, + [4608] = {.lex_state = 75, .external_lex_state = 5}, + [4609] = {.lex_state = 75, .external_lex_state = 5}, + [4610] = {.lex_state = 75, .external_lex_state = 5}, + [4611] = {.lex_state = 75, .external_lex_state = 5}, + [4612] = {.lex_state = 75, .external_lex_state = 5}, + [4613] = {.lex_state = 75, .external_lex_state = 5}, + [4614] = {.lex_state = 75, .external_lex_state = 5}, + [4615] = {.lex_state = 75, .external_lex_state = 5}, + [4616] = {.lex_state = 75, .external_lex_state = 5}, + [4617] = {.lex_state = 75, .external_lex_state = 5}, + [4618] = {.lex_state = 75, .external_lex_state = 5}, + [4619] = {.lex_state = 75, .external_lex_state = 5}, + [4620] = {.lex_state = 75, .external_lex_state = 2}, + [4621] = {.lex_state = 75, .external_lex_state = 2}, + [4622] = {.lex_state = 75, .external_lex_state = 2}, + [4623] = {.lex_state = 75, .external_lex_state = 5}, + [4624] = {.lex_state = 75, .external_lex_state = 5}, + [4625] = {.lex_state = 75, .external_lex_state = 5}, + [4626] = {.lex_state = 75, .external_lex_state = 5}, + [4627] = {.lex_state = 75, .external_lex_state = 5}, + [4628] = {.lex_state = 75, .external_lex_state = 5}, + [4629] = {.lex_state = 75, .external_lex_state = 2}, + [4630] = {.lex_state = 75, .external_lex_state = 5}, + [4631] = {.lex_state = 75, .external_lex_state = 5}, + [4632] = {.lex_state = 75, .external_lex_state = 5}, + [4633] = {.lex_state = 75, .external_lex_state = 5}, + [4634] = {.lex_state = 75, .external_lex_state = 5}, + [4635] = {.lex_state = 75, .external_lex_state = 5}, + [4636] = {.lex_state = 75, .external_lex_state = 2}, + [4637] = {.lex_state = 75, .external_lex_state = 5}, + [4638] = {.lex_state = 75, .external_lex_state = 2}, + [4639] = {.lex_state = 75, .external_lex_state = 2}, + [4640] = {.lex_state = 75, .external_lex_state = 5}, + [4641] = {.lex_state = 75, .external_lex_state = 5}, + [4642] = {.lex_state = 75, .external_lex_state = 5}, + [4643] = {.lex_state = 2, .external_lex_state = 2}, + [4644] = {.lex_state = 75, .external_lex_state = 2}, + [4645] = {.lex_state = 75, .external_lex_state = 5}, + [4646] = {.lex_state = 75, .external_lex_state = 2}, + [4647] = {.lex_state = 75, .external_lex_state = 2}, + [4648] = {.lex_state = 75, .external_lex_state = 5}, + [4649] = {.lex_state = 75, .external_lex_state = 2}, + [4650] = {.lex_state = 75, .external_lex_state = 2}, + [4651] = {.lex_state = 2, .external_lex_state = 2}, + [4652] = {.lex_state = 75, .external_lex_state = 5}, + [4653] = {.lex_state = 75, .external_lex_state = 2}, + [4654] = {.lex_state = 75, .external_lex_state = 2}, + [4655] = {.lex_state = 75, .external_lex_state = 5}, + [4656] = {.lex_state = 75, .external_lex_state = 2}, + [4657] = {.lex_state = 75, .external_lex_state = 5}, + [4658] = {.lex_state = 75, .external_lex_state = 5}, + [4659] = {.lex_state = 75, .external_lex_state = 5}, + [4660] = {.lex_state = 75, .external_lex_state = 5}, + [4661] = {.lex_state = 75, .external_lex_state = 2}, + [4662] = {.lex_state = 75, .external_lex_state = 5}, + [4663] = {.lex_state = 75, .external_lex_state = 2}, + [4664] = {.lex_state = 75, .external_lex_state = 5}, + [4665] = {.lex_state = 75, .external_lex_state = 5}, + [4666] = {.lex_state = 75, .external_lex_state = 5}, + [4667] = {.lex_state = 75, .external_lex_state = 5}, + [4668] = {.lex_state = 75, .external_lex_state = 2}, + [4669] = {.lex_state = 75, .external_lex_state = 5}, + [4670] = {.lex_state = 75, .external_lex_state = 5}, + [4671] = {.lex_state = 75, .external_lex_state = 2}, + [4672] = {.lex_state = 75, .external_lex_state = 2}, + [4673] = {.lex_state = 75, .external_lex_state = 5}, + [4674] = {.lex_state = 75, .external_lex_state = 5}, + [4675] = {.lex_state = 75, .external_lex_state = 5}, + [4676] = {.lex_state = 75, .external_lex_state = 5}, + [4677] = {.lex_state = 75, .external_lex_state = 5}, + [4678] = {.lex_state = 75, .external_lex_state = 2}, + [4679] = {.lex_state = 75, .external_lex_state = 5}, + [4680] = {.lex_state = 75, .external_lex_state = 5}, + [4681] = {.lex_state = 75, .external_lex_state = 2}, + [4682] = {.lex_state = 75, .external_lex_state = 5}, + [4683] = {.lex_state = 2, .external_lex_state = 2}, + [4684] = {.lex_state = 75, .external_lex_state = 2}, + [4685] = {.lex_state = 75, .external_lex_state = 2}, + [4686] = {.lex_state = 75, .external_lex_state = 2}, + [4687] = {.lex_state = 75, .external_lex_state = 2}, + [4688] = {.lex_state = 2, .external_lex_state = 2}, + [4689] = {.lex_state = 75, .external_lex_state = 5}, + [4690] = {.lex_state = 75, .external_lex_state = 5}, + [4691] = {.lex_state = 75, .external_lex_state = 5}, + [4692] = {.lex_state = 75, .external_lex_state = 2}, + [4693] = {.lex_state = 75, .external_lex_state = 2}, + [4694] = {.lex_state = 75, .external_lex_state = 5}, + [4695] = {.lex_state = 75, .external_lex_state = 2}, + [4696] = {.lex_state = 75, .external_lex_state = 5}, + [4697] = {.lex_state = 75, .external_lex_state = 2}, + [4698] = {.lex_state = 75, .external_lex_state = 2}, + [4699] = {.lex_state = 75, .external_lex_state = 5}, + [4700] = {.lex_state = 75, .external_lex_state = 2}, + [4701] = {.lex_state = 75, .external_lex_state = 5}, + [4702] = {.lex_state = 75, .external_lex_state = 5}, + [4703] = {.lex_state = 75, .external_lex_state = 5}, + [4704] = {.lex_state = 75, .external_lex_state = 5}, + [4705] = {.lex_state = 75, .external_lex_state = 5}, + [4706] = {.lex_state = 75, .external_lex_state = 5}, + [4707] = {.lex_state = 75, .external_lex_state = 5}, + [4708] = {.lex_state = 75, .external_lex_state = 2}, + [4709] = {.lex_state = 75, .external_lex_state = 5}, + [4710] = {.lex_state = 75, .external_lex_state = 5}, + [4711] = {.lex_state = 75, .external_lex_state = 5}, + [4712] = {.lex_state = 75, .external_lex_state = 2}, + [4713] = {.lex_state = 75, .external_lex_state = 2}, + [4714] = {.lex_state = 75, .external_lex_state = 2}, + [4715] = {.lex_state = 75, .external_lex_state = 5}, + [4716] = {.lex_state = 75, .external_lex_state = 2}, + [4717] = {.lex_state = 75, .external_lex_state = 5}, + [4718] = {.lex_state = 75, .external_lex_state = 5}, + [4719] = {.lex_state = 75, .external_lex_state = 5}, + [4720] = {.lex_state = 75, .external_lex_state = 5}, + [4721] = {.lex_state = 75, .external_lex_state = 2}, + [4722] = {.lex_state = 75, .external_lex_state = 5}, + [4723] = {.lex_state = 75, .external_lex_state = 5}, + [4724] = {.lex_state = 75, .external_lex_state = 5}, + [4725] = {.lex_state = 75, .external_lex_state = 5}, + [4726] = {.lex_state = 75, .external_lex_state = 5}, + [4727] = {.lex_state = 75, .external_lex_state = 5}, + [4728] = {.lex_state = 75, .external_lex_state = 5}, + [4729] = {.lex_state = 75, .external_lex_state = 5}, + [4730] = {.lex_state = 75, .external_lex_state = 2}, + [4731] = {.lex_state = 75, .external_lex_state = 5}, + [4732] = {.lex_state = 75, .external_lex_state = 5}, + [4733] = {.lex_state = 75, .external_lex_state = 2}, + [4734] = {.lex_state = 75, .external_lex_state = 2}, + [4735] = {.lex_state = 75, .external_lex_state = 2}, + [4736] = {.lex_state = 75, .external_lex_state = 2}, + [4737] = {.lex_state = 75, .external_lex_state = 5}, + [4738] = {.lex_state = 75, .external_lex_state = 5}, + [4739] = {.lex_state = 75, .external_lex_state = 5}, + [4740] = {.lex_state = 75, .external_lex_state = 2}, + [4741] = {.lex_state = 75, .external_lex_state = 5}, + [4742] = {.lex_state = 75, .external_lex_state = 5}, + [4743] = {.lex_state = 75, .external_lex_state = 5}, + [4744] = {.lex_state = 75, .external_lex_state = 2}, + [4745] = {.lex_state = 75, .external_lex_state = 2}, + [4746] = {.lex_state = 75, .external_lex_state = 2}, + [4747] = {.lex_state = 75, .external_lex_state = 5}, + [4748] = {.lex_state = 75, .external_lex_state = 5}, + [4749] = {.lex_state = 75, .external_lex_state = 5}, + [4750] = {.lex_state = 75, .external_lex_state = 5}, + [4751] = {.lex_state = 75, .external_lex_state = 5}, + [4752] = {.lex_state = 75, .external_lex_state = 5}, + [4753] = {.lex_state = 75, .external_lex_state = 5}, + [4754] = {.lex_state = 75, .external_lex_state = 5}, + [4755] = {.lex_state = 75, .external_lex_state = 5}, + [4756] = {.lex_state = 75, .external_lex_state = 5}, + [4757] = {.lex_state = 75, .external_lex_state = 5}, + [4758] = {.lex_state = 75, .external_lex_state = 5}, + [4759] = {.lex_state = 75, .external_lex_state = 5}, + [4760] = {.lex_state = 75, .external_lex_state = 5}, + [4761] = {.lex_state = 75, .external_lex_state = 5}, + [4762] = {.lex_state = 75, .external_lex_state = 5}, + [4763] = {.lex_state = 75, .external_lex_state = 5}, + [4764] = {.lex_state = 75, .external_lex_state = 5}, + [4765] = {.lex_state = 75, .external_lex_state = 5}, + [4766] = {.lex_state = 75, .external_lex_state = 5}, + [4767] = {.lex_state = 75, .external_lex_state = 5}, + [4768] = {.lex_state = 75, .external_lex_state = 5}, + [4769] = {.lex_state = 75, .external_lex_state = 5}, + [4770] = {.lex_state = 75, .external_lex_state = 5}, + [4771] = {.lex_state = 75, .external_lex_state = 5}, + [4772] = {.lex_state = 75, .external_lex_state = 5}, + [4773] = {.lex_state = 75, .external_lex_state = 5}, + [4774] = {.lex_state = 75, .external_lex_state = 5}, + [4775] = {.lex_state = 75, .external_lex_state = 5}, + [4776] = {.lex_state = 75, .external_lex_state = 5}, + [4777] = {.lex_state = 75, .external_lex_state = 5}, + [4778] = {.lex_state = 75, .external_lex_state = 5}, + [4779] = {.lex_state = 75, .external_lex_state = 5}, + [4780] = {.lex_state = 2, .external_lex_state = 2}, + [4781] = {.lex_state = 75, .external_lex_state = 5}, + [4782] = {.lex_state = 75, .external_lex_state = 5}, + [4783] = {.lex_state = 75, .external_lex_state = 2}, + [4784] = {.lex_state = 75, .external_lex_state = 2}, + [4785] = {.lex_state = 75, .external_lex_state = 2}, + [4786] = {.lex_state = 75, .external_lex_state = 5}, + [4787] = {.lex_state = 75, .external_lex_state = 2}, + [4788] = {.lex_state = 75, .external_lex_state = 5}, + [4789] = {.lex_state = 75, .external_lex_state = 2}, + [4790] = {.lex_state = 75, .external_lex_state = 2}, + [4791] = {.lex_state = 75, .external_lex_state = 5}, + [4792] = {.lex_state = 75, .external_lex_state = 2}, + [4793] = {.lex_state = 75, .external_lex_state = 5}, + [4794] = {.lex_state = 75, .external_lex_state = 5}, + [4795] = {.lex_state = 75, .external_lex_state = 5}, + [4796] = {.lex_state = 75, .external_lex_state = 5}, + [4797] = {.lex_state = 75, .external_lex_state = 2}, + [4798] = {.lex_state = 75, .external_lex_state = 5}, + [4799] = {.lex_state = 75, .external_lex_state = 5}, + [4800] = {.lex_state = 75, .external_lex_state = 5}, + [4801] = {.lex_state = 75, .external_lex_state = 5}, + [4802] = {.lex_state = 75, .external_lex_state = 2}, + [4803] = {.lex_state = 75, .external_lex_state = 5}, + [4804] = {.lex_state = 75, .external_lex_state = 5}, + [4805] = {.lex_state = 75, .external_lex_state = 5}, + [4806] = {.lex_state = 75, .external_lex_state = 2}, + [4807] = {.lex_state = 75, .external_lex_state = 5}, + [4808] = {.lex_state = 75, .external_lex_state = 2}, + [4809] = {.lex_state = 75, .external_lex_state = 5}, + [4810] = {.lex_state = 75, .external_lex_state = 2}, + [4811] = {.lex_state = 75, .external_lex_state = 5}, + [4812] = {.lex_state = 75, .external_lex_state = 2}, + [4813] = {.lex_state = 75, .external_lex_state = 5}, + [4814] = {.lex_state = 75, .external_lex_state = 2}, + [4815] = {.lex_state = 75, .external_lex_state = 2}, + [4816] = {.lex_state = 75, .external_lex_state = 5}, + [4817] = {.lex_state = 75, .external_lex_state = 5}, + [4818] = {.lex_state = 75, .external_lex_state = 5}, + [4819] = {.lex_state = 75, .external_lex_state = 5}, + [4820] = {.lex_state = 75, .external_lex_state = 5}, + [4821] = {.lex_state = 75, .external_lex_state = 5}, + [4822] = {.lex_state = 75, .external_lex_state = 5}, + [4823] = {.lex_state = 75, .external_lex_state = 5}, + [4824] = {.lex_state = 75, .external_lex_state = 5}, + [4825] = {.lex_state = 75, .external_lex_state = 5}, + [4826] = {.lex_state = 75, .external_lex_state = 5}, + [4827] = {.lex_state = 75, .external_lex_state = 5}, + [4828] = {.lex_state = 75, .external_lex_state = 5}, + [4829] = {.lex_state = 75, .external_lex_state = 2}, + [4830] = {.lex_state = 75, .external_lex_state = 5}, + [4831] = {.lex_state = 75, .external_lex_state = 5}, + [4832] = {.lex_state = 75, .external_lex_state = 5}, + [4833] = {.lex_state = 75, .external_lex_state = 5}, + [4834] = {.lex_state = 75, .external_lex_state = 5}, + [4835] = {.lex_state = 75, .external_lex_state = 5}, + [4836] = {.lex_state = 75, .external_lex_state = 5}, + [4837] = {.lex_state = 75, .external_lex_state = 5}, + [4838] = {.lex_state = 75, .external_lex_state = 5}, + [4839] = {.lex_state = 75, .external_lex_state = 5}, + [4840] = {.lex_state = 75, .external_lex_state = 5}, + [4841] = {.lex_state = 75, .external_lex_state = 5}, + [4842] = {.lex_state = 75, .external_lex_state = 5}, + [4843] = {.lex_state = 75, .external_lex_state = 5}, + [4844] = {.lex_state = 75, .external_lex_state = 5}, + [4845] = {.lex_state = 75, .external_lex_state = 5}, + [4846] = {.lex_state = 75, .external_lex_state = 5}, + [4847] = {.lex_state = 75, .external_lex_state = 5}, + [4848] = {.lex_state = 75, .external_lex_state = 5}, + [4849] = {.lex_state = 75, .external_lex_state = 5}, + [4850] = {.lex_state = 75, .external_lex_state = 5}, + [4851] = {.lex_state = 75, .external_lex_state = 5}, + [4852] = {.lex_state = 75, .external_lex_state = 5}, + [4853] = {.lex_state = 75, .external_lex_state = 5}, + [4854] = {.lex_state = 75, .external_lex_state = 5}, + [4855] = {.lex_state = 75, .external_lex_state = 5}, + [4856] = {.lex_state = 75, .external_lex_state = 5}, + [4857] = {.lex_state = 75, .external_lex_state = 5}, + [4858] = {.lex_state = 75, .external_lex_state = 5}, + [4859] = {.lex_state = 75, .external_lex_state = 5}, + [4860] = {.lex_state = 75, .external_lex_state = 5}, + [4861] = {.lex_state = 75, .external_lex_state = 5}, + [4862] = {.lex_state = 75, .external_lex_state = 5}, + [4863] = {.lex_state = 75, .external_lex_state = 5}, + [4864] = {.lex_state = 75, .external_lex_state = 5}, + [4865] = {.lex_state = 75, .external_lex_state = 5}, + [4866] = {.lex_state = 75, .external_lex_state = 5}, + [4867] = {.lex_state = 75, .external_lex_state = 5}, + [4868] = {.lex_state = 75, .external_lex_state = 5}, + [4869] = {.lex_state = 75, .external_lex_state = 2}, + [4870] = {.lex_state = 75, .external_lex_state = 5}, + [4871] = {.lex_state = 75, .external_lex_state = 5}, + [4872] = {.lex_state = 75, .external_lex_state = 5}, + [4873] = {.lex_state = 75, .external_lex_state = 5}, + [4874] = {.lex_state = 75, .external_lex_state = 5}, + [4875] = {.lex_state = 75, .external_lex_state = 5}, + [4876] = {.lex_state = 75, .external_lex_state = 5}, + [4877] = {.lex_state = 75, .external_lex_state = 5}, + [4878] = {.lex_state = 75, .external_lex_state = 2}, + [4879] = {.lex_state = 75, .external_lex_state = 2}, + [4880] = {.lex_state = 75, .external_lex_state = 5}, + [4881] = {.lex_state = 75, .external_lex_state = 2}, + [4882] = {.lex_state = 75, .external_lex_state = 5}, + [4883] = {.lex_state = 75, .external_lex_state = 5}, + [4884] = {.lex_state = 75, .external_lex_state = 5}, + [4885] = {.lex_state = 75, .external_lex_state = 5}, + [4886] = {.lex_state = 75, .external_lex_state = 5}, + [4887] = {.lex_state = 75, .external_lex_state = 2}, + [4888] = {.lex_state = 75, .external_lex_state = 5}, + [4889] = {.lex_state = 75, .external_lex_state = 5}, + [4890] = {.lex_state = 75, .external_lex_state = 2}, + [4891] = {.lex_state = 2, .external_lex_state = 2}, + [4892] = {.lex_state = 75, .external_lex_state = 5}, + [4893] = {.lex_state = 75, .external_lex_state = 5}, + [4894] = {.lex_state = 75, .external_lex_state = 2}, + [4895] = {.lex_state = 75, .external_lex_state = 5}, + [4896] = {.lex_state = 75, .external_lex_state = 2}, + [4897] = {.lex_state = 75, .external_lex_state = 2}, + [4898] = {.lex_state = 75, .external_lex_state = 5}, + [4899] = {.lex_state = 75, .external_lex_state = 2}, + [4900] = {.lex_state = 75, .external_lex_state = 5}, + [4901] = {.lex_state = 75, .external_lex_state = 5}, + [4902] = {.lex_state = 75, .external_lex_state = 5}, + [4903] = {.lex_state = 75, .external_lex_state = 5}, + [4904] = {.lex_state = 75, .external_lex_state = 5}, + [4905] = {.lex_state = 75, .external_lex_state = 2}, + [4906] = {.lex_state = 75, .external_lex_state = 5}, + [4907] = {.lex_state = 75, .external_lex_state = 5}, + [4908] = {.lex_state = 75, .external_lex_state = 2}, + [4909] = {.lex_state = 75, .external_lex_state = 5}, + [4910] = {.lex_state = 75, .external_lex_state = 2}, + [4911] = {.lex_state = 75, .external_lex_state = 5}, + [4912] = {.lex_state = 75, .external_lex_state = 5}, + [4913] = {.lex_state = 75, .external_lex_state = 5}, + [4914] = {.lex_state = 75, .external_lex_state = 5}, + [4915] = {.lex_state = 75, .external_lex_state = 5}, + [4916] = {.lex_state = 75, .external_lex_state = 5}, + [4917] = {.lex_state = 75, .external_lex_state = 5}, + [4918] = {.lex_state = 75, .external_lex_state = 5}, + [4919] = {.lex_state = 75, .external_lex_state = 5}, + [4920] = {.lex_state = 75, .external_lex_state = 5}, + [4921] = {.lex_state = 75, .external_lex_state = 5}, + [4922] = {.lex_state = 75, .external_lex_state = 5}, + [4923] = {.lex_state = 75, .external_lex_state = 5}, + [4924] = {.lex_state = 75, .external_lex_state = 5}, + [4925] = {.lex_state = 75, .external_lex_state = 2}, + [4926] = {.lex_state = 75, .external_lex_state = 5}, + [4927] = {.lex_state = 75, .external_lex_state = 2}, + [4928] = {.lex_state = 75, .external_lex_state = 5}, + [4929] = {.lex_state = 75, .external_lex_state = 5}, + [4930] = {.lex_state = 75, .external_lex_state = 2}, + [4931] = {.lex_state = 75, .external_lex_state = 5}, + [4932] = {.lex_state = 75, .external_lex_state = 5}, + [4933] = {.lex_state = 75, .external_lex_state = 5}, + [4934] = {.lex_state = 75, .external_lex_state = 5}, + [4935] = {.lex_state = 75, .external_lex_state = 2}, + [4936] = {.lex_state = 75, .external_lex_state = 5}, + [4937] = {.lex_state = 75, .external_lex_state = 5}, + [4938] = {.lex_state = 75, .external_lex_state = 5}, + [4939] = {.lex_state = 75, .external_lex_state = 2}, + [4940] = {.lex_state = 75, .external_lex_state = 5}, + [4941] = {.lex_state = 75, .external_lex_state = 5}, + [4942] = {.lex_state = 75, .external_lex_state = 5}, + [4943] = {.lex_state = 75, .external_lex_state = 5}, + [4944] = {.lex_state = 75, .external_lex_state = 5}, + [4945] = {.lex_state = 75, .external_lex_state = 5}, + [4946] = {.lex_state = 75, .external_lex_state = 2}, + [4947] = {.lex_state = 75, .external_lex_state = 5}, + [4948] = {.lex_state = 75, .external_lex_state = 5}, + [4949] = {.lex_state = 75, .external_lex_state = 2}, + [4950] = {.lex_state = 75, .external_lex_state = 2}, + [4951] = {.lex_state = 75, .external_lex_state = 5}, + [4952] = {.lex_state = 13, .external_lex_state = 8}, + [4953] = {.lex_state = 75, .external_lex_state = 5}, + [4954] = {.lex_state = 75, .external_lex_state = 5}, + [4955] = {.lex_state = 75, .external_lex_state = 2}, + [4956] = {.lex_state = 75, .external_lex_state = 2}, + [4957] = {.lex_state = 75, .external_lex_state = 5}, + [4958] = {.lex_state = 75, .external_lex_state = 2}, + [4959] = {.lex_state = 75, .external_lex_state = 2}, + [4960] = {.lex_state = 75, .external_lex_state = 2}, + [4961] = {.lex_state = 75, .external_lex_state = 2}, + [4962] = {.lex_state = 75, .external_lex_state = 2}, + [4963] = {.lex_state = 75, .external_lex_state = 5}, + [4964] = {.lex_state = 75, .external_lex_state = 2}, + [4965] = {.lex_state = 75, .external_lex_state = 2}, + [4966] = {.lex_state = 75, .external_lex_state = 2}, + [4967] = {.lex_state = 75, .external_lex_state = 2}, + [4968] = {.lex_state = 75, .external_lex_state = 5}, + [4969] = {.lex_state = 75, .external_lex_state = 2}, + [4970] = {.lex_state = 75, .external_lex_state = 5}, + [4971] = {.lex_state = 75, .external_lex_state = 2}, + [4972] = {.lex_state = 75, .external_lex_state = 2}, + [4973] = {.lex_state = 75, .external_lex_state = 2}, + [4974] = {.lex_state = 75, .external_lex_state = 2}, + [4975] = {.lex_state = 75, .external_lex_state = 2}, + [4976] = {.lex_state = 75, .external_lex_state = 5}, + [4977] = {.lex_state = 75, .external_lex_state = 2}, + [4978] = {.lex_state = 75, .external_lex_state = 5}, + [4979] = {.lex_state = 75, .external_lex_state = 5}, + [4980] = {.lex_state = 75, .external_lex_state = 2}, + [4981] = {.lex_state = 75, .external_lex_state = 2}, + [4982] = {.lex_state = 75, .external_lex_state = 2}, + [4983] = {.lex_state = 75, .external_lex_state = 5}, + [4984] = {.lex_state = 75, .external_lex_state = 5}, + [4985] = {.lex_state = 75, .external_lex_state = 5}, + [4986] = {.lex_state = 75, .external_lex_state = 5}, + [4987] = {.lex_state = 75, .external_lex_state = 2}, + [4988] = {.lex_state = 75, .external_lex_state = 5}, + [4989] = {.lex_state = 75, .external_lex_state = 2}, + [4990] = {.lex_state = 75, .external_lex_state = 2}, + [4991] = {.lex_state = 75, .external_lex_state = 5}, + [4992] = {.lex_state = 75, .external_lex_state = 2}, + [4993] = {.lex_state = 75, .external_lex_state = 2}, + [4994] = {.lex_state = 75, .external_lex_state = 2}, + [4995] = {.lex_state = 75, .external_lex_state = 5}, + [4996] = {.lex_state = 75, .external_lex_state = 2}, + [4997] = {.lex_state = 75, .external_lex_state = 2}, + [4998] = {.lex_state = 75, .external_lex_state = 2}, + [4999] = {.lex_state = 75, .external_lex_state = 2}, + [5000] = {.lex_state = 75, .external_lex_state = 2}, + [5001] = {.lex_state = 75, .external_lex_state = 2}, + [5002] = {.lex_state = 75, .external_lex_state = 5}, + [5003] = {.lex_state = 75, .external_lex_state = 2}, + [5004] = {.lex_state = 75, .external_lex_state = 2}, + [5005] = {.lex_state = 75, .external_lex_state = 2}, + [5006] = {.lex_state = 75, .external_lex_state = 2}, + [5007] = {.lex_state = 75, .external_lex_state = 5}, + [5008] = {.lex_state = 75, .external_lex_state = 2}, + [5009] = {.lex_state = 75, .external_lex_state = 5}, + [5010] = {.lex_state = 75, .external_lex_state = 5}, + [5011] = {.lex_state = 75, .external_lex_state = 2}, + [5012] = {.lex_state = 75, .external_lex_state = 5}, + [5013] = {.lex_state = 75, .external_lex_state = 2}, + [5014] = {.lex_state = 75, .external_lex_state = 2}, + [5015] = {.lex_state = 75, .external_lex_state = 5}, + [5016] = {.lex_state = 75, .external_lex_state = 2}, + [5017] = {.lex_state = 75, .external_lex_state = 5}, + [5018] = {.lex_state = 75, .external_lex_state = 2}, + [5019] = {.lex_state = 75, .external_lex_state = 2}, + [5020] = {.lex_state = 75, .external_lex_state = 2}, + [5021] = {.lex_state = 75, .external_lex_state = 5}, + [5022] = {.lex_state = 75, .external_lex_state = 2}, + [5023] = {.lex_state = 75, .external_lex_state = 2}, + [5024] = {.lex_state = 75, .external_lex_state = 5}, + [5025] = {.lex_state = 75, .external_lex_state = 5}, + [5026] = {.lex_state = 75, .external_lex_state = 2}, + [5027] = {.lex_state = 75, .external_lex_state = 2}, + [5028] = {.lex_state = 75, .external_lex_state = 5}, + [5029] = {.lex_state = 75, .external_lex_state = 2}, + [5030] = {.lex_state = 75, .external_lex_state = 2}, + [5031] = {.lex_state = 75, .external_lex_state = 5}, + [5032] = {.lex_state = 75, .external_lex_state = 2}, + [5033] = {.lex_state = 75, .external_lex_state = 2}, + [5034] = {.lex_state = 75, .external_lex_state = 5}, + [5035] = {.lex_state = 75, .external_lex_state = 5}, + [5036] = {.lex_state = 75, .external_lex_state = 5}, + [5037] = {.lex_state = 75, .external_lex_state = 5}, + [5038] = {.lex_state = 75, .external_lex_state = 2}, + [5039] = {.lex_state = 75, .external_lex_state = 5}, + [5040] = {.lex_state = 75, .external_lex_state = 5}, + [5041] = {.lex_state = 75, .external_lex_state = 5}, + [5042] = {.lex_state = 75, .external_lex_state = 5}, + [5043] = {.lex_state = 75, .external_lex_state = 5}, + [5044] = {.lex_state = 75, .external_lex_state = 5}, + [5045] = {.lex_state = 75, .external_lex_state = 5}, + [5046] = {.lex_state = 75, .external_lex_state = 5}, + [5047] = {.lex_state = 75, .external_lex_state = 5}, + [5048] = {.lex_state = 75, .external_lex_state = 5}, + [5049] = {.lex_state = 75, .external_lex_state = 5}, + [5050] = {.lex_state = 75, .external_lex_state = 5}, + [5051] = {.lex_state = 75, .external_lex_state = 5}, + [5052] = {.lex_state = 75, .external_lex_state = 2}, + [5053] = {.lex_state = 75, .external_lex_state = 5}, + [5054] = {.lex_state = 75, .external_lex_state = 5}, + [5055] = {.lex_state = 75, .external_lex_state = 5}, + [5056] = {.lex_state = 75, .external_lex_state = 5}, + [5057] = {.lex_state = 75, .external_lex_state = 5}, + [5058] = {.lex_state = 75, .external_lex_state = 5}, + [5059] = {.lex_state = 75, .external_lex_state = 5}, + [5060] = {.lex_state = 75, .external_lex_state = 5}, + [5061] = {.lex_state = 75, .external_lex_state = 5}, + [5062] = {.lex_state = 75, .external_lex_state = 2}, + [5063] = {.lex_state = 75, .external_lex_state = 5}, + [5064] = {.lex_state = 75, .external_lex_state = 5}, + [5065] = {.lex_state = 75, .external_lex_state = 5}, + [5066] = {.lex_state = 75, .external_lex_state = 5}, + [5067] = {.lex_state = 75, .external_lex_state = 5}, + [5068] = {.lex_state = 75, .external_lex_state = 5}, + [5069] = {.lex_state = 75, .external_lex_state = 5}, + [5070] = {.lex_state = 75, .external_lex_state = 5}, + [5071] = {.lex_state = 75, .external_lex_state = 5}, + [5072] = {.lex_state = 75, .external_lex_state = 5}, + [5073] = {.lex_state = 75, .external_lex_state = 5}, + [5074] = {.lex_state = 75, .external_lex_state = 5}, + [5075] = {.lex_state = 2, .external_lex_state = 2}, + [5076] = {.lex_state = 2, .external_lex_state = 2}, + [5077] = {.lex_state = 75, .external_lex_state = 5}, + [5078] = {.lex_state = 75, .external_lex_state = 5}, + [5079] = {.lex_state = 75, .external_lex_state = 5}, + [5080] = {.lex_state = 75, .external_lex_state = 2}, + [5081] = {.lex_state = 75, .external_lex_state = 5}, + [5082] = {.lex_state = 75, .external_lex_state = 5}, + [5083] = {.lex_state = 75, .external_lex_state = 5}, + [5084] = {.lex_state = 75, .external_lex_state = 5}, + [5085] = {.lex_state = 75, .external_lex_state = 5}, + [5086] = {.lex_state = 75, .external_lex_state = 5}, + [5087] = {.lex_state = 75, .external_lex_state = 5}, + [5088] = {.lex_state = 75, .external_lex_state = 5}, + [5089] = {.lex_state = 75, .external_lex_state = 5}, + [5090] = {.lex_state = 75, .external_lex_state = 5}, + [5091] = {.lex_state = 75, .external_lex_state = 5}, + [5092] = {.lex_state = 75, .external_lex_state = 5}, + [5093] = {.lex_state = 75, .external_lex_state = 5}, + [5094] = {.lex_state = 75, .external_lex_state = 5}, + [5095] = {.lex_state = 75, .external_lex_state = 5}, + [5096] = {.lex_state = 75, .external_lex_state = 2}, + [5097] = {.lex_state = 75, .external_lex_state = 5}, + [5098] = {.lex_state = 75, .external_lex_state = 5}, + [5099] = {.lex_state = 75, .external_lex_state = 5}, + [5100] = {.lex_state = 75, .external_lex_state = 5}, + [5101] = {.lex_state = 75, .external_lex_state = 5}, + [5102] = {.lex_state = 75, .external_lex_state = 5}, + [5103] = {.lex_state = 75, .external_lex_state = 5}, + [5104] = {.lex_state = 75, .external_lex_state = 5}, + [5105] = {.lex_state = 75, .external_lex_state = 5}, + [5106] = {.lex_state = 2, .external_lex_state = 2}, + [5107] = {.lex_state = 75, .external_lex_state = 5}, + [5108] = {.lex_state = 2, .external_lex_state = 2}, + [5109] = {.lex_state = 75, .external_lex_state = 5}, + [5110] = {.lex_state = 75, .external_lex_state = 5}, + [5111] = {.lex_state = 75, .external_lex_state = 5}, + [5112] = {.lex_state = 75, .external_lex_state = 5}, + [5113] = {.lex_state = 75, .external_lex_state = 5}, + [5114] = {.lex_state = 75, .external_lex_state = 5}, + [5115] = {.lex_state = 75, .external_lex_state = 2}, + [5116] = {.lex_state = 75, .external_lex_state = 2}, + [5117] = {.lex_state = 75, .external_lex_state = 5}, + [5118] = {.lex_state = 75, .external_lex_state = 5}, + [5119] = {.lex_state = 75, .external_lex_state = 5}, + [5120] = {.lex_state = 75, .external_lex_state = 5}, + [5121] = {.lex_state = 75, .external_lex_state = 2}, + [5122] = {.lex_state = 75, .external_lex_state = 5}, + [5123] = {.lex_state = 75, .external_lex_state = 5}, + [5124] = {.lex_state = 75, .external_lex_state = 5}, + [5125] = {.lex_state = 75, .external_lex_state = 2}, + [5126] = {.lex_state = 75, .external_lex_state = 2}, + [5127] = {.lex_state = 75, .external_lex_state = 2}, + [5128] = {.lex_state = 75, .external_lex_state = 2}, + [5129] = {.lex_state = 75, .external_lex_state = 5}, + [5130] = {.lex_state = 75, .external_lex_state = 2}, + [5131] = {.lex_state = 75, .external_lex_state = 2}, + [5132] = {.lex_state = 75, .external_lex_state = 2}, + [5133] = {.lex_state = 75, .external_lex_state = 2}, + [5134] = {.lex_state = 75, .external_lex_state = 2}, + [5135] = {.lex_state = 75, .external_lex_state = 2}, + [5136] = {.lex_state = 75, .external_lex_state = 2}, + [5137] = {.lex_state = 75, .external_lex_state = 2}, + [5138] = {.lex_state = 75, .external_lex_state = 2}, + [5139] = {.lex_state = 75, .external_lex_state = 2}, + [5140] = {.lex_state = 75, .external_lex_state = 2}, + [5141] = {.lex_state = 75, .external_lex_state = 2}, + [5142] = {.lex_state = 75, .external_lex_state = 2}, + [5143] = {.lex_state = 75, .external_lex_state = 2}, + [5144] = {.lex_state = 75, .external_lex_state = 2}, + [5145] = {.lex_state = 75, .external_lex_state = 2}, + [5146] = {.lex_state = 75, .external_lex_state = 2}, + [5147] = {.lex_state = 75, .external_lex_state = 2}, + [5148] = {.lex_state = 75, .external_lex_state = 2}, + [5149] = {.lex_state = 75, .external_lex_state = 2}, + [5150] = {.lex_state = 75, .external_lex_state = 2}, + [5151] = {.lex_state = 75, .external_lex_state = 2}, + [5152] = {.lex_state = 75, .external_lex_state = 2}, + [5153] = {.lex_state = 75, .external_lex_state = 2}, + [5154] = {.lex_state = 75, .external_lex_state = 2}, + [5155] = {.lex_state = 75, .external_lex_state = 2}, + [5156] = {.lex_state = 75, .external_lex_state = 2}, + [5157] = {.lex_state = 75, .external_lex_state = 2}, + [5158] = {.lex_state = 75, .external_lex_state = 2}, + [5159] = {.lex_state = 75, .external_lex_state = 2}, + [5160] = {.lex_state = 75, .external_lex_state = 2}, + [5161] = {.lex_state = 75, .external_lex_state = 5}, + [5162] = {.lex_state = 75, .external_lex_state = 2}, + [5163] = {.lex_state = 75, .external_lex_state = 2}, + [5164] = {.lex_state = 75, .external_lex_state = 2}, + [5165] = {.lex_state = 75, .external_lex_state = 2}, + [5166] = {.lex_state = 75, .external_lex_state = 2}, + [5167] = {.lex_state = 75, .external_lex_state = 2}, + [5168] = {.lex_state = 75, .external_lex_state = 2}, + [5169] = {.lex_state = 75, .external_lex_state = 2}, + [5170] = {.lex_state = 75, .external_lex_state = 2}, + [5171] = {.lex_state = 75, .external_lex_state = 2}, + [5172] = {.lex_state = 75, .external_lex_state = 5}, + [5173] = {.lex_state = 75, .external_lex_state = 2}, + [5174] = {.lex_state = 75, .external_lex_state = 2}, + [5175] = {.lex_state = 75, .external_lex_state = 2}, + [5176] = {.lex_state = 75, .external_lex_state = 2}, + [5177] = {.lex_state = 75, .external_lex_state = 2}, + [5178] = {.lex_state = 75, .external_lex_state = 2}, + [5179] = {.lex_state = 75, .external_lex_state = 2}, + [5180] = {.lex_state = 75, .external_lex_state = 2}, + [5181] = {.lex_state = 75, .external_lex_state = 2}, + [5182] = {.lex_state = 75, .external_lex_state = 2}, + [5183] = {.lex_state = 75, .external_lex_state = 2}, + [5184] = {.lex_state = 75, .external_lex_state = 2}, + [5185] = {.lex_state = 75, .external_lex_state = 2}, + [5186] = {.lex_state = 75, .external_lex_state = 2}, + [5187] = {.lex_state = 75, .external_lex_state = 2}, + [5188] = {.lex_state = 75, .external_lex_state = 2}, + [5189] = {.lex_state = 75, .external_lex_state = 2}, + [5190] = {.lex_state = 75, .external_lex_state = 2}, + [5191] = {.lex_state = 75, .external_lex_state = 2}, + [5192] = {.lex_state = 75, .external_lex_state = 2}, + [5193] = {.lex_state = 75, .external_lex_state = 2}, + [5194] = {.lex_state = 75, .external_lex_state = 5}, + [5195] = {.lex_state = 75, .external_lex_state = 5}, + [5196] = {.lex_state = 75, .external_lex_state = 2}, + [5197] = {.lex_state = 75, .external_lex_state = 5}, + [5198] = {.lex_state = 75, .external_lex_state = 2}, + [5199] = {.lex_state = 75, .external_lex_state = 2}, + [5200] = {.lex_state = 75, .external_lex_state = 2}, + [5201] = {.lex_state = 75, .external_lex_state = 2}, + [5202] = {.lex_state = 75, .external_lex_state = 2}, + [5203] = {.lex_state = 75, .external_lex_state = 5}, + [5204] = {.lex_state = 75, .external_lex_state = 2}, + [5205] = {.lex_state = 75, .external_lex_state = 2}, + [5206] = {.lex_state = 75, .external_lex_state = 2}, + [5207] = {.lex_state = 75, .external_lex_state = 5}, + [5208] = {.lex_state = 75, .external_lex_state = 2}, + [5209] = {.lex_state = 75, .external_lex_state = 2}, + [5210] = {.lex_state = 75, .external_lex_state = 2}, + [5211] = {.lex_state = 75, .external_lex_state = 2}, + [5212] = {.lex_state = 75, .external_lex_state = 2}, + [5213] = {.lex_state = 75, .external_lex_state = 2}, + [5214] = {.lex_state = 75, .external_lex_state = 2}, + [5215] = {.lex_state = 75, .external_lex_state = 2}, + [5216] = {.lex_state = 75, .external_lex_state = 2}, + [5217] = {.lex_state = 75, .external_lex_state = 2}, + [5218] = {.lex_state = 75, .external_lex_state = 2}, + [5219] = {.lex_state = 75, .external_lex_state = 2}, + [5220] = {.lex_state = 75, .external_lex_state = 2}, + [5221] = {.lex_state = 75, .external_lex_state = 2}, + [5222] = {.lex_state = 75, .external_lex_state = 2}, + [5223] = {.lex_state = 75, .external_lex_state = 2}, + [5224] = {.lex_state = 75, .external_lex_state = 2}, + [5225] = {.lex_state = 75, .external_lex_state = 2}, + [5226] = {.lex_state = 75, .external_lex_state = 2}, + [5227] = {.lex_state = 75, .external_lex_state = 2}, + [5228] = {.lex_state = 75, .external_lex_state = 2}, + [5229] = {.lex_state = 75, .external_lex_state = 2}, + [5230] = {.lex_state = 75, .external_lex_state = 2}, + [5231] = {.lex_state = 75, .external_lex_state = 2}, + [5232] = {.lex_state = 75, .external_lex_state = 2}, + [5233] = {.lex_state = 75, .external_lex_state = 2}, + [5234] = {.lex_state = 75, .external_lex_state = 2}, + [5235] = {.lex_state = 75, .external_lex_state = 2}, + [5236] = {.lex_state = 75, .external_lex_state = 2}, + [5237] = {.lex_state = 75, .external_lex_state = 2}, + [5238] = {.lex_state = 75, .external_lex_state = 2}, + [5239] = {.lex_state = 75, .external_lex_state = 2}, + [5240] = {.lex_state = 75, .external_lex_state = 2}, + [5241] = {.lex_state = 75, .external_lex_state = 2}, + [5242] = {.lex_state = 75, .external_lex_state = 2}, + [5243] = {.lex_state = 75, .external_lex_state = 2}, + [5244] = {.lex_state = 75, .external_lex_state = 2}, + [5245] = {.lex_state = 75, .external_lex_state = 5}, + [5246] = {.lex_state = 75, .external_lex_state = 2}, + [5247] = {.lex_state = 75, .external_lex_state = 2}, + [5248] = {.lex_state = 75, .external_lex_state = 2}, + [5249] = {.lex_state = 75, .external_lex_state = 2}, + [5250] = {.lex_state = 75, .external_lex_state = 2}, + [5251] = {.lex_state = 75, .external_lex_state = 2}, + [5252] = {.lex_state = 75, .external_lex_state = 2}, + [5253] = {.lex_state = 75, .external_lex_state = 2}, + [5254] = {.lex_state = 75, .external_lex_state = 2}, + [5255] = {.lex_state = 75, .external_lex_state = 2}, + [5256] = {.lex_state = 75, .external_lex_state = 2}, + [5257] = {.lex_state = 75, .external_lex_state = 2}, + [5258] = {.lex_state = 75, .external_lex_state = 2}, + [5259] = {.lex_state = 75, .external_lex_state = 2}, + [5260] = {.lex_state = 75, .external_lex_state = 2}, + [5261] = {.lex_state = 75, .external_lex_state = 2}, + [5262] = {.lex_state = 75, .external_lex_state = 2}, + [5263] = {.lex_state = 75, .external_lex_state = 2}, + [5264] = {.lex_state = 75, .external_lex_state = 2}, + [5265] = {.lex_state = 75, .external_lex_state = 2}, + [5266] = {.lex_state = 75, .external_lex_state = 2}, + [5267] = {.lex_state = 75, .external_lex_state = 2}, + [5268] = {.lex_state = 75, .external_lex_state = 2}, + [5269] = {.lex_state = 75, .external_lex_state = 2}, + [5270] = {.lex_state = 75, .external_lex_state = 2}, + [5271] = {.lex_state = 75, .external_lex_state = 2}, + [5272] = {.lex_state = 75, .external_lex_state = 2}, + [5273] = {.lex_state = 75, .external_lex_state = 2}, + [5274] = {.lex_state = 75, .external_lex_state = 2}, + [5275] = {.lex_state = 75, .external_lex_state = 2}, + [5276] = {.lex_state = 75, .external_lex_state = 2}, + [5277] = {.lex_state = 75, .external_lex_state = 2}, + [5278] = {.lex_state = 75, .external_lex_state = 2}, + [5279] = {.lex_state = 75, .external_lex_state = 2}, + [5280] = {.lex_state = 75, .external_lex_state = 2}, + [5281] = {.lex_state = 75, .external_lex_state = 2}, + [5282] = {.lex_state = 75, .external_lex_state = 2}, + [5283] = {.lex_state = 75, .external_lex_state = 2}, + [5284] = {.lex_state = 75, .external_lex_state = 5}, + [5285] = {.lex_state = 75, .external_lex_state = 2}, + [5286] = {.lex_state = 75, .external_lex_state = 2}, + [5287] = {.lex_state = 75, .external_lex_state = 2}, + [5288] = {.lex_state = 75, .external_lex_state = 2}, + [5289] = {.lex_state = 75, .external_lex_state = 2}, + [5290] = {.lex_state = 75, .external_lex_state = 2}, + [5291] = {.lex_state = 75, .external_lex_state = 2}, + [5292] = {.lex_state = 75, .external_lex_state = 2}, + [5293] = {.lex_state = 75, .external_lex_state = 2}, + [5294] = {.lex_state = 75, .external_lex_state = 2}, + [5295] = {.lex_state = 75, .external_lex_state = 2}, + [5296] = {.lex_state = 75, .external_lex_state = 2}, + [5297] = {.lex_state = 75, .external_lex_state = 2}, + [5298] = {.lex_state = 75, .external_lex_state = 2}, + [5299] = {.lex_state = 75, .external_lex_state = 2}, + [5300] = {.lex_state = 75, .external_lex_state = 2}, + [5301] = {.lex_state = 75, .external_lex_state = 2}, + [5302] = {.lex_state = 75, .external_lex_state = 2}, + [5303] = {.lex_state = 75, .external_lex_state = 2}, + [5304] = {.lex_state = 75, .external_lex_state = 2}, + [5305] = {.lex_state = 75, .external_lex_state = 5}, + [5306] = {.lex_state = 75, .external_lex_state = 2}, + [5307] = {.lex_state = 75, .external_lex_state = 2}, + [5308] = {.lex_state = 75, .external_lex_state = 2}, + [5309] = {.lex_state = 75, .external_lex_state = 5}, + [5310] = {.lex_state = 75, .external_lex_state = 2}, + [5311] = {.lex_state = 75, .external_lex_state = 2}, + [5312] = {.lex_state = 75, .external_lex_state = 2}, + [5313] = {.lex_state = 75, .external_lex_state = 2}, + [5314] = {.lex_state = 75, .external_lex_state = 2}, + [5315] = {.lex_state = 75, .external_lex_state = 2}, + [5316] = {.lex_state = 75, .external_lex_state = 2}, + [5317] = {.lex_state = 75, .external_lex_state = 2}, + [5318] = {.lex_state = 75, .external_lex_state = 2}, + [5319] = {.lex_state = 75, .external_lex_state = 2}, + [5320] = {.lex_state = 75, .external_lex_state = 2}, + [5321] = {.lex_state = 75, .external_lex_state = 2}, + [5322] = {.lex_state = 75, .external_lex_state = 2}, + [5323] = {.lex_state = 75, .external_lex_state = 2}, + [5324] = {.lex_state = 75, .external_lex_state = 2}, + [5325] = {.lex_state = 75, .external_lex_state = 2}, + [5326] = {.lex_state = 75, .external_lex_state = 2}, + [5327] = {.lex_state = 75, .external_lex_state = 2}, + [5328] = {.lex_state = 75, .external_lex_state = 2}, + [5329] = {.lex_state = 75, .external_lex_state = 2}, + [5330] = {.lex_state = 75, .external_lex_state = 2}, + [5331] = {.lex_state = 75, .external_lex_state = 5}, + [5332] = {.lex_state = 75, .external_lex_state = 2}, + [5333] = {.lex_state = 75, .external_lex_state = 5}, + [5334] = {.lex_state = 75, .external_lex_state = 5}, + [5335] = {.lex_state = 75, .external_lex_state = 2}, + [5336] = {.lex_state = 75, .external_lex_state = 2}, + [5337] = {.lex_state = 75, .external_lex_state = 2}, + [5338] = {.lex_state = 75, .external_lex_state = 2}, + [5339] = {.lex_state = 75, .external_lex_state = 2}, + [5340] = {.lex_state = 75, .external_lex_state = 2}, + [5341] = {.lex_state = 75, .external_lex_state = 2}, + [5342] = {.lex_state = 75, .external_lex_state = 2}, + [5343] = {.lex_state = 75, .external_lex_state = 2}, + [5344] = {.lex_state = 75, .external_lex_state = 2}, + [5345] = {.lex_state = 75, .external_lex_state = 2}, + [5346] = {.lex_state = 75, .external_lex_state = 2}, + [5347] = {.lex_state = 75, .external_lex_state = 2}, + [5348] = {.lex_state = 75, .external_lex_state = 2}, + [5349] = {.lex_state = 75, .external_lex_state = 2}, + [5350] = {.lex_state = 75, .external_lex_state = 2}, + [5351] = {.lex_state = 75, .external_lex_state = 2}, + [5352] = {.lex_state = 75, .external_lex_state = 2}, + [5353] = {.lex_state = 75, .external_lex_state = 2}, + [5354] = {.lex_state = 75, .external_lex_state = 2}, + [5355] = {.lex_state = 75, .external_lex_state = 2}, + [5356] = {.lex_state = 75, .external_lex_state = 5}, + [5357] = {.lex_state = 75, .external_lex_state = 2}, + [5358] = {.lex_state = 75, .external_lex_state = 2}, + [5359] = {.lex_state = 75, .external_lex_state = 5}, + [5360] = {.lex_state = 75, .external_lex_state = 2}, + [5361] = {.lex_state = 75, .external_lex_state = 2}, + [5362] = {.lex_state = 75, .external_lex_state = 2}, + [5363] = {.lex_state = 75, .external_lex_state = 2}, + [5364] = {.lex_state = 75, .external_lex_state = 2}, + [5365] = {.lex_state = 75, .external_lex_state = 2}, + [5366] = {.lex_state = 75, .external_lex_state = 2}, + [5367] = {.lex_state = 75, .external_lex_state = 2}, + [5368] = {.lex_state = 75, .external_lex_state = 2}, + [5369] = {.lex_state = 75, .external_lex_state = 2}, + [5370] = {.lex_state = 75, .external_lex_state = 2}, + [5371] = {.lex_state = 75, .external_lex_state = 5}, + [5372] = {.lex_state = 75, .external_lex_state = 2}, + [5373] = {.lex_state = 75, .external_lex_state = 2}, + [5374] = {.lex_state = 75, .external_lex_state = 2}, + [5375] = {.lex_state = 75, .external_lex_state = 2}, + [5376] = {.lex_state = 75, .external_lex_state = 2}, + [5377] = {.lex_state = 75, .external_lex_state = 2}, + [5378] = {.lex_state = 75, .external_lex_state = 2}, + [5379] = {.lex_state = 75, .external_lex_state = 2}, + [5380] = {.lex_state = 75, .external_lex_state = 2}, + [5381] = {.lex_state = 75, .external_lex_state = 2}, + [5382] = {.lex_state = 75, .external_lex_state = 2}, + [5383] = {.lex_state = 75, .external_lex_state = 5}, + [5384] = {.lex_state = 75, .external_lex_state = 2}, + [5385] = {.lex_state = 75, .external_lex_state = 2}, + [5386] = {.lex_state = 75, .external_lex_state = 2}, + [5387] = {.lex_state = 75, .external_lex_state = 2}, + [5388] = {.lex_state = 75, .external_lex_state = 2}, + [5389] = {.lex_state = 75, .external_lex_state = 2}, + [5390] = {.lex_state = 75, .external_lex_state = 2}, + [5391] = {.lex_state = 75, .external_lex_state = 2}, + [5392] = {.lex_state = 75, .external_lex_state = 2}, + [5393] = {.lex_state = 75, .external_lex_state = 2}, + [5394] = {.lex_state = 75, .external_lex_state = 2}, + [5395] = {.lex_state = 75, .external_lex_state = 2}, + [5396] = {.lex_state = 75, .external_lex_state = 2}, + [5397] = {.lex_state = 75, .external_lex_state = 2}, + [5398] = {.lex_state = 75, .external_lex_state = 5}, + [5399] = {.lex_state = 75, .external_lex_state = 2}, + [5400] = {.lex_state = 75, .external_lex_state = 5}, + [5401] = {.lex_state = 75, .external_lex_state = 2}, + [5402] = {.lex_state = 75, .external_lex_state = 2}, + [5403] = {.lex_state = 75, .external_lex_state = 2}, + [5404] = {.lex_state = 75, .external_lex_state = 2}, + [5405] = {.lex_state = 75, .external_lex_state = 2}, + [5406] = {.lex_state = 75, .external_lex_state = 2}, + [5407] = {.lex_state = 75, .external_lex_state = 2}, + [5408] = {.lex_state = 75, .external_lex_state = 2}, + [5409] = {.lex_state = 75, .external_lex_state = 2}, + [5410] = {.lex_state = 75, .external_lex_state = 2}, + [5411] = {.lex_state = 75, .external_lex_state = 2}, + [5412] = {.lex_state = 75, .external_lex_state = 2}, + [5413] = {.lex_state = 75, .external_lex_state = 5}, + [5414] = {.lex_state = 75, .external_lex_state = 2}, + [5415] = {.lex_state = 75, .external_lex_state = 2}, + [5416] = {.lex_state = 75, .external_lex_state = 2}, + [5417] = {.lex_state = 75, .external_lex_state = 2}, + [5418] = {.lex_state = 75, .external_lex_state = 2}, + [5419] = {.lex_state = 75, .external_lex_state = 2}, + [5420] = {.lex_state = 75, .external_lex_state = 2}, + [5421] = {.lex_state = 75, .external_lex_state = 2}, + [5422] = {.lex_state = 75, .external_lex_state = 2}, + [5423] = {.lex_state = 75, .external_lex_state = 5}, + [5424] = {.lex_state = 75, .external_lex_state = 2}, + [5425] = {.lex_state = 75, .external_lex_state = 2}, + [5426] = {.lex_state = 75, .external_lex_state = 2}, + [5427] = {.lex_state = 75, .external_lex_state = 2}, + [5428] = {.lex_state = 75, .external_lex_state = 5}, + [5429] = {.lex_state = 75, .external_lex_state = 2}, + [5430] = {.lex_state = 75, .external_lex_state = 2}, + [5431] = {.lex_state = 75, .external_lex_state = 2}, + [5432] = {.lex_state = 75, .external_lex_state = 2}, + [5433] = {.lex_state = 75, .external_lex_state = 2}, + [5434] = {.lex_state = 75, .external_lex_state = 2}, + [5435] = {.lex_state = 75, .external_lex_state = 2}, + [5436] = {.lex_state = 75, .external_lex_state = 2}, + [5437] = {.lex_state = 75, .external_lex_state = 5}, + [5438] = {.lex_state = 75, .external_lex_state = 2}, + [5439] = {.lex_state = 75, .external_lex_state = 2}, + [5440] = {.lex_state = 75, .external_lex_state = 2}, + [5441] = {.lex_state = 75, .external_lex_state = 2}, + [5442] = {.lex_state = 75, .external_lex_state = 2}, + [5443] = {.lex_state = 75, .external_lex_state = 2}, + [5444] = {.lex_state = 75, .external_lex_state = 2}, + [5445] = {.lex_state = 75, .external_lex_state = 2}, + [5446] = {.lex_state = 75, .external_lex_state = 2}, + [5447] = {.lex_state = 75, .external_lex_state = 2}, + [5448] = {.lex_state = 75, .external_lex_state = 2}, + [5449] = {.lex_state = 75, .external_lex_state = 2}, + [5450] = {.lex_state = 75, .external_lex_state = 2}, + [5451] = {.lex_state = 75, .external_lex_state = 2}, + [5452] = {.lex_state = 75, .external_lex_state = 2}, + [5453] = {.lex_state = 75, .external_lex_state = 2}, + [5454] = {.lex_state = 75, .external_lex_state = 2}, + [5455] = {.lex_state = 75, .external_lex_state = 2}, + [5456] = {.lex_state = 75, .external_lex_state = 2}, + [5457] = {.lex_state = 75, .external_lex_state = 5}, + [5458] = {.lex_state = 75, .external_lex_state = 2}, + [5459] = {.lex_state = 75, .external_lex_state = 2}, + [5460] = {.lex_state = 75, .external_lex_state = 5}, + [5461] = {.lex_state = 75, .external_lex_state = 5}, + [5462] = {.lex_state = 75, .external_lex_state = 2}, + [5463] = {.lex_state = 75, .external_lex_state = 2}, + [5464] = {.lex_state = 75, .external_lex_state = 2}, + [5465] = {.lex_state = 75, .external_lex_state = 2}, + [5466] = {.lex_state = 75, .external_lex_state = 2}, + [5467] = {.lex_state = 75, .external_lex_state = 2}, + [5468] = {.lex_state = 75, .external_lex_state = 2}, + [5469] = {.lex_state = 75, .external_lex_state = 2}, + [5470] = {.lex_state = 75, .external_lex_state = 2}, + [5471] = {.lex_state = 75, .external_lex_state = 2}, + [5472] = {.lex_state = 75, .external_lex_state = 2}, + [5473] = {.lex_state = 75, .external_lex_state = 2}, + [5474] = {.lex_state = 75, .external_lex_state = 2}, + [5475] = {.lex_state = 75, .external_lex_state = 2}, + [5476] = {.lex_state = 75, .external_lex_state = 2}, + [5477] = {.lex_state = 75, .external_lex_state = 2}, + [5478] = {.lex_state = 75, .external_lex_state = 2}, + [5479] = {.lex_state = 75, .external_lex_state = 2}, + [5480] = {.lex_state = 75, .external_lex_state = 2}, + [5481] = {.lex_state = 75, .external_lex_state = 2}, + [5482] = {.lex_state = 1, .external_lex_state = 10}, + [5483] = {.lex_state = 75, .external_lex_state = 2}, + [5484] = {.lex_state = 75, .external_lex_state = 2}, + [5485] = {.lex_state = 75, .external_lex_state = 2}, + [5486] = {.lex_state = 75, .external_lex_state = 2}, + [5487] = {.lex_state = 75, .external_lex_state = 2}, + [5488] = {.lex_state = 75, .external_lex_state = 2}, + [5489] = {.lex_state = 75, .external_lex_state = 2}, + [5490] = {.lex_state = 75, .external_lex_state = 2}, + [5491] = {.lex_state = 75, .external_lex_state = 2}, + [5492] = {.lex_state = 75, .external_lex_state = 2}, + [5493] = {.lex_state = 75, .external_lex_state = 2}, + [5494] = {.lex_state = 1, .external_lex_state = 10}, + [5495] = {.lex_state = 75, .external_lex_state = 2}, + [5496] = {.lex_state = 75, .external_lex_state = 2}, + [5497] = {.lex_state = 75, .external_lex_state = 2}, + [5498] = {.lex_state = 75, .external_lex_state = 2}, + [5499] = {.lex_state = 75, .external_lex_state = 2}, + [5500] = {.lex_state = 75, .external_lex_state = 2}, + [5501] = {.lex_state = 75, .external_lex_state = 2}, + [5502] = {.lex_state = 75, .external_lex_state = 2}, + [5503] = {.lex_state = 75, .external_lex_state = 2}, + [5504] = {.lex_state = 75, .external_lex_state = 2}, + [5505] = {.lex_state = 75, .external_lex_state = 2}, + [5506] = {.lex_state = 75, .external_lex_state = 2}, + [5507] = {.lex_state = 75, .external_lex_state = 2}, + [5508] = {.lex_state = 75, .external_lex_state = 2}, + [5509] = {.lex_state = 75, .external_lex_state = 2}, + [5510] = {.lex_state = 75, .external_lex_state = 2}, + [5511] = {.lex_state = 75, .external_lex_state = 2}, + [5512] = {.lex_state = 75, .external_lex_state = 2}, + [5513] = {.lex_state = 75, .external_lex_state = 2}, + [5514] = {.lex_state = 75, .external_lex_state = 2}, + [5515] = {.lex_state = 75, .external_lex_state = 2}, + [5516] = {.lex_state = 75, .external_lex_state = 2}, + [5517] = {.lex_state = 75, .external_lex_state = 2}, + [5518] = {.lex_state = 75, .external_lex_state = 2}, + [5519] = {.lex_state = 75, .external_lex_state = 2}, + [5520] = {.lex_state = 75, .external_lex_state = 2}, + [5521] = {.lex_state = 75, .external_lex_state = 2}, + [5522] = {.lex_state = 75, .external_lex_state = 2}, + [5523] = {.lex_state = 75, .external_lex_state = 2}, + [5524] = {.lex_state = 75, .external_lex_state = 2}, + [5525] = {.lex_state = 75, .external_lex_state = 2}, + [5526] = {.lex_state = 75, .external_lex_state = 2}, + [5527] = {.lex_state = 75, .external_lex_state = 2}, + [5528] = {.lex_state = 75, .external_lex_state = 2}, + [5529] = {.lex_state = 75, .external_lex_state = 2}, + [5530] = {.lex_state = 75, .external_lex_state = 2}, + [5531] = {.lex_state = 75, .external_lex_state = 2}, + [5532] = {.lex_state = 75, .external_lex_state = 2}, + [5533] = {.lex_state = 75, .external_lex_state = 2}, + [5534] = {.lex_state = 75, .external_lex_state = 2}, + [5535] = {.lex_state = 75, .external_lex_state = 2}, + [5536] = {.lex_state = 75, .external_lex_state = 2}, + [5537] = {.lex_state = 75, .external_lex_state = 2}, + [5538] = {.lex_state = 75, .external_lex_state = 2}, + [5539] = {.lex_state = 75, .external_lex_state = 2}, + [5540] = {.lex_state = 75, .external_lex_state = 2}, + [5541] = {.lex_state = 75, .external_lex_state = 2}, + [5542] = {.lex_state = 75, .external_lex_state = 2}, + [5543] = {.lex_state = 75, .external_lex_state = 2}, + [5544] = {.lex_state = 75, .external_lex_state = 2}, + [5545] = {.lex_state = 75, .external_lex_state = 2}, + [5546] = {.lex_state = 75, .external_lex_state = 2}, + [5547] = {.lex_state = 75, .external_lex_state = 2}, + [5548] = {.lex_state = 75, .external_lex_state = 2}, + [5549] = {.lex_state = 75, .external_lex_state = 2}, + [5550] = {.lex_state = 75, .external_lex_state = 2}, + [5551] = {.lex_state = 75, .external_lex_state = 2}, + [5552] = {.lex_state = 75, .external_lex_state = 2}, + [5553] = {.lex_state = 23, .external_lex_state = 2}, + [5554] = {.lex_state = 75, .external_lex_state = 2}, + [5555] = {.lex_state = 75, .external_lex_state = 2}, + [5556] = {.lex_state = 75, .external_lex_state = 2}, + [5557] = {.lex_state = 75, .external_lex_state = 2}, + [5558] = {.lex_state = 75, .external_lex_state = 2}, + [5559] = {.lex_state = 75, .external_lex_state = 2}, + [5560] = {.lex_state = 75, .external_lex_state = 2}, + [5561] = {.lex_state = 75, .external_lex_state = 2}, + [5562] = {.lex_state = 75, .external_lex_state = 2}, + [5563] = {.lex_state = 75, .external_lex_state = 2}, + [5564] = {.lex_state = 75, .external_lex_state = 2}, + [5565] = {.lex_state = 75, .external_lex_state = 2}, + [5566] = {.lex_state = 75, .external_lex_state = 2}, + [5567] = {.lex_state = 75, .external_lex_state = 2}, + [5568] = {.lex_state = 75, .external_lex_state = 2}, + [5569] = {.lex_state = 75, .external_lex_state = 2}, + [5570] = {.lex_state = 75, .external_lex_state = 2}, + [5571] = {.lex_state = 75, .external_lex_state = 2}, + [5572] = {.lex_state = 75, .external_lex_state = 2}, + [5573] = {.lex_state = 75, .external_lex_state = 2}, + [5574] = {.lex_state = 75, .external_lex_state = 2}, + [5575] = {.lex_state = 75, .external_lex_state = 2}, + [5576] = {.lex_state = 75, .external_lex_state = 2}, + [5577] = {.lex_state = 75, .external_lex_state = 2}, + [5578] = {.lex_state = 75, .external_lex_state = 2}, + [5579] = {.lex_state = 75, .external_lex_state = 2}, + [5580] = {.lex_state = 75, .external_lex_state = 2}, + [5581] = {.lex_state = 75, .external_lex_state = 2}, + [5582] = {.lex_state = 75, .external_lex_state = 2}, + [5583] = {.lex_state = 75, .external_lex_state = 2}, + [5584] = {.lex_state = 75, .external_lex_state = 2}, + [5585] = {.lex_state = 75, .external_lex_state = 2}, + [5586] = {.lex_state = 75, .external_lex_state = 2}, + [5587] = {.lex_state = 75, .external_lex_state = 2}, + [5588] = {.lex_state = 75, .external_lex_state = 2}, + [5589] = {.lex_state = 75, .external_lex_state = 2}, + [5590] = {.lex_state = 75, .external_lex_state = 2}, + [5591] = {.lex_state = 75, .external_lex_state = 2}, + [5592] = {.lex_state = 75, .external_lex_state = 2}, + [5593] = {.lex_state = 75, .external_lex_state = 2}, + [5594] = {.lex_state = 75, .external_lex_state = 2}, + [5595] = {.lex_state = 75, .external_lex_state = 2}, + [5596] = {.lex_state = 75, .external_lex_state = 2}, + [5597] = {.lex_state = 75, .external_lex_state = 2}, + [5598] = {.lex_state = 75, .external_lex_state = 2}, + [5599] = {.lex_state = 75, .external_lex_state = 2}, + [5600] = {.lex_state = 75, .external_lex_state = 2}, + [5601] = {.lex_state = 75, .external_lex_state = 2}, + [5602] = {.lex_state = 75, .external_lex_state = 2}, + [5603] = {.lex_state = 75, .external_lex_state = 2}, + [5604] = {.lex_state = 75, .external_lex_state = 2}, + [5605] = {.lex_state = 75, .external_lex_state = 2}, + [5606] = {.lex_state = 75, .external_lex_state = 2}, + [5607] = {.lex_state = 75, .external_lex_state = 2}, + [5608] = {.lex_state = 75, .external_lex_state = 2}, + [5609] = {.lex_state = 75, .external_lex_state = 2}, + [5610] = {.lex_state = 75, .external_lex_state = 2}, + [5611] = {.lex_state = 75, .external_lex_state = 2}, + [5612] = {.lex_state = 75, .external_lex_state = 2}, + [5613] = {.lex_state = 75, .external_lex_state = 2}, + [5614] = {.lex_state = 75, .external_lex_state = 2}, + [5615] = {.lex_state = 75, .external_lex_state = 2}, + [5616] = {.lex_state = 75, .external_lex_state = 2}, + [5617] = {.lex_state = 75, .external_lex_state = 2}, + [5618] = {.lex_state = 75, .external_lex_state = 2}, + [5619] = {.lex_state = 75, .external_lex_state = 2}, + [5620] = {.lex_state = 75, .external_lex_state = 2}, + [5621] = {.lex_state = 75, .external_lex_state = 2}, + [5622] = {.lex_state = 75, .external_lex_state = 2}, + [5623] = {.lex_state = 75, .external_lex_state = 2}, + [5624] = {.lex_state = 75, .external_lex_state = 2}, + [5625] = {.lex_state = 75, .external_lex_state = 2}, + [5626] = {.lex_state = 75, .external_lex_state = 2}, + [5627] = {.lex_state = 1, .external_lex_state = 10}, + [5628] = {.lex_state = 75, .external_lex_state = 2}, + [5629] = {.lex_state = 75, .external_lex_state = 2}, + [5630] = {.lex_state = 75, .external_lex_state = 2}, + [5631] = {.lex_state = 75, .external_lex_state = 2}, + [5632] = {.lex_state = 75, .external_lex_state = 2}, + [5633] = {.lex_state = 75, .external_lex_state = 2}, + [5634] = {.lex_state = 75, .external_lex_state = 2}, + [5635] = {.lex_state = 75, .external_lex_state = 2}, + [5636] = {.lex_state = 75, .external_lex_state = 2}, + [5637] = {.lex_state = 75, .external_lex_state = 2}, + [5638] = {.lex_state = 75, .external_lex_state = 2}, + [5639] = {.lex_state = 75, .external_lex_state = 2}, + [5640] = {.lex_state = 75, .external_lex_state = 2}, + [5641] = {.lex_state = 75, .external_lex_state = 2}, + [5642] = {.lex_state = 75, .external_lex_state = 2}, + [5643] = {.lex_state = 75, .external_lex_state = 2}, + [5644] = {.lex_state = 75, .external_lex_state = 2}, + [5645] = {.lex_state = 75, .external_lex_state = 2}, + [5646] = {.lex_state = 75, .external_lex_state = 2}, + [5647] = {.lex_state = 75, .external_lex_state = 2}, + [5648] = {.lex_state = 75, .external_lex_state = 2}, + [5649] = {.lex_state = 23, .external_lex_state = 2}, + [5650] = {.lex_state = 75, .external_lex_state = 2}, + [5651] = {.lex_state = 75, .external_lex_state = 2}, + [5652] = {.lex_state = 75, .external_lex_state = 2}, + [5653] = {.lex_state = 75, .external_lex_state = 2}, + [5654] = {.lex_state = 75, .external_lex_state = 2}, + [5655] = {.lex_state = 1, .external_lex_state = 10}, + [5656] = {.lex_state = 75, .external_lex_state = 2}, + [5657] = {.lex_state = 75, .external_lex_state = 2}, + [5658] = {.lex_state = 75, .external_lex_state = 2}, + [5659] = {.lex_state = 75, .external_lex_state = 2}, + [5660] = {.lex_state = 75, .external_lex_state = 2}, + [5661] = {.lex_state = 75, .external_lex_state = 2}, + [5662] = {.lex_state = 23, .external_lex_state = 2}, + [5663] = {.lex_state = 75, .external_lex_state = 2}, + [5664] = {.lex_state = 75, .external_lex_state = 2}, + [5665] = {.lex_state = 75, .external_lex_state = 2}, + [5666] = {.lex_state = 75, .external_lex_state = 2}, + [5667] = {.lex_state = 75, .external_lex_state = 2}, + [5668] = {.lex_state = 1, .external_lex_state = 10}, + [5669] = {.lex_state = 75, .external_lex_state = 2}, + [5670] = {.lex_state = 75, .external_lex_state = 2}, + [5671] = {.lex_state = 75, .external_lex_state = 2}, + [5672] = {.lex_state = 75, .external_lex_state = 2}, + [5673] = {.lex_state = 75, .external_lex_state = 2}, + [5674] = {.lex_state = 75, .external_lex_state = 2}, + [5675] = {.lex_state = 75, .external_lex_state = 2}, + [5676] = {.lex_state = 75, .external_lex_state = 2}, + [5677] = {.lex_state = 75, .external_lex_state = 2}, + [5678] = {.lex_state = 75, .external_lex_state = 2}, + [5679] = {.lex_state = 75, .external_lex_state = 2}, + [5680] = {.lex_state = 75, .external_lex_state = 2}, + [5681] = {.lex_state = 75, .external_lex_state = 2}, + [5682] = {.lex_state = 75, .external_lex_state = 2}, + [5683] = {.lex_state = 23, .external_lex_state = 2}, + [5684] = {.lex_state = 75, .external_lex_state = 2}, + [5685] = {.lex_state = 75, .external_lex_state = 2}, + [5686] = {.lex_state = 75, .external_lex_state = 2}, + [5687] = {.lex_state = 75, .external_lex_state = 2}, + [5688] = {.lex_state = 75, .external_lex_state = 2}, + [5689] = {.lex_state = 75, .external_lex_state = 2}, + [5690] = {.lex_state = 75, .external_lex_state = 2}, + [5691] = {.lex_state = 75, .external_lex_state = 2}, + [5692] = {.lex_state = 75, .external_lex_state = 2}, + [5693] = {.lex_state = 75, .external_lex_state = 2}, + [5694] = {.lex_state = 75, .external_lex_state = 2}, + [5695] = {.lex_state = 75, .external_lex_state = 2}, + [5696] = {.lex_state = 75, .external_lex_state = 2}, + [5697] = {.lex_state = 75, .external_lex_state = 2}, + [5698] = {.lex_state = 75, .external_lex_state = 2}, + [5699] = {.lex_state = 75, .external_lex_state = 2}, + [5700] = {.lex_state = 75, .external_lex_state = 2}, + [5701] = {.lex_state = 75, .external_lex_state = 2}, + [5702] = {.lex_state = 75, .external_lex_state = 2}, + [5703] = {.lex_state = 75, .external_lex_state = 2}, + [5704] = {.lex_state = 75, .external_lex_state = 2}, + [5705] = {.lex_state = 75, .external_lex_state = 2}, + [5706] = {.lex_state = 75, .external_lex_state = 2}, + [5707] = {.lex_state = 75, .external_lex_state = 2}, + [5708] = {.lex_state = 75, .external_lex_state = 2}, + [5709] = {.lex_state = 75, .external_lex_state = 2}, + [5710] = {.lex_state = 75, .external_lex_state = 2}, + [5711] = {.lex_state = 75, .external_lex_state = 2}, + [5712] = {.lex_state = 75, .external_lex_state = 2}, + [5713] = {.lex_state = 75, .external_lex_state = 2}, + [5714] = {.lex_state = 75, .external_lex_state = 2}, + [5715] = {.lex_state = 75, .external_lex_state = 2}, + [5716] = {.lex_state = 75, .external_lex_state = 2}, + [5717] = {.lex_state = 75, .external_lex_state = 2}, + [5718] = {.lex_state = 75, .external_lex_state = 2}, + [5719] = {.lex_state = 75, .external_lex_state = 2}, + [5720] = {.lex_state = 75, .external_lex_state = 2}, + [5721] = {.lex_state = 75, .external_lex_state = 2}, + [5722] = {.lex_state = 75, .external_lex_state = 2}, + [5723] = {.lex_state = 75, .external_lex_state = 2}, + [5724] = {.lex_state = 75, .external_lex_state = 2}, + [5725] = {.lex_state = 75, .external_lex_state = 2}, + [5726] = {.lex_state = 75, .external_lex_state = 2}, + [5727] = {.lex_state = 75, .external_lex_state = 2}, + [5728] = {.lex_state = 75, .external_lex_state = 2}, + [5729] = {.lex_state = 75, .external_lex_state = 2}, + [5730] = {.lex_state = 75, .external_lex_state = 2}, + [5731] = {.lex_state = 75, .external_lex_state = 2}, + [5732] = {.lex_state = 75, .external_lex_state = 2}, + [5733] = {.lex_state = 75, .external_lex_state = 2}, + [5734] = {.lex_state = 75, .external_lex_state = 2}, + [5735] = {.lex_state = 75, .external_lex_state = 2}, + [5736] = {.lex_state = 75, .external_lex_state = 2}, + [5737] = {.lex_state = 75, .external_lex_state = 2}, + [5738] = {.lex_state = 75, .external_lex_state = 2}, + [5739] = {.lex_state = 75, .external_lex_state = 2}, + [5740] = {.lex_state = 75, .external_lex_state = 2}, + [5741] = {.lex_state = 75, .external_lex_state = 2}, + [5742] = {.lex_state = 75, .external_lex_state = 2}, + [5743] = {.lex_state = 75, .external_lex_state = 2}, + [5744] = {.lex_state = 75, .external_lex_state = 2}, + [5745] = {.lex_state = 75, .external_lex_state = 2}, + [5746] = {.lex_state = 75, .external_lex_state = 2}, + [5747] = {.lex_state = 75, .external_lex_state = 2}, + [5748] = {.lex_state = 75, .external_lex_state = 2}, + [5749] = {.lex_state = 75, .external_lex_state = 2}, + [5750] = {.lex_state = 75, .external_lex_state = 2}, + [5751] = {.lex_state = 75, .external_lex_state = 2}, + [5752] = {.lex_state = 75, .external_lex_state = 2}, + [5753] = {.lex_state = 75, .external_lex_state = 2}, + [5754] = {.lex_state = 75, .external_lex_state = 2}, + [5755] = {.lex_state = 75, .external_lex_state = 2}, + [5756] = {.lex_state = 75, .external_lex_state = 2}, + [5757] = {.lex_state = 75, .external_lex_state = 2}, + [5758] = {.lex_state = 75, .external_lex_state = 2}, + [5759] = {.lex_state = 75, .external_lex_state = 2}, + [5760] = {.lex_state = 75, .external_lex_state = 2}, + [5761] = {.lex_state = 75, .external_lex_state = 2}, + [5762] = {.lex_state = 75, .external_lex_state = 2}, + [5763] = {.lex_state = 75, .external_lex_state = 2}, + [5764] = {.lex_state = 75, .external_lex_state = 2}, + [5765] = {.lex_state = 75, .external_lex_state = 2}, + [5766] = {.lex_state = 75, .external_lex_state = 2}, + [5767] = {.lex_state = 75, .external_lex_state = 2}, + [5768] = {.lex_state = 75, .external_lex_state = 2}, + [5769] = {.lex_state = 75, .external_lex_state = 2}, + [5770] = {.lex_state = 75, .external_lex_state = 2}, + [5771] = {.lex_state = 75, .external_lex_state = 2}, + [5772] = {.lex_state = 75, .external_lex_state = 2}, + [5773] = {.lex_state = 75, .external_lex_state = 2}, + [5774] = {.lex_state = 75, .external_lex_state = 2}, + [5775] = {.lex_state = 75, .external_lex_state = 2}, + [5776] = {.lex_state = 75, .external_lex_state = 2}, + [5777] = {.lex_state = 75, .external_lex_state = 2}, + [5778] = {.lex_state = 75, .external_lex_state = 2}, + [5779] = {.lex_state = 75, .external_lex_state = 2}, + [5780] = {.lex_state = 75, .external_lex_state = 2}, + [5781] = {.lex_state = 75, .external_lex_state = 2}, + [5782] = {.lex_state = 75, .external_lex_state = 2}, + [5783] = {.lex_state = 75, .external_lex_state = 2}, + [5784] = {.lex_state = 75, .external_lex_state = 2}, + [5785] = {.lex_state = 75, .external_lex_state = 2}, + [5786] = {.lex_state = 75, .external_lex_state = 2}, + [5787] = {.lex_state = 75, .external_lex_state = 2}, + [5788] = {.lex_state = 75, .external_lex_state = 2}, + [5789] = {.lex_state = 75, .external_lex_state = 2}, + [5790] = {.lex_state = 75, .external_lex_state = 2}, + [5791] = {.lex_state = 75, .external_lex_state = 2}, + [5792] = {.lex_state = 75, .external_lex_state = 2}, + [5793] = {.lex_state = 75, .external_lex_state = 2}, + [5794] = {.lex_state = 75, .external_lex_state = 2}, + [5795] = {.lex_state = 75, .external_lex_state = 2}, + [5796] = {.lex_state = 75, .external_lex_state = 2}, + [5797] = {.lex_state = 75, .external_lex_state = 2}, + [5798] = {.lex_state = 75, .external_lex_state = 2}, + [5799] = {.lex_state = 75, .external_lex_state = 2}, + [5800] = {.lex_state = 75, .external_lex_state = 2}, + [5801] = {.lex_state = 23, .external_lex_state = 2}, + [5802] = {.lex_state = 75, .external_lex_state = 2}, + [5803] = {.lex_state = 75, .external_lex_state = 2}, + [5804] = {.lex_state = 75, .external_lex_state = 2}, + [5805] = {.lex_state = 75, .external_lex_state = 2}, + [5806] = {.lex_state = 75, .external_lex_state = 2}, + [5807] = {.lex_state = 75, .external_lex_state = 2}, + [5808] = {.lex_state = 75, .external_lex_state = 2}, + [5809] = {.lex_state = 75, .external_lex_state = 2}, + [5810] = {.lex_state = 75, .external_lex_state = 2}, + [5811] = {.lex_state = 75, .external_lex_state = 2}, + [5812] = {.lex_state = 75, .external_lex_state = 2}, + [5813] = {.lex_state = 75, .external_lex_state = 2}, + [5814] = {.lex_state = 75, .external_lex_state = 2}, + [5815] = {.lex_state = 75, .external_lex_state = 2}, + [5816] = {.lex_state = 75, .external_lex_state = 2}, + [5817] = {.lex_state = 75, .external_lex_state = 2}, + [5818] = {.lex_state = 75, .external_lex_state = 2}, + [5819] = {.lex_state = 75, .external_lex_state = 2}, + [5820] = {.lex_state = 75, .external_lex_state = 2}, + [5821] = {.lex_state = 75, .external_lex_state = 2}, + [5822] = {.lex_state = 75, .external_lex_state = 2}, + [5823] = {.lex_state = 75, .external_lex_state = 2}, + [5824] = {.lex_state = 75, .external_lex_state = 2}, + [5825] = {.lex_state = 75, .external_lex_state = 2}, + [5826] = {.lex_state = 75, .external_lex_state = 2}, + [5827] = {.lex_state = 75, .external_lex_state = 2}, + [5828] = {.lex_state = 75, .external_lex_state = 2}, + [5829] = {.lex_state = 75, .external_lex_state = 2}, + [5830] = {.lex_state = 75, .external_lex_state = 2}, + [5831] = {.lex_state = 75, .external_lex_state = 2}, + [5832] = {.lex_state = 75, .external_lex_state = 2}, + [5833] = {.lex_state = 75, .external_lex_state = 2}, + [5834] = {.lex_state = 75, .external_lex_state = 2}, + [5835] = {.lex_state = 75, .external_lex_state = 2}, + [5836] = {.lex_state = 75, .external_lex_state = 2}, + [5837] = {.lex_state = 75, .external_lex_state = 2}, + [5838] = {.lex_state = 75, .external_lex_state = 2}, + [5839] = {.lex_state = 75, .external_lex_state = 2}, + [5840] = {.lex_state = 75, .external_lex_state = 2}, + [5841] = {.lex_state = 75, .external_lex_state = 2}, + [5842] = {.lex_state = 75, .external_lex_state = 2}, + [5843] = {.lex_state = 75, .external_lex_state = 2}, + [5844] = {.lex_state = 75, .external_lex_state = 2}, + [5845] = {.lex_state = 75, .external_lex_state = 2}, + [5846] = {.lex_state = 75, .external_lex_state = 2}, + [5847] = {.lex_state = 75, .external_lex_state = 2}, + [5848] = {.lex_state = 75, .external_lex_state = 2}, + [5849] = {.lex_state = 75, .external_lex_state = 2}, + [5850] = {.lex_state = 75, .external_lex_state = 2}, + [5851] = {.lex_state = 75, .external_lex_state = 2}, + [5852] = {.lex_state = 75, .external_lex_state = 2}, + [5853] = {.lex_state = 75, .external_lex_state = 2}, + [5854] = {.lex_state = 75, .external_lex_state = 2}, + [5855] = {.lex_state = 75, .external_lex_state = 2}, + [5856] = {.lex_state = 75, .external_lex_state = 2}, + [5857] = {.lex_state = 75, .external_lex_state = 2}, + [5858] = {.lex_state = 75, .external_lex_state = 2}, + [5859] = {.lex_state = 75, .external_lex_state = 2}, + [5860] = {.lex_state = 75, .external_lex_state = 2}, + [5861] = {.lex_state = 75, .external_lex_state = 2}, + [5862] = {.lex_state = 75, .external_lex_state = 2}, + [5863] = {.lex_state = 75, .external_lex_state = 2}, + [5864] = {.lex_state = 75, .external_lex_state = 2}, + [5865] = {.lex_state = 75, .external_lex_state = 2}, + [5866] = {.lex_state = 75, .external_lex_state = 2}, + [5867] = {.lex_state = 75, .external_lex_state = 2}, + [5868] = {.lex_state = 75, .external_lex_state = 2}, + [5869] = {.lex_state = 75, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19165,11 +18844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [sym_glimmer_opening_tag] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), @@ -19213,6 +18888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_BANG_EQ_EQ] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), [anon_sym_QMARK_QMARK] = ACTIONS(1), [anon_sym_instanceof] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), @@ -19220,6 +18896,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1), @@ -19282,86 +18960,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5731), - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_program] = STATE(5657), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3774), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -19392,536 +19069,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [2] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(195), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(203), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [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(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [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_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [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_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(154), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(195), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(203), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [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_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_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_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [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_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [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_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(154), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(4704), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4576), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [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(239), - [anon_sym_RBRACE] = ACTIONS(241), + [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(243), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -19939,162 +19610,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [5] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(4704), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4576), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [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(239), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(243), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20112,162 +19781,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [6] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(4704), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4721), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(273), + [anon_sym_export] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(277), + [anon_sym_namespace] = ACTIONS(279), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(243), + [anon_sym_let] = ACTIONS(283), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20285,162 +19952,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(285), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(287), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(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_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(5136), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(277), - [anon_sym_export] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(281), - [anon_sym_namespace] = ACTIONS(283), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4576), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [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(239), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(287), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20458,162 +20123,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(289), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(291), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(293), - [anon_sym_readonly] = ACTIONS(295), - [anon_sym_get] = ACTIONS(297), - [anon_sym_set] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_public] = ACTIONS(301), - [anon_sym_private] = ACTIONS(301), - [anon_sym_protected] = ACTIONS(301), - [anon_sym_override] = ACTIONS(303), - [anon_sym_module] = ACTIONS(305), - [anon_sym_any] = ACTIONS(307), - [anon_sym_number] = ACTIONS(307), - [anon_sym_boolean] = ACTIONS(307), - [anon_sym_string] = ACTIONS(307), - [anon_sym_symbol] = ACTIONS(307), - [anon_sym_object] = ACTIONS(307), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [8] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(5136), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(309), - [anon_sym_export] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(313), - [anon_sym_namespace] = ACTIONS(315), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4721), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(307), + [anon_sym_export] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(311), + [anon_sym_namespace] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(317), + [anon_sym_let] = ACTIONS(315), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20631,305 +20294,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(319), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(321), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(317), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(319), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(323), - [anon_sym_readonly] = ACTIONS(325), - [anon_sym_get] = ACTIONS(327), - [anon_sym_set] = ACTIONS(327), - [anon_sym_declare] = ACTIONS(329), - [anon_sym_public] = ACTIONS(331), - [anon_sym_private] = ACTIONS(331), - [anon_sym_protected] = ACTIONS(331), - [anon_sym_override] = ACTIONS(333), - [anon_sym_module] = ACTIONS(335), - [anon_sym_any] = ACTIONS(337), - [anon_sym_number] = ACTIONS(337), - [anon_sym_boolean] = ACTIONS(337), - [anon_sym_string] = ACTIONS(337), - [anon_sym_symbol] = ACTIONS(337), - [anon_sym_object] = ACTIONS(337), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(321), + [anon_sym_readonly] = ACTIONS(323), + [anon_sym_get] = ACTIONS(325), + [anon_sym_set] = ACTIONS(325), + [anon_sym_declare] = ACTIONS(327), + [anon_sym_public] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_override] = ACTIONS(331), + [anon_sym_module] = ACTIONS(333), + [anon_sym_any] = ACTIONS(335), + [anon_sym_number] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_string] = ACTIONS(335), + [anon_sym_symbol] = ACTIONS(335), + [anon_sym_object] = ACTIONS(335), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), - [ts_builtin_sym_end] = ACTIONS(339), - [sym_identifier] = ACTIONS(341), - [anon_sym_export] = ACTIONS(344), - [anon_sym_default] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_typeof] = ACTIONS(358), - [anon_sym_import] = ACTIONS(361), - [anon_sym_with] = ACTIONS(364), - [anon_sym_var] = ACTIONS(367), - [anon_sym_let] = ACTIONS(370), - [anon_sym_const] = ACTIONS(373), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_if] = ACTIONS(379), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_for] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_await] = ACTIONS(394), - [anon_sym_while] = ACTIONS(397), - [anon_sym_do] = ACTIONS(400), - [anon_sym_try] = ACTIONS(403), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_debugger] = ACTIONS(412), - [anon_sym_return] = ACTIONS(415), - [anon_sym_throw] = ACTIONS(418), - [anon_sym_case] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(424), - [sym_glimmer_opening_tag] = ACTIONS(427), - [anon_sym_DQUOTE] = ACTIONS(430), - [anon_sym_SQUOTE] = ACTIONS(433), - [anon_sym_class] = ACTIONS(436), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(442), - [anon_sym_new] = ACTIONS(445), - [anon_sym_using] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_void] = ACTIONS(358), - [anon_sym_delete] = ACTIONS(358), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_DASH_DASH] = ACTIONS(457), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(460), - [sym_number] = ACTIONS(463), - [sym_private_property_identifier] = ACTIONS(466), - [sym_this] = ACTIONS(469), - [sym_super] = ACTIONS(469), - [sym_true] = ACTIONS(469), - [sym_false] = ACTIONS(469), - [sym_null] = ACTIONS(469), - [sym_undefined] = ACTIONS(472), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_static] = ACTIONS(478), - [anon_sym_readonly] = ACTIONS(478), - [anon_sym_get] = ACTIONS(478), - [anon_sym_set] = ACTIONS(478), - [anon_sym_declare] = ACTIONS(481), - [anon_sym_public] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_override] = ACTIONS(478), - [anon_sym_module] = ACTIONS(484), - [anon_sym_any] = ACTIONS(478), - [anon_sym_number] = ACTIONS(478), - [anon_sym_boolean] = ACTIONS(478), - [anon_sym_string] = ACTIONS(478), - [anon_sym_symbol] = ACTIONS(478), - [anon_sym_object] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(487), - [anon_sym_interface] = ACTIONS(490), - [anon_sym_enum] = ACTIONS(493), + [aux_sym_export_statement_repeat1] = STATE(3774), + [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_class] = ACTIONS(425), + [anon_sym_async] = ACTIONS(428), + [anon_sym_function] = ACTIONS(431), + [anon_sym_new] = ACTIONS(434), + [anon_sym_using] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(374), + [anon_sym_void] = ACTIONS(356), + [anon_sym_delete] = ACTIONS(356), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(449), + [anon_sym_SQUOTE] = 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), }, [10] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(496), + [anon_sym_default] = ACTIONS(491), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -20951,145 +20610,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(496), + [anon_sym_case] = ACTIONS(491), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [11] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(500), + [anon_sym_default] = ACTIONS(495), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21111,145 +20768,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(500), + [anon_sym_case] = ACTIONS(495), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [12] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(504), + [anon_sym_default] = ACTIONS(499), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21271,145 +20926,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(504), + [anon_sym_case] = ACTIONS(499), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [13] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(508), + [anon_sym_default] = ACTIONS(503), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(505), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21431,144 +21084,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(508), + [anon_sym_case] = ACTIONS(503), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [14] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [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(512), + [anon_sym_RBRACE] = ACTIONS(507), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21592,141 +21243,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [15] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), - [ts_builtin_sym_end] = ACTIONS(514), + [aux_sym_export_statement_repeat1] = STATE(3774), [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(509), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21750,141 +21399,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [16] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), + [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(516), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21908,136 +21555,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [17] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), - [ts_builtin_sym_end] = ACTIONS(518), + [aux_sym_export_statement_repeat1] = STATE(3774), + [ts_builtin_sym_end] = ACTIONS(513), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22066,141 +21711,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [18] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22224,141 +21867,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [19] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22382,141 +22023,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [20] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(519), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22540,141 +22179,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [21] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(521), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22698,141 +22335,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [22] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(523), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22856,141 +22491,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [23] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23014,141 +22647,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [24] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23172,141 +22803,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [25] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23330,141 +22959,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [26] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23488,141 +23115,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [27] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(30), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23646,141 +23271,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [28] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23804,141 +23427,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [29] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3871), - [ts_builtin_sym_end] = ACTIONS(518), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(3774), [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), @@ -23962,141 +23583,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [30] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3774), + [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(542), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24120,153 +23739,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [31] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(919), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), + }, + [32] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(940), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24276,153 +24047,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [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(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [33] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(928), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), + [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(554), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24432,153 +24201,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [33] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(4696), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [34] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(832), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24588,153 +24355,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [35] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(4697), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24744,153 +24509,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [36] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(931), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24900,153 +24663,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [36] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [37] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(943), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25056,153 +24817,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(883), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [38] = { + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), + }, + [39] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25212,309 +25125,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1512), + [40] = { + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(600), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(639), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, - [39] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(5503), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [41] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(928), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25524,153 +25433,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(876), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [42] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(874), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25680,153 +25587,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(819), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [43] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25836,153 +25741,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(821), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [44] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(819), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25992,153 +25895,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(827), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [45] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26148,153 +26049,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [46] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26304,153 +26203,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(807), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [47] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(841), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26460,153 +26357,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [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(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(838), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [48] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(843), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26616,153 +26511,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [49] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(853), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26772,134 +26665,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [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(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(876), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [50] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26928,134 +26819,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [49] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [51] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(874), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27084,134 +26973,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [50] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(932), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [52] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(940), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27240,134 +27127,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [51] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(919), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [53] = { + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(5539), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(613), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(615), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(617), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(621), + [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_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), + [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(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27396,134 +27589,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [52] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(819), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [56] = { + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(643), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), + }, + [57] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(943), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27552,134 +27897,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [53] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(821), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [58] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(819), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27708,134 +28051,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [54] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(827), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [59] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27864,134 +28205,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [55] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [60] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28020,446 +28359,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [56] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(642), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [57] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [58] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(807), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [61] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(841), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28488,134 +28513,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [59] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(838), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [62] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(843), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28644,446 +28667,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, - [60] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [63] = { + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(644), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(645), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, - [61] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [64] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(853), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [62] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(883), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29112,446 +28975,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [63] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(646), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [64] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(648), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [65] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(788), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(832), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29580,777 +29129,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [66] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(650), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(647), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [67] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(652), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [68] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(654), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(651), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4969), - [sym_optional_tuple_parameter] = STATE(4969), - [sym_optional_type] = STATE(4969), - [sym_rest_type] = STATE(4969), - [sym__tuple_type_member] = STATE(4969), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(658), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4999), + [sym_optional_tuple_parameter] = STATE(4999), + [sym_optional_type] = STATE(4999), + [sym_rest_type] = STATE(4999), + [sym__tuple_type_member] = STATE(4999), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [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(653), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = 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(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [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(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_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(932), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(790), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), + [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(554), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -30360,17594 +29899,17376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [71] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(660), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(931), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), + [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_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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), }, [72] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4233), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(721), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [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(698), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3563), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4236), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_sequence_expression] = STATE(5780), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(727), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_type_identifier] = STATE(2939), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4387), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(722), + [anon_sym_export] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(744), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(766), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(772), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(780), + [anon_sym_number] = ACTIONS(780), + [anon_sym_boolean] = ACTIONS(780), + [anon_sym_string] = ACTIONS(780), + [anon_sym_symbol] = ACTIONS(780), + [anon_sym_object] = ACTIONS(780), + [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), }, [77] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3563), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5858), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1357), + [sym_sequence_expression] = STATE(5679), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4390), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_typeof] = ACTIONS(737), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(747), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(751), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [anon_sym_object] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4434), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(722), + [anon_sym_export] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(744), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(766), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(772), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(780), + [anon_sym_number] = ACTIONS(780), + [anon_sym_boolean] = ACTIONS(780), + [anon_sym_string] = ACTIONS(780), + [anon_sym_symbol] = ACTIONS(780), + [anon_sym_object] = ACTIONS(780), + [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), }, [78] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4327), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4303), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(791), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [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(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(782), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3920), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3914), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [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(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4226), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3922), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(795), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [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(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(786), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3563), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3926), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_sequence_expression] = STATE(5780), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(797), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_type_identifier] = STATE(2939), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4434), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(722), + [anon_sym_export] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(744), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(766), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(772), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(780), + [anon_sym_number] = ACTIONS(780), + [anon_sym_boolean] = ACTIONS(780), + [anon_sym_string] = ACTIONS(780), + [anon_sym_symbol] = ACTIONS(780), + [anon_sym_object] = ACTIONS(780), + [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), }, [82] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5646), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1357), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4390), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_typeof] = ACTIONS(737), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(747), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(751), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [anon_sym_object] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [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(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4220), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [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(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(788), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4223), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [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(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5646), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1357), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4227), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4414), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_typeof] = ACTIONS(737), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(747), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(751), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), - [anon_sym_object] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [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(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(792), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4390), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4477), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [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(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [87] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(128), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [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(812), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4445), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(828), + [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(154), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(833), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_type_identifier] = STATE(2939), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4397), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [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(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [90] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4414), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4405), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [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(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [91] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4388), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4434), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [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(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [92] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4468), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4387), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [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(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [93] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [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(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(720), + [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(154), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(873), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(879), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(883), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - [anon_sym_object] = ACTIONS(873), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(873), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(184), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(879), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(883), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - [anon_sym_object] = ACTIONS(873), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(874), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(874), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(892), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(892), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3956), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5411), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(914), + [anon_sym_export] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(926), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(916), + [anon_sym_readonly] = ACTIONS(916), + [anon_sym_get] = ACTIONS(916), + [anon_sym_set] = ACTIONS(916), + [anon_sym_declare] = ACTIONS(916), + [anon_sym_public] = ACTIONS(916), + [anon_sym_private] = ACTIONS(916), + [anon_sym_protected] = ACTIONS(916), + [anon_sym_override] = ACTIONS(916), + [anon_sym_module] = ACTIONS(916), + [anon_sym_any] = ACTIONS(916), + [anon_sym_number] = ACTIONS(916), + [anon_sym_boolean] = ACTIONS(916), + [anon_sym_string] = ACTIONS(916), + [anon_sym_symbol] = ACTIONS(916), + [anon_sym_object] = ACTIONS(916), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(921), - [anon_sym_export] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [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_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4321), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [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_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5458), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(914), + [anon_sym_export] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(926), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [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(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(916), + [anon_sym_readonly] = ACTIONS(916), + [anon_sym_get] = ACTIONS(916), + [anon_sym_set] = ACTIONS(916), + [anon_sym_declare] = ACTIONS(916), + [anon_sym_public] = ACTIONS(916), + [anon_sym_private] = ACTIONS(916), + [anon_sym_protected] = ACTIONS(916), + [anon_sym_override] = ACTIONS(916), + [anon_sym_module] = ACTIONS(916), + [anon_sym_any] = ACTIONS(916), + [anon_sym_number] = ACTIONS(916), + [anon_sym_boolean] = ACTIONS(916), + [anon_sym_string] = ACTIONS(916), + [anon_sym_symbol] = ACTIONS(916), + [anon_sym_object] = ACTIONS(916), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4346), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5469), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(940), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(930), + [anon_sym_readonly] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [anon_sym_declare] = ACTIONS(930), + [anon_sym_public] = ACTIONS(930), + [anon_sym_private] = ACTIONS(930), + [anon_sym_protected] = ACTIONS(930), + [anon_sym_override] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_any] = ACTIONS(930), + [anon_sym_number] = ACTIONS(930), + [anon_sym_boolean] = ACTIONS(930), + [anon_sym_string] = ACTIONS(930), + [anon_sym_symbol] = ACTIONS(930), + [anon_sym_object] = ACTIONS(930), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3971), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5372), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [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_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(940), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(930), + [anon_sym_readonly] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [anon_sym_declare] = ACTIONS(930), + [anon_sym_public] = ACTIONS(930), + [anon_sym_private] = ACTIONS(930), + [anon_sym_protected] = ACTIONS(930), + [anon_sym_override] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_any] = ACTIONS(930), + [anon_sym_number] = ACTIONS(930), + [anon_sym_boolean] = ACTIONS(930), + [anon_sym_string] = ACTIONS(930), + [anon_sym_symbol] = ACTIONS(930), + [anon_sym_object] = ACTIONS(930), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(921), - [anon_sym_export] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [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_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(944), + [anon_sym_export] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(952), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(956), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(946), + [anon_sym_readonly] = ACTIONS(946), + [anon_sym_get] = ACTIONS(946), + [anon_sym_set] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_override] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(946), + [anon_sym_number] = ACTIONS(946), + [anon_sym_boolean] = ACTIONS(946), + [anon_sym_string] = ACTIONS(946), + [anon_sym_symbol] = ACTIONS(946), + [anon_sym_object] = ACTIONS(946), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(960), + [anon_sym_export] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(968), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(972), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(962), + [anon_sym_readonly] = ACTIONS(962), + [anon_sym_get] = ACTIONS(962), + [anon_sym_set] = ACTIONS(962), + [anon_sym_declare] = ACTIONS(962), + [anon_sym_public] = ACTIONS(962), + [anon_sym_private] = ACTIONS(962), + [anon_sym_protected] = ACTIONS(962), + [anon_sym_override] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_any] = ACTIONS(962), + [anon_sym_number] = ACTIONS(962), + [anon_sym_boolean] = ACTIONS(962), + [anon_sym_string] = ACTIONS(962), + [anon_sym_symbol] = ACTIONS(962), + [anon_sym_object] = ACTIONS(962), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(965), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(977), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(967), - [anon_sym_readonly] = ACTIONS(967), - [anon_sym_get] = ACTIONS(967), - [anon_sym_set] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(967), - [anon_sym_public] = ACTIONS(967), - [anon_sym_private] = ACTIONS(967), - [anon_sym_protected] = ACTIONS(967), - [anon_sym_override] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_any] = ACTIONS(967), - [anon_sym_number] = ACTIONS(967), - [anon_sym_boolean] = ACTIONS(967), - [anon_sym_string] = ACTIONS(967), - [anon_sym_symbol] = ACTIONS(967), - [anon_sym_object] = ACTIONS(967), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(960), + [anon_sym_export] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(968), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(972), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(962), + [anon_sym_readonly] = ACTIONS(962), + [anon_sym_get] = ACTIONS(962), + [anon_sym_set] = ACTIONS(962), + [anon_sym_declare] = ACTIONS(962), + [anon_sym_public] = ACTIONS(962), + [anon_sym_private] = ACTIONS(962), + [anon_sym_protected] = ACTIONS(962), + [anon_sym_override] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_any] = ACTIONS(962), + [anon_sym_number] = ACTIONS(962), + [anon_sym_boolean] = ACTIONS(962), + [anon_sym_string] = ACTIONS(962), + [anon_sym_symbol] = ACTIONS(962), + [anon_sym_object] = ACTIONS(962), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(965), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(977), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(967), - [anon_sym_readonly] = ACTIONS(967), - [anon_sym_get] = ACTIONS(967), - [anon_sym_set] = ACTIONS(967), - [anon_sym_declare] = ACTIONS(967), - [anon_sym_public] = ACTIONS(967), - [anon_sym_private] = ACTIONS(967), - [anon_sym_protected] = ACTIONS(967), - [anon_sym_override] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_any] = ACTIONS(967), - [anon_sym_number] = ACTIONS(967), - [anon_sym_boolean] = ACTIONS(967), - [anon_sym_string] = ACTIONS(967), - [anon_sym_symbol] = ACTIONS(967), - [anon_sym_object] = ACTIONS(967), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(944), + [anon_sym_export] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(952), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(956), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(946), + [anon_sym_readonly] = ACTIONS(946), + [anon_sym_get] = ACTIONS(946), + [anon_sym_set] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_override] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(946), + [anon_sym_number] = ACTIONS(946), + [anon_sym_boolean] = ACTIONS(946), + [anon_sym_string] = ACTIONS(946), + [anon_sym_symbol] = ACTIONS(946), + [anon_sym_object] = ACTIONS(946), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5260), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5535), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(4425), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1956), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3302), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5291), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(984), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_typeof] = ACTIONS(990), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(998), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1008), + [sym_number] = ACTIONS(1010), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(1012), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1014), + [sym_false] = ACTIONS(1014), + [sym_null] = ACTIONS(1014), + [sym_undefined] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(1020), + [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(1022), + [anon_sym_number] = ACTIONS(1022), + [anon_sym_boolean] = ACTIONS(1022), + [anon_sym_string] = ACTIONS(1022), + [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_object] = ACTIONS(1022), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(3622), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5210), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5583), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1956), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3937), - [sym_pattern] = STATE(4534), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5333), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_typeof] = ACTIONS(1003), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1009), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(1019), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1021), - [sym_number] = ACTIONS(1023), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1025), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1027), - [sym_false] = ACTIONS(1027), - [sym_null] = ACTIONS(1027), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(154), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2319), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5796), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5640), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(4114), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(4406), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1053), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_typeof] = ACTIONS(1061), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1063), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1067), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1071), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(1073), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1075), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1077), - [anon_sym_number] = ACTIONS(1077), - [anon_sym_boolean] = ACTIONS(1077), - [anon_sym_string] = ACTIONS(1077), - [anon_sym_symbol] = ACTIONS(1077), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(4133), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(4403), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1046), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(1064), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(1066), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_object] = ACTIONS(1070), + [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), }, [151] = { - [sym_import] = STATE(3620), + [sym_import] = STATE(3508), [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2397), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1459), [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(617), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1079), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1125), - [anon_sym_number] = ACTIONS(1125), - [anon_sym_boolean] = ACTIONS(1125), - [anon_sym_string] = ACTIONS(1125), - [anon_sym_symbol] = ACTIONS(1125), - [anon_sym_object] = ACTIONS(1125), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [152] = { - [sym_import] = STATE(3614), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2191), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2424), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(450), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1127), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1155), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1163), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [sym_null] = ACTIONS(1169), - [sym_undefined] = ACTIONS(1171), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1175), - [anon_sym_number] = ACTIONS(1175), - [anon_sym_boolean] = ACTIONS(1175), - [anon_sym_string] = ACTIONS(1175), - [anon_sym_symbol] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(1175), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(647), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1080), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1092), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1098), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1116), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1118), + [anon_sym_number] = ACTIONS(1118), + [anon_sym_boolean] = ACTIONS(1118), + [anon_sym_string] = ACTIONS(1118), + [anon_sym_symbol] = ACTIONS(1118), + [anon_sym_object] = ACTIONS(1118), + [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), }, - [153] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(1512), + [152] = { + [sym_import] = STATE(3508), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_typeof] = ACTIONS(1181), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(1189), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(1191), - [anon_sym_number] = ACTIONS(1191), - [anon_sym_boolean] = ACTIONS(1191), - [anon_sym_string] = ACTIONS(1191), - [anon_sym_symbol] = ACTIONS(1191), - [anon_sym_object] = ACTIONS(1191), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1120), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1122), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1124), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(774), + [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(1132), + [anon_sym_number] = ACTIONS(1132), + [anon_sym_boolean] = ACTIONS(1132), + [anon_sym_string] = ACTIONS(1132), + [anon_sym_symbol] = ACTIONS(1132), + [anon_sym_object] = ACTIONS(1132), + [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), }, - [154] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [153] = { + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1746), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3727), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3727), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1448), - [sym_subscript_expression] = STATE(1448), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3727), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2547), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1448), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4112), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1193), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_typeof] = ACTIONS(1201), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1203), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1205), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1207), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1211), - [sym_number] = ACTIONS(1213), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1215), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_null] = ACTIONS(1217), - [sym_undefined] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [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_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [155] = { - [sym_import] = STATE(3557), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(511), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1225), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_typeof] = ACTIONS(1233), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1241), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1251), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1257), - [sym_number] = ACTIONS(1259), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(1263), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [sym_null] = ACTIONS(1265), - [sym_undefined] = ACTIONS(1267), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1271), - [anon_sym_number] = ACTIONS(1271), - [anon_sym_boolean] = ACTIONS(1271), - [anon_sym_string] = ACTIONS(1271), - [anon_sym_symbol] = ACTIONS(1271), - [anon_sym_object] = ACTIONS(1271), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + [anon_sym_object] = ACTIONS(1154), + [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), }, - [156] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1892), - [sym_primary_expression] = STATE(1512), + [154] = { + [sym_import] = STATE(3563), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1709), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1273), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(1283), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_using] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_number] = ACTIONS(1293), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(1295), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1303), - [anon_sym_number] = ACTIONS(1303), - [anon_sym_boolean] = ACTIONS(1303), - [anon_sym_string] = ACTIONS(1303), - [anon_sym_symbol] = ACTIONS(1303), - [anon_sym_object] = ACTIONS(1303), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_typeof] = ACTIONS(1162), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_using] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1172), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1174), + [anon_sym_number] = ACTIONS(1174), + [anon_sym_boolean] = ACTIONS(1174), + [anon_sym_string] = ACTIONS(1174), + [anon_sym_symbol] = ACTIONS(1174), + [anon_sym_object] = ACTIONS(1174), + [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), }, - [157] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1512), + [155] = { + [sym_import] = STATE(3570), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4302), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4302), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1351), - [sym_subscript_expression] = STATE(1351), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4302), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1351), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4112), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1305), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1307), - [anon_sym_namespace] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1315), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1317), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1307), - [anon_sym_set] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1307), - [anon_sym_public] = ACTIONS(1307), - [anon_sym_private] = ACTIONS(1307), - [anon_sym_protected] = ACTIONS(1307), - [anon_sym_override] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(620), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1176), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_typeof] = ACTIONS(1184), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1200), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [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), }, - [158] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2088), - [sym_primary_expression] = STATE(1512), + [156] = { + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4276), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1363), + [sym_subscript_expression] = STATE(1363), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(4276), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1709), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1363), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(564), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1323), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1283), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1339), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1345), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_number] = ACTIONS(1293), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(1295), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1353), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_number] = ACTIONS(1357), - [anon_sym_boolean] = ACTIONS(1357), - [anon_sym_string] = ACTIONS(1357), - [anon_sym_symbol] = ACTIONS(1357), - [anon_sym_object] = ACTIONS(1357), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4129), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1214), + [anon_sym_export] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_namespace] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_readonly] = ACTIONS(1228), + [anon_sym_get] = ACTIONS(1216), + [anon_sym_set] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_protected] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_module] = ACTIONS(1216), + [anon_sym_any] = ACTIONS(1230), + [anon_sym_number] = ACTIONS(1230), + [anon_sym_boolean] = ACTIONS(1230), + [anon_sym_string] = ACTIONS(1230), + [anon_sym_symbol] = ACTIONS(1230), + [anon_sym_object] = ACTIONS(1230), + [anon_sym_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), }, - [159] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1512), + [157] = { + [sym_import] = STATE(3508), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(591), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1359), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_typeof] = ACTIONS(1365), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_number] = ACTIONS(1393), - [anon_sym_boolean] = ACTIONS(1393), - [anon_sym_string] = ACTIONS(1393), - [anon_sym_symbol] = ACTIONS(1393), - [anon_sym_object] = ACTIONS(1393), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(594), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1232), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1248), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1264), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1266), + [anon_sym_number] = ACTIONS(1266), + [anon_sym_boolean] = ACTIONS(1266), + [anon_sym_string] = ACTIONS(1266), + [anon_sym_symbol] = ACTIONS(1266), + [anon_sym_object] = ACTIONS(1266), + [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), }, - [160] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1512), + [158] = { + [sym_import] = STATE(3543), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2476), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(452), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1276), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(1308), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [sym_null] = ACTIONS(1310), + [sym_undefined] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1314), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1316), + [anon_sym_number] = ACTIONS(1316), + [anon_sym_boolean] = ACTIONS(1316), + [anon_sym_string] = ACTIONS(1316), + [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_object] = ACTIONS(1316), + [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), + }, + [159] = { + [sym_import] = STATE(3508), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3654), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3654), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(3654), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1709), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(2567), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1446), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1395), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1283), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1067), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_number] = ACTIONS(1293), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1295), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1075), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_number] = ACTIONS(1403), - [anon_sym_boolean] = ACTIONS(1403), - [anon_sym_string] = ACTIONS(1403), - [anon_sym_symbol] = ACTIONS(1403), - [anon_sym_object] = ACTIONS(1403), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4129), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1318), + [anon_sym_export] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1320), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1332), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1336), + [sym_number] = ACTIONS(1338), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1340), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_null] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1344), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_readonly] = ACTIONS(1346), + [anon_sym_get] = ACTIONS(1320), + [anon_sym_set] = ACTIONS(1320), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1320), + [anon_sym_public] = ACTIONS(1320), + [anon_sym_private] = ACTIONS(1320), + [anon_sym_protected] = ACTIONS(1320), + [anon_sym_override] = ACTIONS(1320), + [anon_sym_module] = ACTIONS(1320), + [anon_sym_any] = ACTIONS(1348), + [anon_sym_number] = ACTIONS(1348), + [anon_sym_boolean] = ACTIONS(1348), + [anon_sym_string] = ACTIONS(1348), + [anon_sym_symbol] = ACTIONS(1348), + [anon_sym_object] = ACTIONS(1348), + [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), + }, + [160] = { + [sym_import] = STATE(3695), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(1980), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(428), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1368), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1372), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1374), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1378), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1382), + [anon_sym_number] = ACTIONS(1382), + [anon_sym_boolean] = ACTIONS(1382), + [anon_sym_string] = ACTIONS(1382), + [anon_sym_symbol] = ACTIONS(1382), + [anon_sym_object] = ACTIONS(1382), + [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), }, [161] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3695), + [sym_parenthesized_expression] = STATE(1364), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(1980), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1364), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(513), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1406), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1372), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(1374), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1418), + [anon_sym_number] = ACTIONS(1418), + [anon_sym_boolean] = ACTIONS(1418), + [anon_sym_string] = ACTIONS(1418), + [anon_sym_symbol] = ACTIONS(1418), + [anon_sym_object] = ACTIONS(1418), + [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(3593), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2086), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(644), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1405), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1421), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1435), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1437), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_number] = ACTIONS(1439), - [anon_sym_boolean] = ACTIONS(1439), - [anon_sym_string] = ACTIONS(1439), - [anon_sym_symbol] = ACTIONS(1439), - [anon_sym_object] = ACTIONS(1439), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [162] = { - [sym_import] = STATE(3557), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_type_arguments] = STATE(427), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1441), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1241), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1451), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1257), - [sym_number] = ACTIONS(1259), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1263), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [sym_null] = ACTIONS(1265), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1459), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1461), - [anon_sym_number] = ACTIONS(1461), - [anon_sym_boolean] = ACTIONS(1461), - [anon_sym_string] = ACTIONS(1461), - [anon_sym_symbol] = ACTIONS(1461), - [anon_sym_object] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(566), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1420), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_typeof] = ACTIONS(1426), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1452), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1454), + [anon_sym_number] = ACTIONS(1454), + [anon_sym_boolean] = ACTIONS(1454), + [anon_sym_string] = ACTIONS(1454), + [anon_sym_symbol] = ACTIONS(1454), + [anon_sym_object] = ACTIONS(1454), + [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(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(594), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1469), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(555), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1462), [anon_sym_await] = ACTIONS(45), - [anon_sym_in] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1460), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1469), - [sym__ternary_qmark] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__automatic_semicolon] = ACTIONS(1462), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1253), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1408), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_of] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_of] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1469), - [sym__ternary_qmark] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__automatic_semicolon] = ACTIONS(1462), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1894), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1924), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(743), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(736), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2261), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1469), - [sym__ternary_qmark] = ACTIONS(1469), - [sym_html_comment] = ACTIONS(5), - }, - [168] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2110), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2108), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), - [anon_sym_satisfies] = ACTIONS(1467), - [anon_sym_implements] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [anon_sym_satisfies] = ACTIONS(1460), + [anon_sym_implements] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), + [sym_html_comment] = ACTIONS(5), + }, + [168] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__automatic_semicolon] = ACTIONS(1462), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_of] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), + [sym_object] = STATE(1687), [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), + [sym_array] = STATE(1687), [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_of] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2460), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1469), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2579), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(811), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_type] = ACTIONS(804), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_declaration] = STATE(3969), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(3912), - [sym_lexical_declaration] = STATE(3912), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(3912), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(3912), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(3912), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(3912), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(3912), - [sym_abstract_class_declaration] = STATE(3912), - [sym_module] = STATE(3912), - [sym_internal_module] = STATE(2390), - [sym_import_alias] = STATE(3912), - [sym_interface_declaration] = STATE(3912), - [sym_enum_declaration] = STATE(3912), - [sym_type_alias_declaration] = STATE(3912), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4229), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1573), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1587), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(1591), - [anon_sym_interface] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1595), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_declaration] = STATE(929), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4161), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_declaration] = STATE(4141), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(3912), - [sym_lexical_declaration] = STATE(3912), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(3912), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(3912), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(3912), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(3912), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(3912), - [sym_abstract_class_declaration] = STATE(3912), - [sym_module] = STATE(3912), - [sym_internal_module] = STATE(2390), - [sym_import_alias] = STATE(3912), - [sym_interface_declaration] = STATE(3912), - [sym_enum_declaration] = STATE(3912), - [sym_type_alias_declaration] = STATE(3912), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4229), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1573), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1587), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(1591), - [anon_sym_interface] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1595), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_declaration] = STATE(934), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4135), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(3992), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(4275), + [sym_lexical_declaration] = STATE(4275), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(4275), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(4275), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(4275), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(4275), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(4275), + [sym_abstract_class_declaration] = STATE(4275), + [sym_module] = STATE(4275), + [sym_internal_module] = STATE(2453), + [sym_import_alias] = STATE(4275), + [sym_interface_declaration] = STATE(4275), + [sym_enum_declaration] = STATE(4275), + [sym_type_alias_declaration] = STATE(4275), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4222), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1578), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1582), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_interface] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1588), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_declaration] = STATE(934), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4161), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), + [sym_declaration] = STATE(937), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4150), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1596), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_declaration] = STATE(929), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4135), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), + [sym_declaration] = STATE(937), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4153), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1596), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3222), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(1620), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(873), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4153), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3661), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(1644), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1650), + [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(597), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(154), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3729), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(4327), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(4275), + [sym_lexical_declaration] = STATE(4275), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2377), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(4275), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(4275), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(4275), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(4275), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(4275), + [sym_abstract_class_declaration] = STATE(4275), + [sym_module] = STATE(4275), + [sym_internal_module] = STATE(2453), + [sym_import_alias] = STATE(4275), + [sym_interface_declaration] = STATE(4275), + [sym_enum_declaration] = STATE(4275), + [sym_type_alias_declaration] = STATE(4275), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4222), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1578), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1582), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_interface] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1588), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3254), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(873), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4150), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [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(154), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5646), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1357), + [sym_sequence_expression] = STATE(5679), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -47955,113 +47276,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(1659), - [anon_sym_export] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(1663), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1665), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(1667), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [anon_sym_object] = ACTIONS(731), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(724), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(1656), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(724), + [anon_sym_number] = ACTIONS(724), + [anon_sym_boolean] = ACTIONS(724), + [anon_sym_string] = ACTIONS(724), + [anon_sym_symbol] = ACTIONS(724), + [anon_sym_object] = ACTIONS(724), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5858), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1357), + [sym_sequence_expression] = STATE(5780), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48069,112 +47388,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(1659), - [anon_sym_export] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(1663), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1665), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(1667), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [anon_sym_object] = ACTIONS(731), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(724), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(1656), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(724), + [anon_sym_number] = ACTIONS(724), + [anon_sym_boolean] = ACTIONS(724), + [anon_sym_string] = ACTIONS(724), + [anon_sym_symbol] = ACTIONS(724), + [anon_sym_object] = ACTIONS(724), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4587), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48182,112 +47499,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4587), - [sym_optional_parameter] = STATE(4587), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [197] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4904), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4899), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48295,112 +47610,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4904), - [sym_optional_parameter] = STATE(4904), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(4899), + [sym_optional_parameter] = STATE(4899), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [198] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4939), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48408,112 +47721,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(4939), + [sym_optional_parameter] = STATE(4939), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [199] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48521,338 +47832,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [200] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_statement_block] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_QMARK_DOT] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1676), + [anon_sym_GT_GT_GT] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_STAR_STAR] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_LT_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ] = ACTIONS(1676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), + [anon_sym_GT_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK_QMARK] = ACTIONS(1674), + [anon_sym_instanceof] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_satisfies] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [sym__automatic_semicolon] = ACTIONS(1674), + [sym__ternary_qmark] = ACTIONS(1674), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_statement_block] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_QMARK_DOT] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1676), + [anon_sym_GT_GT_GT] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_STAR_STAR] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_LT_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ] = ACTIONS(1676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), + [anon_sym_GT_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK_QMARK] = ACTIONS(1674), + [anon_sym_instanceof] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_satisfies] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [sym__automatic_semicolon] = ACTIONS(1674), + [sym__ternary_qmark] = ACTIONS(1674), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48860,225 +48165,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1685), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [203] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_statement_block] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1676), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_QMARK_DOT] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1676), + [anon_sym_GT_GT_GT] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_STAR_STAR] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_LT_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ] = ACTIONS(1676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), + [anon_sym_GT_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK_QMARK] = ACTIONS(1674), + [anon_sym_instanceof] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_satisfies] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [sym__automatic_semicolon] = ACTIONS(1674), + [sym__ternary_qmark] = ACTIONS(1674), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -49086,90851 +48387,89732 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [205] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1695), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [206] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_QMARK_DOT] = ACTIONS(1698), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1694), + [anon_sym_GT_GT_GT] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_STAR_STAR] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_EQ] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), + [anon_sym_GT_EQ] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_QMARK_QMARK] = ACTIONS(1698), + [anon_sym_instanceof] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_satisfies] = ACTIONS(1694), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1700), + [sym__ternary_qmark] = ACTIONS(1698), + [sym_html_comment] = ACTIONS(5), + }, + [207] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1701), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), - [sym_html_comment] = ACTIONS(5), - }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1711), - [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(1707), - [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), - [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_DOT] = ACTIONS(1707), - [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(1711), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1711), - [anon_sym_PIPE_PIPE] = ACTIONS(1711), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_GT_GT_GT] = ACTIONS(1711), - [anon_sym_LT_LT] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1711), - [anon_sym_STAR_STAR] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1711), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1711), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1711), - [anon_sym_QMARK_QMARK] = ACTIONS(1711), - [anon_sym_instanceof] = ACTIONS(1707), - [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(1707), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1713), - [sym__ternary_qmark] = ACTIONS(1711), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [208] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [209] = { - [sym_statement_block] = STATE(236), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_in] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_DOT] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [sym__automatic_semicolon] = ACTIONS(1717), - [sym__ternary_qmark] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_as] = ACTIONS(1710), + [anon_sym_namespace] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1708), + [anon_sym_with] = ACTIONS(1708), + [anon_sym_var] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_else] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_await] = ACTIONS(1708), + [anon_sym_in] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_debugger] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_throw] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_class] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_function] = ACTIONS(1708), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_using] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1712), + [anon_sym_PIPE_PIPE] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1710), + [anon_sym_GT_GT_GT] = ACTIONS(1712), + [anon_sym_LT_LT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_STAR_STAR] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_EQ] = ACTIONS(1712), + [anon_sym_EQ_EQ] = ACTIONS(1710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), + [anon_sym_GT_EQ] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1710), + [anon_sym_QMARK_QMARK] = ACTIONS(1712), + [anon_sym_instanceof] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1708), + [anon_sym_delete] = ACTIONS(1708), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym_number] = ACTIONS(1706), + [sym_private_property_identifier] = ACTIONS(1706), + [sym_this] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_undefined] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_declare] = ACTIONS(1708), + [anon_sym_public] = ACTIONS(1708), + [anon_sym_private] = ACTIONS(1708), + [anon_sym_protected] = ACTIONS(1708), + [anon_sym_override] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_any] = ACTIONS(1708), + [anon_sym_number] = ACTIONS(1708), + [anon_sym_boolean] = ACTIONS(1708), + [anon_sym_string] = ACTIONS(1708), + [anon_sym_symbol] = ACTIONS(1708), + [anon_sym_object] = ACTIONS(1708), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_satisfies] = ACTIONS(1710), + [anon_sym_interface] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [sym__automatic_semicolon] = ACTIONS(1714), + [sym__ternary_qmark] = ACTIONS(1712), [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1723), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_as] = ACTIONS(1718), + [anon_sym_namespace] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1718), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_with] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_throw] = ACTIONS(1718), + [anon_sym_case] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_QMARK_DOT] = ACTIONS(1716), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1716), + [sym_number] = ACTIONS(1716), + [sym_private_property_identifier] = ACTIONS(1716), + [sym_this] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_undefined] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_readonly] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_declare] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_override] = ACTIONS(1718), + [anon_sym_module] = ACTIONS(1718), + [anon_sym_any] = ACTIONS(1718), + [anon_sym_number] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_string] = ACTIONS(1718), + [anon_sym_symbol] = ACTIONS(1718), + [anon_sym_object] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_satisfies] = ACTIONS(1718), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_statement_block] = STATE(236), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_in] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [sym__automatic_semicolon] = ACTIONS(1717), - [sym__ternary_qmark] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_as] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1722), + [anon_sym_import] = ACTIONS(1722), + [anon_sym_with] = ACTIONS(1722), + [anon_sym_var] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_await] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_debugger] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_QMARK_DOT] = ACTIONS(1720), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1720), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1720), + [anon_sym_LT_LT] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1720), + [anon_sym_STAR_STAR] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_LT_EQ] = ACTIONS(1720), + [anon_sym_EQ_EQ] = ACTIONS(1722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), + [anon_sym_BANG_EQ] = ACTIONS(1722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), + [anon_sym_GT_EQ] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1722), + [anon_sym_QMARK_QMARK] = ACTIONS(1720), + [anon_sym_instanceof] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1722), + [anon_sym_delete] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1720), + [sym_number] = ACTIONS(1720), + [sym_private_property_identifier] = ACTIONS(1720), + [sym_this] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_undefined] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_readonly] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_override] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [anon_sym_object] = ACTIONS(1722), + [anon_sym_abstract] = ACTIONS(1722), + [anon_sym_satisfies] = ACTIONS(1722), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(1720), + [sym__ternary_qmark] = ACTIONS(1720), [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_DOT] = ACTIONS(1692), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_QMARK_DOT] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1690), + [anon_sym_PIPE_PIPE] = ACTIONS(1690), + [anon_sym_GT_GT] = ACTIONS(1692), + [anon_sym_GT_GT_GT] = ACTIONS(1690), + [anon_sym_LT_LT] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_PERCENT] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_EQ] = ACTIONS(1690), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1690), + [anon_sym_BANG_EQ] = ACTIONS(1692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1690), + [anon_sym_GT_EQ] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_QMARK_QMARK] = ACTIONS(1690), + [anon_sym_instanceof] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_satisfies] = ACTIONS(1692), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1724), + [sym__ternary_qmark] = ACTIONS(1690), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_statement_block] = STATE(236), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_in] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_DOT] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [sym__automatic_semicolon] = ACTIONS(1717), - [sym__ternary_qmark] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_export] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1728), + [anon_sym_namespace] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_typeof] = ACTIONS(1728), + [anon_sym_import] = ACTIONS(1728), + [anon_sym_with] = ACTIONS(1728), + [anon_sym_var] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_await] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_debugger] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_throw] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_class] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1728), + [anon_sym_using] = ACTIONS(1728), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1728), + [anon_sym_GT_GT_GT] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_STAR_STAR] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_QMARK_QMARK] = ACTIONS(1726), + [anon_sym_instanceof] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1726), + [sym_number] = ACTIONS(1726), + [sym_private_property_identifier] = ACTIONS(1726), + [sym_this] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_readonly] = ACTIONS(1728), + [anon_sym_get] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_declare] = ACTIONS(1728), + [anon_sym_public] = ACTIONS(1728), + [anon_sym_private] = ACTIONS(1728), + [anon_sym_protected] = ACTIONS(1728), + [anon_sym_override] = ACTIONS(1728), + [anon_sym_module] = ACTIONS(1728), + [anon_sym_any] = ACTIONS(1728), + [anon_sym_number] = ACTIONS(1728), + [anon_sym_boolean] = ACTIONS(1728), + [anon_sym_string] = ACTIONS(1728), + [anon_sym_symbol] = ACTIONS(1728), + [anon_sym_object] = ACTIONS(1728), + [anon_sym_abstract] = ACTIONS(1728), + [anon_sym_satisfies] = ACTIONS(1728), + [anon_sym_interface] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [sym__automatic_semicolon] = ACTIONS(1726), + [sym__ternary_qmark] = ACTIONS(1726), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2113), - [sym_primary_expression] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_QMARK_DOT] = ACTIONS(1736), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_GT_GT] = ACTIONS(1734), + [anon_sym_GT_GT_GT] = ACTIONS(1736), + [anon_sym_LT_LT] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_STAR_STAR] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_QMARK_QMARK] = ACTIONS(1736), + [anon_sym_instanceof] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_private_property_identifier] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_satisfies] = ACTIONS(1734), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym__ternary_qmark] = ACTIONS(1736), + [sym_html_comment] = ACTIONS(5), + }, + [215] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1695), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1742), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, - [215] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [216] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1729), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, - [216] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1512), + [217] = { + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym_import] = ACTIONS(1752), + [anon_sym_with] = ACTIONS(1752), + [anon_sym_var] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_await] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_debugger] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_class] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_function] = ACTIONS(1752), + [anon_sym_QMARK_DOT] = ACTIONS(1750), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_using] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1752), + [anon_sym_GT_GT_GT] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_STAR_STAR] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_QMARK_QMARK] = ACTIONS(1750), + [anon_sym_instanceof] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_number] = ACTIONS(1750), + [sym_private_property_identifier] = ACTIONS(1750), + [sym_this] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_undefined] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_readonly] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_declare] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_module] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_number] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_symbol] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_abstract] = ACTIONS(1752), + [anon_sym_satisfies] = ACTIONS(1752), + [anon_sym_interface] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1750), + [sym__ternary_qmark] = ACTIONS(1750), + [sym_html_comment] = ACTIONS(5), + }, + [218] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1731), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), - [sym_html_comment] = ACTIONS(5), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_debugger] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1733), - [sym_glimmer_opening_tag] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_QMARK_DOT] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_GT_GT_GT] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_STAR_STAR] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_LT_EQ] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1739), - [anon_sym_GT_EQ] = ACTIONS(1739), - [anon_sym_QMARK_QMARK] = ACTIONS(1739), - [anon_sym_instanceof] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_void] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1733), - [sym_number] = ACTIONS(1733), - [sym_private_property_identifier] = ACTIONS(1733), - [sym_this] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_undefined] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_get] = ACTIONS(1735), - [anon_sym_set] = ACTIONS(1735), - [anon_sym_declare] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [anon_sym_override] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_any] = ACTIONS(1735), - [anon_sym_number] = ACTIONS(1735), - [anon_sym_boolean] = ACTIONS(1735), - [anon_sym_string] = ACTIONS(1735), - [anon_sym_symbol] = ACTIONS(1735), - [anon_sym_object] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_satisfies] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1741), - [sym__ternary_qmark] = ACTIONS(1739), - [sym_html_comment] = ACTIONS(5), - }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1747), - [anon_sym_namespace] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_typeof] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_with] = ACTIONS(1745), - [anon_sym_var] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_await] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_debugger] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_throw] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [sym_glimmer_opening_tag] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_function] = ACTIONS(1745), - [anon_sym_QMARK_DOT] = ACTIONS(1749), - [anon_sym_new] = ACTIONS(1745), - [anon_sym_using] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_PIPE_PIPE] = ACTIONS(1749), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_GT_GT_GT] = ACTIONS(1749), - [anon_sym_LT_LT] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_PERCENT] = ACTIONS(1749), - [anon_sym_STAR_STAR] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1749), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1749), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1749), - [anon_sym_QMARK_QMARK] = ACTIONS(1749), - [anon_sym_instanceof] = ACTIONS(1747), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_delete] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym_number] = ACTIONS(1743), - [sym_private_property_identifier] = ACTIONS(1743), - [sym_this] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [sym_null] = ACTIONS(1745), - [sym_undefined] = ACTIONS(1745), - [anon_sym_AT] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_readonly] = ACTIONS(1745), - [anon_sym_get] = ACTIONS(1745), - [anon_sym_set] = ACTIONS(1745), - [anon_sym_declare] = ACTIONS(1745), - [anon_sym_public] = ACTIONS(1745), - [anon_sym_private] = ACTIONS(1745), - [anon_sym_protected] = ACTIONS(1745), - [anon_sym_override] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_any] = ACTIONS(1745), - [anon_sym_number] = ACTIONS(1745), - [anon_sym_boolean] = ACTIONS(1745), - [anon_sym_string] = ACTIONS(1745), - [anon_sym_symbol] = ACTIONS(1745), - [anon_sym_object] = ACTIONS(1745), - [anon_sym_abstract] = ACTIONS(1745), - [anon_sym_satisfies] = ACTIONS(1747), - [anon_sym_interface] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [sym__automatic_semicolon] = ACTIONS(1751), - [sym__ternary_qmark] = ACTIONS(1749), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_var] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_debugger] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [sym_glimmer_opening_tag] = ACTIONS(1753), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(1755), - [anon_sym_QMARK_DOT] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_AMP_AMP] = ACTIONS(1759), - [anon_sym_PIPE_PIPE] = ACTIONS(1759), - [anon_sym_GT_GT] = ACTIONS(1757), - [anon_sym_GT_GT_GT] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_PERCENT] = ACTIONS(1759), - [anon_sym_STAR_STAR] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_LT_EQ] = ACTIONS(1759), - [anon_sym_EQ_EQ] = ACTIONS(1757), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ] = ACTIONS(1757), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1759), - [anon_sym_GT_EQ] = ACTIONS(1759), - [anon_sym_QMARK_QMARK] = ACTIONS(1759), - [anon_sym_instanceof] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_void] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym_number] = ACTIONS(1753), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_undefined] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_readonly] = ACTIONS(1755), - [anon_sym_get] = ACTIONS(1755), - [anon_sym_set] = ACTIONS(1755), - [anon_sym_declare] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [anon_sym_override] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_object] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1755), - [anon_sym_satisfies] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [sym__automatic_semicolon] = ACTIONS(1761), - [sym__ternary_qmark] = ACTIONS(1759), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_export] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_as] = ACTIONS(1756), + [anon_sym_namespace] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym_import] = ACTIONS(1756), + [anon_sym_with] = ACTIONS(1756), + [anon_sym_var] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_await] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_debugger] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_throw] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(1756), + [anon_sym_QMARK_DOT] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_using] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_GT_GT_GT] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_STAR_STAR] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_QMARK_QMARK] = ACTIONS(1754), + [anon_sym_instanceof] = ACTIONS(1756), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_void] = ACTIONS(1756), + [anon_sym_delete] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_number] = ACTIONS(1754), + [sym_private_property_identifier] = ACTIONS(1754), + [sym_this] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_readonly] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1756), + [anon_sym_declare] = ACTIONS(1756), + [anon_sym_public] = ACTIONS(1756), + [anon_sym_private] = ACTIONS(1756), + [anon_sym_protected] = ACTIONS(1756), + [anon_sym_override] = ACTIONS(1756), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_any] = ACTIONS(1756), + [anon_sym_number] = ACTIONS(1756), + [anon_sym_boolean] = ACTIONS(1756), + [anon_sym_string] = ACTIONS(1756), + [anon_sym_symbol] = ACTIONS(1756), + [anon_sym_object] = ACTIONS(1756), + [anon_sym_abstract] = ACTIONS(1756), + [anon_sym_satisfies] = ACTIONS(1756), + [anon_sym_interface] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym__ternary_qmark] = ACTIONS(1754), [sym_html_comment] = ACTIONS(5), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_namespace] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1765), - [anon_sym_with] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_debugger] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_throw] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [sym_glimmer_opening_tag] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_function] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1765), - [anon_sym_using] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1763), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_QMARK_QMARK] = ACTIONS(1763), - [anon_sym_instanceof] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_delete] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_number] = ACTIONS(1763), - [sym_private_property_identifier] = ACTIONS(1763), - [sym_this] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_null] = ACTIONS(1765), - [sym_undefined] = ACTIONS(1765), - [anon_sym_AT] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_readonly] = ACTIONS(1765), - [anon_sym_get] = ACTIONS(1765), - [anon_sym_set] = ACTIONS(1765), - [anon_sym_declare] = ACTIONS(1765), - [anon_sym_public] = ACTIONS(1765), - [anon_sym_private] = ACTIONS(1765), - [anon_sym_protected] = ACTIONS(1765), - [anon_sym_override] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_any] = ACTIONS(1765), - [anon_sym_number] = ACTIONS(1765), - [anon_sym_boolean] = ACTIONS(1765), - [anon_sym_string] = ACTIONS(1765), - [anon_sym_symbol] = ACTIONS(1765), - [anon_sym_object] = ACTIONS(1765), - [anon_sym_abstract] = ACTIONS(1765), - [anon_sym_satisfies] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [sym__automatic_semicolon] = ACTIONS(1763), - [sym__ternary_qmark] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_namespace] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym_import] = ACTIONS(1760), + [anon_sym_with] = ACTIONS(1760), + [anon_sym_var] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_await] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_debugger] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_function] = ACTIONS(1760), + [anon_sym_QMARK_DOT] = ACTIONS(1764), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(1760), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1762), + [anon_sym_GT_GT_GT] = ACTIONS(1764), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_STAR_STAR] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_QMARK_QMARK] = ACTIONS(1764), + [anon_sym_instanceof] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(1760), + [anon_sym_delete] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1758), + [sym_private_property_identifier] = ACTIONS(1758), + [sym_this] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_undefined] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_readonly] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_declare] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_satisfies] = ACTIONS(1762), + [anon_sym_interface] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym__ternary_qmark] = ACTIONS(1764), [sym_html_comment] = ACTIONS(5), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1773), - [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(1771), - [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), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1771), - [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(1773), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_using] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_PIPE_PIPE] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_GT_GT_GT] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1773), - [anon_sym_STAR_STAR] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1773), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1773), - [anon_sym_QMARK_QMARK] = ACTIONS(1773), - [anon_sym_instanceof] = ACTIONS(1771), - [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(1771), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), - [sym__ternary_qmark] = ACTIONS(1773), - [sym_html_comment] = ACTIONS(5), - }, - [222] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_RBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1777), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), - [anon_sym_extends] = ACTIONS(1779), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1768), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), + }, + [222] = { + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_namespace] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym_import] = ACTIONS(1772), + [anon_sym_with] = ACTIONS(1772), + [anon_sym_var] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_await] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_debugger] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_throw] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_class] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(1772), + [anon_sym_QMARK_DOT] = ACTIONS(1776), + [anon_sym_new] = ACTIONS(1772), + [anon_sym_using] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_GT_GT_GT] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_STAR_STAR] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_QMARK_QMARK] = ACTIONS(1776), + [anon_sym_instanceof] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_void] = ACTIONS(1772), + [anon_sym_delete] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1770), + [sym_number] = ACTIONS(1770), + [sym_private_property_identifier] = ACTIONS(1770), + [sym_this] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_readonly] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1772), + [anon_sym_set] = ACTIONS(1772), + [anon_sym_declare] = ACTIONS(1772), + [anon_sym_public] = ACTIONS(1772), + [anon_sym_private] = ACTIONS(1772), + [anon_sym_protected] = ACTIONS(1772), + [anon_sym_override] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_any] = ACTIONS(1772), + [anon_sym_number] = ACTIONS(1772), + [anon_sym_boolean] = ACTIONS(1772), + [anon_sym_string] = ACTIONS(1772), + [anon_sym_symbol] = ACTIONS(1772), + [anon_sym_object] = ACTIONS(1772), + [anon_sym_abstract] = ACTIONS(1772), + [anon_sym_satisfies] = ACTIONS(1774), + [anon_sym_interface] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1778), + [sym__ternary_qmark] = ACTIONS(1776), [sym_html_comment] = ACTIONS(5), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [sym_glimmer_opening_tag] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_QMARK_DOT] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1787), - [anon_sym_STAR_STAR] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1787), - [anon_sym_QMARK_QMARK] = ACTIONS(1787), - [anon_sym_instanceof] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_private_property_identifier] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_override] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_satisfies] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [sym__automatic_semicolon] = ACTIONS(1789), - [sym__ternary_qmark] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1784), + [anon_sym_namespace] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1782), + [anon_sym_import] = ACTIONS(1782), + [anon_sym_with] = ACTIONS(1782), + [anon_sym_var] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_await] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_debugger] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_throw] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_class] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_function] = ACTIONS(1782), + [anon_sym_QMARK_DOT] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1786), + [anon_sym_PIPE_PIPE] = ACTIONS(1786), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1786), + [anon_sym_LT_LT] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_STAR_STAR] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1786), + [anon_sym_EQ_EQ] = ACTIONS(1784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), + [anon_sym_BANG_EQ] = ACTIONS(1784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), + [anon_sym_GT_EQ] = ACTIONS(1786), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_QMARK_QMARK] = ACTIONS(1786), + [anon_sym_instanceof] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_void] = ACTIONS(1782), + [anon_sym_delete] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1780), + [sym_number] = ACTIONS(1780), + [sym_private_property_identifier] = ACTIONS(1780), + [sym_this] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_true] = ACTIONS(1782), + [sym_false] = ACTIONS(1782), + [sym_null] = ACTIONS(1782), + [sym_undefined] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_readonly] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1782), + [anon_sym_public] = ACTIONS(1782), + [anon_sym_private] = ACTIONS(1782), + [anon_sym_protected] = ACTIONS(1782), + [anon_sym_override] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_any] = ACTIONS(1782), + [anon_sym_number] = ACTIONS(1782), + [anon_sym_boolean] = ACTIONS(1782), + [anon_sym_string] = ACTIONS(1782), + [anon_sym_symbol] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1782), + [anon_sym_abstract] = ACTIONS(1782), + [anon_sym_satisfies] = ACTIONS(1784), + [anon_sym_interface] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1788), + [sym__ternary_qmark] = ACTIONS(1786), [sym_html_comment] = ACTIONS(5), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1797), - [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(1795), - [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), - [sym_glimmer_opening_tag] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1795), - [anon_sym_DOT] = ACTIONS(1795), - [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(1797), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1793), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_PIPE_PIPE] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1795), - [anon_sym_GT_GT_GT] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1793), - [anon_sym_PERCENT] = ACTIONS(1797), - [anon_sym_STAR_STAR] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_LT_EQ] = ACTIONS(1797), - [anon_sym_EQ_EQ] = ACTIONS(1795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1797), - [anon_sym_BANG_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1797), - [anon_sym_GT_EQ] = ACTIONS(1797), - [anon_sym_QMARK_QMARK] = ACTIONS(1797), - [anon_sym_instanceof] = ACTIONS(1795), - [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(1795), - [anon_sym_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym__automatic_semicolon] = ACTIONS(1799), - [sym__ternary_qmark] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1794), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_with] = ACTIONS(1792), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_await] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_debugger] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_class] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_function] = ACTIONS(1792), + [anon_sym_QMARK_DOT] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_using] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1796), + [anon_sym_PIPE_PIPE] = ACTIONS(1796), + [anon_sym_GT_GT] = ACTIONS(1794), + [anon_sym_GT_GT_GT] = ACTIONS(1796), + [anon_sym_LT_LT] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_STAR_STAR] = ACTIONS(1796), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ] = ACTIONS(1794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ] = ACTIONS(1794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1796), + [anon_sym_GT_EQ] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1794), + [anon_sym_QMARK_QMARK] = ACTIONS(1796), + [anon_sym_instanceof] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_delete] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_number] = ACTIONS(1790), + [sym_private_property_identifier] = ACTIONS(1790), + [sym_this] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_undefined] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_readonly] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1792), + [anon_sym_set] = ACTIONS(1792), + [anon_sym_declare] = ACTIONS(1792), + [anon_sym_public] = ACTIONS(1792), + [anon_sym_private] = ACTIONS(1792), + [anon_sym_protected] = ACTIONS(1792), + [anon_sym_override] = ACTIONS(1792), + [anon_sym_module] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_number] = ACTIONS(1792), + [anon_sym_boolean] = ACTIONS(1792), + [anon_sym_string] = ACTIONS(1792), + [anon_sym_symbol] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1792), + [anon_sym_abstract] = ACTIONS(1792), + [anon_sym_satisfies] = ACTIONS(1794), + [anon_sym_interface] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1796), [sym_html_comment] = ACTIONS(5), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_as] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = 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(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(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), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_DOT] = ACTIONS(1803), - [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(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_GT_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_PERCENT] = ACTIONS(1801), - [anon_sym_STAR_STAR] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_LT_EQ] = ACTIONS(1801), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1801), - [anon_sym_QMARK_QMARK] = ACTIONS(1801), - [anon_sym_instanceof] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_satisfies] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym__automatic_semicolon] = ACTIONS(1801), - [sym__ternary_qmark] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1804), + [anon_sym_namespace] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1802), + [anon_sym_import] = ACTIONS(1802), + [anon_sym_with] = ACTIONS(1802), + [anon_sym_var] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_switch] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_await] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_debugger] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_case] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_DOT] = ACTIONS(1804), + [anon_sym_class] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(1802), + [anon_sym_QMARK_DOT] = ACTIONS(1806), + [anon_sym_new] = ACTIONS(1802), + [anon_sym_using] = ACTIONS(1802), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [anon_sym_GT_GT] = ACTIONS(1804), + [anon_sym_GT_GT_GT] = ACTIONS(1806), + [anon_sym_LT_LT] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_STAR_STAR] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1806), + [anon_sym_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1806), + [anon_sym_BANG_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1806), + [anon_sym_GT_EQ] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1804), + [anon_sym_QMARK_QMARK] = ACTIONS(1806), + [anon_sym_instanceof] = ACTIONS(1804), + [anon_sym_TILDE] = ACTIONS(1800), + [anon_sym_void] = ACTIONS(1802), + [anon_sym_delete] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1800), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1800), + [sym_number] = ACTIONS(1800), + [sym_private_property_identifier] = ACTIONS(1800), + [sym_this] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_true] = ACTIONS(1802), + [sym_false] = ACTIONS(1802), + [sym_null] = ACTIONS(1802), + [sym_undefined] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_readonly] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_any] = ACTIONS(1802), + [anon_sym_number] = ACTIONS(1802), + [anon_sym_boolean] = ACTIONS(1802), + [anon_sym_string] = ACTIONS(1802), + [anon_sym_symbol] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_satisfies] = ACTIONS(1804), + [anon_sym_interface] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1808), + [sym__ternary_qmark] = ACTIONS(1806), [sym_html_comment] = ACTIONS(5), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_as] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = 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(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(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), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_DOT] = ACTIONS(1803), - [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(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_GT_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_PERCENT] = ACTIONS(1801), - [anon_sym_STAR_STAR] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_LT_EQ] = ACTIONS(1801), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1801), - [anon_sym_QMARK_QMARK] = ACTIONS(1801), - [anon_sym_instanceof] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_satisfies] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym__automatic_semicolon] = ACTIONS(1805), - [sym__ternary_qmark] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_namespace] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym_import] = ACTIONS(1812), + [anon_sym_with] = ACTIONS(1812), + [anon_sym_var] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_else] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_await] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_try] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_debugger] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(1812), + [anon_sym_QMARK_DOT] = ACTIONS(1816), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_using] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_GT_GT] = ACTIONS(1814), + [anon_sym_GT_GT_GT] = ACTIONS(1816), + [anon_sym_LT_LT] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_SLASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_STAR_STAR] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_QMARK_QMARK] = ACTIONS(1816), + [anon_sym_instanceof] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_void] = ACTIONS(1812), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1810), + [sym_number] = ACTIONS(1810), + [sym_private_property_identifier] = ACTIONS(1810), + [sym_this] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_undefined] = ACTIONS(1812), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_readonly] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1812), + [anon_sym_declare] = ACTIONS(1812), + [anon_sym_public] = ACTIONS(1812), + [anon_sym_private] = ACTIONS(1812), + [anon_sym_protected] = ACTIONS(1812), + [anon_sym_override] = ACTIONS(1812), + [anon_sym_module] = ACTIONS(1812), + [anon_sym_any] = ACTIONS(1812), + [anon_sym_number] = ACTIONS(1812), + [anon_sym_boolean] = ACTIONS(1812), + [anon_sym_string] = ACTIONS(1812), + [anon_sym_symbol] = ACTIONS(1812), + [anon_sym_object] = ACTIONS(1812), + [anon_sym_abstract] = ACTIONS(1812), + [anon_sym_satisfies] = ACTIONS(1814), + [anon_sym_interface] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [sym__automatic_semicolon] = ACTIONS(1818), + [sym__ternary_qmark] = ACTIONS(1816), [sym_html_comment] = ACTIONS(5), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_STAR_STAR] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_QMARK_QMARK] = ACTIONS(1807), - [anon_sym_instanceof] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_satisfies] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [sym__automatic_semicolon] = ACTIONS(1807), - [sym__ternary_qmark] = ACTIONS(1807), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1824), + [anon_sym_namespace] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1822), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_switch] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_await] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_debugger] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_case] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_class] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_function] = ACTIONS(1822), + [anon_sym_QMARK_DOT] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_using] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1824), + [anon_sym_GT_GT_GT] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1826), + [anon_sym_STAR_STAR] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(1826), + [anon_sym_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1826), + [anon_sym_BANG_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1826), + [anon_sym_GT_EQ] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1824), + [anon_sym_QMARK_QMARK] = ACTIONS(1826), + [anon_sym_instanceof] = ACTIONS(1824), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_void] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_number] = ACTIONS(1820), + [sym_private_property_identifier] = ACTIONS(1820), + [sym_this] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_true] = ACTIONS(1822), + [sym_false] = ACTIONS(1822), + [sym_null] = ACTIONS(1822), + [sym_undefined] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_readonly] = ACTIONS(1822), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_declare] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_any] = ACTIONS(1822), + [anon_sym_number] = ACTIONS(1822), + [anon_sym_boolean] = ACTIONS(1822), + [anon_sym_string] = ACTIONS(1822), + [anon_sym_symbol] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_satisfies] = ACTIONS(1824), + [anon_sym_interface] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [sym__automatic_semicolon] = ACTIONS(1828), + [sym__ternary_qmark] = ACTIONS(1826), [sym_html_comment] = ACTIONS(5), }, [228] = { - [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), - [sym_glimmer_opening_tag] = ACTIONS(1811), - [anon_sym_GT] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_function] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1817), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_using] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1815), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_QMARK_QMARK] = ACTIONS(1817), - [anon_sym_instanceof] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_delete] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1811), - [sym_number] = ACTIONS(1811), - [sym_private_property_identifier] = ACTIONS(1811), - [sym_this] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_null] = ACTIONS(1813), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(1813), - [anon_sym_get] = ACTIONS(1813), - [anon_sym_set] = ACTIONS(1813), - [anon_sym_declare] = ACTIONS(1813), - [anon_sym_public] = ACTIONS(1813), - [anon_sym_private] = ACTIONS(1813), - [anon_sym_protected] = ACTIONS(1813), - [anon_sym_override] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_any] = ACTIONS(1813), - [anon_sym_number] = ACTIONS(1813), - [anon_sym_boolean] = ACTIONS(1813), - [anon_sym_string] = ACTIONS(1813), - [anon_sym_symbol] = ACTIONS(1813), - [anon_sym_object] = ACTIONS(1813), - [anon_sym_abstract] = ACTIONS(1813), - [anon_sym_satisfies] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [sym__automatic_semicolon] = ACTIONS(1819), - [sym__ternary_qmark] = ACTIONS(1817), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_as] = ACTIONS(1834), + [anon_sym_namespace] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym_import] = ACTIONS(1832), + [anon_sym_with] = ACTIONS(1832), + [anon_sym_var] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_await] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_debugger] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_throw] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1834), + [anon_sym_class] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(1832), + [anon_sym_QMARK_DOT] = ACTIONS(1836), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PIPE_PIPE] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_GT_GT_GT] = ACTIONS(1836), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_CARET] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1832), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_STAR_STAR] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_LT_EQ] = ACTIONS(1836), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), + [anon_sym_GT_EQ] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_QMARK_QMARK] = ACTIONS(1836), + [anon_sym_instanceof] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_void] = ACTIONS(1832), + [anon_sym_delete] = ACTIONS(1832), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1830), + [sym_number] = ACTIONS(1830), + [sym_private_property_identifier] = ACTIONS(1830), + [sym_this] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_undefined] = ACTIONS(1832), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_readonly] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1832), + [anon_sym_set] = ACTIONS(1832), + [anon_sym_declare] = ACTIONS(1832), + [anon_sym_public] = ACTIONS(1832), + [anon_sym_private] = ACTIONS(1832), + [anon_sym_protected] = ACTIONS(1832), + [anon_sym_override] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_any] = ACTIONS(1832), + [anon_sym_number] = ACTIONS(1832), + [anon_sym_boolean] = ACTIONS(1832), + [anon_sym_string] = ACTIONS(1832), + [anon_sym_symbol] = ACTIONS(1832), + [anon_sym_object] = ACTIONS(1832), + [anon_sym_abstract] = ACTIONS(1832), + [anon_sym_satisfies] = ACTIONS(1834), + [anon_sym_interface] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [sym__automatic_semicolon] = ACTIONS(1838), + [sym__ternary_qmark] = ACTIONS(1836), [sym_html_comment] = ACTIONS(5), }, [229] = { - [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), - [sym_glimmer_opening_tag] = 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_AMP] = 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(1821), - [sym__ternary_qmark] = ACTIONS(1703), - [sym_html_comment] = ACTIONS(5), - }, - [230] = { - [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), - [sym_glimmer_opening_tag] = 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), - }, - [231] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), - [anon_sym_extends] = ACTIONS(1779), - [anon_sym_PIPE_RBRACE] = ACTIONS(1777), - [sym__automatic_semicolon] = ACTIONS(1777), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1846), + [anon_sym_namespace] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), + [anon_sym_with] = ACTIONS(1844), + [anon_sym_var] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_else] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_await] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_debugger] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_DOT] = ACTIONS(1846), + [anon_sym_class] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_function] = ACTIONS(1844), + [anon_sym_QMARK_DOT] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_using] = ACTIONS(1844), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1846), + [anon_sym_GT_GT_GT] = ACTIONS(1848), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_STAR_STAR] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_LT_EQ] = ACTIONS(1848), + [anon_sym_EQ_EQ] = ACTIONS(1846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1848), + [anon_sym_BANG_EQ] = ACTIONS(1846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1848), + [anon_sym_GT_EQ] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1846), + [anon_sym_QMARK_QMARK] = ACTIONS(1848), + [anon_sym_instanceof] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_void] = ACTIONS(1844), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_number] = ACTIONS(1842), + [sym_private_property_identifier] = ACTIONS(1842), + [sym_this] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_undefined] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_readonly] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1844), + [anon_sym_set] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1844), + [anon_sym_public] = ACTIONS(1844), + [anon_sym_private] = ACTIONS(1844), + [anon_sym_protected] = ACTIONS(1844), + [anon_sym_override] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1844), + [anon_sym_number] = ACTIONS(1844), + [anon_sym_boolean] = ACTIONS(1844), + [anon_sym_string] = ACTIONS(1844), + [anon_sym_symbol] = ACTIONS(1844), + [anon_sym_object] = ACTIONS(1844), + [anon_sym_abstract] = ACTIONS(1844), + [anon_sym_satisfies] = ACTIONS(1846), + [anon_sym_interface] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [sym__automatic_semicolon] = ACTIONS(1850), + [sym__ternary_qmark] = ACTIONS(1848), + [sym_html_comment] = ACTIONS(5), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_as] = ACTIONS(1854), + [anon_sym_namespace] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(1854), + [anon_sym_with] = ACTIONS(1854), + [anon_sym_var] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_await] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_debugger] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(1854), + [anon_sym_class] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_function] = ACTIONS(1854), + [anon_sym_QMARK_DOT] = ACTIONS(1852), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_AMP_AMP] = ACTIONS(1852), + [anon_sym_PIPE_PIPE] = ACTIONS(1852), + [anon_sym_GT_GT] = ACTIONS(1854), + [anon_sym_GT_GT_GT] = ACTIONS(1852), + [anon_sym_LT_LT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_STAR_STAR] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_LT_EQ] = ACTIONS(1852), + [anon_sym_EQ_EQ] = ACTIONS(1854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1852), + [anon_sym_BANG_EQ] = ACTIONS(1854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1852), + [anon_sym_GT_EQ] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_QMARK_QMARK] = ACTIONS(1852), + [anon_sym_instanceof] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_void] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1852), + [sym_number] = ACTIONS(1852), + [sym_private_property_identifier] = ACTIONS(1852), + [sym_this] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_undefined] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_readonly] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(1854), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_declare] = ACTIONS(1854), + [anon_sym_public] = ACTIONS(1854), + [anon_sym_private] = ACTIONS(1854), + [anon_sym_protected] = ACTIONS(1854), + [anon_sym_override] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_any] = ACTIONS(1854), + [anon_sym_number] = ACTIONS(1854), + [anon_sym_boolean] = ACTIONS(1854), + [anon_sym_string] = ACTIONS(1854), + [anon_sym_symbol] = ACTIONS(1854), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_satisfies] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [sym__automatic_semicolon] = ACTIONS(1852), + [sym__ternary_qmark] = ACTIONS(1852), [sym_html_comment] = ACTIONS(5), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1839), - [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_in] = ACTIONS(1837), - [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), - [sym_glimmer_opening_tag] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(1837), - [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(1839), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_QMARK_QMARK] = ACTIONS(1839), - [anon_sym_instanceof] = ACTIONS(1837), - [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_satisfies] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1841), - [sym__ternary_qmark] = ACTIONS(1839), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_as] = ACTIONS(1860), + [anon_sym_namespace] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_import] = ACTIONS(1858), + [anon_sym_with] = ACTIONS(1858), + [anon_sym_var] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_else] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_await] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_debugger] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_throw] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1858), + [anon_sym_QMARK_DOT] = ACTIONS(1862), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_using] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1862), + [anon_sym_PIPE_PIPE] = ACTIONS(1862), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_GT_GT_GT] = ACTIONS(1862), + [anon_sym_LT_LT] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1862), + [anon_sym_STAR_STAR] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_LT_EQ] = ACTIONS(1862), + [anon_sym_EQ_EQ] = ACTIONS(1860), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1862), + [anon_sym_BANG_EQ] = ACTIONS(1860), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1862), + [anon_sym_GT_EQ] = ACTIONS(1862), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_QMARK_QMARK] = ACTIONS(1862), + [anon_sym_instanceof] = ACTIONS(1860), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_void] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1856), + [sym_number] = ACTIONS(1856), + [sym_private_property_identifier] = ACTIONS(1856), + [sym_this] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_true] = ACTIONS(1858), + [sym_false] = ACTIONS(1858), + [sym_null] = ACTIONS(1858), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_readonly] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_declare] = ACTIONS(1858), + [anon_sym_public] = ACTIONS(1858), + [anon_sym_private] = ACTIONS(1858), + [anon_sym_protected] = ACTIONS(1858), + [anon_sym_override] = ACTIONS(1858), + [anon_sym_module] = ACTIONS(1858), + [anon_sym_any] = ACTIONS(1858), + [anon_sym_number] = ACTIONS(1858), + [anon_sym_boolean] = ACTIONS(1858), + [anon_sym_string] = ACTIONS(1858), + [anon_sym_symbol] = ACTIONS(1858), + [anon_sym_object] = ACTIONS(1858), + [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_satisfies] = ACTIONS(1860), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [sym__automatic_semicolon] = ACTIONS(1864), + [sym__ternary_qmark] = ACTIONS(1862), [sym_html_comment] = ACTIONS(5), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [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_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), - [sym_glimmer_opening_tag] = ACTIONS(1843), - [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_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_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_EQ_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), - [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_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_satisfies] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym__automatic_semicolon] = ACTIONS(1843), - [sym__ternary_qmark] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_as] = ACTIONS(1870), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_COMMA] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), + [anon_sym_with] = ACTIONS(1868), + [anon_sym_var] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_await] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_debugger] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_throw] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1870), + [anon_sym_class] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_function] = ACTIONS(1868), + [anon_sym_QMARK_DOT] = ACTIONS(1872), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_using] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1872), + [anon_sym_PIPE_PIPE] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1870), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1868), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_STAR_STAR] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(1870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_GT] = ACTIONS(1870), + [anon_sym_QMARK_QMARK] = ACTIONS(1872), + [anon_sym_instanceof] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_void] = ACTIONS(1868), + [anon_sym_delete] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1866), + [sym_number] = ACTIONS(1866), + [sym_private_property_identifier] = ACTIONS(1866), + [sym_this] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_undefined] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_readonly] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_override] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [anon_sym_object] = ACTIONS(1868), + [anon_sym_abstract] = ACTIONS(1868), + [anon_sym_satisfies] = ACTIONS(1870), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [sym__automatic_semicolon] = ACTIONS(1874), + [sym__ternary_qmark] = ACTIONS(1872), [sym_html_comment] = ACTIONS(5), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_typeof] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_var] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_do] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_debugger] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_glimmer_opening_tag] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_function] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1847), - [anon_sym_STAR_STAR] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1847), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_QMARK_QMARK] = ACTIONS(1847), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_delete] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym_number] = ACTIONS(1847), - [sym_private_property_identifier] = ACTIONS(1847), - [sym_this] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_null] = ACTIONS(1849), - [sym_undefined] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), - [anon_sym_object] = ACTIONS(1849), - [anon_sym_abstract] = ACTIONS(1849), - [anon_sym_satisfies] = ACTIONS(1849), - [anon_sym_interface] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [sym__automatic_semicolon] = ACTIONS(1847), - [sym__ternary_qmark] = ACTIONS(1847), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1876), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, [235] = { - [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), - [sym_glimmer_opening_tag] = 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_AMP] = 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), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_QMARK_DOT] = ACTIONS(1878), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_GT_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_STAR_STAR] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_QMARK_QMARK] = ACTIONS(1878), + [anon_sym_instanceof] = ACTIONS(1880), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_satisfies] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [sym__automatic_semicolon] = ACTIONS(1878), + [sym__ternary_qmark] = ACTIONS(1878), [sym_html_comment] = ACTIONS(5), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(1863), - [anon_sym_import] = ACTIONS(1863), - [anon_sym_with] = ACTIONS(1863), - [anon_sym_var] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_await] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_debugger] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1861), - [sym_glimmer_opening_tag] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_function] = ACTIONS(1863), - [anon_sym_QMARK_DOT] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_QMARK_QMARK] = ACTIONS(1861), - [anon_sym_instanceof] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_void] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1861), - [sym_number] = ACTIONS(1861), - [sym_private_property_identifier] = ACTIONS(1861), - [sym_this] = ACTIONS(1863), - [sym_super] = ACTIONS(1863), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_undefined] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1861), - [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), - [anon_sym_abstract] = ACTIONS(1863), - [anon_sym_satisfies] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [sym__automatic_semicolon] = ACTIONS(1861), - [sym__ternary_qmark] = ACTIONS(1861), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_QMARK_DOT] = ACTIONS(1878), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_GT_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_STAR_STAR] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_QMARK_QMARK] = ACTIONS(1878), + [anon_sym_instanceof] = ACTIONS(1880), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_satisfies] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [sym__automatic_semicolon] = ACTIONS(1882), + [sym__ternary_qmark] = ACTIONS(1878), [sym_html_comment] = ACTIONS(5), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1869), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_with] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_await] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_debugger] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1865), - [sym_glimmer_opening_tag] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_QMARK_DOT] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_GT_GT_GT] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_PERCENT] = ACTIONS(1871), - [anon_sym_STAR_STAR] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_QMARK_QMARK] = ACTIONS(1871), - [anon_sym_instanceof] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1865), - [sym_number] = ACTIONS(1865), - [sym_private_property_identifier] = ACTIONS(1865), - [sym_this] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_undefined] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(1867), - [anon_sym_get] = ACTIONS(1867), - [anon_sym_set] = ACTIONS(1867), - [anon_sym_declare] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [anon_sym_override] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_any] = ACTIONS(1867), - [anon_sym_number] = ACTIONS(1867), - [anon_sym_boolean] = ACTIONS(1867), - [anon_sym_string] = ACTIONS(1867), - [anon_sym_symbol] = ACTIONS(1867), - [anon_sym_object] = ACTIONS(1867), - [anon_sym_abstract] = ACTIONS(1867), - [anon_sym_satisfies] = ACTIONS(1869), - [anon_sym_interface] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [sym__automatic_semicolon] = ACTIONS(1873), - [sym__ternary_qmark] = ACTIONS(1871), - [sym_html_comment] = ACTIONS(5), - }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_typeof] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_debugger] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_case] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [sym_glimmer_opening_tag] = ACTIONS(1875), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_function] = ACTIONS(1877), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_QMARK_QMARK] = ACTIONS(1881), - [anon_sym_instanceof] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_void] = ACTIONS(1877), - [anon_sym_delete] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1875), - [sym_number] = ACTIONS(1875), - [sym_private_property_identifier] = ACTIONS(1875), - [sym_this] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_null] = ACTIONS(1877), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(1877), - [anon_sym_get] = ACTIONS(1877), - [anon_sym_set] = ACTIONS(1877), - [anon_sym_declare] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_private] = ACTIONS(1877), - [anon_sym_protected] = ACTIONS(1877), - [anon_sym_override] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_any] = ACTIONS(1877), - [anon_sym_number] = ACTIONS(1877), - [anon_sym_boolean] = ACTIONS(1877), - [anon_sym_string] = ACTIONS(1877), - [anon_sym_symbol] = ACTIONS(1877), - [anon_sym_object] = ACTIONS(1877), - [anon_sym_abstract] = ACTIONS(1877), - [anon_sym_satisfies] = ACTIONS(1879), - [anon_sym_interface] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [sym__automatic_semicolon] = ACTIONS(1883), - [sym__ternary_qmark] = ACTIONS(1881), - [sym_html_comment] = ACTIONS(5), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), - [anon_sym_QMARK_DOT] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_AMP_AMP] = ACTIONS(1891), - [anon_sym_PIPE_PIPE] = ACTIONS(1891), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1891), - [anon_sym_LT_LT] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_PERCENT] = ACTIONS(1891), - [anon_sym_STAR_STAR] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1891), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1891), - [anon_sym_GT_EQ] = ACTIONS(1891), - [anon_sym_QMARK_QMARK] = ACTIONS(1891), - [anon_sym_instanceof] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_satisfies] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [sym__automatic_semicolon] = ACTIONS(1891), - [sym__ternary_qmark] = ACTIONS(1891), - [sym_html_comment] = ACTIONS(5), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_COMMA] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_typeof] = ACTIONS(1895), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_with] = ACTIONS(1895), - [anon_sym_var] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_in] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_debugger] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1893), - [sym_glimmer_opening_tag] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_function] = ACTIONS(1895), - [anon_sym_QMARK_DOT] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_PIPE_PIPE] = ACTIONS(1893), - [anon_sym_GT_GT] = ACTIONS(1895), - [anon_sym_GT_GT_GT] = ACTIONS(1893), - [anon_sym_LT_LT] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_SLASH] = ACTIONS(1895), - [anon_sym_PERCENT] = ACTIONS(1893), - [anon_sym_STAR_STAR] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ] = ACTIONS(1895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ] = ACTIONS(1895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1893), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_QMARK_QMARK] = ACTIONS(1893), - [anon_sym_instanceof] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_void] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1893), - [sym_number] = ACTIONS(1893), - [sym_private_property_identifier] = ACTIONS(1893), - [sym_this] = ACTIONS(1895), - [sym_super] = ACTIONS(1895), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_undefined] = ACTIONS(1895), - [anon_sym_AT] = ACTIONS(1893), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_readonly] = ACTIONS(1895), - [anon_sym_get] = ACTIONS(1895), - [anon_sym_set] = ACTIONS(1895), - [anon_sym_declare] = ACTIONS(1895), - [anon_sym_public] = ACTIONS(1895), - [anon_sym_private] = ACTIONS(1895), - [anon_sym_protected] = ACTIONS(1895), - [anon_sym_override] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_any] = ACTIONS(1895), - [anon_sym_number] = ACTIONS(1895), - [anon_sym_boolean] = ACTIONS(1895), - [anon_sym_string] = ACTIONS(1895), - [anon_sym_symbol] = ACTIONS(1895), - [anon_sym_object] = ACTIONS(1895), - [anon_sym_abstract] = ACTIONS(1895), - [anon_sym_satisfies] = ACTIONS(1895), - [anon_sym_interface] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [sym__automatic_semicolon] = ACTIONS(1893), - [sym__ternary_qmark] = ACTIONS(1893), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1897), - [anon_sym_STAR_STAR] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_QMARK_QMARK] = ACTIONS(1897), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_satisfies] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym__ternary_qmark] = ACTIONS(1897), - [sym_html_comment] = ACTIONS(5), - }, - [242] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5106), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5106), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1412), - [sym_subscript_expression] = STATE(1412), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5106), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1412), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5723), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1901), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_RBRACK] = ACTIONS(1913), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1917), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1919), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_as] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_typeof] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_in] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_debugger] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [sym_glimmer_opening_tag] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_function] = ACTIONS(1923), - [anon_sym_QMARK_DOT] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_using] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1921), - [anon_sym_PIPE_PIPE] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_GT_GT_GT] = ACTIONS(1921), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_PERCENT] = ACTIONS(1921), - [anon_sym_STAR_STAR] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1923), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_QMARK_QMARK] = ACTIONS(1921), - [anon_sym_instanceof] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_delete] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_number] = ACTIONS(1921), - [sym_private_property_identifier] = ACTIONS(1921), - [sym_this] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_null] = ACTIONS(1923), - [sym_undefined] = ACTIONS(1923), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_object] = ACTIONS(1923), - [anon_sym_abstract] = ACTIONS(1923), - [anon_sym_satisfies] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [sym__automatic_semicolon] = ACTIONS(1921), - [sym__ternary_qmark] = ACTIONS(1921), + [238] = { + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_as] = ACTIONS(1886), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_with] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_await] = ACTIONS(1886), + [anon_sym_in] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_debugger] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_QMARK_DOT] = ACTIONS(1884), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_QMARK_QMARK] = ACTIONS(1884), + [anon_sym_instanceof] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_void] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [sym_private_property_identifier] = ACTIONS(1884), + [sym_this] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_undefined] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_readonly] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1886), + [anon_sym_set] = ACTIONS(1886), + [anon_sym_declare] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_protected] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_any] = ACTIONS(1886), + [anon_sym_number] = ACTIONS(1886), + [anon_sym_boolean] = ACTIONS(1886), + [anon_sym_string] = ACTIONS(1886), + [anon_sym_symbol] = ACTIONS(1886), + [anon_sym_object] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_satisfies] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [sym__automatic_semicolon] = ACTIONS(1884), + [sym__ternary_qmark] = ACTIONS(1884), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_namespace] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_typeof] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_with] = ACTIONS(1927), - [anon_sym_var] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_switch] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_in] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_debugger] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_throw] = ACTIONS(1927), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_function] = ACTIONS(1927), - [anon_sym_QMARK_DOT] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_using] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_GT_GT_GT] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_PERCENT] = ACTIONS(1925), - [anon_sym_STAR_STAR] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_EQ_EQ] = ACTIONS(1927), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ] = ACTIONS(1927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(1925), - [anon_sym_QMARK_QMARK] = ACTIONS(1925), - [anon_sym_instanceof] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_number] = ACTIONS(1925), - [sym_private_property_identifier] = ACTIONS(1925), - [sym_this] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [sym_null] = ACTIONS(1927), - [sym_undefined] = ACTIONS(1927), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1927), - [anon_sym_set] = ACTIONS(1927), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1927), - [anon_sym_private] = ACTIONS(1927), - [anon_sym_protected] = ACTIONS(1927), - [anon_sym_override] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_any] = ACTIONS(1927), - [anon_sym_number] = ACTIONS(1927), - [anon_sym_boolean] = ACTIONS(1927), - [anon_sym_string] = ACTIONS(1927), - [anon_sym_symbol] = ACTIONS(1927), - [anon_sym_object] = ACTIONS(1927), - [anon_sym_abstract] = ACTIONS(1927), - [anon_sym_satisfies] = ACTIONS(1927), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [sym__automatic_semicolon] = ACTIONS(1925), - [sym__ternary_qmark] = ACTIONS(1925), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_with] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_await] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_debugger] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_throw] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1890), + [anon_sym_QMARK_DOT] = ACTIONS(1888), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_GT_GT_GT] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_PERCENT] = ACTIONS(1888), + [anon_sym_STAR_STAR] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1888), + [anon_sym_BANG_EQ] = ACTIONS(1890), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1888), + [anon_sym_GT_EQ] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_QMARK_QMARK] = ACTIONS(1888), + [anon_sym_instanceof] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1888), + [anon_sym_void] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_number] = ACTIONS(1888), + [sym_private_property_identifier] = ACTIONS(1888), + [sym_this] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_undefined] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_readonly] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_satisfies] = ACTIONS(1890), + [anon_sym_interface] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [sym__automatic_semicolon] = ACTIONS(1888), + [sym__ternary_qmark] = ACTIONS(1888), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [240] = { + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_as] = ACTIONS(1894), + [anon_sym_namespace] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_import] = ACTIONS(1894), + [anon_sym_with] = ACTIONS(1894), + [anon_sym_var] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_await] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_debugger] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_throw] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_class] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1894), + [anon_sym_QMARK_DOT] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_using] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_GT_GT_GT] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1892), + [anon_sym_STAR_STAR] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ] = ACTIONS(1894), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1892), + [anon_sym_GT_EQ] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_QMARK_QMARK] = ACTIONS(1892), + [anon_sym_instanceof] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1892), + [anon_sym_void] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_number] = ACTIONS(1892), + [sym_private_property_identifier] = ACTIONS(1892), + [sym_this] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_true] = ACTIONS(1894), + [sym_false] = ACTIONS(1894), + [sym_null] = ACTIONS(1894), + [sym_undefined] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_readonly] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(1894), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1894), + [anon_sym_private] = ACTIONS(1894), + [anon_sym_protected] = ACTIONS(1894), + [anon_sym_override] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_any] = ACTIONS(1894), + [anon_sym_number] = ACTIONS(1894), + [anon_sym_boolean] = ACTIONS(1894), + [anon_sym_string] = ACTIONS(1894), + [anon_sym_symbol] = ACTIONS(1894), + [anon_sym_object] = ACTIONS(1894), + [anon_sym_abstract] = ACTIONS(1894), + [anon_sym_satisfies] = ACTIONS(1894), + [anon_sym_interface] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [sym__automatic_semicolon] = ACTIONS(1892), + [sym__ternary_qmark] = ACTIONS(1892), + [sym_html_comment] = ACTIONS(5), + }, + [241] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_RBRACK] = ACTIONS(1913), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, - [246] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(1512), + [242] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5106), - [sym_assignment_pattern] = STATE(5020), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5106), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1412), - [sym_subscript_expression] = STATE(1412), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5106), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1412), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_RBRACK] = ACTIONS(1913), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1919), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), - [anon_sym_object] = ACTIONS(1931), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [anon_sym_extends] = ACTIONS(1900), + [anon_sym_PIPE_RBRACE] = ACTIONS(1898), + [sym__automatic_semicolon] = ACTIONS(1898), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1512), + [243] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5357), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5096), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5096), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(5096), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1414), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1939), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_mapped_type_clause] = STATE(5820), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1902), + [anon_sym_export] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1904), + [anon_sym_namespace] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1918), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1920), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_readonly] = ACTIONS(1904), + [anon_sym_get] = ACTIONS(1904), + [anon_sym_set] = ACTIONS(1904), + [anon_sym_declare] = ACTIONS(1904), + [anon_sym_public] = ACTIONS(1904), + [anon_sym_private] = ACTIONS(1904), + [anon_sym_protected] = ACTIONS(1904), + [anon_sym_override] = ACTIONS(1904), + [anon_sym_module] = ACTIONS(1904), + [anon_sym_any] = ACTIONS(1904), + [anon_sym_number] = ACTIONS(1904), + [anon_sym_boolean] = ACTIONS(1904), + [anon_sym_string] = ACTIONS(1904), + [anon_sym_symbol] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1904), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1512), + [244] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5357), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1942), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1512), + [245] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5357), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(4927), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4479), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1946), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(718), + [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), }, - [250] = { - [sym_import] = STATE(3542), + [246] = { + [sym_import] = STATE(3639), [sym_variable_declaration] = STATE(299), [sym_lexical_declaration] = STATE(299), [sym_empty_statement] = STATE(299), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2233), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1381), + [sym_expression] = STATE(2227), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4588), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4588), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5003), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5003), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), + [sym_member_expression] = STATE(1381), + [sym_subscript_expression] = STATE(1381), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4588), + [sym__destructuring_pattern] = STATE(5003), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5507), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1383), + [sym_sequence_expression] = STATE(5597), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1381), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1950), - [anon_sym_export] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_namespace] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1924), + [anon_sym_export] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_namespace] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1964), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1970), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(1952), - [anon_sym_set] = ACTIONS(1952), - [anon_sym_declare] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_protected] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_any] = ACTIONS(1952), - [anon_sym_number] = ACTIONS(1952), - [anon_sym_boolean] = ACTIONS(1952), - [anon_sym_string] = ACTIONS(1952), - [anon_sym_symbol] = ACTIONS(1952), - [anon_sym_object] = ACTIONS(1952), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1942), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1944), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_readonly] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1926), + [anon_sym_set] = ACTIONS(1926), + [anon_sym_declare] = ACTIONS(1926), + [anon_sym_public] = ACTIONS(1926), + [anon_sym_private] = ACTIONS(1926), + [anon_sym_protected] = ACTIONS(1926), + [anon_sym_override] = ACTIONS(1926), + [anon_sym_module] = ACTIONS(1926), + [anon_sym_any] = ACTIONS(1926), + [anon_sym_number] = ACTIONS(1926), + [anon_sym_boolean] = ACTIONS(1926), + [anon_sym_string] = ACTIONS(1926), + [anon_sym_symbol] = ACTIONS(1926), + [anon_sym_object] = ACTIONS(1926), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [247] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5096), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5096), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5096), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1414), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_RBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_extends] = ACTIONS(1779), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1946), + [anon_sym_export] = ACTIONS(1948), + [anon_sym_type] = ACTIONS(1948), + [anon_sym_namespace] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1920), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_readonly] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(1948), + [anon_sym_set] = ACTIONS(1948), + [anon_sym_declare] = ACTIONS(1948), + [anon_sym_public] = ACTIONS(1948), + [anon_sym_private] = ACTIONS(1948), + [anon_sym_protected] = ACTIONS(1948), + [anon_sym_override] = ACTIONS(1948), + [anon_sym_module] = ACTIONS(1948), + [anon_sym_any] = ACTIONS(1948), + [anon_sym_number] = ACTIONS(1948), + [anon_sym_boolean] = ACTIONS(1948), + [anon_sym_string] = ACTIONS(1948), + [anon_sym_symbol] = ACTIONS(1948), + [anon_sym_object] = ACTIONS(1948), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(3542), + [248] = { + [sym_import] = STATE(3639), [sym_variable_declaration] = STATE(304), [sym_lexical_declaration] = STATE(304), [sym_empty_statement] = STATE(304), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1381), + [sym_expression] = STATE(2311), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4588), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4588), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5003), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5003), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), + [sym_member_expression] = STATE(1381), + [sym_subscript_expression] = STATE(1381), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4588), + [sym__destructuring_pattern] = STATE(5003), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5861), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1383), + [sym_sequence_expression] = STATE(5849), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1381), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1950), - [anon_sym_export] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_namespace] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1924), + [anon_sym_export] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_namespace] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1964), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1970), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(1952), - [anon_sym_set] = ACTIONS(1952), - [anon_sym_declare] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_protected] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_any] = ACTIONS(1952), - [anon_sym_number] = ACTIONS(1952), - [anon_sym_boolean] = ACTIONS(1952), - [anon_sym_string] = ACTIONS(1952), - [anon_sym_symbol] = ACTIONS(1952), - [anon_sym_object] = ACTIONS(1952), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1942), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1944), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_readonly] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1926), + [anon_sym_set] = ACTIONS(1926), + [anon_sym_declare] = ACTIONS(1926), + [anon_sym_public] = ACTIONS(1926), + [anon_sym_private] = ACTIONS(1926), + [anon_sym_protected] = ACTIONS(1926), + [anon_sym_override] = ACTIONS(1926), + [anon_sym_module] = ACTIONS(1926), + [anon_sym_any] = ACTIONS(1926), + [anon_sym_number] = ACTIONS(1926), + [anon_sym_boolean] = ACTIONS(1926), + [anon_sym_string] = ACTIONS(1926), + [anon_sym_symbol] = ACTIONS(1926), + [anon_sym_object] = ACTIONS(1926), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [249] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(4617), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4428), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4629), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_RBRACK] = ACTIONS(1972), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1959), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, - [254] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [250] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [anon_sym_extends] = ACTIONS(1779), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1956), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, - [255] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [251] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5357), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1974), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_RBRACK] = ACTIONS(1974), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1512), + [252] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4648), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4649), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(718), + [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), }, - [257] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [253] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), - [anon_sym_extends] = ACTIONS(1779), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, - [258] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1512), + [254] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [anon_sym_extends] = ACTIONS(1779), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1967), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(718), + [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), }, - [259] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2192), - [sym_primary_expression] = STATE(1512), + [255] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4563), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4564), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [sym_glimmer_opening_tag] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_using] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1986), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [256] = { + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1969), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_function] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_void] = ACTIONS(1969), + [anon_sym_delete] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [sym_this] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [sym_null] = ACTIONS(1969), + [sym_undefined] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), - [anon_sym_extends] = ACTIONS(1779), + [257] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_function] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_using] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1975), + [anon_sym_void] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [sym_this] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_null] = ACTIONS(1973), + [sym_undefined] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [sym_glimmer_opening_tag] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_void] = ACTIONS(1988), - [anon_sym_delete] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1990), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [sym_this] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_undefined] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [258] = { + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(1969), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_function] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_void] = ACTIONS(1969), + [anon_sym_delete] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [sym_this] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [sym_null] = ACTIONS(1969), + [sym_undefined] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(3542), + [259] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_function] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_using] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1975), + [anon_sym_void] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [sym_this] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_null] = ACTIONS(1973), + [sym_undefined] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [260] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1457), [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [anon_sym_extends] = ACTIONS(1779), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [261] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [262] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1364), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1364), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [263] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2231), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4637), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4590), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4638), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1992), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4591), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2142), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(5115), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3921), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(279), - [sym_override_modifier] = STATE(298), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(1257), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1996), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(5116), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4595), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4638), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4596), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2000), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4639), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4571), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4285), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4554), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_accessibility_modifier] = STATE(279), + [sym_override_modifier] = STATE(298), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1989), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [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), }, [268] = { - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [sym_glimmer_opening_tag] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_using] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1986), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(2980), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4653), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4654), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [sym_glimmer_opening_tag] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_void] = ACTIONS(1988), - [anon_sym_delete] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1990), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [sym_this] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_undefined] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(2980), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(5008), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(5011), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [anon_sym_extends] = ACTIONS(1779), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3009), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5803), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4997), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4789), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4998), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4790), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), - [anon_sym_extends] = ACTIONS(1779), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_extends] = ACTIONS(1779), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(2980), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4544), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4545), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2248), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4547), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4548), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2006), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(3623), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3575), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym__type_query_member_expression] = STATE(2931), - [sym__type_query_subscript_expression] = STATE(2926), - [sym__type_query_call_expression] = STATE(3123), - [sym__type_query_instantiation_expression] = STATE(3222), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2008), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2010), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_subscript_expression] = STATE(2933), + [sym__type_query_call_expression] = STATE(3124), + [sym__type_query_instantiation_expression] = STATE(3280), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2003), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(3604), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2012), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(3566), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(2016), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(2018), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(2011), + [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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5210), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5260), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), + [sym__destructuring_pattern] = STATE(4425), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4534), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [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), }, [279] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3927), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3924), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_override_modifier] = STATE(302), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2020), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2013), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2015), + [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(800), + [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), }, [280] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(5698), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(2024), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(2017), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2028), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_import] = STATE(3604), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2023), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [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), [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_import] = STATE(3597), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3599), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2032), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2025), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2034), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2036), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2027), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2029), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [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), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2038), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2040), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2031), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2033), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(3604), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2042), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2040), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2035), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2033), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [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), [sym_html_comment] = ACTIONS(5), }, [287] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5210), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(5260), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4534), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(718), + [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), }, [288] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_override_modifier] = STATE(300), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2037), + [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(800), + [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), }, [289] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(2017), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2017), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_import] = STATE(3597), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3599), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2046), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(2036), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(2029), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_import] = STATE(3616), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(2048), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3546), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(2041), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(2018), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(3754), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3572), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2050), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(3566), + [sym_import] = STATE(3739), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(2052), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(2045), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(2018), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2054), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2036), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2029), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_import] = STATE(3604), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2056), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2058), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1926), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5433), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1905), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5245), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), - [sym__automatic_semicolon] = ACTIONS(2060), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), + [sym__automatic_semicolon] = ACTIONS(2053), [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3928), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2062), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2064), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2055), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2057), + [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), }, [299] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2175), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2124), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5642), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5500), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3920), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3914), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2059), + [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), }, [301] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(306), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2292), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5656), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5561), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4235), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4226), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2068), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2061), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2063), + [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), }, [303] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2037), + [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), }, [304] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2341), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2336), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5676), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5664), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [305] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(309), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2342), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2337), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5692), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5680), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5582), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5565), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2149), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2174), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5716), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5542), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2283), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5762), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5723), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2273), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5764), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5726), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2286), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5776), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5751), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2337), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2329), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5579), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5562), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [312] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1449), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1447), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5016), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5016), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5019), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5019), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1449), - [sym_subscript_expression] = STATE(1449), + [sym_member_expression] = STATE(1447), + [sym_subscript_expression] = STATE(1447), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5016), + [sym__destructuring_pattern] = STATE(5019), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1449), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1447), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2084), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_namespace] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1964), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2098), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_get] = ACTIONS(2086), - [anon_sym_set] = ACTIONS(2086), - [anon_sym_declare] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2086), - [anon_sym_private] = ACTIONS(2086), - [anon_sym_protected] = ACTIONS(2086), - [anon_sym_override] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(2086), - [anon_sym_number] = ACTIONS(2086), - [anon_sym_boolean] = ACTIONS(2086), - [anon_sym_string] = ACTIONS(2086), - [anon_sym_symbol] = ACTIONS(2086), - [anon_sym_object] = ACTIONS(2086), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_namespace] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2093), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_readonly] = ACTIONS(2079), + [anon_sym_get] = ACTIONS(2079), + [anon_sym_set] = ACTIONS(2079), + [anon_sym_declare] = ACTIONS(2079), + [anon_sym_public] = ACTIONS(2079), + [anon_sym_private] = ACTIONS(2079), + [anon_sym_protected] = ACTIONS(2079), + [anon_sym_override] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_any] = ACTIONS(2079), + [anon_sym_number] = ACTIONS(2079), + [anon_sym_boolean] = ACTIONS(2079), + [anon_sym_string] = ACTIONS(2079), + [anon_sym_symbol] = ACTIONS(2079), + [anon_sym_object] = ACTIONS(2079), [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2269), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5724), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5687), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [314] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2300), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5625), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5511), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [315] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [316] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2341), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5518), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5620), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [317] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5880), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5513), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [318] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2325), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2190), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2140), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [319] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2144), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5729), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5498), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [320] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2297), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5487), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5643), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [321] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2205), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2262), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2155), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [322] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2298), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5513), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5722), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [323] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2147), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2121), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5580), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5736), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2235), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2198), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2158), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2238), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2208), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2159), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2239), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2204), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2160), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [327] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2225), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5860), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5835), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [328] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2299), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5600), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5506), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2262), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1886), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [331] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2214), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2166), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5639), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5487), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [332] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [333] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1913), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [334] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5723), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2110), - [anon_sym_export] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_namespace] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2118), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_readonly] = ACTIONS(2112), - [anon_sym_get] = ACTIONS(2112), - [anon_sym_set] = ACTIONS(2112), - [anon_sym_declare] = ACTIONS(2112), - [anon_sym_public] = ACTIONS(2112), - [anon_sym_private] = ACTIONS(2112), - [anon_sym_protected] = ACTIONS(2112), - [anon_sym_override] = ACTIONS(2112), - [anon_sym_module] = ACTIONS(2112), - [anon_sym_any] = ACTIONS(2112), - [anon_sym_number] = ACTIONS(2112), - [anon_sym_boolean] = ACTIONS(2112), - [anon_sym_string] = ACTIONS(2112), - [anon_sym_symbol] = ACTIONS(2112), - [anon_sym_object] = ACTIONS(2112), + [sym_mapped_type_clause] = STATE(5820), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, [335] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5556), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5575), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [336] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2235), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2198), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1815), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [337] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1742), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [338] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1745), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [340] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [341] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [342] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2238), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [343] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2239), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1819), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2204), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1923), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5163), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5284), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [346] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2296), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2280), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2325), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2195), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [348] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2121), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2262), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2235), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2198), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1858), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [350] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2238), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2201), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1859), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1857), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [351] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2239), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2204), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1858), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [352] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [353] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5649), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2120), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [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_mapped_type_clause] = STATE(5605), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2113), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2115), + [anon_sym_readonly] = ACTIONS(2115), + [anon_sym_get] = ACTIONS(2115), + [anon_sym_set] = ACTIONS(2115), + [anon_sym_declare] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(2115), + [anon_sym_private] = ACTIONS(2115), + [anon_sym_protected] = ACTIONS(2115), + [anon_sym_override] = ACTIONS(2115), + [anon_sym_module] = ACTIONS(2115), + [anon_sym_any] = ACTIONS(2115), + [anon_sym_number] = ACTIONS(2115), + [anon_sym_boolean] = ACTIONS(2115), + [anon_sym_string] = ACTIONS(2115), + [anon_sym_symbol] = ACTIONS(2115), + [anon_sym_object] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, [354] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2554), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2528), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [355] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4888), + [sym__extends_clause_single] = STATE(4894), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [356] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [357] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2544), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [358] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2588), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2325), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [360] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [361] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2296), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2280), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [362] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5527), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5837), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [363] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2081), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [364] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2087), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2085), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [365] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2100), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [366] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2102), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2100), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [367] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2103), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2101), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [368] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2102), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [369] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4461), + [sym__extends_clause_single] = STATE(4462), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [370] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [371] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [372] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [373] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2365), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [374] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2385), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [375] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [376] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [377] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [378] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2409), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [381] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [382] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [383] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2495), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [384] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [386] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [387] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [388] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1933), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1932), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [389] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2139), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2285), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5871), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5730), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [390] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2143), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5615), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5550), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [391] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5655), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5631), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [392] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2328), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5568), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_sequence_expression] = STATE(5551), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [393] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2319), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5796), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_sequence_expression] = STATE(5640), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [394] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2296), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2183), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2280), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2132), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [395] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2594), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [396] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2592), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [397] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [398] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1892), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1895), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [400] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2489), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [401] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1897), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1896), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [402] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [403] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [404] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1899), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [405] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1900), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [406] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1901), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [407] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1903), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [408] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1904), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [409] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1906), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [410] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [411] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [412] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [413] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1944), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [414] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2005), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), + [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_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), + [sym_html_comment] = ACTIONS(5), + }, + [415] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1946), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(2007), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [416] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1959), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [417] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [418] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2125), + [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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [419] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2132), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [420] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1946), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [421] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1947), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [422] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2041), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [423] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(2170), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2353), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [424] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [425] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1889), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1923), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [426] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2604), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [427] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1834), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(3513), + [429] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1896), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1894), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [430] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2187), - [sym_primary_expression] = STATE(1512), + [431] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2135), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1802), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [432] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1800), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(2354), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [433] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2224), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [434] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1819), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [435] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(1512), + [436] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [437] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [438] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2136), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2173), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [439] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [440] = { + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(1512), + [442] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2359), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [443] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3727), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3727), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3654), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3654), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1281), - [sym_subscript_expression] = STATE(1281), + [sym_member_expression] = STATE(1278), + [sym_subscript_expression] = STATE(1278), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3727), + [sym__destructuring_pattern] = STATE(3654), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1281), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1278), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2146), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2185), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_readonly] = ACTIONS(2177), + [anon_sym_get] = ACTIONS(2177), + [anon_sym_set] = ACTIONS(2177), + [anon_sym_declare] = ACTIONS(2177), + [anon_sym_public] = ACTIONS(2177), + [anon_sym_private] = ACTIONS(2177), + [anon_sym_protected] = ACTIONS(2177), + [anon_sym_override] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_any] = ACTIONS(2177), + [anon_sym_number] = ACTIONS(2177), + [anon_sym_boolean] = ACTIONS(2177), + [anon_sym_string] = ACTIONS(2177), + [anon_sym_symbol] = ACTIONS(2177), + [anon_sym_object] = ACTIONS(2177), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [444] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2150), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [445] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2150), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2187), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1870), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [446] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1512), + [447] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1512), + [448] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [449] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1469), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [450] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1471), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5578), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5578), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5758), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5758), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1469), - [sym_subscript_expression] = STATE(1469), + [sym_member_expression] = STATE(1471), + [sym_subscript_expression] = STATE(1471), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5578), + [sym__destructuring_pattern] = STATE(5758), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1469), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1471), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2154), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2162), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2199), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2201), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3513), + [451] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2181), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [452] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2131), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [453] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2184), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [454] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2133), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2185), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [455] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2136), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2189), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [456] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2139), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [457] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2191), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [458] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2581), - [sym_primary_expression] = STATE(1512), + [459] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2588), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [sym_html_comment] = ACTIONS(5), - }, - [458] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2193), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2195), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [460] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2145), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [462] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2147), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2200), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2148), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [465] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2149), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [466] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2202), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2150), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [467] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2203), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2151), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2204), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2152), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [469] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2206), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2153), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [470] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [sym_html_comment] = ACTIONS(5), + }, + [471] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2156), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [sym_html_comment] = ACTIONS(5), + }, + [472] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [473] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [474] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [475] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2210), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [476] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2161), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2211), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [477] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2162), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [478] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2136), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2173), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [479] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1512), + [480] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [481] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [482] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1512), + [483] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1741), - [sym_primary_expression] = STATE(1512), + [484] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(1512), + [485] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1467), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [486] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1468), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5830), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5830), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5658), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5658), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1467), - [sym_subscript_expression] = STATE(1467), + [sym_member_expression] = STATE(1468), + [sym_subscript_expression] = STATE(1468), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5830), + [sym__destructuring_pattern] = STATE(5658), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1467), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1468), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_namespace] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2174), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2203), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2213), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1744), - [sym_primary_expression] = STATE(1512), + [487] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1745), - [sym_primary_expression] = STATE(1512), + [488] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1512), + [489] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1746), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1512), + [490] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1747), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1512), + [491] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1512), + [492] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1748), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1512), + [493] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1749), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1512), + [494] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1512), + [495] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1751), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1512), + [496] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1512), + [497] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1512), + [498] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1754), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1512), + [499] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1755), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1512), + [500] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1512), + [501] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1512), + [502] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(1512), + [503] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [504] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1512), + [505] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1512), + [506] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1764), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [507] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2132), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1512), + [508] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [509] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1512), + [510] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [511] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [512] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1466), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5802), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5802), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5708), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), + [sym_member_expression] = STATE(1466), + [sym_subscript_expression] = STATE(1466), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5802), + [sym__destructuring_pattern] = STATE(5708), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1464), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1466), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2180), - [anon_sym_type] = ACTIONS(2180), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2186), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_readonly] = ACTIONS(2180), - [anon_sym_get] = ACTIONS(2180), - [anon_sym_set] = ACTIONS(2180), - [anon_sym_declare] = ACTIONS(2180), - [anon_sym_public] = ACTIONS(2180), - [anon_sym_private] = ACTIONS(2180), - [anon_sym_protected] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(2180), - [anon_sym_module] = ACTIONS(2180), - [anon_sym_any] = ACTIONS(2180), - [anon_sym_number] = ACTIONS(2180), - [anon_sym_boolean] = ACTIONS(2180), - [anon_sym_string] = ACTIONS(2180), - [anon_sym_symbol] = ACTIONS(2180), - [anon_sym_object] = ACTIONS(2180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2225), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_readonly] = ACTIONS(2217), + [anon_sym_get] = ACTIONS(2217), + [anon_sym_set] = ACTIONS(2217), + [anon_sym_declare] = ACTIONS(2217), + [anon_sym_public] = ACTIONS(2217), + [anon_sym_private] = ACTIONS(2217), + [anon_sym_protected] = ACTIONS(2217), + [anon_sym_override] = ACTIONS(2217), + [anon_sym_module] = ACTIONS(2217), + [anon_sym_any] = ACTIONS(2217), + [anon_sym_number] = ACTIONS(2217), + [anon_sym_boolean] = ACTIONS(2217), + [anon_sym_string] = ACTIONS(2217), + [anon_sym_symbol] = ACTIONS(2217), + [anon_sym_object] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3513), + [513] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1835), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [514] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3513), + [515] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3513), + [516] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3513), + [517] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3513), + [518] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(1512), + [519] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(3513), + [520] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(3513), + [521] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3513), + [522] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(3513), + [523] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(3513), + [524] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(3513), + [525] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [526] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(3513), + [527] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(3513), + [528] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(3513), + [529] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1852), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(3513), + [530] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(3513), + [531] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1857), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [532] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(3513), + [533] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1859), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(3513), + [534] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1862), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [535] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2136), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2173), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [536] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(3513), + [537] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [sym_html_comment] = ACTIONS(5), - }, - [536] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), - [sym_html_comment] = ACTIONS(5), - }, - [537] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [538] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2555), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2557), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2529), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2566), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2534), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2568), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2535), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [547] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2569), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [548] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2570), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [549] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2571), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [551] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2540), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [552] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [553] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2542), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [555] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [556] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2132), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [sym_html_comment] = ACTIONS(5), - }, - [557] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), + [557] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [558] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1364), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1364), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, [560] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [sym_html_comment] = ACTIONS(5), - }, - [561] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1472), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [561] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2578), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5878), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5878), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1472), - [sym_subscript_expression] = STATE(1472), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5878), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1472), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(822), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [562] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [563] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2553), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [564] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1465), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1465), + [sym_subscript_expression] = STATE(1465), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5867), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1465), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2237), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [565] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2084), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2587), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), + [sym_object] = STATE(1687), [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), + [sym_array] = STATE(1687), [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [566] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2085), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2080), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [567] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2086), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [568] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2088), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [569] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2089), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2084), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [570] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2090), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2086), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [571] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2091), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2087), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [572] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2092), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2088), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [573] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2093), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [574] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2094), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2090), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [575] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2091), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2096), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2092), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2097), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2093), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [578] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2098), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [579] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2099), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2095), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [580] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2101), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2096), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [581] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2105), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2097), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2099), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [583] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2103), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3009), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5803), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [sym_html_comment] = ACTIONS(5), + }, + [584] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2104), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3009), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5803), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [sym_html_comment] = ACTIONS(5), + }, + [585] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [586] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2107), - [sym_primary_expression] = STATE(1512), + [587] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [588] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2109), - [sym_primary_expression] = STATE(1512), + [589] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2107), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1512), + [590] = { + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [591] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1470), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [592] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1464), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5621), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5621), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5615), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5615), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1470), - [sym_subscript_expression] = STATE(1470), + [sym_member_expression] = STATE(1464), + [sym_subscript_expression] = STATE(1464), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5621), + [sym__destructuring_pattern] = STATE(5615), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1470), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1464), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2202), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2247), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2249), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(1512), + [593] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2589), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(1512), + [594] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1512), + [595] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1512), + [596] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1512), + [597] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1512), + [598] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2371), - [sym_primary_expression] = STATE(1512), + [599] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(1512), + [600] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1512), + [601] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2374), - [sym_primary_expression] = STATE(1512), + [602] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2375), - [sym_primary_expression] = STATE(1512), + [603] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2376), - [sym_primary_expression] = STATE(1512), + [604] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2377), - [sym_primary_expression] = STATE(1512), + [605] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2378), - [sym_primary_expression] = STATE(1512), + [606] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(1512), + [607] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2360), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1512), + [608] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(1512), + [609] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2383), - [sym_primary_expression] = STATE(1512), + [610] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2364), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [611] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(1512), + [612] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1512), + [613] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2388), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [614] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [615] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1465), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5797), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5797), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1465), - [sym_subscript_expression] = STATE(1465), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5797), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1465), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2220), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [616] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2572), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [617] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2391), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [618] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1469), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5783), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5783), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1469), + [sym_subscript_expression] = STATE(1469), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5783), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1469), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2261), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), [sym_html_comment] = ACTIONS(5), }, [619] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2590), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [620] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [621] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2397), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [622] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2398), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [623] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2399), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [624] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [625] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2401), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [626] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [627] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2403), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2396), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [628] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2399), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [629] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [630] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [631] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2407), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [632] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [633] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1920), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [634] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [635] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1975), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [636] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [637] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1976), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1874), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), - [sym_html_comment] = ACTIONS(5), - }, - [641] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2459), - [sym_primary_expression] = STATE(1512), + [641] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1466), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [642] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5501), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5501), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1466), - [sym_subscript_expression] = STATE(1466), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5501), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1466), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2236), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [643] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1872), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), + [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_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [644] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [645] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [646] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1470), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5489), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5489), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1470), + [sym_subscript_expression] = STATE(1470), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5489), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1470), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2273), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_get] = ACTIONS(2265), + [anon_sym_set] = ACTIONS(2265), + [anon_sym_declare] = ACTIONS(2265), + [anon_sym_public] = ACTIONS(2265), + [anon_sym_private] = ACTIONS(2265), + [anon_sym_protected] = ACTIONS(2265), + [anon_sym_override] = ACTIONS(2265), + [anon_sym_module] = ACTIONS(2265), + [anon_sym_any] = ACTIONS(2265), + [anon_sym_number] = ACTIONS(2265), + [anon_sym_boolean] = ACTIONS(2265), + [anon_sym_string] = ACTIONS(2265), + [anon_sym_symbol] = ACTIONS(2265), + [anon_sym_object] = ACTIONS(2265), [sym_html_comment] = ACTIONS(5), }, [647] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [648] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [649] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [650] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [651] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [652] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [653] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [654] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [655] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [656] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [657] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2496), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [658] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [659] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [660] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), - [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), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_object] = ACTIONS(1443), - [sym_html_comment] = ACTIONS(5), - }, - [662] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2500), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1512), + [662] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2501), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [664] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(1512), + [663] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), + [sym_html_comment] = ACTIONS(5), + }, + [664] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), + [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_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = 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(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1468), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5553), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5553), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1468), - [sym_subscript_expression] = STATE(1468), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5553), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1468), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_readonly] = ACTIONS(2240), - [anon_sym_get] = ACTIONS(2240), - [anon_sym_set] = ACTIONS(2240), - [anon_sym_declare] = ACTIONS(2240), - [anon_sym_public] = ACTIONS(2240), - [anon_sym_private] = ACTIONS(2240), - [anon_sym_protected] = ACTIONS(2240), - [anon_sym_override] = ACTIONS(2240), - [anon_sym_module] = ACTIONS(2240), - [anon_sym_any] = ACTIONS(2240), - [anon_sym_number] = ACTIONS(2240), - [anon_sym_boolean] = ACTIONS(2240), - [anon_sym_string] = ACTIONS(2240), - [anon_sym_symbol] = ACTIONS(2240), - [anon_sym_object] = ACTIONS(2240), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2579), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), + [sym_object] = STATE(1687), [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), + [sym_array] = STATE(1687), [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1473), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5541), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5541), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1473), + [sym_subscript_expression] = STATE(1473), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3013), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5541), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1473), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2275), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2285), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_readonly] = ACTIONS(2277), + [anon_sym_get] = ACTIONS(2277), + [anon_sym_set] = ACTIONS(2277), + [anon_sym_declare] = ACTIONS(2277), + [anon_sym_public] = ACTIONS(2277), + [anon_sym_private] = ACTIONS(2277), + [anon_sym_protected] = ACTIONS(2277), + [anon_sym_override] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_any] = ACTIONS(2277), + [anon_sym_number] = ACTIONS(2277), + [anon_sym_boolean] = ACTIONS(2277), + [anon_sym_string] = ACTIONS(2277), + [anon_sym_symbol] = ACTIONS(2277), + [anon_sym_object] = ACTIONS(2277), + [sym_html_comment] = ACTIONS(5), + }, + [671] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3029), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5815), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [672] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5698), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [sym_html_comment] = ACTIONS(5), + }, + [673] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [674] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [675] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1512), + [676] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1512), + [677] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4302), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4302), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4276), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1351), - [sym_subscript_expression] = STATE(1351), + [sym_member_expression] = STATE(1363), + [sym_subscript_expression] = STATE(1363), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4302), + [sym__destructuring_pattern] = STATE(4276), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1351), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1363), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_type] = ACTIONS(1307), - [anon_sym_namespace] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_get] = ACTIONS(1307), - [anon_sym_set] = ACTIONS(1307), - [anon_sym_declare] = ACTIONS(1307), - [anon_sym_public] = ACTIONS(1307), - [anon_sym_private] = ACTIONS(1307), - [anon_sym_protected] = ACTIONS(1307), - [anon_sym_override] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_any] = ACTIONS(1307), - [anon_sym_number] = ACTIONS(1307), - [anon_sym_boolean] = ACTIONS(1307), - [anon_sym_string] = ACTIONS(1307), - [anon_sym_symbol] = ACTIONS(1307), - [anon_sym_object] = ACTIONS(1307), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2287), + [anon_sym_export] = ACTIONS(1216), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_namespace] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2291), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_readonly] = ACTIONS(1216), + [anon_sym_get] = ACTIONS(1216), + [anon_sym_set] = ACTIONS(1216), + [anon_sym_declare] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_protected] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_module] = ACTIONS(1216), + [anon_sym_any] = ACTIONS(1216), + [anon_sym_number] = ACTIONS(1216), + [anon_sym_boolean] = ACTIONS(1216), + [anon_sym_string] = ACTIONS(1216), + [anon_sym_symbol] = ACTIONS(1216), + [anon_sym_object] = ACTIONS(1216), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1512), + [678] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_import] = STATE(3513), + [679] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_import] = STATE(3513), + [680] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2111), - [sym_primary_expression] = STATE(1512), + [681] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2109), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [682] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(1512), + [683] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2407), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [681] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(1512), + [684] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [682] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1471), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [685] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1467), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5622), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5622), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5610), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5610), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1471), - [sym_subscript_expression] = STATE(1471), + [sym_member_expression] = STATE(1467), + [sym_subscript_expression] = STATE(1467), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5622), + [sym__destructuring_pattern] = STATE(5610), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1471), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1467), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2256), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2295), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2303), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_readonly] = ACTIONS(2295), + [anon_sym_get] = ACTIONS(2295), + [anon_sym_set] = ACTIONS(2295), + [anon_sym_declare] = ACTIONS(2295), + [anon_sym_public] = ACTIONS(2295), + [anon_sym_private] = ACTIONS(2295), + [anon_sym_protected] = ACTIONS(2295), + [anon_sym_override] = ACTIONS(2295), + [anon_sym_module] = ACTIONS(2295), + [anon_sym_any] = ACTIONS(2295), + [anon_sym_number] = ACTIONS(2295), + [anon_sym_boolean] = ACTIONS(2295), + [anon_sym_string] = ACTIONS(2295), + [anon_sym_symbol] = ACTIONS(2295), + [anon_sym_object] = ACTIONS(2295), [sym_html_comment] = ACTIONS(5), }, - [683] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(1512), + [686] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [684] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1473), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), + [687] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5800), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5800), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5788), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5788), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1473), - [sym_subscript_expression] = STATE(1473), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5800), + [sym__destructuring_pattern] = STATE(5788), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1473), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1472), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2270), - [anon_sym_type] = ACTIONS(2270), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2270), - [anon_sym_readonly] = ACTIONS(2270), - [anon_sym_get] = ACTIONS(2270), - [anon_sym_set] = ACTIONS(2270), - [anon_sym_declare] = ACTIONS(2270), - [anon_sym_public] = ACTIONS(2270), - [anon_sym_private] = ACTIONS(2270), - [anon_sym_protected] = ACTIONS(2270), - [anon_sym_override] = ACTIONS(2270), - [anon_sym_module] = ACTIONS(2270), - [anon_sym_any] = ACTIONS(2270), - [anon_sym_number] = ACTIONS(2270), - [anon_sym_boolean] = ACTIONS(2270), - [anon_sym_string] = ACTIONS(2270), - [anon_sym_symbol] = ACTIONS(2270), - [anon_sym_object] = ACTIONS(2270), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2305), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [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(2315), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), [sym_html_comment] = ACTIONS(5), }, - [685] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(1512), + [688] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_import] = STATE(3513), + [689] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [sym_html_comment] = ACTIONS(5), - }, - [687] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [688] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [689] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym__call_signature] = STATE(5619), - [sym_string] = STATE(3797), - [sym_formal_parameters] = STATE(3895), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_type_parameters] = STATE(5348), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2324), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_readonly] = ACTIONS(2326), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2326), - [anon_sym_public] = ACTIONS(2326), - [anon_sym_private] = ACTIONS(2326), - [anon_sym_protected] = ACTIONS(2326), - [anon_sym_override] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_any] = ACTIONS(2326), - [anon_sym_number] = ACTIONS(2326), - [anon_sym_boolean] = ACTIONS(2326), - [anon_sym_string] = ACTIONS(2326), - [anon_sym_symbol] = ACTIONS(2326), - [anon_sym_object] = ACTIONS(2326), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5693), + [sym_string] = STATE(3816), + [sym_formal_parameters] = STATE(3806), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_type_parameters] = STATE(5328), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2333), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_get] = ACTIONS(2339), + [anon_sym_set] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_private] = ACTIONS(2319), + [anon_sym_protected] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_any] = ACTIONS(2319), + [anon_sym_number] = ACTIONS(2319), + [anon_sym_boolean] = ACTIONS(2319), + [anon_sym_string] = ACTIONS(2319), + [anon_sym_symbol] = ACTIONS(2319), + [anon_sym_object] = ACTIONS(2319), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [691] = { - [sym__call_signature] = STATE(5619), - [sym_string] = STATE(3797), - [sym_formal_parameters] = STATE(3895), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_type_parameters] = STATE(5348), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2324), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_readonly] = ACTIONS(2326), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2326), - [anon_sym_public] = ACTIONS(2326), - [anon_sym_private] = ACTIONS(2326), - [anon_sym_protected] = ACTIONS(2326), - [anon_sym_override] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_any] = ACTIONS(2326), - [anon_sym_number] = ACTIONS(2326), - [anon_sym_boolean] = ACTIONS(2326), - [anon_sym_string] = ACTIONS(2326), - [anon_sym_symbol] = ACTIONS(2326), - [anon_sym_object] = ACTIONS(2326), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5693), + [sym_string] = STATE(3816), + [sym_formal_parameters] = STATE(3806), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_type_parameters] = STATE(5328), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2333), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_get] = ACTIONS(2339), + [anon_sym_set] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_private] = ACTIONS(2319), + [anon_sym_protected] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_any] = ACTIONS(2319), + [anon_sym_number] = ACTIONS(2319), + [anon_sym_boolean] = ACTIONS(2319), + [anon_sym_string] = ACTIONS(2319), + [anon_sym_symbol] = ACTIONS(2319), + [anon_sym_object] = ACTIONS(2319), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [692] = { - [sym__call_signature] = STATE(5619), - [sym_string] = STATE(3797), - [sym_formal_parameters] = STATE(3895), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_type_parameters] = STATE(5348), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2324), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_readonly] = ACTIONS(2326), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2326), - [anon_sym_public] = ACTIONS(2326), - [anon_sym_private] = ACTIONS(2326), - [anon_sym_protected] = ACTIONS(2326), - [anon_sym_override] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_any] = ACTIONS(2326), - [anon_sym_number] = ACTIONS(2326), - [anon_sym_boolean] = ACTIONS(2326), - [anon_sym_string] = ACTIONS(2326), - [anon_sym_symbol] = ACTIONS(2326), - [anon_sym_object] = ACTIONS(2326), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5693), + [sym_string] = STATE(3816), + [sym_formal_parameters] = STATE(3806), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_type_parameters] = STATE(5328), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2333), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_get] = ACTIONS(2339), + [anon_sym_set] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_private] = ACTIONS(2319), + [anon_sym_protected] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_any] = ACTIONS(2319), + [anon_sym_number] = ACTIONS(2319), + [anon_sym_boolean] = ACTIONS(2319), + [anon_sym_string] = ACTIONS(2319), + [anon_sym_symbol] = ACTIONS(2319), + [anon_sym_object] = ACTIONS(2319), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [693] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [694] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [695] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_override_modifier] = STATE(2805), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2366), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_override_modifier] = STATE(2813), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2355), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_override_modifier] = STATE(2805), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2366), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_override_modifier] = STATE(2813), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2355), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_override_modifier] = STATE(2805), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2366), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_override_modifier] = STATE(2813), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2355), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [701] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [702] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_typeof] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_from] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_debugger] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1921), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [sym_glimmer_opening_tag] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_function] = ACTIONS(1923), - [anon_sym_EQ_GT] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_using] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_delete] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_number] = ACTIONS(1921), - [sym_private_property_identifier] = ACTIONS(1921), - [sym_this] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_null] = ACTIONS(1923), - [sym_undefined] = ACTIONS(1923), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_object] = ACTIONS(1923), - [anon_sym_abstract] = ACTIONS(1923), - [anon_sym_extends] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [706] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1927), - [anon_sym_namespace] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_typeof] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_from] = ACTIONS(1927), - [anon_sym_with] = ACTIONS(1927), - [anon_sym_var] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_switch] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_debugger] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_throw] = ACTIONS(1927), - [anon_sym_COLON] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_RBRACK] = ACTIONS(1925), - [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_function] = ACTIONS(1927), - [anon_sym_EQ_GT] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_using] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_number] = ACTIONS(1925), - [sym_private_property_identifier] = ACTIONS(1925), - [sym_this] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [sym_null] = ACTIONS(1927), - [sym_undefined] = ACTIONS(1927), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1927), - [anon_sym_set] = ACTIONS(1927), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1927), - [anon_sym_private] = ACTIONS(1927), - [anon_sym_protected] = ACTIONS(1927), - [anon_sym_override] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_any] = ACTIONS(1927), - [anon_sym_number] = ACTIONS(1927), - [anon_sym_boolean] = ACTIONS(1927), - [anon_sym_string] = ACTIONS(1927), - [anon_sym_symbol] = ACTIONS(1927), - [anon_sym_object] = ACTIONS(1927), - [anon_sym_abstract] = ACTIONS(1927), - [anon_sym_extends] = ACTIONS(1927), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [708] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_export] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_namespace] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_typeof] = ACTIONS(1728), + [anon_sym_import] = ACTIONS(1728), + [anon_sym_from] = ACTIONS(1728), + [anon_sym_with] = ACTIONS(1728), + [anon_sym_var] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_await] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_debugger] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_throw] = ACTIONS(1728), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_class] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_EQ_GT] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1728), + [anon_sym_using] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1726), + [sym_number] = ACTIONS(1726), + [sym_private_property_identifier] = ACTIONS(1726), + [sym_this] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_readonly] = ACTIONS(1728), + [anon_sym_get] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_QMARK] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1728), + [anon_sym_public] = ACTIONS(1728), + [anon_sym_private] = ACTIONS(1728), + [anon_sym_protected] = ACTIONS(1728), + [anon_sym_override] = ACTIONS(1728), + [anon_sym_module] = ACTIONS(1728), + [anon_sym_any] = ACTIONS(1728), + [anon_sym_number] = ACTIONS(1728), + [anon_sym_boolean] = ACTIONS(1728), + [anon_sym_string] = ACTIONS(1728), + [anon_sym_symbol] = ACTIONS(1728), + [anon_sym_object] = ACTIONS(1728), + [anon_sym_abstract] = ACTIONS(1728), + [anon_sym_extends] = ACTIONS(1728), + [anon_sym_interface] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), [sym_html_comment] = ACTIONS(5), }, [709] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_export] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_namespace] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym_import] = ACTIONS(1756), + [anon_sym_from] = ACTIONS(1756), + [anon_sym_with] = ACTIONS(1756), + [anon_sym_var] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_await] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_debugger] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_throw] = ACTIONS(1756), + [anon_sym_COLON] = ACTIONS(1754), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(1756), + [anon_sym_EQ_GT] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_using] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_void] = ACTIONS(1756), + [anon_sym_delete] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_number] = ACTIONS(1754), + [sym_private_property_identifier] = ACTIONS(1754), + [sym_this] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_readonly] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1756), + [anon_sym_QMARK] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1756), + [anon_sym_public] = ACTIONS(1756), + [anon_sym_private] = ACTIONS(1756), + [anon_sym_protected] = ACTIONS(1756), + [anon_sym_override] = ACTIONS(1756), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_any] = ACTIONS(1756), + [anon_sym_number] = ACTIONS(1756), + [anon_sym_boolean] = ACTIONS(1756), + [anon_sym_string] = ACTIONS(1756), + [anon_sym_symbol] = ACTIONS(1756), + [anon_sym_object] = ACTIONS(1756), + [anon_sym_abstract] = ACTIONS(1756), + [anon_sym_extends] = ACTIONS(1756), + [anon_sym_interface] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), [sym_html_comment] = ACTIONS(5), }, [710] = { - [ts_builtin_sym_end] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2372), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2372), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_COLON] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_RBRACK] = ACTIONS(2372), - [sym_glimmer_opening_tag] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [anon_sym_SQUOTE] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_EQ_GT] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2372), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2372), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2372), - [sym_number] = ACTIONS(2372), - [sym_private_property_identifier] = ACTIONS(2372), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_QMARK] = ACTIONS(2372), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_extends] = ACTIONS(2374), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [711] = { - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2378), - [anon_sym_export] = ACTIONS(2378), - [anon_sym_default] = ACTIONS(2378), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(2378), - [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_typeof] = ACTIONS(2378), - [anon_sym_import] = ACTIONS(2378), - [anon_sym_with] = ACTIONS(2378), - [anon_sym_var] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_switch] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_RPAREN] = ACTIONS(2376), - [anon_sym_await] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_debugger] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_throw] = ACTIONS(2378), - [anon_sym_COLON] = ACTIONS(2376), - [anon_sym_case] = ACTIONS(2378), - [anon_sym_yield] = ACTIONS(2378), - [anon_sym_LBRACK] = ACTIONS(2376), - [anon_sym_RBRACK] = ACTIONS(2376), - [sym_glimmer_opening_tag] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [anon_sym_class] = ACTIONS(2378), - [anon_sym_async] = ACTIONS(2378), - [anon_sym_function] = ACTIONS(2378), - [anon_sym_EQ_GT] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_using] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2378), - [anon_sym_DASH] = ACTIONS(2378), - [anon_sym_SLASH] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_void] = ACTIONS(2378), - [anon_sym_delete] = ACTIONS(2378), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2376), - [sym_number] = ACTIONS(2376), - [sym_private_property_identifier] = ACTIONS(2376), - [sym_this] = ACTIONS(2378), - [sym_super] = ACTIONS(2378), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_undefined] = ACTIONS(2378), - [anon_sym_AT] = ACTIONS(2376), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_readonly] = ACTIONS(2378), - [anon_sym_get] = ACTIONS(2378), - [anon_sym_set] = ACTIONS(2378), - [anon_sym_QMARK] = ACTIONS(2376), - [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_abstract] = ACTIONS(2378), - [anon_sym_extends] = ACTIONS(2378), - [anon_sym_interface] = ACTIONS(2378), - [anon_sym_enum] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_EQ] = ACTIONS(2363), + [anon_sym_namespace] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_typeof] = ACTIONS(2363), + [anon_sym_import] = ACTIONS(2363), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_var] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_switch] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_debugger] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_throw] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_RBRACK] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_EQ_GT] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_using] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_SLASH] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_GT] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_void] = ACTIONS(2363), + [anon_sym_delete] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2361), + [sym_number] = ACTIONS(2361), + [sym_private_property_identifier] = ACTIONS(2361), + [sym_this] = ACTIONS(2363), + [sym_super] = ACTIONS(2363), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_null] = ACTIONS(2363), + [sym_undefined] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_readonly] = ACTIONS(2363), + [anon_sym_get] = ACTIONS(2363), + [anon_sym_set] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2361), + [anon_sym_declare] = ACTIONS(2363), + [anon_sym_public] = ACTIONS(2363), + [anon_sym_private] = ACTIONS(2363), + [anon_sym_protected] = ACTIONS(2363), + [anon_sym_override] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_any] = ACTIONS(2363), + [anon_sym_number] = ACTIONS(2363), + [anon_sym_boolean] = ACTIONS(2363), + [anon_sym_string] = ACTIONS(2363), + [anon_sym_symbol] = ACTIONS(2363), + [anon_sym_object] = ACTIONS(2363), + [anon_sym_abstract] = ACTIONS(2363), + [anon_sym_extends] = ACTIONS(2363), + [anon_sym_interface] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), [sym_html_comment] = ACTIONS(5), }, [712] = { - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2382), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2380), - [anon_sym_COMMA] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(2380), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_COLON] = ACTIONS(2380), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_RBRACK] = ACTIONS(2380), - [sym_glimmer_opening_tag] = ACTIONS(2380), - [anon_sym_GT] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_EQ_GT] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2380), - [anon_sym_DASH_DASH] = ACTIONS(2380), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2380), - [sym_number] = ACTIONS(2380), - [sym_private_property_identifier] = ACTIONS(2380), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_QMARK] = ACTIONS(2380), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_extends] = ACTIONS(2382), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_export] = ACTIONS(2367), + [anon_sym_default] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_EQ] = ACTIONS(2367), + [anon_sym_namespace] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_COMMA] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_typeof] = ACTIONS(2367), + [anon_sym_import] = ACTIONS(2367), + [anon_sym_with] = ACTIONS(2367), + [anon_sym_var] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_else] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_switch] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_debugger] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2367), + [anon_sym_COLON] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_RBRACK] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_function] = ACTIONS(2367), + [anon_sym_EQ_GT] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2367), + [anon_sym_using] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_SLASH] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_GT] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_void] = ACTIONS(2367), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2365), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2365), + [sym_number] = ACTIONS(2365), + [sym_private_property_identifier] = ACTIONS(2365), + [sym_this] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_null] = ACTIONS(2367), + [sym_undefined] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2367), + [anon_sym_readonly] = ACTIONS(2367), + [anon_sym_get] = ACTIONS(2367), + [anon_sym_set] = ACTIONS(2367), + [anon_sym_QMARK] = ACTIONS(2365), + [anon_sym_declare] = ACTIONS(2367), + [anon_sym_public] = ACTIONS(2367), + [anon_sym_private] = ACTIONS(2367), + [anon_sym_protected] = ACTIONS(2367), + [anon_sym_override] = ACTIONS(2367), + [anon_sym_module] = ACTIONS(2367), + [anon_sym_any] = ACTIONS(2367), + [anon_sym_number] = ACTIONS(2367), + [anon_sym_boolean] = ACTIONS(2367), + [anon_sym_string] = ACTIONS(2367), + [anon_sym_symbol] = ACTIONS(2367), + [anon_sym_object] = ACTIONS(2367), + [anon_sym_abstract] = ACTIONS(2367), + [anon_sym_extends] = ACTIONS(2367), + [anon_sym_interface] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), [sym_html_comment] = ACTIONS(5), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(2384), - [sym_identifier] = ACTIONS(2386), - [anon_sym_export] = ACTIONS(2386), - [anon_sym_default] = ACTIONS(2386), - [anon_sym_type] = ACTIONS(2386), - [anon_sym_EQ] = ACTIONS(2386), - [anon_sym_namespace] = ACTIONS(2386), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(2386), - [anon_sym_import] = ACTIONS(2386), - [anon_sym_with] = ACTIONS(2386), - [anon_sym_var] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_switch] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_RPAREN] = ACTIONS(2384), - [anon_sym_await] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_do] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_debugger] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_throw] = ACTIONS(2386), - [anon_sym_COLON] = ACTIONS(2384), - [anon_sym_case] = ACTIONS(2386), - [anon_sym_yield] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_RBRACK] = ACTIONS(2384), - [sym_glimmer_opening_tag] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2386), - [anon_sym_async] = ACTIONS(2386), - [anon_sym_function] = ACTIONS(2386), - [anon_sym_EQ_GT] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2386), - [anon_sym_using] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2386), - [anon_sym_LT] = ACTIONS(2386), - [anon_sym_TILDE] = ACTIONS(2384), - [anon_sym_void] = ACTIONS(2386), - [anon_sym_delete] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2384), - [sym_number] = ACTIONS(2384), - [sym_private_property_identifier] = ACTIONS(2384), - [sym_this] = ACTIONS(2386), - [sym_super] = ACTIONS(2386), - [sym_true] = ACTIONS(2386), - [sym_false] = ACTIONS(2386), - [sym_null] = ACTIONS(2386), - [sym_undefined] = ACTIONS(2386), - [anon_sym_AT] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2386), - [anon_sym_readonly] = ACTIONS(2386), - [anon_sym_get] = ACTIONS(2386), - [anon_sym_set] = ACTIONS(2386), - [anon_sym_QMARK] = ACTIONS(2384), - [anon_sym_declare] = ACTIONS(2386), - [anon_sym_public] = ACTIONS(2386), - [anon_sym_private] = ACTIONS(2386), - [anon_sym_protected] = ACTIONS(2386), - [anon_sym_override] = ACTIONS(2386), - [anon_sym_module] = ACTIONS(2386), - [anon_sym_any] = ACTIONS(2386), - [anon_sym_number] = ACTIONS(2386), - [anon_sym_boolean] = ACTIONS(2386), - [anon_sym_string] = ACTIONS(2386), - [anon_sym_symbol] = ACTIONS(2386), - [anon_sym_object] = ACTIONS(2386), - [anon_sym_abstract] = ACTIONS(2386), - [anon_sym_extends] = ACTIONS(2386), - [anon_sym_interface] = ACTIONS(2386), - [anon_sym_enum] = ACTIONS(2386), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(2371), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_COMMA] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(2371), + [anon_sym_import] = ACTIONS(2371), + [anon_sym_with] = ACTIONS(2371), + [anon_sym_var] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2369), + [anon_sym_else] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_switch] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_debugger] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_throw] = ACTIONS(2371), + [anon_sym_COLON] = ACTIONS(2369), + [anon_sym_case] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2371), + [anon_sym_EQ_GT] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_using] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_GT] = ACTIONS(2369), + [anon_sym_TILDE] = ACTIONS(2369), + [anon_sym_void] = ACTIONS(2371), + [anon_sym_delete] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2369), + [sym_number] = ACTIONS(2369), + [sym_private_property_identifier] = ACTIONS(2369), + [sym_this] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_null] = ACTIONS(2371), + [sym_undefined] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2369), + [anon_sym_declare] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_private] = ACTIONS(2371), + [anon_sym_protected] = ACTIONS(2371), + [anon_sym_override] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_any] = ACTIONS(2371), + [anon_sym_number] = ACTIONS(2371), + [anon_sym_boolean] = ACTIONS(2371), + [anon_sym_string] = ACTIONS(2371), + [anon_sym_symbol] = ACTIONS(2371), + [anon_sym_object] = ACTIONS(2371), + [anon_sym_abstract] = ACTIONS(2371), + [anon_sym_extends] = ACTIONS(2371), + [anon_sym_interface] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), [sym_html_comment] = ACTIONS(5), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(2390), - [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_COMMA] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_typeof] = ACTIONS(2390), - [anon_sym_import] = ACTIONS(2390), - [anon_sym_with] = ACTIONS(2390), - [anon_sym_var] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_else] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_switch] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_RPAREN] = ACTIONS(2388), - [anon_sym_await] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_do] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_debugger] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_throw] = ACTIONS(2390), - [anon_sym_COLON] = ACTIONS(2388), - [anon_sym_case] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_RBRACK] = ACTIONS(2388), - [sym_glimmer_opening_tag] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2388), - [anon_sym_class] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_function] = ACTIONS(2390), - [anon_sym_EQ_GT] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2390), - [anon_sym_using] = ACTIONS(2390), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2390), - [anon_sym_SLASH] = ACTIONS(2390), - [anon_sym_LT] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2388), - [anon_sym_void] = ACTIONS(2390), - [anon_sym_delete] = ACTIONS(2390), - [anon_sym_PLUS_PLUS] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(2388), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2388), - [sym_number] = ACTIONS(2388), - [sym_private_property_identifier] = ACTIONS(2388), - [sym_this] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_true] = ACTIONS(2390), - [sym_false] = ACTIONS(2390), - [sym_null] = ACTIONS(2390), - [sym_undefined] = ACTIONS(2390), - [anon_sym_AT] = ACTIONS(2388), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_readonly] = ACTIONS(2390), - [anon_sym_get] = ACTIONS(2390), - [anon_sym_set] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(2388), - [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_abstract] = ACTIONS(2390), - [anon_sym_extends] = ACTIONS(2390), - [anon_sym_interface] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2375), + [anon_sym_export] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_namespace] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_typeof] = ACTIONS(2375), + [anon_sym_import] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2375), + [anon_sym_var] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_else] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_switch] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_do] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_debugger] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_throw] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2375), + [anon_sym_EQ_GT] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2375), + [anon_sym_using] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_SLASH] = ACTIONS(2375), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_void] = ACTIONS(2375), + [anon_sym_delete] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2373), + [sym_number] = ACTIONS(2373), + [sym_private_property_identifier] = ACTIONS(2373), + [sym_this] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_true] = ACTIONS(2375), + [sym_false] = ACTIONS(2375), + [sym_null] = ACTIONS(2375), + [sym_undefined] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_readonly] = ACTIONS(2375), + [anon_sym_get] = ACTIONS(2375), + [anon_sym_set] = ACTIONS(2375), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_declare] = ACTIONS(2375), + [anon_sym_public] = ACTIONS(2375), + [anon_sym_private] = ACTIONS(2375), + [anon_sym_protected] = ACTIONS(2375), + [anon_sym_override] = ACTIONS(2375), + [anon_sym_module] = ACTIONS(2375), + [anon_sym_any] = ACTIONS(2375), + [anon_sym_number] = ACTIONS(2375), + [anon_sym_boolean] = ACTIONS(2375), + [anon_sym_string] = ACTIONS(2375), + [anon_sym_symbol] = ACTIONS(2375), + [anon_sym_object] = ACTIONS(2375), + [anon_sym_abstract] = ACTIONS(2375), + [anon_sym_extends] = ACTIONS(2375), + [anon_sym_interface] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), [sym_html_comment] = ACTIONS(5), }, [715] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_export] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_namespace] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_typeof] = ACTIONS(2379), + [anon_sym_import] = ACTIONS(2379), + [anon_sym_with] = ACTIONS(2379), + [anon_sym_var] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_switch] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_debugger] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_throw] = ACTIONS(2379), + [anon_sym_COLON] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2379), + [anon_sym_yield] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_function] = ACTIONS(2379), + [anon_sym_EQ_GT] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_using] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_SLASH] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_void] = ACTIONS(2379), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2377), + [sym_number] = ACTIONS(2377), + [sym_private_property_identifier] = ACTIONS(2377), + [sym_this] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), + [sym_undefined] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_readonly] = ACTIONS(2379), + [anon_sym_get] = ACTIONS(2379), + [anon_sym_set] = ACTIONS(2379), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_declare] = ACTIONS(2379), + [anon_sym_public] = ACTIONS(2379), + [anon_sym_private] = ACTIONS(2379), + [anon_sym_protected] = ACTIONS(2379), + [anon_sym_override] = ACTIONS(2379), + [anon_sym_module] = ACTIONS(2379), + [anon_sym_any] = ACTIONS(2379), + [anon_sym_number] = ACTIONS(2379), + [anon_sym_boolean] = ACTIONS(2379), + [anon_sym_string] = ACTIONS(2379), + [anon_sym_symbol] = ACTIONS(2379), + [anon_sym_object] = ACTIONS(2379), + [anon_sym_abstract] = ACTIONS(2379), + [anon_sym_extends] = ACTIONS(2379), + [anon_sym_interface] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), [sym_html_comment] = ACTIONS(5), }, [716] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [717] = { - [sym_declaration] = STATE(3947), - [sym_variable_declaration] = STATE(3912), - [sym_lexical_declaration] = STATE(3912), - [sym_class_declaration] = STATE(3912), - [sym_function_declaration] = STATE(3912), - [sym_generator_function_declaration] = STATE(3912), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(3912), - [sym_ambient_declaration] = STATE(3912), - [sym_abstract_class_declaration] = STATE(3912), - [sym_module] = STATE(3912), - [sym_internal_module] = STATE(3916), - [sym_import_alias] = STATE(3912), - [sym_interface_declaration] = STATE(3912), - [sym_enum_declaration] = STATE(3912), - [sym_type_alias_declaration] = STATE(3912), - [aux_sym_export_statement_repeat1] = STATE(4322), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2392), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2396), - [anon_sym_var] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_function] = ACTIONS(2408), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2412), - [anon_sym_abstract] = ACTIONS(2414), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2420), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [718] = { - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [719] = { - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [720] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(4310), + [sym_variable_declaration] = STATE(4275), + [sym_lexical_declaration] = STATE(4275), + [sym_class_declaration] = STATE(4275), + [sym_function_declaration] = STATE(4275), + [sym_generator_function_declaration] = STATE(4275), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(4275), + [sym_ambient_declaration] = STATE(4275), + [sym_abstract_class_declaration] = STATE(4275), + [sym_module] = STATE(4275), + [sym_internal_module] = STATE(4287), + [sym_import_alias] = STATE(4275), + [sym_interface_declaration] = STATE(4275), + [sym_enum_declaration] = STATE(4275), + [sym_type_alias_declaration] = STATE(4275), + [aux_sym_export_statement_repeat1] = STATE(4304), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2383), + [anon_sym_import] = ACTIONS(2385), + [anon_sym_var] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2403), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2409), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [721] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [722] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [723] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [724] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [725] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [726] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [727] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [728] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [729] = { - [sym__call_signature] = STATE(5643), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [730] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [731] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [732] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2435), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_readonly] = ACTIONS(2437), + [anon_sym_get] = ACTIONS(2437), + [anon_sym_set] = ACTIONS(2437), + [anon_sym_declare] = ACTIONS(2437), + [anon_sym_public] = ACTIONS(2437), + [anon_sym_private] = ACTIONS(2437), + [anon_sym_protected] = ACTIONS(2437), + [anon_sym_override] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_any] = ACTIONS(2437), + [anon_sym_number] = ACTIONS(2437), + [anon_sym_boolean] = ACTIONS(2437), + [anon_sym_string] = ACTIONS(2437), + [anon_sym_symbol] = ACTIONS(2437), + [anon_sym_object] = ACTIONS(2437), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [733] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5814), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [734] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2435), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_readonly] = ACTIONS(2437), + [anon_sym_get] = ACTIONS(2437), + [anon_sym_set] = ACTIONS(2437), + [anon_sym_declare] = ACTIONS(2437), + [anon_sym_public] = ACTIONS(2437), + [anon_sym_private] = ACTIONS(2437), + [anon_sym_protected] = ACTIONS(2437), + [anon_sym_override] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_any] = ACTIONS(2437), + [anon_sym_number] = ACTIONS(2437), + [anon_sym_boolean] = ACTIONS(2437), + [anon_sym_string] = ACTIONS(2437), + [anon_sym_symbol] = ACTIONS(2437), + [anon_sym_object] = ACTIONS(2437), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [735] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [736] = { - [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_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(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_catch] = ACTIONS(1705), - [anon_sym_finally] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [sym_glimmer_opening_tag] = 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(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_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1713), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [737] = { - [sym__call_signature] = STATE(5609), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5591), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [738] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [739] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5814), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [740] = { - [sym_catch_clause] = STATE(772), - [sym_finally_clause] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_typeof] = ACTIONS(2464), - [anon_sym_import] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(2464), - [anon_sym_var] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_await] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_debugger] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_throw] = ACTIONS(2464), - [anon_sym_case] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2466), - [anon_sym_finally] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [sym_glimmer_opening_tag] = ACTIONS(2462), - [anon_sym_DQUOTE] = ACTIONS(2462), - [anon_sym_SQUOTE] = ACTIONS(2462), - [anon_sym_class] = ACTIONS(2464), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2464), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_using] = ACTIONS(2464), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_SLASH] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_void] = ACTIONS(2464), - [anon_sym_delete] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2462), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2462), - [sym_number] = ACTIONS(2462), - [sym_private_property_identifier] = ACTIONS(2462), - [sym_this] = ACTIONS(2464), - [sym_super] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_null] = ACTIONS(2464), - [sym_undefined] = ACTIONS(2464), - [anon_sym_AT] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_readonly] = ACTIONS(2464), - [anon_sym_get] = ACTIONS(2464), - [anon_sym_set] = ACTIONS(2464), - [anon_sym_declare] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_protected] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_any] = ACTIONS(2464), - [anon_sym_number] = ACTIONS(2464), - [anon_sym_boolean] = ACTIONS(2464), - [anon_sym_string] = ACTIONS(2464), - [anon_sym_symbol] = ACTIONS(2464), - [anon_sym_object] = ACTIONS(2464), - [anon_sym_abstract] = ACTIONS(2464), - [anon_sym_interface] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), + [sym__call_signature] = STATE(5591), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [741] = { - [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_COMMA] = 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_catch] = ACTIONS(1803), - [anon_sym_finally] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym__automatic_semicolon] = ACTIONS(2470), + [sym__call_signature] = STATE(5814), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym__call_signature] = STATE(5609), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [743] = { - [sym__call_signature] = STATE(5643), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [744] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [745] = { - [sym__call_signature] = STATE(5643), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_catch_clause] = STATE(770), + [sym_finally_clause] = STATE(914), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_typeof] = ACTIONS(2457), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_with] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_debugger] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2459), + [anon_sym_finally] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_void] = ACTIONS(2457), + [anon_sym_delete] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2455), + [sym_number] = ACTIONS(2455), + [sym_private_property_identifier] = ACTIONS(2455), + [sym_this] = ACTIONS(2457), + [sym_super] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_null] = ACTIONS(2457), + [sym_undefined] = ACTIONS(2457), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_readonly] = ACTIONS(2457), + [anon_sym_get] = ACTIONS(2457), + [anon_sym_set] = ACTIONS(2457), + [anon_sym_declare] = ACTIONS(2457), + [anon_sym_public] = ACTIONS(2457), + [anon_sym_private] = ACTIONS(2457), + [anon_sym_protected] = ACTIONS(2457), + [anon_sym_override] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_any] = ACTIONS(2457), + [anon_sym_number] = ACTIONS(2457), + [anon_sym_boolean] = ACTIONS(2457), + [anon_sym_string] = ACTIONS(2457), + [anon_sym_symbol] = ACTIONS(2457), + [anon_sym_object] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), [sym_html_comment] = ACTIONS(5), }, [746] = { - [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_COMMA] = 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_catch] = ACTIONS(1803), - [anon_sym_finally] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [747] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_catch] = ACTIONS(1692), + [anon_sym_finally] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1700), [sym_html_comment] = ACTIONS(5), }, [748] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [749] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_PIPE_RBRACE] = ACTIONS(1807), - [sym__automatic_semicolon] = ACTIONS(1807), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2463), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_typeof] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_var] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_do] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_debugger] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_glimmer_opening_tag] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_function] = ACTIONS(1849), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_delete] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym_number] = ACTIONS(1847), - [sym_private_property_identifier] = ACTIONS(1847), - [sym_this] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_null] = ACTIONS(1849), - [sym_undefined] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), - [anon_sym_object] = ACTIONS(1849), - [anon_sym_abstract] = ACTIONS(1849), - [anon_sym_interface] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [anon_sym_PIPE_RBRACE] = ACTIONS(1847), - [sym__automatic_semicolon] = ACTIONS(1847), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [751] = { - [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_COMMA] = 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), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_PIPE_RBRACE] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1801), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [752] = { - [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_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(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), - [sym_glimmer_opening_tag] = 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(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_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [anon_sym_PIPE_RBRACE] = ACTIONS(1703), - [sym__automatic_semicolon] = ACTIONS(2476), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [753] = { - [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_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(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_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_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = 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_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = 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_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_PIPE_RBRACE] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_finally] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [sym__automatic_semicolon] = ACTIONS(2465), [sym_html_comment] = ACTIONS(5), }, [754] = { - [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_COMMA] = 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), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_PIPE_RBRACE] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(2478), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_PIPE_RBRACE] = ACTIONS(1878), + [sym__automatic_semicolon] = ACTIONS(2467), [sym_html_comment] = ACTIONS(5), }, [755] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_finally] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), [sym_html_comment] = ACTIONS(5), }, [756] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_with] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_await] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_debugger] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_void] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [sym_private_property_identifier] = ACTIONS(1884), + [sym_this] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_undefined] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_readonly] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1886), + [anon_sym_set] = ACTIONS(1886), + [anon_sym_declare] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_protected] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_any] = ACTIONS(1886), + [anon_sym_number] = ACTIONS(1886), + [anon_sym_boolean] = ACTIONS(1886), + [anon_sym_string] = ACTIONS(1886), + [anon_sym_symbol] = ACTIONS(1886), + [anon_sym_object] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_PIPE_RBRACE] = ACTIONS(1884), + [sym__automatic_semicolon] = ACTIONS(1884), [sym_html_comment] = ACTIONS(5), }, [757] = { - [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_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(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_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_case] = ACTIONS(1845), - [anon_sym_catch] = ACTIONS(1845), - [anon_sym_finally] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = 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_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = 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_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1722), + [anon_sym_import] = ACTIONS(1722), + [anon_sym_with] = ACTIONS(1722), + [anon_sym_var] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_await] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_debugger] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1722), + [anon_sym_delete] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1720), + [sym_number] = ACTIONS(1720), + [sym_private_property_identifier] = ACTIONS(1720), + [sym_this] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_undefined] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_readonly] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_override] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [anon_sym_object] = ACTIONS(1722), + [anon_sym_abstract] = ACTIONS(1722), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [anon_sym_PIPE_RBRACE] = ACTIONS(1720), + [sym__automatic_semicolon] = ACTIONS(1720), [sym_html_comment] = ACTIONS(5), }, [758] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2480), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_PIPE_RBRACE] = ACTIONS(1878), + [sym__automatic_semicolon] = ACTIONS(1878), [sym_html_comment] = ACTIONS(5), }, [759] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_PIPE_RBRACE] = ACTIONS(1690), + [sym__automatic_semicolon] = ACTIONS(2469), [sym_html_comment] = ACTIONS(5), }, [760] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_namespace] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1718), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_with] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_throw] = ACTIONS(1718), + [anon_sym_case] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1716), + [sym_number] = ACTIONS(1716), + [sym_private_property_identifier] = ACTIONS(1716), + [sym_this] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_undefined] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_readonly] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_declare] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_override] = ACTIONS(1718), + [anon_sym_module] = ACTIONS(1718), + [anon_sym_any] = ACTIONS(1718), + [anon_sym_number] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_string] = ACTIONS(1718), + [anon_sym_symbol] = ACTIONS(1718), + [anon_sym_object] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [anon_sym_PIPE_RBRACE] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), [sym_html_comment] = ACTIONS(5), }, [761] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5764), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2471), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_readonly] = ACTIONS(2473), + [anon_sym_get] = ACTIONS(2473), + [anon_sym_set] = ACTIONS(2473), + [anon_sym_declare] = ACTIONS(2473), + [anon_sym_public] = ACTIONS(2473), + [anon_sym_private] = ACTIONS(2473), + [anon_sym_protected] = ACTIONS(2473), + [anon_sym_override] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_any] = ACTIONS(2473), + [anon_sym_number] = ACTIONS(2473), + [anon_sym_boolean] = ACTIONS(2473), + [anon_sym_string] = ACTIONS(2473), + [anon_sym_symbol] = ACTIONS(2473), + [anon_sym_object] = ACTIONS(2473), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [762] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [763] = { - [sym_statement_block] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), + [sym__call_signature] = STATE(5764), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2471), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_readonly] = ACTIONS(2473), + [anon_sym_get] = ACTIONS(2473), + [anon_sym_set] = ACTIONS(2473), + [anon_sym_declare] = ACTIONS(2473), + [anon_sym_public] = ACTIONS(2473), + [anon_sym_private] = ACTIONS(2473), + [anon_sym_protected] = ACTIONS(2473), + [anon_sym_override] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_any] = ACTIONS(2473), + [anon_sym_number] = ACTIONS(2473), + [anon_sym_boolean] = ACTIONS(2473), + [anon_sym_string] = ACTIONS(2473), + [anon_sym_symbol] = ACTIONS(2473), + [anon_sym_object] = ACTIONS(2473), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [764] = { - [sym_statement_block] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(2486), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), + [sym__call_signature] = STATE(5533), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2475), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_readonly] = ACTIONS(2477), + [anon_sym_get] = ACTIONS(2477), + [anon_sym_set] = ACTIONS(2477), + [anon_sym_declare] = ACTIONS(2477), + [anon_sym_public] = ACTIONS(2477), + [anon_sym_private] = ACTIONS(2477), + [anon_sym_protected] = ACTIONS(2477), + [anon_sym_override] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_any] = ACTIONS(2477), + [anon_sym_number] = ACTIONS(2477), + [anon_sym_boolean] = ACTIONS(2477), + [anon_sym_string] = ACTIONS(2477), + [anon_sym_symbol] = ACTIONS(2477), + [anon_sym_object] = ACTIONS(2477), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [765] = { - [sym__call_signature] = STATE(5749), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_readonly] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(2490), - [anon_sym_set] = ACTIONS(2490), - [anon_sym_declare] = ACTIONS(2490), - [anon_sym_public] = ACTIONS(2490), - [anon_sym_private] = ACTIONS(2490), - [anon_sym_protected] = ACTIONS(2490), - [anon_sym_override] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_any] = ACTIONS(2490), - [anon_sym_number] = ACTIONS(2490), - [anon_sym_boolean] = ACTIONS(2490), - [anon_sym_string] = ACTIONS(2490), - [anon_sym_symbol] = ACTIONS(2490), - [anon_sym_object] = ACTIONS(2490), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [766] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5533), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2475), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_readonly] = ACTIONS(2477), + [anon_sym_get] = ACTIONS(2477), + [anon_sym_set] = ACTIONS(2477), + [anon_sym_declare] = ACTIONS(2477), + [anon_sym_public] = ACTIONS(2477), + [anon_sym_private] = ACTIONS(2477), + [anon_sym_protected] = ACTIONS(2477), + [anon_sym_override] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_any] = ACTIONS(2477), + [anon_sym_number] = ACTIONS(2477), + [anon_sym_boolean] = ACTIONS(2477), + [anon_sym_string] = ACTIONS(2477), + [anon_sym_symbol] = ACTIONS(2477), + [anon_sym_object] = ACTIONS(2477), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [767] = { - [sym__call_signature] = STATE(5749), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_readonly] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(2490), - [anon_sym_set] = ACTIONS(2490), - [anon_sym_declare] = ACTIONS(2490), - [anon_sym_public] = ACTIONS(2490), - [anon_sym_private] = ACTIONS(2490), - [anon_sym_protected] = ACTIONS(2490), - [anon_sym_override] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_any] = ACTIONS(2490), - [anon_sym_number] = ACTIONS(2490), - [anon_sym_boolean] = ACTIONS(2490), - [anon_sym_string] = ACTIONS(2490), - [anon_sym_symbol] = ACTIONS(2490), - [anon_sym_object] = ACTIONS(2490), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [768] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [769] = { - [sym__call_signature] = STATE(5545), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2492), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_namespace] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1718), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_with] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_throw] = ACTIONS(1718), + [anon_sym_case] = ACTIONS(1718), + [anon_sym_catch] = ACTIONS(1718), + [anon_sym_finally] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1716), + [sym_number] = ACTIONS(1716), + [sym_private_property_identifier] = ACTIONS(1716), + [sym_this] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_undefined] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_readonly] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_declare] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_override] = ACTIONS(1718), + [anon_sym_module] = ACTIONS(1718), + [anon_sym_any] = ACTIONS(1718), + [anon_sym_number] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_string] = ACTIONS(1718), + [anon_sym_symbol] = ACTIONS(1718), + [anon_sym_object] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), [sym_html_comment] = ACTIONS(5), }, [770] = { - [sym__call_signature] = STATE(5545), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2492), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [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_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_finally_clause] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_typeof] = ACTIONS(2481), + [anon_sym_import] = ACTIONS(2481), + [anon_sym_with] = ACTIONS(2481), + [anon_sym_var] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_debugger] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_case] = ACTIONS(2481), + [anon_sym_finally] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_void] = ACTIONS(2481), + [anon_sym_delete] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2479), + [sym_number] = ACTIONS(2479), + [sym_private_property_identifier] = ACTIONS(2479), + [sym_this] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_null] = ACTIONS(2481), + [sym_undefined] = ACTIONS(2481), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_readonly] = ACTIONS(2481), + [anon_sym_get] = ACTIONS(2481), + [anon_sym_set] = ACTIONS(2481), + [anon_sym_declare] = ACTIONS(2481), + [anon_sym_public] = ACTIONS(2481), + [anon_sym_private] = ACTIONS(2481), + [anon_sym_protected] = ACTIONS(2481), + [anon_sym_override] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_any] = ACTIONS(2481), + [anon_sym_number] = ACTIONS(2481), + [anon_sym_boolean] = ACTIONS(2481), + [anon_sym_string] = ACTIONS(2481), + [anon_sym_symbol] = ACTIONS(2481), + [anon_sym_object] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), [sym_html_comment] = ACTIONS(5), }, [771] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [772] = { - [sym_finally_clause] = STATE(841), - [ts_builtin_sym_end] = ACTIONS(2496), - [sym_identifier] = ACTIONS(2498), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_default] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_namespace] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_typeof] = ACTIONS(2498), - [anon_sym_import] = ACTIONS(2498), - [anon_sym_with] = ACTIONS(2498), - [anon_sym_var] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_switch] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_await] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_debugger] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_throw] = ACTIONS(2498), - [anon_sym_case] = ACTIONS(2498), - [anon_sym_finally] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [sym_glimmer_opening_tag] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2498), - [anon_sym_async] = ACTIONS(2498), - [anon_sym_function] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_using] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_void] = ACTIONS(2498), - [anon_sym_delete] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2496), - [sym_number] = ACTIONS(2496), - [sym_private_property_identifier] = ACTIONS(2496), - [sym_this] = ACTIONS(2498), - [sym_super] = ACTIONS(2498), - [sym_true] = ACTIONS(2498), - [sym_false] = ACTIONS(2498), - [sym_null] = ACTIONS(2498), - [sym_undefined] = ACTIONS(2498), - [anon_sym_AT] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_readonly] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_declare] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_protected] = ACTIONS(2498), - [anon_sym_override] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_any] = ACTIONS(2498), - [anon_sym_number] = ACTIONS(2498), - [anon_sym_boolean] = ACTIONS(2498), - [anon_sym_string] = ACTIONS(2498), - [anon_sym_symbol] = ACTIONS(2498), - [anon_sym_object] = ACTIONS(2498), - [anon_sym_abstract] = ACTIONS(2498), - [anon_sym_interface] = ACTIONS(2498), - [anon_sym_enum] = ACTIONS(2498), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [773] = { - [ts_builtin_sym_end] = ACTIONS(2500), - [sym_identifier] = ACTIONS(2502), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_default] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_namespace] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_typeof] = ACTIONS(2502), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_var] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_await] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_throw] = ACTIONS(2502), - [anon_sym_case] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_glimmer_opening_tag] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_using] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_void] = ACTIONS(2502), - [anon_sym_delete] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2500), - [sym_number] = ACTIONS(2500), - [sym_private_property_identifier] = ACTIONS(2500), - [sym_this] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_null] = ACTIONS(2502), - [sym_undefined] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_readonly] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_declare] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_protected] = ACTIONS(2502), - [anon_sym_override] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_any] = ACTIONS(2502), - [anon_sym_number] = ACTIONS(2502), - [anon_sym_boolean] = ACTIONS(2502), - [anon_sym_string] = ACTIONS(2502), - [anon_sym_symbol] = ACTIONS(2502), - [anon_sym_object] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_interface] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), - [sym__automatic_semicolon] = ACTIONS(2500), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [774] = { - [ts_builtin_sym_end] = ACTIONS(2504), - [sym_identifier] = ACTIONS(2506), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_namespace] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(2506), - [anon_sym_import] = ACTIONS(2506), - [anon_sym_with] = ACTIONS(2506), - [anon_sym_var] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_await] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_debugger] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_throw] = ACTIONS(2506), - [anon_sym_case] = ACTIONS(2506), - [anon_sym_finally] = ACTIONS(2506), - [anon_sym_yield] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [sym_glimmer_opening_tag] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_async] = ACTIONS(2506), - [anon_sym_function] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_using] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(2506), - [anon_sym_delete] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2504), - [sym_number] = ACTIONS(2504), - [sym_private_property_identifier] = ACTIONS(2504), - [sym_this] = ACTIONS(2506), - [sym_super] = ACTIONS(2506), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_undefined] = ACTIONS(2506), - [anon_sym_AT] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_readonly] = ACTIONS(2506), - [anon_sym_get] = ACTIONS(2506), - [anon_sym_set] = ACTIONS(2506), - [anon_sym_declare] = ACTIONS(2506), - [anon_sym_public] = ACTIONS(2506), - [anon_sym_private] = ACTIONS(2506), - [anon_sym_protected] = ACTIONS(2506), - [anon_sym_override] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_any] = ACTIONS(2506), - [anon_sym_number] = ACTIONS(2506), - [anon_sym_boolean] = ACTIONS(2506), - [anon_sym_string] = ACTIONS(2506), - [anon_sym_symbol] = ACTIONS(2506), - [anon_sym_object] = ACTIONS(2506), - [anon_sym_abstract] = ACTIONS(2506), - [anon_sym_interface] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [775] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [776] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [sym_glimmer_opening_tag] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_private_property_identifier] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_override] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [sym__automatic_semicolon] = ACTIONS(1789), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_var] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_debugger] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [sym_glimmer_opening_tag] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_void] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym_number] = ACTIONS(1753), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_undefined] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_readonly] = ACTIONS(1755), - [anon_sym_get] = ACTIONS(1755), - [anon_sym_set] = ACTIONS(1755), - [anon_sym_declare] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [anon_sym_override] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_object] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1755), - [anon_sym_interface] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [sym__automatic_semicolon] = ACTIONS(1761), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [778] = { - [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), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [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(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_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [779] = { - [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), - [sym_glimmer_opening_tag] = 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(1825), - [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__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [780] = { - [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), - [sym_glimmer_opening_tag] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_function] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_using] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_delete] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1811), - [sym_number] = ACTIONS(1811), - [sym_private_property_identifier] = ACTIONS(1811), - [sym_this] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_null] = ACTIONS(1813), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(1813), - [anon_sym_get] = ACTIONS(1813), - [anon_sym_set] = ACTIONS(1813), - [anon_sym_declare] = ACTIONS(1813), - [anon_sym_public] = ACTIONS(1813), - [anon_sym_private] = ACTIONS(1813), - [anon_sym_protected] = ACTIONS(1813), - [anon_sym_override] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_any] = ACTIONS(1813), - [anon_sym_number] = ACTIONS(1813), - [anon_sym_boolean] = ACTIONS(1813), - [anon_sym_string] = ACTIONS(1813), - [anon_sym_symbol] = ACTIONS(1813), - [anon_sym_object] = ACTIONS(1813), - [anon_sym_abstract] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [sym__automatic_semicolon] = ACTIONS(1819), + [sym_statement_block] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), [sym_html_comment] = ACTIONS(5), }, [781] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_typeof] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_debugger] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_case] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [sym_glimmer_opening_tag] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_function] = ACTIONS(1877), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_void] = ACTIONS(1877), - [anon_sym_delete] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1875), - [sym_number] = ACTIONS(1875), - [sym_private_property_identifier] = ACTIONS(1875), - [sym_this] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_null] = ACTIONS(1877), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(1877), - [anon_sym_get] = ACTIONS(1877), - [anon_sym_set] = ACTIONS(1877), - [anon_sym_declare] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_private] = ACTIONS(1877), - [anon_sym_protected] = ACTIONS(1877), - [anon_sym_override] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_any] = ACTIONS(1877), - [anon_sym_number] = ACTIONS(1877), - [anon_sym_boolean] = ACTIONS(1877), - [anon_sym_string] = ACTIONS(1877), - [anon_sym_symbol] = ACTIONS(1877), - [anon_sym_object] = ACTIONS(1877), - [anon_sym_abstract] = ACTIONS(1877), - [anon_sym_interface] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [sym__automatic_semicolon] = ACTIONS(1883), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [782] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [783] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_namespace] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_typeof] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_with] = ACTIONS(1745), - [anon_sym_var] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_await] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_debugger] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_throw] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [sym_glimmer_opening_tag] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_function] = ACTIONS(1745), - [anon_sym_new] = ACTIONS(1745), - [anon_sym_using] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_delete] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym_number] = ACTIONS(1743), - [sym_private_property_identifier] = ACTIONS(1743), - [sym_this] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [sym_null] = ACTIONS(1745), - [sym_undefined] = ACTIONS(1745), - [anon_sym_AT] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_readonly] = ACTIONS(1745), - [anon_sym_get] = ACTIONS(1745), - [anon_sym_set] = ACTIONS(1745), - [anon_sym_declare] = ACTIONS(1745), - [anon_sym_public] = ACTIONS(1745), - [anon_sym_private] = ACTIONS(1745), - [anon_sym_protected] = ACTIONS(1745), - [anon_sym_override] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_any] = ACTIONS(1745), - [anon_sym_number] = ACTIONS(1745), - [anon_sym_boolean] = ACTIONS(1745), - [anon_sym_string] = ACTIONS(1745), - [anon_sym_symbol] = ACTIONS(1745), - [anon_sym_object] = ACTIONS(1745), - [anon_sym_abstract] = ACTIONS(1745), - [anon_sym_interface] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [sym__automatic_semicolon] = ACTIONS(1751), + [sym_statement_block] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), [sym_html_comment] = ACTIONS(5), }, [784] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4999), + [sym_optional_tuple_parameter] = STATE(4999), + [sym_optional_type] = STATE(4999), + [sym_rest_type] = STATE(4999), + [sym__tuple_type_member] = STATE(4999), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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] = { - [sym_statement_block] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2503), + [anon_sym_export] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_typeof] = ACTIONS(2503), + [anon_sym_import] = ACTIONS(2503), + [anon_sym_with] = ACTIONS(2503), + [anon_sym_var] = ACTIONS(2503), + [anon_sym_let] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_debugger] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_async] = ACTIONS(2503), + [anon_sym_function] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_SLASH] = ACTIONS(2503), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_void] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2501), + [sym_number] = ACTIONS(2501), + [sym_private_property_identifier] = ACTIONS(2501), + [sym_this] = ACTIONS(2503), + [sym_super] = ACTIONS(2503), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_undefined] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_readonly] = ACTIONS(2503), + [anon_sym_get] = ACTIONS(2503), + [anon_sym_set] = ACTIONS(2503), + [anon_sym_declare] = ACTIONS(2503), + [anon_sym_public] = ACTIONS(2503), + [anon_sym_private] = ACTIONS(2503), + [anon_sym_protected] = ACTIONS(2503), + [anon_sym_override] = ACTIONS(2503), + [anon_sym_module] = ACTIONS(2503), + [anon_sym_any] = ACTIONS(2503), + [anon_sym_number] = ACTIONS(2503), + [anon_sym_boolean] = ACTIONS(2503), + [anon_sym_string] = ACTIONS(2503), + [anon_sym_symbol] = ACTIONS(2503), + [anon_sym_object] = ACTIONS(2503), + [anon_sym_abstract] = ACTIONS(2503), + [anon_sym_interface] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [sym__automatic_semicolon] = ACTIONS(2505), [sym_html_comment] = ACTIONS(5), }, [786] = { - [ts_builtin_sym_end] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2510), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_type] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_typeof] = ACTIONS(2510), - [anon_sym_import] = ACTIONS(2510), - [anon_sym_with] = ACTIONS(2510), - [anon_sym_var] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_await] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_debugger] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_finally] = ACTIONS(2510), - [anon_sym_yield] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2508), - [sym_glimmer_opening_tag] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_async] = ACTIONS(2510), - [anon_sym_function] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_void] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2508), - [sym_number] = ACTIONS(2508), - [sym_private_property_identifier] = ACTIONS(2508), - [sym_this] = ACTIONS(2510), - [sym_super] = ACTIONS(2510), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_undefined] = ACTIONS(2510), - [anon_sym_AT] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_readonly] = ACTIONS(2510), - [anon_sym_get] = ACTIONS(2510), - [anon_sym_set] = ACTIONS(2510), - [anon_sym_declare] = ACTIONS(2510), - [anon_sym_public] = ACTIONS(2510), - [anon_sym_private] = ACTIONS(2510), - [anon_sym_protected] = ACTIONS(2510), - [anon_sym_override] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_any] = ACTIONS(2510), - [anon_sym_number] = ACTIONS(2510), - [anon_sym_boolean] = ACTIONS(2510), - [anon_sym_string] = ACTIONS(2510), - [anon_sym_symbol] = ACTIONS(2510), - [anon_sym_object] = ACTIONS(2510), - [anon_sym_abstract] = ACTIONS(2510), - [anon_sym_interface] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_namespace] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym_import] = ACTIONS(1812), + [anon_sym_with] = ACTIONS(1812), + [anon_sym_var] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_await] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_try] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_debugger] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_class] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(1812), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_using] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_SLASH] = ACTIONS(1812), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_void] = ACTIONS(1812), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1810), + [sym_number] = ACTIONS(1810), + [sym_private_property_identifier] = ACTIONS(1810), + [sym_this] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_undefined] = ACTIONS(1812), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_readonly] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1812), + [anon_sym_declare] = ACTIONS(1812), + [anon_sym_public] = ACTIONS(1812), + [anon_sym_private] = ACTIONS(1812), + [anon_sym_protected] = ACTIONS(1812), + [anon_sym_override] = ACTIONS(1812), + [anon_sym_module] = ACTIONS(1812), + [anon_sym_any] = ACTIONS(1812), + [anon_sym_number] = ACTIONS(1812), + [anon_sym_boolean] = ACTIONS(1812), + [anon_sym_string] = ACTIONS(1812), + [anon_sym_symbol] = ACTIONS(1812), + [anon_sym_object] = ACTIONS(1812), + [anon_sym_abstract] = ACTIONS(1812), + [anon_sym_interface] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [sym__automatic_semicolon] = ACTIONS(1818), [sym_html_comment] = ACTIONS(5), }, [787] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_debugger] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1733), - [sym_glimmer_opening_tag] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_void] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1733), - [sym_number] = ACTIONS(1733), - [sym_private_property_identifier] = ACTIONS(1733), - [sym_this] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_undefined] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_get] = ACTIONS(1735), - [anon_sym_set] = ACTIONS(1735), - [anon_sym_declare] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [anon_sym_override] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_any] = ACTIONS(1735), - [anon_sym_number] = ACTIONS(1735), - [anon_sym_boolean] = ACTIONS(1735), - [anon_sym_string] = ACTIONS(1735), - [anon_sym_symbol] = ACTIONS(1735), - [anon_sym_object] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1741), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2507), + [sym_number] = ACTIONS(2507), + [sym_private_property_identifier] = ACTIONS(2507), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_readonly] = ACTIONS(2509), + [anon_sym_get] = ACTIONS(2509), + [anon_sym_set] = ACTIONS(2509), + [anon_sym_declare] = ACTIONS(2509), + [anon_sym_public] = ACTIONS(2509), + [anon_sym_private] = ACTIONS(2509), + [anon_sym_protected] = ACTIONS(2509), + [anon_sym_override] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_any] = ACTIONS(2509), + [anon_sym_number] = ACTIONS(2509), + [anon_sym_boolean] = ACTIONS(2509), + [anon_sym_string] = ACTIONS(2509), + [anon_sym_symbol] = ACTIONS(2509), + [anon_sym_object] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [sym__automatic_semicolon] = ACTIONS(2507), [sym_html_comment] = ACTIONS(5), }, [788] = { - [sym_else_clause] = STATE(856), - [ts_builtin_sym_end] = ACTIONS(2512), - [sym_identifier] = ACTIONS(2514), - [anon_sym_export] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_type] = ACTIONS(2514), - [anon_sym_namespace] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_typeof] = ACTIONS(2514), - [anon_sym_import] = ACTIONS(2514), - [anon_sym_with] = ACTIONS(2514), - [anon_sym_var] = ACTIONS(2514), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_await] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_debugger] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2514), - [anon_sym_yield] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2512), - [sym_glimmer_opening_tag] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_async] = ACTIONS(2514), - [anon_sym_function] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_void] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2512), - [sym_number] = ACTIONS(2512), - [sym_private_property_identifier] = ACTIONS(2512), - [sym_this] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_undefined] = ACTIONS(2514), - [anon_sym_AT] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_readonly] = ACTIONS(2514), - [anon_sym_get] = ACTIONS(2514), - [anon_sym_set] = ACTIONS(2514), - [anon_sym_declare] = ACTIONS(2514), - [anon_sym_public] = ACTIONS(2514), - [anon_sym_private] = ACTIONS(2514), - [anon_sym_protected] = ACTIONS(2514), - [anon_sym_override] = ACTIONS(2514), - [anon_sym_module] = ACTIONS(2514), - [anon_sym_any] = ACTIONS(2514), - [anon_sym_number] = ACTIONS(2514), - [anon_sym_boolean] = ACTIONS(2514), - [anon_sym_string] = ACTIONS(2514), - [anon_sym_symbol] = ACTIONS(2514), - [anon_sym_object] = ACTIONS(2514), - [anon_sym_abstract] = ACTIONS(2514), - [anon_sym_interface] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_namespace] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1708), + [anon_sym_with] = ACTIONS(1708), + [anon_sym_var] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_else] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_await] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_debugger] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_throw] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_class] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_function] = ACTIONS(1708), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_using] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1708), + [anon_sym_delete] = ACTIONS(1708), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym_number] = ACTIONS(1706), + [sym_private_property_identifier] = ACTIONS(1706), + [sym_this] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_undefined] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_declare] = ACTIONS(1708), + [anon_sym_public] = ACTIONS(1708), + [anon_sym_private] = ACTIONS(1708), + [anon_sym_protected] = ACTIONS(1708), + [anon_sym_override] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_any] = ACTIONS(1708), + [anon_sym_number] = ACTIONS(1708), + [anon_sym_boolean] = ACTIONS(1708), + [anon_sym_string] = ACTIONS(1708), + [anon_sym_symbol] = ACTIONS(1708), + [anon_sym_object] = ACTIONS(1708), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [sym__automatic_semicolon] = ACTIONS(1714), [sym_html_comment] = ACTIONS(5), }, [789] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_typeof] = ACTIONS(1895), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_with] = ACTIONS(1895), - [anon_sym_var] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_debugger] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1893), - [sym_glimmer_opening_tag] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_function] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_SLASH] = ACTIONS(1895), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_void] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1893), - [sym_number] = ACTIONS(1893), - [sym_private_property_identifier] = ACTIONS(1893), - [sym_this] = ACTIONS(1895), - [sym_super] = ACTIONS(1895), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_undefined] = ACTIONS(1895), - [anon_sym_AT] = ACTIONS(1893), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_readonly] = ACTIONS(1895), - [anon_sym_get] = ACTIONS(1895), - [anon_sym_set] = ACTIONS(1895), - [anon_sym_declare] = ACTIONS(1895), - [anon_sym_public] = ACTIONS(1895), - [anon_sym_private] = ACTIONS(1895), - [anon_sym_protected] = ACTIONS(1895), - [anon_sym_override] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_any] = ACTIONS(1895), - [anon_sym_number] = ACTIONS(1895), - [anon_sym_boolean] = ACTIONS(1895), - [anon_sym_string] = ACTIONS(1895), - [anon_sym_symbol] = ACTIONS(1895), - [anon_sym_object] = ACTIONS(1895), - [anon_sym_abstract] = ACTIONS(1895), - [anon_sym_interface] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_with] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_await] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_debugger] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_throw] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1890), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_TILDE] = ACTIONS(1888), + [anon_sym_void] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_number] = ACTIONS(1888), + [sym_private_property_identifier] = ACTIONS(1888), + [sym_this] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_undefined] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_readonly] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_interface] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), [sym_html_comment] = ACTIONS(5), }, [790] = { - [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), - [sym_glimmer_opening_tag] = 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(2520), - [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__automatic_semicolon] = ACTIONS(2518), + [sym_else_clause] = STATE(854), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_export] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2513), + [anon_sym_import] = ACTIONS(2513), + [anon_sym_with] = ACTIONS(2513), + [anon_sym_var] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_debugger] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2513), + [anon_sym_delete] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_private_property_identifier] = ACTIONS(2511), + [sym_this] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_undefined] = ACTIONS(2513), + [anon_sym_AT] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_readonly] = ACTIONS(2513), + [anon_sym_get] = ACTIONS(2513), + [anon_sym_set] = ACTIONS(2513), + [anon_sym_declare] = ACTIONS(2513), + [anon_sym_public] = ACTIONS(2513), + [anon_sym_private] = ACTIONS(2513), + [anon_sym_protected] = ACTIONS(2513), + [anon_sym_override] = ACTIONS(2513), + [anon_sym_module] = ACTIONS(2513), + [anon_sym_any] = ACTIONS(2513), + [anon_sym_number] = ACTIONS(2513), + [anon_sym_boolean] = ACTIONS(2513), + [anon_sym_string] = ACTIONS(2513), + [anon_sym_symbol] = ACTIONS(2513), + [anon_sym_object] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), [sym_html_comment] = ACTIONS(5), }, [791] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_namespace] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym_import] = ACTIONS(1832), + [anon_sym_with] = ACTIONS(1832), + [anon_sym_var] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_await] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_debugger] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_throw] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_class] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(1832), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_void] = ACTIONS(1832), + [anon_sym_delete] = ACTIONS(1832), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1830), + [sym_number] = ACTIONS(1830), + [sym_private_property_identifier] = ACTIONS(1830), + [sym_this] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_undefined] = ACTIONS(1832), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_readonly] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1832), + [anon_sym_set] = ACTIONS(1832), + [anon_sym_declare] = ACTIONS(1832), + [anon_sym_public] = ACTIONS(1832), + [anon_sym_private] = ACTIONS(1832), + [anon_sym_protected] = ACTIONS(1832), + [anon_sym_override] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_any] = ACTIONS(1832), + [anon_sym_number] = ACTIONS(1832), + [anon_sym_boolean] = ACTIONS(1832), + [anon_sym_string] = ACTIONS(1832), + [anon_sym_symbol] = ACTIONS(1832), + [anon_sym_object] = ACTIONS(1832), + [anon_sym_abstract] = ACTIONS(1832), + [anon_sym_interface] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [sym__automatic_semicolon] = ACTIONS(1838), [sym_html_comment] = ACTIONS(5), }, [792] = { - [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_RPAREN] = 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), - [sym_glimmer_opening_tag] = 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(2524), - [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), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_namespace] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym_import] = ACTIONS(1760), + [anon_sym_with] = ACTIONS(1760), + [anon_sym_var] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_await] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_debugger] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_class] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_function] = ACTIONS(1760), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(1760), + [anon_sym_delete] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1758), + [sym_private_property_identifier] = ACTIONS(1758), + [sym_this] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_undefined] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_readonly] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_declare] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_interface] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [sym__automatic_semicolon] = ACTIONS(1766), [sym_html_comment] = ACTIONS(5), }, [793] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4540), + [sym_optional_tuple_parameter] = STATE(4540), + [sym_optional_type] = STATE(4540), + [sym_rest_type] = STATE(4540), + [sym__tuple_type_member] = STATE(4540), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2517), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [794] = { - [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), - [sym_glimmer_opening_tag] = 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(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_interface] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1841), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_namespace] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), + [anon_sym_with] = ACTIONS(1844), + [anon_sym_var] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_else] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_await] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_debugger] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_class] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_function] = ACTIONS(1844), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_using] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_void] = ACTIONS(1844), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_number] = ACTIONS(1842), + [sym_private_property_identifier] = ACTIONS(1842), + [sym_this] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_undefined] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_readonly] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1844), + [anon_sym_set] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1844), + [anon_sym_public] = ACTIONS(1844), + [anon_sym_private] = ACTIONS(1844), + [anon_sym_protected] = ACTIONS(1844), + [anon_sym_override] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1844), + [anon_sym_number] = ACTIONS(1844), + [anon_sym_boolean] = ACTIONS(1844), + [anon_sym_string] = ACTIONS(1844), + [anon_sym_symbol] = ACTIONS(1844), + [anon_sym_object] = ACTIONS(1844), + [anon_sym_abstract] = ACTIONS(1844), + [anon_sym_interface] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [sym__automatic_semicolon] = ACTIONS(1850), [sym_html_comment] = ACTIONS(5), }, [795] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_with] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_await] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_debugger] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1865), - [sym_glimmer_opening_tag] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1865), - [sym_number] = ACTIONS(1865), - [sym_private_property_identifier] = ACTIONS(1865), - [sym_this] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_undefined] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(1867), - [anon_sym_get] = ACTIONS(1867), - [anon_sym_set] = ACTIONS(1867), - [anon_sym_declare] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [anon_sym_override] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_any] = ACTIONS(1867), - [anon_sym_number] = ACTIONS(1867), - [anon_sym_boolean] = ACTIONS(1867), - [anon_sym_string] = ACTIONS(1867), - [anon_sym_symbol] = ACTIONS(1867), - [anon_sym_object] = ACTIONS(1867), - [anon_sym_abstract] = ACTIONS(1867), - [anon_sym_interface] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [sym__automatic_semicolon] = ACTIONS(1873), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4586), + [sym_optional_tuple_parameter] = STATE(4586), + [sym_optional_type] = STATE(4586), + [sym_rest_type] = STATE(4586), + [sym__tuple_type_member] = STATE(4586), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2521), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(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(2530), - [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), - [sym_glimmer_opening_tag] = 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(2528), - [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__automatic_semicolon] = ACTIONS(2530), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1782), + [anon_sym_import] = ACTIONS(1782), + [anon_sym_with] = ACTIONS(1782), + [anon_sym_var] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_await] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_debugger] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_throw] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_class] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_function] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_void] = ACTIONS(1782), + [anon_sym_delete] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1780), + [sym_number] = ACTIONS(1780), + [sym_private_property_identifier] = ACTIONS(1780), + [sym_this] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_true] = ACTIONS(1782), + [sym_false] = ACTIONS(1782), + [sym_null] = ACTIONS(1782), + [sym_undefined] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_readonly] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1782), + [anon_sym_public] = ACTIONS(1782), + [anon_sym_private] = ACTIONS(1782), + [anon_sym_protected] = ACTIONS(1782), + [anon_sym_override] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_any] = ACTIONS(1782), + [anon_sym_number] = ACTIONS(1782), + [anon_sym_boolean] = ACTIONS(1782), + [anon_sym_string] = ACTIONS(1782), + [anon_sym_symbol] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1782), + [anon_sym_abstract] = ACTIONS(1782), + [anon_sym_interface] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1788), [sym_html_comment] = ACTIONS(5), }, [797] = { - [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), - [sym_glimmer_opening_tag] = 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(1853), - [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), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1822), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_switch] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_await] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_debugger] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_case] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_class] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_function] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_using] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_void] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_number] = ACTIONS(1820), + [sym_private_property_identifier] = ACTIONS(1820), + [sym_this] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_true] = ACTIONS(1822), + [sym_false] = ACTIONS(1822), + [sym_null] = ACTIONS(1822), + [sym_undefined] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_readonly] = ACTIONS(1822), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_declare] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_any] = ACTIONS(1822), + [anon_sym_number] = ACTIONS(1822), + [anon_sym_boolean] = ACTIONS(1822), + [anon_sym_string] = ACTIONS(1822), + [anon_sym_symbol] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_interface] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [sym__automatic_semicolon] = ACTIONS(1828), [sym_html_comment] = ACTIONS(5), }, [798] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_statement_block] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), [sym_html_comment] = ACTIONS(5), }, [799] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_namespace] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym_import] = ACTIONS(1772), + [anon_sym_with] = ACTIONS(1772), + [anon_sym_var] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_await] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_debugger] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_throw] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_class] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(1772), + [anon_sym_new] = ACTIONS(1772), + [anon_sym_using] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_void] = ACTIONS(1772), + [anon_sym_delete] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1770), + [sym_number] = ACTIONS(1770), + [sym_private_property_identifier] = ACTIONS(1770), + [sym_this] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_readonly] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1772), + [anon_sym_set] = ACTIONS(1772), + [anon_sym_declare] = ACTIONS(1772), + [anon_sym_public] = ACTIONS(1772), + [anon_sym_private] = ACTIONS(1772), + [anon_sym_protected] = ACTIONS(1772), + [anon_sym_override] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_any] = ACTIONS(1772), + [anon_sym_number] = ACTIONS(1772), + [anon_sym_boolean] = ACTIONS(1772), + [anon_sym_string] = ACTIONS(1772), + [anon_sym_symbol] = ACTIONS(1772), + [anon_sym_object] = ACTIONS(1772), + [anon_sym_abstract] = ACTIONS(1772), + [anon_sym_interface] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1778), [sym_html_comment] = ACTIONS(5), }, [800] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4956), + [sym_optional_tuple_parameter] = STATE(4956), + [sym_optional_type] = STATE(4956), + [sym_rest_type] = STATE(4956), + [sym__tuple_type_member] = STATE(4956), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2525), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_namespace] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_import] = ACTIONS(1858), + [anon_sym_with] = ACTIONS(1858), + [anon_sym_var] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_else] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_await] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_debugger] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_throw] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1858), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_using] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_void] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1856), + [sym_number] = ACTIONS(1856), + [sym_private_property_identifier] = ACTIONS(1856), + [sym_this] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_true] = ACTIONS(1858), + [sym_false] = ACTIONS(1858), + [sym_null] = ACTIONS(1858), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_readonly] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_declare] = ACTIONS(1858), + [anon_sym_public] = ACTIONS(1858), + [anon_sym_private] = ACTIONS(1858), + [anon_sym_protected] = ACTIONS(1858), + [anon_sym_override] = ACTIONS(1858), + [anon_sym_module] = ACTIONS(1858), + [anon_sym_any] = ACTIONS(1858), + [anon_sym_number] = ACTIONS(1858), + [anon_sym_boolean] = ACTIONS(1858), + [anon_sym_string] = ACTIONS(1858), + [anon_sym_symbol] = ACTIONS(1858), + [anon_sym_object] = ACTIONS(1858), + [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [sym__automatic_semicolon] = ACTIONS(1864), [sym_html_comment] = ACTIONS(5), }, [802] = { - [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_finally] = ACTIONS(2534), - [anon_sym_yield] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2532), - [sym_glimmer_opening_tag] = 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(2534), - [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), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_namespace] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_import] = ACTIONS(1894), + [anon_sym_with] = ACTIONS(1894), + [anon_sym_var] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_await] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_debugger] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_throw] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_class] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1894), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_using] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_TILDE] = ACTIONS(1892), + [anon_sym_void] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_number] = ACTIONS(1892), + [sym_private_property_identifier] = ACTIONS(1892), + [sym_this] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_true] = ACTIONS(1894), + [sym_false] = ACTIONS(1894), + [sym_null] = ACTIONS(1894), + [sym_undefined] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_readonly] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(1894), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1894), + [anon_sym_private] = ACTIONS(1894), + [anon_sym_protected] = ACTIONS(1894), + [anon_sym_override] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_any] = ACTIONS(1894), + [anon_sym_number] = ACTIONS(1894), + [anon_sym_boolean] = ACTIONS(1894), + [anon_sym_string] = ACTIONS(1894), + [anon_sym_symbol] = ACTIONS(1894), + [anon_sym_object] = ACTIONS(1894), + [anon_sym_abstract] = ACTIONS(1894), + [anon_sym_interface] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), [sym_html_comment] = ACTIONS(5), }, [803] = { - [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), - [sym_glimmer_opening_tag] = ACTIONS(1791), - [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(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_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym__automatic_semicolon] = ACTIONS(1799), + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2531), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_typeof] = ACTIONS(2531), + [anon_sym_import] = ACTIONS(2531), + [anon_sym_with] = ACTIONS(2531), + [anon_sym_var] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_debugger] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_case] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_function] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_SLASH] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_void] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2529), + [sym_number] = ACTIONS(2529), + [sym_private_property_identifier] = ACTIONS(2529), + [sym_this] = ACTIONS(2531), + [sym_super] = ACTIONS(2531), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_undefined] = ACTIONS(2531), + [anon_sym_AT] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_readonly] = ACTIONS(2531), + [anon_sym_get] = ACTIONS(2531), + [anon_sym_set] = ACTIONS(2531), + [anon_sym_declare] = ACTIONS(2531), + [anon_sym_public] = ACTIONS(2531), + [anon_sym_private] = ACTIONS(2531), + [anon_sym_protected] = ACTIONS(2531), + [anon_sym_override] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_any] = ACTIONS(2531), + [anon_sym_number] = ACTIONS(2531), + [anon_sym_boolean] = ACTIONS(2531), + [anon_sym_string] = ACTIONS(2531), + [anon_sym_symbol] = ACTIONS(2531), + [anon_sym_object] = ACTIONS(2531), + [anon_sym_abstract] = ACTIONS(2531), + [anon_sym_interface] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [sym__automatic_semicolon] = ACTIONS(2529), [sym_html_comment] = ACTIONS(5), }, [804] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_with] = ACTIONS(1792), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_await] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_debugger] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_class] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_function] = ACTIONS(1792), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_using] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_delete] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_number] = ACTIONS(1790), + [sym_private_property_identifier] = ACTIONS(1790), + [sym_this] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_undefined] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_readonly] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1792), + [anon_sym_set] = ACTIONS(1792), + [anon_sym_declare] = ACTIONS(1792), + [anon_sym_public] = ACTIONS(1792), + [anon_sym_private] = ACTIONS(1792), + [anon_sym_protected] = ACTIONS(1792), + [anon_sym_override] = ACTIONS(1792), + [anon_sym_module] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_number] = ACTIONS(1792), + [anon_sym_boolean] = ACTIONS(1792), + [anon_sym_string] = ACTIONS(1792), + [anon_sym_symbol] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1792), + [anon_sym_abstract] = ACTIONS(1792), + [anon_sym_interface] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_html_comment] = ACTIONS(5), }, [805] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), + [anon_sym_with] = ACTIONS(1868), + [anon_sym_var] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_await] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_debugger] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_throw] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_function] = ACTIONS(1868), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_using] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_void] = ACTIONS(1868), + [anon_sym_delete] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1866), + [sym_number] = ACTIONS(1866), + [sym_private_property_identifier] = ACTIONS(1866), + [sym_this] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_undefined] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_readonly] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_override] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [anon_sym_object] = ACTIONS(1868), + [anon_sym_abstract] = ACTIONS(1868), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [sym__automatic_semicolon] = ACTIONS(1874), [sym_html_comment] = ACTIONS(5), }, [807] = { - [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), - [sym_glimmer_opening_tag] = 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(2538), - [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), + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2539), + [anon_sym_export] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_typeof] = ACTIONS(2539), + [anon_sym_import] = ACTIONS(2539), + [anon_sym_with] = ACTIONS(2539), + [anon_sym_var] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_await] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_debugger] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_finally] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_async] = ACTIONS(2539), + [anon_sym_function] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_SLASH] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_void] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2537), + [sym_number] = ACTIONS(2537), + [sym_private_property_identifier] = ACTIONS(2537), + [sym_this] = ACTIONS(2539), + [sym_super] = ACTIONS(2539), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_undefined] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_readonly] = ACTIONS(2539), + [anon_sym_get] = ACTIONS(2539), + [anon_sym_set] = ACTIONS(2539), + [anon_sym_declare] = ACTIONS(2539), + [anon_sym_public] = ACTIONS(2539), + [anon_sym_private] = ACTIONS(2539), + [anon_sym_protected] = ACTIONS(2539), + [anon_sym_override] = ACTIONS(2539), + [anon_sym_module] = ACTIONS(2539), + [anon_sym_any] = ACTIONS(2539), + [anon_sym_number] = ACTIONS(2539), + [anon_sym_boolean] = ACTIONS(2539), + [anon_sym_string] = ACTIONS(2539), + [anon_sym_symbol] = ACTIONS(2539), + [anon_sym_object] = ACTIONS(2539), + [anon_sym_abstract] = ACTIONS(2539), + [anon_sym_interface] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), [sym_html_comment] = ACTIONS(5), }, [808] = { - [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), - [sym_glimmer_opening_tag] = 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(2542), - [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), + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2543), + [anon_sym_export] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_namespace] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_typeof] = ACTIONS(2543), + [anon_sym_import] = ACTIONS(2543), + [anon_sym_with] = ACTIONS(2543), + [anon_sym_var] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_switch] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_try] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_debugger] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_throw] = ACTIONS(2543), + [anon_sym_case] = ACTIONS(2543), + [anon_sym_finally] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_function] = ACTIONS(2543), + [anon_sym_new] = ACTIONS(2543), + [anon_sym_using] = ACTIONS(2543), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_SLASH] = ACTIONS(2543), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_void] = ACTIONS(2543), + [anon_sym_delete] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2541), + [sym_number] = ACTIONS(2541), + [sym_private_property_identifier] = ACTIONS(2541), + [sym_this] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_null] = ACTIONS(2543), + [sym_undefined] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_readonly] = ACTIONS(2543), + [anon_sym_get] = ACTIONS(2543), + [anon_sym_set] = ACTIONS(2543), + [anon_sym_declare] = ACTIONS(2543), + [anon_sym_public] = ACTIONS(2543), + [anon_sym_private] = ACTIONS(2543), + [anon_sym_protected] = ACTIONS(2543), + [anon_sym_override] = ACTIONS(2543), + [anon_sym_module] = ACTIONS(2543), + [anon_sym_any] = ACTIONS(2543), + [anon_sym_number] = ACTIONS(2543), + [anon_sym_boolean] = ACTIONS(2543), + [anon_sym_string] = ACTIONS(2543), + [anon_sym_symbol] = ACTIONS(2543), + [anon_sym_object] = ACTIONS(2543), + [anon_sym_abstract] = ACTIONS(2543), + [anon_sym_interface] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), [sym_html_comment] = ACTIONS(5), }, [809] = { - [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), - [sym_glimmer_opening_tag] = 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(2546), - [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), + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_export] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2547), + [anon_sym_namespace] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_typeof] = ACTIONS(2547), + [anon_sym_import] = ACTIONS(2547), + [anon_sym_with] = ACTIONS(2547), + [anon_sym_var] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_switch] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_await] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_debugger] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_throw] = ACTIONS(2547), + [anon_sym_case] = ACTIONS(2547), + [anon_sym_finally] = ACTIONS(2547), + [anon_sym_yield] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2547), + [anon_sym_async] = ACTIONS(2547), + [anon_sym_function] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_using] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_TILDE] = ACTIONS(2545), + [anon_sym_void] = ACTIONS(2547), + [anon_sym_delete] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(2545), + [anon_sym_SQUOTE] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2545), + [sym_number] = ACTIONS(2545), + [sym_private_property_identifier] = ACTIONS(2545), + [sym_this] = ACTIONS(2547), + [sym_super] = ACTIONS(2547), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_null] = ACTIONS(2547), + [sym_undefined] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_readonly] = ACTIONS(2547), + [anon_sym_get] = ACTIONS(2547), + [anon_sym_set] = ACTIONS(2547), + [anon_sym_declare] = ACTIONS(2547), + [anon_sym_public] = ACTIONS(2547), + [anon_sym_private] = ACTIONS(2547), + [anon_sym_protected] = ACTIONS(2547), + [anon_sym_override] = ACTIONS(2547), + [anon_sym_module] = ACTIONS(2547), + [anon_sym_any] = ACTIONS(2547), + [anon_sym_number] = ACTIONS(2547), + [anon_sym_boolean] = ACTIONS(2547), + [anon_sym_string] = ACTIONS(2547), + [anon_sym_symbol] = ACTIONS(2547), + [anon_sym_object] = ACTIONS(2547), + [anon_sym_abstract] = ACTIONS(2547), + [anon_sym_interface] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), [sym_html_comment] = ACTIONS(5), }, [810] = { - [ts_builtin_sym_end] = ACTIONS(2548), - [sym_identifier] = ACTIONS(2550), - [anon_sym_export] = ACTIONS(2550), - [anon_sym_default] = ACTIONS(2550), - [anon_sym_type] = ACTIONS(2550), - [anon_sym_namespace] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_typeof] = ACTIONS(2550), - [anon_sym_import] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - [anon_sym_var] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_const] = ACTIONS(2550), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2550), - [anon_sym_if] = ACTIONS(2550), - [anon_sym_switch] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_await] = ACTIONS(2550), - [anon_sym_while] = ACTIONS(2550), - [anon_sym_do] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2550), - [anon_sym_break] = ACTIONS(2550), - [anon_sym_continue] = ACTIONS(2550), - [anon_sym_debugger] = ACTIONS(2550), - [anon_sym_return] = ACTIONS(2550), - [anon_sym_throw] = ACTIONS(2550), - [anon_sym_case] = ACTIONS(2550), - [anon_sym_yield] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2548), - [sym_glimmer_opening_tag] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), - [anon_sym_class] = ACTIONS(2550), - [anon_sym_async] = ACTIONS(2550), - [anon_sym_function] = ACTIONS(2550), - [anon_sym_new] = ACTIONS(2550), - [anon_sym_using] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_void] = ACTIONS(2550), - [anon_sym_delete] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2548), - [sym_number] = ACTIONS(2548), - [sym_private_property_identifier] = ACTIONS(2548), - [sym_this] = ACTIONS(2550), - [sym_super] = ACTIONS(2550), - [sym_true] = ACTIONS(2550), - [sym_false] = ACTIONS(2550), - [sym_null] = ACTIONS(2550), - [sym_undefined] = ACTIONS(2550), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_readonly] = ACTIONS(2550), - [anon_sym_get] = ACTIONS(2550), - [anon_sym_set] = ACTIONS(2550), - [anon_sym_declare] = ACTIONS(2550), - [anon_sym_public] = ACTIONS(2550), - [anon_sym_private] = ACTIONS(2550), - [anon_sym_protected] = ACTIONS(2550), - [anon_sym_override] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_any] = ACTIONS(2550), - [anon_sym_number] = ACTIONS(2550), - [anon_sym_boolean] = ACTIONS(2550), - [anon_sym_string] = ACTIONS(2550), - [anon_sym_symbol] = ACTIONS(2550), - [anon_sym_object] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2550), - [anon_sym_interface] = ACTIONS(2550), - [anon_sym_enum] = ACTIONS(2550), + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2551), + [anon_sym_export] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_typeof] = ACTIONS(2551), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_var] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_RPAREN] = ACTIONS(2549), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_debugger] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_function] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_void] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2549), + [sym_number] = ACTIONS(2549), + [sym_private_property_identifier] = ACTIONS(2549), + [sym_this] = ACTIONS(2551), + [sym_super] = ACTIONS(2551), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_undefined] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_readonly] = ACTIONS(2551), + [anon_sym_get] = ACTIONS(2551), + [anon_sym_set] = ACTIONS(2551), + [anon_sym_declare] = ACTIONS(2551), + [anon_sym_public] = ACTIONS(2551), + [anon_sym_private] = ACTIONS(2551), + [anon_sym_protected] = ACTIONS(2551), + [anon_sym_override] = ACTIONS(2551), + [anon_sym_module] = ACTIONS(2551), + [anon_sym_any] = ACTIONS(2551), + [anon_sym_number] = ACTIONS(2551), + [anon_sym_boolean] = ACTIONS(2551), + [anon_sym_string] = ACTIONS(2551), + [anon_sym_symbol] = ACTIONS(2551), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_abstract] = ACTIONS(2551), + [anon_sym_interface] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), [sym_html_comment] = ACTIONS(5), }, [811] = { - [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), - [sym_glimmer_opening_tag] = 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(2554), - [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), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_namespace] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1802), + [anon_sym_import] = ACTIONS(1802), + [anon_sym_with] = ACTIONS(1802), + [anon_sym_var] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_switch] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_await] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_debugger] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_case] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_class] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(1802), + [anon_sym_new] = ACTIONS(1802), + [anon_sym_using] = ACTIONS(1802), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_TILDE] = ACTIONS(1800), + [anon_sym_void] = ACTIONS(1802), + [anon_sym_delete] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1800), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1800), + [sym_number] = ACTIONS(1800), + [sym_private_property_identifier] = ACTIONS(1800), + [sym_this] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_true] = ACTIONS(1802), + [sym_false] = ACTIONS(1802), + [sym_null] = ACTIONS(1802), + [sym_undefined] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_readonly] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_any] = ACTIONS(1802), + [anon_sym_number] = ACTIONS(1802), + [anon_sym_boolean] = ACTIONS(1802), + [anon_sym_string] = ACTIONS(1802), + [anon_sym_symbol] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_interface] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1808), [sym_html_comment] = ACTIONS(5), }, [812] = { - [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), - [sym_glimmer_opening_tag] = 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(2558), - [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), + [ts_builtin_sym_end] = ACTIONS(2553), + [sym_identifier] = ACTIONS(2555), + [anon_sym_export] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_typeof] = ACTIONS(2555), + [anon_sym_import] = ACTIONS(2555), + [anon_sym_with] = ACTIONS(2555), + [anon_sym_var] = ACTIONS(2555), + [anon_sym_let] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_await] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_debugger] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_yield] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_async] = ACTIONS(2555), + [anon_sym_function] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_void] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2553), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(2553), + [sym_this] = ACTIONS(2555), + [sym_super] = ACTIONS(2555), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_undefined] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_readonly] = ACTIONS(2555), + [anon_sym_get] = ACTIONS(2555), + [anon_sym_set] = ACTIONS(2555), + [anon_sym_declare] = ACTIONS(2555), + [anon_sym_public] = ACTIONS(2555), + [anon_sym_private] = ACTIONS(2555), + [anon_sym_protected] = ACTIONS(2555), + [anon_sym_override] = ACTIONS(2555), + [anon_sym_module] = ACTIONS(2555), + [anon_sym_any] = ACTIONS(2555), + [anon_sym_number] = ACTIONS(2555), + [anon_sym_boolean] = ACTIONS(2555), + [anon_sym_string] = ACTIONS(2555), + [anon_sym_symbol] = ACTIONS(2555), + [anon_sym_object] = ACTIONS(2555), + [anon_sym_abstract] = ACTIONS(2555), + [anon_sym_interface] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), [sym_html_comment] = ACTIONS(5), }, [813] = { - [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), - [sym_glimmer_opening_tag] = 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(2546), - [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), + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_identifier] = ACTIONS(2559), + [anon_sym_export] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_import] = ACTIONS(2559), + [anon_sym_with] = ACTIONS(2559), + [anon_sym_var] = ACTIONS(2559), + [anon_sym_let] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_await] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_debugger] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_async] = ACTIONS(2559), + [anon_sym_function] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_void] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2557), + [sym_number] = ACTIONS(2557), + [sym_private_property_identifier] = ACTIONS(2557), + [sym_this] = ACTIONS(2559), + [sym_super] = ACTIONS(2559), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_undefined] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_readonly] = ACTIONS(2559), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_declare] = ACTIONS(2559), + [anon_sym_public] = ACTIONS(2559), + [anon_sym_private] = ACTIONS(2559), + [anon_sym_protected] = ACTIONS(2559), + [anon_sym_override] = ACTIONS(2559), + [anon_sym_module] = ACTIONS(2559), + [anon_sym_any] = ACTIONS(2559), + [anon_sym_number] = ACTIONS(2559), + [anon_sym_boolean] = ACTIONS(2559), + [anon_sym_string] = ACTIONS(2559), + [anon_sym_symbol] = ACTIONS(2559), + [anon_sym_object] = ACTIONS(2559), + [anon_sym_abstract] = ACTIONS(2559), + [anon_sym_interface] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), [sym_html_comment] = ACTIONS(5), }, [814] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2562), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [815] = { - [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), - [sym_glimmer_opening_tag] = 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(2546), - [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), + [ts_builtin_sym_end] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2567), + [anon_sym_export] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_type] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_typeof] = ACTIONS(2567), + [anon_sym_import] = ACTIONS(2567), + [anon_sym_with] = ACTIONS(2567), + [anon_sym_var] = ACTIONS(2567), + [anon_sym_let] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_debugger] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_async] = ACTIONS(2567), + [anon_sym_function] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_void] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2565), + [sym_number] = ACTIONS(2565), + [sym_private_property_identifier] = ACTIONS(2565), + [sym_this] = ACTIONS(2567), + [sym_super] = ACTIONS(2567), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_undefined] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_readonly] = ACTIONS(2567), + [anon_sym_get] = ACTIONS(2567), + [anon_sym_set] = ACTIONS(2567), + [anon_sym_declare] = ACTIONS(2567), + [anon_sym_public] = ACTIONS(2567), + [anon_sym_private] = ACTIONS(2567), + [anon_sym_protected] = ACTIONS(2567), + [anon_sym_override] = ACTIONS(2567), + [anon_sym_module] = ACTIONS(2567), + [anon_sym_any] = ACTIONS(2567), + [anon_sym_number] = ACTIONS(2567), + [anon_sym_boolean] = ACTIONS(2567), + [anon_sym_string] = ACTIONS(2567), + [anon_sym_symbol] = ACTIONS(2567), + [anon_sym_object] = ACTIONS(2567), + [anon_sym_abstract] = ACTIONS(2567), + [anon_sym_interface] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), [sym_html_comment] = ACTIONS(5), }, [816] = { - [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), - [sym_glimmer_opening_tag] = 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(2574), - [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), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [817] = { - [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), - [sym_glimmer_opening_tag] = 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(2546), - [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), + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2571), + [anon_sym_export] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_typeof] = ACTIONS(2571), + [anon_sym_import] = ACTIONS(2571), + [anon_sym_with] = ACTIONS(2571), + [anon_sym_var] = ACTIONS(2571), + [anon_sym_let] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_debugger] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_async] = ACTIONS(2571), + [anon_sym_function] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_void] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2569), + [sym_number] = ACTIONS(2569), + [sym_private_property_identifier] = ACTIONS(2569), + [sym_this] = ACTIONS(2571), + [sym_super] = ACTIONS(2571), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_undefined] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_readonly] = ACTIONS(2571), + [anon_sym_get] = ACTIONS(2571), + [anon_sym_set] = ACTIONS(2571), + [anon_sym_declare] = ACTIONS(2571), + [anon_sym_public] = ACTIONS(2571), + [anon_sym_private] = ACTIONS(2571), + [anon_sym_protected] = ACTIONS(2571), + [anon_sym_override] = ACTIONS(2571), + [anon_sym_module] = ACTIONS(2571), + [anon_sym_any] = ACTIONS(2571), + [anon_sym_number] = ACTIONS(2571), + [anon_sym_boolean] = ACTIONS(2571), + [anon_sym_string] = ACTIONS(2571), + [anon_sym_symbol] = ACTIONS(2571), + [anon_sym_object] = ACTIONS(2571), + [anon_sym_abstract] = ACTIONS(2571), + [anon_sym_interface] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), [sym_html_comment] = ACTIONS(5), }, [818] = { - [ts_builtin_sym_end] = ACTIONS(2576), - [sym_identifier] = ACTIONS(2578), - [anon_sym_export] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2578), - [anon_sym_namespace] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_typeof] = ACTIONS(2578), - [anon_sym_import] = ACTIONS(2578), - [anon_sym_with] = ACTIONS(2578), - [anon_sym_var] = ACTIONS(2578), - [anon_sym_let] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_else] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_do] = ACTIONS(2578), - [anon_sym_try] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_debugger] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_throw] = ACTIONS(2578), - [anon_sym_case] = ACTIONS(2578), - [anon_sym_yield] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2576), - [sym_glimmer_opening_tag] = ACTIONS(2576), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2578), - [anon_sym_async] = ACTIONS(2578), - [anon_sym_function] = ACTIONS(2578), - [anon_sym_new] = ACTIONS(2578), - [anon_sym_using] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_TILDE] = ACTIONS(2576), - [anon_sym_void] = ACTIONS(2578), - [anon_sym_delete] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2576), - [sym_number] = ACTIONS(2576), - [sym_private_property_identifier] = ACTIONS(2576), - [sym_this] = ACTIONS(2578), - [sym_super] = ACTIONS(2578), - [sym_true] = ACTIONS(2578), - [sym_false] = ACTIONS(2578), - [sym_null] = ACTIONS(2578), - [sym_undefined] = ACTIONS(2578), - [anon_sym_AT] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_readonly] = ACTIONS(2578), - [anon_sym_get] = ACTIONS(2578), - [anon_sym_set] = ACTIONS(2578), - [anon_sym_declare] = ACTIONS(2578), - [anon_sym_public] = ACTIONS(2578), - [anon_sym_private] = ACTIONS(2578), - [anon_sym_protected] = ACTIONS(2578), - [anon_sym_override] = ACTIONS(2578), - [anon_sym_module] = ACTIONS(2578), - [anon_sym_any] = ACTIONS(2578), - [anon_sym_number] = ACTIONS(2578), - [anon_sym_boolean] = ACTIONS(2578), - [anon_sym_string] = ACTIONS(2578), - [anon_sym_symbol] = ACTIONS(2578), - [anon_sym_object] = ACTIONS(2578), - [anon_sym_abstract] = ACTIONS(2578), - [anon_sym_interface] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [819] = { - [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), - [sym_glimmer_opening_tag] = 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(2582), - [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), + [ts_builtin_sym_end] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2575), + [anon_sym_export] = ACTIONS(2575), + [anon_sym_default] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_namespace] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_typeof] = ACTIONS(2575), + [anon_sym_import] = ACTIONS(2575), + [anon_sym_with] = ACTIONS(2575), + [anon_sym_var] = ACTIONS(2575), + [anon_sym_let] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_await] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_debugger] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2575), + [anon_sym_yield] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2575), + [anon_sym_async] = ACTIONS(2575), + [anon_sym_function] = ACTIONS(2575), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_using] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_delete] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2573), + [sym_number] = ACTIONS(2573), + [sym_private_property_identifier] = ACTIONS(2573), + [sym_this] = ACTIONS(2575), + [sym_super] = ACTIONS(2575), + [sym_true] = ACTIONS(2575), + [sym_false] = ACTIONS(2575), + [sym_null] = ACTIONS(2575), + [sym_undefined] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_readonly] = ACTIONS(2575), + [anon_sym_get] = ACTIONS(2575), + [anon_sym_set] = ACTIONS(2575), + [anon_sym_declare] = ACTIONS(2575), + [anon_sym_public] = ACTIONS(2575), + [anon_sym_private] = ACTIONS(2575), + [anon_sym_protected] = ACTIONS(2575), + [anon_sym_override] = ACTIONS(2575), + [anon_sym_module] = ACTIONS(2575), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2575), + [anon_sym_interface] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), [sym_html_comment] = ACTIONS(5), }, [820] = { - [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), - [sym_glimmer_opening_tag] = 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(2586), - [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_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [821] = { - [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), - [sym_glimmer_opening_tag] = 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(2590), - [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_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [822] = { - [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), - [sym_glimmer_opening_tag] = 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(2594), - [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), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [823] = { - [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), - [sym_glimmer_opening_tag] = 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(2546), - [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), + [ts_builtin_sym_end] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2583), + [anon_sym_export] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_typeof] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2583), + [anon_sym_with] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2583), + [anon_sym_let] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_debugger] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_yield] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_async] = ACTIONS(2583), + [anon_sym_function] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2581), + [sym_private_property_identifier] = ACTIONS(2581), + [sym_this] = ACTIONS(2583), + [sym_super] = ACTIONS(2583), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_readonly] = ACTIONS(2583), + [anon_sym_get] = ACTIONS(2583), + [anon_sym_set] = ACTIONS(2583), + [anon_sym_declare] = ACTIONS(2583), + [anon_sym_public] = ACTIONS(2583), + [anon_sym_private] = ACTIONS(2583), + [anon_sym_protected] = ACTIONS(2583), + [anon_sym_override] = ACTIONS(2583), + [anon_sym_module] = ACTIONS(2583), + [anon_sym_any] = ACTIONS(2583), + [anon_sym_number] = ACTIONS(2583), + [anon_sym_boolean] = ACTIONS(2583), + [anon_sym_string] = ACTIONS(2583), + [anon_sym_symbol] = ACTIONS(2583), + [anon_sym_object] = ACTIONS(2583), + [anon_sym_abstract] = ACTIONS(2583), + [anon_sym_interface] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), [sym_html_comment] = ACTIONS(5), }, [824] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_private_property_identifier] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), [sym_html_comment] = ACTIONS(5), }, [825] = { - [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), - [sym_glimmer_opening_tag] = 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(2598), - [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), + [ts_builtin_sym_end] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [anon_sym_export] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_typeof] = ACTIONS(2587), + [anon_sym_import] = ACTIONS(2587), + [anon_sym_with] = ACTIONS(2587), + [anon_sym_var] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_debugger] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_async] = ACTIONS(2587), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_SLASH] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_void] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2585), + [sym_number] = ACTIONS(2585), + [sym_private_property_identifier] = ACTIONS(2585), + [sym_this] = ACTIONS(2587), + [sym_super] = ACTIONS(2587), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2587), + [anon_sym_get] = ACTIONS(2587), + [anon_sym_set] = ACTIONS(2587), + [anon_sym_declare] = ACTIONS(2587), + [anon_sym_public] = ACTIONS(2587), + [anon_sym_private] = ACTIONS(2587), + [anon_sym_protected] = ACTIONS(2587), + [anon_sym_override] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_any] = ACTIONS(2587), + [anon_sym_number] = ACTIONS(2587), + [anon_sym_boolean] = ACTIONS(2587), + [anon_sym_string] = ACTIONS(2587), + [anon_sym_symbol] = ACTIONS(2587), + [anon_sym_object] = ACTIONS(2587), + [anon_sym_abstract] = ACTIONS(2587), + [anon_sym_interface] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), [sym_html_comment] = ACTIONS(5), }, [826] = { - [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), - [sym_glimmer_opening_tag] = 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(2602), - [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), + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2591), + [anon_sym_export] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_typeof] = ACTIONS(2591), + [anon_sym_import] = ACTIONS(2591), + [anon_sym_with] = ACTIONS(2591), + [anon_sym_var] = ACTIONS(2591), + [anon_sym_let] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_await] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_debugger] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_function] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_SLASH] = ACTIONS(2591), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_void] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2589), + [sym_number] = ACTIONS(2589), + [sym_private_property_identifier] = ACTIONS(2589), + [sym_this] = ACTIONS(2591), + [sym_super] = ACTIONS(2591), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_undefined] = ACTIONS(2591), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_readonly] = ACTIONS(2591), + [anon_sym_get] = ACTIONS(2591), + [anon_sym_set] = ACTIONS(2591), + [anon_sym_declare] = ACTIONS(2591), + [anon_sym_public] = ACTIONS(2591), + [anon_sym_private] = ACTIONS(2591), + [anon_sym_protected] = ACTIONS(2591), + [anon_sym_override] = ACTIONS(2591), + [anon_sym_module] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2591), + [anon_sym_number] = ACTIONS(2591), + [anon_sym_boolean] = ACTIONS(2591), + [anon_sym_string] = ACTIONS(2591), + [anon_sym_symbol] = ACTIONS(2591), + [anon_sym_object] = ACTIONS(2591), + [anon_sym_abstract] = ACTIONS(2591), + [anon_sym_interface] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), [sym_html_comment] = ACTIONS(5), }, [827] = { - [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), - [sym_glimmer_opening_tag] = 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(2606), - [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), + [ts_builtin_sym_end] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2595), + [anon_sym_export] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_typeof] = ACTIONS(2595), + [anon_sym_import] = ACTIONS(2595), + [anon_sym_with] = ACTIONS(2595), + [anon_sym_var] = ACTIONS(2595), + [anon_sym_let] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_LPAREN] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_debugger] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_yield] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_async] = ACTIONS(2595), + [anon_sym_function] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_SLASH] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_void] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2593), + [sym_number] = ACTIONS(2593), + [sym_private_property_identifier] = ACTIONS(2593), + [sym_this] = ACTIONS(2595), + [sym_super] = ACTIONS(2595), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_undefined] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_get] = ACTIONS(2595), + [anon_sym_set] = ACTIONS(2595), + [anon_sym_declare] = ACTIONS(2595), + [anon_sym_public] = ACTIONS(2595), + [anon_sym_private] = ACTIONS(2595), + [anon_sym_protected] = ACTIONS(2595), + [anon_sym_override] = ACTIONS(2595), + [anon_sym_module] = ACTIONS(2595), + [anon_sym_any] = ACTIONS(2595), + [anon_sym_number] = ACTIONS(2595), + [anon_sym_boolean] = ACTIONS(2595), + [anon_sym_string] = ACTIONS(2595), + [anon_sym_symbol] = ACTIONS(2595), + [anon_sym_object] = ACTIONS(2595), + [anon_sym_abstract] = ACTIONS(2595), + [anon_sym_interface] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), [sym_html_comment] = ACTIONS(5), }, [828] = { - [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), - [sym_glimmer_opening_tag] = 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(2574), - [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), + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2599), + [anon_sym_export] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_typeof] = ACTIONS(2599), + [anon_sym_import] = ACTIONS(2599), + [anon_sym_with] = ACTIONS(2599), + [anon_sym_var] = ACTIONS(2599), + [anon_sym_let] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_await] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_debugger] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(2599), + [anon_sym_function] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_SLASH] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_void] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2597), + [sym_number] = ACTIONS(2597), + [sym_private_property_identifier] = ACTIONS(2597), + [sym_this] = ACTIONS(2599), + [sym_super] = ACTIONS(2599), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_undefined] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_readonly] = ACTIONS(2599), + [anon_sym_get] = ACTIONS(2599), + [anon_sym_set] = ACTIONS(2599), + [anon_sym_declare] = ACTIONS(2599), + [anon_sym_public] = ACTIONS(2599), + [anon_sym_private] = ACTIONS(2599), + [anon_sym_protected] = ACTIONS(2599), + [anon_sym_override] = ACTIONS(2599), + [anon_sym_module] = ACTIONS(2599), + [anon_sym_any] = ACTIONS(2599), + [anon_sym_number] = ACTIONS(2599), + [anon_sym_boolean] = ACTIONS(2599), + [anon_sym_string] = ACTIONS(2599), + [anon_sym_symbol] = ACTIONS(2599), + [anon_sym_object] = ACTIONS(2599), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_interface] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), [sym_html_comment] = ACTIONS(5), }, [829] = { - [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), - [sym_glimmer_opening_tag] = 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(2610), - [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), + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2571), + [anon_sym_export] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_typeof] = ACTIONS(2571), + [anon_sym_import] = ACTIONS(2571), + [anon_sym_with] = ACTIONS(2571), + [anon_sym_var] = ACTIONS(2571), + [anon_sym_let] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_debugger] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_async] = ACTIONS(2571), + [anon_sym_function] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_void] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2569), + [sym_number] = ACTIONS(2569), + [sym_private_property_identifier] = ACTIONS(2569), + [sym_this] = ACTIONS(2571), + [sym_super] = ACTIONS(2571), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_undefined] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_readonly] = ACTIONS(2571), + [anon_sym_get] = ACTIONS(2571), + [anon_sym_set] = ACTIONS(2571), + [anon_sym_declare] = ACTIONS(2571), + [anon_sym_public] = ACTIONS(2571), + [anon_sym_private] = ACTIONS(2571), + [anon_sym_protected] = ACTIONS(2571), + [anon_sym_override] = ACTIONS(2571), + [anon_sym_module] = ACTIONS(2571), + [anon_sym_any] = ACTIONS(2571), + [anon_sym_number] = ACTIONS(2571), + [anon_sym_boolean] = ACTIONS(2571), + [anon_sym_string] = ACTIONS(2571), + [anon_sym_symbol] = ACTIONS(2571), + [anon_sym_object] = ACTIONS(2571), + [anon_sym_abstract] = ACTIONS(2571), + [anon_sym_interface] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), [sym_html_comment] = ACTIONS(5), }, [830] = { - [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), - [sym_glimmer_opening_tag] = 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(2614), - [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), + [ts_builtin_sym_end] = ACTIONS(2601), + [sym_identifier] = ACTIONS(2603), + [anon_sym_export] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_typeof] = ACTIONS(2603), + [anon_sym_import] = ACTIONS(2603), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_await] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_debugger] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_async] = ACTIONS(2603), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_SLASH] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_void] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2601), + [sym_number] = ACTIONS(2601), + [sym_private_property_identifier] = ACTIONS(2601), + [sym_this] = ACTIONS(2603), + [sym_super] = ACTIONS(2603), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_undefined] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_readonly] = ACTIONS(2603), + [anon_sym_get] = ACTIONS(2603), + [anon_sym_set] = ACTIONS(2603), + [anon_sym_declare] = ACTIONS(2603), + [anon_sym_public] = ACTIONS(2603), + [anon_sym_private] = ACTIONS(2603), + [anon_sym_protected] = ACTIONS(2603), + [anon_sym_override] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_any] = ACTIONS(2603), + [anon_sym_number] = ACTIONS(2603), + [anon_sym_boolean] = ACTIONS(2603), + [anon_sym_string] = ACTIONS(2603), + [anon_sym_symbol] = ACTIONS(2603), + [anon_sym_object] = ACTIONS(2603), + [anon_sym_abstract] = ACTIONS(2603), + [anon_sym_interface] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), [sym_html_comment] = ACTIONS(5), }, [831] = { - [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), - [sym_glimmer_opening_tag] = 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(2618), - [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), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_private_property_identifier] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), [sym_html_comment] = ACTIONS(5), }, [832] = { - [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), - [sym_glimmer_opening_tag] = 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(2622), - [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), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_export] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_namespace] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_typeof] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_var] = ACTIONS(2607), + [anon_sym_let] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_switch] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_do] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_debugger] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_case] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_function] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_using] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_void] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2605), + [sym_number] = ACTIONS(2605), + [sym_private_property_identifier] = ACTIONS(2605), + [sym_this] = ACTIONS(2607), + [sym_super] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_undefined] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_get] = ACTIONS(2607), + [anon_sym_set] = ACTIONS(2607), + [anon_sym_declare] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_private] = ACTIONS(2607), + [anon_sym_protected] = ACTIONS(2607), + [anon_sym_override] = ACTIONS(2607), + [anon_sym_module] = ACTIONS(2607), + [anon_sym_any] = ACTIONS(2607), + [anon_sym_number] = ACTIONS(2607), + [anon_sym_boolean] = ACTIONS(2607), + [anon_sym_string] = ACTIONS(2607), + [anon_sym_symbol] = ACTIONS(2607), + [anon_sym_object] = ACTIONS(2607), + [anon_sym_abstract] = ACTIONS(2607), + [anon_sym_interface] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), [sym_html_comment] = ACTIONS(5), }, [833] = { - [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), - [sym_glimmer_opening_tag] = 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(2626), - [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), + [ts_builtin_sym_end] = ACTIONS(2609), + [sym_identifier] = ACTIONS(2611), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_typeof] = ACTIONS(2611), + [anon_sym_import] = ACTIONS(2611), + [anon_sym_with] = ACTIONS(2611), + [anon_sym_var] = ACTIONS(2611), + [anon_sym_let] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_await] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_debugger] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_yield] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_async] = ACTIONS(2611), + [anon_sym_function] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_void] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2609), + [sym_number] = ACTIONS(2609), + [sym_private_property_identifier] = ACTIONS(2609), + [sym_this] = ACTIONS(2611), + [sym_super] = ACTIONS(2611), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_undefined] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_readonly] = ACTIONS(2611), + [anon_sym_get] = ACTIONS(2611), + [anon_sym_set] = ACTIONS(2611), + [anon_sym_declare] = ACTIONS(2611), + [anon_sym_public] = ACTIONS(2611), + [anon_sym_private] = ACTIONS(2611), + [anon_sym_protected] = ACTIONS(2611), + [anon_sym_override] = ACTIONS(2611), + [anon_sym_module] = ACTIONS(2611), + [anon_sym_any] = ACTIONS(2611), + [anon_sym_number] = ACTIONS(2611), + [anon_sym_boolean] = ACTIONS(2611), + [anon_sym_string] = ACTIONS(2611), + [anon_sym_symbol] = ACTIONS(2611), + [anon_sym_object] = ACTIONS(2611), + [anon_sym_abstract] = ACTIONS(2611), + [anon_sym_interface] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), [sym_html_comment] = ACTIONS(5), }, [834] = { - [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), - [sym_glimmer_opening_tag] = 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(2626), - [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), + [ts_builtin_sym_end] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2615), + [anon_sym_export] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_typeof] = ACTIONS(2615), + [anon_sym_import] = ACTIONS(2615), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_await] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_debugger] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_async] = ACTIONS(2615), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_void] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2613), + [sym_number] = ACTIONS(2613), + [sym_private_property_identifier] = ACTIONS(2613), + [sym_this] = ACTIONS(2615), + [sym_super] = ACTIONS(2615), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_undefined] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_readonly] = ACTIONS(2615), + [anon_sym_get] = ACTIONS(2615), + [anon_sym_set] = ACTIONS(2615), + [anon_sym_declare] = ACTIONS(2615), + [anon_sym_public] = ACTIONS(2615), + [anon_sym_private] = ACTIONS(2615), + [anon_sym_protected] = ACTIONS(2615), + [anon_sym_override] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_any] = ACTIONS(2615), + [anon_sym_number] = ACTIONS(2615), + [anon_sym_boolean] = ACTIONS(2615), + [anon_sym_string] = ACTIONS(2615), + [anon_sym_symbol] = ACTIONS(2615), + [anon_sym_object] = ACTIONS(2615), + [anon_sym_abstract] = ACTIONS(2615), + [anon_sym_interface] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), [sym_html_comment] = ACTIONS(5), }, [835] = { - [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), - [sym_glimmer_opening_tag] = 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(2630), - [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), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_export] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_typeof] = ACTIONS(2619), + [anon_sym_import] = ACTIONS(2619), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_var] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_await] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_debugger] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_void] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2617), + [sym_number] = ACTIONS(2617), + [sym_private_property_identifier] = ACTIONS(2617), + [sym_this] = ACTIONS(2619), + [sym_super] = ACTIONS(2619), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_undefined] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_readonly] = ACTIONS(2619), + [anon_sym_get] = ACTIONS(2619), + [anon_sym_set] = ACTIONS(2619), + [anon_sym_declare] = ACTIONS(2619), + [anon_sym_public] = ACTIONS(2619), + [anon_sym_private] = ACTIONS(2619), + [anon_sym_protected] = ACTIONS(2619), + [anon_sym_override] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_any] = ACTIONS(2619), + [anon_sym_number] = ACTIONS(2619), + [anon_sym_boolean] = ACTIONS(2619), + [anon_sym_string] = ACTIONS(2619), + [anon_sym_symbol] = ACTIONS(2619), + [anon_sym_object] = ACTIONS(2619), + [anon_sym_abstract] = ACTIONS(2619), + [anon_sym_interface] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), [sym_html_comment] = ACTIONS(5), }, [836] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_export] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_typeof] = ACTIONS(2619), + [anon_sym_import] = ACTIONS(2619), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_var] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_await] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_debugger] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_void] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2617), + [sym_number] = ACTIONS(2617), + [sym_private_property_identifier] = ACTIONS(2617), + [sym_this] = ACTIONS(2619), + [sym_super] = ACTIONS(2619), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_undefined] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_readonly] = ACTIONS(2619), + [anon_sym_get] = ACTIONS(2619), + [anon_sym_set] = ACTIONS(2619), + [anon_sym_declare] = ACTIONS(2619), + [anon_sym_public] = ACTIONS(2619), + [anon_sym_private] = ACTIONS(2619), + [anon_sym_protected] = ACTIONS(2619), + [anon_sym_override] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_any] = ACTIONS(2619), + [anon_sym_number] = ACTIONS(2619), + [anon_sym_boolean] = ACTIONS(2619), + [anon_sym_string] = ACTIONS(2619), + [anon_sym_symbol] = ACTIONS(2619), + [anon_sym_object] = ACTIONS(2619), + [anon_sym_abstract] = ACTIONS(2619), + [anon_sym_interface] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), [sym_html_comment] = ACTIONS(5), }, [837] = { - [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), - [sym_glimmer_opening_tag] = 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(2634), - [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), + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2623), + [anon_sym_export] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_type] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_typeof] = ACTIONS(2623), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_with] = ACTIONS(2623), + [anon_sym_var] = ACTIONS(2623), + [anon_sym_let] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_await] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_debugger] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_yield] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_function] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_void] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2621), + [sym_number] = ACTIONS(2621), + [sym_private_property_identifier] = ACTIONS(2621), + [sym_this] = ACTIONS(2623), + [sym_super] = ACTIONS(2623), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_undefined] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_readonly] = ACTIONS(2623), + [anon_sym_get] = ACTIONS(2623), + [anon_sym_set] = ACTIONS(2623), + [anon_sym_declare] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_private] = ACTIONS(2623), + [anon_sym_protected] = ACTIONS(2623), + [anon_sym_override] = ACTIONS(2623), + [anon_sym_module] = ACTIONS(2623), + [anon_sym_any] = ACTIONS(2623), + [anon_sym_number] = ACTIONS(2623), + [anon_sym_boolean] = ACTIONS(2623), + [anon_sym_string] = ACTIONS(2623), + [anon_sym_symbol] = ACTIONS(2623), + [anon_sym_object] = ACTIONS(2623), + [anon_sym_abstract] = ACTIONS(2623), + [anon_sym_interface] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), [sym_html_comment] = ACTIONS(5), }, [838] = { - [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), - [sym_glimmer_opening_tag] = 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(2638), - [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), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_export] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_typeof] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_with] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [anon_sym_let] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_debugger] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_yield] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_void] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2625), + [sym_number] = ACTIONS(2625), + [sym_private_property_identifier] = ACTIONS(2625), + [sym_this] = ACTIONS(2627), + [sym_super] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_undefined] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_readonly] = ACTIONS(2627), + [anon_sym_get] = ACTIONS(2627), + [anon_sym_set] = ACTIONS(2627), + [anon_sym_declare] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_module] = ACTIONS(2627), + [anon_sym_any] = ACTIONS(2627), + [anon_sym_number] = ACTIONS(2627), + [anon_sym_boolean] = ACTIONS(2627), + [anon_sym_string] = ACTIONS(2627), + [anon_sym_symbol] = ACTIONS(2627), + [anon_sym_object] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), [sym_html_comment] = ACTIONS(5), }, [839] = { - [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), - [sym_glimmer_opening_tag] = 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(2642), - [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), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2631), + [anon_sym_export] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_type] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_typeof] = ACTIONS(2631), + [anon_sym_import] = ACTIONS(2631), + [anon_sym_with] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2631), + [anon_sym_let] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_await] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_debugger] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_async] = ACTIONS(2631), + [anon_sym_function] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_void] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2629), + [sym_number] = ACTIONS(2629), + [sym_private_property_identifier] = ACTIONS(2629), + [sym_this] = ACTIONS(2631), + [sym_super] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_undefined] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_get] = ACTIONS(2631), + [anon_sym_set] = ACTIONS(2631), + [anon_sym_declare] = ACTIONS(2631), + [anon_sym_public] = ACTIONS(2631), + [anon_sym_private] = ACTIONS(2631), + [anon_sym_protected] = ACTIONS(2631), + [anon_sym_override] = ACTIONS(2631), + [anon_sym_module] = ACTIONS(2631), + [anon_sym_any] = ACTIONS(2631), + [anon_sym_number] = ACTIONS(2631), + [anon_sym_boolean] = ACTIONS(2631), + [anon_sym_string] = ACTIONS(2631), + [anon_sym_symbol] = ACTIONS(2631), + [anon_sym_object] = ACTIONS(2631), + [anon_sym_abstract] = ACTIONS(2631), + [anon_sym_interface] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), [sym_html_comment] = ACTIONS(5), }, [840] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4527), - [sym_optional_tuple_parameter] = STATE(4527), - [sym_optional_type] = STATE(4527), - [sym_rest_type] = STATE(4527), - [sym__tuple_type_member] = STATE(4527), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2644), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2635), + [anon_sym_export] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_type] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_typeof] = ACTIONS(2635), + [anon_sym_import] = ACTIONS(2635), + [anon_sym_with] = ACTIONS(2635), + [anon_sym_var] = ACTIONS(2635), + [anon_sym_let] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_await] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_debugger] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_async] = ACTIONS(2635), + [anon_sym_function] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_void] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2633), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [sym_this] = ACTIONS(2635), + [sym_super] = ACTIONS(2635), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_undefined] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_readonly] = ACTIONS(2635), + [anon_sym_get] = ACTIONS(2635), + [anon_sym_set] = ACTIONS(2635), + [anon_sym_declare] = ACTIONS(2635), + [anon_sym_public] = ACTIONS(2635), + [anon_sym_private] = ACTIONS(2635), + [anon_sym_protected] = ACTIONS(2635), + [anon_sym_override] = ACTIONS(2635), + [anon_sym_module] = ACTIONS(2635), + [anon_sym_any] = ACTIONS(2635), + [anon_sym_number] = ACTIONS(2635), + [anon_sym_boolean] = ACTIONS(2635), + [anon_sym_string] = ACTIONS(2635), + [anon_sym_symbol] = ACTIONS(2635), + [anon_sym_object] = ACTIONS(2635), + [anon_sym_abstract] = ACTIONS(2635), + [anon_sym_interface] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), [sym_html_comment] = ACTIONS(5), }, [841] = { - [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), - [sym_glimmer_opening_tag] = 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(2650), - [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), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_export] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_typeof] = ACTIONS(2639), + [anon_sym_import] = ACTIONS(2639), + [anon_sym_with] = ACTIONS(2639), + [anon_sym_var] = ACTIONS(2639), + [anon_sym_let] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_await] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_debugger] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_yield] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_async] = ACTIONS(2639), + [anon_sym_function] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_void] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2637), + [sym_number] = ACTIONS(2637), + [sym_private_property_identifier] = ACTIONS(2637), + [sym_this] = ACTIONS(2639), + [sym_super] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_undefined] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_readonly] = ACTIONS(2639), + [anon_sym_get] = ACTIONS(2639), + [anon_sym_set] = ACTIONS(2639), + [anon_sym_declare] = ACTIONS(2639), + [anon_sym_public] = ACTIONS(2639), + [anon_sym_private] = ACTIONS(2639), + [anon_sym_protected] = ACTIONS(2639), + [anon_sym_override] = ACTIONS(2639), + [anon_sym_module] = ACTIONS(2639), + [anon_sym_any] = ACTIONS(2639), + [anon_sym_number] = ACTIONS(2639), + [anon_sym_boolean] = ACTIONS(2639), + [anon_sym_string] = ACTIONS(2639), + [anon_sym_symbol] = ACTIONS(2639), + [anon_sym_object] = ACTIONS(2639), + [anon_sym_abstract] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), [sym_html_comment] = ACTIONS(5), }, [842] = { - [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), - [sym_glimmer_opening_tag] = 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(2654), - [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), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2643), + [anon_sym_export] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_typeof] = ACTIONS(2643), + [anon_sym_import] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_var] = ACTIONS(2643), + [anon_sym_let] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_await] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_debugger] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_yield] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_async] = ACTIONS(2643), + [anon_sym_function] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_void] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2641), + [sym_number] = ACTIONS(2641), + [sym_private_property_identifier] = ACTIONS(2641), + [sym_this] = ACTIONS(2643), + [sym_super] = ACTIONS(2643), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_undefined] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_readonly] = ACTIONS(2643), + [anon_sym_get] = ACTIONS(2643), + [anon_sym_set] = ACTIONS(2643), + [anon_sym_declare] = ACTIONS(2643), + [anon_sym_public] = ACTIONS(2643), + [anon_sym_private] = ACTIONS(2643), + [anon_sym_protected] = ACTIONS(2643), + [anon_sym_override] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2643), + [anon_sym_any] = ACTIONS(2643), + [anon_sym_number] = ACTIONS(2643), + [anon_sym_boolean] = ACTIONS(2643), + [anon_sym_string] = ACTIONS(2643), + [anon_sym_symbol] = ACTIONS(2643), + [anon_sym_object] = ACTIONS(2643), + [anon_sym_abstract] = ACTIONS(2643), + [anon_sym_interface] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), [sym_html_comment] = ACTIONS(5), }, [843] = { - [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), - [sym_glimmer_opening_tag] = 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(2658), - [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), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_export] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_typeof] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_with] = ACTIONS(2647), + [anon_sym_var] = ACTIONS(2647), + [anon_sym_let] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_await] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_debugger] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_async] = ACTIONS(2647), + [anon_sym_function] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2645), + [sym_number] = ACTIONS(2645), + [sym_private_property_identifier] = ACTIONS(2645), + [sym_this] = ACTIONS(2647), + [sym_super] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), + [sym_undefined] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_readonly] = ACTIONS(2647), + [anon_sym_get] = ACTIONS(2647), + [anon_sym_set] = ACTIONS(2647), + [anon_sym_declare] = ACTIONS(2647), + [anon_sym_public] = ACTIONS(2647), + [anon_sym_private] = ACTIONS(2647), + [anon_sym_protected] = ACTIONS(2647), + [anon_sym_override] = ACTIONS(2647), + [anon_sym_module] = ACTIONS(2647), + [anon_sym_any] = ACTIONS(2647), + [anon_sym_number] = ACTIONS(2647), + [anon_sym_boolean] = ACTIONS(2647), + [anon_sym_string] = ACTIONS(2647), + [anon_sym_symbol] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(2647), + [anon_sym_abstract] = ACTIONS(2647), + [anon_sym_interface] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), [sym_html_comment] = ACTIONS(5), }, [844] = { - [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), - [sym_glimmer_opening_tag] = 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(2662), - [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), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2651), + [anon_sym_export] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_namespace] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_typeof] = ACTIONS(2651), + [anon_sym_import] = ACTIONS(2651), + [anon_sym_with] = ACTIONS(2651), + [anon_sym_var] = ACTIONS(2651), + [anon_sym_let] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_await] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_debugger] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_case] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_async] = ACTIONS(2651), + [anon_sym_function] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_using] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_void] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2649), + [sym_number] = ACTIONS(2649), + [sym_private_property_identifier] = ACTIONS(2649), + [sym_this] = ACTIONS(2651), + [sym_super] = ACTIONS(2651), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_null] = ACTIONS(2651), + [sym_undefined] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_readonly] = ACTIONS(2651), + [anon_sym_get] = ACTIONS(2651), + [anon_sym_set] = ACTIONS(2651), + [anon_sym_declare] = ACTIONS(2651), + [anon_sym_public] = ACTIONS(2651), + [anon_sym_private] = ACTIONS(2651), + [anon_sym_protected] = ACTIONS(2651), + [anon_sym_override] = ACTIONS(2651), + [anon_sym_module] = ACTIONS(2651), + [anon_sym_any] = ACTIONS(2651), + [anon_sym_number] = ACTIONS(2651), + [anon_sym_boolean] = ACTIONS(2651), + [anon_sym_string] = ACTIONS(2651), + [anon_sym_symbol] = ACTIONS(2651), + [anon_sym_object] = ACTIONS(2651), + [anon_sym_abstract] = ACTIONS(2651), + [anon_sym_interface] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), [sym_html_comment] = ACTIONS(5), }, [845] = { - [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), - [sym_glimmer_opening_tag] = 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(2666), - [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), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2655), + [anon_sym_export] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_import] = ACTIONS(2655), + [anon_sym_with] = ACTIONS(2655), + [anon_sym_var] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_await] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_debugger] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_yield] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_async] = ACTIONS(2655), + [anon_sym_function] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2653), + [sym_number] = ACTIONS(2653), + [sym_private_property_identifier] = ACTIONS(2653), + [sym_this] = ACTIONS(2655), + [sym_super] = ACTIONS(2655), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), + [sym_undefined] = ACTIONS(2655), + [anon_sym_AT] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_readonly] = ACTIONS(2655), + [anon_sym_get] = ACTIONS(2655), + [anon_sym_set] = ACTIONS(2655), + [anon_sym_declare] = ACTIONS(2655), + [anon_sym_public] = ACTIONS(2655), + [anon_sym_private] = ACTIONS(2655), + [anon_sym_protected] = ACTIONS(2655), + [anon_sym_override] = ACTIONS(2655), + [anon_sym_module] = ACTIONS(2655), + [anon_sym_any] = ACTIONS(2655), + [anon_sym_number] = ACTIONS(2655), + [anon_sym_boolean] = ACTIONS(2655), + [anon_sym_string] = ACTIONS(2655), + [anon_sym_symbol] = ACTIONS(2655), + [anon_sym_object] = ACTIONS(2655), + [anon_sym_abstract] = ACTIONS(2655), + [anon_sym_interface] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), [sym_html_comment] = ACTIONS(5), }, [846] = { - [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), - [sym_glimmer_opening_tag] = 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(2670), - [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), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_export] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_typeof] = ACTIONS(2659), + [anon_sym_import] = ACTIONS(2659), + [anon_sym_with] = ACTIONS(2659), + [anon_sym_var] = ACTIONS(2659), + [anon_sym_let] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_await] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_debugger] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_function] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2657), + [sym_number] = ACTIONS(2657), + [sym_private_property_identifier] = ACTIONS(2657), + [sym_this] = ACTIONS(2659), + [sym_super] = ACTIONS(2659), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [sym_null] = ACTIONS(2659), + [sym_undefined] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_readonly] = ACTIONS(2659), + [anon_sym_get] = ACTIONS(2659), + [anon_sym_set] = ACTIONS(2659), + [anon_sym_declare] = ACTIONS(2659), + [anon_sym_public] = ACTIONS(2659), + [anon_sym_private] = ACTIONS(2659), + [anon_sym_protected] = ACTIONS(2659), + [anon_sym_override] = ACTIONS(2659), + [anon_sym_module] = ACTIONS(2659), + [anon_sym_any] = ACTIONS(2659), + [anon_sym_number] = ACTIONS(2659), + [anon_sym_boolean] = ACTIONS(2659), + [anon_sym_string] = ACTIONS(2659), + [anon_sym_symbol] = ACTIONS(2659), + [anon_sym_object] = ACTIONS(2659), + [anon_sym_abstract] = ACTIONS(2659), + [anon_sym_interface] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), [sym_html_comment] = ACTIONS(5), }, [847] = { - [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), - [sym_glimmer_opening_tag] = 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(2674), - [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), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2663), + [anon_sym_export] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_type] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_typeof] = ACTIONS(2663), + [anon_sym_import] = ACTIONS(2663), + [anon_sym_with] = ACTIONS(2663), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_let] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_await] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_debugger] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_yield] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_function] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_void] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2661), + [sym_number] = ACTIONS(2661), + [sym_private_property_identifier] = ACTIONS(2661), + [sym_this] = ACTIONS(2663), + [sym_super] = ACTIONS(2663), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [sym_null] = ACTIONS(2663), + [sym_undefined] = ACTIONS(2663), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_readonly] = ACTIONS(2663), + [anon_sym_get] = ACTIONS(2663), + [anon_sym_set] = ACTIONS(2663), + [anon_sym_declare] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_override] = ACTIONS(2663), + [anon_sym_module] = ACTIONS(2663), + [anon_sym_any] = ACTIONS(2663), + [anon_sym_number] = ACTIONS(2663), + [anon_sym_boolean] = ACTIONS(2663), + [anon_sym_string] = ACTIONS(2663), + [anon_sym_symbol] = ACTIONS(2663), + [anon_sym_object] = ACTIONS(2663), + [anon_sym_abstract] = ACTIONS(2663), + [anon_sym_interface] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), [sym_html_comment] = ACTIONS(5), }, [848] = { - [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), - [sym_glimmer_opening_tag] = 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(2678), - [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_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [849] = { - [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), - [sym_glimmer_opening_tag] = 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(2682), - [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), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_export] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_typeof] = ACTIONS(2669), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_with] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2669), + [anon_sym_let] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_await] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_debugger] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_yield] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_function] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_void] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2667), + [sym_number] = ACTIONS(2667), + [sym_private_property_identifier] = ACTIONS(2667), + [sym_this] = ACTIONS(2669), + [sym_super] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_undefined] = ACTIONS(2669), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_readonly] = ACTIONS(2669), + [anon_sym_get] = ACTIONS(2669), + [anon_sym_set] = ACTIONS(2669), + [anon_sym_declare] = ACTIONS(2669), + [anon_sym_public] = ACTIONS(2669), + [anon_sym_private] = ACTIONS(2669), + [anon_sym_protected] = ACTIONS(2669), + [anon_sym_override] = ACTIONS(2669), + [anon_sym_module] = ACTIONS(2669), + [anon_sym_any] = ACTIONS(2669), + [anon_sym_number] = ACTIONS(2669), + [anon_sym_boolean] = ACTIONS(2669), + [anon_sym_string] = ACTIONS(2669), + [anon_sym_symbol] = ACTIONS(2669), + [anon_sym_object] = ACTIONS(2669), + [anon_sym_abstract] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), [sym_html_comment] = ACTIONS(5), }, [850] = { - [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), - [sym_glimmer_opening_tag] = 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(2686), - [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), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_export] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_typeof] = ACTIONS(2673), + [anon_sym_import] = ACTIONS(2673), + [anon_sym_with] = ACTIONS(2673), + [anon_sym_var] = ACTIONS(2673), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_await] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_debugger] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_function] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_SLASH] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_void] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2671), + [sym_number] = ACTIONS(2671), + [sym_private_property_identifier] = ACTIONS(2671), + [sym_this] = ACTIONS(2673), + [sym_super] = ACTIONS(2673), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_undefined] = ACTIONS(2673), + [anon_sym_AT] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_readonly] = ACTIONS(2673), + [anon_sym_get] = ACTIONS(2673), + [anon_sym_set] = ACTIONS(2673), + [anon_sym_declare] = ACTIONS(2673), + [anon_sym_public] = ACTIONS(2673), + [anon_sym_private] = ACTIONS(2673), + [anon_sym_protected] = ACTIONS(2673), + [anon_sym_override] = ACTIONS(2673), + [anon_sym_module] = ACTIONS(2673), + [anon_sym_any] = ACTIONS(2673), + [anon_sym_number] = ACTIONS(2673), + [anon_sym_boolean] = ACTIONS(2673), + [anon_sym_string] = ACTIONS(2673), + [anon_sym_symbol] = ACTIONS(2673), + [anon_sym_object] = ACTIONS(2673), + [anon_sym_abstract] = ACTIONS(2673), + [anon_sym_interface] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), [sym_html_comment] = ACTIONS(5), }, [851] = { - [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), - [sym_glimmer_opening_tag] = 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(2690), - [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), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_export] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_typeof] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_await] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_debugger] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_void] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2675), + [sym_number] = ACTIONS(2675), + [sym_private_property_identifier] = ACTIONS(2675), + [sym_this] = ACTIONS(2677), + [sym_super] = ACTIONS(2677), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_undefined] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_readonly] = ACTIONS(2677), + [anon_sym_get] = ACTIONS(2677), + [anon_sym_set] = ACTIONS(2677), + [anon_sym_declare] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_protected] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_module] = ACTIONS(2677), + [anon_sym_any] = ACTIONS(2677), + [anon_sym_number] = ACTIONS(2677), + [anon_sym_boolean] = ACTIONS(2677), + [anon_sym_string] = ACTIONS(2677), + [anon_sym_symbol] = ACTIONS(2677), + [anon_sym_object] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), [sym_html_comment] = ACTIONS(5), }, [852] = { - [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), - [sym_glimmer_opening_tag] = 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(2694), - [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), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_export] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_type] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_typeof] = ACTIONS(2681), + [anon_sym_import] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2681), + [anon_sym_var] = ACTIONS(2681), + [anon_sym_let] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_await] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_debugger] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_void] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2679), + [sym_number] = ACTIONS(2679), + [sym_private_property_identifier] = ACTIONS(2679), + [sym_this] = ACTIONS(2681), + [sym_super] = ACTIONS(2681), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_undefined] = ACTIONS(2681), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_get] = ACTIONS(2681), + [anon_sym_set] = ACTIONS(2681), + [anon_sym_declare] = ACTIONS(2681), + [anon_sym_public] = ACTIONS(2681), + [anon_sym_private] = ACTIONS(2681), + [anon_sym_protected] = ACTIONS(2681), + [anon_sym_override] = ACTIONS(2681), + [anon_sym_module] = ACTIONS(2681), + [anon_sym_any] = ACTIONS(2681), + [anon_sym_number] = ACTIONS(2681), + [anon_sym_boolean] = ACTIONS(2681), + [anon_sym_string] = ACTIONS(2681), + [anon_sym_symbol] = ACTIONS(2681), + [anon_sym_object] = ACTIONS(2681), + [anon_sym_abstract] = ACTIONS(2681), + [anon_sym_interface] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), [sym_html_comment] = ACTIONS(5), }, [853] = { - [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), - [sym_glimmer_opening_tag] = 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(2698), - [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), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_export] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_typeof] = ACTIONS(2685), + [anon_sym_import] = ACTIONS(2685), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_var] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_debugger] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_void] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2683), + [sym_number] = ACTIONS(2683), + [sym_private_property_identifier] = ACTIONS(2683), + [sym_this] = ACTIONS(2685), + [sym_super] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_undefined] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_readonly] = ACTIONS(2685), + [anon_sym_get] = ACTIONS(2685), + [anon_sym_set] = ACTIONS(2685), + [anon_sym_declare] = ACTIONS(2685), + [anon_sym_public] = ACTIONS(2685), + [anon_sym_private] = ACTIONS(2685), + [anon_sym_protected] = ACTIONS(2685), + [anon_sym_override] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_any] = ACTIONS(2685), + [anon_sym_number] = ACTIONS(2685), + [anon_sym_boolean] = ACTIONS(2685), + [anon_sym_string] = ACTIONS(2685), + [anon_sym_symbol] = ACTIONS(2685), + [anon_sym_object] = ACTIONS(2685), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), [sym_html_comment] = ACTIONS(5), }, [854] = { - [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), - [sym_glimmer_opening_tag] = 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(2702), - [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), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_export] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_typeof] = ACTIONS(2689), + [anon_sym_import] = ACTIONS(2689), + [anon_sym_with] = ACTIONS(2689), + [anon_sym_var] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_else] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_await] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_debugger] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_function] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_void] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2687), + [sym_number] = ACTIONS(2687), + [sym_private_property_identifier] = ACTIONS(2687), + [sym_this] = ACTIONS(2689), + [sym_super] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_undefined] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_get] = ACTIONS(2689), + [anon_sym_set] = ACTIONS(2689), + [anon_sym_declare] = ACTIONS(2689), + [anon_sym_public] = ACTIONS(2689), + [anon_sym_private] = ACTIONS(2689), + [anon_sym_protected] = ACTIONS(2689), + [anon_sym_override] = ACTIONS(2689), + [anon_sym_module] = ACTIONS(2689), + [anon_sym_any] = ACTIONS(2689), + [anon_sym_number] = ACTIONS(2689), + [anon_sym_boolean] = ACTIONS(2689), + [anon_sym_string] = ACTIONS(2689), + [anon_sym_symbol] = ACTIONS(2689), + [anon_sym_object] = ACTIONS(2689), + [anon_sym_abstract] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), [sym_html_comment] = ACTIONS(5), }, [855] = { - [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), - [sym_glimmer_opening_tag] = 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(2706), - [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), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_export] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_typeof] = ACTIONS(2693), + [anon_sym_import] = ACTIONS(2693), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_var] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_await] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_debugger] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_void] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2691), + [sym_number] = ACTIONS(2691), + [sym_private_property_identifier] = ACTIONS(2691), + [sym_this] = ACTIONS(2693), + [sym_super] = ACTIONS(2693), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_undefined] = ACTIONS(2693), + [anon_sym_AT] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_get] = ACTIONS(2693), + [anon_sym_set] = ACTIONS(2693), + [anon_sym_declare] = ACTIONS(2693), + [anon_sym_public] = ACTIONS(2693), + [anon_sym_private] = ACTIONS(2693), + [anon_sym_protected] = ACTIONS(2693), + [anon_sym_override] = ACTIONS(2693), + [anon_sym_module] = ACTIONS(2693), + [anon_sym_any] = ACTIONS(2693), + [anon_sym_number] = ACTIONS(2693), + [anon_sym_boolean] = ACTIONS(2693), + [anon_sym_string] = ACTIONS(2693), + [anon_sym_symbol] = ACTIONS(2693), + [anon_sym_object] = ACTIONS(2693), + [anon_sym_abstract] = ACTIONS(2693), + [anon_sym_interface] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), [sym_html_comment] = ACTIONS(5), }, [856] = { - [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), - [sym_glimmer_opening_tag] = 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(2710), - [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), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_export] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_typeof] = ACTIONS(2697), + [anon_sym_import] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_var] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_await] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_debugger] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_yield] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_function] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_void] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2695), + [sym_number] = ACTIONS(2695), + [sym_private_property_identifier] = ACTIONS(2695), + [sym_this] = ACTIONS(2697), + [sym_super] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_undefined] = ACTIONS(2697), + [anon_sym_AT] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_readonly] = ACTIONS(2697), + [anon_sym_get] = ACTIONS(2697), + [anon_sym_set] = ACTIONS(2697), + [anon_sym_declare] = ACTIONS(2697), + [anon_sym_public] = ACTIONS(2697), + [anon_sym_private] = ACTIONS(2697), + [anon_sym_protected] = ACTIONS(2697), + [anon_sym_override] = ACTIONS(2697), + [anon_sym_module] = ACTIONS(2697), + [anon_sym_any] = ACTIONS(2697), + [anon_sym_number] = ACTIONS(2697), + [anon_sym_boolean] = ACTIONS(2697), + [anon_sym_string] = ACTIONS(2697), + [anon_sym_symbol] = ACTIONS(2697), + [anon_sym_object] = ACTIONS(2697), + [anon_sym_abstract] = ACTIONS(2697), + [anon_sym_interface] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), [sym_html_comment] = ACTIONS(5), }, [857] = { - [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), - [sym_glimmer_opening_tag] = 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(2714), - [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), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_typeof] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_debugger] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_void] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2699), + [sym_number] = ACTIONS(2699), + [sym_private_property_identifier] = ACTIONS(2699), + [sym_this] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_undefined] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_readonly] = ACTIONS(2701), + [anon_sym_get] = ACTIONS(2701), + [anon_sym_set] = ACTIONS(2701), + [anon_sym_declare] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_protected] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_any] = ACTIONS(2701), + [anon_sym_number] = ACTIONS(2701), + [anon_sym_boolean] = ACTIONS(2701), + [anon_sym_string] = ACTIONS(2701), + [anon_sym_symbol] = ACTIONS(2701), + [anon_sym_object] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), [sym_html_comment] = ACTIONS(5), }, [858] = { - [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), - [sym_glimmer_opening_tag] = 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(2718), - [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), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_export] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_typeof] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_with] = ACTIONS(2705), + [anon_sym_var] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_await] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_debugger] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_function] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_void] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2703), + [sym_number] = ACTIONS(2703), + [sym_private_property_identifier] = ACTIONS(2703), + [sym_this] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_undefined] = ACTIONS(2705), + [anon_sym_AT] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_readonly] = ACTIONS(2705), + [anon_sym_get] = ACTIONS(2705), + [anon_sym_set] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_private] = ACTIONS(2705), + [anon_sym_protected] = ACTIONS(2705), + [anon_sym_override] = ACTIONS(2705), + [anon_sym_module] = ACTIONS(2705), + [anon_sym_any] = ACTIONS(2705), + [anon_sym_number] = ACTIONS(2705), + [anon_sym_boolean] = ACTIONS(2705), + [anon_sym_string] = ACTIONS(2705), + [anon_sym_symbol] = ACTIONS(2705), + [anon_sym_object] = ACTIONS(2705), + [anon_sym_abstract] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), [sym_html_comment] = ACTIONS(5), }, [859] = { - [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), - [sym_glimmer_opening_tag] = 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(2722), - [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), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_export] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_typeof] = ACTIONS(2709), + [anon_sym_import] = ACTIONS(2709), + [anon_sym_with] = ACTIONS(2709), + [anon_sym_var] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_await] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_debugger] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_function] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_void] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2707), + [sym_number] = ACTIONS(2707), + [sym_private_property_identifier] = ACTIONS(2707), + [sym_this] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_undefined] = ACTIONS(2709), + [anon_sym_AT] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_readonly] = ACTIONS(2709), + [anon_sym_get] = ACTIONS(2709), + [anon_sym_set] = ACTIONS(2709), + [anon_sym_declare] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_protected] = ACTIONS(2709), + [anon_sym_override] = ACTIONS(2709), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_any] = ACTIONS(2709), + [anon_sym_number] = ACTIONS(2709), + [anon_sym_boolean] = ACTIONS(2709), + [anon_sym_string] = ACTIONS(2709), + [anon_sym_symbol] = ACTIONS(2709), + [anon_sym_object] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2709), + [anon_sym_interface] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), [sym_html_comment] = ACTIONS(5), }, [860] = { - [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), - [sym_glimmer_opening_tag] = 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(2726), - [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), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_export] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_typeof] = ACTIONS(2713), + [anon_sym_import] = ACTIONS(2713), + [anon_sym_with] = ACTIONS(2713), + [anon_sym_var] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_await] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_debugger] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_function] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_void] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2711), + [sym_number] = ACTIONS(2711), + [sym_private_property_identifier] = ACTIONS(2711), + [sym_this] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_undefined] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2711), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_readonly] = ACTIONS(2713), + [anon_sym_get] = ACTIONS(2713), + [anon_sym_set] = ACTIONS(2713), + [anon_sym_declare] = ACTIONS(2713), + [anon_sym_public] = ACTIONS(2713), + [anon_sym_private] = ACTIONS(2713), + [anon_sym_protected] = ACTIONS(2713), + [anon_sym_override] = ACTIONS(2713), + [anon_sym_module] = ACTIONS(2713), + [anon_sym_any] = ACTIONS(2713), + [anon_sym_number] = ACTIONS(2713), + [anon_sym_boolean] = ACTIONS(2713), + [anon_sym_string] = ACTIONS(2713), + [anon_sym_symbol] = ACTIONS(2713), + [anon_sym_object] = ACTIONS(2713), + [anon_sym_abstract] = ACTIONS(2713), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), [sym_html_comment] = ACTIONS(5), }, [861] = { - [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), - [sym_glimmer_opening_tag] = 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(2730), - [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), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_export] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_type] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_typeof] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2717), + [anon_sym_with] = ACTIONS(2717), + [anon_sym_var] = ACTIONS(2717), + [anon_sym_let] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_await] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_debugger] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_yield] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_function] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_SLASH] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_void] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2715), + [sym_number] = ACTIONS(2715), + [sym_private_property_identifier] = ACTIONS(2715), + [sym_this] = ACTIONS(2717), + [sym_super] = ACTIONS(2717), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_undefined] = ACTIONS(2717), + [anon_sym_AT] = ACTIONS(2715), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_get] = ACTIONS(2717), + [anon_sym_set] = ACTIONS(2717), + [anon_sym_declare] = ACTIONS(2717), + [anon_sym_public] = ACTIONS(2717), + [anon_sym_private] = ACTIONS(2717), + [anon_sym_protected] = ACTIONS(2717), + [anon_sym_override] = ACTIONS(2717), + [anon_sym_module] = ACTIONS(2717), + [anon_sym_any] = ACTIONS(2717), + [anon_sym_number] = ACTIONS(2717), + [anon_sym_boolean] = ACTIONS(2717), + [anon_sym_string] = ACTIONS(2717), + [anon_sym_symbol] = ACTIONS(2717), + [anon_sym_object] = ACTIONS(2717), + [anon_sym_abstract] = ACTIONS(2717), + [anon_sym_interface] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), [sym_html_comment] = ACTIONS(5), }, [862] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2734), - [anon_sym_default] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_RBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(2734), - [anon_sym_import] = ACTIONS(2734), - [anon_sym_with] = ACTIONS(2734), - [anon_sym_var] = ACTIONS(2734), - [anon_sym_let] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_await] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_debugger] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_case] = ACTIONS(2734), - [anon_sym_yield] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [sym_glimmer_opening_tag] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_async] = ACTIONS(2734), - [anon_sym_function] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_void] = ACTIONS(2734), - [anon_sym_delete] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2732), - [sym_number] = ACTIONS(2732), - [sym_private_property_identifier] = ACTIONS(2732), - [sym_this] = ACTIONS(2734), - [sym_super] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), - [sym_undefined] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_readonly] = ACTIONS(2734), - [anon_sym_get] = ACTIONS(2734), - [anon_sym_set] = ACTIONS(2734), - [anon_sym_declare] = ACTIONS(2734), - [anon_sym_public] = ACTIONS(2734), - [anon_sym_private] = ACTIONS(2734), - [anon_sym_protected] = ACTIONS(2734), - [anon_sym_override] = ACTIONS(2734), - [anon_sym_module] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2734), - [anon_sym_number] = ACTIONS(2734), - [anon_sym_boolean] = ACTIONS(2734), - [anon_sym_string] = ACTIONS(2734), - [anon_sym_symbol] = ACTIONS(2734), - [anon_sym_object] = ACTIONS(2734), - [anon_sym_abstract] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_typeof] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_with] = ACTIONS(2721), + [anon_sym_var] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_await] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_debugger] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_function] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_SLASH] = ACTIONS(2721), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_void] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2719), + [sym_number] = ACTIONS(2719), + [sym_private_property_identifier] = ACTIONS(2719), + [sym_this] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_undefined] = ACTIONS(2721), + [anon_sym_AT] = ACTIONS(2719), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_get] = ACTIONS(2721), + [anon_sym_set] = ACTIONS(2721), + [anon_sym_declare] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_private] = ACTIONS(2721), + [anon_sym_protected] = ACTIONS(2721), + [anon_sym_override] = ACTIONS(2721), + [anon_sym_module] = ACTIONS(2721), + [anon_sym_any] = ACTIONS(2721), + [anon_sym_number] = ACTIONS(2721), + [anon_sym_boolean] = ACTIONS(2721), + [anon_sym_string] = ACTIONS(2721), + [anon_sym_symbol] = ACTIONS(2721), + [anon_sym_object] = ACTIONS(2721), + [anon_sym_abstract] = ACTIONS(2721), + [anon_sym_interface] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), [sym_html_comment] = ACTIONS(5), }, [863] = { - [ts_builtin_sym_end] = ACTIONS(2736), - [sym_identifier] = ACTIONS(2738), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_typeof] = ACTIONS(2738), - [anon_sym_import] = ACTIONS(2738), - [anon_sym_with] = ACTIONS(2738), - [anon_sym_var] = ACTIONS(2738), - [anon_sym_let] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_await] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_debugger] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_throw] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2738), - [anon_sym_yield] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2736), - [sym_glimmer_opening_tag] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(2738), - [anon_sym_function] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2738), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_void] = ACTIONS(2738), - [anon_sym_delete] = ACTIONS(2738), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2736), - [sym_number] = ACTIONS(2736), - [sym_private_property_identifier] = ACTIONS(2736), - [sym_this] = ACTIONS(2738), - [sym_super] = ACTIONS(2738), - [sym_true] = ACTIONS(2738), - [sym_false] = ACTIONS(2738), - [sym_null] = ACTIONS(2738), - [sym_undefined] = ACTIONS(2738), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_override] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), - [anon_sym_object] = ACTIONS(2738), - [anon_sym_abstract] = ACTIONS(2738), - [anon_sym_interface] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_export] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_typeof] = ACTIONS(2725), + [anon_sym_import] = ACTIONS(2725), + [anon_sym_with] = ACTIONS(2725), + [anon_sym_var] = ACTIONS(2725), + [anon_sym_let] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_await] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_debugger] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_yield] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_async] = ACTIONS(2725), + [anon_sym_function] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_void] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2723), + [sym_number] = ACTIONS(2723), + [sym_private_property_identifier] = ACTIONS(2723), + [sym_this] = ACTIONS(2725), + [sym_super] = ACTIONS(2725), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_undefined] = ACTIONS(2725), + [anon_sym_AT] = ACTIONS(2723), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_readonly] = ACTIONS(2725), + [anon_sym_get] = ACTIONS(2725), + [anon_sym_set] = ACTIONS(2725), + [anon_sym_declare] = ACTIONS(2725), + [anon_sym_public] = ACTIONS(2725), + [anon_sym_private] = ACTIONS(2725), + [anon_sym_protected] = ACTIONS(2725), + [anon_sym_override] = ACTIONS(2725), + [anon_sym_module] = ACTIONS(2725), + [anon_sym_any] = ACTIONS(2725), + [anon_sym_number] = ACTIONS(2725), + [anon_sym_boolean] = ACTIONS(2725), + [anon_sym_string] = ACTIONS(2725), + [anon_sym_symbol] = ACTIONS(2725), + [anon_sym_object] = ACTIONS(2725), + [anon_sym_abstract] = ACTIONS(2725), + [anon_sym_interface] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), [sym_html_comment] = ACTIONS(5), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(2740), - [sym_identifier] = ACTIONS(2742), - [anon_sym_export] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_type] = ACTIONS(2742), - [anon_sym_namespace] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_typeof] = ACTIONS(2742), - [anon_sym_import] = ACTIONS(2742), - [anon_sym_with] = ACTIONS(2742), - [anon_sym_var] = ACTIONS(2742), - [anon_sym_let] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_else] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_await] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_debugger] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_throw] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2742), - [anon_sym_yield] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2740), - [sym_glimmer_opening_tag] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_async] = ACTIONS(2742), - [anon_sym_function] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2742), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_void] = ACTIONS(2742), - [anon_sym_delete] = ACTIONS(2742), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2740), - [sym_number] = ACTIONS(2740), - [sym_private_property_identifier] = ACTIONS(2740), - [sym_this] = ACTIONS(2742), - [sym_super] = ACTIONS(2742), - [sym_true] = ACTIONS(2742), - [sym_false] = ACTIONS(2742), - [sym_null] = ACTIONS(2742), - [sym_undefined] = ACTIONS(2742), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_readonly] = ACTIONS(2742), - [anon_sym_get] = ACTIONS(2742), - [anon_sym_set] = ACTIONS(2742), - [anon_sym_declare] = ACTIONS(2742), - [anon_sym_public] = ACTIONS(2742), - [anon_sym_private] = ACTIONS(2742), - [anon_sym_protected] = ACTIONS(2742), - [anon_sym_override] = ACTIONS(2742), - [anon_sym_module] = ACTIONS(2742), - [anon_sym_any] = ACTIONS(2742), - [anon_sym_number] = ACTIONS(2742), - [anon_sym_boolean] = ACTIONS(2742), - [anon_sym_string] = ACTIONS(2742), - [anon_sym_symbol] = ACTIONS(2742), - [anon_sym_object] = ACTIONS(2742), - [anon_sym_abstract] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_export] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_typeof] = ACTIONS(2729), + [anon_sym_import] = ACTIONS(2729), + [anon_sym_with] = ACTIONS(2729), + [anon_sym_var] = ACTIONS(2729), + [anon_sym_let] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_debugger] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_function] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_void] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2727), + [sym_number] = ACTIONS(2727), + [sym_private_property_identifier] = ACTIONS(2727), + [sym_this] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_undefined] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2727), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_readonly] = ACTIONS(2729), + [anon_sym_get] = ACTIONS(2729), + [anon_sym_set] = ACTIONS(2729), + [anon_sym_declare] = ACTIONS(2729), + [anon_sym_public] = ACTIONS(2729), + [anon_sym_private] = ACTIONS(2729), + [anon_sym_protected] = ACTIONS(2729), + [anon_sym_override] = ACTIONS(2729), + [anon_sym_module] = ACTIONS(2729), + [anon_sym_any] = ACTIONS(2729), + [anon_sym_number] = ACTIONS(2729), + [anon_sym_boolean] = ACTIONS(2729), + [anon_sym_string] = ACTIONS(2729), + [anon_sym_symbol] = ACTIONS(2729), + [anon_sym_object] = ACTIONS(2729), + [anon_sym_abstract] = ACTIONS(2729), + [anon_sym_interface] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), [sym_html_comment] = ACTIONS(5), }, [865] = { - [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), - [sym_glimmer_opening_tag] = 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(2706), - [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), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_with] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_await] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_debugger] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_void] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [sym_private_property_identifier] = ACTIONS(1884), + [sym_this] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_undefined] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_readonly] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1886), + [anon_sym_set] = ACTIONS(1886), + [anon_sym_declare] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_protected] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_any] = ACTIONS(1886), + [anon_sym_number] = ACTIONS(1886), + [anon_sym_boolean] = ACTIONS(1886), + [anon_sym_string] = ACTIONS(1886), + [anon_sym_symbol] = ACTIONS(1886), + [anon_sym_object] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), [sym_html_comment] = ACTIONS(5), }, [866] = { - [ts_builtin_sym_end] = ACTIONS(2744), - [sym_identifier] = ACTIONS(2746), - [anon_sym_export] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_namespace] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_typeof] = ACTIONS(2746), - [anon_sym_import] = ACTIONS(2746), - [anon_sym_with] = ACTIONS(2746), - [anon_sym_var] = ACTIONS(2746), - [anon_sym_let] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_else] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_await] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_do] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_debugger] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_throw] = ACTIONS(2746), - [anon_sym_case] = ACTIONS(2746), - [anon_sym_yield] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(2744), - [sym_glimmer_opening_tag] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_class] = ACTIONS(2746), - [anon_sym_async] = ACTIONS(2746), - [anon_sym_function] = ACTIONS(2746), - [anon_sym_new] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2746), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_SLASH] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_void] = ACTIONS(2746), - [anon_sym_delete] = ACTIONS(2746), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2744), - [sym_number] = ACTIONS(2744), - [sym_private_property_identifier] = ACTIONS(2744), - [sym_this] = ACTIONS(2746), - [sym_super] = ACTIONS(2746), - [sym_true] = ACTIONS(2746), - [sym_false] = ACTIONS(2746), - [sym_null] = ACTIONS(2746), - [sym_undefined] = ACTIONS(2746), - [anon_sym_AT] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_readonly] = ACTIONS(2746), - [anon_sym_get] = ACTIONS(2746), - [anon_sym_set] = ACTIONS(2746), - [anon_sym_declare] = ACTIONS(2746), - [anon_sym_public] = ACTIONS(2746), - [anon_sym_private] = ACTIONS(2746), - [anon_sym_protected] = ACTIONS(2746), - [anon_sym_override] = ACTIONS(2746), - [anon_sym_module] = ACTIONS(2746), - [anon_sym_any] = ACTIONS(2746), - [anon_sym_number] = ACTIONS(2746), - [anon_sym_boolean] = ACTIONS(2746), - [anon_sym_string] = ACTIONS(2746), - [anon_sym_symbol] = ACTIONS(2746), - [anon_sym_object] = ACTIONS(2746), - [anon_sym_abstract] = ACTIONS(2746), - [anon_sym_interface] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_typeof] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_debugger] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_void] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2699), + [sym_number] = ACTIONS(2699), + [sym_private_property_identifier] = ACTIONS(2699), + [sym_this] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_undefined] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_readonly] = ACTIONS(2701), + [anon_sym_get] = ACTIONS(2701), + [anon_sym_set] = ACTIONS(2701), + [anon_sym_declare] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_protected] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_any] = ACTIONS(2701), + [anon_sym_number] = ACTIONS(2701), + [anon_sym_boolean] = ACTIONS(2701), + [anon_sym_string] = ACTIONS(2701), + [anon_sym_symbol] = ACTIONS(2701), + [anon_sym_object] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), [sym_html_comment] = ACTIONS(5), }, [867] = { - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_typeof] = ACTIONS(2750), - [anon_sym_import] = ACTIONS(2750), - [anon_sym_with] = ACTIONS(2750), - [anon_sym_var] = ACTIONS(2750), - [anon_sym_let] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_else] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_await] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_debugger] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_throw] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_yield] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2748), - [sym_glimmer_opening_tag] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_async] = ACTIONS(2750), - [anon_sym_function] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_void] = ACTIONS(2750), - [anon_sym_delete] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2748), - [sym_number] = ACTIONS(2748), - [sym_private_property_identifier] = ACTIONS(2748), - [sym_this] = ACTIONS(2750), - [sym_super] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_null] = ACTIONS(2750), - [sym_undefined] = ACTIONS(2750), - [anon_sym_AT] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_readonly] = ACTIONS(2750), - [anon_sym_get] = ACTIONS(2750), - [anon_sym_set] = ACTIONS(2750), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2750), - [anon_sym_private] = ACTIONS(2750), - [anon_sym_protected] = ACTIONS(2750), - [anon_sym_override] = ACTIONS(2750), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), - [anon_sym_object] = ACTIONS(2750), - [anon_sym_abstract] = ACTIONS(2750), - [anon_sym_interface] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_export] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_type] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_typeof] = ACTIONS(2733), + [anon_sym_import] = ACTIONS(2733), + [anon_sym_with] = ACTIONS(2733), + [anon_sym_var] = ACTIONS(2733), + [anon_sym_let] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_await] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_debugger] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_yield] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_async] = ACTIONS(2733), + [anon_sym_function] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_SLASH] = ACTIONS(2733), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_void] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2731), + [sym_number] = ACTIONS(2731), + [sym_private_property_identifier] = ACTIONS(2731), + [sym_this] = ACTIONS(2733), + [sym_super] = ACTIONS(2733), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), + [sym_undefined] = ACTIONS(2733), + [anon_sym_AT] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_readonly] = ACTIONS(2733), + [anon_sym_get] = ACTIONS(2733), + [anon_sym_set] = ACTIONS(2733), + [anon_sym_declare] = ACTIONS(2733), + [anon_sym_public] = ACTIONS(2733), + [anon_sym_private] = ACTIONS(2733), + [anon_sym_protected] = ACTIONS(2733), + [anon_sym_override] = ACTIONS(2733), + [anon_sym_module] = ACTIONS(2733), + [anon_sym_any] = ACTIONS(2733), + [anon_sym_number] = ACTIONS(2733), + [anon_sym_boolean] = ACTIONS(2733), + [anon_sym_string] = ACTIONS(2733), + [anon_sym_symbol] = ACTIONS(2733), + [anon_sym_object] = ACTIONS(2733), + [anon_sym_abstract] = ACTIONS(2733), + [anon_sym_interface] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), [sym_html_comment] = ACTIONS(5), }, [868] = { - [ts_builtin_sym_end] = ACTIONS(2752), - [sym_identifier] = ACTIONS(2754), - [anon_sym_export] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_type] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(2754), - [anon_sym_import] = ACTIONS(2754), - [anon_sym_with] = ACTIONS(2754), - [anon_sym_var] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_else] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_await] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_debugger] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2752), - [sym_glimmer_opening_tag] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_async] = ACTIONS(2754), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_void] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2752), - [sym_number] = ACTIONS(2752), - [sym_private_property_identifier] = ACTIONS(2752), - [sym_this] = ACTIONS(2754), - [sym_super] = ACTIONS(2754), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [sym_null] = ACTIONS(2754), - [sym_undefined] = ACTIONS(2754), - [anon_sym_AT] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_readonly] = ACTIONS(2754), - [anon_sym_get] = ACTIONS(2754), - [anon_sym_set] = ACTIONS(2754), - [anon_sym_declare] = ACTIONS(2754), - [anon_sym_public] = ACTIONS(2754), - [anon_sym_private] = ACTIONS(2754), - [anon_sym_protected] = ACTIONS(2754), - [anon_sym_override] = ACTIONS(2754), - [anon_sym_module] = ACTIONS(2754), - [anon_sym_any] = ACTIONS(2754), - [anon_sym_number] = ACTIONS(2754), - [anon_sym_boolean] = ACTIONS(2754), - [anon_sym_string] = ACTIONS(2754), - [anon_sym_symbol] = ACTIONS(2754), - [anon_sym_object] = ACTIONS(2754), - [anon_sym_abstract] = ACTIONS(2754), - [anon_sym_interface] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [869] = { - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2758), - [anon_sym_export] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(2758), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_with] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_else] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_await] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_do] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_debugger] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_case] = ACTIONS(2758), - [anon_sym_yield] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2756), - [sym_glimmer_opening_tag] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(2758), - [anon_sym_async] = ACTIONS(2758), - [anon_sym_function] = ACTIONS(2758), - [anon_sym_new] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(2758), - [anon_sym_delete] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2756), - [sym_number] = ACTIONS(2756), - [sym_private_property_identifier] = ACTIONS(2756), - [sym_this] = ACTIONS(2758), - [sym_super] = ACTIONS(2758), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_null] = ACTIONS(2758), - [sym_undefined] = ACTIONS(2758), - [anon_sym_AT] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_readonly] = ACTIONS(2758), - [anon_sym_get] = ACTIONS(2758), - [anon_sym_set] = ACTIONS(2758), - [anon_sym_declare] = ACTIONS(2758), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2758), - [anon_sym_module] = ACTIONS(2758), - [anon_sym_any] = ACTIONS(2758), - [anon_sym_number] = ACTIONS(2758), - [anon_sym_boolean] = ACTIONS(2758), - [anon_sym_string] = ACTIONS(2758), - [anon_sym_symbol] = ACTIONS(2758), - [anon_sym_object] = ACTIONS(2758), - [anon_sym_abstract] = ACTIONS(2758), - [anon_sym_interface] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2739), + [anon_sym_export] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_type] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_typeof] = ACTIONS(2739), + [anon_sym_import] = ACTIONS(2739), + [anon_sym_with] = ACTIONS(2739), + [anon_sym_var] = ACTIONS(2739), + [anon_sym_let] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym_await] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_debugger] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_yield] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_async] = ACTIONS(2739), + [anon_sym_function] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_SLASH] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_void] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2737), + [sym_number] = ACTIONS(2737), + [sym_private_property_identifier] = ACTIONS(2737), + [sym_this] = ACTIONS(2739), + [sym_super] = ACTIONS(2739), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2739), + [anon_sym_get] = ACTIONS(2739), + [anon_sym_set] = ACTIONS(2739), + [anon_sym_declare] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_private] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_override] = ACTIONS(2739), + [anon_sym_module] = ACTIONS(2739), + [anon_sym_any] = ACTIONS(2739), + [anon_sym_number] = ACTIONS(2739), + [anon_sym_boolean] = ACTIONS(2739), + [anon_sym_string] = ACTIONS(2739), + [anon_sym_symbol] = ACTIONS(2739), + [anon_sym_object] = ACTIONS(2739), + [anon_sym_abstract] = ACTIONS(2739), + [anon_sym_interface] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), [sym_html_comment] = ACTIONS(5), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2760), - [sym_identifier] = ACTIONS(2762), - [anon_sym_export] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_type] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_typeof] = ACTIONS(2762), - [anon_sym_import] = ACTIONS(2762), - [anon_sym_with] = ACTIONS(2762), - [anon_sym_var] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_else] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_await] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_debugger] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_yield] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2760), - [sym_glimmer_opening_tag] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_function] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_TILDE] = ACTIONS(2760), - [anon_sym_void] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2760), - [sym_number] = ACTIONS(2760), - [sym_private_property_identifier] = ACTIONS(2760), - [sym_this] = ACTIONS(2762), - [sym_super] = ACTIONS(2762), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [sym_null] = ACTIONS(2762), - [sym_undefined] = ACTIONS(2762), - [anon_sym_AT] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2762), - [anon_sym_get] = ACTIONS(2762), - [anon_sym_set] = ACTIONS(2762), - [anon_sym_declare] = ACTIONS(2762), - [anon_sym_public] = ACTIONS(2762), - [anon_sym_private] = ACTIONS(2762), - [anon_sym_protected] = ACTIONS(2762), - [anon_sym_override] = ACTIONS(2762), - [anon_sym_module] = ACTIONS(2762), - [anon_sym_any] = ACTIONS(2762), - [anon_sym_number] = ACTIONS(2762), - [anon_sym_boolean] = ACTIONS(2762), - [anon_sym_string] = ACTIONS(2762), - [anon_sym_symbol] = ACTIONS(2762), - [anon_sym_object] = ACTIONS(2762), - [anon_sym_abstract] = ACTIONS(2762), - [anon_sym_interface] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_export] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_typeof] = ACTIONS(2743), + [anon_sym_import] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(2743), + [anon_sym_var] = ACTIONS(2743), + [anon_sym_let] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_await] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_debugger] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_yield] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_async] = ACTIONS(2743), + [anon_sym_function] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_void] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2741), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [sym_this] = ACTIONS(2743), + [sym_super] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_null] = ACTIONS(2743), + [sym_undefined] = ACTIONS(2743), + [anon_sym_AT] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_readonly] = ACTIONS(2743), + [anon_sym_get] = ACTIONS(2743), + [anon_sym_set] = ACTIONS(2743), + [anon_sym_declare] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_override] = ACTIONS(2743), + [anon_sym_module] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2743), + [anon_sym_number] = ACTIONS(2743), + [anon_sym_boolean] = ACTIONS(2743), + [anon_sym_string] = ACTIONS(2743), + [anon_sym_symbol] = ACTIONS(2743), + [anon_sym_object] = ACTIONS(2743), + [anon_sym_abstract] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), [sym_html_comment] = ACTIONS(5), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(2764), - [sym_identifier] = ACTIONS(2766), - [anon_sym_export] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_type] = ACTIONS(2766), - [anon_sym_namespace] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_typeof] = ACTIONS(2766), - [anon_sym_import] = ACTIONS(2766), - [anon_sym_with] = ACTIONS(2766), - [anon_sym_var] = ACTIONS(2766), - [anon_sym_let] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_else] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_await] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2766), - [anon_sym_do] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_debugger] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_throw] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2766), - [anon_sym_yield] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2764), - [sym_glimmer_opening_tag] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_async] = ACTIONS(2766), - [anon_sym_function] = ACTIONS(2766), - [anon_sym_new] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_void] = ACTIONS(2766), - [anon_sym_delete] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2764), - [sym_number] = ACTIONS(2764), - [sym_private_property_identifier] = ACTIONS(2764), - [sym_this] = ACTIONS(2766), - [sym_super] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_null] = ACTIONS(2766), - [sym_undefined] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_readonly] = ACTIONS(2766), - [anon_sym_get] = ACTIONS(2766), - [anon_sym_set] = ACTIONS(2766), - [anon_sym_declare] = ACTIONS(2766), - [anon_sym_public] = ACTIONS(2766), - [anon_sym_private] = ACTIONS(2766), - [anon_sym_protected] = ACTIONS(2766), - [anon_sym_override] = ACTIONS(2766), - [anon_sym_module] = ACTIONS(2766), - [anon_sym_any] = ACTIONS(2766), - [anon_sym_number] = ACTIONS(2766), - [anon_sym_boolean] = ACTIONS(2766), - [anon_sym_string] = ACTIONS(2766), - [anon_sym_symbol] = ACTIONS(2766), - [anon_sym_object] = ACTIONS(2766), - [anon_sym_abstract] = ACTIONS(2766), - [anon_sym_interface] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2747), + [anon_sym_export] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_type] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_typeof] = ACTIONS(2747), + [anon_sym_import] = ACTIONS(2747), + [anon_sym_with] = ACTIONS(2747), + [anon_sym_var] = ACTIONS(2747), + [anon_sym_let] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_debugger] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_yield] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_async] = ACTIONS(2747), + [anon_sym_function] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_void] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2745), + [sym_number] = ACTIONS(2745), + [sym_private_property_identifier] = ACTIONS(2745), + [sym_this] = ACTIONS(2747), + [sym_super] = ACTIONS(2747), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_undefined] = ACTIONS(2747), + [anon_sym_AT] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_readonly] = ACTIONS(2747), + [anon_sym_get] = ACTIONS(2747), + [anon_sym_set] = ACTIONS(2747), + [anon_sym_declare] = ACTIONS(2747), + [anon_sym_public] = ACTIONS(2747), + [anon_sym_private] = ACTIONS(2747), + [anon_sym_protected] = ACTIONS(2747), + [anon_sym_override] = ACTIONS(2747), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_any] = ACTIONS(2747), + [anon_sym_number] = ACTIONS(2747), + [anon_sym_boolean] = ACTIONS(2747), + [anon_sym_string] = ACTIONS(2747), + [anon_sym_symbol] = ACTIONS(2747), + [anon_sym_object] = ACTIONS(2747), + [anon_sym_abstract] = ACTIONS(2747), + [anon_sym_interface] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), [sym_html_comment] = ACTIONS(5), }, [872] = { - [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), - [sym_glimmer_opening_tag] = 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(2770), - [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), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1722), + [anon_sym_import] = ACTIONS(1722), + [anon_sym_with] = ACTIONS(1722), + [anon_sym_var] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_await] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_debugger] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1722), + [anon_sym_delete] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1720), + [sym_number] = ACTIONS(1720), + [sym_private_property_identifier] = ACTIONS(1720), + [sym_this] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_undefined] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_readonly] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_override] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [anon_sym_object] = ACTIONS(1722), + [anon_sym_abstract] = ACTIONS(1722), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), [sym_html_comment] = ACTIONS(5), }, [873] = { - [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), - [sym_glimmer_opening_tag] = 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(2774), - [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), + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2751), + [anon_sym_export] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_typeof] = ACTIONS(2751), + [anon_sym_import] = ACTIONS(2751), + [anon_sym_with] = ACTIONS(2751), + [anon_sym_var] = ACTIONS(2751), + [anon_sym_let] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_else] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_await] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_debugger] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_yield] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_async] = ACTIONS(2751), + [anon_sym_function] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_void] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2749), + [sym_number] = ACTIONS(2749), + [sym_private_property_identifier] = ACTIONS(2749), + [sym_this] = ACTIONS(2751), + [sym_super] = ACTIONS(2751), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_null] = ACTIONS(2751), + [sym_undefined] = ACTIONS(2751), + [anon_sym_AT] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_readonly] = ACTIONS(2751), + [anon_sym_get] = ACTIONS(2751), + [anon_sym_set] = ACTIONS(2751), + [anon_sym_declare] = ACTIONS(2751), + [anon_sym_public] = ACTIONS(2751), + [anon_sym_private] = ACTIONS(2751), + [anon_sym_protected] = ACTIONS(2751), + [anon_sym_override] = ACTIONS(2751), + [anon_sym_module] = ACTIONS(2751), + [anon_sym_any] = ACTIONS(2751), + [anon_sym_number] = ACTIONS(2751), + [anon_sym_boolean] = ACTIONS(2751), + [anon_sym_string] = ACTIONS(2751), + [anon_sym_symbol] = ACTIONS(2751), + [anon_sym_object] = ACTIONS(2751), + [anon_sym_abstract] = ACTIONS(2751), + [anon_sym_interface] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), [sym_html_comment] = ACTIONS(5), }, [874] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_export] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_typeof] = ACTIONS(2755), + [anon_sym_import] = ACTIONS(2755), + [anon_sym_with] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(2755), + [anon_sym_let] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_else] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_debugger] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_yield] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_async] = ACTIONS(2755), + [anon_sym_function] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_void] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2753), + [sym_number] = ACTIONS(2753), + [sym_private_property_identifier] = ACTIONS(2753), + [sym_this] = ACTIONS(2755), + [sym_super] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_null] = ACTIONS(2755), + [sym_undefined] = ACTIONS(2755), + [anon_sym_AT] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_readonly] = ACTIONS(2755), + [anon_sym_get] = ACTIONS(2755), + [anon_sym_set] = ACTIONS(2755), + [anon_sym_declare] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_private] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_override] = ACTIONS(2755), + [anon_sym_module] = ACTIONS(2755), + [anon_sym_any] = ACTIONS(2755), + [anon_sym_number] = ACTIONS(2755), + [anon_sym_boolean] = ACTIONS(2755), + [anon_sym_string] = ACTIONS(2755), + [anon_sym_symbol] = ACTIONS(2755), + [anon_sym_object] = ACTIONS(2755), + [anon_sym_abstract] = ACTIONS(2755), + [anon_sym_interface] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), [sym_html_comment] = ACTIONS(5), }, [875] = { - [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), - [sym_glimmer_opening_tag] = 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(2778), - [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), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_typeof] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_with] = ACTIONS(2721), + [anon_sym_var] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_await] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_debugger] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_function] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_SLASH] = ACTIONS(2721), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_void] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2719), + [sym_number] = ACTIONS(2719), + [sym_private_property_identifier] = ACTIONS(2719), + [sym_this] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_undefined] = ACTIONS(2721), + [anon_sym_AT] = ACTIONS(2719), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_get] = ACTIONS(2721), + [anon_sym_set] = ACTIONS(2721), + [anon_sym_declare] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_private] = ACTIONS(2721), + [anon_sym_protected] = ACTIONS(2721), + [anon_sym_override] = ACTIONS(2721), + [anon_sym_module] = ACTIONS(2721), + [anon_sym_any] = ACTIONS(2721), + [anon_sym_number] = ACTIONS(2721), + [anon_sym_boolean] = ACTIONS(2721), + [anon_sym_string] = ACTIONS(2721), + [anon_sym_symbol] = ACTIONS(2721), + [anon_sym_object] = ACTIONS(2721), + [anon_sym_abstract] = ACTIONS(2721), + [anon_sym_interface] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), [sym_html_comment] = ACTIONS(5), }, [876] = { - [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), - [sym_glimmer_opening_tag] = 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(2782), - [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_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_typeof] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_var] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_do] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_debugger] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_glimmer_opening_tag] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_function] = ACTIONS(1849), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_delete] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym_number] = ACTIONS(1847), - [sym_private_property_identifier] = ACTIONS(1847), - [sym_this] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_null] = ACTIONS(1849), - [sym_undefined] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), - [anon_sym_object] = ACTIONS(1849), - [anon_sym_abstract] = ACTIONS(1849), - [anon_sym_interface] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_export] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_typeof] = ACTIONS(2761), + [anon_sym_import] = ACTIONS(2761), + [anon_sym_with] = ACTIONS(2761), + [anon_sym_var] = ACTIONS(2761), + [anon_sym_let] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_else] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_await] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_debugger] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_yield] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_async] = ACTIONS(2761), + [anon_sym_function] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_void] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2759), + [sym_number] = ACTIONS(2759), + [sym_private_property_identifier] = ACTIONS(2759), + [sym_this] = ACTIONS(2761), + [sym_super] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_undefined] = ACTIONS(2761), + [anon_sym_AT] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_readonly] = ACTIONS(2761), + [anon_sym_get] = ACTIONS(2761), + [anon_sym_set] = ACTIONS(2761), + [anon_sym_declare] = ACTIONS(2761), + [anon_sym_public] = ACTIONS(2761), + [anon_sym_private] = ACTIONS(2761), + [anon_sym_protected] = ACTIONS(2761), + [anon_sym_override] = ACTIONS(2761), + [anon_sym_module] = ACTIONS(2761), + [anon_sym_any] = ACTIONS(2761), + [anon_sym_number] = ACTIONS(2761), + [anon_sym_boolean] = ACTIONS(2761), + [anon_sym_string] = ACTIONS(2761), + [anon_sym_symbol] = ACTIONS(2761), + [anon_sym_object] = ACTIONS(2761), + [anon_sym_abstract] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), [sym_html_comment] = ACTIONS(5), }, [878] = { - [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), - [sym_glimmer_opening_tag] = 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(2786), - [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), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2765), + [anon_sym_export] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_type] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_typeof] = ACTIONS(2765), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_with] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2765), + [anon_sym_let] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_await] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_debugger] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_yield] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_async] = ACTIONS(2765), + [anon_sym_function] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_void] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2763), + [sym_number] = ACTIONS(2763), + [sym_private_property_identifier] = ACTIONS(2763), + [sym_this] = ACTIONS(2765), + [sym_super] = ACTIONS(2765), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_undefined] = ACTIONS(2765), + [anon_sym_AT] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_readonly] = ACTIONS(2765), + [anon_sym_get] = ACTIONS(2765), + [anon_sym_set] = ACTIONS(2765), + [anon_sym_declare] = ACTIONS(2765), + [anon_sym_public] = ACTIONS(2765), + [anon_sym_private] = ACTIONS(2765), + [anon_sym_protected] = ACTIONS(2765), + [anon_sym_override] = ACTIONS(2765), + [anon_sym_module] = ACTIONS(2765), + [anon_sym_any] = ACTIONS(2765), + [anon_sym_number] = ACTIONS(2765), + [anon_sym_boolean] = ACTIONS(2765), + [anon_sym_string] = ACTIONS(2765), + [anon_sym_symbol] = ACTIONS(2765), + [anon_sym_object] = ACTIONS(2765), + [anon_sym_abstract] = ACTIONS(2765), + [anon_sym_interface] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4969), - [sym_optional_tuple_parameter] = STATE(4969), - [sym_optional_type] = STATE(4969), - [sym_rest_type] = STATE(4969), - [sym__tuple_type_member] = STATE(4969), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_typeof] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_debugger] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_void] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2699), + [sym_number] = ACTIONS(2699), + [sym_private_property_identifier] = ACTIONS(2699), + [sym_this] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_undefined] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_readonly] = ACTIONS(2701), + [anon_sym_get] = ACTIONS(2701), + [anon_sym_set] = ACTIONS(2701), + [anon_sym_declare] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_protected] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_any] = ACTIONS(2701), + [anon_sym_number] = ACTIONS(2701), + [anon_sym_boolean] = ACTIONS(2701), + [anon_sym_string] = ACTIONS(2701), + [anon_sym_symbol] = ACTIONS(2701), + [anon_sym_object] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), [sym_html_comment] = ACTIONS(5), }, [880] = { - [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), - [sym_glimmer_opening_tag] = 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(2706), - [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), + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2769), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_typeof] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_with] = ACTIONS(2769), + [anon_sym_var] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_await] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_debugger] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_function] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_SLASH] = ACTIONS(2769), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_void] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2767), + [sym_number] = ACTIONS(2767), + [sym_private_property_identifier] = ACTIONS(2767), + [sym_this] = ACTIONS(2769), + [sym_super] = ACTIONS(2769), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_undefined] = ACTIONS(2769), + [anon_sym_AT] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2769), + [anon_sym_get] = ACTIONS(2769), + [anon_sym_set] = ACTIONS(2769), + [anon_sym_declare] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_private] = ACTIONS(2769), + [anon_sym_protected] = ACTIONS(2769), + [anon_sym_override] = ACTIONS(2769), + [anon_sym_module] = ACTIONS(2769), + [anon_sym_any] = ACTIONS(2769), + [anon_sym_number] = ACTIONS(2769), + [anon_sym_boolean] = ACTIONS(2769), + [anon_sym_string] = ACTIONS(2769), + [anon_sym_symbol] = ACTIONS(2769), + [anon_sym_object] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_interface] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), [sym_html_comment] = ACTIONS(5), }, [881] = { - [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), - [sym_glimmer_opening_tag] = 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(2794), - [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), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2773), + [anon_sym_export] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_type] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_typeof] = ACTIONS(2773), + [anon_sym_import] = ACTIONS(2773), + [anon_sym_with] = ACTIONS(2773), + [anon_sym_var] = ACTIONS(2773), + [anon_sym_let] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_await] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_debugger] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_yield] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_function] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_void] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2771), + [sym_number] = ACTIONS(2771), + [sym_private_property_identifier] = ACTIONS(2771), + [sym_this] = ACTIONS(2773), + [sym_super] = ACTIONS(2773), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_undefined] = ACTIONS(2773), + [anon_sym_AT] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_readonly] = ACTIONS(2773), + [anon_sym_get] = ACTIONS(2773), + [anon_sym_set] = ACTIONS(2773), + [anon_sym_declare] = ACTIONS(2773), + [anon_sym_public] = ACTIONS(2773), + [anon_sym_private] = ACTIONS(2773), + [anon_sym_protected] = ACTIONS(2773), + [anon_sym_override] = ACTIONS(2773), + [anon_sym_module] = ACTIONS(2773), + [anon_sym_any] = ACTIONS(2773), + [anon_sym_number] = ACTIONS(2773), + [anon_sym_boolean] = ACTIONS(2773), + [anon_sym_string] = ACTIONS(2773), + [anon_sym_symbol] = ACTIONS(2773), + [anon_sym_object] = ACTIONS(2773), + [anon_sym_abstract] = ACTIONS(2773), + [anon_sym_interface] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), [sym_html_comment] = ACTIONS(5), }, [882] = { - [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), - [sym_glimmer_opening_tag] = 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(2798), - [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), + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym_import] = ACTIONS(1752), + [anon_sym_with] = ACTIONS(1752), + [anon_sym_var] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_await] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_debugger] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_class] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_function] = ACTIONS(1752), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_using] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_number] = ACTIONS(1750), + [sym_private_property_identifier] = ACTIONS(1750), + [sym_this] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_undefined] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_readonly] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_declare] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_module] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_number] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_symbol] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_abstract] = ACTIONS(1752), + [anon_sym_interface] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), [sym_html_comment] = ACTIONS(5), }, [883] = { - [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), - [sym_glimmer_opening_tag] = 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(2802), - [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), + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2777), + [anon_sym_export] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_type] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_typeof] = ACTIONS(2777), + [anon_sym_import] = ACTIONS(2777), + [anon_sym_with] = ACTIONS(2777), + [anon_sym_var] = ACTIONS(2777), + [anon_sym_let] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_await] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_debugger] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_yield] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_async] = ACTIONS(2777), + [anon_sym_function] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_SLASH] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_void] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2775), + [sym_number] = ACTIONS(2775), + [sym_private_property_identifier] = ACTIONS(2775), + [sym_this] = ACTIONS(2777), + [sym_super] = ACTIONS(2777), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), + [sym_undefined] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_readonly] = ACTIONS(2777), + [anon_sym_get] = ACTIONS(2777), + [anon_sym_set] = ACTIONS(2777), + [anon_sym_declare] = ACTIONS(2777), + [anon_sym_public] = ACTIONS(2777), + [anon_sym_private] = ACTIONS(2777), + [anon_sym_protected] = ACTIONS(2777), + [anon_sym_override] = ACTIONS(2777), + [anon_sym_module] = ACTIONS(2777), + [anon_sym_any] = ACTIONS(2777), + [anon_sym_number] = ACTIONS(2777), + [anon_sym_boolean] = ACTIONS(2777), + [anon_sym_string] = ACTIONS(2777), + [anon_sym_symbol] = ACTIONS(2777), + [anon_sym_object] = ACTIONS(2777), + [anon_sym_abstract] = ACTIONS(2777), + [anon_sym_interface] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), [sym_html_comment] = ACTIONS(5), }, [884] = { - [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), - [sym_glimmer_opening_tag] = 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(2806), - [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), + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2781), + [anon_sym_export] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_typeof] = ACTIONS(2781), + [anon_sym_import] = ACTIONS(2781), + [anon_sym_with] = ACTIONS(2781), + [anon_sym_var] = ACTIONS(2781), + [anon_sym_let] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_else] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_await] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_debugger] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_yield] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_SLASH] = ACTIONS(2781), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_void] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2779), + [sym_number] = ACTIONS(2779), + [sym_private_property_identifier] = ACTIONS(2779), + [sym_this] = ACTIONS(2781), + [sym_super] = ACTIONS(2781), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_undefined] = ACTIONS(2781), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(2781), + [anon_sym_get] = ACTIONS(2781), + [anon_sym_set] = ACTIONS(2781), + [anon_sym_declare] = ACTIONS(2781), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_protected] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2781), + [anon_sym_module] = ACTIONS(2781), + [anon_sym_any] = ACTIONS(2781), + [anon_sym_number] = ACTIONS(2781), + [anon_sym_boolean] = ACTIONS(2781), + [anon_sym_string] = ACTIONS(2781), + [anon_sym_symbol] = ACTIONS(2781), + [anon_sym_object] = ACTIONS(2781), + [anon_sym_abstract] = ACTIONS(2781), + [anon_sym_interface] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), [sym_html_comment] = ACTIONS(5), }, [885] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_namespace] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1765), - [anon_sym_with] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_debugger] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_throw] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [sym_glimmer_opening_tag] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_function] = ACTIONS(1765), - [anon_sym_new] = ACTIONS(1765), - [anon_sym_using] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_delete] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_number] = ACTIONS(1763), - [sym_private_property_identifier] = ACTIONS(1763), - [sym_this] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_null] = ACTIONS(1765), - [sym_undefined] = ACTIONS(1765), - [anon_sym_AT] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_readonly] = ACTIONS(1765), - [anon_sym_get] = ACTIONS(1765), - [anon_sym_set] = ACTIONS(1765), - [anon_sym_declare] = ACTIONS(1765), - [anon_sym_public] = ACTIONS(1765), - [anon_sym_private] = ACTIONS(1765), - [anon_sym_protected] = ACTIONS(1765), - [anon_sym_override] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_any] = ACTIONS(1765), - [anon_sym_number] = ACTIONS(1765), - [anon_sym_boolean] = ACTIONS(1765), - [anon_sym_string] = ACTIONS(1765), - [anon_sym_symbol] = ACTIONS(1765), - [anon_sym_object] = ACTIONS(1765), - [anon_sym_abstract] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2785), + [anon_sym_export] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_type] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_typeof] = ACTIONS(2785), + [anon_sym_import] = ACTIONS(2785), + [anon_sym_with] = ACTIONS(2785), + [anon_sym_var] = ACTIONS(2785), + [anon_sym_let] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_else] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_await] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_debugger] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_yield] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_async] = ACTIONS(2785), + [anon_sym_function] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_void] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2783), + [sym_number] = ACTIONS(2783), + [sym_private_property_identifier] = ACTIONS(2783), + [sym_this] = ACTIONS(2785), + [sym_super] = ACTIONS(2785), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_undefined] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_readonly] = ACTIONS(2785), + [anon_sym_get] = ACTIONS(2785), + [anon_sym_set] = ACTIONS(2785), + [anon_sym_declare] = ACTIONS(2785), + [anon_sym_public] = ACTIONS(2785), + [anon_sym_private] = ACTIONS(2785), + [anon_sym_protected] = ACTIONS(2785), + [anon_sym_override] = ACTIONS(2785), + [anon_sym_module] = ACTIONS(2785), + [anon_sym_any] = ACTIONS(2785), + [anon_sym_number] = ACTIONS(2785), + [anon_sym_boolean] = ACTIONS(2785), + [anon_sym_string] = ACTIONS(2785), + [anon_sym_symbol] = ACTIONS(2785), + [anon_sym_object] = ACTIONS(2785), + [anon_sym_abstract] = ACTIONS(2785), + [anon_sym_interface] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), [sym_html_comment] = ACTIONS(5), }, [886] = { - [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), - [sym_glimmer_opening_tag] = 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(2810), - [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), + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2789), + [anon_sym_export] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_type] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_typeof] = ACTIONS(2789), + [anon_sym_import] = ACTIONS(2789), + [anon_sym_with] = ACTIONS(2789), + [anon_sym_var] = ACTIONS(2789), + [anon_sym_let] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_await] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_debugger] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_yield] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_async] = ACTIONS(2789), + [anon_sym_function] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_SLASH] = ACTIONS(2789), + [anon_sym_LT] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_void] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2787), + [sym_number] = ACTIONS(2787), + [sym_private_property_identifier] = ACTIONS(2787), + [sym_this] = ACTIONS(2789), + [sym_super] = ACTIONS(2789), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [sym_undefined] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_readonly] = ACTIONS(2789), + [anon_sym_get] = ACTIONS(2789), + [anon_sym_set] = ACTIONS(2789), + [anon_sym_declare] = ACTIONS(2789), + [anon_sym_public] = ACTIONS(2789), + [anon_sym_private] = ACTIONS(2789), + [anon_sym_protected] = ACTIONS(2789), + [anon_sym_override] = ACTIONS(2789), + [anon_sym_module] = ACTIONS(2789), + [anon_sym_any] = ACTIONS(2789), + [anon_sym_number] = ACTIONS(2789), + [anon_sym_boolean] = ACTIONS(2789), + [anon_sym_string] = ACTIONS(2789), + [anon_sym_symbol] = ACTIONS(2789), + [anon_sym_object] = ACTIONS(2789), + [anon_sym_abstract] = ACTIONS(2789), + [anon_sym_interface] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), [sym_html_comment] = ACTIONS(5), }, [887] = { - [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), - [sym_glimmer_opening_tag] = 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(2814), - [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), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_namespace] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(1854), + [anon_sym_with] = ACTIONS(1854), + [anon_sym_var] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_await] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_debugger] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_class] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_function] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_void] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1852), + [sym_number] = ACTIONS(1852), + [sym_private_property_identifier] = ACTIONS(1852), + [sym_this] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_undefined] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_readonly] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(1854), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_declare] = ACTIONS(1854), + [anon_sym_public] = ACTIONS(1854), + [anon_sym_private] = ACTIONS(1854), + [anon_sym_protected] = ACTIONS(1854), + [anon_sym_override] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_any] = ACTIONS(1854), + [anon_sym_number] = ACTIONS(1854), + [anon_sym_boolean] = ACTIONS(1854), + [anon_sym_string] = ACTIONS(1854), + [anon_sym_symbol] = ACTIONS(1854), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), [sym_html_comment] = ACTIONS(5), }, [888] = { - [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), - [sym_glimmer_opening_tag] = 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(2818), - [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), + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2793), + [anon_sym_export] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_type] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), + [anon_sym_import] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2793), + [anon_sym_var] = ACTIONS(2793), + [anon_sym_let] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_else] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_await] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_debugger] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_yield] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_function] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_SLASH] = ACTIONS(2793), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_void] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2791), + [sym_number] = ACTIONS(2791), + [sym_private_property_identifier] = ACTIONS(2791), + [sym_this] = ACTIONS(2793), + [sym_super] = ACTIONS(2793), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), + [sym_undefined] = ACTIONS(2793), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_readonly] = ACTIONS(2793), + [anon_sym_get] = ACTIONS(2793), + [anon_sym_set] = ACTIONS(2793), + [anon_sym_declare] = ACTIONS(2793), + [anon_sym_public] = ACTIONS(2793), + [anon_sym_private] = ACTIONS(2793), + [anon_sym_protected] = ACTIONS(2793), + [anon_sym_override] = ACTIONS(2793), + [anon_sym_module] = ACTIONS(2793), + [anon_sym_any] = ACTIONS(2793), + [anon_sym_number] = ACTIONS(2793), + [anon_sym_boolean] = ACTIONS(2793), + [anon_sym_string] = ACTIONS(2793), + [anon_sym_symbol] = ACTIONS(2793), + [anon_sym_object] = ACTIONS(2793), + [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_interface] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), [sym_html_comment] = ACTIONS(5), }, [889] = { - [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), - [sym_glimmer_opening_tag] = 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(2822), - [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_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [890] = { - [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), - [sym_glimmer_opening_tag] = 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(2826), - [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), + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2799), + [anon_sym_export] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_type] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_typeof] = ACTIONS(2799), + [anon_sym_import] = ACTIONS(2799), + [anon_sym_with] = ACTIONS(2799), + [anon_sym_var] = ACTIONS(2799), + [anon_sym_let] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_else] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_await] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_debugger] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_yield] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_async] = ACTIONS(2799), + [anon_sym_function] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_void] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2797), + [sym_number] = ACTIONS(2797), + [sym_private_property_identifier] = ACTIONS(2797), + [sym_this] = ACTIONS(2799), + [sym_super] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [sym_null] = ACTIONS(2799), + [sym_undefined] = ACTIONS(2799), + [anon_sym_AT] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_get] = ACTIONS(2799), + [anon_sym_set] = ACTIONS(2799), + [anon_sym_declare] = ACTIONS(2799), + [anon_sym_public] = ACTIONS(2799), + [anon_sym_private] = ACTIONS(2799), + [anon_sym_protected] = ACTIONS(2799), + [anon_sym_override] = ACTIONS(2799), + [anon_sym_module] = ACTIONS(2799), + [anon_sym_any] = ACTIONS(2799), + [anon_sym_number] = ACTIONS(2799), + [anon_sym_boolean] = ACTIONS(2799), + [anon_sym_string] = ACTIONS(2799), + [anon_sym_symbol] = ACTIONS(2799), + [anon_sym_object] = ACTIONS(2799), + [anon_sym_abstract] = ACTIONS(2799), + [anon_sym_interface] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), [sym_html_comment] = ACTIONS(5), }, [891] = { - [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), - [sym_glimmer_opening_tag] = 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(2830), - [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), + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2803), + [anon_sym_export] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_type] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_typeof] = ACTIONS(2803), + [anon_sym_import] = ACTIONS(2803), + [anon_sym_with] = ACTIONS(2803), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_else] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_await] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_debugger] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_async] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_void] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2801), + [sym_number] = ACTIONS(2801), + [sym_private_property_identifier] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), + [sym_super] = ACTIONS(2803), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [sym_null] = ACTIONS(2803), + [sym_undefined] = ACTIONS(2803), + [anon_sym_AT] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_get] = ACTIONS(2803), + [anon_sym_set] = ACTIONS(2803), + [anon_sym_declare] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_override] = ACTIONS(2803), + [anon_sym_module] = ACTIONS(2803), + [anon_sym_any] = ACTIONS(2803), + [anon_sym_number] = ACTIONS(2803), + [anon_sym_boolean] = ACTIONS(2803), + [anon_sym_string] = ACTIONS(2803), + [anon_sym_symbol] = ACTIONS(2803), + [anon_sym_object] = ACTIONS(2803), + [anon_sym_abstract] = ACTIONS(2803), + [anon_sym_interface] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), [sym_html_comment] = ACTIONS(5), }, [892] = { - [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), - [sym_glimmer_opening_tag] = 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(2822), - [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), + [ts_builtin_sym_end] = ACTIONS(2805), + [sym_identifier] = ACTIONS(2807), + [anon_sym_export] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_typeof] = ACTIONS(2807), + [anon_sym_import] = ACTIONS(2807), + [anon_sym_with] = ACTIONS(2807), + [anon_sym_var] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_else] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_await] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_debugger] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_async] = ACTIONS(2807), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_SLASH] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_void] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2805), + [sym_number] = ACTIONS(2805), + [sym_private_property_identifier] = ACTIONS(2805), + [sym_this] = ACTIONS(2807), + [sym_super] = ACTIONS(2807), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [sym_null] = ACTIONS(2807), + [sym_undefined] = ACTIONS(2807), + [anon_sym_AT] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_readonly] = ACTIONS(2807), + [anon_sym_get] = ACTIONS(2807), + [anon_sym_set] = ACTIONS(2807), + [anon_sym_declare] = ACTIONS(2807), + [anon_sym_public] = ACTIONS(2807), + [anon_sym_private] = ACTIONS(2807), + [anon_sym_protected] = ACTIONS(2807), + [anon_sym_override] = ACTIONS(2807), + [anon_sym_module] = ACTIONS(2807), + [anon_sym_any] = ACTIONS(2807), + [anon_sym_number] = ACTIONS(2807), + [anon_sym_boolean] = ACTIONS(2807), + [anon_sym_string] = ACTIONS(2807), + [anon_sym_symbol] = ACTIONS(2807), + [anon_sym_object] = ACTIONS(2807), + [anon_sym_abstract] = ACTIONS(2807), + [anon_sym_interface] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), [sym_html_comment] = ACTIONS(5), }, [893] = { - [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), - [sym_glimmer_opening_tag] = 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(2834), - [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), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_export] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_typeof] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_var] = ACTIONS(2811), + [anon_sym_let] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_debugger] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_function] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_void] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_number] = ACTIONS(2809), + [sym_private_property_identifier] = ACTIONS(2809), + [sym_this] = ACTIONS(2811), + [sym_super] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), + [sym_undefined] = ACTIONS(2811), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_get] = ACTIONS(2811), + [anon_sym_set] = ACTIONS(2811), + [anon_sym_declare] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_private] = ACTIONS(2811), + [anon_sym_protected] = ACTIONS(2811), + [anon_sym_override] = ACTIONS(2811), + [anon_sym_module] = ACTIONS(2811), + [anon_sym_any] = ACTIONS(2811), + [anon_sym_number] = ACTIONS(2811), + [anon_sym_boolean] = ACTIONS(2811), + [anon_sym_string] = ACTIONS(2811), + [anon_sym_symbol] = ACTIONS(2811), + [anon_sym_object] = ACTIONS(2811), + [anon_sym_abstract] = ACTIONS(2811), + [anon_sym_interface] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), [sym_html_comment] = ACTIONS(5), }, [894] = { - [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), - [sym_glimmer_opening_tag] = 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(2838), - [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), + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2815), + [anon_sym_export] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_type] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_typeof] = ACTIONS(2815), + [anon_sym_import] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_var] = ACTIONS(2815), + [anon_sym_let] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_await] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_debugger] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_yield] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_async] = ACTIONS(2815), + [anon_sym_function] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_void] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2813), + [sym_number] = ACTIONS(2813), + [sym_private_property_identifier] = ACTIONS(2813), + [sym_this] = ACTIONS(2815), + [sym_super] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_null] = ACTIONS(2815), + [sym_undefined] = ACTIONS(2815), + [anon_sym_AT] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_readonly] = ACTIONS(2815), + [anon_sym_get] = ACTIONS(2815), + [anon_sym_set] = ACTIONS(2815), + [anon_sym_declare] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_private] = ACTIONS(2815), + [anon_sym_protected] = ACTIONS(2815), + [anon_sym_override] = ACTIONS(2815), + [anon_sym_module] = ACTIONS(2815), + [anon_sym_any] = ACTIONS(2815), + [anon_sym_number] = ACTIONS(2815), + [anon_sym_boolean] = ACTIONS(2815), + [anon_sym_string] = ACTIONS(2815), + [anon_sym_symbol] = ACTIONS(2815), + [anon_sym_object] = ACTIONS(2815), + [anon_sym_abstract] = ACTIONS(2815), + [anon_sym_interface] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), [sym_html_comment] = ACTIONS(5), }, [895] = { - [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), - [sym_glimmer_opening_tag] = 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(2842), - [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), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_export] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_typeof] = ACTIONS(2819), + [anon_sym_import] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2819), + [anon_sym_var] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_else] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_debugger] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_function] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_void] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2817), + [sym_number] = ACTIONS(2817), + [sym_private_property_identifier] = ACTIONS(2817), + [sym_this] = ACTIONS(2819), + [sym_super] = ACTIONS(2819), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_null] = ACTIONS(2819), + [sym_undefined] = ACTIONS(2819), + [anon_sym_AT] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_readonly] = ACTIONS(2819), + [anon_sym_get] = ACTIONS(2819), + [anon_sym_set] = ACTIONS(2819), + [anon_sym_declare] = ACTIONS(2819), + [anon_sym_public] = ACTIONS(2819), + [anon_sym_private] = ACTIONS(2819), + [anon_sym_protected] = ACTIONS(2819), + [anon_sym_override] = ACTIONS(2819), + [anon_sym_module] = ACTIONS(2819), + [anon_sym_any] = ACTIONS(2819), + [anon_sym_number] = ACTIONS(2819), + [anon_sym_boolean] = ACTIONS(2819), + [anon_sym_string] = ACTIONS(2819), + [anon_sym_symbol] = ACTIONS(2819), + [anon_sym_object] = ACTIONS(2819), + [anon_sym_abstract] = ACTIONS(2819), + [anon_sym_interface] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), [sym_html_comment] = ACTIONS(5), }, [896] = { - [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), - [sym_glimmer_opening_tag] = 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(2846), - [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), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_export] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_typeof] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_var] = ACTIONS(2811), + [anon_sym_let] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_debugger] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_function] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_void] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_number] = ACTIONS(2809), + [sym_private_property_identifier] = ACTIONS(2809), + [sym_this] = ACTIONS(2811), + [sym_super] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), + [sym_undefined] = ACTIONS(2811), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_get] = ACTIONS(2811), + [anon_sym_set] = ACTIONS(2811), + [anon_sym_declare] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_private] = ACTIONS(2811), + [anon_sym_protected] = ACTIONS(2811), + [anon_sym_override] = ACTIONS(2811), + [anon_sym_module] = ACTIONS(2811), + [anon_sym_any] = ACTIONS(2811), + [anon_sym_number] = ACTIONS(2811), + [anon_sym_boolean] = ACTIONS(2811), + [anon_sym_string] = ACTIONS(2811), + [anon_sym_symbol] = ACTIONS(2811), + [anon_sym_object] = ACTIONS(2811), + [anon_sym_abstract] = ACTIONS(2811), + [anon_sym_interface] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), [sym_html_comment] = ACTIONS(5), }, [897] = { - [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), - [sym_glimmer_opening_tag] = 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(2850), - [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), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_export] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_typeof] = ACTIONS(2823), + [anon_sym_import] = ACTIONS(2823), + [anon_sym_with] = ACTIONS(2823), + [anon_sym_var] = ACTIONS(2823), + [anon_sym_let] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_else] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_debugger] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_async] = ACTIONS(2823), + [anon_sym_function] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_void] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2821), + [sym_number] = ACTIONS(2821), + [sym_private_property_identifier] = ACTIONS(2821), + [sym_this] = ACTIONS(2823), + [sym_super] = ACTIONS(2823), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_null] = ACTIONS(2823), + [sym_undefined] = ACTIONS(2823), + [anon_sym_AT] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_readonly] = ACTIONS(2823), + [anon_sym_get] = ACTIONS(2823), + [anon_sym_set] = ACTIONS(2823), + [anon_sym_declare] = ACTIONS(2823), + [anon_sym_public] = ACTIONS(2823), + [anon_sym_private] = ACTIONS(2823), + [anon_sym_protected] = ACTIONS(2823), + [anon_sym_override] = ACTIONS(2823), + [anon_sym_module] = ACTIONS(2823), + [anon_sym_any] = ACTIONS(2823), + [anon_sym_number] = ACTIONS(2823), + [anon_sym_boolean] = ACTIONS(2823), + [anon_sym_string] = ACTIONS(2823), + [anon_sym_symbol] = ACTIONS(2823), + [anon_sym_object] = ACTIONS(2823), + [anon_sym_abstract] = ACTIONS(2823), + [anon_sym_interface] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), [sym_html_comment] = ACTIONS(5), }, [898] = { - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(1863), - [anon_sym_import] = ACTIONS(1863), - [anon_sym_with] = ACTIONS(1863), - [anon_sym_var] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_await] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_debugger] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1861), - [sym_glimmer_opening_tag] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_function] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_void] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1861), - [sym_number] = ACTIONS(1861), - [sym_private_property_identifier] = ACTIONS(1861), - [sym_this] = ACTIONS(1863), - [sym_super] = ACTIONS(1863), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_undefined] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1861), - [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), - [anon_sym_abstract] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2827), + [anon_sym_export] = ACTIONS(2827), + [anon_sym_default] = ACTIONS(2827), + [anon_sym_type] = ACTIONS(2827), + [anon_sym_namespace] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_typeof] = ACTIONS(2827), + [anon_sym_import] = ACTIONS(2827), + [anon_sym_with] = ACTIONS(2827), + [anon_sym_var] = ACTIONS(2827), + [anon_sym_let] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_else] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2827), + [anon_sym_switch] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_await] = ACTIONS(2827), + [anon_sym_while] = ACTIONS(2827), + [anon_sym_do] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [anon_sym_break] = ACTIONS(2827), + [anon_sym_continue] = ACTIONS(2827), + [anon_sym_debugger] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2827), + [anon_sym_throw] = ACTIONS(2827), + [anon_sym_case] = ACTIONS(2827), + [anon_sym_yield] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2827), + [anon_sym_async] = ACTIONS(2827), + [anon_sym_function] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2827), + [anon_sym_SLASH] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_void] = ACTIONS(2827), + [anon_sym_delete] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2825), + [sym_number] = ACTIONS(2825), + [sym_private_property_identifier] = ACTIONS(2825), + [sym_this] = ACTIONS(2827), + [sym_super] = ACTIONS(2827), + [sym_true] = ACTIONS(2827), + [sym_false] = ACTIONS(2827), + [sym_null] = ACTIONS(2827), + [sym_undefined] = ACTIONS(2827), + [anon_sym_AT] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_readonly] = ACTIONS(2827), + [anon_sym_get] = ACTIONS(2827), + [anon_sym_set] = ACTIONS(2827), + [anon_sym_declare] = ACTIONS(2827), + [anon_sym_public] = ACTIONS(2827), + [anon_sym_private] = ACTIONS(2827), + [anon_sym_protected] = ACTIONS(2827), + [anon_sym_override] = ACTIONS(2827), + [anon_sym_module] = ACTIONS(2827), + [anon_sym_any] = ACTIONS(2827), + [anon_sym_number] = ACTIONS(2827), + [anon_sym_boolean] = ACTIONS(2827), + [anon_sym_string] = ACTIONS(2827), + [anon_sym_symbol] = ACTIONS(2827), + [anon_sym_object] = ACTIONS(2827), + [anon_sym_abstract] = ACTIONS(2827), + [anon_sym_interface] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), [sym_html_comment] = ACTIONS(5), }, [899] = { - [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), - [sym_glimmer_opening_tag] = 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(2854), - [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), + [ts_builtin_sym_end] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), + [anon_sym_export] = ACTIONS(2831), + [anon_sym_default] = ACTIONS(2831), + [anon_sym_type] = ACTIONS(2831), + [anon_sym_namespace] = ACTIONS(2831), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_typeof] = ACTIONS(2831), + [anon_sym_import] = ACTIONS(2831), + [anon_sym_with] = ACTIONS(2831), + [anon_sym_var] = ACTIONS(2831), + [anon_sym_let] = ACTIONS(2831), + [anon_sym_const] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_switch] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_await] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_do] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_debugger] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_throw] = ACTIONS(2831), + [anon_sym_case] = ACTIONS(2831), + [anon_sym_yield] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2831), + [anon_sym_async] = ACTIONS(2831), + [anon_sym_function] = ACTIONS(2831), + [anon_sym_new] = ACTIONS(2831), + [anon_sym_using] = ACTIONS(2831), + [anon_sym_PLUS] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2831), + [anon_sym_SLASH] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_void] = ACTIONS(2831), + [anon_sym_delete] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2829), + [sym_number] = ACTIONS(2829), + [sym_private_property_identifier] = ACTIONS(2829), + [sym_this] = ACTIONS(2831), + [sym_super] = ACTIONS(2831), + [sym_true] = ACTIONS(2831), + [sym_false] = ACTIONS(2831), + [sym_null] = ACTIONS(2831), + [sym_undefined] = ACTIONS(2831), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2831), + [anon_sym_readonly] = ACTIONS(2831), + [anon_sym_get] = ACTIONS(2831), + [anon_sym_set] = ACTIONS(2831), + [anon_sym_declare] = ACTIONS(2831), + [anon_sym_public] = ACTIONS(2831), + [anon_sym_private] = ACTIONS(2831), + [anon_sym_protected] = ACTIONS(2831), + [anon_sym_override] = ACTIONS(2831), + [anon_sym_module] = ACTIONS(2831), + [anon_sym_any] = ACTIONS(2831), + [anon_sym_number] = ACTIONS(2831), + [anon_sym_boolean] = ACTIONS(2831), + [anon_sym_string] = ACTIONS(2831), + [anon_sym_symbol] = ACTIONS(2831), + [anon_sym_object] = ACTIONS(2831), + [anon_sym_abstract] = ACTIONS(2831), + [anon_sym_interface] = ACTIONS(2831), + [anon_sym_enum] = ACTIONS(2831), [sym_html_comment] = ACTIONS(5), }, [900] = { - [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), - [sym_glimmer_opening_tag] = 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(2858), - [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_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [901] = { - [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), - [sym_glimmer_opening_tag] = 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(2858), - [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), + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2837), + [anon_sym_export] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_with] = ACTIONS(2837), + [anon_sym_var] = ACTIONS(2837), + [anon_sym_let] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_else] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_debugger] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_yield] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_async] = ACTIONS(2837), + [anon_sym_function] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_void] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2835), + [sym_number] = ACTIONS(2835), + [sym_private_property_identifier] = ACTIONS(2835), + [sym_this] = ACTIONS(2837), + [sym_super] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_undefined] = ACTIONS(2837), + [anon_sym_AT] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_readonly] = ACTIONS(2837), + [anon_sym_get] = ACTIONS(2837), + [anon_sym_set] = ACTIONS(2837), + [anon_sym_declare] = ACTIONS(2837), + [anon_sym_public] = ACTIONS(2837), + [anon_sym_private] = ACTIONS(2837), + [anon_sym_protected] = ACTIONS(2837), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_module] = ACTIONS(2837), + [anon_sym_any] = ACTIONS(2837), + [anon_sym_number] = ACTIONS(2837), + [anon_sym_boolean] = ACTIONS(2837), + [anon_sym_string] = ACTIONS(2837), + [anon_sym_symbol] = ACTIONS(2837), + [anon_sym_object] = ACTIONS(2837), + [anon_sym_abstract] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), [sym_html_comment] = ACTIONS(5), }, [902] = { - [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), - [sym_glimmer_opening_tag] = 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(2858), - [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), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_export] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_typeof] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [anon_sym_let] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_debugger] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_void] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2839), + [sym_number] = ACTIONS(2839), + [sym_private_property_identifier] = ACTIONS(2839), + [sym_this] = ACTIONS(2841), + [sym_super] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_undefined] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_get] = ACTIONS(2841), + [anon_sym_set] = ACTIONS(2841), + [anon_sym_declare] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_protected] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_module] = ACTIONS(2841), + [anon_sym_any] = ACTIONS(2841), + [anon_sym_number] = ACTIONS(2841), + [anon_sym_boolean] = ACTIONS(2841), + [anon_sym_string] = ACTIONS(2841), + [anon_sym_symbol] = ACTIONS(2841), + [anon_sym_object] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, [903] = { - [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), - [sym_glimmer_opening_tag] = 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(2862), - [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), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_export] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_typeof] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [anon_sym_let] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_debugger] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_void] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2839), + [sym_number] = ACTIONS(2839), + [sym_private_property_identifier] = ACTIONS(2839), + [sym_this] = ACTIONS(2841), + [sym_super] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_undefined] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_get] = ACTIONS(2841), + [anon_sym_set] = ACTIONS(2841), + [anon_sym_declare] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_protected] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_module] = ACTIONS(2841), + [anon_sym_any] = ACTIONS(2841), + [anon_sym_number] = ACTIONS(2841), + [anon_sym_boolean] = ACTIONS(2841), + [anon_sym_string] = ACTIONS(2841), + [anon_sym_symbol] = ACTIONS(2841), + [anon_sym_object] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, [904] = { - [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), - [sym_glimmer_opening_tag] = 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(2866), - [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), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_export] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_typeof] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [anon_sym_let] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_debugger] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_void] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2839), + [sym_number] = ACTIONS(2839), + [sym_private_property_identifier] = ACTIONS(2839), + [sym_this] = ACTIONS(2841), + [sym_super] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_undefined] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_get] = ACTIONS(2841), + [anon_sym_set] = ACTIONS(2841), + [anon_sym_declare] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_protected] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_module] = ACTIONS(2841), + [anon_sym_any] = ACTIONS(2841), + [anon_sym_number] = ACTIONS(2841), + [anon_sym_boolean] = ACTIONS(2841), + [anon_sym_string] = ACTIONS(2841), + [anon_sym_symbol] = ACTIONS(2841), + [anon_sym_object] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, [905] = { - [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), - [sym_glimmer_opening_tag] = 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(2870), - [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), + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2845), + [anon_sym_export] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_type] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_typeof] = ACTIONS(2845), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_with] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2845), + [anon_sym_let] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_else] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_debugger] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_yield] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_function] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_void] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2843), + [sym_number] = ACTIONS(2843), + [sym_private_property_identifier] = ACTIONS(2843), + [sym_this] = ACTIONS(2845), + [sym_super] = ACTIONS(2845), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_undefined] = ACTIONS(2845), + [anon_sym_AT] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_readonly] = ACTIONS(2845), + [anon_sym_get] = ACTIONS(2845), + [anon_sym_set] = ACTIONS(2845), + [anon_sym_declare] = ACTIONS(2845), + [anon_sym_public] = ACTIONS(2845), + [anon_sym_private] = ACTIONS(2845), + [anon_sym_protected] = ACTIONS(2845), + [anon_sym_override] = ACTIONS(2845), + [anon_sym_module] = ACTIONS(2845), + [anon_sym_any] = ACTIONS(2845), + [anon_sym_number] = ACTIONS(2845), + [anon_sym_boolean] = ACTIONS(2845), + [anon_sym_string] = ACTIONS(2845), + [anon_sym_symbol] = ACTIONS(2845), + [anon_sym_object] = ACTIONS(2845), + [anon_sym_abstract] = ACTIONS(2845), + [anon_sym_interface] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), [sym_html_comment] = ACTIONS(5), }, [906] = { - [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), - [sym_glimmer_opening_tag] = 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(2874), - [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_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2847), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(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), - [sym_glimmer_opening_tag] = 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(2878), - [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), + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2851), + [anon_sym_export] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_typeof] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2851), + [anon_sym_with] = ACTIONS(2851), + [anon_sym_var] = ACTIONS(2851), + [anon_sym_let] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_else] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_await] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_debugger] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_yield] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_async] = ACTIONS(2851), + [anon_sym_function] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_void] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2849), + [sym_number] = ACTIONS(2849), + [sym_private_property_identifier] = ACTIONS(2849), + [sym_this] = ACTIONS(2851), + [sym_super] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [sym_null] = ACTIONS(2851), + [sym_undefined] = ACTIONS(2851), + [anon_sym_AT] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_readonly] = ACTIONS(2851), + [anon_sym_get] = ACTIONS(2851), + [anon_sym_set] = ACTIONS(2851), + [anon_sym_declare] = ACTIONS(2851), + [anon_sym_public] = ACTIONS(2851), + [anon_sym_private] = ACTIONS(2851), + [anon_sym_protected] = ACTIONS(2851), + [anon_sym_override] = ACTIONS(2851), + [anon_sym_module] = ACTIONS(2851), + [anon_sym_any] = ACTIONS(2851), + [anon_sym_number] = ACTIONS(2851), + [anon_sym_boolean] = ACTIONS(2851), + [anon_sym_string] = ACTIONS(2851), + [anon_sym_symbol] = ACTIONS(2851), + [anon_sym_object] = ACTIONS(2851), + [anon_sym_abstract] = ACTIONS(2851), + [anon_sym_interface] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), [sym_html_comment] = ACTIONS(5), }, [908] = { - [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), - [sym_glimmer_opening_tag] = 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(2778), - [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), + [ts_builtin_sym_end] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2855), + [anon_sym_export] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_typeof] = ACTIONS(2855), + [anon_sym_import] = ACTIONS(2855), + [anon_sym_with] = ACTIONS(2855), + [anon_sym_var] = ACTIONS(2855), + [anon_sym_let] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_else] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_await] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_debugger] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_yield] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_function] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2853), + [sym_number] = ACTIONS(2853), + [sym_private_property_identifier] = ACTIONS(2853), + [sym_this] = ACTIONS(2855), + [sym_super] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_null] = ACTIONS(2855), + [sym_undefined] = ACTIONS(2855), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_readonly] = ACTIONS(2855), + [anon_sym_get] = ACTIONS(2855), + [anon_sym_set] = ACTIONS(2855), + [anon_sym_declare] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_override] = ACTIONS(2855), + [anon_sym_module] = ACTIONS(2855), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2855), + [anon_sym_interface] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), [sym_html_comment] = ACTIONS(5), }, [909] = { - [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), - [sym_glimmer_opening_tag] = 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(2878), - [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), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2859), + [anon_sym_export] = ACTIONS(2859), + [anon_sym_default] = ACTIONS(2859), + [anon_sym_type] = ACTIONS(2859), + [anon_sym_namespace] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_typeof] = ACTIONS(2859), + [anon_sym_import] = ACTIONS(2859), + [anon_sym_with] = ACTIONS(2859), + [anon_sym_var] = ACTIONS(2859), + [anon_sym_let] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_await] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_debugger] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_throw] = ACTIONS(2859), + [anon_sym_case] = ACTIONS(2859), + [anon_sym_yield] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2859), + [anon_sym_async] = ACTIONS(2859), + [anon_sym_function] = ACTIONS(2859), + [anon_sym_new] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_void] = ACTIONS(2859), + [anon_sym_delete] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2857), + [sym_private_property_identifier] = ACTIONS(2857), + [sym_this] = ACTIONS(2859), + [sym_super] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [sym_null] = ACTIONS(2859), + [sym_undefined] = ACTIONS(2859), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_readonly] = ACTIONS(2859), + [anon_sym_get] = ACTIONS(2859), + [anon_sym_set] = ACTIONS(2859), + [anon_sym_declare] = ACTIONS(2859), + [anon_sym_public] = ACTIONS(2859), + [anon_sym_private] = ACTIONS(2859), + [anon_sym_protected] = ACTIONS(2859), + [anon_sym_override] = ACTIONS(2859), + [anon_sym_module] = ACTIONS(2859), + [anon_sym_any] = ACTIONS(2859), + [anon_sym_number] = ACTIONS(2859), + [anon_sym_boolean] = ACTIONS(2859), + [anon_sym_string] = ACTIONS(2859), + [anon_sym_symbol] = ACTIONS(2859), + [anon_sym_object] = ACTIONS(2859), + [anon_sym_abstract] = ACTIONS(2859), + [anon_sym_interface] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), [sym_html_comment] = ACTIONS(5), }, [910] = { - [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), - [sym_glimmer_opening_tag] = 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(2882), - [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), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2863), + [anon_sym_export] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_typeof] = ACTIONS(2863), + [anon_sym_import] = ACTIONS(2863), + [anon_sym_with] = ACTIONS(2863), + [anon_sym_var] = ACTIONS(2863), + [anon_sym_let] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_else] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym_await] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_debugger] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_yield] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_async] = ACTIONS(2863), + [anon_sym_function] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_void] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2861), + [sym_number] = ACTIONS(2861), + [sym_private_property_identifier] = ACTIONS(2861), + [sym_this] = ACTIONS(2863), + [sym_super] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_AT] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_get] = ACTIONS(2863), + [anon_sym_set] = ACTIONS(2863), + [anon_sym_declare] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_override] = ACTIONS(2863), + [anon_sym_module] = ACTIONS(2863), + [anon_sym_any] = ACTIONS(2863), + [anon_sym_number] = ACTIONS(2863), + [anon_sym_boolean] = ACTIONS(2863), + [anon_sym_string] = ACTIONS(2863), + [anon_sym_symbol] = ACTIONS(2863), + [anon_sym_object] = ACTIONS(2863), + [anon_sym_abstract] = ACTIONS(2863), + [anon_sym_interface] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), [sym_html_comment] = ACTIONS(5), }, [911] = { - [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), - [sym_glimmer_opening_tag] = 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(2886), - [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), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_export] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_typeof] = ACTIONS(2867), + [anon_sym_import] = ACTIONS(2867), + [anon_sym_with] = ACTIONS(2867), + [anon_sym_var] = ACTIONS(2867), + [anon_sym_let] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym_await] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_debugger] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_yield] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_async] = ACTIONS(2867), + [anon_sym_function] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_void] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2865), + [sym_number] = ACTIONS(2865), + [sym_private_property_identifier] = ACTIONS(2865), + [sym_this] = ACTIONS(2867), + [sym_super] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_null] = ACTIONS(2867), + [sym_undefined] = ACTIONS(2867), + [anon_sym_AT] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_readonly] = ACTIONS(2867), + [anon_sym_get] = ACTIONS(2867), + [anon_sym_set] = ACTIONS(2867), + [anon_sym_declare] = ACTIONS(2867), + [anon_sym_public] = ACTIONS(2867), + [anon_sym_private] = ACTIONS(2867), + [anon_sym_protected] = ACTIONS(2867), + [anon_sym_override] = ACTIONS(2867), + [anon_sym_module] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2867), + [anon_sym_number] = ACTIONS(2867), + [anon_sym_boolean] = ACTIONS(2867), + [anon_sym_string] = ACTIONS(2867), + [anon_sym_symbol] = ACTIONS(2867), + [anon_sym_object] = ACTIONS(2867), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), [sym_html_comment] = ACTIONS(5), }, [912] = { - [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), - [sym_glimmer_opening_tag] = 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(2890), - [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), + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2871), + [anon_sym_export] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_type] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_typeof] = ACTIONS(2871), + [anon_sym_import] = ACTIONS(2871), + [anon_sym_with] = ACTIONS(2871), + [anon_sym_var] = ACTIONS(2871), + [anon_sym_let] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym_await] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_debugger] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_yield] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_async] = ACTIONS(2871), + [anon_sym_function] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_void] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2869), + [sym_number] = ACTIONS(2869), + [sym_private_property_identifier] = ACTIONS(2869), + [sym_this] = ACTIONS(2871), + [sym_super] = ACTIONS(2871), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [sym_null] = ACTIONS(2871), + [sym_undefined] = ACTIONS(2871), + [anon_sym_AT] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_readonly] = ACTIONS(2871), + [anon_sym_get] = ACTIONS(2871), + [anon_sym_set] = ACTIONS(2871), + [anon_sym_declare] = ACTIONS(2871), + [anon_sym_public] = ACTIONS(2871), + [anon_sym_private] = ACTIONS(2871), + [anon_sym_protected] = ACTIONS(2871), + [anon_sym_override] = ACTIONS(2871), + [anon_sym_module] = ACTIONS(2871), + [anon_sym_any] = ACTIONS(2871), + [anon_sym_number] = ACTIONS(2871), + [anon_sym_boolean] = ACTIONS(2871), + [anon_sym_string] = ACTIONS(2871), + [anon_sym_symbol] = ACTIONS(2871), + [anon_sym_object] = ACTIONS(2871), + [anon_sym_abstract] = ACTIONS(2871), + [anon_sym_interface] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), [sym_html_comment] = ACTIONS(5), }, [913] = { - [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), - [sym_glimmer_opening_tag] = 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(2894), - [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), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2875), + [anon_sym_export] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_type] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_typeof] = ACTIONS(2875), + [anon_sym_import] = ACTIONS(2875), + [anon_sym_with] = ACTIONS(2875), + [anon_sym_var] = ACTIONS(2875), + [anon_sym_let] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_await] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_debugger] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_yield] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_function] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_void] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2873), + [sym_number] = ACTIONS(2873), + [sym_private_property_identifier] = ACTIONS(2873), + [sym_this] = ACTIONS(2875), + [sym_super] = ACTIONS(2875), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_undefined] = ACTIONS(2875), + [anon_sym_AT] = ACTIONS(2873), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_readonly] = ACTIONS(2875), + [anon_sym_get] = ACTIONS(2875), + [anon_sym_set] = ACTIONS(2875), + [anon_sym_declare] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_override] = ACTIONS(2875), + [anon_sym_module] = ACTIONS(2875), + [anon_sym_any] = ACTIONS(2875), + [anon_sym_number] = ACTIONS(2875), + [anon_sym_boolean] = ACTIONS(2875), + [anon_sym_string] = ACTIONS(2875), + [anon_sym_symbol] = ACTIONS(2875), + [anon_sym_object] = ACTIONS(2875), + [anon_sym_abstract] = ACTIONS(2875), + [anon_sym_interface] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), [sym_html_comment] = ACTIONS(5), }, [914] = { - [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), - [sym_glimmer_opening_tag] = 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(2898), - [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), + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2879), + [anon_sym_export] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_type] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_typeof] = ACTIONS(2879), + [anon_sym_import] = ACTIONS(2879), + [anon_sym_with] = ACTIONS(2879), + [anon_sym_var] = ACTIONS(2879), + [anon_sym_let] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_debugger] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_yield] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_async] = ACTIONS(2879), + [anon_sym_function] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_void] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2877), + [sym_number] = ACTIONS(2877), + [sym_private_property_identifier] = ACTIONS(2877), + [sym_this] = ACTIONS(2879), + [sym_super] = ACTIONS(2879), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [sym_null] = ACTIONS(2879), + [sym_undefined] = ACTIONS(2879), + [anon_sym_AT] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_readonly] = ACTIONS(2879), + [anon_sym_get] = ACTIONS(2879), + [anon_sym_set] = ACTIONS(2879), + [anon_sym_declare] = ACTIONS(2879), + [anon_sym_public] = ACTIONS(2879), + [anon_sym_private] = ACTIONS(2879), + [anon_sym_protected] = ACTIONS(2879), + [anon_sym_override] = ACTIONS(2879), + [anon_sym_module] = ACTIONS(2879), + [anon_sym_any] = ACTIONS(2879), + [anon_sym_number] = ACTIONS(2879), + [anon_sym_boolean] = ACTIONS(2879), + [anon_sym_string] = ACTIONS(2879), + [anon_sym_symbol] = ACTIONS(2879), + [anon_sym_object] = ACTIONS(2879), + [anon_sym_abstract] = ACTIONS(2879), + [anon_sym_interface] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), [sym_html_comment] = ACTIONS(5), }, [915] = { - [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), - [sym_glimmer_opening_tag] = 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(2902), - [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), + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2883), + [anon_sym_export] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_type] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_typeof] = ACTIONS(2883), + [anon_sym_import] = ACTIONS(2883), + [anon_sym_with] = ACTIONS(2883), + [anon_sym_var] = ACTIONS(2883), + [anon_sym_let] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2881), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_await] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_debugger] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_yield] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_async] = ACTIONS(2883), + [anon_sym_function] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_void] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2881), + [sym_number] = ACTIONS(2881), + [sym_private_property_identifier] = ACTIONS(2881), + [sym_this] = ACTIONS(2883), + [sym_super] = ACTIONS(2883), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_null] = ACTIONS(2883), + [sym_undefined] = ACTIONS(2883), + [anon_sym_AT] = ACTIONS(2881), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_readonly] = ACTIONS(2883), + [anon_sym_get] = ACTIONS(2883), + [anon_sym_set] = ACTIONS(2883), + [anon_sym_declare] = ACTIONS(2883), + [anon_sym_public] = ACTIONS(2883), + [anon_sym_private] = ACTIONS(2883), + [anon_sym_protected] = ACTIONS(2883), + [anon_sym_override] = ACTIONS(2883), + [anon_sym_module] = ACTIONS(2883), + [anon_sym_any] = ACTIONS(2883), + [anon_sym_number] = ACTIONS(2883), + [anon_sym_boolean] = ACTIONS(2883), + [anon_sym_string] = ACTIONS(2883), + [anon_sym_symbol] = ACTIONS(2883), + [anon_sym_object] = ACTIONS(2883), + [anon_sym_abstract] = ACTIONS(2883), + [anon_sym_interface] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), [sym_html_comment] = ACTIONS(5), }, [916] = { - [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), - [sym_glimmer_opening_tag] = 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(2906), - [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), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2875), + [anon_sym_export] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_type] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_typeof] = ACTIONS(2875), + [anon_sym_import] = ACTIONS(2875), + [anon_sym_with] = ACTIONS(2875), + [anon_sym_var] = ACTIONS(2875), + [anon_sym_let] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_await] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_debugger] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_yield] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_function] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_void] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2873), + [sym_number] = ACTIONS(2873), + [sym_private_property_identifier] = ACTIONS(2873), + [sym_this] = ACTIONS(2875), + [sym_super] = ACTIONS(2875), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_undefined] = ACTIONS(2875), + [anon_sym_AT] = ACTIONS(2873), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_readonly] = ACTIONS(2875), + [anon_sym_get] = ACTIONS(2875), + [anon_sym_set] = ACTIONS(2875), + [anon_sym_declare] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_override] = ACTIONS(2875), + [anon_sym_module] = ACTIONS(2875), + [anon_sym_any] = ACTIONS(2875), + [anon_sym_number] = ACTIONS(2875), + [anon_sym_boolean] = ACTIONS(2875), + [anon_sym_string] = ACTIONS(2875), + [anon_sym_symbol] = ACTIONS(2875), + [anon_sym_object] = ACTIONS(2875), + [anon_sym_abstract] = ACTIONS(2875), + [anon_sym_interface] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), [sym_html_comment] = ACTIONS(5), }, [917] = { - [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), - [sym_glimmer_opening_tag] = 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(2902), - [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), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_export] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_typeof] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_with] = ACTIONS(2887), + [anon_sym_var] = ACTIONS(2887), + [anon_sym_let] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_await] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_debugger] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_function] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_void] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2885), + [sym_number] = ACTIONS(2885), + [sym_private_property_identifier] = ACTIONS(2885), + [sym_this] = ACTIONS(2887), + [sym_super] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_undefined] = ACTIONS(2887), + [anon_sym_AT] = ACTIONS(2885), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_readonly] = ACTIONS(2887), + [anon_sym_get] = ACTIONS(2887), + [anon_sym_set] = ACTIONS(2887), + [anon_sym_declare] = ACTIONS(2887), + [anon_sym_public] = ACTIONS(2887), + [anon_sym_private] = ACTIONS(2887), + [anon_sym_protected] = ACTIONS(2887), + [anon_sym_override] = ACTIONS(2887), + [anon_sym_module] = ACTIONS(2887), + [anon_sym_any] = ACTIONS(2887), + [anon_sym_number] = ACTIONS(2887), + [anon_sym_boolean] = ACTIONS(2887), + [anon_sym_string] = ACTIONS(2887), + [anon_sym_symbol] = ACTIONS(2887), + [anon_sym_object] = ACTIONS(2887), + [anon_sym_abstract] = ACTIONS(2887), + [anon_sym_interface] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), [sym_html_comment] = ACTIONS(5), }, [918] = { - [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), - [sym_glimmer_opening_tag] = 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(2910), - [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), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_export] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_typeof] = ACTIONS(2891), + [anon_sym_import] = ACTIONS(2891), + [anon_sym_with] = ACTIONS(2891), + [anon_sym_var] = ACTIONS(2891), + [anon_sym_let] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_await] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_debugger] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_yield] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2891), + [anon_sym_function] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_void] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2889), + [sym_number] = ACTIONS(2889), + [sym_private_property_identifier] = ACTIONS(2889), + [sym_this] = ACTIONS(2891), + [sym_super] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [sym_undefined] = ACTIONS(2891), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_readonly] = ACTIONS(2891), + [anon_sym_get] = ACTIONS(2891), + [anon_sym_set] = ACTIONS(2891), + [anon_sym_declare] = ACTIONS(2891), + [anon_sym_public] = ACTIONS(2891), + [anon_sym_private] = ACTIONS(2891), + [anon_sym_protected] = ACTIONS(2891), + [anon_sym_override] = ACTIONS(2891), + [anon_sym_module] = ACTIONS(2891), + [anon_sym_any] = ACTIONS(2891), + [anon_sym_number] = ACTIONS(2891), + [anon_sym_boolean] = ACTIONS(2891), + [anon_sym_string] = ACTIONS(2891), + [anon_sym_symbol] = ACTIONS(2891), + [anon_sym_object] = ACTIONS(2891), + [anon_sym_abstract] = ACTIONS(2891), + [anon_sym_interface] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), [sym_html_comment] = ACTIONS(5), }, [919] = { - [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), - [sym_glimmer_opening_tag] = 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(2914), - [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), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_export] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_type] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_typeof] = ACTIONS(2895), + [anon_sym_import] = ACTIONS(2895), + [anon_sym_with] = ACTIONS(2895), + [anon_sym_var] = ACTIONS(2895), + [anon_sym_let] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_await] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_debugger] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_yield] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_async] = ACTIONS(2895), + [anon_sym_function] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_void] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2893), + [sym_number] = ACTIONS(2893), + [sym_private_property_identifier] = ACTIONS(2893), + [sym_this] = ACTIONS(2895), + [sym_super] = ACTIONS(2895), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_null] = ACTIONS(2895), + [sym_undefined] = ACTIONS(2895), + [anon_sym_AT] = ACTIONS(2893), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_readonly] = ACTIONS(2895), + [anon_sym_get] = ACTIONS(2895), + [anon_sym_set] = ACTIONS(2895), + [anon_sym_declare] = ACTIONS(2895), + [anon_sym_public] = ACTIONS(2895), + [anon_sym_private] = ACTIONS(2895), + [anon_sym_protected] = ACTIONS(2895), + [anon_sym_override] = ACTIONS(2895), + [anon_sym_module] = ACTIONS(2895), + [anon_sym_any] = ACTIONS(2895), + [anon_sym_number] = ACTIONS(2895), + [anon_sym_boolean] = ACTIONS(2895), + [anon_sym_string] = ACTIONS(2895), + [anon_sym_symbol] = ACTIONS(2895), + [anon_sym_object] = ACTIONS(2895), + [anon_sym_abstract] = ACTIONS(2895), + [anon_sym_interface] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), [sym_html_comment] = ACTIONS(5), }, [920] = { - [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), - [sym_glimmer_opening_tag] = 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(2918), - [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), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_export] = ACTIONS(2899), + [anon_sym_default] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_namespace] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_typeof] = ACTIONS(2899), + [anon_sym_import] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_var] = ACTIONS(2899), + [anon_sym_let] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_switch] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_await] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_do] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_debugger] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_throw] = ACTIONS(2899), + [anon_sym_case] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_function] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_using] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_void] = ACTIONS(2899), + [anon_sym_delete] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2897), + [sym_number] = ACTIONS(2897), + [sym_private_property_identifier] = ACTIONS(2897), + [sym_this] = ACTIONS(2899), + [sym_super] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_null] = ACTIONS(2899), + [sym_undefined] = ACTIONS(2899), + [anon_sym_AT] = ACTIONS(2897), + [anon_sym_static] = ACTIONS(2899), + [anon_sym_readonly] = ACTIONS(2899), + [anon_sym_get] = ACTIONS(2899), + [anon_sym_set] = ACTIONS(2899), + [anon_sym_declare] = ACTIONS(2899), + [anon_sym_public] = ACTIONS(2899), + [anon_sym_private] = ACTIONS(2899), + [anon_sym_protected] = ACTIONS(2899), + [anon_sym_override] = ACTIONS(2899), + [anon_sym_module] = ACTIONS(2899), + [anon_sym_any] = ACTIONS(2899), + [anon_sym_number] = ACTIONS(2899), + [anon_sym_boolean] = ACTIONS(2899), + [anon_sym_string] = ACTIONS(2899), + [anon_sym_symbol] = ACTIONS(2899), + [anon_sym_object] = ACTIONS(2899), + [anon_sym_abstract] = ACTIONS(2899), + [anon_sym_interface] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), [sym_html_comment] = ACTIONS(5), }, [921] = { - [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), - [sym_glimmer_opening_tag] = 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(2922), - [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), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_export] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_typeof] = ACTIONS(2903), + [anon_sym_import] = ACTIONS(2903), + [anon_sym_with] = ACTIONS(2903), + [anon_sym_var] = ACTIONS(2903), + [anon_sym_let] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_await] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_debugger] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_async] = ACTIONS(2903), + [anon_sym_function] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [anon_sym_SQUOTE] = ACTIONS(2901), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2901), + [sym_number] = ACTIONS(2901), + [sym_private_property_identifier] = ACTIONS(2901), + [sym_this] = ACTIONS(2903), + [sym_super] = ACTIONS(2903), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_null] = ACTIONS(2903), + [sym_undefined] = ACTIONS(2903), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_readonly] = ACTIONS(2903), + [anon_sym_get] = ACTIONS(2903), + [anon_sym_set] = ACTIONS(2903), + [anon_sym_declare] = ACTIONS(2903), + [anon_sym_public] = ACTIONS(2903), + [anon_sym_private] = ACTIONS(2903), + [anon_sym_protected] = ACTIONS(2903), + [anon_sym_override] = ACTIONS(2903), + [anon_sym_module] = ACTIONS(2903), + [anon_sym_any] = ACTIONS(2903), + [anon_sym_number] = ACTIONS(2903), + [anon_sym_boolean] = ACTIONS(2903), + [anon_sym_string] = ACTIONS(2903), + [anon_sym_symbol] = ACTIONS(2903), + [anon_sym_object] = ACTIONS(2903), + [anon_sym_abstract] = ACTIONS(2903), + [anon_sym_interface] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_typeof] = ACTIONS(2907), + [anon_sym_import] = ACTIONS(2907), + [anon_sym_with] = ACTIONS(2907), + [anon_sym_var] = ACTIONS(2907), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_await] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_debugger] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_yield] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_async] = ACTIONS(2907), + [anon_sym_function] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_void] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2905), + [sym_number] = ACTIONS(2905), + [sym_private_property_identifier] = ACTIONS(2905), + [sym_this] = ACTIONS(2907), + [sym_super] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [sym_undefined] = ACTIONS(2907), + [anon_sym_AT] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2907), + [anon_sym_set] = ACTIONS(2907), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_abstract] = ACTIONS(2907), + [anon_sym_interface] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), [sym_html_comment] = ACTIONS(5), }, [923] = { - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2930), - [anon_sym_export] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_type] = ACTIONS(2930), - [anon_sym_namespace] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2928), - [anon_sym_typeof] = ACTIONS(2930), - [anon_sym_import] = ACTIONS(2930), - [anon_sym_with] = ACTIONS(2930), - [anon_sym_var] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_await] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_debugger] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_throw] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_yield] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2928), - [sym_glimmer_opening_tag] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_async] = ACTIONS(2930), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_using] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2928), - [anon_sym_void] = ACTIONS(2930), - [anon_sym_delete] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2928), - [anon_sym_DASH_DASH] = ACTIONS(2928), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2928), - [sym_number] = ACTIONS(2928), - [sym_private_property_identifier] = ACTIONS(2928), - [sym_this] = ACTIONS(2930), - [sym_super] = ACTIONS(2930), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_null] = ACTIONS(2930), - [sym_undefined] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2928), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_readonly] = ACTIONS(2930), - [anon_sym_get] = ACTIONS(2930), - [anon_sym_set] = ACTIONS(2930), - [anon_sym_declare] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_protected] = ACTIONS(2930), - [anon_sym_override] = ACTIONS(2930), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_any] = ACTIONS(2930), - [anon_sym_number] = ACTIONS(2930), - [anon_sym_boolean] = ACTIONS(2930), - [anon_sym_string] = ACTIONS(2930), - [anon_sym_symbol] = ACTIONS(2930), - [anon_sym_object] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_typeof] = ACTIONS(2911), + [anon_sym_import] = ACTIONS(2911), + [anon_sym_with] = ACTIONS(2911), + [anon_sym_var] = ACTIONS(2911), + [anon_sym_let] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_await] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_debugger] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_async] = ACTIONS(2911), + [anon_sym_function] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2909), + [sym_number] = ACTIONS(2909), + [sym_private_property_identifier] = ACTIONS(2909), + [sym_this] = ACTIONS(2911), + [sym_super] = ACTIONS(2911), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_undefined] = ACTIONS(2911), + [anon_sym_AT] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_readonly] = ACTIONS(2911), + [anon_sym_get] = ACTIONS(2911), + [anon_sym_set] = ACTIONS(2911), + [anon_sym_declare] = ACTIONS(2911), + [anon_sym_public] = ACTIONS(2911), + [anon_sym_private] = ACTIONS(2911), + [anon_sym_protected] = ACTIONS(2911), + [anon_sym_override] = ACTIONS(2911), + [anon_sym_module] = ACTIONS(2911), + [anon_sym_any] = ACTIONS(2911), + [anon_sym_number] = ACTIONS(2911), + [anon_sym_boolean] = ACTIONS(2911), + [anon_sym_string] = ACTIONS(2911), + [anon_sym_symbol] = ACTIONS(2911), + [anon_sym_object] = ACTIONS(2911), + [anon_sym_abstract] = ACTIONS(2911), + [anon_sym_interface] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, [924] = { - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2934), - [anon_sym_export] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_type] = ACTIONS(2934), - [anon_sym_namespace] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_typeof] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_else] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_await] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_debugger] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_throw] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2932), - [sym_glimmer_opening_tag] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_async] = ACTIONS(2934), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_using] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_void] = ACTIONS(2934), - [anon_sym_delete] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2932), - [sym_number] = ACTIONS(2932), - [sym_private_property_identifier] = ACTIONS(2932), - [sym_this] = ACTIONS(2934), - [sym_super] = ACTIONS(2934), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_null] = ACTIONS(2934), - [sym_undefined] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2934), - [anon_sym_set] = ACTIONS(2934), - [anon_sym_declare] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_protected] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_any] = ACTIONS(2934), - [anon_sym_number] = ACTIONS(2934), - [anon_sym_boolean] = ACTIONS(2934), - [anon_sym_string] = ACTIONS(2934), - [anon_sym_symbol] = ACTIONS(2934), - [anon_sym_object] = ACTIONS(2934), - [anon_sym_abstract] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_export] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_typeof] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2915), + [anon_sym_with] = ACTIONS(2915), + [anon_sym_var] = ACTIONS(2915), + [anon_sym_let] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_await] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_debugger] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_function] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [sym_this] = ACTIONS(2915), + [sym_super] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_undefined] = ACTIONS(2915), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_readonly] = ACTIONS(2915), + [anon_sym_get] = ACTIONS(2915), + [anon_sym_set] = ACTIONS(2915), + [anon_sym_declare] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_private] = ACTIONS(2915), + [anon_sym_protected] = ACTIONS(2915), + [anon_sym_override] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2915), + [anon_sym_any] = ACTIONS(2915), + [anon_sym_number] = ACTIONS(2915), + [anon_sym_boolean] = ACTIONS(2915), + [anon_sym_string] = ACTIONS(2915), + [anon_sym_symbol] = ACTIONS(2915), + [anon_sym_object] = ACTIONS(2915), + [anon_sym_abstract] = ACTIONS(2915), + [anon_sym_interface] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4542), - [sym_optional_tuple_parameter] = STATE(4542), - [sym_optional_type] = STATE(4542), - [sym_rest_type] = STATE(4542), - [sym__tuple_type_member] = STATE(4542), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2919), + [anon_sym_export] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_typeof] = ACTIONS(2919), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_with] = ACTIONS(2919), + [anon_sym_var] = ACTIONS(2919), + [anon_sym_let] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_await] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_debugger] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_function] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_void] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2917), + [sym_number] = ACTIONS(2917), + [sym_private_property_identifier] = ACTIONS(2917), + [sym_this] = ACTIONS(2919), + [sym_super] = ACTIONS(2919), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_undefined] = ACTIONS(2919), + [anon_sym_AT] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_get] = ACTIONS(2919), + [anon_sym_set] = ACTIONS(2919), + [anon_sym_declare] = ACTIONS(2919), + [anon_sym_public] = ACTIONS(2919), + [anon_sym_private] = ACTIONS(2919), + [anon_sym_protected] = ACTIONS(2919), + [anon_sym_override] = ACTIONS(2919), + [anon_sym_module] = ACTIONS(2919), + [anon_sym_any] = ACTIONS(2919), + [anon_sym_number] = ACTIONS(2919), + [anon_sym_boolean] = ACTIONS(2919), + [anon_sym_string] = ACTIONS(2919), + [anon_sym_symbol] = ACTIONS(2919), + [anon_sym_object] = ACTIONS(2919), + [anon_sym_abstract] = ACTIONS(2919), + [anon_sym_interface] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), [sym_html_comment] = ACTIONS(5), }, [926] = { - [ts_builtin_sym_end] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_default] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2940), - [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(2940), - [anon_sym_else] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_SEMI] = ACTIONS(2940), - [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_case] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2940), - [sym_glimmer_opening_tag] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), - [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(2942), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2940), - [sym_number] = ACTIONS(2940), - [sym_private_property_identifier] = ACTIONS(2940), - [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(2940), - [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), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_export] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_typeof] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2915), + [anon_sym_with] = ACTIONS(2915), + [anon_sym_var] = ACTIONS(2915), + [anon_sym_let] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_await] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_debugger] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_function] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [sym_this] = ACTIONS(2915), + [sym_super] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_undefined] = ACTIONS(2915), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_readonly] = ACTIONS(2915), + [anon_sym_get] = ACTIONS(2915), + [anon_sym_set] = ACTIONS(2915), + [anon_sym_declare] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_private] = ACTIONS(2915), + [anon_sym_protected] = ACTIONS(2915), + [anon_sym_override] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2915), + [anon_sym_any] = ACTIONS(2915), + [anon_sym_number] = ACTIONS(2915), + [anon_sym_boolean] = ACTIONS(2915), + [anon_sym_string] = ACTIONS(2915), + [anon_sym_symbol] = ACTIONS(2915), + [anon_sym_object] = ACTIONS(2915), + [anon_sym_abstract] = ACTIONS(2915), + [anon_sym_interface] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), [sym_html_comment] = ACTIONS(5), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_default] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_RBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2946), - [anon_sym_import] = ACTIONS(2946), - [anon_sym_with] = ACTIONS(2946), - [anon_sym_var] = ACTIONS(2946), - [anon_sym_let] = ACTIONS(2946), - [anon_sym_const] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_else] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_switch] = ACTIONS(2946), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2946), - [anon_sym_while] = ACTIONS(2946), - [anon_sym_do] = ACTIONS(2946), - [anon_sym_try] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_debugger] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_throw] = ACTIONS(2946), - [anon_sym_case] = ACTIONS(2946), - [anon_sym_yield] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2944), - [sym_glimmer_opening_tag] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2946), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_function] = ACTIONS(2946), - [anon_sym_new] = ACTIONS(2946), - [anon_sym_using] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2946), - [anon_sym_delete] = ACTIONS(2946), - [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(2946), - [sym_super] = ACTIONS(2946), - [sym_true] = ACTIONS(2946), - [sym_false] = ACTIONS(2946), - [sym_null] = ACTIONS(2946), - [sym_undefined] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_override] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [anon_sym_object] = ACTIONS(2946), - [anon_sym_abstract] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_enum] = ACTIONS(2946), + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2923), + [anon_sym_export] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_typeof] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_with] = ACTIONS(2923), + [anon_sym_var] = ACTIONS(2923), + [anon_sym_let] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_await] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_debugger] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_function] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_void] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2921), + [sym_number] = ACTIONS(2921), + [sym_private_property_identifier] = ACTIONS(2921), + [sym_this] = ACTIONS(2923), + [sym_super] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [sym_undefined] = ACTIONS(2923), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_readonly] = ACTIONS(2923), + [anon_sym_get] = ACTIONS(2923), + [anon_sym_set] = ACTIONS(2923), + [anon_sym_declare] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_override] = ACTIONS(2923), + [anon_sym_module] = ACTIONS(2923), + [anon_sym_any] = ACTIONS(2923), + [anon_sym_number] = ACTIONS(2923), + [anon_sym_boolean] = ACTIONS(2923), + [anon_sym_string] = ACTIONS(2923), + [anon_sym_symbol] = ACTIONS(2923), + [anon_sym_object] = ACTIONS(2923), + [anon_sym_abstract] = ACTIONS(2923), + [anon_sym_interface] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), [sym_html_comment] = ACTIONS(5), }, [928] = { - [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), - [sym_glimmer_opening_tag] = 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(2546), - [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), + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2927), + [anon_sym_export] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_type] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_typeof] = ACTIONS(2927), + [anon_sym_import] = ACTIONS(2927), + [anon_sym_with] = ACTIONS(2927), + [anon_sym_var] = ACTIONS(2927), + [anon_sym_let] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_await] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_debugger] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_yield] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_function] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_void] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2925), + [sym_number] = ACTIONS(2925), + [sym_private_property_identifier] = ACTIONS(2925), + [sym_this] = ACTIONS(2927), + [sym_super] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_undefined] = ACTIONS(2927), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_readonly] = ACTIONS(2927), + [anon_sym_get] = ACTIONS(2927), + [anon_sym_set] = ACTIONS(2927), + [anon_sym_declare] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_override] = ACTIONS(2927), + [anon_sym_module] = ACTIONS(2927), + [anon_sym_any] = ACTIONS(2927), + [anon_sym_number] = ACTIONS(2927), + [anon_sym_boolean] = ACTIONS(2927), + [anon_sym_string] = ACTIONS(2927), + [anon_sym_symbol] = ACTIONS(2927), + [anon_sym_object] = ACTIONS(2927), + [anon_sym_abstract] = ACTIONS(2927), + [anon_sym_interface] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), [sym_html_comment] = ACTIONS(5), }, [929] = { - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_export] = ACTIONS(2950), - [anon_sym_default] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_namespace] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_typeof] = ACTIONS(2950), - [anon_sym_import] = ACTIONS(2950), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_var] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_const] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2948), - [anon_sym_else] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2948), - [anon_sym_await] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_debugger] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_throw] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2950), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2948), - [sym_glimmer_opening_tag] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_class] = ACTIONS(2950), - [anon_sym_async] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_using] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [anon_sym_void] = ACTIONS(2950), - [anon_sym_delete] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2948), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [sym_this] = ACTIONS(2950), - [sym_super] = ACTIONS(2950), - [sym_true] = ACTIONS(2950), - [sym_false] = ACTIONS(2950), - [sym_null] = ACTIONS(2950), - [sym_undefined] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2950), - [anon_sym_readonly] = ACTIONS(2950), - [anon_sym_get] = ACTIONS(2950), - [anon_sym_set] = ACTIONS(2950), - [anon_sym_declare] = ACTIONS(2950), - [anon_sym_public] = ACTIONS(2950), - [anon_sym_private] = ACTIONS(2950), - [anon_sym_protected] = ACTIONS(2950), - [anon_sym_override] = ACTIONS(2950), - [anon_sym_module] = ACTIONS(2950), - [anon_sym_any] = ACTIONS(2950), - [anon_sym_number] = ACTIONS(2950), - [anon_sym_boolean] = ACTIONS(2950), - [anon_sym_string] = ACTIONS(2950), - [anon_sym_symbol] = ACTIONS(2950), - [anon_sym_object] = ACTIONS(2950), - [anon_sym_abstract] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_enum] = ACTIONS(2950), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [930] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2954), - [anon_sym_export] = ACTIONS(2954), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_namespace] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2952), - [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(2952), - [anon_sym_else] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2952), - [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_case] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [sym_glimmer_opening_tag] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2952), - [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(2954), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_void] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2952), - [anon_sym_DASH_DASH] = ACTIONS(2952), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2952), - [sym_number] = ACTIONS(2952), - [sym_private_property_identifier] = ACTIONS(2952), - [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(2952), - [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), + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2931), + [anon_sym_export] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_type] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_typeof] = ACTIONS(2931), + [anon_sym_import] = ACTIONS(2931), + [anon_sym_with] = ACTIONS(2931), + [anon_sym_var] = ACTIONS(2931), + [anon_sym_let] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_debugger] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_yield] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_async] = ACTIONS(2931), + [anon_sym_function] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_void] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2929), + [sym_number] = ACTIONS(2929), + [sym_private_property_identifier] = ACTIONS(2929), + [sym_this] = ACTIONS(2931), + [sym_super] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_null] = ACTIONS(2931), + [sym_undefined] = ACTIONS(2931), + [anon_sym_AT] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_readonly] = ACTIONS(2931), + [anon_sym_get] = ACTIONS(2931), + [anon_sym_set] = ACTIONS(2931), + [anon_sym_declare] = ACTIONS(2931), + [anon_sym_public] = ACTIONS(2931), + [anon_sym_private] = ACTIONS(2931), + [anon_sym_protected] = ACTIONS(2931), + [anon_sym_override] = ACTIONS(2931), + [anon_sym_module] = ACTIONS(2931), + [anon_sym_any] = ACTIONS(2931), + [anon_sym_number] = ACTIONS(2931), + [anon_sym_boolean] = ACTIONS(2931), + [anon_sym_string] = ACTIONS(2931), + [anon_sym_symbol] = ACTIONS(2931), + [anon_sym_object] = ACTIONS(2931), + [anon_sym_abstract] = ACTIONS(2931), + [anon_sym_interface] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), [sym_html_comment] = ACTIONS(5), }, [931] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_default] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_case] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [sym_glimmer_opening_tag] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [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(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2956), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2935), + [anon_sym_export] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2935), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_namespace] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_typeof] = ACTIONS(2935), + [anon_sym_import] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2935), + [anon_sym_var] = ACTIONS(2935), + [anon_sym_let] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_await] = ACTIONS(2935), + [anon_sym_while] = ACTIONS(2935), + [anon_sym_do] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_debugger] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_throw] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2935), + [anon_sym_yield] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2935), + [anon_sym_function] = ACTIONS(2935), + [anon_sym_new] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_void] = ACTIONS(2935), + [anon_sym_delete] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2933), + [sym_number] = ACTIONS(2933), + [sym_private_property_identifier] = ACTIONS(2933), + [sym_this] = ACTIONS(2935), + [sym_super] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_null] = ACTIONS(2935), + [sym_undefined] = ACTIONS(2935), + [anon_sym_AT] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2935), + [anon_sym_readonly] = ACTIONS(2935), + [anon_sym_get] = ACTIONS(2935), + [anon_sym_set] = ACTIONS(2935), + [anon_sym_declare] = ACTIONS(2935), + [anon_sym_public] = ACTIONS(2935), + [anon_sym_private] = ACTIONS(2935), + [anon_sym_protected] = ACTIONS(2935), + [anon_sym_override] = ACTIONS(2935), + [anon_sym_module] = ACTIONS(2935), + [anon_sym_any] = ACTIONS(2935), + [anon_sym_number] = ACTIONS(2935), + [anon_sym_boolean] = ACTIONS(2935), + [anon_sym_string] = ACTIONS(2935), + [anon_sym_symbol] = ACTIONS(2935), + [anon_sym_object] = ACTIONS(2935), + [anon_sym_abstract] = ACTIONS(2935), + [anon_sym_interface] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), [sym_html_comment] = ACTIONS(5), }, [932] = { - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2962), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_type] = ACTIONS(2962), - [anon_sym_namespace] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2962), - [anon_sym_import] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2962), - [anon_sym_var] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2962), - [anon_sym_const] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_else] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_do] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_debugger] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_throw] = ACTIONS(2962), - [anon_sym_case] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2962), - [anon_sym_async] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2962), - [anon_sym_using] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2962), - [anon_sym_delete] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2962), - [sym_super] = ACTIONS(2962), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_null] = ACTIONS(2962), - [sym_undefined] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_readonly] = ACTIONS(2962), - [anon_sym_get] = ACTIONS(2962), - [anon_sym_set] = ACTIONS(2962), - [anon_sym_declare] = ACTIONS(2962), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_protected] = ACTIONS(2962), - [anon_sym_override] = ACTIONS(2962), - [anon_sym_module] = ACTIONS(2962), - [anon_sym_any] = ACTIONS(2962), - [anon_sym_number] = ACTIONS(2962), - [anon_sym_boolean] = ACTIONS(2962), - [anon_sym_string] = ACTIONS(2962), - [anon_sym_symbol] = ACTIONS(2962), - [anon_sym_object] = ACTIONS(2962), - [anon_sym_abstract] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), + [ts_builtin_sym_end] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2939), + [anon_sym_export] = ACTIONS(2939), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_type] = ACTIONS(2939), + [anon_sym_namespace] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), + [anon_sym_import] = ACTIONS(2939), + [anon_sym_with] = ACTIONS(2939), + [anon_sym_var] = ACTIONS(2939), + [anon_sym_let] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_await] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_do] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [anon_sym_debugger] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_throw] = ACTIONS(2939), + [anon_sym_case] = ACTIONS(2939), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_function] = ACTIONS(2939), + [anon_sym_new] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_SLASH] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_void] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2937), + [sym_number] = ACTIONS(2937), + [sym_private_property_identifier] = ACTIONS(2937), + [sym_this] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_true] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [sym_null] = ACTIONS(2939), + [sym_undefined] = ACTIONS(2939), + [anon_sym_AT] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_readonly] = ACTIONS(2939), + [anon_sym_get] = ACTIONS(2939), + [anon_sym_set] = ACTIONS(2939), + [anon_sym_declare] = ACTIONS(2939), + [anon_sym_public] = ACTIONS(2939), + [anon_sym_private] = ACTIONS(2939), + [anon_sym_protected] = ACTIONS(2939), + [anon_sym_override] = ACTIONS(2939), + [anon_sym_module] = ACTIONS(2939), + [anon_sym_any] = ACTIONS(2939), + [anon_sym_number] = ACTIONS(2939), + [anon_sym_boolean] = ACTIONS(2939), + [anon_sym_string] = ACTIONS(2939), + [anon_sym_symbol] = ACTIONS(2939), + [anon_sym_object] = ACTIONS(2939), + [anon_sym_abstract] = ACTIONS(2939), + [anon_sym_interface] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), [sym_html_comment] = ACTIONS(5), }, [933] = { - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2966), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_namespace] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_typeof] = ACTIONS(2966), - [anon_sym_import] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_var] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2964), - [anon_sym_else] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_switch] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_await] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_debugger] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_throw] = ACTIONS(2966), - [anon_sym_case] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [sym_glimmer_opening_tag] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2964), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_async] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_using] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2964), - [anon_sym_void] = ACTIONS(2966), - [anon_sym_delete] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2964), - [sym_number] = ACTIONS(2964), - [sym_private_property_identifier] = ACTIONS(2964), - [sym_this] = ACTIONS(2966), - [sym_super] = ACTIONS(2966), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_null] = ACTIONS(2966), - [sym_undefined] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2964), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_readonly] = ACTIONS(2966), - [anon_sym_get] = ACTIONS(2966), - [anon_sym_set] = ACTIONS(2966), - [anon_sym_declare] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_protected] = ACTIONS(2966), - [anon_sym_override] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_any] = ACTIONS(2966), - [anon_sym_number] = ACTIONS(2966), - [anon_sym_boolean] = ACTIONS(2966), - [anon_sym_string] = ACTIONS(2966), - [anon_sym_symbol] = ACTIONS(2966), - [anon_sym_object] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [934] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_namespace] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_typeof] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2968), - [anon_sym_else] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_await] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_debugger] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_case] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [sym_glimmer_opening_tag] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(2968), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_async] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_void] = ACTIONS(2970), - [anon_sym_delete] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2968), - [anon_sym_DASH_DASH] = ACTIONS(2968), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2968), - [sym_number] = ACTIONS(2968), - [sym_private_property_identifier] = ACTIONS(2968), - [sym_this] = ACTIONS(2970), - [sym_super] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_null] = ACTIONS(2970), - [sym_undefined] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2968), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_readonly] = ACTIONS(2970), - [anon_sym_get] = ACTIONS(2970), - [anon_sym_set] = ACTIONS(2970), - [anon_sym_declare] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [anon_sym_override] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_any] = ACTIONS(2970), - [anon_sym_number] = ACTIONS(2970), - [anon_sym_boolean] = ACTIONS(2970), - [anon_sym_string] = ACTIONS(2970), - [anon_sym_symbol] = ACTIONS(2970), - [anon_sym_object] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2945), + [anon_sym_export] = ACTIONS(2945), + [anon_sym_default] = ACTIONS(2945), + [anon_sym_type] = ACTIONS(2945), + [anon_sym_namespace] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_typeof] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2945), + [anon_sym_with] = ACTIONS(2945), + [anon_sym_var] = ACTIONS(2945), + [anon_sym_let] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym_await] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_debugger] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_case] = ACTIONS(2945), + [anon_sym_yield] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_function] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_using] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_void] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2943), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2943), + [sym_number] = ACTIONS(2943), + [sym_private_property_identifier] = ACTIONS(2943), + [sym_this] = ACTIONS(2945), + [sym_super] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_null] = ACTIONS(2945), + [sym_undefined] = ACTIONS(2945), + [anon_sym_AT] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_readonly] = ACTIONS(2945), + [anon_sym_get] = ACTIONS(2945), + [anon_sym_set] = ACTIONS(2945), + [anon_sym_declare] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_private] = ACTIONS(2945), + [anon_sym_protected] = ACTIONS(2945), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_module] = ACTIONS(2945), + [anon_sym_any] = ACTIONS(2945), + [anon_sym_number] = ACTIONS(2945), + [anon_sym_boolean] = ACTIONS(2945), + [anon_sym_string] = ACTIONS(2945), + [anon_sym_symbol] = ACTIONS(2945), + [anon_sym_object] = ACTIONS(2945), + [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_interface] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2947), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [936] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2974), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2951), + [anon_sym_export] = ACTIONS(2951), + [anon_sym_default] = ACTIONS(2951), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_namespace] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2951), + [anon_sym_import] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [anon_sym_var] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2951), + [anon_sym_do] = ACTIONS(2951), + [anon_sym_try] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_debugger] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_throw] = ACTIONS(2951), + [anon_sym_case] = ACTIONS(2951), + [anon_sym_yield] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2951), + [anon_sym_async] = ACTIONS(2951), + [anon_sym_function] = ACTIONS(2951), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_void] = ACTIONS(2951), + [anon_sym_delete] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2949), + [sym_number] = ACTIONS(2949), + [sym_private_property_identifier] = ACTIONS(2949), + [sym_this] = ACTIONS(2951), + [sym_super] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_null] = ACTIONS(2951), + [sym_undefined] = ACTIONS(2951), + [anon_sym_AT] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_readonly] = ACTIONS(2951), + [anon_sym_get] = ACTIONS(2951), + [anon_sym_set] = ACTIONS(2951), + [anon_sym_declare] = ACTIONS(2951), + [anon_sym_public] = ACTIONS(2951), + [anon_sym_private] = ACTIONS(2951), + [anon_sym_protected] = ACTIONS(2951), + [anon_sym_override] = ACTIONS(2951), + [anon_sym_module] = ACTIONS(2951), + [anon_sym_any] = ACTIONS(2951), + [anon_sym_number] = ACTIONS(2951), + [anon_sym_boolean] = ACTIONS(2951), + [anon_sym_string] = ACTIONS(2951), + [anon_sym_symbol] = ACTIONS(2951), + [anon_sym_object] = ACTIONS(2951), + [anon_sym_abstract] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2955), + [anon_sym_export] = ACTIONS(2955), + [anon_sym_default] = ACTIONS(2955), + [anon_sym_type] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_typeof] = ACTIONS(2955), + [anon_sym_import] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2955), + [anon_sym_var] = ACTIONS(2955), + [anon_sym_let] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym_await] = ACTIONS(2955), + [anon_sym_while] = ACTIONS(2955), + [anon_sym_do] = ACTIONS(2955), + [anon_sym_try] = ACTIONS(2955), + [anon_sym_break] = ACTIONS(2955), + [anon_sym_continue] = ACTIONS(2955), + [anon_sym_debugger] = ACTIONS(2955), + [anon_sym_return] = ACTIONS(2955), + [anon_sym_throw] = ACTIONS(2955), + [anon_sym_case] = ACTIONS(2955), + [anon_sym_yield] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2955), + [anon_sym_async] = ACTIONS(2955), + [anon_sym_function] = ACTIONS(2955), + [anon_sym_new] = ACTIONS(2955), + [anon_sym_using] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_void] = ACTIONS(2955), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2953), + [anon_sym_SQUOTE] = ACTIONS(2953), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2953), + [sym_number] = ACTIONS(2953), + [sym_private_property_identifier] = ACTIONS(2953), + [sym_this] = ACTIONS(2955), + [sym_super] = ACTIONS(2955), + [sym_true] = ACTIONS(2955), + [sym_false] = ACTIONS(2955), + [sym_null] = ACTIONS(2955), + [sym_undefined] = ACTIONS(2955), + [anon_sym_AT] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_readonly] = ACTIONS(2955), + [anon_sym_get] = ACTIONS(2955), + [anon_sym_set] = ACTIONS(2955), + [anon_sym_declare] = ACTIONS(2955), + [anon_sym_public] = ACTIONS(2955), + [anon_sym_private] = ACTIONS(2955), + [anon_sym_protected] = ACTIONS(2955), + [anon_sym_override] = ACTIONS(2955), + [anon_sym_module] = ACTIONS(2955), + [anon_sym_any] = ACTIONS(2955), + [anon_sym_number] = ACTIONS(2955), + [anon_sym_boolean] = ACTIONS(2955), + [anon_sym_string] = ACTIONS(2955), + [anon_sym_symbol] = ACTIONS(2955), + [anon_sym_object] = ACTIONS(2955), + [anon_sym_abstract] = ACTIONS(2955), + [anon_sym_interface] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2955), [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2978), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [939] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2959), + [anon_sym_default] = ACTIONS(2959), + [anon_sym_type] = ACTIONS(2959), + [anon_sym_namespace] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_typeof] = ACTIONS(2959), + [anon_sym_import] = ACTIONS(2959), + [anon_sym_with] = ACTIONS(2959), + [anon_sym_var] = ACTIONS(2959), + [anon_sym_let] = ACTIONS(2959), + [anon_sym_const] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym_await] = ACTIONS(2959), + [anon_sym_while] = ACTIONS(2959), + [anon_sym_do] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2959), + [anon_sym_break] = ACTIONS(2959), + [anon_sym_continue] = ACTIONS(2959), + [anon_sym_debugger] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2959), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_case] = ACTIONS(2959), + [anon_sym_yield] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_function] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_void] = ACTIONS(2959), + [anon_sym_delete] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_number] = ACTIONS(2957), + [sym_private_property_identifier] = ACTIONS(2957), + [sym_this] = ACTIONS(2959), + [sym_super] = ACTIONS(2959), + [sym_true] = ACTIONS(2959), + [sym_false] = ACTIONS(2959), + [sym_null] = ACTIONS(2959), + [sym_undefined] = ACTIONS(2959), + [anon_sym_AT] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2959), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_get] = ACTIONS(2959), + [anon_sym_set] = ACTIONS(2959), + [anon_sym_declare] = ACTIONS(2959), + [anon_sym_public] = ACTIONS(2959), + [anon_sym_private] = ACTIONS(2959), + [anon_sym_protected] = ACTIONS(2959), + [anon_sym_override] = ACTIONS(2959), + [anon_sym_module] = ACTIONS(2959), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2959), + [anon_sym_interface] = ACTIONS(2959), + [anon_sym_enum] = ACTIONS(2959), [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2963), + [anon_sym_export] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_type] = ACTIONS(2963), + [anon_sym_namespace] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_typeof] = ACTIONS(2963), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2963), + [anon_sym_let] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_do] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_debugger] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_throw] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(2963), + [anon_sym_yield] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2963), + [anon_sym_async] = ACTIONS(2963), + [anon_sym_function] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_void] = ACTIONS(2963), + [anon_sym_delete] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2961), + [sym_private_property_identifier] = ACTIONS(2961), + [sym_this] = ACTIONS(2963), + [sym_super] = ACTIONS(2963), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [sym_null] = ACTIONS(2963), + [sym_undefined] = ACTIONS(2963), + [anon_sym_AT] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_readonly] = ACTIONS(2963), + [anon_sym_get] = ACTIONS(2963), + [anon_sym_set] = ACTIONS(2963), + [anon_sym_declare] = ACTIONS(2963), + [anon_sym_public] = ACTIONS(2963), + [anon_sym_private] = ACTIONS(2963), + [anon_sym_protected] = ACTIONS(2963), + [anon_sym_override] = ACTIONS(2963), + [anon_sym_module] = ACTIONS(2963), + [anon_sym_any] = ACTIONS(2963), + [anon_sym_number] = ACTIONS(2963), + [anon_sym_boolean] = ACTIONS(2963), + [anon_sym_string] = ACTIONS(2963), + [anon_sym_symbol] = ACTIONS(2963), + [anon_sym_object] = ACTIONS(2963), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_interface] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_export] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_namespace] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_typeof] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2967), + [anon_sym_with] = ACTIONS(2967), + [anon_sym_var] = ACTIONS(2967), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_await] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_do] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_debugger] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_case] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_function] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_void] = ACTIONS(2967), + [anon_sym_delete] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2965), + [sym_number] = ACTIONS(2965), + [sym_private_property_identifier] = ACTIONS(2965), + [sym_this] = ACTIONS(2967), + [sym_super] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_AT] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2967), + [anon_sym_get] = ACTIONS(2967), + [anon_sym_set] = ACTIONS(2967), + [anon_sym_declare] = ACTIONS(2967), + [anon_sym_public] = ACTIONS(2967), + [anon_sym_private] = ACTIONS(2967), + [anon_sym_protected] = ACTIONS(2967), + [anon_sym_override] = ACTIONS(2967), + [anon_sym_module] = ACTIONS(2967), + [anon_sym_any] = ACTIONS(2967), + [anon_sym_number] = ACTIONS(2967), + [anon_sym_boolean] = ACTIONS(2967), + [anon_sym_string] = ACTIONS(2967), + [anon_sym_symbol] = ACTIONS(2967), + [anon_sym_object] = ACTIONS(2967), + [anon_sym_abstract] = ACTIONS(2967), + [anon_sym_interface] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_export] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_namespace] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_typeof] = ACTIONS(2971), + [anon_sym_import] = ACTIONS(2971), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_var] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym_await] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_debugger] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_void] = ACTIONS(2971), + [anon_sym_delete] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2969), + [sym_number] = ACTIONS(2969), + [sym_private_property_identifier] = ACTIONS(2969), + [sym_this] = ACTIONS(2971), + [sym_super] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_null] = ACTIONS(2971), + [sym_undefined] = ACTIONS(2971), + [anon_sym_AT] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_readonly] = ACTIONS(2971), + [anon_sym_get] = ACTIONS(2971), + [anon_sym_set] = ACTIONS(2971), + [anon_sym_declare] = ACTIONS(2971), + [anon_sym_public] = ACTIONS(2971), + [anon_sym_private] = ACTIONS(2971), + [anon_sym_protected] = ACTIONS(2971), + [anon_sym_override] = ACTIONS(2971), + [anon_sym_module] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2971), + [anon_sym_number] = ACTIONS(2971), + [anon_sym_boolean] = ACTIONS(2971), + [anon_sym_string] = ACTIONS(2971), + [anon_sym_symbol] = ACTIONS(2971), + [anon_sym_object] = ACTIONS(2971), + [anon_sym_abstract] = ACTIONS(2971), + [anon_sym_interface] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2975), + [anon_sym_export] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_typeof] = ACTIONS(2975), + [anon_sym_import] = ACTIONS(2975), + [anon_sym_with] = ACTIONS(2975), + [anon_sym_var] = ACTIONS(2975), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_await] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_do] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_debugger] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_throw] = ACTIONS(2975), + [anon_sym_case] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_void] = ACTIONS(2975), + [anon_sym_delete] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2973), + [sym_number] = ACTIONS(2973), + [sym_private_property_identifier] = ACTIONS(2973), + [sym_this] = ACTIONS(2975), + [sym_super] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_null] = ACTIONS(2975), + [sym_undefined] = ACTIONS(2975), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_get] = ACTIONS(2975), + [anon_sym_set] = ACTIONS(2975), + [anon_sym_declare] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_override] = ACTIONS(2975), + [anon_sym_module] = ACTIONS(2975), + [anon_sym_any] = ACTIONS(2975), + [anon_sym_number] = ACTIONS(2975), + [anon_sym_boolean] = ACTIONS(2975), + [anon_sym_string] = ACTIONS(2975), + [anon_sym_symbol] = ACTIONS(2975), + [anon_sym_object] = ACTIONS(2975), + [anon_sym_abstract] = ACTIONS(2975), + [anon_sym_interface] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2979), + [anon_sym_export] = ACTIONS(2979), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2979), + [anon_sym_import] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_debugger] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_throw] = ACTIONS(2979), + [anon_sym_case] = ACTIONS(2979), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_void] = ACTIONS(2979), + [anon_sym_delete] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2977), + [sym_number] = ACTIONS(2977), + [sym_private_property_identifier] = ACTIONS(2977), + [sym_this] = ACTIONS(2979), + [sym_super] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_null] = ACTIONS(2979), + [sym_undefined] = ACTIONS(2979), + [anon_sym_AT] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_readonly] = ACTIONS(2979), + [anon_sym_get] = ACTIONS(2979), + [anon_sym_set] = ACTIONS(2979), + [anon_sym_declare] = ACTIONS(2979), + [anon_sym_public] = ACTIONS(2979), + [anon_sym_private] = ACTIONS(2979), + [anon_sym_protected] = ACTIONS(2979), + [anon_sym_override] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(2979), + [anon_sym_any] = ACTIONS(2979), + [anon_sym_number] = ACTIONS(2979), + [anon_sym_boolean] = ACTIONS(2979), + [anon_sym_string] = ACTIONS(2979), + [anon_sym_symbol] = ACTIONS(2979), + [anon_sym_object] = ACTIONS(2979), + [anon_sym_abstract] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(2520), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_namespace] = ACTIONS(2520), - [anon_sym_LBRACE] = 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_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_yield] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [sym_glimmer_opening_tag] = 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(2520), - [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_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_asserts] = STATE(3229), + [sym_type] = STATE(3242), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_predicate] = STATE(3229), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3212), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(2985), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_asserts] = ACTIONS(2987), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [947] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_namespace] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_typeof] = ACTIONS(2502), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_var] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_await] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_throw] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_glimmer_opening_tag] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_using] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_void] = ACTIONS(2502), - [anon_sym_delete] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2500), - [sym_number] = ACTIONS(2500), - [sym_private_property_identifier] = ACTIONS(2500), - [sym_this] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_null] = ACTIONS(2502), - [sym_undefined] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_readonly] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_declare] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_protected] = ACTIONS(2502), - [anon_sym_override] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_any] = ACTIONS(2502), - [anon_sym_number] = ACTIONS(2502), - [anon_sym_boolean] = ACTIONS(2502), - [anon_sym_string] = ACTIONS(2502), - [anon_sym_symbol] = ACTIONS(2502), - [anon_sym_object] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_interface] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2989), + [anon_sym_var] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym_await] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_debugger] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_yield] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_async] = ACTIONS(2989), + [anon_sym_function] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_void] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2991), + [sym_number] = ACTIONS(2991), + [sym_private_property_identifier] = ACTIONS(2991), + [sym_this] = ACTIONS(2989), + [sym_super] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_null] = ACTIONS(2989), + [sym_undefined] = ACTIONS(2989), + [anon_sym_AT] = ACTIONS(2991), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_readonly] = ACTIONS(2989), + [anon_sym_get] = ACTIONS(2989), + [anon_sym_set] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(2989), + [anon_sym_public] = ACTIONS(2989), + [anon_sym_private] = ACTIONS(2989), + [anon_sym_protected] = ACTIONS(2989), + [anon_sym_override] = ACTIONS(2989), + [anon_sym_module] = ACTIONS(2989), + [anon_sym_any] = ACTIONS(2989), + [anon_sym_number] = ACTIONS(2989), + [anon_sym_boolean] = ACTIONS(2989), + [anon_sym_string] = ACTIONS(2989), + [anon_sym_symbol] = ACTIONS(2989), + [anon_sym_object] = ACTIONS(2989), + [anon_sym_abstract] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_asserts] = STATE(3445), + [sym_type] = STATE(3447), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_predicate] = STATE(3445), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3305), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3025), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_asserts] = ACTIONS(3035), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [949] = { - [sym_identifier] = ACTIONS(2996), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_typeof] = ACTIONS(2996), - [anon_sym_import] = ACTIONS(2996), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_var] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym_await] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_debugger] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2998), - [sym_glimmer_opening_tag] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_SLASH] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_void] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(2998), - [sym_private_property_identifier] = ACTIONS(2998), - [sym_this] = ACTIONS(2996), - [sym_super] = ACTIONS(2996), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [sym_null] = ACTIONS(2996), - [sym_undefined] = ACTIONS(2996), - [anon_sym_AT] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(2996), - [anon_sym_set] = ACTIONS(2996), - [anon_sym_declare] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_override] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_any] = ACTIONS(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), - [anon_sym_object] = ACTIONS(2996), - [anon_sym_abstract] = ACTIONS(2996), - [anon_sym_interface] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_asserts] = STATE(1991), + [sym_type] = STATE(1992), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_predicate] = STATE(1991), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1822), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3073), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_asserts] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [950] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3093), + [anon_sym_type] = ACTIONS(3093), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_typeof] = ACTIONS(3093), + [anon_sym_import] = ACTIONS(3093), + [anon_sym_with] = ACTIONS(3093), + [anon_sym_var] = ACTIONS(3093), + [anon_sym_let] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_await] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_debugger] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_async] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_SLASH] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_void] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3095), + [sym_number] = ACTIONS(3095), + [sym_private_property_identifier] = ACTIONS(3095), + [sym_this] = ACTIONS(3093), + [sym_super] = ACTIONS(3093), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [sym_null] = ACTIONS(3093), + [sym_undefined] = ACTIONS(3093), + [anon_sym_AT] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_readonly] = ACTIONS(3093), + [anon_sym_get] = ACTIONS(3093), + [anon_sym_set] = ACTIONS(3093), + [anon_sym_declare] = ACTIONS(3093), + [anon_sym_public] = ACTIONS(3093), + [anon_sym_private] = ACTIONS(3093), + [anon_sym_protected] = ACTIONS(3093), + [anon_sym_override] = ACTIONS(3093), + [anon_sym_module] = ACTIONS(3093), + [anon_sym_any] = ACTIONS(3093), + [anon_sym_number] = ACTIONS(3093), + [anon_sym_boolean] = ACTIONS(3093), + [anon_sym_string] = ACTIONS(3093), + [anon_sym_symbol] = ACTIONS(3093), + [anon_sym_object] = ACTIONS(3093), + [anon_sym_abstract] = ACTIONS(3093), + [anon_sym_interface] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3018), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3018), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3697), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3113), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_asserts] = ACTIONS(3121), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [952] = { - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3000), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_namespace] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_typeof] = ACTIONS(3000), - [anon_sym_import] = ACTIONS(3000), - [anon_sym_with] = ACTIONS(3000), - [anon_sym_var] = ACTIONS(3000), - [anon_sym_let] = ACTIONS(3000), - [anon_sym_const] = ACTIONS(3000), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3000), - [anon_sym_switch] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_await] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3000), - [anon_sym_do] = ACTIONS(3000), - [anon_sym_try] = ACTIONS(3000), - [anon_sym_break] = ACTIONS(3000), - [anon_sym_continue] = ACTIONS(3000), - [anon_sym_debugger] = ACTIONS(3000), - [anon_sym_return] = ACTIONS(3000), - [anon_sym_throw] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(3000), - [anon_sym_LBRACK] = ACTIONS(3002), - [sym_glimmer_opening_tag] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_SQUOTE] = ACTIONS(3002), - [anon_sym_class] = ACTIONS(3000), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3000), - [anon_sym_using] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(3000), - [anon_sym_SLASH] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_void] = ACTIONS(3000), - [anon_sym_delete] = ACTIONS(3000), - [anon_sym_PLUS_PLUS] = ACTIONS(3002), - [anon_sym_DASH_DASH] = ACTIONS(3002), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3002), - [sym_number] = ACTIONS(3002), - [sym_private_property_identifier] = ACTIONS(3002), - [sym_this] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_true] = ACTIONS(3000), - [sym_false] = ACTIONS(3000), - [sym_null] = ACTIONS(3000), - [sym_undefined] = ACTIONS(3000), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_readonly] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(3000), - [anon_sym_set] = ACTIONS(3000), - [anon_sym_declare] = ACTIONS(3000), - [anon_sym_public] = ACTIONS(3000), - [anon_sym_private] = ACTIONS(3000), - [anon_sym_protected] = ACTIONS(3000), - [anon_sym_override] = ACTIONS(3000), - [anon_sym_module] = ACTIONS(3000), - [anon_sym_any] = ACTIONS(3000), - [anon_sym_number] = ACTIONS(3000), - [anon_sym_boolean] = ACTIONS(3000), - [anon_sym_string] = ACTIONS(3000), - [anon_sym_symbol] = ACTIONS(3000), - [anon_sym_object] = ACTIONS(3000), - [anon_sym_abstract] = ACTIONS(3000), - [anon_sym_interface] = ACTIONS(3000), - [anon_sym_enum] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [953] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3023), + [sym_type] = STATE(3095), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3023), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3056), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3135), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(3137), + [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_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3004), - [anon_sym_type] = ACTIONS(3004), - [anon_sym_namespace] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_typeof] = ACTIONS(3004), - [anon_sym_import] = ACTIONS(3004), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_var] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_switch] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_await] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_break] = ACTIONS(3004), - [anon_sym_continue] = ACTIONS(3004), - [anon_sym_debugger] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_throw] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3006), - [sym_glimmer_opening_tag] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_SQUOTE] = ACTIONS(3006), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_using] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_SLASH] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_void] = ACTIONS(3004), - [anon_sym_delete] = ACTIONS(3004), - [anon_sym_PLUS_PLUS] = ACTIONS(3006), - [anon_sym_DASH_DASH] = ACTIONS(3006), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3006), - [sym_number] = ACTIONS(3006), - [sym_private_property_identifier] = ACTIONS(3006), - [sym_this] = ACTIONS(3004), - [sym_super] = ACTIONS(3004), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3004), - [anon_sym_get] = ACTIONS(3004), - [anon_sym_set] = ACTIONS(3004), - [anon_sym_declare] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_protected] = ACTIONS(3004), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_module] = ACTIONS(3004), - [anon_sym_any] = ACTIONS(3004), - [anon_sym_number] = ACTIONS(3004), - [anon_sym_boolean] = ACTIONS(3004), - [anon_sym_string] = ACTIONS(3004), - [anon_sym_symbol] = ACTIONS(3004), - [anon_sym_object] = ACTIONS(3004), - [anon_sym_abstract] = ACTIONS(3004), - [anon_sym_interface] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), + [sym_identifier] = ACTIONS(2531), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_typeof] = ACTIONS(2531), + [anon_sym_import] = ACTIONS(2531), + [anon_sym_with] = ACTIONS(2531), + [anon_sym_var] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_debugger] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_function] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_SLASH] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_void] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2529), + [sym_number] = ACTIONS(2529), + [sym_private_property_identifier] = ACTIONS(2529), + [sym_this] = ACTIONS(2531), + [sym_super] = ACTIONS(2531), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_undefined] = ACTIONS(2531), + [anon_sym_AT] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_readonly] = ACTIONS(2531), + [anon_sym_get] = ACTIONS(2531), + [anon_sym_set] = ACTIONS(2531), + [anon_sym_declare] = ACTIONS(2531), + [anon_sym_public] = ACTIONS(2531), + [anon_sym_private] = ACTIONS(2531), + [anon_sym_protected] = ACTIONS(2531), + [anon_sym_override] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_any] = ACTIONS(2531), + [anon_sym_number] = ACTIONS(2531), + [anon_sym_boolean] = ACTIONS(2531), + [anon_sym_string] = ACTIONS(2531), + [anon_sym_symbol] = ACTIONS(2531), + [anon_sym_object] = ACTIONS(2531), + [anon_sym_abstract] = ACTIONS(2531), + [anon_sym_interface] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), [sym_html_comment] = ACTIONS(5), }, [955] = { - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_namespace] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_typeof] = ACTIONS(3008), - [anon_sym_import] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3008), - [anon_sym_var] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_await] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_debugger] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_throw] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(3010), - [sym_glimmer_opening_tag] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3010), - [anon_sym_class] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3008), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_void] = ACTIONS(3008), - [anon_sym_delete] = ACTIONS(3008), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3010), - [sym_number] = ACTIONS(3010), - [sym_private_property_identifier] = ACTIONS(3010), - [sym_this] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_undefined] = ACTIONS(3008), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_readonly] = ACTIONS(3008), - [anon_sym_get] = ACTIONS(3008), - [anon_sym_set] = ACTIONS(3008), - [anon_sym_declare] = ACTIONS(3008), - [anon_sym_public] = ACTIONS(3008), - [anon_sym_private] = ACTIONS(3008), - [anon_sym_protected] = ACTIONS(3008), - [anon_sym_override] = ACTIONS(3008), - [anon_sym_module] = ACTIONS(3008), - [anon_sym_any] = ACTIONS(3008), - [anon_sym_number] = ACTIONS(3008), - [anon_sym_boolean] = ACTIONS(3008), - [anon_sym_string] = ACTIONS(3008), - [anon_sym_symbol] = ACTIONS(3008), - [anon_sym_object] = ACTIONS(3008), - [anon_sym_abstract] = ACTIONS(3008), - [anon_sym_interface] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_asserts] = STATE(2039), + [sym_type] = STATE(2040), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_predicate] = STATE(2039), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1822), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3073), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_asserts] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [959] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_asserts] = STATE(3918), + [sym_type] = STATE(3502), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_predicate] = STATE(3919), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3305), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3025), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_asserts] = ACTIONS(3035), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3025), - [sym_type] = STATE(3645), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3025), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3496), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3014), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3016), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [961] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_asserts] = STATE(3852), - [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_predicate] = STATE(3853), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3184), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3022), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3024), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_asserts] = STATE(3811), + [sym_type] = STATE(3302), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_predicate] = STATE(3862), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3212), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(2985), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_asserts] = ACTIONS(2987), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [962] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_asserts] = STATE(3434), - [sym_type] = STATE(3442), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_predicate] = STATE(3434), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3318), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3058), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3023), + [sym_type] = STATE(3711), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3023), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3494), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3141), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_asserts] = ACTIONS(3143), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3025), - [sym_type] = STATE(3782), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3025), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3643), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3090), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_asserts] = ACTIONS(3098), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(5193), + [sym_type] = STATE(3340), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(5196), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3056), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3135), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(3137), + [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(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3025), - [sym_type] = STATE(3121), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3025), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3062), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3108), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3110), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_asserts] = STATE(3270), + [sym_type] = STATE(3275), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_predicate] = STATE(3270), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3212), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(2985), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_asserts] = ACTIONS(2987), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [965] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_asserts] = STATE(2037), - [sym_type] = STATE(2039), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_predicate] = STATE(2037), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1815), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3140), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_asserts] = ACTIONS(3150), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [966] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_asserts] = STATE(3447), - [sym_type] = STATE(3449), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_predicate] = STATE(3447), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3318), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3058), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [967] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3005), - [sym_type] = STATE(3810), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3005), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3643), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3090), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_asserts] = ACTIONS(3098), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3018), + [sym_type] = STATE(3731), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3018), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3494), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3141), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_asserts] = ACTIONS(3143), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_asserts] = STATE(1598), - [sym_type] = STATE(1601), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_predicate] = STATE(1598), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1514), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3188), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_asserts] = ACTIONS(3198), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_asserts] = STATE(1631), + [sym_type] = STATE(1634), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_predicate] = STATE(1631), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1524), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3173), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_asserts] = ACTIONS(3183), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [969] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3005), - [sym_type] = STATE(3149), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3005), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3062), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3108), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3110), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2507), + [sym_number] = ACTIONS(2507), + [sym_private_property_identifier] = ACTIONS(2507), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_readonly] = ACTIONS(2509), + [anon_sym_get] = ACTIONS(2509), + [anon_sym_set] = ACTIONS(2509), + [anon_sym_declare] = ACTIONS(2509), + [anon_sym_public] = ACTIONS(2509), + [anon_sym_private] = ACTIONS(2509), + [anon_sym_protected] = ACTIONS(2509), + [anon_sym_override] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_any] = ACTIONS(2509), + [anon_sym_number] = ACTIONS(2509), + [anon_sym_boolean] = ACTIONS(2509), + [anon_sym_string] = ACTIONS(2509), + [anon_sym_symbol] = ACTIONS(2509), + [anon_sym_object] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_asserts] = STATE(3285), - [sym_type] = STATE(3289), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_predicate] = STATE(3285), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3184), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3022), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3024), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [971] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_asserts] = STATE(4058), - [sym_type] = STATE(3501), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_predicate] = STATE(4060), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3318), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3058), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_asserts] = STATE(1560), + [sym_type] = STATE(1561), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_predicate] = STATE(1560), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1524), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3173), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_asserts] = ACTIONS(3183), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_asserts] = STATE(3283), - [sym_type] = STATE(3286), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_predicate] = STATE(3283), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3184), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3022), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3024), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_module] = ACTIONS(3193), + [anon_sym_any] = ACTIONS(3193), + [anon_sym_number] = ACTIONS(3193), + [anon_sym_boolean] = ACTIONS(3193), + [anon_sym_string] = ACTIONS(3193), + [anon_sym_symbol] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [973] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(5275), - [sym_type] = STATE(3375), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(5388), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3062), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3108), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3110), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3018), + [sym_type] = STATE(3146), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3018), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3056), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3135), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(3137), + [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), }, [974] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_asserts] = STATE(1992), - [sym_type] = STATE(1993), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_predicate] = STATE(1992), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1815), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3140), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_asserts] = ACTIONS(3150), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3023), + [sym_type] = STATE(3857), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3023), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3697), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3113), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_asserts] = ACTIONS(3121), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [975] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_asserts] = STATE(1555), - [sym_type] = STATE(1556), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_predicate] = STATE(1555), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1514), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3188), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_asserts] = ACTIONS(3198), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3197), + [anon_sym_export] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_namespace] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_typeof] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3197), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_do] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_debugger] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_throw] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_function] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_void] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [anon_sym_SQUOTE] = ACTIONS(3199), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3199), + [sym_number] = ACTIONS(3199), + [sym_private_property_identifier] = ACTIONS(3199), + [sym_this] = ACTIONS(3197), + [sym_super] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_undefined] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_get] = ACTIONS(3197), + [anon_sym_set] = ACTIONS(3197), + [anon_sym_declare] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_private] = ACTIONS(3197), + [anon_sym_protected] = ACTIONS(3197), + [anon_sym_override] = ACTIONS(3197), + [anon_sym_module] = ACTIONS(3197), + [anon_sym_any] = ACTIONS(3197), + [anon_sym_number] = ACTIONS(3197), + [anon_sym_boolean] = ACTIONS(3197), + [anon_sym_string] = ACTIONS(3197), + [anon_sym_symbol] = ACTIONS(3197), + [anon_sym_object] = ACTIONS(3197), + [anon_sym_abstract] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, [976] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3005), - [sym_type] = STATE(3650), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3005), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3496), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3014), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3016), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_asserts] = STATE(3355), + [sym_type] = STATE(3356), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_predicate] = STATE(3355), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3305), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3025), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_asserts] = ACTIONS(3035), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [977] = { - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_EQ] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_COMMA] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_RPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_RBRACK] = ACTIONS(3210), - [sym_glimmer_opening_tag] = ACTIONS(3210), - [anon_sym_GT] = ACTIONS(3210), - [anon_sym_DOT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_EQ_GT] = ACTIONS(3210), - [anon_sym_QMARK_DOT] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3210), - [anon_sym_AMP] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_extends] = ACTIONS(3208), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_COMMA] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_RPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_RBRACK] = ACTIONS(3214), - [sym_glimmer_opening_tag] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3214), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_EQ_GT] = ACTIONS(3214), - [anon_sym_QMARK_DOT] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3214), - [anon_sym_PIPE] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_QMARK] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_extends] = ACTIONS(3212), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [979] = { - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_EQ] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_COMMA] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_RPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_RBRACK] = ACTIONS(3218), - [sym_glimmer_opening_tag] = ACTIONS(3218), - [anon_sym_GT] = ACTIONS(3218), - [anon_sym_DOT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_EQ_GT] = ACTIONS(3218), - [anon_sym_QMARK_DOT] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3218), - [anon_sym_AMP] = ACTIONS(3218), - [anon_sym_PIPE] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_QMARK] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_extends] = ACTIONS(3216), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4432), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3207), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4476), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3775), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_type_parameter] = STATE(4908), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [983] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3215), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [984] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4435), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4409), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [985] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [986] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4441), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4486), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [987] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [988] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_EQ] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_COMMA] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_RPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_COLON] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_RBRACK] = ACTIONS(3227), + [anon_sym_DOT] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_EQ_GT] = ACTIONS(3227), + [anon_sym_QMARK_DOT] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_GT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_extends] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [989] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4404), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [990] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [991] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_EQ_GT] = ACTIONS(3235), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3235), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_GT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_extends] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [992] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_type_parameter] = STATE(4720), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_EQ] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_RPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_COLON] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_EQ_GT] = ACTIONS(3239), + [anon_sym_QMARK_DOT] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_extends] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [993] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4475), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [994] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4435), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [995] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [996] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [997] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4461), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1639), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1643), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [999] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4473), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1000] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3032), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1645), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1001] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1641), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1002] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3984), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1003] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2998), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2972), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1004] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3046), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4433), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1005] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4393), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4104), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1006] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3779), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3340), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1007] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3945), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1008] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4521), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3150), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1009] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3145), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3755), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4254), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1011] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2962), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3375), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2949), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1013] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2993), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1014] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3804), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3768), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2000), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1998), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1016] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1999), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1017] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2001), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2033), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1018] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2036), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1019] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2033), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1020] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2034), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3384), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1021] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(4114), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(4406), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3354), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1022] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3332), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2061), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1023] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3337), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2062), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1024] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2060), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1882), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1025] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2061), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1883), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1026] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1881), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3962), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1027] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1882), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3282), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1028] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4116), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3283), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1029] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3950), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3222), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1030] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3842), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5001), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3216), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1031] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3233), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5001), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3254), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1032] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3238), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3254), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3713), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1034] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4976), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3256), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(4133), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(4403), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1035] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4976), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3264), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3983), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1036] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3030), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4137), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1037] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3646), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3502), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3730), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3965), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3732), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3478), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3733), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1041] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3003), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3246), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1042] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3649), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3248), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1043] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3225), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1044] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3651), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2972), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1045] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3652), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4498), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1046] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4005), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3481), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2962), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2998), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3542), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1049] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3046), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3466), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1050] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4471), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3464), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1051] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3982), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3467), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1052] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2991), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4514), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3656), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3261), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1054] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4410), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1055] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4426), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4386), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3262), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3835), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1057] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3277), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1941), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1058] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3030), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1942), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1059] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1942), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3239), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1060] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1943), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3240), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1061] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3267), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3243), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1062] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3271), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3244), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1063] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3129), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1594), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1064] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3223), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1595), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1065] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3224), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1592), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1066] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1536), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4541), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(1649), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1067] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1537), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4541), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(1558), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1068] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1552), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1069] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4544), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(1558), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3194), - [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(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1642), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1070] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4544), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(1563), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3194), - [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(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1644), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1071] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1612), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4437), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1072] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1613), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1553), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1073] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2991), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1557), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1074] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4424), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4415), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1075] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4454), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1577), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1076] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1547), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1578), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1077] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1553), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1600), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1078] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1572), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1605), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1079] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4409), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3406), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1080] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4518), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3436), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1081] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1594), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3335), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1082] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1599), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4587), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3338), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1083] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4490), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1084] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3464), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1085] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3466), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2962), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1086] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3412), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3096), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1087] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4593), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3336), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3373), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1088] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4481), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3375), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1089] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4593), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3437), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3432), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1090] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3003), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3433), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1091] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3112), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4420), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3343), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3328), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1093] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3350), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3329), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1094] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3423), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3344), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1095] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3426), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3345), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1096] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3344), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1097] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3346), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3145), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3358), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3775), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3359), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3148), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1100] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1912), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3149), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1101] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3138), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4436), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3139), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4441), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4442), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1104] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4477), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1105] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4487), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1106] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4489), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3767), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1107] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3159), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3769), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1108] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3032), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4708), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2949), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1109] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4708), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1110] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3878), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3302), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1111] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4707), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2962), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1112] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4707), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2993), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1619), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1113] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1910), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1114] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1637), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1581), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1115] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1617), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4202), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1116] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(4198), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1117] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3888), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3850), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1118] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1931), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3030), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3824), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3785), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3763), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4451), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3766), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3003), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3808), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2972), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1124] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4331), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3856), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1125] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4453), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4422), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1126] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4306), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1127] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3814), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2962), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1128] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2998), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4424), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1129] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3046), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3838), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [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(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2991), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1131] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3841), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3660), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1132] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3032), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3661), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1133] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3728), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5022), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2949), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(593), + [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(601), + [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), }, [1134] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3729), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5022), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(593), + [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(601), + [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), }, [1135] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(5022), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2962), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4391), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1136] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(5022), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2993), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3276), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1137] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4398), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3251), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1138] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3235), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1925), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3270), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2110), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1140] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), [sym_type] = STATE(2006), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1141] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2112), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2042), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1142] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2041), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4981), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2043), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1143] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4529), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2042), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4448), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1144] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4529), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2044), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4454), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [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), }, [1145] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4472), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4981), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2045), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1146] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4478), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4489), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1147] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4492), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1148] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4505), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4497), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1149] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4507), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4510), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [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(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [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), }, [1150] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1573), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [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(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4587), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1152] = { - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_RPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_COLON] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_RBRACK] = ACTIONS(3318), - [sym_glimmer_opening_tag] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_EQ_GT] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3318), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3316), - [anon_sym_extends] = ACTIONS(3316), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1153] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1154] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3313), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3313), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3313), + [anon_sym_any] = ACTIONS(3313), + [anon_sym_number] = ACTIONS(3313), + [anon_sym_boolean] = ACTIONS(3313), + [anon_sym_string] = ACTIONS(3313), + [anon_sym_symbol] = ACTIONS(3313), + [anon_sym_object] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1155] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3348), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4576), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1156] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1157] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(4704), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3382), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3384), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3386), - [anon_sym_private] = ACTIONS(3386), - [anon_sym_protected] = ACTIONS(3386), - [anon_sym_override] = ACTIONS(3388), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3313), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3313), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3313), + [anon_sym_any] = ACTIONS(3313), + [anon_sym_number] = ACTIONS(3313), + [anon_sym_boolean] = ACTIONS(3313), + [anon_sym_string] = ACTIONS(3313), + [anon_sym_symbol] = ACTIONS(3313), + [anon_sym_object] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1158] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1159] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1160] = { - [sym_identifier] = ACTIONS(3392), - [anon_sym_export] = ACTIONS(3392), - [anon_sym_type] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_typeof] = ACTIONS(3392), - [anon_sym_import] = ACTIONS(3392), - [anon_sym_let] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_await] = ACTIONS(3392), - [anon_sym_COLON] = ACTIONS(3394), - [anon_sym_yield] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3394), - [anon_sym_RBRACK] = ACTIONS(3394), - [sym_glimmer_opening_tag] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_async] = ACTIONS(3392), - [anon_sym_function] = ACTIONS(3392), - [anon_sym_EQ_GT] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_void] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3394), - [sym_number] = ACTIONS(3394), - [sym_private_property_identifier] = ACTIONS(3394), - [sym_this] = ACTIONS(3392), - [sym_super] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_null] = ACTIONS(3392), - [sym_undefined] = ACTIONS(3392), - [anon_sym_AT] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_readonly] = ACTIONS(3392), - [anon_sym_get] = ACTIONS(3392), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_QMARK] = ACTIONS(3394), - [anon_sym_declare] = ACTIONS(3392), - [anon_sym_public] = ACTIONS(3392), - [anon_sym_private] = ACTIONS(3392), - [anon_sym_protected] = ACTIONS(3392), - [anon_sym_override] = ACTIONS(3392), - [anon_sym_module] = ACTIONS(3392), - [anon_sym_any] = ACTIONS(3392), - [anon_sym_number] = ACTIONS(3392), - [anon_sym_boolean] = ACTIONS(3392), - [anon_sym_string] = ACTIONS(3392), - [anon_sym_symbol] = ACTIONS(3392), - [anon_sym_object] = ACTIONS(3392), - [anon_sym_extends] = ACTIONS(3392), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1161] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3844), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3844), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3844), + [sym_property_signature] = STATE(3844), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3844), + [sym_index_signature] = STATE(3844), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, [1162] = { - [sym_identifier] = ACTIONS(3398), - [anon_sym_export] = ACTIONS(3398), - [anon_sym_type] = ACTIONS(3398), - [anon_sym_EQ] = ACTIONS(3398), - [anon_sym_namespace] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_COMMA] = ACTIONS(3400), - [anon_sym_RBRACE] = ACTIONS(3400), - [anon_sym_typeof] = ACTIONS(3398), - [anon_sym_import] = ACTIONS(3398), - [anon_sym_let] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_await] = ACTIONS(3398), - [anon_sym_COLON] = ACTIONS(3400), - [anon_sym_yield] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_RBRACK] = ACTIONS(3400), - [sym_glimmer_opening_tag] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3400), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_SQUOTE] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3398), - [anon_sym_async] = ACTIONS(3398), - [anon_sym_function] = ACTIONS(3398), - [anon_sym_EQ_GT] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_using] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_SLASH] = ACTIONS(3398), - [anon_sym_LT] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_void] = ACTIONS(3398), - [anon_sym_delete] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3400), - [sym_number] = ACTIONS(3400), - [sym_private_property_identifier] = ACTIONS(3400), - [sym_this] = ACTIONS(3398), - [sym_super] = ACTIONS(3398), - [sym_true] = ACTIONS(3398), - [sym_false] = ACTIONS(3398), - [sym_null] = ACTIONS(3398), - [sym_undefined] = ACTIONS(3398), - [anon_sym_AT] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3398), - [anon_sym_readonly] = ACTIONS(3398), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3398), - [anon_sym_QMARK] = ACTIONS(3400), - [anon_sym_declare] = ACTIONS(3398), - [anon_sym_public] = ACTIONS(3398), - [anon_sym_private] = ACTIONS(3398), - [anon_sym_protected] = ACTIONS(3398), - [anon_sym_override] = ACTIONS(3398), - [anon_sym_module] = ACTIONS(3398), - [anon_sym_any] = ACTIONS(3398), - [anon_sym_number] = ACTIONS(3398), - [anon_sym_boolean] = ACTIONS(3398), - [anon_sym_string] = ACTIONS(3398), - [anon_sym_symbol] = ACTIONS(3398), - [anon_sym_object] = ACTIONS(3398), - [anon_sym_extends] = ACTIONS(3398), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4576), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1163] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1164] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(4704), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3404), - [anon_sym_let] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3382), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3384), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3386), - [anon_sym_private] = ACTIONS(3386), - [anon_sym_protected] = ACTIONS(3386), - [anon_sym_override] = ACTIONS(3388), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1165] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3406), - [anon_sym_export] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_let] = ACTIONS(3406), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_readonly] = ACTIONS(3416), - [anon_sym_get] = ACTIONS(3418), - [anon_sym_set] = ACTIONS(3418), - [anon_sym_declare] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3420), - [anon_sym_private] = ACTIONS(3420), - [anon_sym_protected] = ACTIONS(3420), - [anon_sym_override] = ACTIONS(3422), - [anon_sym_module] = ACTIONS(3406), - [anon_sym_any] = ACTIONS(3406), - [anon_sym_number] = ACTIONS(3406), - [anon_sym_boolean] = ACTIONS(3406), - [anon_sym_string] = ACTIONS(3406), - [anon_sym_symbol] = ACTIONS(3406), - [anon_sym_object] = ACTIONS(3406), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1166] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_PIPE] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_extends] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, [1167] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1168] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1169] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1170] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_RPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_COLON] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_RBRACK] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_EQ_GT] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_PIPE] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_GT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_extends] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, [1171] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_GT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_extends] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, [1172] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1173] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1174] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1175] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1176] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1177] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1178] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1179] = { - [sym_export_statement] = STATE(3767), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(5247), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5250), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(5247), - [sym_method_definition] = STATE(5250), - [sym_pair] = STATE(5250), - [sym_pair_pattern] = STATE(5247), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3767), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3767), - [sym_property_signature] = STATE(3767), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3767), - [sym_index_signature] = STATE(3767), - [aux_sym_export_statement_repeat1] = STATE(4407), - [sym_identifier] = ACTIONS(3440), - [anon_sym_export] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3440), - [anon_sym_any] = ACTIONS(3440), - [anon_sym_number] = ACTIONS(3440), - [anon_sym_boolean] = ACTIONS(3440), - [anon_sym_string] = ACTIONS(3440), - [anon_sym_symbol] = ACTIONS(3440), - [anon_sym_object] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3312), + [sym_export_statement] = STATE(3814), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(5225), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(5230), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(5225), + [sym_method_definition] = STATE(5230), + [sym_pair] = STATE(5230), + [sym_pair_pattern] = STATE(5225), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3814), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3814), + [sym_property_signature] = STATE(3814), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3814), + [sym_index_signature] = STATE(3814), + [aux_sym_export_statement_repeat1] = STATE(4481), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1180] = { - [sym_export_statement] = STATE(3756), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(5247), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5250), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(5247), - [sym_method_definition] = STATE(5250), - [sym_pair] = STATE(5250), - [sym_pair_pattern] = STATE(5247), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3756), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3756), - [sym_property_signature] = STATE(3756), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3756), - [sym_index_signature] = STATE(3756), - [aux_sym_export_statement_repeat1] = STATE(4407), - [sym_identifier] = ACTIONS(3440), - [anon_sym_export] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3440), - [anon_sym_any] = ACTIONS(3440), - [anon_sym_number] = ACTIONS(3440), - [anon_sym_boolean] = ACTIONS(3440), - [anon_sym_string] = ACTIONS(3440), - [anon_sym_symbol] = ACTIONS(3440), - [anon_sym_object] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3312), + [sym_export_statement] = STATE(3790), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(5225), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(5230), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(5225), + [sym_method_definition] = STATE(5230), + [sym_pair] = STATE(5230), + [sym_pair_pattern] = STATE(5225), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3790), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3790), + [sym_property_signature] = STATE(3790), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3790), + [sym_index_signature] = STATE(3790), + [aux_sym_export_statement_repeat1] = STATE(4481), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1181] = { - [sym_nested_identifier] = STATE(1624), - [sym_string] = STATE(1626), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1182] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1183] = { - [sym_nested_identifier] = STATE(1624), - [sym_string] = STATE(1626), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1184] = { - [sym_nested_identifier] = STATE(1624), - [sym_string] = STATE(1626), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1608), + [sym_string] = STATE(1612), + [sym__module] = STATE(1771), + [sym_identifier] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1185] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1186] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1187] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1608), + [sym_string] = STATE(1612), + [sym__module] = STATE(1771), + [sym_identifier] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1188] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1189] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1608), + [sym_string] = STATE(1612), + [sym__module] = STATE(1771), + [sym_identifier] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1190] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1191] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1192] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_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(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 14, - ACTIONS(666), 1, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(676), 1, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(687), 1, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(699), 1, + ACTIONS(694), 1, anon_sym_RBRACE, - ACTIONS(2302), 1, + ACTIONS(2149), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, + ACTIONS(2158), 1, anon_sym_LT, - ACTIONS(3463), 1, + ACTIONS(3456), 1, sym_identifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -139945,7 +138127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139961,12 +138143,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(122), 23, + 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, @@ -139982,185 +138163,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [93] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3465), 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(3467), 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, - [164] = 15, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + [93] = 14, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(909), 1, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(913), 1, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2158), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [259] = 14, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3438), 1, + ACTIONS(3456), 1, sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(154), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -140172,7 +138206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140188,11 +138222,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [186] = 15, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(891), 1, + anon_sym_COLON, + ACTIONS(895), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 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(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140209,38 +138322,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [352] = 13, - ACTIONS(841), 1, + [281] = 14, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(3469), 1, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(2149), 1, + anon_sym_LPAREN, + ACTIONS(2158), 1, + anon_sym_LT, + ACTIONS(3456), 1, sym_identifier, - STATE(4464), 1, - sym_variable_declarator, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3440), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(154), 14, + 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, @@ -140250,7 +138365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140266,11 +138381,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(122), 23, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140284,22 +138399,21 @@ 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_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [443] = 3, + [374] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 23, + ACTIONS(3458), 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, @@ -140316,9 +138430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3473), 39, + ACTIONS(3460), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140358,16 +138473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [514] = 3, + [445] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3475), 23, + ACTIONS(3462), 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, @@ -140384,9 +138498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3477), 39, + ACTIONS(3464), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140426,63 +138541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [585] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(939), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + [516] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(3466), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140499,46 +138566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [674] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, + anon_sym_QMARK, + ACTIONS(3468), 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_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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140554,42 +138599,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(122), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [763] = 3, + [587] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 23, + ACTIONS(3470), 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, @@ -140606,9 +138634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3481), 39, + ACTIONS(3472), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140648,32 +138677,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [834] = 13, - ACTIONS(149), 1, + [658] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(887), 1, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(938), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 12, + ACTIONS(154), 14, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140685,7 +138712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140701,12 +138728,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(122), 24, + 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, @@ -140723,89 +138749,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [925] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3483), 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(3485), 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, - [996] = 4, - ACTIONS(3487), 1, + [747] = 4, + ACTIONS(3474), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 23, + ACTIONS(3458), 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, @@ -140822,9 +138781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3473), 38, + ACTIONS(3460), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140863,101 +138823,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1069] = 4, - ACTIONS(3489), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3479), 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(3481), 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, - [1142] = 12, - ACTIONS(149), 1, + [820] = 14, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(890), 1, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(905), 1, + anon_sym_of, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140968,7 +138862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140984,12 +138878,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(122), 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, @@ -141006,39 +138898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1231] = 14, - ACTIONS(666), 1, + [913] = 13, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(3463), 1, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(905), 1, + anon_sym_of, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3476), 1, sym_identifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + STATE(4416), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + STATE(3387), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(154), 13, 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, @@ -141048,7 +138940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141064,12 +138956,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(122), 23, + 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, @@ -141083,51 +138973,57 @@ 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_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1324] = 14, - ACTIONS(666), 1, - anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(3463), 1, - sym_identifier, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, + [1004] = 4, + ACTIONS(3478), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(3462), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3464), 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_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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141143,12 +139039,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(122), 23, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [1077] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3480), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141162,21 +139071,61 @@ 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_GT, anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3482), 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, - [1417] = 3, + anon_sym_implements, + [1148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3491), 23, + ACTIONS(3484), 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, @@ -141193,9 +139142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3493), 39, + ACTIONS(3486), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -141235,27 +139185,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1488] = 12, - ACTIONS(149), 1, + [1219] = 12, + ACTIONS(152), 1, + anon_sym_EQ_GT, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(880), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -141271,7 +139221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141287,12 +139237,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(122), 24, + 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, @@ -141309,121 +139258,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1577] = 3, + [1308] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(938), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3495), 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(3497), 39, + ACTIONS(154), 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_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, - [1648] = 14, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(3509), 1, anon_sym_DOT, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3513), 1, anon_sym_QMARK_DOT, - ACTIONS(3519), 1, - anon_sym_LT, - STATE(3128), 1, - sym_arguments, - STATE(3248), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3503), 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(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141439,52 +139313,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(3499), 18, + 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_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [1740] = 13, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + [1397] = 13, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(913), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(126), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141494,7 +139376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141510,12 +139392,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(122), 24, + 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, @@ -141532,32 +139413,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1830] = 13, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3526), 1, + [1488] = 12, + ACTIONS(152), 1, anon_sym_EQ_GT, - ACTIONS(3528), 1, - anon_sym_LT, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(154), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141573,29 +139469,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(3503), 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(3499), 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, @@ -141609,19 +139487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [1920] = 3, + anon_sym_instanceof, + anon_sym_satisfies, + [1577] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2520), 22, + ACTIONS(3488), 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, @@ -141638,8 +139519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2518), 39, + anon_sym_QMARK, + ACTIONS(3490), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -141679,29 +139562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1990] = 13, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(3521), 1, + [1648] = 5, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3528), 1, - anon_sym_LT, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141717,29 +139584,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(3503), 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(3499), 20, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141753,34 +139601,63 @@ 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_GT, anon_sym_QMARK_QMARK, - [2080] = 11, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_EQ_GT, - ACTIONS(3424), 1, - sym_identifier, - ACTIONS(3426), 1, + ACTIONS(3496), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(3428), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - STATE(4422), 1, - sym_variable_declarator, + 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, + [1722] = 13, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(891), 1, + anon_sym_COLON, + ACTIONS(895), 1, + anon_sym_EQ_GT, + ACTIONS(910), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, - sym__automatic_semicolon, + ACTIONS(154), 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, @@ -141790,7 +139667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141806,12 +139683,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(122), 24, + 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, @@ -141828,45 +139704,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2166] = 12, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(925), 1, + [1812] = 13, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3461), 1, - sym_identifier, - STATE(1624), 1, - sym_nested_identifier, - STATE(1626), 1, - sym_string, - STATE(1770), 1, - sym__module, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(2149), 1, + anon_sym_LPAREN, + ACTIONS(2158), 1, + anon_sym_LT, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141882,12 +139746,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(122), 24, - anon_sym_STAR, + ACTIONS(154), 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, @@ -141901,33 +139781,175 @@ 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_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2254] = 12, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_EQ_GT, - ACTIONS(1635), 1, + [1902] = 13, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(3500), 1, + anon_sym_EQ, + ACTIONS(3502), 1, + anon_sym_LPAREN, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LT, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3496), 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(3492), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [1992] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2509), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(2507), 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, + [2062] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(3531), 1, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, sym_identifier, - STATE(3484), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(3530), 1, + STATE(1617), 1, sym_string, - STATE(3949), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -141942,7 +139964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141958,12 +139980,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(122), 24, + 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, @@ -141980,19 +140001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2342] = 3, + [2150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2502), 22, + ACTIONS(2531), 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, @@ -142009,8 +140030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2500), 39, + ACTIONS(2529), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -142050,27 +140072,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2412] = 12, - ACTIONS(925), 1, + [2220] = 12, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3432), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3434), 1, - anon_sym_DQUOTE, - ACTIONS(3436), 1, - anon_sym_SQUOTE, - STATE(209), 1, - sym_string, - STATE(213), 1, + STATE(1608), 1, sym_nested_identifier, - STATE(220), 1, + STATE(1612), 1, + sym_string, + STATE(1771), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -142085,7 +140107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142101,12 +140123,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(122), 24, + 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, @@ -142123,30 +140144,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2500] = 11, - ACTIONS(925), 1, + [2308] = 11, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3424), 1, + ACTIONS(3405), 1, sym_identifier, - ACTIONS(3426), 1, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - STATE(4464), 1, + STATE(4416), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, + STATE(3718), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(154), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -142160,7 +140182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142176,12 +140198,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(122), 24, + 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, @@ -142198,35 +140219,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2586] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(831), 1, + [2394] = 11, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3405), 1, sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + STATE(4451), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(154), 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, @@ -142236,7 +140257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142252,12 +140273,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(122), 24, + 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, @@ -142274,30 +140294,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2674] = 12, - ACTIONS(925), 1, + [2480] = 14, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3512), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + 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(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [2572] = 12, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(1551), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3430), 1, + ACTIONS(3526), 1, sym_identifier, - STATE(764), 1, + STATE(3500), 1, sym_nested_identifier, - STATE(785), 1, + STATE(3698), 1, sym_string, - STATE(930), 1, + STATE(4311), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -142312,7 +140411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142328,12 +140427,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(122), 24, + 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, @@ -142350,32 +140448,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2762] = 13, - ACTIONS(666), 1, + [2660] = 13, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(895), 1, + anon_sym_EQ_GT, + ACTIONS(910), 1, anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(676), 1, + ACTIONS(912), 1, anon_sym_COLON, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(154), 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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142391,29 +140504,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(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, + 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, @@ -142427,32 +140522,49 @@ 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_GT, anon_sym_QMARK_QMARK, - [2852] = 13, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(3521), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2750] = 12, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3526), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3528), 1, - anon_sym_LT, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3421), 1, + sym_identifier, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(878), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(154), 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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142468,29 +140580,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(3503), 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(3499), 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, @@ -142504,16 +140598,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [2942] = 5, - ACTIONS(3533), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2838] = 13, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(3500), 1, anon_sym_EQ, + ACTIONS(3502), 1, + anon_sym_LPAREN, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LT, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142529,11 +140643,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(3499), 21, + ACTIONS(3496), 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(3492), 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, @@ -142547,58 +140678,33 @@ 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_GT, anon_sym_QMARK_QMARK, - ACTIONS(3503), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + [2928] = 13, + ACTIONS(667), 1, anon_sym_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, - [3016] = 13, - ACTIONS(666), 1, - anon_sym_EQ, - ACTIONS(676), 1, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, + ACTIONS(3500), 1, + anon_sym_EQ, + ACTIONS(3502), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, anon_sym_LT, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142614,7 +140720,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(161), 17, + ACTIONS(3496), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142632,11 +140738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3492), 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, @@ -142652,52 +140757,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3106] = 14, - ACTIONS(3501), 1, + [3018] = 14, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 15, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142713,8 +140812,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(3499), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -142722,42 +140822,46 @@ 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_GT, anon_sym_QMARK_QMARK, - [3198] = 14, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3110] = 12, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3411), 1, sym_identifier, - STATE(1605), 1, + ACTIONS(3413), 1, + anon_sym_DQUOTE, + ACTIONS(3415), 1, + anon_sym_SQUOTE, + STATE(201), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(203), 1, sym_string, - STATE(1713), 1, + STATE(231), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142768,7 +140872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142784,12 +140888,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(122), 24, + 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, @@ -142806,46 +140909,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3290] = 13, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [3198] = 14, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + STATE(3086), 1, + sym_arguments, + STATE(3215), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3496), 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(167), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142861,54 +140972,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(122), 24, + ACTIONS(3492), 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, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3380] = 13, - ACTIONS(666), 1, + [3290] = 13, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(676), 1, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(687), 1, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(699), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - ACTIONS(2302), 1, + ACTIONS(2149), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, + ACTIONS(2158), 1, anon_sym_LT, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142924,7 +141029,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(161), 17, + ACTIONS(154), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142942,11 +141047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + 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, @@ -142962,42 +141066,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3470] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(955), 1, + [3380] = 13, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_LPAREN, + ACTIONS(2158), 1, + anon_sym_LT, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, - sym__ternary_qmark, - 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(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143013,12 +141106,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(122), 24, - anon_sym_STAR, + ACTIONS(154), 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, @@ -143032,57 +141141,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3557] = 16, - ACTIONS(3511), 1, + [3470] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3543), 1, + ACTIONS(910), 1, anon_sym_EQ, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3564), 1, - anon_sym_QMARK, - ACTIONS(3567), 1, - anon_sym_extends, - STATE(2995), 1, - sym_type_arguments, - STATE(5200), 1, - sym_type_annotation, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3546), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 13, + ACTIONS(154), 13, 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(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143098,50 +141195,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(3499), 18, + 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_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3652] = 12, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3557] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(964), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(970), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(154), 13, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143151,7 +141254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143167,12 +141270,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(122), 24, + 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, @@ -143189,53 +141291,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3739] = 14, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3569), 1, + [3644] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, anon_sym_EQ, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(970), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 14, - sym__automatic_semicolon, + ACTIONS(154), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + 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(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143251,8 +141345,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(3499), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -143260,40 +141355,46 @@ 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_GT, anon_sym_QMARK_QMARK, - [3830] = 12, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3731] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(154), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143303,7 +141404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143319,12 +141420,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(122), 24, + 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, @@ -143341,44 +141441,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3917] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(831), 1, + [3818] = 12, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(3518), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3536), 2, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143394,52 +141484,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 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, + ACTIONS(3496), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - [4004] = 12, - ACTIONS(149), 1, + [3905] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(948), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143452,7 +141553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143468,13 +141569,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(122), 25, + 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, @@ -143491,30 +141591,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4091] = 12, - ACTIONS(149), 1, + [3992] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143527,7 +141628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143543,13 +141644,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(122), 25, + 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, @@ -143566,43 +141666,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4178] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, + [4079] = 16, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3536), 1, + anon_sym_LBRACK, ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3571), 1, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(3573), 1, - anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(3559), 1, + anon_sym_QMARK, + STATE(2964), 1, sym_type_arguments, + STATE(5159), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 14, - sym__automatic_semicolon, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3496), 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, @@ -143612,7 +141714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143628,7 +141730,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(3499), 17, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143645,30 +141747,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [4269] = 13, - ACTIONS(149), 1, + [4174] = 13, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(833), 1, + ACTIONS(826), 1, anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143681,7 +141784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143697,12 +141800,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(122), 24, + 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, @@ -143719,110 +141821,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4358] = 13, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3575), 1, - anon_sym_DOT, - ACTIONS(3578), 1, - anon_sym_LT, - STATE(3251), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3546), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3567), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 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, - [4447] = 14, - ACTIONS(149), 1, + [4263] = 14, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(895), 1, + ACTIONS(902), 1, anon_sym_in, - ACTIONS(898), 1, + ACTIONS(905), 1, anon_sym_of, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143835,7 +141862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143851,11 +141878,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(122), 23, + 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, @@ -143872,33 +141898,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4538] = 12, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3511), 1, + [4354] = 14, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(3555), 1, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - STATE(2995), 1, + ACTIONS(3562), 1, + anon_sym_EQ, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(3512), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, + anon_sym_extends, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3515), 15, + anon_sym_GT, + ACTIONS(3496), 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(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143914,7 +141961,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(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143932,14 +141979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3503), 17, + [4445] = 13, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(3564), 1, + anon_sym_DOT, + ACTIONS(3567), 1, + anon_sym_LT, + STATE(3250), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3542), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3548), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143950,36 +142020,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4625] = 8, - ACTIONS(3535), 1, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [4534] = 8, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3585), 1, + ACTIONS(3574), 1, anon_sym_DOT, - STATE(1266), 1, + ACTIONS(3576), 1, + anon_sym_LT, + STATE(1288), 1, sym_arguments, - STATE(5452), 1, + STATE(5440), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 14, + ACTIONS(3572), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3581), 41, + ACTIONS(3570), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -144021,25 +142125,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [4704] = 8, - ACTIONS(119), 1, + anon_sym_abstract, + [4613] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3578), 1, anon_sym_EQ, - ACTIONS(159), 1, + ACTIONS(3580), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 5, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 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(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 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, + [4704] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1040), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 12, + sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -144048,12 +142233,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(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144069,11 +142252,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(122), 21, + 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, @@ -144090,39 +142273,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [4782] = 14, - ACTIONS(3535), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4790] = 14, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3587), 1, + ACTIONS(3582), 1, anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, - STATE(2919), 1, + STATE(2917), 1, sym_arguments, - STATE(2954), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3512), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 13, + anon_sym_GT, + ACTIONS(3496), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144132,8 +142319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144149,7 +142335,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(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144167,27 +142353,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4872] = 12, - ACTIONS(149), 1, + [4880] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(978), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144200,7 +142386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144216,12 +142402,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(122), 24, + 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, @@ -144238,30 +142423,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4958] = 12, - ACTIONS(149), 1, + [4966] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1051), 1, + ACTIONS(982), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144274,7 +142460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144290,12 +142476,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(122), 24, + 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, @@ -144312,31 +142497,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5044] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, + [5052] = 8, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3590), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3586), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3496), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -144345,10 +142528,12 @@ 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144364,12 +142549,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(122), 24, + ACTIONS(3492), 21, 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, @@ -144386,99 +142569,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5130] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3593), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [5130] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, + ACTIONS(186), 1, 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(3591), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [5198] = 12, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(1044), 1, anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3595), 1, + ACTIONS(3431), 1, sym_identifier, - ACTIONS(3597), 1, - anon_sym_LBRACK, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4808), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 11, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144488,7 +142604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144504,11 +142620,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(122), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144525,32 +142641,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5284] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + [5216] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_QMARK, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 5, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 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, @@ -144560,7 +142686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + anon_sym_implements, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144576,52 +142703,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(122), 21, + ACTIONS(3492), 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, - [5362] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [5306] = 12, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(989), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(905), 1, + anon_sym_of, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3596), 1, sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3598), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + STATE(4813), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(154), 11, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144631,7 +142755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144647,12 +142771,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(122), 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, @@ -144669,102 +142791,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5448] = 7, - ACTIONS(3604), 1, - anon_sym_class, - ACTIONS(3607), 1, - anon_sym_AT, - STATE(1262), 1, - aux_sym_export_statement_repeat1, - STATE(1297), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3602), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3600), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5524] = 12, - ACTIONS(3555), 1, + [5392] = 12, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(3548), 1, anon_sym_extends, - ACTIONS(3571), 1, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(3573), 1, - anon_sym_EQ_GT, - STATE(2995), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3515), 15, + anon_sym_GT, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144780,13 +142834,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(3503), 16, + ACTIONS(3496), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144797,7 +142851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144815,25 +142869,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5610] = 8, - ACTIONS(3610), 1, - anon_sym_EQ, - ACTIONS(3615), 1, + [5478] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3617), 1, - anon_sym_QMARK, + ACTIONS(1038), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -144842,12 +142899,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(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144863,11 +142918,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(3499), 21, + 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, @@ -144884,38 +142939,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [5688] = 14, - ACTIONS(3535), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5564] = 14, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3601), 1, anon_sym_EQ, - ACTIONS(3621), 1, + ACTIONS(3603), 1, anon_sym_EQ_GT, - STATE(2919), 1, + STATE(2917), 1, sym_arguments, - STATE(2954), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 3, - anon_sym_RPAREN, + ACTIONS(3512), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3503), 13, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144926,7 +142985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144942,11 +143001,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(3499), 18, + ACTIONS(3492), 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, @@ -144961,27 +143019,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5778] = 12, - ACTIONS(149), 1, + [5654] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(987), 1, + ACTIONS(974), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144994,7 +143052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145010,12 +143068,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(122), 24, + 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, @@ -145032,94 +143089,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5864] = 6, - ACTIONS(3607), 1, - anon_sym_AT, - STATE(1262), 1, - aux_sym_export_statement_repeat1, - STATE(1297), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3602), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(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_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5938] = 8, - ACTIONS(3533), 1, + [5740] = 8, + ACTIONS(220), 1, anon_sym_EQ, - ACTIONS(3615), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3625), 1, + ACTIONS(720), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 5, + ACTIONS(223), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145135,7 +143125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145151,11 +143141,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(3499), 21, + 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, @@ -145172,25 +143161,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6016] = 9, - ACTIONS(841), 1, + [5818] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3601), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(3603), 1, anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3522), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3512), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3496), 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(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145206,7 +143220,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(122), 18, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145221,62 +143235,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [6096] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(3635), 1, + [5908] = 9, + ACTIONS(844), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3608), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 13, + ACTIONS(1898), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145286,7 +143274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145302,7 +143290,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(3499), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145317,108 +143305,53 @@ 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_GT, anon_sym_QMARK_QMARK, - [6186] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3639), 16, - anon_sym_LBRACE, - anon_sym_BANG, + [5988] = 14, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3514), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3637), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [6254] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3518), 1, anon_sym_EQ_GT, - ACTIONS(983), 1, - anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3512), 4, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3496), 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(167), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145434,60 +143367,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 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, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6340] = 15, - ACTIONS(3552), 1, + [6078] = 15, + ACTIONS(3536), 1, anon_sym_LBRACK, - ACTIONS(3555), 1, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(3548), 1, anon_sym_extends, - ACTIONS(3610), 1, - anon_sym_EQ, - ACTIONS(3615), 1, + ACTIONS(3553), 1, + anon_sym_RPAREN, + ACTIONS(3603), 1, anon_sym_EQ_GT, + ACTIONS(3611), 1, + anon_sym_EQ, ACTIONS(3617), 1, anon_sym_QMARK, - ACTIONS(3641), 1, - anon_sym_RPAREN, - STATE(2995), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3613), 2, + ACTIONS(3614), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3503), 13, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145501,7 +143428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145517,11 +143444,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(3499), 18, + ACTIONS(3492), 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, @@ -145535,39 +143461,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6432] = 14, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3511), 1, + [6170] = 8, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3505), 4, + ACTIONS(3622), 5, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3503), 11, + ACTIONS(3496), 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, @@ -145577,7 +143495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145593,46 +143511,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(3499), 18, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6522] = 12, - ACTIONS(149), 1, + [6248] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(993), 1, + ACTIONS(1042), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145645,7 +143566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145661,12 +143582,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(122), 24, + 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, @@ -145683,30 +143603,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6608] = 12, - ACTIONS(149), 1, + [6334] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145719,7 +143640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145735,12 +143656,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(122), 24, + 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, @@ -145757,107 +143677,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6694] = 15, - ACTIONS(3546), 1, - anon_sym_RPAREN, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3621), 1, - anon_sym_EQ_GT, - ACTIONS(3644), 1, - anon_sym_EQ, - STATE(2995), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3647), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 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, - [6786] = 12, - ACTIONS(149), 1, + [6420] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(976), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145870,7 +143714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145886,12 +143730,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(122), 24, + 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, @@ -145908,33 +143751,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6872] = 12, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3555), 1, + [6506] = 6, + ACTIONS(3628), 1, + anon_sym_AT, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3626), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3624), 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, + [6580] = 12, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(3548), 1, anon_sym_extends, - ACTIONS(3569), 1, + ACTIONS(3578), 1, anon_sym_EQ, - STATE(2995), 1, + ACTIONS(3580), 1, + anon_sym_EQ_GT, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3515), 15, + anon_sym_GT, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145950,13 +143862,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(3503), 16, + ACTIONS(3496), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145967,7 +143879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145985,27 +143897,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6958] = 12, - ACTIONS(149), 1, + [6666] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(991), 1, + ACTIONS(1036), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1605), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -146018,7 +143930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146034,12 +143946,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(122), 24, + 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, @@ -146056,31 +143967,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [7044] = 12, - ACTIONS(149), 1, + [6752] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3633), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DQUOTE, - ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3631), 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, + [6820] = 8, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(985), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(828), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(826), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(154), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -146089,10 +144063,12 @@ 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146108,12 +144084,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(122), 24, + ACTIONS(120), 21, 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, @@ -146130,52 +144104,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7130] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(3621), 1, + [6898] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(980), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 13, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146191,8 +144155,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(3499), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146200,40 +144165,53 @@ 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_GT, anon_sym_QMARK_QMARK, - [7220] = 9, - ACTIONS(851), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6984] = 15, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(887), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_RPAREN, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 2, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1777), 6, - sym__automatic_semicolon, + ACTIONS(3622), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(161), 14, + anon_sym_COLON, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146244,7 +144222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146260,11 +144238,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(122), 19, + ACTIONS(3492), 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, @@ -146276,52 +144253,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7300] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3650), 1, + [7076] = 9, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3605), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 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(3515), 15, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146337,7 +144290,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(3499), 17, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146352,38 +144305,19 @@ 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, - [7389] = 13, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - ACTIONS(3623), 1, - anon_sym_COLON, - STATE(2995), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3567), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3503), 13, + ACTIONS(154), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146394,7 +144328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + [7156] = 6, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146410,40 +144352,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3496), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7476] = 7, - ACTIONS(3533), 1, + [7229] = 7, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3625), 1, + ACTIONS(3590), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 5, + ACTIONS(3586), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146459,7 +144425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146475,11 +144441,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146496,36 +144461,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7551] = 8, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, + [7304] = 14, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(869), 1, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3586), 1, anon_sym_COLON, - ACTIONS(3463), 1, - sym_identifier, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3542), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3638), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, + ACTIONS(3496), 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146541,72 +144519,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 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, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7628] = 4, - ACTIONS(3489), 1, - anon_sym_extends, + [7393] = 13, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3586), 1, + anon_sym_COLON, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3542), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3481), 35, - sym__automatic_semicolon, + ACTIONS(3548), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, - anon_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(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146622,109 +144593,57 @@ 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, - [7697] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3583), 15, - anon_sym_LBRACE, + ACTIONS(3492), 18, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3581), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_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_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7764] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [7480] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_EQ, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_EQ_GT, - STATE(2995), 1, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(3512), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 15, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146734,7 +144653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146750,7 +144669,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(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146768,85 +144687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7849] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3656), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3654), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7916] = 4, + [7569] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 4, + ACTIONS(3474), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3471), 22, + ACTIONS(3458), 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, @@ -146863,8 +144717,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 32, + ACTIONS(3460), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -146897,38 +144752,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7985] = 14, - ACTIONS(3535), 1, + [7638] = 14, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3658), 1, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(3648), 1, anon_sym_EQ_GT, - STATE(2919), 1, + STATE(2917), 1, sym_arguments, - STATE(2954), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3512), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 12, + anon_sym_GT, + ACTIONS(3496), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146938,49 +144793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 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, - [8074] = 6, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146996,64 +144809,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 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, - [8147] = 4, + [7727] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 4, + ACTIONS(3478), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3479), 22, + ACTIONS(3462), 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, @@ -147070,8 +144857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 32, + ACTIONS(3464), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -147104,43 +144892,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8216] = 11, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(159), 1, + [7796] = 8, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(3627), 1, - anon_sym_LBRACK, + ACTIONS(858), 1, + anon_sym_EQ, + ACTIONS(860), 1, + anon_sym_COLON, + ACTIONS(3456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1777), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(154), 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, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147156,17 +144936,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(122), 19, + 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_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147175,35 +144957,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8299] = 12, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3587), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7873] = 11, + ACTIONS(220), 1, anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(223), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, + anon_sym_COLON, + ACTIONS(1898), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3608), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 15, + ACTIONS(154), 14, 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, @@ -147214,8 +144997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147231,7 +145013,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(3499), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147246,39 +145028,168 @@ 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_GT, anon_sym_QMARK_QMARK, - [8384] = 14, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3552), 1, + [7956] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3652), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3650), 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, + [8023] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3656), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(3555), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3654), 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, + [8090] = 12, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(3548), 1, anon_sym_extends, - ACTIONS(3623), 1, - anon_sym_COLON, - STATE(2995), 1, + ACTIONS(3601), 1, + anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_EQ_GT, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3536), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3662), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3503), 13, + anon_sym_GT, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147289,7 +145200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147305,11 +145216,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(3499), 18, + ACTIONS(3492), 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, @@ -147324,59 +145234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8473] = 9, - ACTIONS(875), 1, - anon_sym_EQ, - ACTIONS(881), 1, - anon_sym_EQ_GT, - ACTIONS(1777), 1, + [8175] = 4, + ACTIONS(3474), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 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(122), 18, + ACTIONS(3458), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147384,7 +145250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147393,16 +145261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8552] = 6, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(3460), 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, @@ -147418,18 +145290,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(161), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147439,40 +145299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8625] = 4, - ACTIONS(3487), 1, + [8244] = 4, + ACTIONS(3478), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 22, + ACTIONS(3462), 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, @@ -147489,8 +145326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 35, + ACTIONS(3464), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147526,110 +145364,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8694] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3668), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3666), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [8761] = 12, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(3621), 1, + [8313] = 8, + ACTIONS(682), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(858), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_COLON, + ACTIONS(3456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 15, + ACTIONS(154), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147645,8 +145408,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(3499), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147654,106 +145418,52 @@ 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_GT, anon_sym_QMARK_QMARK, - [8846] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3672), 15, - anon_sym_LBRACE, - anon_sym_BANG, + anon_sym_instanceof, + anon_sym_satisfies, + [8390] = 14, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3514), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3670), 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, + ACTIONS(3516), 1, 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, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [8913] = 11, - ACTIONS(221), 1, - anon_sym_EQ, - ACTIONS(227), 1, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(3627), 1, - anon_sym_LBRACK, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1777), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3630), 2, + ACTIONS(3522), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(3512), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3496), 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, @@ -147763,7 +145473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147779,11 +145489,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(122), 19, + ACTIONS(3492), 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, @@ -147795,41 +145504,40 @@ 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_GT, anon_sym_QMARK_QMARK, - [8996] = 14, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, + [8479] = 12, + ACTIONS(3536), 1, + anon_sym_LBRACK, ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3615), 1, + ACTIONS(3582), 1, + anon_sym_EQ, + ACTIONS(3584), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 4, + ACTIONS(3548), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3503), 11, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 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, @@ -147839,7 +145547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147855,11 +145563,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(3499), 18, + ACTIONS(3492), 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, @@ -147874,21 +145581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9085] = 7, - ACTIONS(3610), 1, - anon_sym_EQ, + [8564] = 7, ACTIONS(3617), 1, anon_sym_QMARK, + ACTIONS(3619), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 5, + ACTIONS(3622), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147904,7 +145611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147920,11 +145627,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147941,25 +145647,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9160] = 9, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, + [8639] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(1777), 1, - anon_sym_extends, + ACTIONS(3660), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3512), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, + anon_sym_extends, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_GT, + ACTIONS(3496), 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(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147975,25 +145706,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(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148008,38 +145721,105 @@ 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, - [9239] = 14, - ACTIONS(3501), 1, + [8728] = 7, + ACTIONS(3628), 1, + anon_sym_AT, + ACTIONS(3662), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3626), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3624), 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, + [8803] = 14, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3535), 1, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3524), 1, anon_sym_LT, - STATE(2919), 1, + STATE(2917), 1, sym_arguments, - STATE(2954), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(3522), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3505), 3, + ACTIONS(3512), 3, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3503), 12, + ACTIONS(3496), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -148052,7 +145832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148068,11 +145848,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(3499), 18, + ACTIONS(3492), 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, @@ -148086,16 +145865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9328] = 6, - ACTIONS(3501), 1, + [8892] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148111,7 +145891,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(3503), 20, + ACTIONS(154), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -148132,11 +145912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -148153,16 +145932,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9401] = 6, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3533), 1, + [8965] = 9, + ACTIONS(866), 1, anon_sym_EQ, + ACTIONS(872), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3605), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148178,16 +145967,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(3503), 20, + ACTIONS(154), 17, + 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_LBRACK, - anon_sym_RBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148199,19 +145985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 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, @@ -148221,48 +146004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9474] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3674), 1, + [9044] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3518), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 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(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148278,7 +146028,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(3499), 17, + ACTIONS(3496), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148287,44 +146058,59 @@ 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_GT, anon_sym_QMARK_QMARK, - [9563] = 8, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, + [9117] = 12, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(857), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym_identifier, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3536), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 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(167), 15, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148340,49 +146126,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(122), 24, + ACTIONS(3492), 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, - [9640] = 9, - ACTIONS(227), 1, + [9202] = 9, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(890), 1, + ACTIONS(858), 1, anon_sym_EQ, - ACTIONS(1777), 1, + ACTIONS(1898), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3605), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148398,12 +146177,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(161), 16, + ACTIONS(154), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148415,7 +146195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148434,46 +146214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9718] = 4, + [9281] = 6, + ACTIONS(834), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3479), 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(3481), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148489,6 +146238,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(154), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148498,16 +146259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9786] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3491), 22, + ACTIONS(120), 21, 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, @@ -148524,19 +146279,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3493), 35, - sym__automatic_semicolon, + [9354] = 11, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(152), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(126), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1898), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, - anon_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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148552,33 +146333,44 @@ 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, - [9852] = 9, - ACTIONS(939), 1, - anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(120), 19, + 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_GT, + anon_sym_QMARK_QMARK, + [9437] = 9, + ACTIONS(152), 1, anon_sym_EQ_GT, - ACTIONS(1777), 1, + ACTIONS(880), 1, + anon_sym_EQ, + ACTIONS(1898), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3605), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148594,11 +146386,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(161), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148610,8 +146403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148630,42 +146422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9930] = 11, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, + [9515] = 6, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, - ACTIONS(3627), 1, - anon_sym_LBRACK, + ACTIONS(858), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3678), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(161), 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(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148681,17 +146446,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(154), 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_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148700,38 +146486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10012] = 8, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, + [9587] = 6, + ACTIONS(682), 1, anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(892), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 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(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148747,11 +146512,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(122), 21, + ACTIONS(154), 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, @@ -148768,31 +146552,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10088] = 10, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(887), 1, + [9659] = 12, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(3627), 1, - anon_sym_LBRACK, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 2, + ACTIONS(3536), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1777), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(3496), 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, @@ -148803,7 +146591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148819,11 +146607,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(122), 19, + ACTIONS(3492), 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, @@ -148835,28 +146622,49 @@ 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_GT, anon_sym_QMARK_QMARK, - [10168] = 9, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_EQ_GT, - ACTIONS(3627), 1, - anon_sym_LBRACK, + [9743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3480), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3482), 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, @@ -148872,14 +146680,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(161), 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, @@ -148889,35 +146689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10246] = 3, + [9809] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 22, + ACTIONS(3484), 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, @@ -148934,8 +146714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3485), 35, + ACTIONS(3486), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148971,17 +146752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10312] = 7, - ACTIONS(857), 1, - anon_sym_COLON, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3569), 1, + [9875] = 6, + ACTIONS(866), 1, anon_sym_EQ, + ACTIONS(872), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148997,13 +146776,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(3503), 18, + ACTIONS(154), 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, @@ -149016,11 +146796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -149037,46 +146816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10386] = 3, + [9947] = 6, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3580), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 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(3467), 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(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149092,6 +146842,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(3496), 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, @@ -149101,21 +146862,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10452] = 8, - ACTIONS(221), 1, - anon_sym_EQ, - ACTIONS(227), 1, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [10019] = 8, + ACTIONS(3603), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(3617), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(3614), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(161), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149131,7 +146914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149147,11 +146930,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(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149168,18 +146950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10528] = 7, - ACTIONS(687), 1, + [10095] = 7, + ACTIONS(878), 1, + anon_sym_COLON, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(857), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149195,7 +146978,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(161), 18, + ACTIONS(3496), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149214,11 +146997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149235,18 +147017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10602] = 7, - ACTIONS(869), 1, - anon_sym_COLON, - ACTIONS(3526), 1, + [10169] = 7, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3569), 1, + ACTIONS(858), 1, anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149262,7 +147045,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(3503), 18, + ACTIONS(154), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149281,11 +147064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -149302,16 +147084,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10676] = 6, - ACTIONS(687), 1, + [10243] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3572), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3570), 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, + [10309] = 10, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1898), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(154), 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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149327,14 +147199,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, - sym__automatic_semicolon, + ACTIONS(120), 19, + 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_GT, + anon_sym_QMARK_QMARK, + [10389] = 8, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(152), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(126), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149347,11 +147249,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(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, @@ -149368,14 +147285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10748] = 5, - ACTIONS(3501), 1, + [10465] = 6, + ACTIONS(3494), 1, anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149391,16 +147311,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(3503), 20, + ACTIONS(3496), 19, + 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_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149412,11 +147331,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [10537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3458), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149433,14 +147378,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10818] = 5, - ACTIONS(3533), 1, + ACTIONS(3460), 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, + [10603] = 5, + ACTIONS(3510), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149456,16 +147438,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(3503), 20, - sym__automatic_semicolon, + ACTIONS(3496), 20, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149477,11 +147459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149498,31 +147479,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10888] = 10, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(3627), 1, + [10673] = 12, + ACTIONS(3536), 1, anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3642), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_EQ_GT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1777), 3, + ACTIONS(3548), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149533,7 +147519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149549,11 +147535,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(122), 19, + ACTIONS(3492), 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, @@ -149565,21 +147550,18 @@ 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, - [10968] = 7, - ACTIONS(687), 1, + [10757] = 6, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(869), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149595,11 +147577,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(161), 18, + ACTIONS(3496), 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, @@ -149614,11 +147597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149635,85 +147617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11042] = 8, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3621), 1, - anon_sym_EQ_GT, - ACTIONS(3644), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3647), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11118] = 3, + [10829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2502), 22, + ACTIONS(3462), 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, @@ -149730,8 +147644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2500), 35, + ACTIONS(3464), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149767,15 +147682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11184] = 6, - ACTIONS(3526), 1, + [10895] = 7, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3533), 1, + ACTIONS(858), 1, anon_sym_EQ, + ACTIONS(860), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149791,12 +147708,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(3503), 19, + ACTIONS(154), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -149811,11 +147727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -149832,16 +147747,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11256] = 6, - ACTIONS(3571), 1, + [10969] = 14, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3573), 1, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3588), 1, anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3496), 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(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149857,87 +147804,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(3503), 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(3499), 21, + ACTIONS(3492), 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, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11328] = 3, + [11057] = 9, + ACTIONS(918), 1, + anon_sym_EQ, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3495), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1898), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3608), 3, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3497), 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_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149953,6 +147856,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(154), 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, @@ -149962,24 +147873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11394] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3475), 22, + 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, @@ -149989,51 +147892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3477), 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, - [11460] = 6, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3569), 1, + [11135] = 6, + ACTIONS(3578), 1, anon_sym_EQ, + ACTIONS(3580), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150049,14 +147916,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(3503), 19, + ACTIONS(3496), 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, @@ -150069,11 +147936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150090,17 +147956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11532] = 3, + [11207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2520), 22, + ACTIONS(3470), 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, @@ -150117,8 +147983,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2518), 35, + ACTIONS(3472), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150154,20 +148021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11598] = 4, + [11273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3471), 22, + ACTIONS(2509), 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, @@ -150184,13 +148046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 32, + ACTIONS(2507), 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, @@ -150218,34 +148084,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11666] = 12, - ACTIONS(3552), 1, + [11339] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3667), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LT, - ACTIONS(3674), 1, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3665), 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, + [11405] = 11, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(1898), 1, + anon_sym_extends, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, + ACTIONS(3608), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 14, + ACTIONS(3669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(154), 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, @@ -150256,7 +148182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150272,7 +148198,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(3499), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150287,50 +148213,18 @@ 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_GT, anon_sym_QMARK_QMARK, - [11750] = 14, - ACTIONS(3533), 1, + [11487] = 5, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 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(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150346,7 +148240,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(3499), 17, + ACTIONS(3496), 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(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150355,25 +148270,28 @@ 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_GT, anon_sym_QMARK_QMARK, - [11838] = 3, + [11557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 22, + ACTIONS(2531), 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, @@ -150390,8 +148308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 35, + ACTIONS(2529), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150427,34 +148346,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11904] = 12, - ACTIONS(3552), 1, + [11623] = 12, + ACTIONS(3536), 1, anon_sym_LBRACK, - ACTIONS(3555), 1, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3650), 1, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, - STATE(2995), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(3548), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 14, + anon_sym_GT, + ACTIONS(3496), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150465,7 +148384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150481,7 +148400,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(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150499,15 +148418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11988] = 6, - ACTIONS(831), 1, + [11707] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(881), 1, + ACTIONS(872), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150523,7 +148442,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(161), 19, + ACTIONS(154), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150543,11 +148462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -150564,61 +148482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12060] = 3, + [11779] = 10, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(1900), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3608), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3481), 35, - sym__automatic_semicolon, + ACTIONS(1898), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, - anon_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, @@ -150628,15 +148518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12126] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3573), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150652,39 +148534,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(3503), 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(3499), 21, + 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_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -150693,90 +148552,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12198] = 14, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + [11859] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(3474), 3, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3458), 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_GT, anon_sym_QMARK_QMARK, - [12286] = 6, - ACTIONS(875), 1, - anon_sym_EQ, - ACTIONS(881), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(3460), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150792,16 +148609,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(161), 19, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11927] = 12, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3646), 1, + anon_sym_EQ, + ACTIONS(3648), 1, + anon_sym_EQ_GT, + STATE(2964), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3548), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 14, 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, @@ -150812,55 +148656,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 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, - [12358] = 12, - ACTIONS(3501), 1, + [12011] = 8, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - STATE(2995), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(899), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 14, + anon_sym_RBRACK, + ACTIONS(154), 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, anon_sym_EQ_EQ_EQ, @@ -150871,7 +148720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150887,34 +148736,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 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_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12442] = 6, - ACTIONS(687), 1, + [12087] = 7, + ACTIONS(860), 1, + anon_sym_COLON, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(3562), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150930,12 +148784,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(161), 19, + ACTIONS(3496), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -150950,11 +148803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150971,46 +148823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12514] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3658), 1, + [12161] = 9, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(3605), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, + anon_sym_LBRACK, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151026,79 +148858,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(3499), 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, - [12598] = 7, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_EQ_GT, - ACTIONS(3682), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(154), 16, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + anon_sym_satisfies, + anon_sym_implements, + 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, @@ -151108,21 +148894,82 @@ 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, - [12671] = 4, + [12239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3675), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3673), 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, + [12305] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3478), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3479), 22, + ACTIONS(3462), 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, @@ -151139,13 +148986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 32, - sym__automatic_semicolon, + ACTIONS(3464), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151173,25 +149021,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12738] = 7, - ACTIONS(3501), 1, + [12373] = 14, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3623), 1, - anon_sym_COLON, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3684), 3, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3503), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -151201,7 +149061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151217,37 +149077,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 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, - [12811] = 6, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, + [12461] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3488), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3490), 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, @@ -151263,15 +149149,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(161), 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, @@ -151281,12 +149158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + [12527] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3466), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151303,14 +149183,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12882] = 5, - ACTIONS(3569), 1, + ACTIONS(3468), 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, + [12593] = 6, + ACTIONS(3601), 1, anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151326,14 +149245,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(3503), 19, - sym__automatic_semicolon, + ACTIONS(3496), 18, 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_DOT, anon_sym_QMARK_DOT, @@ -151346,11 +149264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151367,21 +149284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12951] = 5, - ACTIONS(3487), 1, - anon_sym_extends, - ACTIONS(3687), 1, - anon_sym_QMARK, + [12664] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 22, + ACTIONS(3474), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3458), 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, @@ -151398,14 +149314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 32, + ACTIONS(3460), 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, @@ -151432,86 +149349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13020] = 10, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3676), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3692), 1, - anon_sym_in, - ACTIONS(3694), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 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, - [13099] = 7, - ACTIONS(925), 1, + [12731] = 7, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3463), 1, + ACTIONS(3677), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -151526,7 +149374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151542,12 +149390,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(122), 24, + 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, @@ -151564,22 +149411,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [13172] = 7, + [12804] = 7, + ACTIONS(3611), 1, + anon_sym_EQ, ACTIONS(3617), 1, anon_sym_QMARK, - ACTIONS(3644), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, + ACTIONS(3614), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151595,7 +149443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151611,11 +149459,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151632,16 +149479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13245] = 6, - ACTIONS(3533), 1, + [12877] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3621), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151657,13 +149505,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(3503), 18, + ACTIONS(154), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151676,11 +149523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -151697,41 +149544,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13316] = 9, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_EQ_GT, - ACTIONS(3627), 1, - anon_sym_LBRACK, + [12948] = 5, + ACTIONS(3478), 1, + anon_sym_extends, + ACTIONS(3679), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3462), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(161), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3464), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151747,38 +149601,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(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13393] = 8, - ACTIONS(3501), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13017] = 6, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151794,12 +149634,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(3503), 17, + ACTIONS(154), 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, @@ -151812,10 +149652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + anon_sym_implements, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151832,16 +149673,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13468] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(890), 1, + [13088] = 8, + ACTIONS(3510), 1, anon_sym_EQ, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151857,13 +149703,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(161), 18, + ACTIONS(3496), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151876,11 +149721,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 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, @@ -151897,27 +149740,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13539] = 9, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + [13163] = 12, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3588), 1, anon_sym_EQ_GT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3548), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 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, @@ -151928,7 +149779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151944,41 +149795,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(122), 21, + ACTIONS(3492), 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, - [13616] = 7, - ACTIONS(3501), 1, + [13246] = 7, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(3518), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3684), 3, + ACTIONS(3686), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151994,7 +149841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152010,11 +149857,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152031,37 +149877,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13689] = 5, - ACTIONS(3571), 1, + [13319] = 7, + ACTIONS(918), 1, anon_sym_EQ, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(3456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, + ACTIONS(154), 14, 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, @@ -152069,72 +149901,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(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13758] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3487), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3471), 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(3473), 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, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152150,63 +149920,11 @@ 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, - [13825] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -152223,16 +149941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13896] = 6, - ACTIONS(939), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13392] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(3603), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152248,12 +149969,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(161), 18, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152266,12 +149988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152288,29 +150008,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13967] = 9, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [13463] = 9, + ACTIONS(964), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(970), 1, + anon_sym_EQ_GT, + ACTIONS(3605), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, + ACTIONS(1898), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 15, + anon_sym_GT, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152322,7 +150043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152338,7 +150059,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(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152357,19 +150078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14044] = 8, - ACTIONS(841), 1, + [13540] = 5, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152385,10 +150100,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(161), 17, + ACTIONS(3496), 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, @@ -152403,10 +150120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152423,20 +150140,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14119] = 7, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(887), 1, + [13609] = 7, + ACTIONS(3510), 1, anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(3686), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152452,7 +150170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152468,11 +150186,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(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152489,41 +150206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14192] = 9, - ACTIONS(969), 1, + [13682] = 5, + ACTIONS(3578), 1, anon_sym_EQ, - ACTIONS(975), 1, - anon_sym_EQ_GT, - ACTIONS(3627), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 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(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152539,52 +150230,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(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14269] = 12, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 13, + ACTIONS(3496), 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, @@ -152595,23 +150250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152620,24 +150259,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14352] = 6, - ACTIONS(3587), 1, + [13751] = 8, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(3689), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152653,12 +150300,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(3503), 18, + ACTIONS(154), 17, 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, @@ -152671,12 +150318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3499), 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, @@ -152693,16 +150337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14423] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3589), 1, + [13826] = 6, + ACTIONS(152), 1, anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152718,12 +150363,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(3503), 18, + ACTIONS(154), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152736,12 +150382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3499), 21, + 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, @@ -152758,56 +150402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14494] = 7, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, + [13897] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, + ACTIONS(3478), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + anon_sym_extends, + ACTIONS(3462), 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, @@ -152824,40 +150432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14567] = 9, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3627), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, + ACTIONS(3464), 32, + 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(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152873,35 +150458,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(122), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14644] = 6, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(3621), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13964] = 6, + ACTIONS(152), 1, anon_sym_EQ_GT, + ACTIONS(880), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152917,7 +150491,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(3503), 18, + ACTIONS(154), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -152936,11 +150510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -152957,21 +150530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14715] = 5, - ACTIONS(3489), 1, + [14035] = 5, + ACTIONS(3474), 1, anon_sym_extends, - ACTIONS(3703), 1, + ACTIONS(3691), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 22, + ACTIONS(3458), 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, @@ -152988,8 +150561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 32, + ACTIONS(3460), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -153022,104 +150596,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14784] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, + [14104] = 9, + ACTIONS(895), 1, + anon_sym_EQ_GT, + ACTIONS(910), 1, + anon_sym_EQ, + ACTIONS(3605), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(1898), 2, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3713), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3855), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 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, - [14904] = 6, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + anon_sym_extends, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(154), 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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153135,12 +150645,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, + 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, + [14181] = 7, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(126), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153153,11 +150692,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(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, @@ -153174,36 +150728,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14974] = 5, - ACTIONS(3619), 1, + [14254] = 10, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, + anon_sym_COMMA, + ACTIONS(3660), 1, + anon_sym_EQ_GT, + ACTIONS(3693), 1, anon_sym_EQ, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3698), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153216,11 +150762,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 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, @@ -153237,28 +150797,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15042] = 9, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + [14333] = 9, + ACTIONS(948), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(954), 1, + anon_sym_EQ_GT, + ACTIONS(3605), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, + ACTIONS(1898), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + anon_sym_GT, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153270,7 +150832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153286,7 +150848,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(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153305,17 +150867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15118] = 7, - ACTIONS(3501), 1, + [14410] = 6, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + ACTIONS(3594), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153331,12 +150891,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(3503), 17, + ACTIONS(3496), 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, @@ -153349,10 +150909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + anon_sym_implements, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153369,20 +150930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15190] = 8, - ACTIONS(3674), 1, + [14481] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3594), 1, anon_sym_EQ_GT, - ACTIONS(3692), 1, - anon_sym_in, - ACTIONS(3694), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153398,12 +150956,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(3503), 16, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153415,10 +150974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + anon_sym_implements, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153435,20 +150995,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15264] = 4, + [14552] = 7, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3550), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 2, + ACTIONS(3614), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3471), 22, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3496), 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(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 21, 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, @@ -153465,15 +151061,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 31, + [14625] = 9, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(891), 1, + anon_sym_COLON, + ACTIONS(895), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153489,6 +151109,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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [14702] = 9, + ACTIONS(834), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3605), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(154), 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, @@ -153498,17 +151163,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15330] = 7, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + 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_GT, + anon_sym_QMARK_QMARK, + [14779] = 7, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(910), 1, anon_sym_EQ, + ACTIONS(912), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153524,7 +151225,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(161), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153541,11 +151242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -153562,84 +151262,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15402] = 31, - ACTIONS(99), 1, + [14851] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3283), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3307), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3733), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3735), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3826), 6, + STATE(3815), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153652,172 +151353,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15522] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, + [14971] = 7, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3346), 2, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3496), 17, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(3348), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3902), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 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, - [15642] = 31, - ACTIONS(99), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [15043] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3737), 2, + ACTIONS(3724), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3739), 2, + ACTIONS(3726), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3807), 6, + STATE(3810), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153830,19 +151507,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15762] = 4, + [15163] = 6, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(924), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3479), 22, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(154), 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_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153859,15 +151569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [15233] = 6, + ACTIONS(3582), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153883,6 +151595,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(3496), 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, @@ -153892,52 +151613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15828] = 5, - ACTIONS(3587), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153954,16 +151633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15896] = 6, - ACTIONS(3633), 1, + [15303] = 6, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(3635), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153979,7 +151659,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(3503), 17, + ACTIONS(154), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153997,11 +151677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -154018,84 +151697,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15966] = 8, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3676), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, + [15373] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_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(3291), 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, - [16040] = 7, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3728), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3730), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3887), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [15493] = 5, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154111,12 +151810,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(161), 16, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154128,11 +151828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154149,36 +151849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16112] = 8, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + [15561] = 8, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3698), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 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(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154194,11 +151879,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(122), 21, + ACTIONS(3496), 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(3492), 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, @@ -154215,84 +151915,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16186] = 31, - ACTIONS(99), 1, + [15635] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3741), 2, + ACTIONS(3732), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3743), 2, + ACTIONS(3734), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3780), 6, + STATE(3777), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154305,40 +152006,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16306] = 8, - ACTIONS(3674), 1, + [15755] = 8, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3692), 1, - anon_sym_in, - ACTIONS(3745), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154350,36 +152034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 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, - [16380] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3635), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154395,29 +152050,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(3503), 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(3499), 21, + 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, @@ -154434,18 +152070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16450] = 6, - ACTIONS(3543), 1, + [15829] = 8, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, + anon_sym_COMMA, + ACTIONS(3660), 1, + anon_sym_EQ_GT, + ACTIONS(3693), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154461,7 +152100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154477,11 +152116,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154498,16 +152136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16520] = 6, - ACTIONS(831), 1, + [15903] = 8, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3736), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154523,13 +152166,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(161), 17, - sym__automatic_semicolon, + ACTIONS(3496), 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, @@ -154541,11 +152183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 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, @@ -154562,84 +152202,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [15977] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(3605), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1898), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(154), 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(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(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, - [16590] = 31, - ACTIONS(99), 1, + [16053] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3290), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3314), 2, + ACTIONS(3399), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3401), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3844), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [16173] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3738), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3740), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3822), 6, + STATE(3809), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154652,36 +152449,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16710] = 6, - ACTIONS(831), 1, + [16293] = 6, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(913), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3614), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154693,11 +152475,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [16363] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3474), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3458), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154714,16 +152541,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16779] = 6, - ACTIONS(831), 1, + ACTIONS(3460), 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, + [16429] = 5, + ACTIONS(3601), 1, anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154739,10 +152597,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(161), 16, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, @@ -154756,11 +152616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154777,16 +152636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16848] = 6, - ACTIONS(3658), 1, + [16497] = 7, + ACTIONS(891), 1, + anon_sym_COLON, + ACTIONS(895), 1, + anon_sym_EQ_GT, + ACTIONS(910), 1, anon_sym_EQ, - ACTIONS(3660), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154802,12 +152664,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(3503), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154819,11 +152681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -154840,16 +152701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16917] = 6, - ACTIONS(3674), 1, + [16569] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154865,12 +152727,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(3503), 16, + ACTIONS(3496), 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, @@ -154882,11 +152745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154903,23 +152765,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16986] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + [16639] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3478), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3462), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(895), 1, + anon_sym_BANG, anon_sym_in, - ACTIONS(3701), 1, - anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3464), 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, + [16705] = 6, + ACTIONS(3642), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154932,7 +152870,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [16774] = 6, + ACTIONS(3658), 1, + anon_sym_EQ, + ACTIONS(3660), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154948,10 +152916,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 20, + ACTIONS(3496), 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(3492), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [16843] = 6, + ACTIONS(948), 1, + anon_sym_EQ, + ACTIONS(954), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(154), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154968,16 +153016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17059] = 6, - ACTIONS(3533), 1, + [16912] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(3644), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154993,7 +153042,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(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155010,11 +153059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155031,16 +153079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17128] = 6, - ACTIONS(3533), 1, + [16981] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155056,7 +153105,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(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155073,11 +153122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155094,16 +153142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17197] = 6, - ACTIONS(3650), 1, + [17050] = 6, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(3648), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155119,7 +153168,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(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155136,11 +153185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155157,16 +153205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17266] = 6, - ACTIONS(3533), 1, + [17119] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(3648), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155182,7 +153231,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(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155199,11 +153248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155220,18 +153268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17335] = 7, - ACTIONS(159), 1, + [17188] = 7, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(833), 1, + ACTIONS(826), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155247,7 +153296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155263,11 +153312,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [17259] = 5, + ACTIONS(3582), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3496), 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(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155284,18 +153394,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17406] = 7, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3689), 1, + [17326] = 8, + ACTIONS(3494), 1, anon_sym_EQ, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155311,7 +153424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155327,11 +153440,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(3499), 21, + ACTIONS(3492), 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, @@ -155348,16 +153459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17477] = 6, - ACTIONS(969), 1, + [17399] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(970), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155373,11 +153485,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(161), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155390,11 +153502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -155411,16 +153522,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17546] = 6, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(975), 1, + [17468] = 8, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(3689), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(154), 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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155436,11 +153568,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(120), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [17541] = 7, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, + anon_sym_COMMA, + ACTIONS(3693), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155453,11 +153615,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155474,16 +153651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17615] = 6, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [17612] = 6, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155499,7 +153677,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(161), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155516,11 +153694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -155537,16 +153714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17684] = 6, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, + [17681] = 6, + ACTIONS(895), 1, anon_sym_EQ_GT, + ACTIONS(910), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155562,12 +153740,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(161), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155579,11 +153757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + 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, @@ -155600,14 +153777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17753] = 5, - ACTIONS(3633), 1, + [17750] = 6, + ACTIONS(964), 1, anon_sym_EQ, + ACTIONS(970), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155623,12 +153803,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(3503), 17, - sym__automatic_semicolon, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155641,11 +153820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + 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, @@ -155662,36 +153840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17820] = 8, - ACTIONS(3533), 1, + [17819] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3615), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 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(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155707,10 +153866,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(3499), 20, + ACTIONS(154), 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_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155727,81 +153903,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17893] = 30, - ACTIONS(99), 1, + [17888] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3747), 2, + ACTIONS(3742), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155814,15 +153991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18009] = 6, - ACTIONS(159), 1, + [18004] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(985), 1, + ACTIONS(3744), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155838,7 +154015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155854,11 +154031,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(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155875,16 +154051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18077] = 6, - ACTIONS(159), 1, + [18072] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1051), 1, + ACTIONS(1036), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155900,7 +154077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155916,11 +154093,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [18140] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3746), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 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(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155937,81 +154175,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18145] = 30, - ACTIONS(99), 1, + [18208] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3749), 2, + ACTIONS(3748), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156024,142 +154263,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18261] = 6, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18329] = 30, - ACTIONS(99), 1, + [18324] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3753), 2, + ACTIONS(3750), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156172,80 +154349,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18445] = 30, - ACTIONS(99), 1, + [18440] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1040), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 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(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [18508] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3755), 2, + ACTIONS(3752), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156258,15 +154497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18561] = 6, - ACTIONS(159), 1, + [18624] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156282,7 +154521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156298,11 +154537,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(122), 21, + 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, @@ -156319,16 +154557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18629] = 6, - ACTIONS(159), 1, + [18692] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(987), 1, + ACTIONS(980), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156344,7 +154583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156360,11 +154599,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(122), 21, + 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, @@ -156381,188 +154619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18697] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3757), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 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, - [18813] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3759), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 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, - [18929] = 6, - ACTIONS(159), 1, + [18760] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(995), 1, + ACTIONS(1038), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156578,7 +154645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156594,11 +154661,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(122), 21, + 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, @@ -156615,16 +154681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18997] = 6, - ACTIONS(3615), 1, + [18828] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3761), 1, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156640,7 +154707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156656,11 +154723,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156677,16 +154743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19065] = 6, - ACTIONS(3615), 1, + [18896] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3763), 1, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156702,7 +154769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156718,11 +154785,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156739,81 +154805,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19133] = 30, - ACTIONS(99), 1, + [18964] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3765), 2, + ACTIONS(3758), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [19080] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3760), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156826,15 +154979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19249] = 6, - ACTIONS(159), 1, + [19196] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(991), 1, + ACTIONS(974), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156850,7 +155003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156866,11 +155019,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [19264] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3762), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 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(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156887,81 +155101,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19317] = 30, - ACTIONS(99), 1, + [19332] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3767), 2, + ACTIONS(3764), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156974,80 +155189,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19433] = 30, - ACTIONS(99), 1, + [19448] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3769), 2, + ACTIONS(3766), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157060,15 +155275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19549] = 6, - ACTIONS(159), 1, + [19564] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(978), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157084,7 +155299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157100,11 +155315,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(122), 21, + 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, @@ -157121,16 +155335,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19617] = 6, - ACTIONS(3615), 1, + [19632] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3768), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [19748] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3771), 1, + ACTIONS(3770), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157146,7 +155447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157162,11 +155463,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157183,143 +155483,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19685] = 6, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - ACTIONS(3773), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19753] = 30, - ACTIONS(99), 1, + [19816] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3775), 2, + ACTIONS(3772), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157332,80 +155571,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19869] = 30, - ACTIONS(99), 1, + [19932] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3777), 2, + ACTIONS(3774), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157418,204 +155657,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19985] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(989), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 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(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20053] = 6, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - ACTIONS(3779), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20121] = 30, - ACTIONS(99), 1, + [20048] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3781), 2, + ACTIONS(3776), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157628,101 +155743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20237] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3783), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 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, - [20353] = 6, - ACTIONS(159), 1, + [20164] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(1044), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157738,7 +155767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157754,11 +155783,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(122), 21, + 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, @@ -157775,16 +155803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20421] = 6, - ACTIONS(3615), 1, + [20232] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3785), 1, + ACTIONS(3778), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157800,7 +155829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157816,11 +155845,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157837,16 +155865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20489] = 6, - ACTIONS(3533), 1, + [20300] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3623), 1, + ACTIONS(3586), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157862,7 +155891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157878,11 +155907,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157899,18 +155927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20557] = 7, - ACTIONS(3533), 1, + [20368] = 7, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3696), 1, + ACTIONS(3681), 1, anon_sym_in, - ACTIONS(3699), 1, + ACTIONS(3684), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157926,7 +155955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157942,10 +155971,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(3499), 20, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157962,16 +155990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20627] = 6, - ACTIONS(3615), 1, + [20438] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3787), 1, + ACTIONS(1042), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157987,7 +156016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158003,11 +156032,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(3499), 21, + 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, @@ -158024,16 +156052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20695] = 6, - ACTIONS(159), 1, + [20506] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(993), 1, + ACTIONS(982), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158049,7 +156078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158065,11 +156094,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(122), 21, + 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, @@ -158086,16 +156114,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20763] = 6, - ACTIONS(3615), 1, + [20574] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3780), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [20690] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3789), 1, + ACTIONS(3782), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158111,7 +156226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158127,11 +156242,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158148,16 +156262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20831] = 6, - ACTIONS(159), 1, + [20758] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(983), 1, + ACTIONS(976), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158173,7 +156288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158189,11 +156304,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(122), 21, + 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, @@ -158210,16 +156324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20899] = 6, - ACTIONS(3615), 1, + [20826] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3791), 1, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158235,7 +156350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158251,11 +156366,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158272,81 +156386,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20967] = 30, - ACTIONS(99), 1, + [20894] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3793), 2, + ACTIONS(3786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158359,80 +156474,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21083] = 30, - ACTIONS(99), 1, + [21010] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3795), 2, + ACTIONS(3788), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158445,13 +156560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21199] = 5, - ACTIONS(3658), 1, + [21126] = 5, + ACTIONS(3642), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158467,7 +156582,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(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158484,11 +156599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158505,100 +156619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21265] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3797), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 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, - [21381] = 5, - ACTIONS(3674), 1, + [21192] = 5, + ACTIONS(3658), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158614,7 +156643,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(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158631,11 +156660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158652,16 +156680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21447] = 6, - ACTIONS(3533), 1, + [21258] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3615), 1, + ACTIONS(3588), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158677,7 +156706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158693,11 +156722,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158714,14 +156742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21515] = 5, - ACTIONS(3650), 1, + [21326] = 5, + ACTIONS(3646), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158737,7 +156766,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(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158754,11 +156783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158775,81 +156803,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21581] = 30, - ACTIONS(99), 1, + [21392] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3799), 2, + ACTIONS(3790), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158862,80 +156891,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21697] = 30, - ACTIONS(99), 1, + [21508] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3792), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 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(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [21576] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3801), 2, + ACTIONS(3794), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158948,73 +157039,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21813] = 5, - ACTIONS(3773), 1, - anon_sym_EQ, + [21692] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 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(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_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(3291), 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, - [21878] = 5, - ACTIONS(3751), 1, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3796), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21808] = 5, + ACTIONS(3782), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159030,7 +157147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159046,11 +157163,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159067,14 +157183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21943] = 5, - ACTIONS(3763), 1, + [21873] = 5, + ACTIONS(3770), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159090,7 +157207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159106,11 +157223,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159127,14 +157243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22008] = 5, - ACTIONS(3787), 1, + [21938] = 5, + ACTIONS(3744), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159150,7 +157267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159166,11 +157283,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159187,14 +157303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22073] = 5, - ACTIONS(3771), 1, + [22003] = 5, + ACTIONS(3778), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159210,7 +157327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159226,11 +157343,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159247,14 +157363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22138] = 5, - ACTIONS(3761), 1, + [22068] = 5, + ACTIONS(3792), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159270,7 +157387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159286,11 +157403,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159307,14 +157423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22203] = 5, - ACTIONS(3789), 1, + [22133] = 5, + ACTIONS(3746), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159330,7 +157447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159346,11 +157463,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159367,14 +157483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22268] = 5, - ACTIONS(3785), 1, + [22198] = 5, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159390,7 +157507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159406,11 +157523,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159427,14 +157543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22333] = 5, - ACTIONS(3779), 1, + [22263] = 5, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159450,7 +157567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159466,11 +157583,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(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159487,14 +157603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22398] = 5, - ACTIONS(3791), 1, + [22328] = 5, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159510,7 +157627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159526,11 +157643,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [22393] = 5, + ACTIONS(3762), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 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(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159547,78 +157723,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [22463] = 29, - ACTIONS(99), 1, + [22458] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3767), 6, + STATE(3790), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159631,77 +157808,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22575] = 29, - ACTIONS(99), 1, + [22570] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3809), 6, + STATE(3786), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159714,77 +157891,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22687] = 29, - ACTIONS(99), 1, + [22682] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3783), 6, + STATE(3875), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159797,77 +157974,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22799] = 29, - ACTIONS(99), 1, + [22794] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3763), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159880,77 +158057,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22911] = 29, - ACTIONS(99), 1, + [22906] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3831), 6, + STATE(3793), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159963,77 +158140,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23023] = 29, - ACTIONS(99), 1, + [23018] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(3814), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -160046,77 +158223,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23135] = 29, - ACTIONS(99), 1, + [23130] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(2787), 1, + STATE(2773), 1, sym_accessibility_modifier, STATE(2800), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(3910), 1, sym__call_signature, - STATE(4407), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3756), 6, + STATE(3884), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -160129,75 +158306,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23247] = 29, - ACTIONS(1635), 1, + [23242] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2139), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, + anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, + anon_sym_declare, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + ACTIONS(3798), 1, + anon_sym_STAR, + ACTIONS(3800), 1, + anon_sym_default, + ACTIONS(3802), 1, + anon_sym_type, + ACTIONS(3804), 1, + anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_as, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(3816), 1, + anon_sym_module, + STATE(1344), 1, + sym_decorator, + STATE(4286), 1, + sym_declaration, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, + aux_sym_export_statement_repeat1, + STATE(4460), 1, + sym_export_clause, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5202), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4275), 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, + [23361] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3805), 1, + ACTIONS(3820), 1, anon_sym_RBRACE, - ACTIONS(3807), 1, + ACTIONS(3822), 1, anon_sym_SEMI, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - STATE(2421), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1491), 2, + STATE(1490), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160211,157 +158474,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23358] = 33, - ACTIONS(99), 1, + [23472] = 29, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(3818), 1, + anon_sym_STAR, + ACTIONS(3824), 1, + anon_sym_async, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(2292), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(3830), 1, + anon_sym_static, + ACTIONS(3832), 1, + anon_sym_readonly, + ACTIONS(3836), 1, + anon_sym_declare, + ACTIONS(3838), 1, + anon_sym_abstract, + ACTIONS(3840), 1, + anon_sym_accessor, + ACTIONS(3842), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, + anon_sym_SEMI, + STATE(2478), 1, + aux_sym_export_statement_repeat1, + STATE(2700), 1, + sym_method_definition, + STATE(2736), 1, + sym_accessibility_modifier, + STATE(2795), 1, + sym_override_modifier, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3826), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3834), 2, + anon_sym_get, + anon_sym_set, + STATE(1485), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3062), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5021), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3700), 13, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2396), 1, - anon_sym_import, - ACTIONS(2398), 1, - anon_sym_var, - ACTIONS(2400), 1, anon_sym_let, - ACTIONS(2402), 1, - anon_sym_const, - ACTIONS(2404), 1, - anon_sym_class, - ACTIONS(2406), 1, + 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] = 29, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(3818), 1, + anon_sym_STAR, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(2408), 1, - anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(3828), 1, + anon_sym_AT, + ACTIONS(3830), 1, + anon_sym_static, + ACTIONS(3832), 1, + anon_sym_readonly, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(2418), 1, - anon_sym_interface, - ACTIONS(2420), 1, - anon_sym_enum, - ACTIONS(3827), 1, - anon_sym_STAR, - ACTIONS(3829), 1, - anon_sym_default, - ACTIONS(3831), 1, - anon_sym_type, - ACTIONS(3833), 1, - anon_sym_EQ, - ACTIONS(3835), 1, - anon_sym_as, - ACTIONS(3837), 1, - anon_sym_COMMA, ACTIONS(3840), 1, + anon_sym_accessor, + ACTIONS(3846), 1, anon_sym_RBRACE, - ACTIONS(3845), 1, - anon_sym_module, - STATE(1297), 1, - sym_decorator, - STATE(3915), 1, - sym_declaration, - STATE(3916), 1, - sym_internal_module, - STATE(4322), 1, + ACTIONS(3848), 1, + anon_sym_SEMI, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, - sym_export_clause, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - STATE(5240), 1, - sym_namespace_export, + STATE(2700), 1, + sym_method_definition, + STATE(2736), 1, + sym_accessibility_modifier, + STATE(2795), 1, + sym_override_modifier, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3826), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3834), 2, + anon_sym_get, + anon_sym_set, + STATE(1492), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3062), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5021), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3700), 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, + [23694] = 29, + ACTIONS(3853), 1, + anon_sym_STAR, + ACTIONS(3856), 1, + anon_sym_RBRACE, + ACTIONS(3858), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3912), 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, - [23477] = 33, - ACTIONS(99), 1, + ACTIONS(3861), 1, + anon_sym_LBRACK, + ACTIONS(3864), 1, + anon_sym_async, + ACTIONS(3870), 1, + anon_sym_DQUOTE, + ACTIONS(3873), 1, + anon_sym_SQUOTE, + ACTIONS(3879), 1, + anon_sym_AT, + ACTIONS(3882), 1, + anon_sym_static, + ACTIONS(3885), 1, + anon_sym_readonly, + ACTIONS(3891), 1, + anon_sym_declare, + ACTIONS(3897), 1, + anon_sym_override, + ACTIONS(3900), 1, + anon_sym_abstract, + ACTIONS(3903), 1, + anon_sym_accessor, + STATE(2478), 1, + aux_sym_export_statement_repeat1, + STATE(2700), 1, + sym_method_definition, + STATE(2736), 1, + sym_accessibility_modifier, + STATE(2795), 1, + sym_override_modifier, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3867), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3876), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3888), 2, + anon_sym_get, + anon_sym_set, + STATE(1485), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3894), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3062), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5021), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3850), 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, + [23805] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(3847), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4322), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4460), 1, sym_export_clause, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(5240), 1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160369,7 +158792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160383,71 +158806,71 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23596] = 33, - ACTIONS(99), 1, + [23924] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(3850), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4322), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4460), 1, sym_export_clause, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(5240), 1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160455,7 +158878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160469,153 +158892,71 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23715] = 29, - ACTIONS(3856), 1, - anon_sym_STAR, - ACTIONS(3859), 1, - anon_sym_RBRACE, - ACTIONS(3861), 1, - anon_sym_SEMI, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, - anon_sym_DQUOTE, - ACTIONS(3870), 1, - anon_sym_SQUOTE, - ACTIONS(3873), 1, - anon_sym_async, - ACTIONS(3882), 1, - anon_sym_AT, - ACTIONS(3885), 1, - anon_sym_static, - ACTIONS(3888), 1, - anon_sym_readonly, - ACTIONS(3894), 1, - anon_sym_declare, - ACTIONS(3900), 1, - anon_sym_override, - ACTIONS(3903), 1, - anon_sym_abstract, - ACTIONS(3906), 1, - anon_sym_accessor, - STATE(2421), 1, - aux_sym_export_statement_repeat1, - STATE(2709), 1, - sym_method_definition, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, - sym_override_modifier, - STATE(4485), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3876), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3879), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3891), 2, - anon_sym_get, - anon_sym_set, - STATE(1485), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3897), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4765), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3853), 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, - [23826] = 33, - ACTIONS(99), 1, + [24043] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(3909), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4322), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4460), 1, sym_export_clause, - STATE(4824), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, - STATE(5240), 1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160623,7 +158964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160637,75 +158978,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23945] = 29, - ACTIONS(1635), 1, + [24162] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(3914), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - STATE(2421), 1, + ACTIONS(3915), 1, + anon_sym_RBRACE, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160719,75 +159060,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24056] = 29, - ACTIONS(1635), 1, + [24273] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3914), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - ACTIONS(3916), 1, + ACTIONS(3917), 1, anon_sym_RBRACE, - STATE(2421), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160801,75 +159142,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24167] = 29, - ACTIONS(1635), 1, + [24384] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3918), 1, + ACTIONS(3919), 1, anon_sym_RBRACE, - ACTIONS(3920), 1, + ACTIONS(3921), 1, anon_sym_SEMI, - STATE(2421), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1487), 2, + STATE(1494), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160883,75 +159224,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24278] = 29, - ACTIONS(1635), 1, + [24495] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3914), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - ACTIONS(3922), 1, + ACTIONS(3923), 1, anon_sym_RBRACE, - STATE(2421), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160965,235 +159306,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24389] = 29, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3809), 1, - anon_sym_async, - ACTIONS(3813), 1, - anon_sym_AT, - ACTIONS(3815), 1, - anon_sym_static, - ACTIONS(3817), 1, - anon_sym_readonly, - ACTIONS(3821), 1, - anon_sym_declare, - ACTIONS(3823), 1, - anon_sym_abstract, - ACTIONS(3825), 1, - anon_sym_accessor, - ACTIONS(3914), 1, - anon_sym_SEMI, - ACTIONS(3924), 1, - anon_sym_RBRACE, - STATE(2421), 1, - aux_sym_export_statement_repeat1, - STATE(2709), 1, - sym_method_definition, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, - sym_override_modifier, - STATE(4485), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 2, - anon_sym_get, - anon_sym_set, - STATE(1485), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4765), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3705), 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, - [24500] = 29, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3809), 1, - anon_sym_async, - ACTIONS(3813), 1, - anon_sym_AT, - ACTIONS(3815), 1, - anon_sym_static, - ACTIONS(3817), 1, - anon_sym_readonly, - ACTIONS(3821), 1, - anon_sym_declare, - ACTIONS(3823), 1, - anon_sym_abstract, - ACTIONS(3825), 1, - anon_sym_accessor, - ACTIONS(3926), 1, - anon_sym_RBRACE, - ACTIONS(3928), 1, - anon_sym_SEMI, - STATE(2421), 1, - aux_sym_export_statement_repeat1, - STATE(2709), 1, - sym_method_definition, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, - sym_override_modifier, - STATE(4485), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 2, - anon_sym_get, - anon_sym_set, - STATE(1490), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4765), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3705), 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, - [24611] = 33, - ACTIONS(99), 1, + [24606] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(3930), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4322), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4460), 1, sym_export_clause, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(5240), 1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -161201,7 +159378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -161215,75 +159392,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24730] = 29, - ACTIONS(1635), 1, + [24725] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3914), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - ACTIONS(3933), 1, + ACTIONS(3928), 1, anon_sym_RBRACE, - STATE(2421), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161297,75 +159474,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24841] = 29, - ACTIONS(1635), 1, + [24836] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3935), 1, + ACTIONS(3930), 1, anon_sym_RBRACE, - ACTIONS(3937), 1, + ACTIONS(3932), 1, anon_sym_SEMI, - STATE(2421), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1488), 2, + STATE(1483), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161379,75 +159556,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24952] = 29, - ACTIONS(1635), 1, + [24947] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3939), 1, + ACTIONS(3934), 1, anon_sym_RBRACE, - ACTIONS(3941), 1, + ACTIONS(3936), 1, anon_sym_SEMI, - STATE(2421), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2700), 1, sym_method_definition, - STATE(2732), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4485), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1494), 2, + STATE(1489), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161461,69 +159638,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25063] = 25, - ACTIONS(233), 1, + [25058] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3945), 1, + ACTIONS(3940), 1, anon_sym_RBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3949), 1, + ACTIONS(3944), 1, anon_sym_async, - ACTIONS(3953), 1, + ACTIONS(3948), 1, anon_sym_static, - ACTIONS(3955), 1, + ACTIONS(3950), 1, anon_sym_readonly, - ACTIONS(3961), 1, + ACTIONS(3956), 1, anon_sym_override, - STATE(2781), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4744), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(3957), 2, + ACTIONS(3952), 2, anon_sym_get, anon_sym_set, - ACTIONS(3959), 3, + ACTIONS(3954), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(4576), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3943), 14, + ACTIONS(3938), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161538,69 +159715,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25165] = 25, - ACTIONS(233), 1, + [25160] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3965), 1, + ACTIONS(3960), 1, anon_sym_RBRACE, - ACTIONS(3967), 1, + ACTIONS(3962), 1, anon_sym_async, - ACTIONS(3969), 1, + ACTIONS(3964), 1, anon_sym_static, - ACTIONS(3971), 1, + ACTIONS(3966), 1, anon_sym_readonly, - ACTIONS(3977), 1, + ACTIONS(3972), 1, anon_sym_override, - STATE(2781), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(3973), 2, + ACTIONS(3968), 2, anon_sym_get, anon_sym_set, - ACTIONS(3975), 3, + ACTIONS(3970), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3963), 14, + ACTIONS(3958), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161615,69 +159792,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25267] = 25, - ACTIONS(233), 1, + [25262] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3981), 1, + ACTIONS(3976), 1, anon_sym_RBRACE, - ACTIONS(3983), 1, + ACTIONS(3978), 1, anon_sym_async, - ACTIONS(3985), 1, + ACTIONS(3980), 1, anon_sym_static, - ACTIONS(3987), 1, + ACTIONS(3982), 1, anon_sym_readonly, - ACTIONS(3993), 1, + ACTIONS(3988), 1, anon_sym_override, - STATE(2781), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(3989), 2, + ACTIONS(3984), 2, anon_sym_get, anon_sym_set, - ACTIONS(3991), 3, + ACTIONS(3986), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3979), 14, + ACTIONS(3974), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161692,69 +159869,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25369] = 25, - ACTIONS(233), 1, + [25364] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3997), 1, + ACTIONS(3992), 1, anon_sym_RBRACE, - ACTIONS(3999), 1, + ACTIONS(3994), 1, anon_sym_async, - ACTIONS(4001), 1, + ACTIONS(3996), 1, anon_sym_static, - ACTIONS(4003), 1, + ACTIONS(3998), 1, anon_sym_readonly, - ACTIONS(4009), 1, + ACTIONS(4004), 1, anon_sym_override, - STATE(2781), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4005), 2, + ACTIONS(4000), 2, anon_sym_get, anon_sym_set, - ACTIONS(4007), 3, + ACTIONS(4002), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3995), 14, + ACTIONS(3990), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161769,69 +159946,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25471] = 25, - ACTIONS(233), 1, + [25466] = 13, + ACTIONS(820), 1, + anon_sym_BQUOTE, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4016), 1, + anon_sym_QMARK_DOT, + ACTIONS(4018), 1, + anon_sym_LT, + STATE(1627), 1, + sym_type_arguments, + STATE(1657), 1, + sym_template_string, + STATE(1666), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4006), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4008), 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, + [25544] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(4013), 1, + ACTIONS(4022), 1, anon_sym_RBRACE, - ACTIONS(4015), 1, + ACTIONS(4024), 1, anon_sym_async, - ACTIONS(4017), 1, + ACTIONS(4026), 1, anon_sym_static, - ACTIONS(4019), 1, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4025), 1, + ACTIONS(4034), 1, anon_sym_override, - STATE(2781), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4021), 2, + ACTIONS(4030), 2, anon_sym_get, anon_sym_set, - ACTIONS(4023), 3, + ACTIONS(4032), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4011), 14, + ACTIONS(4020), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161846,134 +160088,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25573] = 13, - ACTIONS(827), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4037), 1, - anon_sym_QMARK_DOT, - ACTIONS(4039), 1, - anon_sym_LT, - STATE(1646), 1, - sym_type_arguments, - STATE(1658), 1, - sym_template_string, - STATE(1668), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4027), 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(4029), 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, - [25651] = 25, - ACTIONS(233), 1, + [25646] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(4043), 1, + ACTIONS(4038), 1, anon_sym_RBRACE, - ACTIONS(4045), 1, + ACTIONS(4040), 1, anon_sym_async, - ACTIONS(4047), 1, + ACTIONS(4042), 1, anon_sym_static, - ACTIONS(4049), 1, + ACTIONS(4044), 1, anon_sym_readonly, - ACTIONS(4055), 1, + ACTIONS(4050), 1, anon_sym_override, - STATE(2781), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4657), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4051), 2, + ACTIONS(4046), 2, anon_sym_get, anon_sym_set, - ACTIONS(4053), 3, + ACTIONS(4048), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4704), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4041), 14, + ACTIONS(4036), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161988,40 +160165,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25753] = 3, + [25748] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4018), 1, + anon_sym_LT, + ACTIONS(4052), 1, + anon_sym_DOT, + STATE(1602), 1, + sym_arguments, + STATE(1603), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 14, + ACTIONS(3522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1921), 34, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3512), 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_RPAREN, anon_sym_of, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162041,26 +160223,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [25810] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + anon_sym_implements, + [25815] = 7, + ACTIONS(4018), 1, anon_sym_LT, - ACTIONS(4061), 1, + ACTIONS(4056), 1, anon_sym_DOT, - STATE(1623), 1, - sym_arguments, - STATE(1629), 1, + ACTIONS(4058), 1, + anon_sym_is, + STATE(1626), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 12, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162069,12 +160248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4059), 31, + anon_sym_GT, + ACTIONS(3548), 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, @@ -162101,25 +160282,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25877] = 8, - ACTIONS(4031), 1, + [25880] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4039), 1, + ACTIONS(4018), 1, anon_sym_LT, - ACTIONS(4067), 1, + ACTIONS(4064), 1, anon_sym_DOT, - STATE(1591), 1, + STATE(1610), 1, sym_arguments, - STATE(1608), 1, + STATE(1611), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 12, + ACTIONS(4060), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162128,7 +160308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4065), 31, + anon_sym_GT, + ACTIONS(4062), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162160,63 +160341,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25944] = 29, - ACTIONS(99), 1, + [25947] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3835), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3845), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(4069), 1, + ACTIONS(4066), 1, anon_sym_EQ, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4322), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4460), 1, sym_export_clause, - STATE(5240), 1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -162226,7 +160407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -162240,66 +160421,179 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26053] = 30, - ACTIONS(99), 1, + [26056] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1756), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + anon_sym_QMARK, + ACTIONS(1754), 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, + [26113] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4018), 1, + anon_sym_LT, + ACTIONS(4072), 1, + anon_sym_DOT, + STATE(1604), 1, + sym_arguments, + STATE(1609), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4068), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4070), 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, + [26180] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3845), 1, + ACTIONS(3816), 1, anon_sym_module, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4322), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4460), 1, sym_export_clause, - STATE(5240), 1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4074), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -162307,7 +160601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -162321,45 +160615,40 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26164] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, - anon_sym_LT, - ACTIONS(4075), 1, - anon_sym_DOT, - STATE(1580), 1, - sym_arguments, - STATE(1587), 1, - sym_type_arguments, + [26291] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 12, + ACTIONS(1728), 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, - ACTIONS(3505), 31, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(1726), 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, anon_sym_PIPE_PIPE, @@ -162379,24 +160668,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [26231] = 7, - ACTIONS(4039), 1, + anon_sym_PIPE_RBRACE, + [26348] = 6, + ACTIONS(4018), 1, anon_sym_LT, - ACTIONS(4079), 1, + ACTIONS(4056), 1, anon_sym_DOT, - ACTIONS(4081), 1, - anon_sym_is, - STATE(1548), 1, + STATE(1626), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162405,7 +160691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3567), 32, + anon_sym_GT, + ACTIONS(3548), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162438,15 +160725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26296] = 3, + [26410] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 14, + ACTIONS(3225), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162456,21 +160742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(1925), 34, - sym__automatic_semicolon, + ACTIONS(3227), 33, 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, @@ -162491,28 +160777,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [26353] = 9, - ACTIONS(827), 1, - anon_sym_BQUOTE, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_implements, + [26466] = 6, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4082), 1, anon_sym_DOT, - ACTIONS(4037), 1, - anon_sym_QMARK_DOT, - STATE(1658), 1, - sym_template_string, - STATE(4822), 1, - sym_optional_chain, + STATE(1548), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(4078), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162522,69 +160801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 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, - [26421] = 4, - ACTIONS(4081), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4083), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4085), 33, + ACTIONS(4080), 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, @@ -162605,17 +160834,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26479] = 4, - ACTIONS(4091), 1, - anon_sym_is, + [26528] = 9, + ACTIONS(820), 1, + anon_sym_BQUOTE, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4016), 1, + anon_sym_QMARK_DOT, + STATE(1657), 1, + sym_template_string, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162625,7 +160863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 33, + anon_sym_GT, + ACTIONS(1736), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162636,10 +160875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162655,23 +160891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26537] = 5, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4093), 1, - sym__automatic_semicolon, + [26596] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(4084), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162681,7 +160910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 32, + anon_sym_GT, + ACTIONS(4086), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162713,16 +160943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26597] = 3, + anon_sym_is, + [26652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3216), 14, + ACTIONS(1728), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162732,8 +160963,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(3218), 33, + ACTIONS(1726), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162767,30 +160999,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26653] = 6, - ACTIONS(4039), 1, - anon_sym_LT, - ACTIONS(4079), 1, - anon_sym_DOT, - STATE(1548), 1, - sym_type_arguments, + [26708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(3237), 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, - ACTIONS(3567), 32, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(3239), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162803,6 +161031,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, @@ -162823,15 +161052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26715] = 3, + [26764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 14, + ACTIONS(1756), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162841,8 +161069,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(1921), 33, + ACTIONS(1754), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162876,17 +161105,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26771] = 4, - ACTIONS(4081), 1, - anon_sym_is, + [26820] = 22, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, + ACTIONS(4090), 1, + anon_sym_async, + ACTIONS(4092), 1, + anon_sym_static, + ACTIONS(4094), 1, + anon_sym_readonly, + ACTIONS(4100), 1, + anon_sym_override, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2808), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3946), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4096), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4098), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3648), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5225), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5230), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4088), 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, + [26914] = 5, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4102), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162896,7 +161198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4097), 33, + anon_sym_GT, + ACTIONS(1690), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162928,17 +161231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26829] = 3, + [26974] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(1900), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162948,7 +161249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 34, + anon_sym_GT, + ACTIONS(1898), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162983,28 +161285,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, anon_sym_is, - [26885] = 5, - ACTIONS(4039), 1, - anon_sym_LT, - STATE(1596), 1, - sym_type_arguments, + [27030] = 4, + ACTIONS(4058), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 12, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 33, + anon_sym_GT, + ACTIONS(4106), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163038,15 +161339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26945] = 3, + [27088] = 4, + ACTIONS(4112), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1779), 13, + ACTIONS(4108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163056,7 +161358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 34, + anon_sym_GT, + ACTIONS(4110), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163090,88 +161393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, + [27146] = 4, + ACTIONS(4058), 1, anon_sym_is, - [27001] = 22, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(3947), 1, - anon_sym_LBRACK, - ACTIONS(4105), 1, - anon_sym_async, - ACTIONS(4107), 1, - anon_sym_static, - ACTIONS(4109), 1, - anon_sym_readonly, - ACTIONS(4115), 1, - anon_sym_override, - STATE(2781), 1, - sym_accessibility_modifier, - STATE(2816), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3444), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3951), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4111), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3552), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5247), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5250), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5595), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4103), 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, - [27095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3212), 14, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163181,8 +161412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3214), 33, + anon_sym_GT, + ACTIONS(4116), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163216,15 +161447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27151] = 3, + [27204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 14, + ACTIONS(3233), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163234,8 +161464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(1925), 33, + ACTIONS(3235), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163269,42 +161500,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27207] = 6, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4121), 1, - anon_sym_DOT, - STATE(1600), 1, - sym_arguments, + [27260] = 5, + ACTIONS(4018), 1, + anon_sym_LT, + STATE(1545), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4108), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 31, + anon_sym_GT, + ACTIONS(4110), 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, @@ -163325,15 +161555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27269] = 3, + [27320] = 4, + ACTIONS(3494), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3208), 14, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163343,8 +161574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3210), 33, + anon_sym_GT, + ACTIONS(3496), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163376,17 +161607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27325] = 3, + [27377] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163396,7 +161625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 33, + anon_sym_GT, + ACTIONS(4120), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163430,15 +161660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27380] = 3, + [27432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163448,7 +161677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 33, + anon_sym_GT, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163482,36 +161712,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27435] = 3, + [27487] = 7, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(2373), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 13, + ACTIONS(4126), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4129), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1694), 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(4133), 33, + ACTIONS(1698), 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, @@ -163532,17 +161767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27490] = 3, + [27550] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 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_PIPE, @@ -163552,7 +161785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4137), 33, + anon_sym_GT, + ACTIONS(4134), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163586,41 +161820,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27545] = 7, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(2372), 1, - anon_sym_extends, + [27605] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4142), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1707), 10, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 29, + anon_sym_GT, + ACTIONS(4138), 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, @@ -163641,16 +161870,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, - [27608] = 3, + [27660] = 4, + ACTIONS(4102), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163660,7 +161891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 33, + anon_sym_GT, + ACTIONS(1690), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163692,17 +161924,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, + [27717] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3512), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(3496), 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, - [27663] = 3, + [27780] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163712,7 +161998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 33, + anon_sym_GT, + ACTIONS(4142), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163746,15 +162033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27718] = 3, + [27835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 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_PIPE, @@ -163764,7 +162050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4151), 33, + anon_sym_GT, + ACTIONS(4134), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163798,15 +162085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27773] = 3, + [27890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163816,7 +162102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4155), 33, + anon_sym_GT, + ACTIONS(4138), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163850,37 +162137,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27828] = 4, - ACTIONS(4161), 1, - anon_sym_AMP, + [27945] = 7, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 12, + ACTIONS(4150), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4153), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4144), 10, 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(4159), 33, + ACTIONS(4148), 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, @@ -163901,17 +162192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27885] = 3, + [28008] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3398), 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_PIPE, @@ -163921,7 +162210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3400), 33, + anon_sym_GT, + ACTIONS(4160), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163955,15 +162245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27940] = 3, + [28063] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(2375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163973,7 +162262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 33, + anon_sym_GT, + ACTIONS(2373), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164007,15 +162297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27995] = 3, + [28118] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 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_PIPE, @@ -164025,7 +162314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 33, + anon_sym_GT, + ACTIONS(4164), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164059,15 +162349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28050] = 3, + [28173] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 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_PIPE, @@ -164077,7 +162366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 33, + anon_sym_GT, + ACTIONS(4168), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164111,15 +162401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28105] = 3, + [28228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 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_PIPE, @@ -164129,7 +162418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 33, + anon_sym_GT, + ACTIONS(4172), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164163,15 +162453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28160] = 3, + [28283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 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_PIPE, @@ -164181,7 +162470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 33, + anon_sym_GT, + ACTIONS(4176), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164215,15 +162505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28215] = 3, + [28338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 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_PIPE, @@ -164233,7 +162522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 33, + anon_sym_GT, + ACTIONS(4164), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164267,20 +162557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28270] = 5, - ACTIONS(4185), 1, - anon_sym_QMARK, + [28393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4179), 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_PIPE, @@ -164290,7 +162574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 30, + anon_sym_GT, + ACTIONS(4168), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164298,6 +162583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164320,16 +162607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28329] = 3, + [28448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 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_PIPE, @@ -164339,7 +162626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 33, + anon_sym_GT, + ACTIONS(4180), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164373,15 +162661,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28384] = 3, + [28503] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4182), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4184), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(3496), 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, + [28562] = 4, + ACTIONS(4052), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164391,7 +162734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 33, + anon_sym_GT, + ACTIONS(3512), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164404,7 +162748,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, @@ -164425,15 +162768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28439] = 3, + [28619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164443,7 +162785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 33, + anon_sym_GT, + ACTIONS(4188), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164477,15 +162820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28494] = 3, + [28674] = 4, + ACTIONS(4194), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 13, + ACTIONS(4190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164495,7 +162839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2372), 33, + anon_sym_GT, + ACTIONS(4192), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164527,17 +162872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28549] = 3, + [28731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4196), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164547,7 +162890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 33, + anon_sym_GT, + ACTIONS(4198), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164581,17 +162925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28604] = 4, - ACTIONS(4207), 1, - anon_sym_DOT, + [28786] = 4, + ACTIONS(4200), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 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_PIPE, @@ -164601,7 +162944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 32, + anon_sym_GT, + ACTIONS(4172), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164612,8 +162956,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, @@ -164634,29 +162978,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28661] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [28843] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 11, + ACTIONS(3417), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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, + anon_sym_GT, + ACTIONS(3419), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164688,30 +163028,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [28722] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, anon_sym_extends, + anon_sym_implements, + [28898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 11, + ACTIONS(4108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 32, + anon_sym_GT, + ACTIONS(4110), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164743,26 +163080,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, - [28783] = 3, + [28953] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(4202), 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(4224), 33, + anon_sym_GT, + ACTIONS(4204), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164794,17 +163136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28838] = 3, + [29014] = 4, + ACTIONS(4200), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(4212), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164814,7 +163156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 33, + anon_sym_GT, + ACTIONS(4214), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164825,7 +163168,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, @@ -164848,29 +163190,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28893] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [29071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 11, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 32, + anon_sym_GT, + ACTIONS(4218), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164902,16 +163240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28954] = 3, + [29126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2386), 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_PIPE, @@ -164921,7 +163259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2384), 33, + anon_sym_GT, + ACTIONS(4222), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164955,22 +163294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29009] = 6, - ACTIONS(4234), 1, - anon_sym_LBRACK, - ACTIONS(4238), 1, + [29181] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4230), 11, + ACTIONS(4220), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -164978,7 +163315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 31, + anon_sym_GT, + ACTIONS(4222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164989,6 +163327,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, @@ -165010,15 +163349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29070] = 3, + [29242] = 4, + ACTIONS(4228), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 13, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165028,7 +163368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 33, + anon_sym_GT, + ACTIONS(4226), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165041,7 +163382,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, @@ -165062,15 +163402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29125] = 3, + [29299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165080,7 +163419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 33, + anon_sym_GT, + ACTIONS(4232), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165114,15 +163454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29180] = 3, + [29354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(2371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165132,7 +163471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 33, + anon_sym_GT, + ACTIONS(2369), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165166,17 +163506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29235] = 4, - ACTIONS(4252), 1, - anon_sym_extends, + [29409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165186,7 +163523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4250), 32, + anon_sym_GT, + ACTIONS(4236), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165218,18 +163556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29292] = 4, - ACTIONS(4234), 1, - anon_sym_LBRACK, + [29464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4254), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165239,7 +163575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4256), 32, + anon_sym_GT, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165250,6 +163587,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, @@ -165272,15 +163610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29349] = 3, + [29519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165290,7 +163627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 33, + anon_sym_GT, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165324,15 +163662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29404] = 3, + [29574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165342,7 +163679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 33, + anon_sym_GT, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165376,15 +163714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29459] = 3, + [29629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165394,7 +163731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 33, + anon_sym_GT, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165428,15 +163766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29514] = 3, + [29684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165446,7 +163783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 33, + anon_sym_GT, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165480,15 +163818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29569] = 3, + [29739] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165498,7 +163835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 33, + anon_sym_GT, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165532,15 +163870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29624] = 3, + [29794] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165550,7 +163887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 33, + anon_sym_GT, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165584,15 +163922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29679] = 3, + [29849] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165602,7 +163939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2376), 33, + anon_sym_GT, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165636,15 +163974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29734] = 3, + [29904] = 4, + ACTIONS(4254), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165654,7 +163993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4264), 33, + anon_sym_GT, + ACTIONS(4252), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165667,7 +164007,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, @@ -165688,15 +164027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29789] = 3, + [29961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165706,7 +164044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4268), 33, + anon_sym_GT, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165740,15 +164079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29844] = 3, + [30016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165758,7 +164096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4272), 33, + anon_sym_GT, + ACTIONS(4258), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165792,15 +164131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29899] = 3, + [30071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3687), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165810,7 +164148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3487), 33, + anon_sym_GT, + ACTIONS(4262), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165844,15 +164183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29954] = 3, + [30126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3703), 13, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165862,7 +164200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 33, + anon_sym_GT, + ACTIONS(4266), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165896,15 +164235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30009] = 3, + [30181] = 4, + ACTIONS(4268), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2390), 13, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165914,7 +164254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 33, + anon_sym_GT, + ACTIONS(1878), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165946,17 +164287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30064] = 3, + [30238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 13, + ACTIONS(4270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165966,7 +164305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4276), 33, + anon_sym_GT, + ACTIONS(4156), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166000,25 +164340,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30119] = 3, + [30293] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4272), 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(4280), 33, + anon_sym_GT, + ACTIONS(4274), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166050,19 +164394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30174] = 4, - ACTIONS(4282), 1, - sym__automatic_semicolon, + [30354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(2363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166072,7 +164412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 32, + anon_sym_GT, + ACTIONS(2361), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166104,16 +164445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30231] = 3, + [30409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166123,7 +164464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 33, + anon_sym_GT, + ACTIONS(4278), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166157,15 +164499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30286] = 3, + [30464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166175,7 +164516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 33, + anon_sym_GT, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166209,15 +164551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30341] = 3, + [30519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166227,7 +164568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 33, + anon_sym_GT, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166261,15 +164603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30396] = 3, + [30574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166279,7 +164620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 33, + anon_sym_GT, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166313,15 +164655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30451] = 3, + [30629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166331,7 +164672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 33, + anon_sym_GT, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166365,15 +164707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30506] = 3, + [30684] = 5, + ACTIONS(4118), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(4120), 2, + anon_sym_RPAREN, + anon_sym_extends, ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166383,7 +164729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 33, + anon_sym_GT, + ACTIONS(4290), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166391,8 +164738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -166415,17 +164760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30561] = 3, + [30743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166435,7 +164778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 33, + anon_sym_GT, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166469,15 +164813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30616] = 3, + [30798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 13, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166487,7 +164830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4294), 33, + anon_sym_GT, + ACTIONS(3425), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166521,17 +164865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30671] = 4, - ACTIONS(3533), 1, - anon_sym_EQ, + [30853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166541,7 +164882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 32, + anon_sym_GT, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166573,26 +164915,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, - [30728] = 3, + [30908] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4292), 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(4298), 33, + anon_sym_GT, + ACTIONS(4294), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166624,9 +164971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30783] = 3, + [30969] = 4, + ACTIONS(4110), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -166634,7 +164982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166644,7 +164991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 33, + anon_sym_GT, + ACTIONS(4298), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166676,9 +165024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30838] = 3, + [31026] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -166686,7 +165033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166696,6 +165042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4302), 33, sym__ternary_qmark, anon_sym_as, @@ -166730,71 +165077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30893] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 3, - anon_sym_GT, + [31081] = 4, + ACTIONS(4206), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4169), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3499), 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(3503), 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, - [30952] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4304), 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, @@ -166802,7 +165095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 33, + anon_sym_GT, + ACTIONS(4306), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166836,15 +165130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31007] = 3, + [31138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166854,7 +165147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4306), 33, + anon_sym_GT, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166888,17 +165182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31062] = 4, - ACTIONS(4234), 1, - anon_sym_LBRACK, + [31193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166908,7 +165199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4238), 32, + anon_sym_GT, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166919,6 +165211,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, @@ -166941,15 +165234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31119] = 3, + [31248] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166959,7 +165251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4310), 33, + anon_sym_GT, + ACTIONS(4182), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166993,17 +165286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31174] = 4, - ACTIONS(4312), 1, - anon_sym_DOT, + [31303] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167013,7 +165303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 32, + anon_sym_GT, + ACTIONS(4314), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167026,6 +165317,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, @@ -167046,15 +165338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31231] = 3, + [31358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 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_PIPE, @@ -167064,7 +165355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 33, + anon_sym_GT, + ACTIONS(4318), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167098,29 +165390,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31286] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [31413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 11, + ACTIONS(2379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 32, + anon_sym_GT, + ACTIONS(2377), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167152,16 +165440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31347] = 3, + [31468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4323), 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_PIPE, @@ -167171,7 +165459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4325), 33, + anon_sym_GT, + ACTIONS(4322), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167205,29 +165494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31402] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [31523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(4324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 32, + anon_sym_GT, + ACTIONS(4326), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167259,16 +165544,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31463] = 3, + [31578] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 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_PIPE, @@ -167278,7 +165563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4329), 33, + anon_sym_GT, + ACTIONS(4330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167312,33 +165598,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31518] = 6, - ACTIONS(4331), 1, - anon_sym_LBRACE, - ACTIONS(4333), 1, - anon_sym_DOT, - STATE(1714), 1, - sym_statement_block, + [31633] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4332), 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(1717), 30, + anon_sym_GT, + ACTIONS(4334), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167348,6 +165633,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, @@ -167367,21 +165653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31579] = 6, - ACTIONS(4335), 1, + [31694] = 6, + ACTIONS(4336), 1, anon_sym_LBRACE, - ACTIONS(4337), 1, + ACTIONS(4338), 1, anon_sym_DOT, - STATE(1776), 1, + STATE(1750), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167391,7 +165676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 30, + anon_sym_GT, + ACTIONS(1674), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -167422,21 +165708,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [31640] = 6, - ACTIONS(4331), 1, - anon_sym_LBRACE, - ACTIONS(4339), 1, - anon_sym_DOT, - STATE(1714), 1, - sym_statement_block, + [31755] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(3427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167446,9 +165725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 30, + anon_sym_GT, + ACTIONS(3429), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167458,6 +165739,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, @@ -167476,20 +165758,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, - [31701] = 5, - ACTIONS(4331), 1, + [31810] = 6, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(1714), 1, + ACTIONS(4340), 1, + anon_sym_DOT, + STATE(1750), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167499,70 +165783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 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, - [31760] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4341), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4343), 33, + ACTIONS(1674), 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, @@ -167581,17 +165814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [31815] = 3, + anon_sym_PIPE_RBRACE, + [31871] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167601,7 +165832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 33, + anon_sym_GT, + ACTIONS(4344), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167635,17 +165867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31870] = 4, - ACTIONS(4093), 1, - sym__automatic_semicolon, + [31926] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(4346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167655,58 +165884,8 @@ static const uint16_t ts_small_parse_table[] = { 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, - [31927] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4349), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4351), 33, + ACTIONS(4348), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167740,15 +165919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31982] = 3, + [31981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167758,7 +165936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + anon_sym_GT, + ACTIONS(4352), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167792,15 +165971,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32037] = 3, + [32036] = 5, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(1750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1674), 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, + [32095] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4354), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167810,7 +166042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 33, + anon_sym_GT, + ACTIONS(4356), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167844,18 +166077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32092] = 4, - ACTIONS(4161), 1, - anon_sym_AMP, + [32150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 12, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167863,7 +166094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 33, + anon_sym_GT, + ACTIONS(4360), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167897,15 +166129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32149] = 3, + [32205] = 6, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4364), 1, + anon_sym_DOT, + STATE(1712), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167915,10 +166152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 33, + anon_sym_GT, + ACTIONS(1674), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167928,7 +166165,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, @@ -167947,17 +166183,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, - [32204] = 3, + [32266] = 6, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4366), 1, + anon_sym_DOT, + STATE(1712), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167967,10 +166207,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 33, + anon_sym_GT, + ACTIONS(1674), 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, + [32327] = 5, + ACTIONS(4362), 1, anon_sym_LBRACE, + STATE(1712), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1676), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1674), 31, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167999,17 +166292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32259] = 3, + [32386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(2367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168019,7 +166310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 33, + anon_sym_GT, + ACTIONS(2365), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168053,21 +166345,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32314] = 6, - ACTIONS(4161), 1, + [32441] = 6, + ACTIONS(4206), 1, anon_sym_AMP, - ACTIONS(4214), 1, + ACTIONS(4208), 1, anon_sym_PIPE, - ACTIONS(4216), 1, + ACTIONS(4210), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 11, + ACTIONS(4296), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -168075,7 +166366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 32, + anon_sym_GT, + ACTIONS(4298), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168108,17 +166400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32375] = 4, - ACTIONS(4075), 1, - anon_sym_DOT, + [32502] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 13, + ACTIONS(4368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168128,7 +166417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 32, + anon_sym_GT, + ACTIONS(4370), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168141,6 +166431,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, @@ -168161,15 +166452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32432] = 3, + [32557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168179,7 +166469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 33, + anon_sym_GT, + ACTIONS(4374), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168213,15 +166504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32487] = 3, + [32612] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2382), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168231,7 +166521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2380), 33, + anon_sym_GT, + ACTIONS(4378), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168265,19 +166556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32542] = 5, - ACTIONS(827), 1, - anon_sym_BQUOTE, - STATE(1658), 1, - sym_template_string, + [32667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168287,7 +166573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 31, + anon_sym_GT, + ACTIONS(4382), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168317,22 +166604,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_extends, anon_sym_implements, - [32601] = 5, - ACTIONS(4284), 1, - anon_sym_QMARK, + [32722] = 4, + ACTIONS(4388), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168342,7 +166627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 30, + anon_sym_GT, + ACTIONS(4386), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168350,10 +166636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, @@ -168372,16 +166659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32660] = 3, + [32779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168391,7 +166678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 33, + anon_sym_GT, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168425,21 +166713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32715] = 6, - ACTIONS(4335), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_DOT, - STATE(1776), 1, - sym_statement_block, + [32834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168449,18 +166730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 30, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4393), 33, 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, anon_sym_PIPE_PIPE, @@ -168479,16 +166763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32776] = 3, + anon_sym_extends, + anon_sym_implements, + [32889] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4395), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168498,13 +166786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 33, + anon_sym_GT, + ACTIONS(4397), 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, @@ -168530,21 +166818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32831] = 5, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(1776), 1, - sym_statement_block, + [32948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(3691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168554,18 +166836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 31, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3474), 33, 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, @@ -168585,16 +166869,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32890] = 3, + anon_sym_extends, + anon_sym_implements, + [33003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(3679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168604,7 +166888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4389), 33, + anon_sym_GT, + ACTIONS(3478), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168638,15 +166923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32945] = 3, + [33058] = 4, + ACTIONS(4399), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168656,7 +166942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4238), 33, + anon_sym_GT, + ACTIONS(4386), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168669,7 +166956,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, @@ -168690,15 +166976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33000] = 3, + [33115] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 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_PIPE, @@ -168708,7 +166993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4393), 33, + anon_sym_GT, + ACTIONS(4404), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168742,15 +167028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33055] = 3, + [33170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168760,7 +167045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4397), 33, + anon_sym_GT, + ACTIONS(4408), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168794,17 +167080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33110] = 4, - ACTIONS(4403), 1, - anon_sym_DOT, + [33225] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168814,19 +167101,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 32, + anon_sym_GT, + ACTIONS(4412), 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, @@ -168845,29 +167133,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33167] = 4, - ACTIONS(4089), 1, + [33284] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4402), 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(4407), 32, + anon_sym_GT, + ACTIONS(4404), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168900,15 +167189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33224] = 3, + [33345] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168918,7 +167206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 33, + anon_sym_GT, + ACTIONS(4106), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168952,15 +167241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33279] = 3, + [33400] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168970,7 +167258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4097), 33, + anon_sym_GT, + ACTIONS(4382), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169004,15 +167293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33334] = 3, + [33455] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169022,7 +167310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 33, + anon_sym_GT, + ACTIONS(4116), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169056,15 +167345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33389] = 3, + [33510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3316), 13, + ACTIONS(4414), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169074,7 +167362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 33, + anon_sym_GT, + ACTIONS(4416), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169108,29 +167397,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33444] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [33565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 11, + ACTIONS(4418), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 32, + anon_sym_GT, + ACTIONS(4420), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169162,16 +167447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33505] = 3, + [33620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169181,7 +167466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 33, + anon_sym_GT, + ACTIONS(4424), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169215,29 +167501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33560] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [33675] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 11, + ACTIONS(4426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 32, + anon_sym_GT, + ACTIONS(4428), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169269,16 +167551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33621] = 3, + [33730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4430), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169288,7 +167570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 33, + anon_sym_GT, + ACTIONS(4432), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169322,21 +167605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33676] = 6, - ACTIONS(4161), 1, + [33785] = 6, + ACTIONS(4206), 1, anon_sym_AMP, - ACTIONS(4214), 1, + ACTIONS(4208), 1, anon_sym_PIPE, - ACTIONS(4216), 1, + ACTIONS(4210), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4425), 11, + ACTIONS(4434), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -169344,7 +167626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4427), 32, + anon_sym_GT, + ACTIONS(4436), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169377,21 +167660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33737] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + [33846] = 4, + ACTIONS(4206), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4438), 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, @@ -169399,12 +167678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 31, + anon_sym_GT, + ACTIONS(4440), 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, @@ -169430,82 +167711,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [33796] = 7, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + anon_sym_implements, + [33903] = 6, + ACTIONS(4206), 1, anon_sym_AMP, + ACTIONS(4208), 1, anon_sym_PIPE, - ACTIONS(3499), 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(3503), 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, - [33859] = 3, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4442), 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(4419), 33, + anon_sym_GT, + ACTIONS(4444), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169537,78 +167767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33914] = 7, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4435), 1, - anon_sym_EQ, + [33964] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4442), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4433), 10, + ACTIONS(4446), 13, 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(4437), 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, - [33977] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1687), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4445), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, @@ -169617,12 +167785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 31, + anon_sym_GT, + ACTIONS(4448), 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, @@ -169648,16 +167818,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, - [34036] = 3, + [34019] = 5, + ACTIONS(4320), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4322), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169667,7 +167842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 33, + anon_sym_GT, + ACTIONS(4290), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169675,8 +167851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -169699,19 +167873,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, - [34091] = 4, - ACTIONS(4457), 1, - anon_sym_DOT, + [34078] = 5, + ACTIONS(820), 1, + anon_sym_BQUOTE, + STATE(1657), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169721,7 +167895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 32, + anon_sym_GT, + ACTIONS(1736), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169734,6 +167909,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, @@ -169750,29 +167926,32 @@ 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, - [34148] = 3, + [34137] = 6, + ACTIONS(4172), 1, + anon_sym_extends, + ACTIONS(4200), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 13, + ACTIONS(4170), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4450), 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(4133), 33, + anon_sym_GT, + ACTIONS(4452), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169783,7 +167962,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, @@ -169804,17 +167982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34203] = 3, + [34198] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3392), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169824,7 +168000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3394), 33, + anon_sym_GT, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169858,39 +168035,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34258] = 6, - ACTIONS(4173), 1, - anon_sym_extends, + [34253] = 4, + ACTIONS(1696), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4459), 10, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 29, + anon_sym_GT, + ACTIONS(1698), 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, @@ -169912,15 +168087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34318] = 3, + [34309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169930,7 +168104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 32, + anon_sym_GT, + ACTIONS(1736), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169963,15 +168138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34372] = 3, + [34363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4469), 13, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169981,7 +168155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4471), 32, + anon_sym_GT, + ACTIONS(4456), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170014,15 +168189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34426] = 3, + [34417] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4473), 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_PIPE, @@ -170032,7 +168206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4475), 32, + anon_sym_GT, + ACTIONS(4460), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170065,15 +168240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34480] = 3, + [34471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170083,7 +168257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 32, + anon_sym_GT, + ACTIONS(4290), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170116,15 +168291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34534] = 3, + [34525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 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_PIPE, @@ -170134,7 +168308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 32, + anon_sym_GT, + ACTIONS(4464), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170167,15 +168342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34588] = 3, + [34579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4477), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170185,7 +168359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4479), 32, + anon_sym_GT, + ACTIONS(4290), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170218,15 +168393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34642] = 3, + [34633] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 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_PIPE, @@ -170236,7 +168410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 32, + anon_sym_GT, + ACTIONS(4468), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170269,15 +168444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34696] = 3, + [34687] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 13, + ACTIONS(4470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170287,7 +168461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4483), 32, + anon_sym_GT, + ACTIONS(4472), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170320,15 +168495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34750] = 3, + [34741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4474), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170338,7 +168512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 32, + anon_sym_GT, + ACTIONS(4476), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170371,15 +168546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34804] = 3, + [34795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 13, + ACTIONS(4478), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170389,7 +168563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 32, + anon_sym_GT, + ACTIONS(4480), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170422,15 +168597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34858] = 3, + [34849] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 13, + ACTIONS(1886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170440,7 +168614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4495), 32, + anon_sym_GT, + ACTIONS(1884), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170473,15 +168648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34912] = 3, + [34903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 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_PIPE, @@ -170491,7 +168665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 32, + anon_sym_GT, + ACTIONS(4484), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170524,15 +168699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34966] = 3, + [34957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 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_PIPE, @@ -170542,7 +168716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1807), 32, + anon_sym_GT, + ACTIONS(4488), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170575,15 +168750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35020] = 3, + [35011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 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_PIPE, @@ -170593,7 +168767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4503), 32, + anon_sym_GT, + ACTIONS(4492), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170626,15 +168801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35074] = 3, + [35065] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4505), 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_PIPE, @@ -170644,7 +168818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4507), 32, + anon_sym_GT, + ACTIONS(4496), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170677,15 +168852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35128] = 3, + [35119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 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_PIPE, @@ -170695,7 +168869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4511), 32, + anon_sym_GT, + ACTIONS(4500), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170728,15 +168903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35182] = 3, + [35173] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 13, + ACTIONS(4502), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170746,7 +168920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4515), 32, + anon_sym_GT, + ACTIONS(4504), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170779,15 +168954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35236] = 3, + [35227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 13, + ACTIONS(4506), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170797,7 +168971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4519), 32, + anon_sym_GT, + ACTIONS(4508), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170830,36 +169005,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35290] = 3, + [35281] = 6, + ACTIONS(4106), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4521), 13, + ACTIONS(4510), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4513), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(4523), 32, + ACTIONS(3496), 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, @@ -170881,15 +169059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35344] = 3, + [35341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 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_PIPE, @@ -170899,7 +169076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4527), 32, + anon_sym_GT, + ACTIONS(4518), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170932,69 +169110,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35398] = 6, - ACTIONS(4085), 1, - anon_sym_extends, - 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(3499), 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(3503), 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, - [35458] = 3, + [35395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4535), 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_PIPE, @@ -171004,7 +169127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4537), 32, + anon_sym_GT, + ACTIONS(4522), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171037,15 +169161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35512] = 3, + [35449] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4539), 13, + ACTIONS(4524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171055,7 +169178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4541), 32, + anon_sym_GT, + ACTIONS(4526), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171088,15 +169212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35566] = 3, + [35503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4543), 13, + ACTIONS(4528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171106,58 +169229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4545), 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, - [35620] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4547), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4549), 32, + ACTIONS(4530), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171190,15 +169263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35674] = 3, + [35557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4551), 13, + ACTIONS(4532), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171208,58 +169280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4553), 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, - [35728] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1815), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1817), 32, + ACTIONS(4534), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171292,15 +169314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35782] = 3, + [35611] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4555), 13, + ACTIONS(1846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171310,7 +169331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 32, + anon_sym_GT, + ACTIONS(1848), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171343,15 +169365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35836] = 3, + [35665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 13, + ACTIONS(4536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171361,7 +169382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 32, + anon_sym_GT, + ACTIONS(4538), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171394,15 +169416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35890] = 3, + [35719] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4559), 13, + ACTIONS(1722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171412,7 +169433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4561), 32, + anon_sym_GT, + ACTIONS(1720), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171445,15 +169467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35944] = 3, + [35773] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4563), 13, + ACTIONS(4540), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171463,7 +169484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4565), 32, + anon_sym_GT, + ACTIONS(4542), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171496,15 +169518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35998] = 3, + [35827] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4567), 13, + ACTIONS(4544), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171514,7 +169535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4569), 32, + anon_sym_GT, + ACTIONS(4546), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171547,15 +169569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36052] = 3, + [35881] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4571), 13, + ACTIONS(4548), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171565,7 +169586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4573), 32, + anon_sym_GT, + ACTIONS(4550), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171598,15 +169620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36106] = 3, + [35935] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4575), 13, + ACTIONS(4552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171616,7 +169637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4577), 32, + anon_sym_GT, + ACTIONS(4554), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171649,15 +169671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36160] = 3, + [35989] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(4556), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171667,7 +169688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4581), 32, + anon_sym_GT, + ACTIONS(4558), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171700,15 +169722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36214] = 3, + [36043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4583), 13, + ACTIONS(4560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171718,7 +169739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4585), 32, + anon_sym_GT, + ACTIONS(4562), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171751,15 +169773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36268] = 3, + [36097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(4564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171769,7 +169790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4589), 32, + anon_sym_GT, + ACTIONS(4566), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171802,82 +169824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36322] = 19, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4601), 1, - anon_sym_readonly, - STATE(2801), 1, - sym_override_modifier, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4599), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4603), 2, - anon_sym_get, - anon_sym_set, - STATE(3117), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 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, - [36408] = 3, + [36151] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4605), 13, + ACTIONS(4568), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171887,7 +169841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4607), 32, + anon_sym_GT, + ACTIONS(4570), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171920,15 +169875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36462] = 3, + [36205] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171938,7 +169892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 32, + anon_sym_GT, + ACTIONS(3496), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171971,15 +169926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36516] = 3, + [36259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 13, + ACTIONS(4572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171989,7 +169943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4611), 32, + anon_sym_GT, + ACTIONS(4574), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172022,15 +169977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36570] = 3, + [36313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 13, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172040,7 +169994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 32, + anon_sym_GT, + ACTIONS(4578), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172073,15 +170028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36624] = 3, + [36367] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(4580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172091,7 +170045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 32, + anon_sym_GT, + ACTIONS(4582), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172124,15 +170079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36678] = 3, + [36421] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 13, + ACTIONS(1794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172142,7 +170096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 32, + anon_sym_GT, + ACTIONS(1796), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172175,15 +170130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36732] = 3, + [36475] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 13, + ACTIONS(1804), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172193,7 +170147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 32, + anon_sym_GT, + ACTIONS(1806), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172226,15 +170181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36786] = 3, + [36529] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4613), 13, + ACTIONS(1814), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172244,7 +170198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4615), 32, + anon_sym_GT, + ACTIONS(1816), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172277,15 +170232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36840] = 3, + [36583] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4617), 13, + ACTIONS(1710), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172295,7 +170249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4619), 32, + anon_sym_GT, + ACTIONS(1712), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172328,15 +170283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36894] = 3, + [36637] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(4584), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172346,7 +170300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 32, + anon_sym_GT, + ACTIONS(4586), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172379,90 +170334,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36948] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1785), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1787), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [36691] = 13, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4590), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4594), 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_implements, - [37002] = 3, + ACTIONS(4596), 1, + anon_sym_LT, + STATE(2001), 1, + sym_type_arguments, + STATE(2228), 1, + sym_template_string, + STATE(2333), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 13, + 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 32, + anon_sym_GT, + ACTIONS(4008), 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, @@ -172478,18 +170394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37056] = 3, + [36765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 13, + ACTIONS(4598), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172499,7 +170412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 32, + anon_sym_GT, + ACTIONS(4600), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172532,15 +170446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37110] = 3, + [36819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(1762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172550,7 +170463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 32, + anon_sym_GT, + ACTIONS(1764), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172583,15 +170497,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37164] = 3, + [36873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(1774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1776), 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, + [36927] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1784), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172601,7 +170565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 32, + anon_sym_GT, + ACTIONS(1786), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172634,15 +170599,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37218] = 3, + [36981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 13, + ACTIONS(1824), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1826), 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, + [37035] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1834), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172652,7 +170667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 32, + anon_sym_GT, + ACTIONS(1836), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172685,17 +170701,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37272] = 4, - ACTIONS(4435), 1, - anon_sym_EQ, + [37089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(1860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1862), 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, + [37143] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1870), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172705,7 +170769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 31, + anon_sym_GT, + ACTIONS(1872), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172714,6 +170779,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, @@ -172737,17 +170803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37328] = 4, - ACTIONS(4623), 1, + [37197] = 4, + ACTIONS(4146), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 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_PIPE, @@ -172757,7 +170822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 31, + anon_sym_GT, + ACTIONS(4148), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172789,17 +170855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37384] = 4, - ACTIONS(1709), 1, + [37253] = 4, + ACTIONS(4604), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172809,7 +170874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 31, + anon_sym_GT, + ACTIONS(4606), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172841,20 +170907,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37440] = 6, - ACTIONS(4379), 1, + [37309] = 6, + ACTIONS(4408), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172865,7 +170931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 29, + ACTIONS(3496), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172895,15 +170961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37500] = 3, + [37369] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 13, + ACTIONS(1890), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172913,7 +170978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 32, + anon_sym_GT, + ACTIONS(1888), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -172946,15 +171012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [37554] = 3, + [37423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 13, + ACTIONS(1894), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172964,7 +171029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 32, + anon_sym_GT, + ACTIONS(1892), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -172997,51 +171063,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [37608] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4639), 1, - anon_sym_QMARK_DOT, - ACTIONS(4641), 1, - anon_sym_LT, - STATE(1893), 1, - sym_type_arguments, - STATE(2167), 1, - sym_arguments, - STATE(2254), 1, - sym_template_string, - STATE(4605), 1, - sym_optional_chain, + [37477] = 6, + ACTIONS(4378), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, + ACTIONS(4614), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4617), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4458), 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(4029), 23, - sym__automatic_semicolon, + ACTIONS(4460), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + 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, @@ -173057,16 +171114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [37682] = 3, + anon_sym_implements, + [37537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(1854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173076,7 +171134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 32, + anon_sym_GT, + ACTIONS(1852), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173109,15 +171168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37736] = 3, + [37591] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173127,7 +171185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1861), 32, + anon_sym_GT, + ACTIONS(1750), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173160,15 +171219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37790] = 3, + [37645] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173178,7 +171236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 32, + anon_sym_GT, + ACTIONS(1878), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173211,15 +171270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37844] = 3, + [37699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 13, + ACTIONS(1890), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173229,7 +171287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 32, + anon_sym_GT, + ACTIONS(1888), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173262,15 +171321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37898] = 3, + [37753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 13, + ACTIONS(1894), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173280,7 +171338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 32, + anon_sym_GT, + ACTIONS(1892), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173313,15 +171372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37952] = 3, + [37807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(1718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173331,7 +171389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 32, + anon_sym_GT, + ACTIONS(1716), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173364,47 +171423,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38006] = 19, - ACTIONS(1635), 1, + [37861] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4628), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4632), 2, + anon_sym_get, + anon_sym_set, + STATE(3144), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [37947] = 19, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4620), 1, + anon_sym_STAR, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4626), 1, + anon_sym_async, + ACTIONS(4630), 1, + anon_sym_readonly, + STATE(2805), 1, + sym_override_modifier, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173412,7 +171538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173431,47 +171557,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38092] = 19, - ACTIONS(1635), 1, + [38033] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173479,7 +171605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173498,47 +171624,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38178] = 19, - ACTIONS(1635), 1, + [38119] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173546,7 +171672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173565,47 +171691,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38264] = 19, - ACTIONS(1635), 1, + [38205] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173613,7 +171739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173632,217 +171758,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38350] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4643), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4645), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [38291] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4012), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 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_implements, - [38404] = 16, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3840), 1, - anon_sym_RBRACE, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4647), 1, - anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4599), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4603), 2, - anon_sym_get, - anon_sym_set, - STATE(3117), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4644), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 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, - [38483] = 17, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, ACTIONS(4649), 1, - anon_sym_STAR, - ACTIONS(4651), 1, - anon_sym_LBRACE, - ACTIONS(4653), 1, - anon_sym_async, - ACTIONS(4657), 1, - anon_sym_readonly, - ACTIONS(4661), 1, - sym__automatic_semicolon, - STATE(2725), 1, - sym_statement_block, - STATE(2813), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4655), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4659), 2, - anon_sym_get, - anon_sym_set, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [38564] = 4, - ACTIONS(4664), 1, - sym__automatic_semicolon, + anon_sym_satisfies, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 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(1703), 30, + anon_sym_GT, + ACTIONS(4638), 20, 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_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -173856,29 +171819,24 @@ 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_PIPE_RBRACE, - [38619] = 5, + [38368] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 2, + ACTIONS(4146), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4666), 5, + ACTIONS(4651), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4621), 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_PIPE, @@ -173888,7 +171846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 24, + anon_sym_GT, + ACTIONS(4148), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173913,15 +171872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38676] = 3, + [38425] = 4, + ACTIONS(4654), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173931,8 +171891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 31, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1690), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -173963,24 +171923,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [38729] = 5, + [38480] = 17, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + anon_sym_async, + ACTIONS(4664), 1, + anon_sym_readonly, + ACTIONS(4668), 1, + sym__automatic_semicolon, + STATE(2721), 1, + sym_statement_block, + STATE(2793), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 2, + anon_sym_get, + anon_sym_set, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [38561] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4604), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4669), 5, + ACTIONS(4671), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4433), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173990,7 +172013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 24, + anon_sym_GT, + ACTIONS(4606), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -174015,17 +172039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38786] = 4, - ACTIONS(4672), 1, - sym__automatic_semicolon, + [38618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174035,7 +172056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 30, + anon_sym_GT, + ACTIONS(1878), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -174066,24 +172089,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [38841] = 5, + [38671] = 16, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4676), 1, + anon_sym_static, + ACTIONS(4678), 1, + anon_sym_readonly, + ACTIONS(4680), 1, + anon_sym_abstract, + ACTIONS(4682), 1, + anon_sym_accessor, + STATE(2767), 1, + sym_accessibility_modifier, + STATE(2829), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, + ACTIONS(4674), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3360), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4674), 5, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1707), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [38750] = 4, + ACTIONS(4684), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174093,11 +172171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 24, + anon_sym_GT, + ACTIONS(1878), 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, @@ -174118,25 +172202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38898] = 8, - ACTIONS(4633), 1, + anon_sym_PIPE_RBRACE, + [38805] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4641), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4677), 1, + ACTIONS(4686), 1, anon_sym_DOT, - STATE(1966), 1, + STATE(1964), 1, sym_arguments, - STATE(1967), 1, + STATE(1965), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 12, + ACTIONS(3522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174145,7 +172229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 27, + anon_sym_GT, + ACTIONS(3512), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174173,39 +172258,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [38961] = 15, - ACTIONS(2338), 1, + [38868] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4824), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174213,7 +172298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174235,23 +172320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39038] = 7, - ACTIONS(4641), 1, + [38945] = 7, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4685), 1, + ACTIONS(4694), 1, anon_sym_DOT, - ACTIONS(4687), 1, + ACTIONS(4696), 1, anon_sym_is, - STATE(2010), 1, + STATE(2031), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174260,7 +172344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3567), 28, + anon_sym_GT, + ACTIONS(3548), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174289,15 +172374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39099] = 3, + [39006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(1718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174307,7 +172391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 31, + anon_sym_GT, + ACTIONS(1716), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174339,41 +172424,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [39152] = 16, - ACTIONS(1635), 1, + [39059] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4824), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174381,7 +172466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174402,25 +172487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39231] = 8, - ACTIONS(4633), 1, + [39138] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4641), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4689), 1, + ACTIONS(4700), 1, anon_sym_DOT, - STATE(1968), 1, + STATE(1966), 1, sym_arguments, - STATE(1969), 1, + STATE(1967), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 12, + ACTIONS(4068), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174429,7 +172513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4065), 27, + anon_sym_GT, + ACTIONS(4070), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174457,39 +172542,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39294] = 15, - ACTIONS(2338), 1, + [39201] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174497,7 +172582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174519,25 +172604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39371] = 8, - ACTIONS(4633), 1, + [39278] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4641), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4702), 1, anon_sym_DOT, - STATE(1972), 1, + STATE(1970), 1, sym_arguments, STATE(1973), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 12, + ACTIONS(4060), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174546,7 +172630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4059), 27, + anon_sym_GT, + ACTIONS(4062), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174574,41 +172659,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39434] = 16, - ACTIONS(1635), 1, + [39341] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174616,7 +172701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174637,25 +172722,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39513] = 8, - ACTIONS(4031), 1, + [39420] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4697), 1, + ACTIONS(4708), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174664,7 +172748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 27, + anon_sym_GT, + ACTIONS(4706), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -174692,443 +172777,506 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39576] = 31, - ACTIONS(4031), 1, + [39483] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 6, + ACTIONS(4468), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39685] = 31, - ACTIONS(4031), 1, + [39592] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 6, + ACTIONS(4744), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39794] = 31, - ACTIONS(4031), 1, + [39701] = 16, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4748), 1, + anon_sym_static, + ACTIONS(4750), 1, + anon_sym_readonly, + ACTIONS(4752), 1, + anon_sym_abstract, + ACTIONS(4754), 1, + anon_sym_accessor, + STATE(2766), 1, + sym_accessibility_modifier, + STATE(2853), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3418), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [39780] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 6, + ACTIONS(4756), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39903] = 31, - ACTIONS(4031), 1, + [39889] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 6, + ACTIONS(4758), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40012] = 31, - ACTIONS(4031), 1, + [39998] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 6, + ACTIONS(4504), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40121] = 18, - ACTIONS(4031), 1, + [40107] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175147,36 +173295,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40204] = 13, - ACTIONS(4031), 1, + [40190] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4753), 1, + ACTIONS(4764), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -175185,7 +173332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 21, + anon_sym_GT, + ACTIONS(4760), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175207,66 +173355,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40277] = 25, - ACTIONS(4031), 1, + [40263] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4760), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175279,68 +173427,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40374] = 26, - ACTIONS(4031), 1, + [40360] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175352,176 +173500,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40473] = 16, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4753), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + [40459] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(1752), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 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(4749), 20, + anon_sym_GT, + ACTIONS(1750), 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_COLON, - anon_sym_RBRACK, + 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, - [40552] = 3, + anon_sym_PIPE_RBRACE, + [40512] = 22, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1807), 31, - sym__automatic_semicolon, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4760), 13, 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_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [40605] = 23, - ACTIONS(4031), 1, + [40603] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 13, + ACTIONS(4760), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175535,65 +173689,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40698] = 24, - ACTIONS(4031), 1, + [40696] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4760), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175606,40 +173760,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40793] = 15, - ACTIONS(4031), 1, + [40791] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4753), 1, + ACTIONS(4764), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 10, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -175647,7 +173800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 20, + anon_sym_GT, + ACTIONS(4760), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175668,41 +173822,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40870] = 16, - ACTIONS(4031), 1, + [40868] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4753), 1, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -175711,7 +173864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4760), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -175731,58 +173885,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [40949] = 20, - ACTIONS(4031), 1, + [40947] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + ACTIONS(4760), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175798,70 +173952,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [41036] = 27, - ACTIONS(4031), 1, + [41034] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175872,702 +174026,638 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [41137] = 31, - ACTIONS(4031), 1, + [41135] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 6, + ACTIONS(4522), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41246] = 31, - ACTIONS(4031), 1, + [41244] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 6, + ACTIONS(4767), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41355] = 31, - ACTIONS(4031), 1, + [41353] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 6, + ACTIONS(4546), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41464] = 31, - ACTIONS(4031), 1, + [41462] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 6, + ACTIONS(4554), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41573] = 31, - ACTIONS(4031), 1, + [41571] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 6, + ACTIONS(4558), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41682] = 31, - ACTIONS(4031), 1, + [41680] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 6, + ACTIONS(4769), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41791] = 31, - ACTIONS(4031), 1, + [41789] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 6, + ACTIONS(4771), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41900] = 16, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4764), 1, - anon_sym_static, - ACTIONS(4766), 1, - anon_sym_readonly, - ACTIONS(4768), 1, - anon_sym_abstract, - ACTIONS(4770), 1, - anon_sym_accessor, - STATE(2761), 1, - sym_accessibility_modifier, - STATE(2846), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4762), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3418), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [41979] = 31, - ACTIONS(4031), 1, + [41898] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 6, + ACTIONS(4773), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [42088] = 3, + [42007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 13, + ACTIONS(1722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -176577,7 +174667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 31, + anon_sym_GT, + ACTIONS(1720), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176609,39 +174700,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42141] = 15, - ACTIONS(2338), 1, + [42060] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176649,7 +174740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176671,15 +174762,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42218] = 3, + [42137] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(1696), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4775), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -176689,17 +174788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 31, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1698), 24, 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, @@ -176720,98 +174814,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42271] = 11, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4778), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4774), 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(4776), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [42340] = 15, - ACTIONS(2338), 1, + [42194] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4626), 1, + anon_sym_async, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176819,12 +174856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -176841,52 +174877,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42417] = 16, - ACTIONS(1635), 1, + [42273] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4620), 1, + anon_sym_STAR, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4783), 1, - anon_sym_static, - ACTIONS(4785), 1, - anon_sym_readonly, - ACTIONS(4787), 1, - anon_sym_abstract, - ACTIONS(4789), 1, - anon_sym_accessor, - STATE(2746), 1, - sym_accessibility_modifier, - STATE(2857), 1, - sym_override_modifier, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3411), 3, + ACTIONS(4692), 2, + anon_sym_get, + anon_sym_set, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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(3705), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176894,9 +174925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -176904,41 +174939,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42496] = 16, - ACTIONS(1635), 1, + [42350] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1854), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1852), 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, + [42403] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176946,7 +175031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176967,39 +175052,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42575] = 15, - ACTIONS(2338), 1, + [42482] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177007,7 +175092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177029,15 +175114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42652] = 3, + [42559] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177047,7 +175131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1861), 31, + anon_sym_GT, + ACTIONS(1884), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177079,41 +175164,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42705] = 16, - ACTIONS(1635), 1, + [42612] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177121,7 +175206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177142,34 +175227,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42784] = 12, - ACTIONS(4031), 1, + [42691] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4795), 1, + ACTIONS(4782), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177178,7 +175262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 22, + anon_sym_GT, + ACTIONS(4780), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -177201,39 +175286,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [42855] = 15, - ACTIONS(4031), 1, + [42762] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4802), 1, + ACTIONS(4789), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4785), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177242,8 +175318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4800), 20, + anon_sym_GT, + ACTIONS(4787), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -177262,141 +175340,131 @@ 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, - [42932] = 31, - ACTIONS(4031), 1, + anon_sym_satisfies, + [42831] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 6, + ACTIONS(4792), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [43041] = 22, - ACTIONS(4031), 1, + [42940] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(4764), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4751), 3, + ACTIONS(4762), 8, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4749), 13, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -177406,134 +175474,101 @@ 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, - [43132] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [43019] = 4, + ACTIONS(4696), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4114), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 5, + anon_sym_GT, + ACTIONS(4116), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [43240] = 15, - ACTIONS(4633), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 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, - ACTIONS(4851), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, + anon_sym_extends, + [43073] = 6, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DOT, + STATE(2067), 1, sym_arguments, - STATE(4605), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4078), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4800), 19, + anon_sym_GT, + ACTIONS(4080), 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, @@ -177547,112 +175582,116 @@ 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, - [43316] = 31, - ACTIONS(4633), 1, + anon_sym_satisfies, + anon_sym_extends, + [43131] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 5, + ACTIONS(4756), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [43424] = 13, - ACTIONS(2338), 1, + [43239] = 13, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177660,7 +175699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177684,36 +175723,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43496] = 14, - ACTIONS(1635), 1, + [43311] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4842), 1, anon_sym_static, - ACTIONS(4858), 1, + ACTIONS(4844), 1, anon_sym_readonly, - ACTIONS(4860), 1, + ACTIONS(4846), 1, anon_sym_abstract, - ACTIONS(4862), 1, + ACTIONS(4848), 1, anon_sym_accessor, - STATE(2837), 1, + STATE(2814), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177723,7 +175762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177744,22 +175783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43570] = 7, - ACTIONS(1709), 1, + [43385] = 7, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(2372), 1, + ACTIONS(2373), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 2, + ACTIONS(4126), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4142), 3, - anon_sym_GT, + ACTIONS(4129), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 10, + anon_sym_GT, + ACTIONS(1694), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177770,7 +175809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 26, + ACTIONS(1698), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177797,15 +175836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43630] = 3, + [43445] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4084), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177815,7 +175853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 30, + anon_sym_GT, + ACTIONS(4086), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177846,116 +175885,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_is, - [43682] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [43497] = 6, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4745), 5, - sym__automatic_semicolon, + ACTIONS(3622), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [43790] = 6, - ACTIONS(4641), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_DOT, - STATE(2010), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4077), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3567), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177974,176 +175937,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [43848] = 13, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4681), 2, - sym_number, - sym_private_property_identifier, - STATE(3838), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + [43555] = 6, + ACTIONS(4596), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [43920] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4694), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4747), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [44028] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4864), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4433), 13, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 23, + anon_sym_GT, + ACTIONS(3548), 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, @@ -178162,207 +175988,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44084] = 31, - ACTIONS(4633), 1, + anon_sym_extends, + [43613] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 5, + ACTIONS(4758), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [44192] = 31, - ACTIONS(4031), 1, + [43721] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4866), 5, + ACTIONS(4504), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - [44300] = 18, - ACTIONS(4633), 1, + anon_sym_BQUOTE, + [43829] = 18, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4760), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178380,40 +176207,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [44382] = 7, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4435), 1, + [43911] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4690), 2, + sym_number, + sym_private_property_identifier, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43983] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4146), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4850), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4442), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4433), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 26, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4148), 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, @@ -178433,24 +176317,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44442] = 5, + [44039] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4868), 5, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4852), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4621), 13, + [44147] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178460,10 +176411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 23, + anon_sym_GT, + ACTIONS(3227), 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, @@ -178484,39 +176441,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44498] = 6, - ACTIONS(3533), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [44199] = 7, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(3625), 1, - anon_sym_QMARK, + ACTIONS(4156), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 5, + ACTIONS(4150), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3499), 13, + anon_sym_LBRACK, + ACTIONS(4153), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4144), 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(3503), 23, + ACTIONS(4148), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -178536,24 +176496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44556] = 5, + [44259] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, + ACTIONS(4604), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4870), 5, + ACTIONS(4854), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1707), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178563,7 +176522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 23, + anon_sym_GT, + ACTIONS(4606), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178587,33 +176547,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44612] = 3, + [44315] = 15, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4856), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3208), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 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(3210), 30, + anon_sym_GT, + ACTIONS(4638), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [44391] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1696), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4859), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1694), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1698), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -178634,38 +176659,35 @@ 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, - [44664] = 13, - ACTIONS(4633), 1, + [44447] = 13, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4872), 1, + ACTIONS(4861), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178674,7 +176696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 20, + anon_sym_GT, + ACTIONS(4760), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178695,29 +176718,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [44736] = 7, - ACTIONS(3543), 1, + [44519] = 7, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(4627), 1, + ACTIONS(4608), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4379), 6, + ACTIONS(4408), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -178725,7 +176747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178748,66 +176771,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44796] = 25, - ACTIONS(4633), 1, + [44579] = 25, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178819,68 +176842,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44892] = 26, - ACTIONS(4633), 1, + [44675] = 26, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4760), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178891,49 +176914,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44990] = 16, - ACTIONS(4633), 1, + [44773] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4872), 1, + ACTIONS(4861), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 8, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178953,62 +176976,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45068] = 22, - ACTIONS(4633), 1, + [44851] = 22, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 3, + ACTIONS(4762), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179021,63 +177044,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45158] = 23, - ACTIONS(4633), 1, + [44941] = 23, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179090,65 +177113,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45250] = 24, - ACTIONS(4633), 1, + [45033] = 24, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179160,40 +177183,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45344] = 15, - ACTIONS(4633), 1, + [45127] = 15, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4872), 1, + ACTIONS(4861), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179201,7 +177223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179221,41 +177244,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45420] = 16, - ACTIONS(4633), 1, + [45203] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4872), 1, + ACTIONS(4861), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179264,7 +177286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4760), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -179283,58 +177306,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [45498] = 20, - ACTIONS(4633), 1, + [45281] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4594), 1, + anon_sym_QMARK_DOT, + STATE(2228), 1, + sym_template_string, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1736), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + 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, + [45345] = 20, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 14, + ACTIONS(4760), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179349,69 +177427,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45584] = 6, - ACTIONS(3610), 1, - anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, + [45431] = 27, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3499), 13, + ACTIONS(4796), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 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(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 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, - [45642] = 4, - ACTIONS(4687), 1, - anon_sym_is, + [45531] = 6, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3590), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(3586), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179421,15 +177527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 29, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -179450,39 +177552,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [45696] = 4, - ACTIONS(4875), 1, - anon_sym_is, + [45589] = 12, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4864), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 29, + anon_sym_GT, + ACTIONS(4780), 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, @@ -179496,486 +177608,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [45750] = 31, - ACTIONS(4633), 1, + [45659] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 5, + ACTIONS(4546), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [45858] = 35, - ACTIONS(3550), 1, + [45767] = 35, + ACTIONS(3557), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4881), 1, + ACTIONS(4871), 1, anon_sym_RPAREN, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, - STATE(5870), 1, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5470), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45974] = 31, - ACTIONS(4633), 1, + [45883] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 5, + ACTIONS(4554), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [46082] = 31, - ACTIONS(4633), 1, + [45991] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 5, + ACTIONS(4558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [46190] = 31, - ACTIONS(4633), 1, + [46099] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4769), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [46298] = 31, - ACTIONS(4633), 1, + [46207] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 5, + ACTIONS(4771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [46406] = 3, + [46315] = 4, + ACTIONS(4696), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1779), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179985,7 +178095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 30, + anon_sym_GT, + ACTIONS(4106), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180015,29 +178126,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, + [46369] = 4, + ACTIONS(4907), 1, anon_sym_is, - [46458] = 5, - ACTIONS(4641), 1, - anon_sym_LT, - STATE(2062), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 12, + ACTIONS(4108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 29, + anon_sym_GT, + ACTIONS(4110), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180067,84 +178176,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [46514] = 4, - ACTIONS(4921), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4917), 16, - anon_sym_STAR, + [46423] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, + ACTIONS(4800), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, anon_sym_GT_GT, + ACTIONS(4812), 1, anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4919), 26, + ACTIONS(4838), 1, 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, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 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(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4792), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [46568] = 13, - ACTIONS(2338), 1, + [46531] = 13, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180152,7 +178288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180176,49 +178312,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46640] = 12, - ACTIONS(4633), 1, + [46603] = 35, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, anon_sym_LT, - STATE(2027), 1, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(4909), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5741), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46719] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1900), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 21, + anon_sym_GT, + ACTIONS(1898), 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, @@ -180232,264 +178436,299 @@ 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, - [46710] = 35, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, + anon_sym_extends, + anon_sym_is, + [46771] = 4, ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(4926), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - STATE(5705), 1, - sym_type_annotation, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4911), 16, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4913), 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, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [46826] = 27, - ACTIONS(4633), 1, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46825] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4522), 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_BQUOTE, - anon_sym_satisfies, - [46926] = 31, - ACTIONS(4633), 1, + [46933] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4690), 2, + sym_number, + sym_private_property_identifier, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [47005] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 5, + ACTIONS(4767), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [47034] = 11, - ACTIONS(4633), 1, + [47113] = 11, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4928), 1, + ACTIONS(4917), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180498,7 +178737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 23, + anon_sym_GT, + ACTIONS(4787), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180522,279 +178762,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47102] = 13, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3930), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4681), 2, - sym_number, - sym_private_property_identifier, - STATE(3838), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47174] = 4, - ACTIONS(4687), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4095), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4097), 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, - [47228] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4639), 1, - anon_sym_QMARK_DOT, - STATE(2254), 1, - sym_template_string, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1889), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1891), 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, - [47292] = 35, - ACTIONS(3550), 1, + [47181] = 35, + ACTIONS(3557), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(4931), 1, + ACTIONS(4920), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, - STATE(5857), 1, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5630), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47408] = 13, - ACTIONS(2338), 1, + [47297] = 13, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180802,7 +178878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180826,25 +178902,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [47480] = 8, - ACTIONS(4633), 1, + [47369] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180853,7 +178928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 26, + anon_sym_GT, + ACTIONS(4706), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180880,25 +178956,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47542] = 8, - ACTIONS(4633), 1, + [47431] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180907,7 +178982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 26, + anon_sym_GT, + ACTIONS(4706), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180934,487 +179010,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47604] = 31, - ACTIONS(4633), 1, + [47493] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4468), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [47712] = 31, - ACTIONS(4633), 1, + [47601] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 5, + ACTIONS(4744), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [47820] = 31, - ACTIONS(4633), 1, + [47709] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3233), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3235), 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, + [47761] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 5, + ACTIONS(4756), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [47928] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3212), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3214), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [47869] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 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_PIPE_RBRACE, - [47980] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 5, + ACTIONS(4758), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [48088] = 31, - ACTIONS(4633), 1, + [47977] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 5, + ACTIONS(4504), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [48196] = 18, - ACTIONS(4633), 1, + [48085] = 18, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4760), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181432,36 +179508,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48278] = 13, - ACTIONS(4633), 1, + [48167] = 13, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -181470,7 +179545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 20, + anon_sym_GT, + ACTIONS(4760), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181491,66 +179567,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48350] = 25, - ACTIONS(4633), 1, + [48239] = 25, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181562,68 +179638,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48446] = 26, - ACTIONS(4633), 1, + [48335] = 26, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4760), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181634,49 +179710,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48544] = 16, - ACTIONS(4633), 1, + [48433] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181696,62 +179772,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48622] = 22, - ACTIONS(4633), 1, + [48511] = 22, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4762), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181764,63 +179840,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48712] = 23, - ACTIONS(4633), 1, + [48601] = 23, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181833,65 +179909,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48804] = 24, - ACTIONS(4633), 1, + [48693] = 24, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181903,40 +179979,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48898] = 15, - ACTIONS(4633), 1, + [48787] = 15, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -181944,7 +180019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181964,41 +180040,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48974] = 16, - ACTIONS(4633), 1, + [48863] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -182007,7 +180082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4760), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -182026,58 +180102,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [49052] = 20, - ACTIONS(4633), 1, + [48941] = 20, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 14, + ACTIONS(4760), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182092,70 +180168,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [49138] = 27, - ACTIONS(4633), 1, + [49027] = 27, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4760), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182165,646 +180241,645 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [49238] = 31, - ACTIONS(4633), 1, + [49127] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 5, + ACTIONS(4522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49346] = 31, - ACTIONS(4633), 1, + [49235] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 5, + ACTIONS(4767), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49454] = 31, - ACTIONS(4633), 1, + [49343] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 5, + ACTIONS(4546), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49562] = 31, - ACTIONS(4633), 1, + [49451] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 5, + ACTIONS(4554), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49670] = 31, - ACTIONS(4633), 1, + [49559] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 5, + ACTIONS(4558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49778] = 31, - ACTIONS(4633), 1, + [49667] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4769), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49886] = 31, - ACTIONS(4633), 1, + [49775] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 5, + ACTIONS(4771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49994] = 31, - ACTIONS(4633), 1, + [49883] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 5, + ACTIONS(4773), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [50102] = 8, - ACTIONS(4435), 1, + [49991] = 8, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(4439), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4972), 2, + ACTIONS(4961), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4137), 4, + ACTIONS(2373), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4433), 11, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -182812,7 +180887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -182835,46 +180911,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50164] = 11, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, + [50053] = 8, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4976), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4153), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4965), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4156), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4144), 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(4776), 23, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4148), 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, @@ -182892,173 +180965,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50232] = 35, - ACTIONS(3550), 1, + [50115] = 35, + ACTIONS(3557), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(4979), 1, + ACTIONS(4969), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, - STATE(5502), 1, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5636), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50348] = 6, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4981), 1, - anon_sym_DOT, + [50231] = 5, + ACTIONS(4596), 1, + anon_sym_LT, STATE(2063), 1, - sym_arguments, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4108), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 27, + anon_sym_GT, + ACTIONS(4110), 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [50406] = 7, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(4379), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 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(3503), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183078,190 +181096,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50466] = 31, - ACTIONS(4633), 1, + anon_sym_extends, + [50287] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4468), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50574] = 31, - ACTIONS(4633), 1, + [50395] = 7, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(4408), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4608), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(3496), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [50455] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 5, + ACTIONS(4744), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50682] = 14, - ACTIONS(1635), 1, + [50563] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4985), 1, + ACTIONS(4973), 1, anon_sym_static, - ACTIONS(4987), 1, + ACTIONS(4975), 1, anon_sym_readonly, - ACTIONS(4989), 1, + ACTIONS(4977), 1, anon_sym_abstract, - ACTIONS(4991), 1, + ACTIONS(4979), 1, anon_sym_accessor, - STATE(2865), 1, + STATE(2850), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4983), 2, + ACTIONS(4971), 2, sym_number, sym_private_property_identifier, - STATE(3341), 3, + STATE(3342), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -183271,7 +181343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183292,42 +181364,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50756] = 16, - ACTIONS(1635), 1, + [50637] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2805), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4074), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -183335,7 +181407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183354,15 +181426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50834] = 3, + [50715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3216), 13, + ACTIONS(3237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183372,7 +181443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3218), 30, + anon_sym_GT, + ACTIONS(3239), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183403,111 +181475,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [50886] = 31, - ACTIONS(4633), 1, + [50767] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 5, + ACTIONS(4773), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50994] = 12, - ACTIONS(4633), 1, + [50875] = 12, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4993), 1, + ACTIONS(4981), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183516,7 +181587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 21, + anon_sym_GT, + ACTIONS(4780), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183538,39 +181610,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [51064] = 15, - ACTIONS(4633), 1, + [50945] = 15, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4996), 1, + ACTIONS(4984), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4634), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183579,7 +181650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4800), 19, + anon_sym_GT, + ACTIONS(4638), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -183599,120 +181671,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [51140] = 31, - ACTIONS(4633), 1, + [51021] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 5, + ACTIONS(4792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [51248] = 8, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4139), 1, + [51129] = 11, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2372), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1707), 11, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 22, + anon_sym_GT, + ACTIONS(4787), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -183730,52 +181805,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51310] = 19, - ACTIONS(239), 1, + [51197] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5005), 1, + ACTIONS(4992), 1, anon_sym_RBRACE, - STATE(2805), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183794,15 +181869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [51393] = 3, + [51280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183812,7 +181886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 29, + anon_sym_GT, + ACTIONS(4286), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183842,15 +181917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51444] = 3, + [51331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183860,7 +181934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4306), 29, + anon_sym_GT, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183890,29 +181965,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51495] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [51382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 11, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 28, + anon_sym_GT, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183941,15 +182012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51552] = 3, + anon_sym_extends, + [51433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3316), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183959,7 +182030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 29, + anon_sym_GT, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183989,19 +182061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51603] = 5, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4664), 1, - sym__automatic_semicolon, + [51484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 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_PIPE, @@ -184011,7 +182078,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 27, + anon_sym_GT, + ACTIONS(4318), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184039,30 +182108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51658] = 9, - ACTIONS(4085), 1, anon_sym_extends, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5017), 1, - anon_sym_RPAREN, + [51535] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5013), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5015), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3499), 11, + ACTIONS(4332), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -184070,10 +182130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(4334), 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, @@ -184093,41 +182160,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51721] = 9, - ACTIONS(3610), 1, - anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(4627), 1, - anon_sym_LBRACK, + [51592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4379), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4630), 2, + ACTIONS(3423), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3425), 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, + [51643] = 5, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4654), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(1690), 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, @@ -184147,340 +182258,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51784] = 31, - ACTIONS(4031), 1, + [51698] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 4, + ACTIONS(4468), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [51891] = 31, - ACTIONS(4031), 1, + [51805] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [51998] = 15, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5020), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 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(4800), 18, - sym__ternary_qmark, + ACTIONS(4758), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [52073] = 31, - ACTIONS(4031), 1, + [51912] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 4, + ACTIONS(4744), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [52180] = 19, - ACTIONS(239), 1, + [52019] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(694), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184499,53 +182550,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [52263] = 18, - ACTIONS(4031), 1, + [52102] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4901), 1, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4891), 2, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4504), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [52209] = 18, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184562,162 +182689,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [52344] = 5, - ACTIONS(4633), 1, - anon_sym_LPAREN, - STATE(2242), 1, - sym_arguments, + [52290] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5000), 1, + anon_sym_STAR, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5006), 1, + anon_sym_readonly, + STATE(2789), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 27, + ACTIONS(5004), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5008), 2, + anon_sym_get, + anon_sym_set, + STATE(3147), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [52363] = 33, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, anon_sym_AMP_AMP, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, anon_sym_PERCENT, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4417), 1, + aux_sym_sequence_expression_repeat1, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52399] = 31, - ACTIONS(4031), 1, + ACTIONS(5012), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52474] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4922), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_GT, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5016), 1, + anon_sym_in, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 4, + ACTIONS(5014), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [52506] = 13, - ACTIONS(4031), 1, + anon_sym_SEMI, + anon_sym_of, + [52583] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5019), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -184726,7 +182940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4760), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184746,267 +182961,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [52577] = 32, - ACTIONS(4633), 1, + [52654] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_LT, - ACTIONS(4937), 1, - anon_sym_GT, - ACTIONS(4939), 1, - anon_sym_AMP_AMP, - ACTIONS(4941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, - sym__ternary_qmark, - ACTIONS(5028), 1, - anon_sym_in, - STATE(2027), 1, + ACTIONS(4895), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4945), 2, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5026), 4, - sym__automatic_semicolon, + ACTIONS(4760), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [52686] = 25, - ACTIONS(4031), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52749] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [52781] = 26, - ACTIONS(4031), 1, + [52846] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(5019), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4762), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 9, + anon_sym_GT, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, - [52878] = 16, - ACTIONS(4031), 1, + [52923] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4899), 2, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4762), 3, 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(4749), 18, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185014,73 +183226,67 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52955] = 22, - ACTIONS(4031), 1, + [53012] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4901), 1, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185092,63 +183298,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53044] = 23, - ACTIONS(4031), 1, + [53103] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185156,113 +183364,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53135] = 24, - ACTIONS(4031), 1, + [53196] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4417), 1, + aux_sym_sequence_expression_repeat1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4877), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5022), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [53228] = 15, - ACTIONS(4031), 1, + [53307] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5019), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185270,7 +183485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185289,41 +183505,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [53303] = 16, - ACTIONS(4031), 1, + [53382] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5019), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185332,7 +183547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RPAREN, @@ -185350,107 +183566,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [53380] = 4, - ACTIONS(5031), 1, + [53459] = 33, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4417), 1, + aux_sym_sequence_expression_repeat1, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(4796), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 28, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5024), 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_QMARK_DOT, - anon_sym_AMP_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(4826), 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, - [53433] = 20, - ACTIONS(4031), 1, + [53570] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 13, + ACTIONS(4760), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185464,17 +183709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53518] = 4, - ACTIONS(3501), 1, + [53655] = 4, + ACTIONS(3510), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185484,7 +183728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 28, + anon_sym_GT, + ACTIONS(3496), 28, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185513,70 +183758,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53571] = 27, - ACTIONS(4031), 1, + [53708] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185585,15 +183830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53670] = 3, + [53807] = 4, + ACTIONS(4110), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185603,7 +183849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4238), 29, + anon_sym_GT, + ACTIONS(4298), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185632,77 +183879,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53721] = 4, - ACTIONS(5033), 1, - anon_sym_LBRACK, - 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, + [53860] = 6, + ACTIONS(4994), 1, anon_sym_AMP, + ACTIONS(4996), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4238), 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, - [53774] = 4, - ACTIONS(4089), 1, + ACTIONS(4998), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4296), 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(4407), 28, + anon_sym_GT, + ACTIONS(4298), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185731,29 +183930,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53827] = 6, - ACTIONS(5007), 1, + [53917] = 4, + ACTIONS(5026), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4250), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5009), 1, anon_sym_PIPE, - ACTIONS(5011), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4252), 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, + [53970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 11, + 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(4407), 28, + anon_sym_GT, + ACTIONS(4172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185782,167 +184026,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53884] = 31, - ACTIONS(4031), 1, + anon_sym_extends, + [54021] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 4, + ACTIONS(4522), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [53991] = 31, - ACTIONS(4031), 1, + [54128] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 4, + ACTIONS(4767), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [54098] = 3, + [54235] = 4, + ACTIONS(5028), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 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_PIPE, @@ -185952,7 +184198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 29, + anon_sym_GT, + ACTIONS(4172), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185961,7 +184208,6 @@ 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, @@ -185982,111 +184228,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54149] = 14, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_STAR, - ACTIONS(5037), 1, - anon_sym_async, - ACTIONS(5041), 1, - anon_sym_readonly, - STATE(2807), 1, - sym_override_modifier, + [54288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5039), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5043), 2, - anon_sym_get, - anon_sym_set, - STATE(3108), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(4108), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4110), 29, 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(3705), 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, - [54222] = 19, - ACTIONS(239), 1, + 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, + [54339] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(699), 1, + ACTIONS(667), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -186105,15 +184340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [54305] = 3, + [54422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186123,7 +184357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 29, + anon_sym_GT, + ACTIONS(4142), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186153,152 +184388,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54356] = 31, - ACTIONS(4031), 1, + [54473] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [54463] = 11, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4774), 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(4776), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4756), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [54530] = 6, - ACTIONS(4085), 1, + [54580] = 6, + ACTIONS(4106), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, + ACTIONS(4510), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4532), 3, - anon_sym_GT, + ACTIONS(4513), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186309,7 +184488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 26, + ACTIONS(3496), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186336,22 +184515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54587] = 7, - ACTIONS(3569), 1, + [54637] = 7, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(4379), 1, + ACTIONS(4408), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186362,7 +184541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, + ACTIONS(3496), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186388,126 +184567,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54646] = 33, - ACTIONS(4633), 1, + [54696] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(5030), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4785), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + anon_sym_in, anon_sym_GT_GT, - ACTIONS(4823), 1, anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4787), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4833), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2027), 1, + [54763] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5033), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4479), 1, - aux_sym_sequence_expression_repeat1, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + anon_sym_GT, + ACTIONS(4638), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5050), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54757] = 12, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + [54838] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5052), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4792), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [54945] = 6, + ACTIONS(4994), 1, anon_sym_AMP, + ACTIONS(4996), 1, anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 11, + 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(4793), 20, + anon_sym_GT, + ACTIONS(4274), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -186521,24 +184806,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, - [54826] = 6, - ACTIONS(1709), 1, + [55002] = 6, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(1713), 1, + ACTIONS(1700), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1690), 2, anon_sym_else, anon_sym_while, - ACTIONS(1707), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186548,7 +184834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 25, + anon_sym_GT, + ACTIONS(1698), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -186574,187 +184861,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54883] = 33, - ACTIONS(4633), 1, + [55059] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4479), 1, - aux_sym_sequence_expression_repeat1, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5055), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54994] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + ACTIONS(4546), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [55166] = 4, + ACTIONS(4146), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4144), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(4148), 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(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4565), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55101] = 12, - ACTIONS(1635), 1, + anon_sym_satisfies, + [55219] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(4656), 1, anon_sym_STAR, - ACTIONS(4653), 1, + ACTIONS(4660), 1, anon_sym_async, - ACTIONS(4789), 1, + ACTIONS(4682), 1, anon_sym_abstract, + ACTIONS(4698), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, + ACTIONS(4662), 2, sym_number, sym_private_property_identifier, - ACTIONS(4659), 2, + ACTIONS(4666), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -186764,7 +185022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -186785,192 +185043,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [55170] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4365), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4367), 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, - [55221] = 31, - ACTIONS(4031), 1, + [55288] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 4, + ACTIONS(4554), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [55328] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4373), 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(4375), 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, - [55385] = 4, - ACTIONS(4435), 1, - anon_sym_EQ, + [55395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(4368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186980,7 +185136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 28, + anon_sym_GT, + ACTIONS(4370), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187009,98 +185166,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55438] = 31, - ACTIONS(4031), 1, + anon_sym_extends, + [55446] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 4, + ACTIONS(4558), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [55545] = 7, - ACTIONS(1709), 1, + [55553] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 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(1969), 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, + [55606] = 7, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(4139), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 2, + ACTIONS(2373), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4142), 3, - anon_sym_GT, + ACTIONS(4129), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 10, + anon_sym_GT, + ACTIONS(1694), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187111,7 +185318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 25, + ACTIONS(1698), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187137,18 +185344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55604] = 7, - ACTIONS(3509), 1, + [55665] = 7, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3513), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(3522), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3505), 7, + ACTIONS(3512), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -187156,11 +185363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187168,7 +185374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 20, + anon_sym_GT, + ACTIONS(3496), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187189,22 +185396,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55663] = 7, - ACTIONS(4435), 1, + [55724] = 7, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(4439), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 2, + ACTIONS(4156), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4442), 3, - anon_sym_GT, + ACTIONS(4153), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4433), 10, + anon_sym_GT, + ACTIONS(4144), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187215,7 +185422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 25, + ACTIONS(4148), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187241,14 +185448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55722] = 5, + [55783] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4184), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4169), 7, + ACTIONS(4182), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -187256,11 +185463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187268,7 +185474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187291,15 +185498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55777] = 3, + [55838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(2375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -187309,7 +185515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 29, + anon_sym_GT, + ACTIONS(2373), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187339,15 +185546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55828] = 3, + [55889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 13, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -187357,7 +185563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4097), 29, + anon_sym_GT, + ACTIONS(4116), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187387,147 +185594,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55879] = 33, - ACTIONS(4633), 1, + [55940] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5048), 1, + ACTIONS(5036), 1, anon_sym_COMMA, - STATE(2027), 1, + ACTIONS(5039), 1, + anon_sym_RBRACE, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4479), 1, - aux_sym_sequence_expression_repeat1, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5057), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55990] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2374), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2372), 29, + ACTIONS(5041), 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(4826), 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, - [56041] = 6, - ACTIONS(5007), 1, + [56051] = 6, + ACTIONS(4994), 1, anon_sym_AMP, - ACTIONS(5009), 1, + ACTIONS(4996), 1, anon_sym_PIPE, - ACTIONS(5011), 1, + ACTIONS(4998), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 11, + ACTIONS(4434), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187535,7 +185693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 28, + anon_sym_GT, + ACTIONS(4436), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187564,21 +185723,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56098] = 6, - ACTIONS(5007), 1, + [56108] = 6, + ACTIONS(4994), 1, anon_sym_AMP, - ACTIONS(5009), 1, + ACTIONS(4996), 1, anon_sym_PIPE, - ACTIONS(5011), 1, + ACTIONS(4998), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4425), 11, + ACTIONS(4442), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187586,7 +185744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4427), 28, + anon_sym_GT, + ACTIONS(4444), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187615,364 +185774,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56155] = 33, - ACTIONS(4633), 1, + [56165] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5059), 1, + ACTIONS(5036), 1, anon_sym_COMMA, - ACTIONS(5062), 1, + ACTIONS(5039), 1, anon_sym_RBRACE, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5064), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56266] = 33, - ACTIONS(4633), 1, + [56276] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5059), 1, - anon_sym_COMMA, - ACTIONS(5062), 1, + ACTIONS(5039), 1, anon_sym_RBRACE, - STATE(2027), 1, + ACTIONS(5043), 1, + anon_sym_COMMA, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 2, + ACTIONS(4758), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56377] = 33, - ACTIONS(4633), 1, + [56387] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5062), 1, - anon_sym_RBRACE, - ACTIONS(5066), 1, + ACTIONS(5046), 1, anon_sym_COMMA, - STATE(2027), 1, + ACTIONS(5049), 1, + anon_sym_RBRACE, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4747), 2, + ACTIONS(4758), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56488] = 33, - ACTIONS(4633), 1, + [56498] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5069), 1, - anon_sym_COMMA, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4747), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4807), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56599] = 19, - ACTIONS(239), 1, + ACTIONS(4769), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [56605] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(5051), 1, anon_sym_RBRACE, - STATE(2805), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187991,30 +186148,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56682] = 9, - ACTIONS(2372), 1, + [56688] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2228), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1736), 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, + [56743] = 9, + ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(4139), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, - ACTIONS(4999), 1, + ACTIONS(4961), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, + ACTIONS(1696), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4142), 2, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4674), 2, + ACTIONS(4775), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1707), 11, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188022,7 +186228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 22, + anon_sym_GT, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188045,30 +186252,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56745] = 9, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4439), 1, + [56806] = 9, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4972), 1, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(4965), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4146), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4442), 2, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4669), 2, + ACTIONS(4651), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4433), 11, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188076,7 +186282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188099,20 +186306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56808] = 4, + [56869] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 4, + ACTIONS(4120), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4179), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188122,7 +186328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 25, + anon_sym_GT, + ACTIONS(4290), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188148,20 +186355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56861] = 4, + [56922] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 4, + ACTIONS(4322), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4179), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188171,7 +186377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 25, + anon_sym_GT, + ACTIONS(4290), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188197,52 +186404,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56914] = 19, - ACTIONS(239), 1, + [56975] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5076), 1, + ACTIONS(5053), 1, anon_sym_RBRACE, - STATE(2805), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -188261,31 +186468,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56997] = 10, - ACTIONS(1709), 1, + [57058] = 10, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(2372), 1, + ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(2374), 1, + ACTIONS(2375), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, - ACTIONS(4870), 1, + ACTIONS(4859), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 2, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4999), 2, + ACTIONS(4961), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1707), 11, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188293,7 +186499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 22, + anon_sym_GT, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188316,31 +186523,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57062] = 10, - ACTIONS(4135), 1, - anon_sym_QMARK, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4435), 1, + [57123] = 10, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(4439), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4864), 1, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(4270), 1, + anon_sym_QMARK, + ACTIONS(4850), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4972), 2, + ACTIONS(4965), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(4433), 11, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188348,7 +186554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188371,27 +186578,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57127] = 6, + [57188] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4627), 3, + ACTIONS(4608), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4379), 4, + ACTIONS(4408), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188399,7 +186605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188422,27 +186629,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57184] = 6, + [57245] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 2, + ACTIONS(4617), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4463), 3, + ACTIONS(4614), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4173), 4, + ACTIONS(4378), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4459), 11, + ACTIONS(4458), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188450,7 +186656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 22, + anon_sym_GT, + ACTIONS(4460), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188473,27 +186680,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57241] = 6, + [57302] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4513), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4529), 3, + ACTIONS(4510), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4085), 4, + ACTIONS(4106), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188501,7 +186707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188524,169 +186731,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57298] = 31, - ACTIONS(4031), 1, + [57359] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 4, + ACTIONS(4771), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [57405] = 31, - ACTIONS(4031), 1, + [57466] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(5055), 1, anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4778), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(4780), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4760), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_BQUOTE, - [57512] = 4, - ACTIONS(3533), 1, + anon_sym_satisfies, + [57535] = 4, + ACTIONS(3494), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188696,7 +186883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 28, + anon_sym_GT, + ACTIONS(3496), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188725,30 +186913,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57565] = 4, + [57588] = 14, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(5062), 1, + anon_sym_RBRACE, + STATE(4745), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5064), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 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(1984), 25, + STATE(4555), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5509), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5058), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -188772,21 +186972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [57618] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2254), 1, - sym_template_string, + [57661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(2379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188796,112 +186989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 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, - [57673] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(3947), 1, - anon_sym_LBRACK, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_RBRACE, - STATE(4878), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5084), 2, - sym_number, - sym_private_property_identifier, - STATE(4567), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5594), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5595), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5078), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57746] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2378), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2376), 29, + anon_sym_GT, + ACTIONS(2377), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188931,15 +187020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57797] = 3, + [57712] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 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_PIPE, @@ -188949,7 +187037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 29, + anon_sym_GT, + ACTIONS(4322), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188979,15 +187068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57848] = 3, + [57763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 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_PIPE, @@ -188997,7 +187085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4294), 29, + anon_sym_GT, + ACTIONS(4326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189027,15 +187116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57899] = 3, + [57814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 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_PIPE, @@ -189045,7 +187133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4302), 29, + anon_sym_GT, + ACTIONS(4330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189075,15 +187164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57950] = 3, + [57865] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189093,7 +187181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 29, + anon_sym_GT, + ACTIONS(4344), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189123,37 +187212,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58001] = 14, - ACTIONS(1635), 1, + [57916] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(5066), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(5068), 1, anon_sym_async, - ACTIONS(5092), 1, + ACTIONS(5072), 1, anon_sym_readonly, - STATE(2793), 1, + STATE(2791), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5070), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(5074), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189163,7 +187252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -189182,33 +187271,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58074] = 12, - ACTIONS(1635), 1, + [57989] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4862), 1, + ACTIONS(4848), 1, anon_sym_abstract, - ACTIONS(5086), 1, + ACTIONS(5066), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(5068), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5070), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(5074), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189218,7 +187307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -189239,15 +187328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58143] = 3, + [58058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189257,7 +187345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + anon_sym_GT, + ACTIONS(4348), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189287,65 +187376,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58194] = 3, + [58109] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_STAR, + ACTIONS(5078), 1, + anon_sym_async, + ACTIONS(5082), 1, + anon_sym_readonly, + STATE(2801), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, - anon_sym_STAR, + ACTIONS(5080), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5084), 2, + anon_sym_get, + anon_sym_set, + STATE(3066), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4393), 29, + anon_sym_QMARK, + ACTIONS(3700), 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, + [58182] = 12, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_STAR, + ACTIONS(5078), 1, + anon_sym_async, + ACTIONS(5088), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5084), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5086), 2, + sym_number, + sym_private_property_identifier, + STATE(3067), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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, - [58245] = 4, - ACTIONS(4677), 1, - anon_sym_DOT, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [58251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189355,7 +187509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 28, + anon_sym_GT, + ACTIONS(4352), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189365,6 +187520,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, @@ -189384,41 +187540,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58298] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4905), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + [58302] = 4, + ACTIONS(4686), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(3522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 25, + anon_sym_GT, + ACTIONS(3512), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -189437,15 +187588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58359] = 3, + anon_sym_extends, + [58355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189455,7 +187606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 29, + anon_sym_GT, + ACTIONS(4408), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189485,76 +187637,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58410] = 14, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(5102), 1, - anon_sym_readonly, - STATE(2795), 1, - sym_override_modifier, + [58406] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4895), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, 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(3076), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4704), 12, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4706), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3705), 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, - [58483] = 4, - ACTIONS(5106), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58467] = 4, + ACTIONS(5090), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189564,7 +187709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 28, + anon_sym_GT, + ACTIONS(4226), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189593,15 +187739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58536] = 3, + [58520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189611,7 +187756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 29, + anon_sym_GT, + ACTIONS(4232), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189641,23 +187787,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58587] = 7, - ACTIONS(3537), 1, + [58571] = 7, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3512), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189668,7 +187814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + ACTIONS(3496), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189693,20 +187839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58646] = 6, - ACTIONS(4379), 1, + [58630] = 6, + ACTIONS(4408), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189717,7 +187863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 26, + ACTIONS(3496), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189744,19 +187890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58703] = 5, + [58687] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4169), 3, + ACTIONS(4182), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3499), 10, + ACTIONS(4184), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189767,7 +187913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 26, + ACTIONS(3496), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189794,20 +187940,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58758] = 6, - ACTIONS(4173), 1, + [58742] = 6, + ACTIONS(4378), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 2, + ACTIONS(4614), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4466), 3, - anon_sym_GT, + ACTIONS(4617), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4459), 10, + anon_sym_GT, + ACTIONS(4458), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189818,7 +187964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 26, + ACTIONS(4460), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189845,17 +187991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58815] = 4, - ACTIONS(4183), 1, + [58799] = 4, + ACTIONS(4120), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189865,7 +188010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, + anon_sym_GT, + ACTIONS(4290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189894,15 +188040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58868] = 3, + [58852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 13, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189912,7 +188057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4151), 29, + anon_sym_GT, + ACTIONS(4356), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189942,15 +188088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58919] = 3, + [58903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 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_PIPE, @@ -189960,7 +188105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 29, + anon_sym_GT, + ACTIONS(4360), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189990,15 +188136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58970] = 3, + [58954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190008,7 +188153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 29, + anon_sym_GT, + ACTIONS(4374), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190038,17 +188184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59021] = 4, - ACTIONS(4207), 1, + [59005] = 4, + ACTIONS(4388), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190058,7 +188203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 28, + anon_sym_GT, + ACTIONS(4386), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190087,15 +188233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59074] = 3, + [59058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3687), 13, + ACTIONS(3691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190105,7 +188250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3487), 29, + anon_sym_GT, + ACTIONS(3474), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190135,15 +188281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59125] = 3, + [59109] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3703), 13, + ACTIONS(3679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190153,7 +188298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 29, + anon_sym_GT, + ACTIONS(3478), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190183,17 +188329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59176] = 4, - ACTIONS(4312), 1, + [59160] = 4, + ACTIONS(4399), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190203,7 +188348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 28, + anon_sym_GT, + ACTIONS(4386), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190232,15 +188378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59229] = 3, + [59213] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 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_PIPE, @@ -190250,7 +188395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 29, + anon_sym_GT, + ACTIONS(4404), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190280,21 +188426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59280] = 6, - ACTIONS(5007), 1, + [59264] = 6, + ACTIONS(4994), 1, anon_sym_AMP, - ACTIONS(5009), 1, + ACTIONS(4996), 1, anon_sym_PIPE, - ACTIONS(5011), 1, + ACTIONS(4998), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(4402), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -190302,7 +188447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 28, + anon_sym_GT, + ACTIONS(4404), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190331,15 +188477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59337] = 3, + [59321] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 13, + ACTIONS(4414), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190349,7 +188494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4329), 29, + anon_sym_GT, + ACTIONS(4416), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190379,72 +188525,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59388] = 12, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(5110), 1, - anon_sym_abstract, + [59372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5108), 2, - sym_number, - sym_private_property_identifier, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(4418), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4420), 29, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, 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(3705), 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, - [59457] = 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, + anon_sym_extends, + [59423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190454,7 +188590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 29, + anon_sym_GT, + ACTIONS(4424), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190484,15 +188621,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59508] = 3, + [59474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190502,7 +188638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + anon_sym_GT, + ACTIONS(4428), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190532,15 +188669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59559] = 3, + [59525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(3417), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190550,7 +188686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, + anon_sym_GT, + ACTIONS(3419), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190580,15 +188717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59610] = 3, + [59576] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3398), 13, + ACTIONS(4430), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190598,7 +188734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3400), 29, + anon_sym_GT, + ACTIONS(4432), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190628,15 +188765,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59661] = 3, + [59627] = 4, + ACTIONS(4994), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(4438), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + 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, anon_sym_GT, + ACTIONS(4440), 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, + [59680] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4446), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190646,7 +188831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 29, + anon_sym_GT, + ACTIONS(4448), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190676,64 +188862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59712] = 4, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4361), 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(4363), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [59731] = 5, + ACTIONS(4588), 1, 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, - [59765] = 3, + STATE(2207), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4395), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190743,13 +188883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 29, + anon_sym_GT, + ACTIONS(4397), 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, @@ -190772,31 +188912,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [59786] = 9, + ACTIONS(4106), 1, anon_sym_extends, - [59816] = 9, - ACTIONS(4085), 1, - anon_sym_extends, - ACTIONS(4529), 1, + ACTIONS(4510), 1, anon_sym_LBRACK, - ACTIONS(5115), 1, + ACTIONS(5097), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4513), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5013), 2, + ACTIONS(5092), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5112), 2, + ACTIONS(5094), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -190804,7 +188942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -190827,30 +188966,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59879] = 9, + [59849] = 9, + ACTIONS(3611), 1, + anon_sym_EQ, ACTIONS(3617), 1, anon_sym_QMARK, - ACTIONS(3644), 1, - anon_sym_EQ, - ACTIONS(4627), 1, + ACTIONS(4608), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 2, + ACTIONS(3614), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4379), 2, + ACTIONS(4408), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4630), 2, + ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -190858,57 +188996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 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, - [59942] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4135), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4137), 29, - sym__automatic_semicolon, + ACTIONS(3496), 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, @@ -190928,16 +189020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59993] = 3, + [59912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 13, + ACTIONS(4270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190947,7 +189037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4155), 29, + anon_sym_GT, + ACTIONS(4156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190977,94 +189068,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60044] = 32, - ACTIONS(4633), 1, + [59963] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5062), 2, + ACTIONS(5039), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5119), 2, + ACTIONS(5101), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60153] = 3, + [60072] = 4, + ACTIONS(4994), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4304), 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, @@ -191072,7 +189163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 29, + anon_sym_GT, + ACTIONS(4306), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191102,15 +189194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60204] = 3, + [60125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191120,7 +189211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 29, + anon_sym_GT, + ACTIONS(4182), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191150,15 +189242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60255] = 3, + [60176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191168,7 +189259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 29, + anon_sym_GT, + ACTIONS(4378), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191198,15 +189290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60306] = 3, + [60227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2382), 13, + ACTIONS(2367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191216,7 +189307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2380), 29, + anon_sym_GT, + ACTIONS(2365), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191246,15 +189338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60357] = 3, + [60278] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 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_PIPE, @@ -191264,7 +189355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4389), 29, + anon_sym_GT, + ACTIONS(4160), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191294,15 +189386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60408] = 3, + [60329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191312,7 +189403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4397), 29, + anon_sym_GT, + ACTIONS(4314), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191342,15 +189434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60459] = 3, + [60380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191360,7 +189451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 29, + anon_sym_GT, + ACTIONS(4382), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191390,15 +189482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60510] = 3, + [60431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191408,7 +189499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 29, + anon_sym_GT, + ACTIONS(4124), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191438,37 +189530,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60561] = 14, - ACTIONS(1635), 1, + [60482] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5123), 1, + ACTIONS(5105), 1, anon_sym_async, - ACTIONS(5127), 1, + ACTIONS(5109), 1, anon_sym_readonly, - STATE(2799), 1, + STATE(2803), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, + ACTIONS(5107), 2, sym_number, sym_private_property_identifier, - ACTIONS(5129), 2, + ACTIONS(5111), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3135), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -191478,7 +189570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191497,15 +189589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60634] = 3, + [60555] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191515,7 +189606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 29, + anon_sym_GT, + ACTIONS(4382), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191545,15 +189637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60685] = 3, + [60606] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191563,7 +189654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 29, + anon_sym_GT, + ACTIONS(4124), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191593,15 +189685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60736] = 3, + [60657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 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_PIPE, @@ -191611,7 +189702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4133), 29, + anon_sym_GT, + ACTIONS(4134), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191641,15 +189733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60787] = 3, + [60708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191659,7 +189750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 29, + anon_sym_GT, + ACTIONS(4138), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191689,30 +189781,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60838] = 9, - ACTIONS(2372), 1, + [60759] = 5, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4412), 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, + [60814] = 9, + ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(4139), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, - ACTIONS(5131), 1, + ACTIONS(5113), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, + ACTIONS(1696), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4142), 2, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4870), 2, + ACTIONS(4859), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1707), 11, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -191720,7 +189861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 22, + anon_sym_GT, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -191743,15 +189885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60901] = 3, + [60877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 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_PIPE, @@ -191761,7 +189902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4133), 29, + anon_sym_GT, + ACTIONS(4134), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191791,15 +189933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60952] = 3, + [60928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191809,7 +189950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 29, + anon_sym_GT, + ACTIONS(4138), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191839,15 +189981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61003] = 3, + [60979] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 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_PIPE, @@ -191857,7 +189998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 29, + anon_sym_GT, + ACTIONS(4164), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191887,15 +190029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61054] = 3, + [61030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 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_PIPE, @@ -191905,7 +190046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 29, + anon_sym_GT, + ACTIONS(4168), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191935,30 +190077,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61105] = 9, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4439), 1, + [61081] = 9, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(5116), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4146), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4442), 2, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4864), 2, + ACTIONS(4850), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4433), 11, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -191966,7 +190107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -191989,19 +190131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61168] = 5, - ACTIONS(4633), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_arguments, + [61144] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 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_PIPE, @@ -192011,12 +190148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 27, + anon_sym_GT, + 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, @@ -192039,30 +190178,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61223] = 9, - ACTIONS(4085), 1, anon_sym_extends, - ACTIONS(4529), 1, + [61195] = 9, + ACTIONS(4106), 1, + anon_sym_extends, + ACTIONS(4510), 1, anon_sym_LBRACK, - ACTIONS(5141), 1, + ACTIONS(5123), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4513), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5137), 2, + ACTIONS(5119), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5139), 2, + ACTIONS(5121), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192070,7 +190209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192093,15 +190233,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61286] = 3, + [61258] = 14, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(5128), 1, + anon_sym_RBRACE, + STATE(4736), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5064), 2, + sym_number, + sym_private_property_identifier, + STATE(4714), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5509), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5126), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 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_PIPE, @@ -192111,7 +190309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 29, + anon_sym_GT, + ACTIONS(4168), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192141,15 +190340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61337] = 3, + [61382] = 4, + ACTIONS(4322), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192159,7 +190359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 29, + anon_sym_GT, + ACTIONS(4290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192188,18 +190389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61388] = 4, - ACTIONS(4286), 1, - anon_sym_extends, + [61435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192209,7 +190406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, + anon_sym_GT, + ACTIONS(4393), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192238,15 +190436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61441] = 3, + anon_sym_extends, + [61486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192256,7 +190454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 29, + anon_sym_GT, + ACTIONS(4188), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192286,15 +190485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61492] = 3, + [61537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4196), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192304,7 +190502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 29, + anon_sym_GT, + ACTIONS(4198), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192334,21 +190533,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61543] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, + [61588] = 9, + ACTIONS(4106), 1, anon_sym_extends, + ACTIONS(4510), 1, + anon_sym_LBRACK, + ACTIONS(5132), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 11, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5092), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5130), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192356,16 +190563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -192385,34 +190587,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61600] = 3, + [61651] = 9, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, + anon_sym_EQ, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3392), 13, + ACTIONS(3622), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4408), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3492), 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(3394), 29, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -192432,26 +190641,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [61714] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, anon_sym_extends, - [61651] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(4202), 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(4224), 29, + anon_sym_GT, + ACTIONS(4204), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192480,16 +190692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61702] = 3, + [61771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(3427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192499,7 +190709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 29, + anon_sym_GT, + ACTIONS(3429), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192529,88 +190740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61753] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(3947), 1, - anon_sym_LBRACK, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5146), 1, - anon_sym_RBRACE, - STATE(4528), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5084), 2, - sym_number, - sym_private_property_identifier, - STATE(5134), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5594), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5595), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5144), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61826] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [61822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 11, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 28, + anon_sym_GT, + ACTIONS(4218), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192639,105 +190787,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61883] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4772), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [61990] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, anon_sym_extends, + [61873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 11, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4212), 28, + anon_sym_GT, + ACTIONS(4222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192766,22 +190835,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62047] = 6, - ACTIONS(4238), 1, anon_sym_extends, - ACTIONS(5033), 1, - anon_sym_LBRACK, + [61924] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4230), 11, + ACTIONS(4220), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192789,7 +190857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 27, + anon_sym_GT, + ACTIONS(4222), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192798,6 +190867,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, @@ -192817,27 +190887,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62104] = 4, - ACTIONS(5148), 1, - anon_sym_extends, + [61981] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4773), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [62088] = 6, + ACTIONS(4994), 1, anon_sym_AMP, + ACTIONS(4996), 1, anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4292), 11, + 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(4250), 28, + anon_sym_GT, + ACTIONS(4294), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192866,27 +191014,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62157] = 4, - ACTIONS(5033), 1, + [62145] = 6, + ACTIONS(4172), 1, + anon_sym_extends, + ACTIONS(5028), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4254), 13, + ACTIONS(4170), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4450), 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(4256), 28, + anon_sym_GT, + ACTIONS(4452), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192914,92 +191065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62202] = 4, + ACTIONS(5135), 1, anon_sym_extends, - [62210] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [62317] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 13, + ACTIONS(4190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193009,7 +191084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 29, + anon_sym_GT, + ACTIONS(4192), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193038,16 +191114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62368] = 3, + [62255] = 4, + ACTIONS(5028), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2386), 13, + ACTIONS(4212), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193057,7 +191133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2384), 29, + anon_sym_GT, + ACTIONS(4214), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193066,7 +191143,6 @@ 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, @@ -193087,22 +191163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62419] = 7, - ACTIONS(3571), 1, + [62308] = 7, + ACTIONS(3578), 1, anon_sym_EQ, - ACTIONS(4379), 1, + ACTIONS(4408), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193113,7 +191189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, + ACTIONS(3496), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193139,15 +191215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62478] = 3, + [62367] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193157,7 +191232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 29, + anon_sym_GT, + ACTIONS(4106), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193187,15 +191263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62529] = 3, + [62418] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193205,7 +191280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 29, + anon_sym_GT, + ACTIONS(4120), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193235,15 +191311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62580] = 3, + [62469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(2371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193253,7 +191328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 29, + anon_sym_GT, + ACTIONS(2369), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193283,15 +191359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62631] = 3, + [62520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193301,7 +191376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 29, + anon_sym_GT, + ACTIONS(4236), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193331,15 +191407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62682] = 3, + [62571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193349,7 +191424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 29, + anon_sym_GT, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193379,15 +191455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62733] = 3, + [62622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193397,7 +191472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 29, + anon_sym_GT, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193427,15 +191503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62784] = 3, + [62673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193445,7 +191520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 29, + anon_sym_GT, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193475,15 +191551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62835] = 3, + [62724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193493,7 +191568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 29, + anon_sym_GT, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193523,15 +191599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62886] = 3, + [62775] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193541,7 +191616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 29, + anon_sym_GT, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193571,15 +191647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62937] = 3, + [62826] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193589,7 +191664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 29, + anon_sym_GT, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193619,15 +191695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62988] = 3, + [62877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193637,7 +191712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4264), 29, + anon_sym_GT, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193667,15 +191743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63039] = 3, + [62928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193685,7 +191760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4268), 29, + anon_sym_GT, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193715,15 +191791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63090] = 3, + [62979] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193733,7 +191808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4272), 29, + anon_sym_GT, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193763,15 +191839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63141] = 3, + [63030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193781,7 +191856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4310), 29, + anon_sym_GT, + ACTIONS(4258), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193811,15 +191887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63192] = 3, + [63081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4323), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193829,7 +191904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4325), 29, + anon_sym_GT, + ACTIONS(4262), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193859,15 +191935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63243] = 3, + [63132] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2390), 13, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193877,7 +191952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 29, + anon_sym_GT, + ACTIONS(4266), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193907,15 +191983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63294] = 3, + [63183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 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_PIPE, @@ -193925,7 +192000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4276), 29, + anon_sym_GT, + ACTIONS(4176), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193955,17 +192031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63345] = 4, - ACTIONS(4623), 1, + [63234] = 4, + ACTIONS(4604), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193975,7 +192050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 28, + anon_sym_GT, + ACTIONS(4606), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194004,37 +192080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63398] = 14, - ACTIONS(1635), 1, + [63287] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(5137), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(5139), 1, anon_sym_async, - ACTIONS(5156), 1, + ACTIONS(5143), 1, anon_sym_readonly, - STATE(2809), 1, + STATE(2797), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5154), 2, + ACTIONS(5141), 2, sym_number, sym_private_property_identifier, - ACTIONS(5158), 2, + ACTIONS(5145), 2, anon_sym_get, anon_sym_set, - STATE(3056), 3, + STATE(3071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -194044,7 +192120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194063,33 +192139,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63471] = 12, - ACTIONS(1635), 1, + [63360] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(5137), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(5139), 1, anon_sym_async, - ACTIONS(5162), 1, + ACTIONS(5149), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, + ACTIONS(5145), 2, anon_sym_get, anon_sym_set, - ACTIONS(5160), 2, + ACTIONS(5147), 2, sym_number, sym_private_property_identifier, - STATE(3086), 3, + STATE(3083), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -194099,7 +192175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194120,15 +192196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63540] = 3, + [63429] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 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_PIPE, @@ -194138,7 +192213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 29, + anon_sym_GT, + ACTIONS(4180), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194168,34 +192244,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63591] = 12, - ACTIONS(2338), 1, + [63480] = 12, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4074), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4681), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -194203,7 +192279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194225,15 +192301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63660] = 3, + [63549] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(2363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194243,7 +192318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 29, + anon_sym_GT, + ACTIONS(2361), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194273,36 +192349,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63711] = 13, - ACTIONS(1635), 1, + [63600] = 13, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4074), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -194310,7 +192386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194331,37 +192407,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63782] = 14, - ACTIONS(1635), 1, + [63671] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(5151), 1, anon_sym_STAR, - ACTIONS(5166), 1, + ACTIONS(5153), 1, anon_sym_async, - ACTIONS(5170), 1, + ACTIONS(5157), 1, anon_sym_readonly, - STATE(2815), 1, + STATE(2809), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5168), 2, + ACTIONS(5155), 2, sym_number, sym_private_property_identifier, - ACTIONS(5172), 2, + ACTIONS(5159), 2, anon_sym_get, anon_sym_set, - STATE(3133), 3, + STATE(3097), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -194371,7 +192447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194390,15 +192466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63855] = 3, + [63744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194408,7 +192483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 29, + anon_sym_GT, + ACTIONS(4278), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194438,15 +192514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63906] = 3, + [63795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194456,7 +192531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 29, + anon_sym_GT, + ACTIONS(4282), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194486,17 +192562,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63957] = 4, - ACTIONS(1709), 1, + [63846] = 4, + ACTIONS(1696), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194506,7 +192581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 28, + anon_sym_GT, + ACTIONS(1698), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194535,52 +192611,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64010] = 19, - ACTIONS(239), 1, + [63899] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4824), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194599,15 +192675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [64093] = 3, + [63982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194617,7 +192692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 29, + anon_sym_GT, + ACTIONS(4282), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194647,15 +192723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64144] = 3, + [64033] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194665,7 +192740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 29, + anon_sym_GT, + ACTIONS(4282), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194695,15 +192771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64195] = 3, + [64084] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194713,7 +192788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 29, + anon_sym_GT, + ACTIONS(4286), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194743,15 +192819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64246] = 3, + [64135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194761,7 +192836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 29, + anon_sym_GT, + ACTIONS(4286), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194791,25 +192867,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64297] = 8, - ACTIONS(4031), 1, + [64186] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194818,7 +192893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 25, + anon_sym_GT, + ACTIONS(4706), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -194844,433 +192920,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [64358] = 31, - ACTIONS(4031), 1, + [64247] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 4, + ACTIONS(4468), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64465] = 31, - ACTIONS(4031), 1, + [64354] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 4, + ACTIONS(4744), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64572] = 31, - ACTIONS(4031), 1, + [64461] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 4, + ACTIONS(4756), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64679] = 31, - ACTIONS(4031), 1, + [64568] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 4, + ACTIONS(4758), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64786] = 31, - ACTIONS(4031), 1, + [64675] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 4, + ACTIONS(4504), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64893] = 18, - ACTIONS(4031), 1, + [64782] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195287,36 +193363,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [64974] = 13, - ACTIONS(4031), 1, + [64863] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5210), 1, + ACTIONS(5197), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -195325,7 +193400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4760), 19, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195345,66 +193421,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65045] = 25, - ACTIONS(4031), 1, + [64934] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195415,68 +193491,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65140] = 26, - ACTIONS(4031), 1, + [65029] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195486,49 +193562,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65237] = 16, - ACTIONS(4031), 1, + [65126] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5210), 1, + ACTIONS(5197), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195547,62 +193623,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65314] = 22, - ACTIONS(4031), 1, + [65203] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4762), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195614,63 +193690,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65403] = 23, - ACTIONS(4031), 1, + [65292] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195682,65 +193758,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65494] = 24, - ACTIONS(4031), 1, + [65383] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195751,40 +193827,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65587] = 15, - ACTIONS(4031), 1, + [65476] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5210), 1, + ACTIONS(5197), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -195792,7 +193867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195811,41 +193887,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65662] = 16, - ACTIONS(4031), 1, + [65551] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5210), 1, + ACTIONS(5197), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -195854,7 +193929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -195872,58 +193948,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_implements, - [65739] = 20, - ACTIONS(4031), 1, + [65628] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 13, + ACTIONS(4760), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195937,70 +194013,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65824] = 27, - ACTIONS(4031), 1, + [65713] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -196009,642 +194085,641 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65923] = 31, - ACTIONS(4031), 1, + [65812] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 4, + ACTIONS(4522), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66030] = 31, - ACTIONS(4031), 1, + [65919] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 4, + ACTIONS(4767), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66137] = 31, - ACTIONS(4031), 1, + [66026] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 4, + ACTIONS(4546), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66244] = 31, - ACTIONS(4031), 1, + [66133] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 4, + ACTIONS(4554), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66351] = 31, - ACTIONS(4031), 1, + [66240] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 4, + ACTIONS(4558), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66458] = 31, - ACTIONS(4031), 1, + [66347] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 4, + ACTIONS(4769), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66565] = 31, - ACTIONS(4031), 1, + [66454] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 4, + ACTIONS(4771), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66672] = 31, - ACTIONS(4031), 1, + [66561] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 4, + ACTIONS(4773), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66779] = 12, - ACTIONS(4031), 1, + [66668] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5213), 1, + ACTIONS(5200), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -196653,7 +194728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 20, + anon_sym_GT, + ACTIONS(4780), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -196674,39 +194750,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [66848] = 15, - ACTIONS(4031), 1, + [66737] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5216), 1, + ACTIONS(5203), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4634), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -196715,7 +194790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4800), 18, + anon_sym_GT, + ACTIONS(4638), 18, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -196734,107 +194810,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_implements, - [66923] = 31, - ACTIONS(4031), 1, + [66812] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 4, + ACTIONS(4792), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [67030] = 11, - ACTIONS(4031), 1, + [66919] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5219), 1, + ACTIONS(5206), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -196843,7 +194918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 22, + anon_sym_GT, + ACTIONS(4787), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -196866,18 +194942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [67097] = 4, - ACTIONS(5007), 1, - anon_sym_AMP, + [66986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 12, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -196885,7 +194959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4159), 29, + anon_sym_GT, + ACTIONS(4302), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196915,207 +194990,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67150] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [67037] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5224), 1, - anon_sym_RBRACK, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4566), 1, - aux_sym_array_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4505), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4507), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4074), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4690), 2, + sym_number, + sym_private_property_identifier, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67101] = 8, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4126), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67310] = 3, + ACTIONS(4859), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 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, - [67360] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5226), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5228), 3, + ACTIONS(2373), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1694), 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(3503), 23, + anon_sym_GT, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197135,83 +195096,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67414] = 3, + [67161] = 8, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4150), 1, + anon_sym_LBRACK, + ACTIONS(4850), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4156), 3, anon_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, - [67464] = 5, - ACTIONS(1751), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1743), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1747), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4144), 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(1749), 25, + anon_sym_GT, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197231,45 +195148,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67518] = 11, - ACTIONS(1635), 1, + [67221] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5232), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5211), 2, sym_number, sym_private_property_identifier, - ACTIONS(5236), 2, + ACTIONS(5213), 2, anon_sym_get, anon_sym_set, - STATE(3107), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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(3705), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -197286,34 +195202,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67584] = 3, + [67285] = 7, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4126), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4535), 13, + ACTIONS(2373), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4129), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1694), 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(4537), 28, + ACTIONS(1698), 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197333,34 +195253,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67634] = 3, + [67343] = 7, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4150), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4539), 13, + ACTIONS(4156), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4153), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4144), 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(4541), 28, + ACTIONS(4148), 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197380,39 +195304,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67684] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5238), 1, - anon_sym_STAR, + [67401] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5242), 2, - anon_sym_get, - anon_sym_set, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -197422,6 +195343,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, @@ -197434,49 +195357,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67748] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5244), 1, - anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, + [67463] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 2, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_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(3124), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67525] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, + ACTIONS(3925), 1, anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -197489,134 +195463,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67814] = 6, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3644), 1, + [67587] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(1975), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67649] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67870] = 3, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5215), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 28, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67759] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67821] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, + ACTIONS(3811), 1, anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67883] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5219), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 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, - [67920] = 6, - ACTIONS(4463), 1, - anon_sym_LBRACK, + [67993] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, + ACTIONS(5221), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5223), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4459), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 25, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197636,69 +195825,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67976] = 3, + [68047] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5227), 1, + anon_sym_RBRACK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(4879), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4543), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4545), 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(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 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, - [68026] = 5, + [68157] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5013), 2, + ACTIONS(5229), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5015), 3, + ACTIONS(5231), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197708,7 +195926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -197732,20 +195951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68080] = 5, - ACTIONS(1775), 1, - sym__automatic_semicolon, + [68211] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1771), 13, + ACTIONS(5229), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197755,12 +195975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 25, + anon_sym_GT, + ACTIONS(3496), 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, @@ -197781,15 +196000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68134] = 3, + [68265] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(5229), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197799,15 +196024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -197828,15 +196049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68184] = 3, + [68319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197846,7 +196066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 28, + anon_sym_GT, + ACTIONS(4290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197875,34 +196096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68234] = 5, - ACTIONS(1789), 1, - sym__automatic_semicolon, + [68369] = 8, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(5233), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1785), 13, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 25, + anon_sym_GT, + ACTIONS(4706), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -197924,133 +196148,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68288] = 5, - ACTIONS(1799), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1791), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1795), 13, - anon_sym_STAR, + [68429] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1797), 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, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68342] = 3, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4547), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4549), 28, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4468), 3, sym__automatic_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, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68535] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4744), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [68392] = 7, - ACTIONS(5252), 1, - anon_sym_LPAREN, - ACTIONS(5255), 1, - anon_sym_COLON, - ACTIONS(5257), 1, - anon_sym_LT, - ACTIONS(5260), 1, - anon_sym_QMARK, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68641] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 12, + ACTIONS(4536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4495), 25, + anon_sym_GT, + ACTIONS(4538), 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, @@ -198071,173 +196345,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68450] = 33, - ACTIONS(4031), 1, + [68691] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4566), 1, - aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68560] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4551), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4553), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5269), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + [68797] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4756), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [68610] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68903] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(5273), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5275), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(5277), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3057), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 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(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -198254,127 +196550,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68684] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5264), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68794] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, + [68969] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5066), 1, anon_sym_STAR, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5279), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(5281), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 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(2362), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -198391,1324 +196604,1276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68870] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1815), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1817), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [69033] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68920] = 6, - ACTIONS(4379), 1, - anon_sym_extends, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4627), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3499), 11, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 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, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4758), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 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, - [68976] = 33, - ACTIONS(4031), 1, + [69139] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - ACTIONS(5266), 1, - anon_sym_RPAREN, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4504), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69086] = 33, - ACTIONS(4031), 1, + [69245] = 18, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5268), 1, - anon_sym_RPAREN, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69196] = 6, - ACTIONS(4173), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4463), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4459), 11, - anon_sym_STAR, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 24, + anon_sym_GT, + ACTIONS(4760), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - 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, - [69252] = 33, - ACTIONS(4031), 1, + [69325] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5270), 1, + ACTIONS(5283), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4647), 1, + aux_sym_array_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69362] = 33, - ACTIONS(4031), 1, + [69435] = 13, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(5285), 1, anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5272), 1, - anon_sym_RPAREN, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4762), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(4760), 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, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69472] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [69546] = 33, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69505] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5274), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5288), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69656] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, + [69615] = 25, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5233), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [69732] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1986), 6, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 9, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69709] = 26, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5233), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69794] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 8, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69805] = 16, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5285), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69856] = 4, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 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(4181), 25, + anon_sym_GT, + ACTIONS(4760), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, + [69881] = 22, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 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, - [69908] = 4, + [69969] = 23, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4179), 13, - anon_sym_STAR, + ACTIONS(4762), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 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, + [70059] = 24, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, anon_sym_GT_GT, + ACTIONS(5247), 1, anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4762), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 25, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 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, + [70151] = 15, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69960] = 21, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(2026), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [70225] = 16, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5280), 1, - anon_sym_RBRACE, - ACTIONS(5282), 1, - anon_sym_async, - ACTIONS(5286), 1, - anon_sym_static, - ACTIONS(5288), 1, - anon_sym_readonly, - ACTIONS(5294), 1, - anon_sym_override, - STATE(2781), 1, - sym_accessibility_modifier, - STATE(2816), 1, - sym_override_modifier, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5284), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5290), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5292), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3528), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4901), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5276), 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, - [70046] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70108] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5285), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70170] = 8, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4139), 1, - anon_sym_LBRACK, - ACTIONS(4870), 1, - anon_sym_COLON, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2372), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1707), 11, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 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(1711), 22, + anon_sym_GT, + ACTIONS(4760), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [70230] = 8, - ACTIONS(4435), 1, - anon_sym_EQ, - ACTIONS(4439), 1, + [70301] = 20, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4864), 1, - anon_sym_COLON, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4137), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4433), 11, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + ACTIONS(4760), 12, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70290] = 3, + [70385] = 27, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4511), 28, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70483] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70340] = 7, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4139), 1, - anon_sym_LBRACK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4142), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1707), 10, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 24, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4522), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70589] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70398] = 7, - ACTIONS(4435), 1, - anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_LBRACK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4442), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4433), 10, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 24, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4767), 3, 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_BQUOTE, + ACTIONS(5259), 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, - [70456] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [70695] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_STAR, + ACTIONS(5068), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5070), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(5074), 2, + anon_sym_get, + anon_sym_set, + STATE(3064), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(1984), 23, + ACTIONS(3700), 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, @@ -199721,402 +197886,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70518] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [70761] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4546), 3, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70867] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70580] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3840), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1986), 6, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4554), 3, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70642] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3840), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70973] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70704] = 3, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4515), 28, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4558), 3, sym__automatic_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, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71079] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70754] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3930), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70816] = 9, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3930), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4769), 3, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70878] = 31, - ACTIONS(4633), 1, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71185] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4771), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5026), 3, + [71291] = 5, + ACTIONS(1766), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [70984] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 13, + ACTIONS(1758), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200126,15 +198283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4495), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1764), 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, @@ -200155,15 +198310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71034] = 3, + [71345] = 5, + ACTIONS(1798), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4473), 13, + ACTIONS(1790), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200173,15 +198332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4475), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1796), 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, @@ -200202,15 +198359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71084] = 3, + [71399] = 5, + ACTIONS(1778), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 13, + ACTIONS(1770), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200220,15 +198381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1776), 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, @@ -200249,278 +198408,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71134] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5296), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5298), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5300), 2, - anon_sym_get, - anon_sym_set, - STATE(3817), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(2362), 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, - [71198] = 33, - ACTIONS(4031), 1, + [71453] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5217), 1, anon_sym_COMMA, - ACTIONS(5304), 1, - anon_sym_SEMI, - STATE(1642), 1, + ACTIONS(5290), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3770), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71308] = 4, - ACTIONS(5306), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4917), 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(4919), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [71563] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [71360] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, - STATE(4994), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4773), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71470] = 5, + [71669] = 5, + ACTIONS(1788), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5310), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5312), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(1780), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200530,10 +198582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(1786), 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, @@ -200554,22 +198609,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71524] = 5, + [71723] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5314), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5316), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [71797] = 5, + ACTIONS(1808), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1800), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1804), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200579,10 +198690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(1806), 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, @@ -200603,22 +198717,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71578] = 5, + [71851] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5314), 2, + ACTIONS(5292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5294), 2, + anon_sym_get, + anon_sym_set, + STATE(3853), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5316), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, - anon_sym_STAR, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [71915] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [71991] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1842), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1846), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200628,7 +198854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(1848), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -200652,39 +198879,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71632] = 8, - ACTIONS(4633), 1, + [72043] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, anon_sym_LT, - STATE(2027), 1, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5296), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72153] = 8, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4608), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4408), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, + 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(4695), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200704,36 +199008,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71692] = 5, + [72213] = 6, + ACTIONS(4510), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5314), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5316), 3, + ACTIONS(4106), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + anon_sym_extends, + ACTIONS(4513), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(3503), 23, + ACTIONS(3496), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -200753,240 +199058,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71746] = 31, - ACTIONS(4633), 1, + [72269] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5298), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5300), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5302), 2, + anon_sym_get, + anon_sym_set, + STATE(3780), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [72333] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(5209), 1, + anon_sym_STAR, + ACTIONS(5304), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5306), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5308), 2, + anon_sym_get, + anon_sym_set, + STATE(3063), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3700), 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, + [72399] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5310), 1, + anon_sym_STAR, + ACTIONS(5312), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5314), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5316), 2, + anon_sym_get, + anon_sym_set, + STATE(3105), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [72465] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1790), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1794), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71852] = 31, - ACTIONS(4633), 1, + anon_sym_GT, + ACTIONS(1796), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72517] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1800), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1804), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4743), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71958] = 31, - ACTIONS(4633), 1, + anon_sym_GT, + ACTIONS(1806), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4745), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72064] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72569] = 5, + ACTIONS(5318), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4555), 13, + ACTIONS(1810), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1814), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200996,15 +199342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4557), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1816), 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, @@ -201025,90 +199367,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72114] = 31, - ACTIONS(4031), 1, + [72623] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(2605), 1, + sym_type_arguments, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5354), 3, + ACTIONS(5320), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [72220] = 3, + anon_sym_implements, + [72729] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(1706), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1710), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -201118,15 +199465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1712), 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, @@ -201147,1641 +199490,1594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72270] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [72781] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1758), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1762), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4747), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72376] = 31, - ACTIONS(4633), 1, + anon_sym_GT, + ACTIONS(1764), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72833] = 5, + ACTIONS(5322), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1770), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1774), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4523), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72482] = 18, - ACTIONS(4633), 1, + anon_sym_GT, + ACTIONS(1776), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5340), 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(5342), 1, anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 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, + [72887] = 5, + ACTIONS(5324), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1780), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1784), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1786), 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, - [72562] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, + [72941] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5326), 1, + anon_sym_RBRACE, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4676), 1, - aux_sym_array_repeat1, - STATE(4822), 1, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72672] = 13, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [73051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4498), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + 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, - [72742] = 33, - ACTIONS(4031), 1, + [73101] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1820), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1824), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1826), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5361), 1, - anon_sym_RBRACK, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, + [73153] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(1830), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1834), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72852] = 25, - ACTIONS(4633), 1, + anon_sym_GT, + ACTIONS(1836), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 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, + [73205] = 5, + ACTIONS(5328), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1856), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1860), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 9, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1862), 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, - [72946] = 26, - ACTIONS(4633), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 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, + [73259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4478), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 8, + anon_sym_GT, + ACTIONS(4480), 28, 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, - [73042] = 16, - ACTIONS(4633), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(5340), 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(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 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, + [73309] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1866), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1870), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 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(4749), 17, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1872), 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, - [73118] = 22, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [73361] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4502), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 10, + anon_sym_GT, + ACTIONS(4504), 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, - [73206] = 23, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, + [73411] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + ACTIONS(5137), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(5330), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5332), 2, + anon_sym_get, + anon_sym_set, + STATE(3822), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [73475] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4540), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 10, + anon_sym_GT, + ACTIONS(4542), 28, 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, - [73296] = 24, - ACTIONS(4633), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 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, + [73525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4544), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 9, + anon_sym_GT, + ACTIONS(4546), 28, 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, - [73388] = 15, - ACTIONS(4633), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(5340), 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(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 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, + [73575] = 5, + ACTIONS(1818), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1810), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1814), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4751), 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(4749), 17, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1816), 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, - [73462] = 16, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [73629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4548), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4550), 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, - [73538] = 20, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_satisfies, + [73679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4552), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4751), 5, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 12, + anon_sym_GT, + ACTIONS(4554), 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, - [73622] = 27, - ACTIONS(4633), 1, + [73729] = 7, + ACTIONS(5334), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5318), 1, + ACTIONS(5337), 1, + anon_sym_COLON, + ACTIONS(5339), 1, anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(3492), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 7, + anon_sym_GT, + ACTIONS(3496), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73720] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73787] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5344), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + sym_number, + sym_private_property_identifier, ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4541), 3, + anon_sym_get, + anon_sym_set, + STATE(3845), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73826] = 31, - ACTIONS(4633), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [73851] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4556), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4756), 3, + anon_sym_GT, + ACTIONS(4558), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73932] = 31, - ACTIONS(4633), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73901] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5350), 1, + anon_sym_STAR, + ACTIONS(5352), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5354), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5356), 2, + anon_sym_get, + anon_sym_set, + STATE(3152), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [73967] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4560), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4565), 3, + anon_sym_GT, + ACTIONS(4562), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74038] = 31, - ACTIONS(4633), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4564), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4573), 3, + anon_sym_GT, + ACTIONS(4566), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 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, - [74144] = 31, - ACTIONS(4633), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74067] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(2027), 1, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4698), 1, + aux_sym_array_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4577), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74250] = 31, - ACTIONS(4633), 1, + [74177] = 4, + ACTIONS(5360), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4911), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4913), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4568), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(5330), 2, + ACTIONS(4570), 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, - ACTIONS(5338), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74279] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4462), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, + anon_sym_GT, + 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_BQUOTE, - ACTIONS(5344), 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, - [74356] = 31, - ACTIONS(4633), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74329] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(2027), 1, + ACTIONS(5362), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5062), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4760), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74439] = 7, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4608), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3492), 11, + 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, + anon_sym_GT, + ACTIONS(3496), 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, - [74462] = 10, - ACTIONS(2338), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74497] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [74571] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(5103), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5364), 2, sym_number, sym_private_property_identifier, - ACTIONS(5365), 2, + ACTIONS(5366), 2, anon_sym_get, anon_sym_set, - STATE(3792), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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, - ACTIONS(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -202803,41 +201099,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74526] = 11, - ACTIONS(1635), 1, + [74635] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(5105), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5107), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(5111), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3135), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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, - ACTIONS(3705), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -202858,172 +201154,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74592] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, + [74701] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(5367), 1, - anon_sym_RBRACK, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74702] = 31, - ACTIONS(4633), 1, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [74775] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [74851] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(2027), 1, + ACTIONS(5368), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4554), 1, + aux_sym_array_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4772), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74808] = 5, - ACTIONS(1741), 1, - sym__automatic_semicolon, + [74961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1737), 13, + ACTIONS(4506), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203033,12 +201367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 25, + anon_sym_GT, + ACTIONS(4508), 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, @@ -203059,20 +201397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74862] = 5, - ACTIONS(1841), 1, - sym__automatic_semicolon, + [75011] = 4, + ACTIONS(5360), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1837), 13, + ACTIONS(4911), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_of, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203082,9 +201418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 25, + anon_sym_GT, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4913), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -203103,104 +201442,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [74916] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5238), 1, - anon_sym_STAR, - ACTIONS(5369), 1, - anon_sym_async, + [75063] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5371), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5373), 2, - anon_sym_get, - anon_sym_set, - STATE(3066), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3496), 28, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, 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(3705), 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, - [74982] = 10, - ACTIONS(2338), 1, + 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, + [75113] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(4990), 1, anon_sym_STAR, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5377), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3858), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203217,76 +201552,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75046] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [75189] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(5379), 1, - anon_sym_STAR, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5383), 2, - anon_sym_get, - anon_sym_set, - STATE(3760), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4852), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + [75295] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [75110] = 7, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(4379), 1, - anon_sym_extends, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_RBRACK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4630), 3, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75405] = 6, + ACTIONS(4608), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203297,12 +201728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + ACTIONS(3496), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203322,15 +201754,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75168] = 3, + [75461] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5372), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75571] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4288), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203340,7 +201848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 28, + anon_sym_GT, + ACTIONS(4290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203369,38 +201878,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75218] = 5, - ACTIONS(1859), 1, - sym__automatic_semicolon, + [75621] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1855), 13, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3492), 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(1857), 25, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -203418,69 +201929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75272] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5385), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5387), 2, - anon_sym_get, - anon_sym_set, - STATE(3765), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(2362), 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, - [75336] = 3, + [75679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4469), 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_PIPE, @@ -203490,7 +201946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4471), 28, + anon_sym_GT, + ACTIONS(4484), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203519,534 +201976,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75386] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4649), 1, - anon_sym_STAR, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5389), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5391), 2, - anon_sym_get, - anon_sym_set, - STATE(3872), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, + [75729] = 33, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [75450] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5393), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5395), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5397), 2, - anon_sym_get, - anon_sym_set, - STATE(3859), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(2362), 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, - [75514] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5399), 1, - anon_sym_STAR, - ACTIONS(5401), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5403), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5405), 2, - anon_sym_get, - anon_sym_set, - STATE(3158), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [75580] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_STAR, - ACTIONS(5037), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5039), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5043), 2, - anon_sym_get, - anon_sym_set, - STATE(3108), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [75646] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - anon_sym_STAR, - ACTIONS(5409), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5411), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5413), 2, - anon_sym_get, - anon_sym_set, - STATE(3047), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [75712] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5415), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5417), 2, - anon_sym_get, - anon_sym_set, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(2362), 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, - [75776] = 5, - ACTIONS(1873), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1865), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1869), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1871), 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, - [75830] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5419), 1, - anon_sym_SEMI, - STATE(1642), 1, + ACTIONS(5374), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4602), 1, + aux_sym_array_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75940] = 3, + [75839] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4559), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4184), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4561), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4182), 4, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75990] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4563), 13, + anon_sym_extends, + ACTIONS(3492), 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(4565), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -204066,83 +202102,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76040] = 5, + [75893] = 7, + ACTIONS(4376), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5137), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5139), 3, - anon_sym_COMMA, + ACTIONS(4378), 2, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_extends, + ACTIONS(4617), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4614), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76094] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4567), 13, + anon_sym_RBRACK, + ACTIONS(4458), 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(4569), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4460), 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, @@ -204162,15 +202153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76144] = 3, + [75951] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4571), 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_PIPE, @@ -204180,7 +202170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4573), 28, + anon_sym_GT, + ACTIONS(4488), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204209,81 +202200,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76194] = 3, + [76001] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5000), 1, + anon_sym_STAR, 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_AMP, - 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, + ACTIONS(5376), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5378), 2, + anon_sym_get, + anon_sym_set, + STATE(3781), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [76065] = 8, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_COLON, + ACTIONS(4608), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76244] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4408), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 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(4581), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -204303,113 +202306,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76294] = 33, - ACTIONS(1976), 1, + [76125] = 33, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5421), 1, + ACTIONS(5380), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, - sym_optional_chain, - STATE(5034), 1, + STATE(4644), 1, aux_sym_array_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76235] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5382), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4656), 1, + aux_sym_array_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76404] = 3, + [76345] = 12, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5384), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4583), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4585), 28, + anon_sym_GT, + ACTIONS(4780), 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, @@ -204423,42 +202514,53 @@ 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, - [76454] = 5, - ACTIONS(1761), 1, - sym__automatic_semicolon, + [76413] = 15, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5387), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1757), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 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(1759), 25, + anon_sym_GT, + ACTIONS(4638), 17, + 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, @@ -204472,42 +202574,120 @@ 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, + [76487] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, anon_sym_satisfies, - [76508] = 5, - ACTIONS(1831), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4792), 3, sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76593] = 11, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1827), 13, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 25, + anon_sym_GT, + ACTIONS(4787), 21, + 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, @@ -204525,15 +202705,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76562] = 3, + [76659] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(5119), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5121), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204543,15 +202729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4589), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -204572,29 +202754,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76612] = 10, - ACTIONS(2338), 1, + [76713] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5000), 1, anon_sym_STAR, + ACTIONS(5002), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5004), 2, sym_number, sym_private_property_identifier, - ACTIONS(5425), 2, + ACTIONS(5008), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(3147), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204604,12 +202788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -204626,170 +202809,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76676] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5123), 1, - anon_sym_async, + [76779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5129), 2, - anon_sym_get, - anon_sym_set, - STATE(3110), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(4474), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4476), 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(3705), 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, - [76742] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5427), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4557), 1, - aux_sym_array_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76852] = 7, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(4627), 1, - anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76829] = 5, + ACTIONS(1828), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(1820), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1824), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1826), 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, @@ -204809,40 +202905,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76910] = 7, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, + [76883] = 5, + ACTIONS(1838), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(1830), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(1836), 25, 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, @@ -204860,192 +202954,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76968] = 33, - ACTIONS(1976), 1, + [76937] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5393), 1, + anon_sym_STAR, + ACTIONS(5395), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5397), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5399), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4031), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [77003] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4744), 1, + anon_sym_COMMA, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5429), 1, - anon_sym_RPAREN, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4607), 1, - aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5041), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77078] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4169), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3499), 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(3503), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [77111] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77132] = 7, - ACTIONS(4171), 1, - anon_sym_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5401), 1, + anon_sym_RBRACK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4463), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4459), 11, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 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(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 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, - [77190] = 3, + [77221] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205055,7 +203179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, + anon_sym_GT, + ACTIONS(4574), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205084,38 +203209,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77240] = 7, - ACTIONS(4377), 1, - anon_sym_QMARK, + [77271] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4627), 3, + ACTIONS(5405), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5407), 2, + anon_sym_get, + anon_sym_set, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 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, + [77335] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3499), 11, + ACTIONS(5271), 1, + anon_sym_STAR, + ACTIONS(5273), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5277), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5409), 2, + sym_number, + sym_private_property_identifier, + STATE(3060), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [77401] = 5, + ACTIONS(1850), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1842), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(1848), 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, @@ -205135,105 +203367,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77298] = 33, - ACTIONS(1976), 1, + [77455] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4516), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4518), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4031), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5431), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4640), 1, - aux_sym_array_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77408] = 8, - ACTIONS(3533), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77505] = 7, + ACTIONS(3582), 1, anon_sym_EQ, - ACTIONS(3623), 1, - anon_sym_COLON, - ACTIONS(4627), 1, + ACTIONS(4608), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4379), 3, + ACTIONS(4408), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -205241,10 +203440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + ACTIONS(3496), 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, @@ -205264,124 +203465,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77468] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [77563] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5433), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4651), 1, - aux_sym_array_repeat1, - STATE(4822), 1, - sym_optional_chain, + ACTIONS(5310), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77578] = 12, - ACTIONS(4633), 1, + ACTIONS(5411), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5413), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5435), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [77627] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 19, + anon_sym_GT, + ACTIONS(4578), 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, @@ -205395,53 +203562,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77646] = 15, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [77677] = 5, + ACTIONS(1864), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(1856), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1860), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4800), 17, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1862), 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, @@ -205455,120 +203611,89 @@ 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, - [77720] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [77731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4580), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4805), 3, + anon_sym_GT, + ACTIONS(4582), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77826] = 11, - ACTIONS(4633), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 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, + [77781] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(5415), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5417), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 21, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -205586,20 +203711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77892] = 5, - ACTIONS(1883), 1, - sym__automatic_semicolon, + [77835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1879), 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_PIPE, @@ -205609,12 +203728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 25, + anon_sym_GT, + 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, @@ -205635,39 +203758,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77946] = 10, - ACTIONS(2338), 1, + [77885] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(5151), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - ACTIONS(5446), 2, + ACTIONS(5421), 2, anon_sym_get, anon_sym_set, - STATE(3898), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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, - ACTIONS(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205689,92 +203812,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78010] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [77949] = 9, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_COLON, + ACTIONS(4408), 1, + anon_sym_extends, + ACTIONS(4608), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4611), 2, anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5423), 2, anon_sym_COMMA, - ACTIONS(5448), 1, anon_sym_RBRACK, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, + ACTIONS(3492), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + anon_sym_GT, + ACTIONS(3496), 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, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78120] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4605), 13, + ACTIONS(1860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205784,7 +203882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4607), 28, + anon_sym_GT, + ACTIONS(1862), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205813,140 +203912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78170] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [78061] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [78244] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [78320] = 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, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205956,10 +203929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 23, + anon_sym_GT, + ACTIONS(4456), 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, @@ -205980,39 +203959,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78372] = 8, - ACTIONS(3543), 1, + [78111] = 4, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(4377), 1, - anon_sym_QMARK, - ACTIONS(4627), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4379), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3496), 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, @@ -206032,94 +204007,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78432] = 6, - ACTIONS(4529), 1, + [78163] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 2, + ACTIONS(5427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5429), 2, + anon_sym_get, + anon_sym_set, + STATE(3804), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 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(3503), 25, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [78227] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5431), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 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, - [78488] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, + [78337] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5393), 1, anon_sym_STAR, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5433), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(5435), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 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(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -206141,34 +204192,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78562] = 3, + [78401] = 6, + ACTIONS(4614), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4643), 13, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4617), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4458), 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(4645), 28, - sym__automatic_semicolon, + ACTIONS(4460), 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_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206188,29 +204242,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78612] = 10, - ACTIONS(2338), 1, + [78457] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5437), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78567] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5439), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78677] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(5350), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(5441), 2, sym_number, sym_private_property_identifier, - ACTIONS(5452), 2, + ACTIONS(5443), 2, anon_sym_get, anon_sym_set, - STATE(3805), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206220,7 +204428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -206242,50 +204450,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78676] = 16, - ACTIONS(239), 1, + [78741] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5445), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78851] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5447), 1, anon_sym_STAR, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(5451), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 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(2362), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -206302,21 +204581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78752] = 4, + [78915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1757), 13, + ACTIONS(4524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -206326,10 +204598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 23, + anon_sym_GT, + ACTIONS(4526), 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, @@ -206350,35 +204628,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78804] = 4, + [78965] = 7, + ACTIONS(3601), 1, + anon_sym_EQ, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 5, - sym__automatic_semicolon, + ACTIONS(4608), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1827), 13, + anon_sym_LBRACK, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(1829), 23, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206398,22 +204679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78856] = 5, - ACTIONS(5454), 1, - sym__automatic_semicolon, + [79023] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1879), 13, + ACTIONS(1870), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -206423,10 +204696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 23, + anon_sym_GT, + ACTIONS(1872), 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, @@ -206447,15 +204726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78910] = 3, + [79073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 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_PIPE, @@ -206465,7 +204743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4611), 28, + anon_sym_GT, + ACTIONS(4468), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -206494,664 +204773,795 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78960] = 32, - ACTIONS(4633), 1, + [79123] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1794), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1796), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4743), 1, - anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [79173] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(1804), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1806), 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, - ACTIONS(4829), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79223] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1814), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + anon_sym_GT, + ACTIONS(1816), 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(4845), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5064), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79273] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1710), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1712), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4837), 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, - [79068] = 33, - ACTIONS(4031), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79323] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5456), 1, + ACTIONS(5453), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79178] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5244), 1, - anon_sym_STAR, + [79433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5460), 2, - anon_sym_get, - anon_sym_set, - STATE(3824), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(4528), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4530), 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(2362), 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, - [79242] = 33, - ACTIONS(4031), 1, + 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, + [79483] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5462), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5455), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79352] = 33, - ACTIONS(4031), 1, + [79593] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5464), 1, + ACTIONS(5457), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79462] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5399), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5466), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5468), 2, - anon_sym_get, - anon_sym_set, - STATE(3755), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(2362), 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, - [79526] = 33, - ACTIONS(4031), 1, + [79703] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5470), 1, + ACTIONS(5459), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79636] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [79813] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5472), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5474), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5476), 2, - anon_sym_get, - anon_sym_set, - STATE(3839), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 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, - [79700] = 4, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5461), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1747), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79923] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79752] = 4, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5463), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1771), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80033] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79804] = 5, - ACTIONS(5478), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1781), 4, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5465), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1785), 13, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80143] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5467), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5469), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207161,7 +205571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207185,15 +205596,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79858] = 3, + [80197] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 13, + ACTIONS(5471), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5473), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207203,15 +205620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -207232,15 +205645,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79908] = 3, + [80251] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(5471), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5473), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207250,15 +205669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -207279,15 +205694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79958] = 3, + [80305] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 13, + ACTIONS(5471), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5473), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207297,15 +205718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -207326,34 +205743,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80008] = 3, + [80359] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5475), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5477), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5479), 2, + anon_sym_get, + anon_sym_set, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 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, + [80423] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5475), 1, + anon_sym_STAR, + ACTIONS(5481), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5483), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5485), 2, + anon_sym_get, + anon_sym_set, + STATE(3074), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [80489] = 7, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 13, + ACTIONS(4608), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(1749), 28, - sym__automatic_semicolon, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207373,35 +205902,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80058] = 5, - ACTIONS(5480), 1, - sym__automatic_semicolon, + anon_sym_implements, + [80547] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_STAR, + ACTIONS(5139), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 4, + ACTIONS(5145), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5487), 2, + sym_number, + sym_private_property_identifier, + STATE(3079), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1795), 13, - anon_sym_STAR, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [80613] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5489), 1, + anon_sym_RBRACK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(4987), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80723] = 7, + ACTIONS(5491), 1, + anon_sym_LPAREN, + ACTIONS(5494), 1, + anon_sym_COLON, + ACTIONS(5496), 1, + anon_sym_LT, + ACTIONS(5499), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4478), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, 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), 23, + anon_sym_GT, + ACTIONS(4480), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207422,15 +206086,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80112] = 3, + [80781] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_STAR, + ACTIONS(5139), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5145), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5501), 2, + sym_number, + sym_private_property_identifier, + STATE(3072), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [80847] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 13, + ACTIONS(4584), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207440,7 +206158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4483), 28, + anon_sym_GT, + ACTIONS(4586), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207469,407 +206188,587 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80162] = 33, - ACTIONS(4031), 1, + [80897] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(5482), 1, - anon_sym_COLON, - STATE(1642), 1, + ACTIONS(5503), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, + STATE(4987), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80272] = 33, - ACTIONS(4031), 1, + [81007] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5505), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5507), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5509), 2, + anon_sym_get, + anon_sym_set, + STATE(3802), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 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, + [81071] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5505), 1, + anon_sym_STAR, + ACTIONS(5511), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5513), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5515), 2, + anon_sym_get, + anon_sym_set, + STATE(3098), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [81137] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5484), 1, + ACTIONS(5517), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80382] = 33, - ACTIONS(4031), 1, + [81247] = 5, + ACTIONS(1874), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1866), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1870), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1872), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5486), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 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, + [81301] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4532), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(4534), 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(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80492] = 33, - ACTIONS(4031), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [81351] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5488), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5519), 1, + anon_sym_SEMI, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4645), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80602] = 33, - ACTIONS(4031), 1, + [81461] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5490), 1, - anon_sym_SEMI, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80712] = 5, + ACTIONS(5521), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [81567] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5151), 1, + anon_sym_STAR, + ACTIONS(5153), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5159), 2, + anon_sym_get, + anon_sym_set, + STATE(3097), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 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, + [81633] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5492), 2, + ACTIONS(5092), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5494), 3, + ACTIONS(5094), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207879,7 +206778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207903,22 +206803,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80766] = 5, + [81687] = 12, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 2, + ACTIONS(5064), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5525), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5225), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5509), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5523), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81755] = 6, + ACTIONS(3611), 1, anon_sym_EQ, + ACTIONS(3617), 1, anon_sym_QMARK, - ACTIONS(5498), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3614), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207928,7 +206884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207952,22 +206909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80820] = 5, + [81811] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5498), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(4470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207977,10 +206926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(4472), 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, @@ -208001,22 +206956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80874] = 5, + [81861] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5498), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 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_PIPE, @@ -208026,10 +206973,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + 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, @@ -208050,21 +207003,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80928] = 4, + [81911] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 5, + ACTIONS(4598), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4600), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1737), 13, + 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, + [81961] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208074,10 +207067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 23, + anon_sym_GT, + ACTIONS(1848), 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, @@ -208098,39 +207097,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80980] = 10, - ACTIONS(2338), 1, + [82011] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(4990), 1, anon_sym_STAR, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5504), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3864), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208152,41 +207156,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81044] = 11, - ACTIONS(1635), 1, + [82085] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5506), 1, - anon_sym_async, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5510), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3070), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208207,37 +207216,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81110] = 7, - ACTIONS(3587), 1, - anon_sym_EQ, - ACTIONS(4379), 1, - anon_sym_extends, + [82161] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(1762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + anon_sym_GT, + ACTIONS(1764), 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208257,77 +207263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [81168] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5150), 1, - anon_sym_STAR, - ACTIONS(5152), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5512), 2, - sym_number, - sym_private_property_identifier, - STATE(3079), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [81234] = 4, + [82211] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1837), 13, + ACTIONS(1774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208337,10 +207280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 23, + anon_sym_GT, + ACTIONS(1776), 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, @@ -208361,22 +207310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81286] = 5, - ACTIONS(5514), 1, - sym__automatic_semicolon, + [82261] = 3, 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, + ACTIONS(1784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208386,10 +207327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 23, + anon_sym_GT, + ACTIONS(1786), 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, @@ -208410,21 +207357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81340] = 4, + [82311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1869), 13, + ACTIONS(1824), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208434,10 +207374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 23, + anon_sym_GT, + ACTIONS(1826), 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, @@ -208458,70 +207404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81392] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5150), 1, - anon_sym_STAR, - ACTIONS(5152), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5516), 2, - sym_number, - sym_private_property_identifier, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [81458] = 3, + [82361] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4613), 13, + ACTIONS(1834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208531,7 +207421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4615), 28, + anon_sym_GT, + ACTIONS(1836), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208560,256 +207451,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81508] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [82411] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5518), 1, - anon_sym_STAR, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5527), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5522), 2, - anon_sym_get, - anon_sym_set, - STATE(3777), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82521] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 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, - [81572] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5518), 1, - anon_sym_STAR, - ACTIONS(5524), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5526), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5528), 2, - anon_sym_get, - anon_sym_set, - STATE(3098), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 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, - [81638] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - anon_sym_STAR, - ACTIONS(5409), 1, - anon_sym_async, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5529), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5530), 2, - sym_number, - sym_private_property_identifier, - STATE(3074), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [81704] = 33, - ACTIONS(4031), 1, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82631] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5532), 1, - anon_sym_RBRACE, - STATE(1642), 1, + ACTIONS(5531), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81814] = 3, + [82741] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 13, + ACTIONS(5533), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5535), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208819,15 +207706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4519), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 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, @@ -208848,37 +207731,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81864] = 10, - ACTIONS(2338), 1, + [82795] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4681), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208888,8 +207778,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, @@ -208902,41 +207790,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81928] = 11, - ACTIONS(1635), 1, + [82869] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + 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, + [82919] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5166), 1, - anon_sym_async, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5168), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5172), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3133), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208957,114 +207897,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81994] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5534), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [82100] = 12, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1551), 1, + [82995] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5084), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - ACTIONS(5538), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5247), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5594), 3, + ACTIONS(5541), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5595), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5536), 23, + ACTIONS(3814), 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(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -209074,8 +207939,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, @@ -209088,177 +207951,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82168] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4521), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [83059] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82218] = 3, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5543), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83169] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82268] = 3, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5545), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4617), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, 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, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 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, - [82318] = 5, + [83279] = 6, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5013), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5112), 3, - anon_sym_COMMA, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4608), 3, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + anon_sym_LBRACK, + ACTIONS(3492), 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(3503), 23, + anon_sym_GT, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209278,34 +208155,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82372] = 3, + [83335] = 6, + ACTIONS(4378), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(4617), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4614), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4458), 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(1773), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4460), 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, @@ -209325,109 +208205,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82422] = 3, + [83391] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1785), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1787), 28, + ACTIONS(5547), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5549), 2, + anon_sym_get, + anon_sym_set, + STATE(3851), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 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, + [83455] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82472] = 3, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5551), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 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(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 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, - [82522] = 3, + [83565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 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_PIPE, @@ -209437,7 +208353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 28, + anon_sym_GT, + ACTIONS(4460), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209466,15 +208383,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82572] = 3, + [83615] = 21, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2019), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5557), 1, + anon_sym_RBRACE, + ACTIONS(5559), 1, + anon_sym_async, + ACTIONS(5563), 1, + anon_sym_static, + ACTIONS(5565), 1, + anon_sym_readonly, + ACTIONS(5571), 1, + anon_sym_override, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2808), 1, + sym_override_modifier, + STATE(4925), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5561), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5567), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5569), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3688), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4910), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5553), 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, + [83701] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [83775] = 5, + ACTIONS(1714), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(1706), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1710), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209484,15 +208529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1712), 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, @@ -209513,49 +208556,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82622] = 15, - ACTIONS(239), 1, + [83829] = 16, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(4824), 1, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -209572,54 +208616,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82696] = 16, - ACTIONS(239), 1, + [83905] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(672), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(4824), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -209632,253 +208669,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82772] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, + [83967] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5540), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(1975), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82882] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5542), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84029] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5092), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5130), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82992] = 33, - ACTIONS(4031), 1, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5544), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83102] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84083] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5546), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5548), 3, + ACTIONS(4120), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209888,10 +208792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(4290), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209912,17 +208819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83156] = 4, - ACTIONS(3569), 1, - anon_sym_EQ, + [84135] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4322), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209932,14 +208840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 27, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4290), 25, 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, @@ -209960,183 +208867,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83208] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [84187] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5550), 1, - anon_sym_SEMI, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, + ACTIONS(5537), 1, + anon_sym_STAR, + ACTIONS(5573), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83318] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5552), 1, - anon_sym_SEMI, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83428] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5554), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5556), 2, + ACTIONS(5575), 2, sym_number, sym_private_property_identifier, - ACTIONS(5558), 2, + ACTIONS(5577), 2, anon_sym_get, anon_sym_set, - STATE(3761), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210146,12 +208901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -210168,93 +208922,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83492] = 5, - ACTIONS(1819), 1, - sym__automatic_semicolon, + [84253] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1815), 13, + ACTIONS(4796), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4828), 2, 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, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83546] = 15, - ACTIONS(239), 1, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5014), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5005), 1, + anon_sym_SEMI, + [84359] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210264,6 +209036,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, @@ -210276,54 +209050,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83620] = 16, - ACTIONS(239), 1, + [84421] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5005), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -210336,96 +209103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83696] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4705), 1, - aux_sym_array_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83806] = 4, - ACTIONS(5306), 1, - sym_regex_flags, + [84483] = 4, + ACTIONS(3578), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4917), 17, + ACTIONS(3492), 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_PIPE, @@ -210435,107 +209122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4919), 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, - [83858] = 7, - ACTIONS(5562), 1, - anon_sym_LPAREN, - ACTIONS(5565), 1, - anon_sym_COLON, - ACTIONS(5567), 1, - anon_sym_LT, - ACTIONS(5570), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 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(3503), 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, - [83916] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4525), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 28, + ACTIONS(3496), 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, @@ -210559,165 +209151,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83966] = 6, - ACTIONS(4627), 1, + [84535] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_STAR, + ACTIONS(5273), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(5277), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5579), 2, + sym_number, + sym_private_property_identifier, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 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(3503), 25, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84022] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1656), 1, - sym_arguments, - STATE(2591), 1, - sym_type_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5572), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [84128] = 9, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3623), 1, - anon_sym_COLON, - ACTIONS(4379), 1, - anon_sym_extends, - ACTIONS(4627), 1, - anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(3700), 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, + [84601] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5574), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3499), 11, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(1736), 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, @@ -210737,4302 +209253,2498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84190] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4866), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [84296] = 33, - ACTIONS(4031), 1, + [84651] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5578), 1, - anon_sym_RBRACK, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84406] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4501), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4503), 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, - [84456] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5580), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5582), 2, - anon_sym_get, - anon_sym_set, - STATE(3771), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(2362), 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, - [84520] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5554), 1, - anon_sym_STAR, - ACTIONS(5584), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5586), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5588), 2, - anon_sym_get, - anon_sym_set, - STATE(3068), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [84586] = 4, - ACTIONS(3571), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 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, - [84638] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - anon_sym_STAR, - ACTIONS(5409), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5590), 2, - sym_number, - sym_private_property_identifier, - STATE(3071), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 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, - [84704] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5592), 1, - anon_sym_SEMI, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84814] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4477), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4479), 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, - [84864] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84969] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4693), 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(4695), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85028] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4483), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85133] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4743), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85238] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4745), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85343] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4747), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85448] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4523), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85553] = 18, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4749), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85632] = 13, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 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(4749), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_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, - [85701] = 25, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85794] = 26, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85889] = 16, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4749), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_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, - [85964] = 22, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86051] = 23, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86140] = 24, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86231] = 15, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4751), 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(4749), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_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, - [86304] = 16, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 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(4749), 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, - [86379] = 20, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4751), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4749), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86462] = 27, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86559] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4541), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86664] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4756), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86769] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4565), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86874] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4573), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86979] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4577), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87084] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5598), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(5614), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(5626), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5521), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87189] = 31, - ACTIONS(4031), 1, + [84756] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, + ACTIONS(5581), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, + ACTIONS(5583), 1, anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4772), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(4762), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87294] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 3, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4169), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 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(3503), 22, + anon_sym_GT, + ACTIONS(4760), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [87347] = 4, + [84831] = 20, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1889), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 22, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [87398] = 8, - ACTIONS(4031), 1, + [84914] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(5633), 1, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 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(4760), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [87457] = 31, - ACTIONS(4031), 1, + [85011] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_RBRACK, + ACTIONS(4522), 2, + anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87562] = 31, - ACTIONS(4031), 1, + [85116] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4743), 2, - anon_sym_RBRACK, + ACTIONS(4767), 2, + anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87667] = 31, - ACTIONS(4031), 1, + [85221] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4546), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4745), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87772] = 31, - ACTIONS(4031), 1, + [85326] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4554), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4747), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87877] = 31, - ACTIONS(4031), 1, + [85431] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4523), 2, - anon_sym_RBRACK, + ACTIONS(4558), 2, + anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87982] = 18, - ACTIONS(4031), 1, + [85536] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, - anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5655), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4769), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5645), 2, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 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, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88061] = 13, - ACTIONS(4031), 1, + [85641] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5657), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, anon_sym_STAR_STAR, - ACTIONS(5669), 1, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4771), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 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, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88130] = 25, - ACTIONS(4031), 1, + [85746] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5633), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5039), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [88223] = 26, - ACTIONS(4031), 1, + [85851] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5633), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5049), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88318] = 16, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5669), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + [85956] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4120), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5653), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 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(4749), 16, + anon_sym_GT, + ACTIONS(4290), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [88393] = 22, - ACTIONS(4031), 1, + [86007] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, - anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5655), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4773), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [88480] = 23, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [86112] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86181] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(5620), 2, + sym_number, + sym_private_property_identifier, + STATE(3787), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5635), 2, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86240] = 4, + ACTIONS(4120), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5637), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5645), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5653), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 9, + anon_sym_GT, + ACTIONS(4290), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88569] = 24, - ACTIONS(4031), 1, + [86291] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5635), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5622), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [88660] = 15, - ACTIONS(4031), 1, + [86396] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86465] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5669), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5292), 2, + sym_number, + sym_private_property_identifier, + STATE(3853), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86524] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5507), 2, + sym_number, + sym_private_property_identifier, + STATE(3802), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86583] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4322), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4751), 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(4749), 16, + anon_sym_GT, + ACTIONS(4290), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [88733] = 16, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5669), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + [86634] = 4, + ACTIONS(4322), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4288), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + anon_sym_GT, + ACTIONS(4290), 26, sym__ternary_qmark, - anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88808] = 20, - ACTIONS(4031), 1, + anon_sym_satisfies, + [86685] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5279), 2, + sym_number, + sym_private_property_identifier, + STATE(3863), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86744] = 17, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(2813), 1, + sym_override_modifier, + STATE(4960), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 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, + [86821] = 4, + ACTIONS(4915), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4911), 17, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5637), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5645), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5653), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5659), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4751), 5, + anon_sym_as, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 11, + anon_sym_GT, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4913), 22, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, + 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, - anon_sym_satisfies, - [88891] = 27, - ACTIONS(4031), 1, + [86872] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5633), 1, - anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 6, + [86977] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4704), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4706), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88988] = 31, - ACTIONS(4031), 1, + [87036] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4541), 2, + ACTIONS(4468), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89093] = 31, - ACTIONS(4031), 1, + [87141] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4756), 2, + ACTIONS(4744), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89198] = 31, - ACTIONS(4031), 1, + [87246] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4565), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4756), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89303] = 31, - ACTIONS(4031), 1, + [87351] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(4758), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89408] = 31, - ACTIONS(4031), 1, + [87456] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4577), 2, + ACTIONS(4504), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89513] = 31, - ACTIONS(4031), 1, + [87561] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, - ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, - ACTIONS(5649), 1, - anon_sym_CARET, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(4762), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + anon_sym_GT, + ACTIONS(4760), 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, - ACTIONS(5659), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89618] = 31, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87640] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5633), 1, - anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, - ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, - ACTIONS(5649), 1, - anon_sym_CARET, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, - sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5662), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4760), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(4762), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5637), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5645), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5653), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + anon_sym_GT, + ACTIONS(4760), 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, - ACTIONS(5659), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89723] = 31, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87709] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, - ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4772), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89828] = 31, - ACTIONS(4633), 1, + ACTIONS(4760), 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, + [87802] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5344), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89933] = 8, - ACTIONS(2338), 1, + ACTIONS(4760), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87897] = 16, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(2813), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3777), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 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, @@ -215040,39 +211752,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89992] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, + [87972] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3399), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 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(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215096,24 +211803,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90061] = 8, - ACTIONS(2338), 1, + [88031] = 16, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5662), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 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, + [88106] = 22, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 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, + [88193] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, + ACTIONS(5427), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -215123,7 +211954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215147,252 +211978,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90120] = 23, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3813), 1, - anon_sym_AT, - ACTIONS(4595), 1, + [88252] = 23, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 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, + [88341] = 24, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5674), 1, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5628), 2, anon_sym_STAR, - ACTIONS(5676), 1, - anon_sym_async, - ACTIONS(5680), 1, - anon_sym_static, - ACTIONS(5682), 1, - anon_sym_readonly, - ACTIONS(5686), 1, - anon_sym_declare, - ACTIONS(5688), 1, - anon_sym_abstract, - ACTIONS(5690), 1, - anon_sym_accessor, - STATE(2659), 1, - sym_method_definition, - STATE(2742), 1, - sym_accessibility_modifier, - STATE(2748), 1, - aux_sym_export_statement_repeat1, - STATE(2806), 1, - sym_override_modifier, - STATE(2808), 1, - sym_decorator, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 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, + [88432] = 12, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5670), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5678), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5684), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3067), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 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, - [90209] = 31, - ACTIONS(4031), 1, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4780), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88499] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(5673), 1, anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(4638), 16, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5534), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90314] = 31, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + [88572] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4792), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5692), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4907), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90419] = 6, - ACTIONS(4627), 1, + [88677] = 11, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5676), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4787), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215410,366 +212352,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90474] = 6, - ACTIONS(4529), 1, + [88742] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5662), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90529] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [88815] = 16, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5662), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, - sym_number, - sym_private_property_identifier, - STATE(3898), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 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, + [88890] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5626), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90588] = 4, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4760), 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, + [88973] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90639] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5692), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4729), 3, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90744] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [89078] = 27, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, - sym_number, - sym_private_property_identifier, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89175] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90803] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(4522), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89280] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90872] = 6, - ACTIONS(4463), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4459), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4780), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215783,42 +212803,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, - [90927] = 4, - ACTIONS(4921), 1, - sym_regex_flags, + [89347] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5682), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4917), 17, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, 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_GT, + ACTIONS(4638), 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, + [89420] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4919), 22, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4792), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89525] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(5685), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4785), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4787), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215831,325 +212986,321 @@ 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, - [90978] = 31, - ACTIONS(4633), 1, + anon_sym_satisfies, + [89590] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4767), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5694), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5344), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91083] = 32, - ACTIONS(4633), 1, + [89695] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - ACTIONS(5696), 1, - anon_sym_SEMI, - ACTIONS(5698), 1, - sym__automatic_semicolon, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4546), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91190] = 6, - ACTIONS(4623), 1, - anon_sym_EQ, - ACTIONS(4868), 1, - anon_sym_COLON, + [89800] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4666), 2, - anon_sym_COMMA, + ACTIONS(4554), 2, anon_sym_RBRACK, - ACTIONS(4621), 13, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89905] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, anon_sym_PERCENT, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4558), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 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, - [91245] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, + [90010] = 5, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91314] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, - sym_number, - sym_private_property_identifier, - STATE(3885), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3686), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91373] = 4, - ACTIONS(4183), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4179), 13, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -216159,13 +213310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 26, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -216186,489 +213335,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91424] = 31, - ACTIONS(4031), 1, + [90063] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4769), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5702), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4729), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91529] = 31, - ACTIONS(4031), 1, + [90168] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4771), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5062), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4729), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91634] = 31, - ACTIONS(4031), 1, + [90273] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5072), 2, + ACTIONS(5688), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4729), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91739] = 32, - ACTIONS(4633), 1, + [90378] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - ACTIONS(5704), 1, - anon_sym_SEMI, - ACTIONS(5706), 1, - sym__automatic_semicolon, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4773), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91846] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4854), 2, - sym_number, - sym_private_property_identifier, - STATE(3460), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 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(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91905] = 4, - ACTIONS(4286), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4179), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4181), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [90483] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91956] = 17, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4710), 2, anon_sym_STAR, - ACTIONS(5278), 1, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5014), 2, anon_sym_COMMA, - ACTIONS(5708), 1, anon_sym_RBRACE, - STATE(2805), 1, - sym_override_modifier, - STATE(4940), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [92033] = 8, - ACTIONS(2338), 1, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90588] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5710), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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, - ACTIONS(2362), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216692,50 +213756,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92092] = 8, - ACTIONS(2338), 1, + [90647] = 19, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(2019), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(5694), 1, + anon_sym_async, + ACTIONS(5696), 1, + anon_sym_static, + ACTIONS(5698), 1, + anon_sym_readonly, + ACTIONS(5704), 1, + anon_sym_override, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2808), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(5561), 2, sym_number, sym_private_property_identifier, - STATE(3760), 3, + ACTIONS(5692), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5700), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5702), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3688), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 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(2362), 23, + STATE(5230), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5690), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -216743,24 +213818,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92151] = 8, - ACTIONS(1635), 1, + [90728] = 7, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(2373), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4129), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1694), 11, + 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, + anon_sym_GT, + ACTIONS(1698), 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, + [90785] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216770,7 +213895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216794,20 +213919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92210] = 6, - ACTIONS(4435), 1, + [90844] = 6, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(4864), 1, + ACTIONS(4850), 1, anon_sym_of, - ACTIONS(5714), 1, + ACTIONS(5706), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 12, + ACTIONS(4144), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -216817,7 +213941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 25, + anon_sym_GT, + ACTIONS(4148), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -216843,46 +213968,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92265] = 12, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5717), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + [90899] = 6, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(3492), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 18, + anon_sym_GT, + ACTIONS(3496), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216896,200 +214013,149 @@ 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, - [92332] = 7, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, + [90954] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3505), 4, + ACTIONS(5364), 2, + sym_number, + sym_private_property_identifier, + STATE(3798), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 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(3503), 20, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, 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, - [92389] = 31, - ACTIONS(4031), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91013] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(5598), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(5614), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5709), 1, + anon_sym_SEMI, + ACTIONS(5711), 1, + sym__automatic_semicolon, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4805), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92494] = 11, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5720), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4774), 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(4776), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5259), 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, - [92559] = 6, - ACTIONS(4623), 1, + [91120] = 6, + ACTIONS(4604), 1, anon_sym_EQ, - ACTIONS(4868), 1, + ACTIONS(4854), 1, anon_sym_of, - ACTIONS(5723), 1, + ACTIONS(5713), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 12, + ACTIONS(4602), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217099,7 +214165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 25, + anon_sym_GT, + ACTIONS(4606), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -217125,24 +214192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92614] = 8, - ACTIONS(2338), 1, + [91175] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217152,7 +214219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217176,58 +214243,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92673] = 16, - ACTIONS(2338), 1, + [91234] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(2805), 1, - sym_override_modifier, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -217235,304 +214299,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92748] = 31, - ACTIONS(4633), 1, + [91303] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2188), 1, + STATE(1655), 1, sym_arguments, - STATE(4605), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5320), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, + ACTIONS(5718), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92853] = 12, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [91408] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5729), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4791), 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(4793), 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, - [92920] = 15, - ACTIONS(4031), 1, + ACTIONS(5433), 2, + sym_number, + sym_private_property_identifier, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5732), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 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(4800), 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, - [92993] = 31, - ACTIONS(4031), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91467] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5233), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4805), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5720), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93098] = 11, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5735), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + [91572] = 7, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4150), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4153), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 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(4776), 20, + anon_sym_GT, + ACTIONS(4148), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, @@ -217550,24 +214548,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93163] = 8, - ACTIONS(2338), 1, + [91629] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5441), 2, + sym_number, + sym_private_property_identifier, + STATE(3753), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91688] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5580), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - STATE(3771), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -217577,7 +214626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217601,86 +214650,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93222] = 6, - ACTIONS(1709), 1, + [91747] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4870), 1, - anon_sym_of, - ACTIONS(5738), 1, - anon_sym_in, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91816] = 24, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5606), 1, anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 25, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91907] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5583), 1, + anon_sym_LT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93277] = 7, - ACTIONS(1709), 1, + [91980] = 6, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(2372), 1, - anon_sym_extends, + ACTIONS(4859), 1, + anon_sym_of, + ACTIONS(5722), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4142), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1707), 11, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 23, + anon_sym_GT, + ACTIONS(1698), 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, @@ -217700,21 +214880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93334] = 5, - ACTIONS(3501), 1, + [92035] = 5, + ACTIONS(3550), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3684), 3, + ACTIONS(3614), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217724,7 +214903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217748,84 +214928,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93387] = 7, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4435), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4439), 2, - anon_sym_RBRACE, + [92088] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4442), 2, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4433), 11, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5718), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4897), 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, - [93444] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, + [92193] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5389), 2, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3872), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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, - ACTIONS(2362), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217849,108 +215049,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93503] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4286), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4179), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4181), 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, - [93554] = 19, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(2026), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + [92244] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5745), 1, - anon_sym_async, - ACTIONS(5747), 1, - anon_sym_static, - ACTIONS(5749), 1, - anon_sym_readonly, - ACTIONS(5755), 1, - anon_sym_override, - STATE(2781), 1, - sym_accessibility_modifier, - STATE(2816), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5284), 2, + ACTIONS(5477), 2, sym_number, sym_private_property_identifier, - ACTIONS(5743), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5751), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5753), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3528), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5250), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5741), 14, + ACTIONS(3814), 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(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -217958,18 +215100,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93635] = 4, + [92303] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1889), 13, + ACTIONS(1730), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217979,13 +215123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 25, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1736), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218005,164 +215147,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [93686] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93755] = 31, - ACTIONS(4031), 1, + [92354] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5725), 1, + anon_sym_SEMI, + ACTIONS(5727), 1, + sym__automatic_semicolon, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5026), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4729), 3, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93860] = 8, - ACTIONS(2338), 1, + [92461] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(5405), 2, sym_number, sym_private_property_identifier, - STATE(3805), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218186,34 +215273,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93919] = 8, - ACTIONS(2338), 1, + [92520] = 7, + ACTIONS(3642), 1, + anon_sym_EQ, + ACTIONS(4608), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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, + [92577] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5415), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218237,35 +215379,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93978] = 6, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + [92646] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, + anon_sym_GT, + ACTIONS(4706), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218286,24 +215430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94033] = 8, - ACTIONS(2338), 1, + [92705] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5300), 2, sym_number, sym_private_property_identifier, - STATE(3858), 3, + STATE(3780), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -218313,7 +215457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218337,141 +215481,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94092] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, + [92764] = 7, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94161] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4608), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - STATE(3824), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3492), 11, + 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, + anon_sym_GT, + ACTIONS(3496), 23, + 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(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94220] = 8, - ACTIONS(2338), 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, + [92821] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5466), 2, + ACTIONS(5547), 2, sym_number, sym_private_property_identifier, - STATE(3755), 3, + STATE(3851), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218495,37 +215582,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94279] = 5, - ACTIONS(3543), 1, - anon_sym_EQ, + [92880] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3512), 4, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3499), 13, + anon_sym_extends, + ACTIONS(3492), 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(3503), 23, + anon_sym_GT, + ACTIONS(3496), 20, 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, @@ -218543,24 +215632,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94332] = 8, - ACTIONS(2338), 1, + [92937] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3839), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -218570,7 +215659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218594,22 +215683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94391] = 7, - ACTIONS(3658), 1, - anon_sym_EQ, - ACTIONS(4627), 1, - anon_sym_LBRACK, + [92996] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4184), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_QMARK, + ACTIONS(4182), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218620,11 +215707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218644,90 +215731,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94448] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + [93049] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(4468), 2, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94517] = 8, - ACTIONS(2338), 1, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93154] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, + ACTIONS(5376), 2, sym_number, sym_private_property_identifier, - STATE(3817), 3, + STATE(3781), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3814), 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, - ACTIONS(2362), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218751,162 +215856,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94576] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [93213] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, - sym_number, - sym_private_property_identifier, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4852), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RPAREN, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93318] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4744), 2, anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93423] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4756), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93528] = 7, + ACTIONS(4104), 1, anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94635] = 31, - ACTIONS(4031), 1, + ACTIONS(4106), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4510), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3492), 11, + 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, + anon_sym_GT, + ACTIONS(3496), 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, + [93585] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4758), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5026), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4907), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94740] = 7, - ACTIONS(3501), 1, + [93690] = 4, + ACTIONS(3601), 1, anon_sym_EQ, - ACTIONS(4379), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 11, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 26, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218926,34 +216249,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94797] = 8, - ACTIONS(2338), 1, + [93741] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5395), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3859), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218977,112 +216305,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94856] = 31, - ACTIONS(4031), 1, + [93810] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4504), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4866), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4877), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94961] = 8, - ACTIONS(4031), 1, + [93915] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(5757), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93974] = 6, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(4695), 23, + ACTIONS(3496), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219102,467 +216479,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95020] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [94029] = 6, + ACTIONS(4510), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(4106), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4513), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5761), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95125] = 31, - ACTIONS(4031), 1, + ACTIONS(3496), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4743), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5785), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5787), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [95230] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4745), 2, - anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + anon_sym_satisfies, + [94084] = 23, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(3828), 1, + anon_sym_AT, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5729), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5785), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5787), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95335] = 31, - ACTIONS(4031), 1, + ACTIONS(5731), 1, + anon_sym_async, + ACTIONS(5735), 1, + anon_sym_static, + ACTIONS(5737), 1, + anon_sym_readonly, + ACTIONS(5741), 1, + anon_sym_declare, + ACTIONS(5743), 1, + anon_sym_abstract, + ACTIONS(5745), 1, + anon_sym_accessor, + STATE(2699), 1, + sym_method_definition, + STATE(2732), 1, + sym_accessibility_modifier, + STATE(2761), 1, + aux_sym_export_statement_repeat1, + STATE(2802), 1, + sym_decorator, + STATE(2811), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5733), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5739), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3045), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, + [94173] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4747), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(4762), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95440] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, + anon_sym_GT, + ACTIONS(4760), 14, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, + anon_sym_COLON, anon_sym_AMP_AMP, - ACTIONS(5765), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4523), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5785), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5787), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95545] = 18, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94252] = 6, + ACTIONS(4614), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4617), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4458), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 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(4749), 14, + ACTIONS(4460), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95624] = 13, - ACTIONS(4031), 1, + [94307] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5781), 1, + ACTIONS(5581), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5583), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -219571,10 +216741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -219589,1373 +216760,1117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95693] = 25, - ACTIONS(4031), 1, + [94376] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95786] = 26, - ACTIONS(4031), 1, + [94469] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5757), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, + ACTIONS(4760), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95881] = 16, - ACTIONS(4031), 1, + [94564] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5747), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(4704), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5777), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4706), 23, sym__ternary_qmark, anon_sym_as, 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, - [95956] = 22, - ACTIONS(4031), 1, + [94623] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5779), 1, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4468), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [96043] = 23, - ACTIONS(4031), 1, + [94728] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5779), 1, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5759), 2, + ACTIONS(4744), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [96132] = 24, - ACTIONS(4031), 1, + [94833] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5779), 1, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5759), 2, + ACTIONS(4756), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [96223] = 15, - ACTIONS(4031), 1, + [94938] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5779), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - STATE(1642), 1, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(4758), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, - anon_sym_BANG, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 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, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96296] = 16, - ACTIONS(4031), 1, + [95043] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5747), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, + anon_sym_PERCENT, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4504), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(5749), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [96371] = 20, - ACTIONS(4031), 1, + [95148] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5783), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4762), 7, anon_sym_BANG, + anon_sym_in, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 11, + anon_sym_GT, + ACTIONS(4760), 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, - [96454] = 27, - ACTIONS(4031), 1, + [95227] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + ACTIONS(5783), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(4762), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5761), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 6, + anon_sym_GT, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_as, anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96551] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4541), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5785), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5787), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [96656] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4756), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5759), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5785), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5787), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [96761] = 31, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95296] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4565), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96866] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 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, + [95389] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96971] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95484] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, - anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5783), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4577), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5769), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(4762), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + anon_sym_GT, + ACTIONS(4760), 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, - ACTIONS(5783), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [97076] = 31, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95559] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97181] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 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, + [95646] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4760), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97286] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 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, + [95735] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4772), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97391] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4183), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4179), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4181), 25, - sym__automatic_semicolon, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97442] = 4, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [95826] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4642), 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(5769), 1, anon_sym_PERCENT, + ACTIONS(5771), 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, - [97493] = 12, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5796), 1, + ACTIONS(5783), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(5749), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 18, + anon_sym_GT, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -220964,8 +217879,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, @@ -220974,39 +217887,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97560] = 15, - ACTIONS(4031), 1, + [95899] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5799), 1, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + ACTIONS(5783), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -221015,7 +217929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4800), 16, + anon_sym_GT, + ACTIONS(4760), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -221024,7 +217939,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, @@ -221032,733 +217946,759 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [97633] = 31, - ACTIONS(4031), 1, + [95974] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, - anon_sym_AMP_AMP, - ACTIONS(5765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, - anon_sym_AMP, - ACTIONS(5773), 1, - anon_sym_CARET, - ACTIONS(5775), 1, - anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4805), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5787), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97738] = 11, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5802), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4774), 12, - anon_sym_STAR, + ACTIONS(4762), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 20, + ACTIONS(4760), 11, 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, - [97803] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5385), 2, - sym_number, - sym_private_property_identifier, - STATE(3765), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [96057] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97862] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5363), 2, - sym_number, - sym_private_property_identifier, - STATE(3792), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5747), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97921] = 7, - ACTIONS(4083), 1, - anon_sym_QMARK, - ACTIONS(4085), 1, - anon_sym_extends, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, + anon_sym_PERCENT, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 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_LBRACK, - anon_sym_RBRACK, - ACTIONS(3499), 11, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5749), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 6, sym__ternary_qmark, anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96154] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, anon_sym_AMP_AMP, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97978] = 7, - ACTIONS(3674), 1, - anon_sym_EQ, - ACTIONS(4627), 1, - anon_sym_LBRACK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(4522), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5749), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5751), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96259] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_RBRACK, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, anon_sym_AMP_AMP, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98035] = 4, - ACTIONS(3587), 1, - anon_sym_EQ, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4767), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5749), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96364] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, anon_sym_AMP_AMP, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [98086] = 7, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(4627), 1, - anon_sym_LBRACK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(4546), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5749), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5751), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96469] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, anon_sym_AMP_AMP, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4554), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5751), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 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, - [98143] = 15, - ACTIONS(4031), 1, + [96574] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5805), 1, + ACTIONS(5747), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, + anon_sym_PERCENT, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4558), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(5749), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4800), 16, - sym__ternary_qmark, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [98216] = 20, - ACTIONS(4031), 1, + [96679] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - STATE(1642), 1, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4769), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5824), 3, + ACTIONS(5775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + [96784] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, anon_sym_PIPE, + ACTIONS(5769), 1, + anon_sym_PERCENT, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4771), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5751), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 10, - sym__ternary_qmark, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96889] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, anon_sym_AMP_AMP, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, + anon_sym_PERCENT, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98298] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5826), 1, - anon_sym_readonly, - STATE(2837), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4854), 2, - sym_number, - sym_private_property_identifier, - STATE(3460), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 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, - [98362] = 9, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4862), 1, - anon_sym_abstract, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, - sym_number, - sym_private_property_identifier, - STATE(3460), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98422] = 9, - ACTIONS(1635), 1, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4773), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5751), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96994] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5830), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5828), 2, + ACTIONS(5411), 2, sym_number, sym_private_property_identifier, - STATE(3417), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 9, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98482] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4071), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221782,18 +218722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98536] = 4, + [97053] = 6, + ACTIONS(4604), 1, + anon_sym_EQ, + ACTIONS(4854), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 2, + ACTIONS(4671), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4179), 13, + anon_sym_RBRACK, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -221803,12 +218746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 24, + anon_sym_GT, + ACTIONS(4606), 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, @@ -221828,250 +218771,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98586] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98640] = 13, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [98708] = 14, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [98778] = 31, - ACTIONS(4031), 1, + [97108] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, + ACTIONS(5581), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, + ACTIONS(5583), 1, anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5832), 1, - anon_sym_COLON, - STATE(1642), 1, + ACTIONS(5596), 1, + anon_sym_PERCENT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(4762), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_GT, + ACTIONS(4760), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98882] = 4, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97183] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(1730), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222081,12 +218850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 24, + anon_sym_GT, + ACTIONS(1736), 25, + 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_AMP_AMP, @@ -222104,37 +218876,47 @@ 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, - [98932] = 4, + [97234] = 12, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5786), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1749), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5834), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5837), 23, + anon_sym_GT, + ACTIONS(4780), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -222148,39 +218930,52 @@ 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, - [98982] = 4, + [97301] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5789), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4645), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5840), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 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(5843), 23, + anon_sym_GT, + ACTIONS(4638), 16, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -222194,39 +218989,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [97374] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, + anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, + anon_sym_PERCENT, + ACTIONS(5771), 1, + anon_sym_STAR_STAR, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4792), 2, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [99032] = 4, + ACTIONS(5749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5751), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5759), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5767), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5775), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5777), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5773), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97479] = 11, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5792), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5846), 13, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5849), 23, + anon_sym_GT, + ACTIONS(4787), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -222244,103 +219118,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99082] = 12, - ACTIONS(4031), 1, + [97544] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5852), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4793), 17, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97631] = 23, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5606), 1, + anon_sym_AMP, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4760), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [99148] = 15, - ACTIONS(4031), 1, + [97720] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5211), 2, + sym_number, + sym_private_property_identifier, + STATE(3878), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97779] = 7, + ACTIONS(3658), 1, + anon_sym_EQ, + ACTIONS(4608), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5855), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 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(4800), 15, + ACTIONS(3496), 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, @@ -222354,116 +219346,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [99220] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4805), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99324] = 11, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5876), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97836] = 4, + ACTIONS(3592), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 19, + anon_sym_GT, + ACTIONS(3496), 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, @@ -222481,24 +219396,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99388] = 6, - ACTIONS(4627), 1, + anon_sym_implements, + [97887] = 7, + ACTIONS(3646), 1, + anon_sym_EQ, + ACTIONS(4608), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4379), 3, + ACTIONS(4408), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -222506,10 +219423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222529,52 +219447,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99442] = 11, - ACTIONS(1635), 1, + [97944] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5879), 1, - anon_sym_readonly, - STATE(2866), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5330), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 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(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98003] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3235), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(3705), 21, + ACTIONS(3233), 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, @@ -222582,26 +219540,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99506] = 9, - ACTIONS(1635), 1, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [98051] = 9, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5881), 1, + ACTIONS(5797), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5795), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3320), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222609,7 +219570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222633,25 +219594,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99566] = 8, - ACTIONS(4031), 1, + [98111] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5799), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222660,7 +219620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 22, + anon_sym_GT, + ACTIONS(4706), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -222683,653 +219644,849 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99624] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + [98169] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5885), 1, - anon_sym_readonly, - STATE(2873), 1, - sym_override_modifier, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4468), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5883), 2, - sym_number, - sym_private_property_identifier, - STATE(3454), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 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, - [99688] = 9, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98273] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5889), 1, - anon_sym_abstract, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4756), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5887), 2, - sym_number, - sym_private_property_identifier, - STATE(3456), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98377] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99748] = 31, - ACTIONS(4031), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4758), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98481] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4504), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5598), 1, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98585] = 18, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 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, + [98663] = 13, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 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, + [98731] = 25, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5614), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5891), 1, - anon_sym_COLON, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99852] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 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, + [98823] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4483), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99956] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98917] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4743), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(4762), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + anon_sym_GT, + ACTIONS(4760), 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, - ACTIONS(5824), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100060] = 31, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98991] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4745), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100164] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 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, + [99077] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4747), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100268] = 31, - ACTIONS(4031), 1, + ACTIONS(4760), 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, + [99165] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100372] = 12, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [100438] = 18, - ACTIONS(4031), 1, + ACTIONS(4760), 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, + [99255] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5835), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4762), 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(4749), 13, + anon_sym_GT, + ACTIONS(4760), 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, @@ -223339,36 +220496,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [100516] = 13, - ACTIONS(4031), 1, + [99327] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5820), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5893), 1, + ACTIONS(5835), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4762), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -223377,9 +220538,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4760), 14, sym__ternary_qmark, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -223393,733 +220554,1329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [100584] = 13, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + [99401] = 20, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 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, - [100652] = 25, - ACTIONS(4031), 1, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4760), 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, + [99483] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5862), 1, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - STATE(1642), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, + ACTIONS(4760), 5, sym__ternary_qmark, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [100744] = 6, - ACTIONS(4463), 1, + [99579] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4522), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99683] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4767), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(4173), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4459), 11, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99787] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4546), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, anon_sym_AMP_AMP, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99891] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4554), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 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, - [100798] = 31, - ACTIONS(4031), 1, + [99995] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5598), 1, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5614), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - ACTIONS(5896), 1, - anon_sym_COLON, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100902] = 26, - ACTIONS(4031), 1, + [100099] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4769), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5862), 1, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - STATE(1642), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100996] = 16, - ACTIONS(4031), 1, + [100203] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5818), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4771), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5893), 1, - anon_sym_LT, - STATE(1642), 1, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 8, - anon_sym_BANG, + ACTIONS(5803), 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(4749), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101070] = 22, - ACTIONS(4031), 1, + [100307] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4773), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - STATE(1642), 1, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [101156] = 23, - ACTIONS(4031), 1, + [100411] = 32, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5014), 1, + anon_sym_of, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_GT, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5862), 1, - anon_sym_AMP, - STATE(1642), 1, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, + ACTIONS(5838), 1, + anon_sym_in, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5808), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 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, - [101244] = 24, - ACTIONS(4031), 1, + [100517] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5862), 1, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5642), 1, anon_sym_CARET, - STATE(1642), 1, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, + sym__ternary_qmark, + ACTIONS(5841), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5808), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, + [100621] = 6, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100675] = 6, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100729] = 15, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(2813), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [100801] = 6, + ACTIONS(4510), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4106), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, + 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, + anon_sym_GT, + ACTIONS(3496), 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, - [101334] = 15, - ACTIONS(4031), 1, + [100855] = 6, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4651), 1, + anon_sym_RBRACK, + ACTIONS(4850), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4144), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4148), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(5818), 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(5820), 1, anon_sym_STAR_STAR, - ACTIONS(5893), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 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, + [100909] = 6, + ACTIONS(4604), 1, + anon_sym_EQ, + ACTIONS(4671), 1, + anon_sym_RBRACK, + ACTIONS(4854), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4602), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4751), 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(4749), 15, + anon_sym_GT, + ACTIONS(4606), 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, - [101406] = 31, - ACTIONS(4031), 1, + [100963] = 6, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4775), 1, + anon_sym_RBRACK, + ACTIONS(4859), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1694), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1698), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5898), 1, - anon_sym_COLON, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101017] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3227), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3225), 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, + [101065] = 6, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, + anon_sym_COMMA, + ACTIONS(3693), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_GT, + ACTIONS(3496), 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(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101510] = 9, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5902), 1, - anon_sym_abstract, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5900), 2, + ACTIONS(3239), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3237), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -224139,35 +221896,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101570] = 6, - ACTIONS(4623), 1, - anon_sym_EQ, - ACTIONS(4666), 1, - anon_sym_RBRACK, - ACTIONS(4868), 1, - anon_sym_COMMA, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [101167] = 6, + ACTIONS(4106), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 13, + ACTIONS(4510), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3492), 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(4625), 23, + anon_sym_GT, + ACTIONS(3496), 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, @@ -224187,108 +221947,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101624] = 31, - ACTIONS(4031), 1, + [101221] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4120), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4290), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5904), 1, - anon_sym_COLON, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101271] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(4322), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_GT, + ACTIONS(4290), 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(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101728] = 6, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4674), 1, - anon_sym_RBRACK, - ACTIONS(4870), 1, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101321] = 6, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4408), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 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(1711), 23, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -224308,363 +222087,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101782] = 16, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [101375] = 6, + ACTIONS(4614), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5893), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4617), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4378), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4458), 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(4749), 14, + anon_sym_GT, + ACTIONS(4460), 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, - [101856] = 27, - ACTIONS(4031), 1, + anon_sym_satisfies, + [101429] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [101497] = 14, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 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, + [101567] = 7, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(3496), 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, - ACTIONS(5824), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 5, - sym__ternary_qmark, - anon_sym_as, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101952] = 31, - ACTIONS(4031), 1, + [101623] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, ACTIONS(5606), 1, anon_sym_AMP, ACTIONS(5608), 1, anon_sym_CARET, ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5906), 1, + ACTIONS(5845), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102056] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + [101727] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4526), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5847), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102160] = 31, - ACTIONS(4031), 1, + anon_sym_GT, + ACTIONS(5850), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5908), 1, - anon_sym_COLON, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102264] = 4, - ACTIONS(3633), 1, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101777] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(1712), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -224674,12 +222435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(5856), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -224700,19 +222460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102314] = 4, + [101827] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 3, + ACTIONS(4578), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5910), 13, + ACTIONS(5859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -224722,7 +222481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5913), 23, + anon_sym_GT, + ACTIONS(5862), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224746,19 +222506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102364] = 4, + [101877] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 3, + ACTIONS(4582), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5916), 13, + ACTIONS(5865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -224768,7 +222527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5919), 23, + anon_sym_GT, + ACTIONS(5868), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224792,35 +222552,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102414] = 4, + [101927] = 12, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5871), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4619), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5922), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5925), 23, + anon_sym_GT, + ACTIONS(4780), 17, 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, @@ -224834,114 +222604,51 @@ 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, - [102464] = 31, - ACTIONS(4031), 1, + [101993] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4756), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102568] = 6, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, + ACTIONS(4634), 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(3503), 23, + anon_sym_GT, + ACTIONS(4638), 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, @@ -224955,180 +222662,266 @@ 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, - [102622] = 31, - ACTIONS(4031), 1, + [102065] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4565), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4792), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102726] = 31, - ACTIONS(4031), 1, + [102169] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, + ACTIONS(5877), 1, anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5928), 1, - anon_sym_COLON, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(4785), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_GT, + ACTIONS(4787), 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(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102830] = 11, - ACTIONS(1635), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102233] = 12, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [102299] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [102367] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5932), 1, + ACTIONS(5880), 1, anon_sym_readonly, - STATE(2832), 1, + STATE(2847), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5930), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - STATE(3377), 3, + STATE(3399), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225136,7 +222929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 21, + ACTIONS(3700), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225158,77 +222951,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102894] = 6, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + [102431] = 9, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5882), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5934), 3, - anon_sym_LBRACE, + ACTIONS(5668), 2, + sym_number, + sym_private_property_identifier, + STATE(3399), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4429), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4431), 21, - sym__ternary_qmark, - anon_sym_as, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102491] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [102948] = 3, + ACTIONS(5886), 1, + anon_sym_readonly, + STATE(2865), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 12, - anon_sym_STAR, + ACTIONS(5884), 2, + sym_number, + sym_private_property_identifier, + STATE(3446), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 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, + [102555] = 9, + ACTIONS(1626), 1, anon_sym_DQUOTE, + ACTIONS(1628), 1, anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5890), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5888), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3449), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3208), 27, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -225248,588 +223106,486 @@ 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, - [102996] = 32, - ACTIONS(4031), 1, + [102615] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5026), 1, - anon_sym_of, - ACTIONS(5757), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5761), 1, - anon_sym_GT, - ACTIONS(5763), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5936), 1, - anon_sym_in, - STATE(1642), 1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5769), 2, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103102] = 31, - ACTIONS(4031), 1, + [102719] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5812), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5894), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103206] = 31, - ACTIONS(4031), 1, + [102823] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4577), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5812), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5896), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103310] = 31, - ACTIONS(4031), 1, + [102927] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, ACTIONS(5606), 1, anon_sym_AMP, ACTIONS(5608), 1, anon_sym_CARET, ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5939), 1, + ACTIONS(5898), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103414] = 6, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4085), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 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(3503), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5600), 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, - [103468] = 31, - ACTIONS(4031), 1, + [103031] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4758), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5900), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103572] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1871), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5941), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5944), 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, + ACTIONS(5652), 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, - [103622] = 31, - ACTIONS(4031), 1, + [103135] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5947), 1, - anon_sym_RBRACK, - STATE(1642), 1, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103726] = 15, - ACTIONS(2338), 1, + [103239] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(2805), 1, + ACTIONS(5904), 1, + anon_sym_readonly, + STATE(2814), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(3814), 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(2362), 18, + ACTIONS(3700), 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, @@ -225841,29 +223597,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103798] = 3, + [103303] = 9, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4848), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 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(4840), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3368), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3212), 27, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -225883,39 +223648,198 @@ 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, - [103846] = 7, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(4627), 1, + [103363] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + ACTIONS(5906), 1, + anon_sym_COLON, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103467] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1826), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5908), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(5911), 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, + [103517] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1836), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5914), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(5917), 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, + [103567] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4600), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5920), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(5923), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -225935,41 +223859,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103902] = 3, + [103617] = 4, + ACTIONS(3582), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 12, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3496), 25, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103667] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, + ACTIONS(1628), 1, anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5928), 1, + anon_sym_readonly, + STATE(2868), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5926), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3369), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3216), 27, + ACTIONS(3700), 21, 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, @@ -225977,111 +223958,157 @@ 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, - [103950] = 31, - ACTIONS(4031), 1, + [103731] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5951), 1, - anon_sym_RBRACK, - STATE(1642), 1, + ACTIONS(5930), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104054] = 6, - ACTIONS(4085), 1, - anon_sym_extends, + [103835] = 9, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5934), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 11, + ACTIONS(5932), 2, + sym_number, + sym_private_property_identifier, + STATE(3376), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103895] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1872), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5936), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(5939), 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, @@ -226101,165 +224128,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104108] = 31, - ACTIONS(4031), 1, + [103945] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4760), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5942), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104212] = 31, - ACTIONS(4031), 1, + [104049] = 6, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4772), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, + STATE(1669), 1, sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104316] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 3, + ACTIONS(5944), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5953), 13, + anon_sym_implements, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -226269,10 +224226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5956), 23, + anon_sym_GT, + ACTIONS(4412), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226291,105 +224248,104 @@ 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, - [104366] = 31, - ACTIONS(4031), 1, + [104103] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, ACTIONS(5606), 1, anon_sym_AMP, ACTIONS(5608), 1, anon_sym_CARET, ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5959), 1, + ACTIONS(5946), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4822), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104470] = 11, - ACTIONS(1635), 1, + [104207] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5963), 1, + ACTIONS(5950), 1, anon_sym_readonly, - STATE(2869), 1, + STATE(2862), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, + ACTIONS(5948), 2, sym_number, sym_private_property_identifier, - STATE(3406), 3, + STATE(3459), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -226397,7 +224353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 21, + ACTIONS(3700), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226419,80 +224375,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104534] = 6, - ACTIONS(4435), 1, - anon_sym_EQ, - ACTIONS(4669), 1, - anon_sym_RBRACK, - ACTIONS(4864), 1, - anon_sym_COMMA, + [104271] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4744), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 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(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 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, - [104588] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [104375] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 2, - sym_number, - sym_private_property_identifier, - STATE(3397), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226516,32 +224498,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104645] = 8, - ACTIONS(1635), 1, + [104434] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5967), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3433), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226551,8 +224538,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, @@ -226565,108 +224550,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104702] = 30, - ACTIONS(4031), 1, + [104497] = 30, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4822), 1, + STATE(2719), 1, + sym_type_arguments, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104803] = 11, - ACTIONS(2338), 1, + [104598] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5952), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, + STATE(3419), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(3814), 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(2362), 21, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226676,6 +224656,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, @@ -226688,32 +224670,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104866] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [104655] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, - sym_number, - sym_private_property_identifier, - STATE(3435), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226737,33 +224720,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104923] = 9, - ACTIONS(239), 1, + [104714] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5076), 1, + ACTIONS(667), 1, anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226787,33 +224770,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104982] = 9, - ACTIONS(239), 1, + [104773] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1971), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226837,33 +224820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105041] = 9, - ACTIONS(239), 1, + [104832] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5076), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226887,33 +224870,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105100] = 9, - ACTIONS(239), 1, + [104891] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4824), 1, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1971), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226937,33 +224920,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105159] = 9, - ACTIONS(239), 1, + [104950] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4824), 1, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226987,24 +224970,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105218] = 8, - ACTIONS(1635), 1, + [105009] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 2, + ACTIONS(5954), 2, sym_number, sym_private_property_identifier, - STATE(3329), 3, + STATE(3414), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227012,7 +224995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227036,43 +225019,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105275] = 8, - ACTIONS(1635), 1, + [105066] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1637), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(1969), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105125] = 12, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3331), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(2351), 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, @@ -227085,20 +225122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105332] = 6, - ACTIONS(3533), 1, + [105190] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3696), 1, + ACTIONS(3681), 1, anon_sym_in, - ACTIONS(3699), 1, + ACTIONS(3684), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 12, + ACTIONS(3492), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -227108,7 +225144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227132,83 +225169,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105385] = 10, - ACTIONS(2338), 1, + [105243] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5726), 2, + ACTIONS(5665), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3797), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105446] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5975), 2, - sym_number, - sym_private_property_identifier, - STATE(3324), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227232,33 +225220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105503] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [105304] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5956), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + STATE(3326), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227282,24 +225269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105562] = 8, - ACTIONS(1635), 1, + [105361] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 2, + ACTIONS(5958), 2, sym_number, sym_private_property_identifier, - STATE(3431), 3, + STATE(3403), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227307,7 +225294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227331,33 +225318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105619] = 9, - ACTIONS(239), 1, + [105418] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(5005), 1, + ACTIONS(5051), 1, anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1971), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227381,77 +225368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105678] = 4, - ACTIONS(4921), 1, - sym_regex_flags, + [105477] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4917), 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(4919), 20, - sym__ternary_qmark, + ACTIONS(3814), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1971), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [105727] = 8, - ACTIONS(1635), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5979), 2, sym_number, sym_private_property_identifier, - STATE(3370), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227475,32 +225418,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105784] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [105536] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 2, - sym_number, - sym_private_property_identifier, - STATE(3413), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227524,33 +225468,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105841] = 9, - ACTIONS(239), 1, + [105595] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227574,33 +225518,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105900] = 9, - ACTIONS(239), 1, + [105654] = 11, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(5624), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4960), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227624,24 +225570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105959] = 8, - ACTIONS(1635), 1, + [105717] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, + ACTIONS(5960), 2, sym_number, sym_private_property_identifier, - STATE(3444), 3, + STATE(3334), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227649,7 +225595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227673,24 +225619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106016] = 8, - ACTIONS(1635), 1, + [105774] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5985), 2, + ACTIONS(5962), 2, sym_number, sym_private_property_identifier, - STATE(3339), 3, + STATE(3462), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227698,7 +225644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227722,95 +225668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106073] = 30, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(2188), 1, - sym_arguments, - STATE(2720), 1, - sym_type_arguments, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106174] = 8, - ACTIONS(1635), 1, + [105831] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 2, + ACTIONS(5964), 2, sym_number, sym_private_property_identifier, - STATE(3405), 3, + STATE(3367), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227818,7 +225693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227842,47 +225717,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106231] = 12, - ACTIONS(2338), 1, + [105888] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5966), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, + STATE(3379), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(3814), 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(2362), 20, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227895,33 +225766,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106296] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [105945] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(5968), 2, + sym_number, + sym_private_property_identifier, + STATE(3397), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [106002] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, + ACTIONS(1628), 1, anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5970), 2, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3428), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227945,35 +225864,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106355] = 11, - ACTIONS(2338), 1, + [106059] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5972), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3429), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(3814), 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(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227997,24 +225913,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106418] = 8, - ACTIONS(1635), 1, + [106116] = 4, + ACTIONS(4915), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4911), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT_GT, + anon_sym_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_GT, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4913), 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, + [106165] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5989), 2, + ACTIONS(5974), 2, sym_number, sym_private_property_identifier, - STATE(3349), 3, + STATE(3348), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228022,7 +225983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228046,24 +226007,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106475] = 8, - ACTIONS(1635), 1, + [106222] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, + ACTIONS(5976), 2, sym_number, sym_private_property_identifier, - STATE(3357), 3, + STATE(3343), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228071,7 +226032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228095,24 +226056,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106532] = 8, - ACTIONS(1635), 1, + [106279] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5993), 2, + ACTIONS(5978), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + STATE(3415), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228120,7 +226081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228144,17 +226105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106589] = 4, - ACTIONS(3658), 1, + [106336] = 4, + ACTIONS(3642), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228164,7 +226124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + anon_sym_GT, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228189,24 +226150,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106638] = 8, - ACTIONS(1635), 1, + [106385] = 4, + ACTIONS(3658), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3496), 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, + [106434] = 30, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106535] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(5980), 2, sym_number, sym_private_property_identifier, - STATE(3470), 3, + STATE(3400), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228214,7 +226291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228238,17 +226315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106695] = 4, - ACTIONS(3674), 1, + [106592] = 4, + ACTIONS(3646), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228258,52 +226334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 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, - [106744] = 4, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 24, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228328,33 +226360,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106793] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [106641] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(5982), 2, + sym_number, + sym_private_property_identifier, + STATE(3358), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(1990), 6, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [106698] = 4, + ACTIONS(5984), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1878), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + anon_sym_AT, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228378,33 +226451,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106852] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + anon_sym_abstract, + anon_sym_accessor, + [106746] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(5988), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + anon_sym_AT, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228428,24 +226494,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106911] = 3, + anon_sym_abstract, + anon_sym_accessor, + [106792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228471,24 +226539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106957] = 3, + [106838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228514,17 +226582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107003] = 4, - ACTIONS(3785), 1, + [106884] = 4, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228534,7 +226601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228558,25 +226626,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107051] = 4, - ACTIONS(6005), 1, - sym__automatic_semicolon, + [106932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 11, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1803), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228602,24 +226669,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107099] = 3, + [106978] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228645,25 +226712,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107145] = 4, - ACTIONS(6011), 1, - sym__automatic_semicolon, + [107024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 11, + ACTIONS(6004), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + 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, + [107070] = 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_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1803), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228689,24 +226798,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107193] = 3, + [107116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(6008), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + 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, + [107162] = 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_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6013), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228732,26 +226884,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107239] = 5, - ACTIONS(6021), 1, - anon_sym_SEMI, - ACTIONS(6024), 1, - sym__automatic_semicolon, + [107208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6019), 10, + ACTIONS(6012), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6010), 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, + [107254] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6016), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6017), 25, + ACTIONS(6014), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228777,68 +226970,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107289] = 4, - ACTIONS(3763), 1, - anon_sym_EQ, + [107300] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(5996), 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_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 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, - [107337] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, + [107346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6020), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6018), 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, + [107392] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6024), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228864,25 +227099,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107383] = 4, - ACTIONS(6030), 1, - sym__automatic_semicolon, + [107438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 11, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1705), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228908,28 +227142,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107431] = 3, + [107484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3672), 10, + ACTIONS(6028), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LT, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3670), 27, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -228951,24 +227185,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107477] = 3, + [107530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228994,17 +227228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107523] = 4, - ACTIONS(3771), 1, + [107576] = 4, + ACTIONS(3770), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -229014,95 +227247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 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, - [107571] = 4, - ACTIONS(3789), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 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, - [107619] = 4, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229126,7 +227272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107667] = 3, + [107624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -229136,10 +227282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, @@ -229169,24 +227315,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107713] = 3, + [107670] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(6024), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6013), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229212,24 +227358,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107759] = 3, + [107716] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6034), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6032), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229255,24 +227401,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107805] = 3, + [107762] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229298,24 +227444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107851] = 3, + [107808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6002), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229341,24 +227487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107897] = 3, + [107854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6032), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229384,24 +227530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107943] = 3, + [107900] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6032), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229427,24 +227573,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107989] = 3, + [107946] = 4, + ACTIONS(3782), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3496), 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, + [107994] = 4, + ACTIONS(3792), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3496), 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, + [108042] = 4, + ACTIONS(3746), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3496), 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, + [108090] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1878), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229470,24 +227748,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108035] = 3, + [108136] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6024), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229513,24 +227791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108081] = 3, + [108182] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + ACTIONS(6032), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229556,24 +227834,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108127] = 3, + [108228] = 4, + ACTIONS(6034), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, - sym__automatic_semicolon, + ACTIONS(1690), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(1692), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229599,17 +227878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108173] = 4, - ACTIONS(3787), 1, + [108276] = 4, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -229619,7 +227897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229643,24 +227922,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108221] = 3, + [108324] = 9, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6042), 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(2337), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6040), 25, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229684,26 +227971,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108267] = 3, + [108382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, + ACTIONS(1716), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(1718), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229729,24 +228014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108313] = 3, + [108428] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6024), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229772,67 +228057,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108359] = 3, + [108474] = 4, + ACTIONS(3762), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, - sym__automatic_semicolon, + ACTIONS(3492), 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_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6007), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108405] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 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, + [108522] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6048), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229858,24 +228144,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108451] = 3, + [108568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229901,19 +228187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108497] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2254), 1, - sym_template_string, + [108614] = 4, + ACTIONS(3778), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -229923,7 +228206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 22, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229945,68 +228229,26 @@ 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, - [108547] = 3, + [108662] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + 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(6036), 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, - [108593] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6046), 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(6044), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230032,116 +228274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108639] = 3, + [108708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6028), 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(6001), 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, - [108685] = 9, - ACTIONS(2338), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [108743] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6015), 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(6013), 25, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230167,24 +228317,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108789] = 3, + [108754] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6024), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230210,24 +228360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108835] = 3, + [108800] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6054), 12, + ACTIONS(6038), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6052), 25, + ACTIONS(6036), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230253,24 +228403,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108881] = 3, + [108846] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2228), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 12, + ACTIONS(1734), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1736), 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, + [108896] = 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1803), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230296,25 +228491,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108927] = 4, - ACTIONS(6056), 1, - sym__automatic_semicolon, + [108942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 11, + ACTIONS(6042), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1705), 25, + ACTIONS(6040), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230340,24 +228534,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108975] = 3, + [108988] = 4, + ACTIONS(6044), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, - sym__automatic_semicolon, + ACTIONS(1690), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(1692), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230383,24 +228578,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109021] = 3, + [109036] = 4, + ACTIONS(6046), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6060), 12, - sym__automatic_semicolon, + ACTIONS(1878), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6058), 25, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230426,24 +228622,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109067] = 3, + [109084] = 5, + ACTIONS(6052), 1, + anon_sym_SEMI, + ACTIONS(6055), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, - sym__automatic_semicolon, + ACTIONS(6050), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6048), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230469,24 +228667,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109113] = 3, + [109134] = 5, + ACTIONS(6061), 1, + anon_sym_SEMI, + ACTIONS(6064), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, - sym__automatic_semicolon, + ACTIONS(6059), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6057), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230512,68 +228712,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109159] = 4, - ACTIONS(3751), 1, - anon_sym_EQ, + [109184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 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, - [109207] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1843), 12, + ACTIONS(6024), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1845), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230599,24 +228755,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109253] = 3, + [109230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6024), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230642,24 +228798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109299] = 3, + [109276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(6028), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6013), 25, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230685,7 +228841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109345] = 3, + [109322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -230695,10 +228851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, @@ -230728,24 +228884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109391] = 3, + [109368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230771,17 +228927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109437] = 4, - ACTIONS(3791), 1, + [109414] = 4, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -230791,7 +228946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -230815,24 +228971,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109485] = 3, + [109462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(6032), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6013), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230858,29 +229014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109531] = 8, - ACTIONS(6062), 1, - anon_sym_LPAREN, - ACTIONS(6064), 1, - anon_sym_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2802), 1, - sym_arguments, - STATE(5459), 1, - sym_type_arguments, + [109508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 7, + ACTIONS(5996), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3581), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230906,26 +229057,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109587] = 5, - ACTIONS(6072), 1, - anon_sym_SEMI, - ACTIONS(6075), 1, - sym__automatic_semicolon, + [109554] = 4, + ACTIONS(3744), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3496), 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, + [109602] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6070), 10, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6068), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230951,24 +229144,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109637] = 3, + [109648] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6066), 1, + anon_sym_LPAREN, + ACTIONS(6068), 1, + anon_sym_DOT, + STATE(2810), 1, + sym_arguments, + STATE(5442), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, - sym__automatic_semicolon, + ACTIONS(3572), 7, 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(6044), 25, + ACTIONS(3570), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230994,24 +229192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109683] = 3, + [109704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 12, + ACTIONS(6032), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6077), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231037,24 +229235,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109729] = 3, + [109750] = 6, + ACTIONS(4622), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(5665), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1971), 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(6036), 25, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231078,114 +229280,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109775] = 4, - ACTIONS(3773), 1, + [109801] = 6, + ACTIONS(4622), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 4, anon_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, - [109823] = 4, - ACTIONS(3779), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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(3503), 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, - [109871] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6079), 12, - sym__automatic_semicolon, + anon_sym_QMARK, + ACTIONS(1975), 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(6077), 25, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231209,26 +229325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109917] = 3, + [109852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, - sym__automatic_semicolon, + ACTIONS(1878), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231254,24 +229367,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109963] = 3, + [109897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6083), 12, - sym__automatic_semicolon, + ACTIONS(6072), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6081), 25, + ACTIONS(6070), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231297,23 +229409,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110009] = 3, + [109942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6087), 11, + ACTIONS(6076), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6085), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231339,28 +229451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110054] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [109987] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(6080), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + anon_sym_AT, + ACTIONS(6078), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231384,19 +229491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110105] = 5, - ACTIONS(4633), 1, + anon_sym_abstract, + anon_sym_accessor, + [110032] = 5, + ACTIONS(4588), 1, anon_sym_LPAREN, - STATE(2350), 1, + STATE(2220), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -231406,7 +229514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 21, + anon_sym_GT, + ACTIONS(4412), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -231428,29 +229537,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [110154] = 7, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, + [110081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(6080), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + anon_sym_AT, + ACTIONS(6078), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231474,23 +229577,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110207] = 3, + anon_sym_abstract, + anon_sym_accessor, + [110126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6091), 11, + ACTIONS(6084), 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6089), 25, + ACTIONS(6082), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231516,41 +229621,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110252] = 14, - ACTIONS(2338), 1, + [110171] = 14, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6086), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(6088), 1, anon_sym_async, - ACTIONS(6099), 1, + ACTIONS(6092), 1, anon_sym_readonly, - STATE(2804), 1, + STATE(2807), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(6094), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231569,28 +229674,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110319] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [110238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1716), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + anon_sym_AT, + ACTIONS(1718), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231614,23 +229714,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110370] = 3, + anon_sym_abstract, + anon_sym_accessor, + [110283] = 7, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 11, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1971), 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(6103), 25, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231654,25 +229762,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110415] = 3, + [110336] = 7, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 11, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1975), 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(1845), 25, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231696,25 +229808,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110460] = 3, + [110389] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 11, - anon_sym_STAR, + ACTIONS(5843), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1971), 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(1803), 25, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231738,25 +229851,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110505] = 3, + [110437] = 11, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, + ACTIONS(6098), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6109), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(6100), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6102), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 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, + [110497] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(6104), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6107), 25, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3752), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231780,29 +229947,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110550] = 3, + [110553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6087), 11, + ACTIONS(3633), 9, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6085), 25, + ACTIONS(3631), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -231824,29 +229988,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110595] = 7, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, + [110597] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(6086), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(6090), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6094), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3752), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231856,8 +230024,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, @@ -231870,38 +230036,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110648] = 10, - ACTIONS(2338), 1, + [110655] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6086), 1, anon_sym_STAR, + ACTIONS(6088), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(6094), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -231918,45 +230085,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110706] = 17, - ACTIONS(1635), 1, + [110715] = 17, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(5076), 1, anon_sym_STAR, - ACTIONS(4653), 1, + ACTIONS(5078), 1, anon_sym_async, - ACTIONS(4789), 1, - anon_sym_accessor, - ACTIONS(6111), 1, + ACTIONS(6108), 1, anon_sym_static, - ACTIONS(6113), 1, + ACTIONS(6110), 1, anon_sym_readonly, - ACTIONS(6115), 1, + ACTIONS(6112), 1, anon_sym_declare, - ACTIONS(6117), 1, + ACTIONS(6114), 1, anon_sym_abstract, - STATE(2813), 1, + ACTIONS(6116), 1, + anon_sym_accessor, + STATE(2798), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4659), 2, + ACTIONS(5084), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + ACTIONS(6106), 2, + sym_number, + sym_private_property_identifier, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 16, + ACTIONS(3700), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231973,39 +230140,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110778] = 11, - ACTIONS(2338), 1, + [110787] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6119), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(6121), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - ACTIONS(6125), 2, + ACTIONS(6102), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3768), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -232022,30 +230188,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110838] = 9, - ACTIONS(2338), 1, + [110845] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6127), 1, - anon_sym_EQ_GT, + ACTIONS(6118), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(6122), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232055,8 +230224,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, @@ -232069,38 +230236,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110894] = 10, - ACTIONS(2338), 1, + [110903] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6118), 1, anon_sym_STAR, + ACTIONS(6124), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6131), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - ACTIONS(6133), 2, + ACTIONS(6122), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3835), 3, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -232117,48 +230285,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110952] = 11, - ACTIONS(2338), 1, + [110963] = 17, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(4656), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(4660), 1, anon_sym_async, + ACTIONS(4682), 1, + anon_sym_accessor, + ACTIONS(6126), 1, + anon_sym_static, + ACTIONS(6128), 1, + anon_sym_readonly, + ACTIONS(6130), 1, + anon_sym_declare, + ACTIONS(6132), 1, + anon_sym_abstract, + STATE(2793), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(4662), 2, sym_number, sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(4666), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3798), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(3700), 16, 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, @@ -232166,33 +230340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111012] = 10, - ACTIONS(2338), 1, + [111035] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6119), 1, + ACTIONS(6134), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - ACTIONS(6125), 2, + ACTIONS(6138), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3768), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232214,26 +230388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111070] = 5, + [111093] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, + ACTIONS(5843), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232257,25 +230431,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111118] = 10, - ACTIONS(2338), 1, + [111141] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6135), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(5507), 2, sym_number, sym_private_property_identifier, - ACTIONS(6139), 2, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3802), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(3843), 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, + [111194] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5547), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -232283,7 +230497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232293,6 +230507,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, @@ -232305,26 +230521,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111176] = 5, + [111247] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 4, + ACTIONS(6090), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, + STATE(3752), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111300] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232348,43 +230611,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111224] = 11, - ACTIONS(2338), 1, + [111353] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6135), 1, - anon_sym_STAR, - ACTIONS(6141), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(5441), 2, sym_number, sym_private_property_identifier, - ACTIONS(6139), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3851), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232397,54 +230656,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111284] = 17, - ACTIONS(1635), 1, + [111406] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5346), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3845), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(6145), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(6147), 1, anon_sym_readonly, - ACTIONS(6149), 1, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(6151), 1, - anon_sym_abstract, - ACTIONS(6153), 1, - anon_sym_accessor, - STATE(2797), 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, + [111459] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6143), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - STATE(3058), 3, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3787), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 16, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232452,28 +230746,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111356] = 8, - ACTIONS(2338), 1, + [111512] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5580), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3771), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232497,28 +230791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111409] = 8, - ACTIONS(2338), 1, + [111565] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6155), 2, + ACTIONS(5279), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3873), 3, + STATE(3863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232542,28 +230836,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111462] = 8, - ACTIONS(2338), 1, + [111618] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3792), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232587,36 +230881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111515] = 13, - ACTIONS(1635), 1, + [111671] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4856), 1, - anon_sym_static, - ACTIONS(4858), 1, - anon_sym_readonly, - ACTIONS(4860), 1, - anon_sym_abstract, - ACTIONS(4862), 1, - anon_sym_accessor, - STATE(2837), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(5364), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 20, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232624,12 +230910,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, @@ -232637,28 +230926,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111578] = 8, - ACTIONS(2338), 1, + [111724] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(6140), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3821), 3, + STATE(3860), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232682,24 +230971,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111631] = 6, - ACTIONS(6157), 1, - anon_sym_AT, - STATE(2748), 1, - aux_sym_export_statement_repeat1, - STATE(2808), 1, - sym_decorator, + [111777] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(5300), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3780), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111830] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6142), 2, sym_number, sym_private_property_identifier, - ACTIONS(3600), 25, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3846), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232723,30 +231061,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [111680] = 8, - ACTIONS(2338), 1, + [111883] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5395), 2, + ACTIONS(5330), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3859), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232770,28 +231106,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111733] = 8, - ACTIONS(2338), 1, + [111936] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6160), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3879), 3, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232815,28 +231151,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111786] = 8, - ACTIONS(2338), 1, + [111989] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6162), 2, + ACTIONS(5211), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3800), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232860,28 +231196,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111839] = 8, - ACTIONS(2338), 1, + [112042] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(5405), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3768), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232905,28 +231241,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111892] = 8, - ACTIONS(2338), 1, + [112095] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(6144), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3866), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232950,28 +231286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111945] = 8, - ACTIONS(2338), 1, + [112148] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3805), 3, + STATE(3841), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232995,28 +231331,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111998] = 8, - ACTIONS(2338), 1, + [112201] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5466), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3755), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233040,28 +231376,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112051] = 8, - ACTIONS(2338), 1, + [112254] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5474), 2, + ACTIONS(6148), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3839), 3, + STATE(3897), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233085,73 +231421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112104] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, + [112307] = 6, + ACTIONS(6150), 1, + anon_sym_AT, + STATE(2761), 1, + aux_sym_export_statement_repeat1, + STATE(2802), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6166), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3844), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112157] = 8, - ACTIONS(2338), 1, + ACTIONS(3626), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2340), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6137), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3851), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3624), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233175,28 +231462,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112210] = 8, - ACTIONS(2338), 1, + anon_sym_abstract, + anon_sym_accessor, + [112356] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, + ACTIONS(5411), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233220,28 +231509,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112263] = 8, - ACTIONS(2338), 1, + [112409] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, + ACTIONS(6153), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3885), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233265,78 +231554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112316] = 13, - ACTIONS(1635), 1, + [112462] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(6170), 1, - anon_sym_static, - ACTIONS(6172), 1, - anon_sym_readonly, - ACTIONS(6174), 1, - anon_sym_abstract, - ACTIONS(6176), 1, - anon_sym_accessor, - STATE(2877), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6168), 2, - sym_number, - sym_private_property_identifier, - STATE(3465), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 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, - [112379] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, + ACTIONS(5433), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3777), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233360,28 +231599,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112432] = 8, - ACTIONS(2338), 1, + [112515] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, + ACTIONS(5477), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3817), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233405,28 +231644,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112485] = 8, - ACTIONS(2338), 1, + [112568] = 13, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6157), 1, + anon_sym_static, + ACTIONS(6159), 1, + anon_sym_readonly, + ACTIONS(6161), 1, + anon_sym_abstract, + ACTIONS(6163), 1, + anon_sym_accessor, + STATE(2872), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3798), 3, + STATE(3458), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233434,15 +231681,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, @@ -233450,28 +231694,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112538] = 8, - ACTIONS(2338), 1, + [112631] = 13, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(4842), 1, + anon_sym_static, + ACTIONS(4844), 1, + anon_sym_readonly, + ACTIONS(4846), 1, + anon_sym_abstract, + ACTIONS(4848), 1, + anon_sym_accessor, + STATE(2814), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6131), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3835), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233479,15 +231731,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, @@ -233495,28 +231744,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112591] = 8, - ACTIONS(2338), 1, + [112694] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3761), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233540,28 +231789,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112644] = 8, - ACTIONS(2338), 1, + [112747] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(6165), 1, + anon_sym_RBRACE, + STATE(4692), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, + ACTIONS(6167), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3898), 3, + STATE(4151), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233585,134 +231834,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112697] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5415), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, + [112801] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2381), 1, anon_sym_type, + ACTIONS(2383), 1, anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + ACTIONS(3816), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112750] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, + ACTIONS(6169), 1, + anon_sym_default, + STATE(1344), 1, + sym_decorator, + STATE(3925), 1, + sym_declaration, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112803] = 8, - ACTIONS(2338), 1, + STATE(4275), 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, + [112881] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4620), 1, + anon_sym_STAR, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(4626), 1, + anon_sym_async, + ACTIONS(4630), 1, + anon_sym_readonly, + ACTIONS(6171), 1, + anon_sym_static, + STATE(2805), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3760), 3, + ACTIONS(4632), 2, + anon_sym_get, + anon_sym_set, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -233720,28 +231942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112856] = 8, - ACTIONS(2338), 1, + [112945] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(6173), 1, + anon_sym_RBRACE, + STATE(4646), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(6175), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3762), 3, + STATE(3976), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233765,44 +231987,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112909] = 8, - ACTIONS(2338), 1, + [112999] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(5000), 1, + anon_sym_STAR, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5006), 1, + anon_sym_readonly, + ACTIONS(6177), 1, + anon_sym_static, + STATE(2789), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5458), 2, + ACTIONS(5004), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3824), 3, + ACTIONS(5008), 2, + anon_sym_get, + anon_sym_set, + STATE(3147), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -233810,45 +232037,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112962] = 14, - ACTIONS(1635), 1, + [113063] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(6179), 1, + anon_sym_STAR, + ACTIONS(6183), 1, anon_sym_readonly, - ACTIONS(6180), 1, - anon_sym_static, - STATE(2801), 1, + STATE(2796), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(6181), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(6185), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 17, + ACTIONS(3700), 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, @@ -233860,28 +232085,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113026] = 9, - ACTIONS(1551), 1, + [113123] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6187), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233905,28 +232130,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113080] = 9, - ACTIONS(1551), 1, + [113177] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6186), 1, + ACTIONS(6191), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233950,28 +232175,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113134] = 9, - ACTIONS(1551), 1, + [113231] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6188), 1, + ACTIONS(6193), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233995,28 +232220,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113188] = 9, - ACTIONS(1551), 1, + [113285] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6190), 1, + ACTIONS(6195), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234040,86 +232265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113242] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2290), 1, - anon_sym_namespace, - ACTIONS(2294), 1, - anon_sym_import, - ACTIONS(2296), 1, - anon_sym_var, - ACTIONS(2298), 1, - anon_sym_let, - ACTIONS(2300), 1, - anon_sym_const, - ACTIONS(2305), 1, - anon_sym_class, - ACTIONS(2307), 1, - anon_sym_async, - ACTIONS(2309), 1, - anon_sym_function, - ACTIONS(2314), 1, - anon_sym_declare, - ACTIONS(2316), 1, - anon_sym_module, - ACTIONS(2318), 1, - anon_sym_abstract, - ACTIONS(2320), 1, - anon_sym_interface, - ACTIONS(2322), 1, - anon_sym_enum, - ACTIONS(2352), 1, - anon_sym_type, - ACTIONS(6192), 1, - anon_sym_default, - STATE(824), 1, - sym_internal_module, - STATE(926), 1, - sym_declaration, - STATE(1297), 1, - sym_decorator, - STATE(4084), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(836), 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, - [113322] = 9, - ACTIONS(1551), 1, + [113339] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6194), 1, + ACTIONS(6197), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234143,28 +232310,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113376] = 9, - ACTIONS(1551), 1, + [113393] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6196), 1, + ACTIONS(6199), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234188,45 +232355,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113430] = 14, - ACTIONS(2338), 1, + [113447] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5904), 1, + anon_sym_readonly, + ACTIONS(6201), 1, anon_sym_STAR, - ACTIONS(6198), 1, - anon_sym_static, - STATE(2805), 1, + STATE(2799), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(6203), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(6205), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3065), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 17, + ACTIONS(3700), 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, @@ -234238,35 +232403,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113494] = 12, - ACTIONS(1635), 1, + [113507] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5826), 1, - anon_sym_readonly, - ACTIONS(6200), 1, - anon_sym_STAR, - STATE(2817), 1, - sym_override_modifier, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(5285), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6202), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - ACTIONS(6204), 2, - anon_sym_get, - anon_sym_set, - STATE(3072), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234275,10 +232433,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, @@ -234286,35 +232448,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113554] = 12, - ACTIONS(1635), 1, + [113561] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_STAR, - ACTIONS(6210), 1, - anon_sym_readonly, - STATE(2798), 1, - sym_override_modifier, + ACTIONS(6209), 1, + anon_sym_RBRACE, + STATE(5285), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6208), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - ACTIONS(6212), 2, - anon_sym_get, - anon_sym_set, - STATE(3051), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234323,10 +232478,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, @@ -234334,51 +232493,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113614] = 22, - ACTIONS(99), 1, + [113615] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2392), 1, - anon_sym_type, - ACTIONS(2394), 1, + ACTIONS(2137), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2141), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2143), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2145), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2147), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2152), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2154), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2156), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2161), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2165), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2167), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2169), 1, anon_sym_enum, - ACTIONS(3845), 1, + ACTIONS(2341), 1, + anon_sym_type, + ACTIONS(2343), 1, anon_sym_module, - ACTIONS(6214), 1, - anon_sym_default, - STATE(1297), 1, - sym_decorator, - STATE(3916), 1, + ACTIONS(2345), 1, + anon_sym_global, + STATE(824), 1, sym_internal_module, - STATE(4062), 1, + STATE(867), 1, sym_declaration, - STATE(4322), 1, + STATE(1344), 1, + sym_decorator, + STATE(4301), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3912), 13, + STATE(831), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234392,96 +232551,51 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113694] = 9, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6216), 1, - anon_sym_RBRACE, - STATE(4673), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6218), 2, - sym_number, - sym_private_property_identifier, - STATE(3958), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113748] = 22, - ACTIONS(99), 1, + [113695] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2290), 1, + ACTIONS(2381), 1, + anon_sym_type, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2294), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2296), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2298), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2300), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2305), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2307), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2309), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2314), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2316), 1, + ACTIONS(2401), 1, anon_sym_module, - ACTIONS(2318), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2320), 1, + ACTIONS(2405), 1, + anon_sym_global, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2322), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(2352), 1, - anon_sym_type, - ACTIONS(6220), 1, - anon_sym_default, - STATE(824), 1, - sym_internal_module, - STATE(926), 1, - sym_declaration, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(4084), 1, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, aux_sym_export_statement_repeat1, + STATE(4310), 1, + sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(836), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234495,39 +232609,39 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113828] = 14, - ACTIONS(1635), 1, + [113775] = 14, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5037), 1, - anon_sym_async, - ACTIONS(5041), 1, - anon_sym_readonly, - ACTIONS(6222), 1, + ACTIONS(6211), 1, anon_sym_static, - STATE(2807), 1, + STATE(2813), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5039), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5043), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3108), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 17, + ACTIONS(2351), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234545,186 +232659,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113892] = 9, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_RBRACE, - STATE(4703), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6226), 2, - sym_number, - sym_private_property_identifier, - STATE(4142), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113946] = 9, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6228), 1, - anon_sym_RBRACE, - STATE(5183), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6184), 2, - sym_number, - sym_private_property_identifier, - STATE(4522), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114000] = 9, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(5183), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6184), 2, - sym_number, - sym_private_property_identifier, - STATE(4522), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114054] = 22, - ACTIONS(99), 1, + [113839] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2290), 1, + ACTIONS(2137), 1, anon_sym_namespace, - ACTIONS(2294), 1, + ACTIONS(2141), 1, anon_sym_import, - ACTIONS(2296), 1, + ACTIONS(2143), 1, anon_sym_var, - ACTIONS(2298), 1, + ACTIONS(2145), 1, anon_sym_let, - ACTIONS(2300), 1, + ACTIONS(2147), 1, anon_sym_const, - ACTIONS(2305), 1, + ACTIONS(2152), 1, anon_sym_class, - ACTIONS(2307), 1, + ACTIONS(2154), 1, anon_sym_async, - ACTIONS(2309), 1, + ACTIONS(2156), 1, anon_sym_function, - ACTIONS(2314), 1, + ACTIONS(2161), 1, anon_sym_declare, - ACTIONS(2318), 1, + ACTIONS(2163), 1, + anon_sym_module, + ACTIONS(2165), 1, anon_sym_abstract, - ACTIONS(2320), 1, + ACTIONS(2167), 1, anon_sym_interface, - ACTIONS(2322), 1, + ACTIONS(2169), 1, anon_sym_enum, - ACTIONS(2352), 1, + ACTIONS(2341), 1, anon_sym_type, - ACTIONS(2354), 1, - anon_sym_module, - ACTIONS(2356), 1, - anon_sym_global, + ACTIONS(6213), 1, + anon_sym_default, STATE(824), 1, sym_internal_module, - STATE(869), 1, + STATE(921), 1, sym_declaration, - STATE(1297), 1, + STATE(1344), 1, sym_decorator, - STATE(4084), 1, + STATE(4301), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(836), 13, + STATE(831), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234738,51 +232717,51 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [114134] = 22, - ACTIONS(99), 1, + [113919] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2392), 1, - anon_sym_type, - ACTIONS(2394), 1, + ACTIONS(2137), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2141), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2143), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2145), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2147), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2152), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2154), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2156), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2161), 1, anon_sym_declare, - ACTIONS(2412), 1, + ACTIONS(2163), 1, anon_sym_module, - ACTIONS(2414), 1, + ACTIONS(2165), 1, anon_sym_abstract, - ACTIONS(2416), 1, - anon_sym_global, - ACTIONS(2418), 1, + ACTIONS(2167), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2169), 1, anon_sym_enum, - STATE(1297), 1, - sym_decorator, - STATE(3916), 1, + ACTIONS(2341), 1, + anon_sym_type, + ACTIONS(6215), 1, + anon_sym_default, + STATE(824), 1, sym_internal_module, - STATE(3947), 1, + STATE(921), 1, sym_declaration, - STATE(4322), 1, + STATE(1344), 1, + sym_decorator, + STATE(4301), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3912), 13, + STATE(831), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234796,33 +232775,33 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [114214] = 11, - ACTIONS(1635), 1, + [113999] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5506), 1, + ACTIONS(5105), 1, anon_sym_async, - ACTIONS(6232), 1, + ACTIONS(5109), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(5107), 2, sym_number, sym_private_property_identifier, - ACTIONS(5510), 2, + ACTIONS(5111), 2, anon_sym_get, anon_sym_set, - STATE(3070), 3, + STATE(3135), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234842,33 +232821,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114271] = 11, - ACTIONS(1635), 1, + [114056] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3652), 7, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1637), 1, anon_sym_SQUOTE, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4595), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3650), 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, + [114097] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(5475), 1, + anon_sym_STAR, + ACTIONS(5481), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(6217), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(5485), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3074), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234888,33 +232905,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114328] = 11, - ACTIONS(1635), 1, + [114154] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(6236), 1, + ACTIONS(4630), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6234), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - STATE(3080), 3, + ACTIONS(4632), 2, + anon_sym_get, + anon_sym_set, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234934,19 +232951,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114385] = 3, + [114211] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_STAR, + ACTIONS(5068), 1, + anon_sym_async, + ACTIONS(5072), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 7, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(5070), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5074), 2, + anon_sym_get, + anon_sym_set, + STATE(3064), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, + [114268] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + STATE(5285), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3581), 25, + STATE(4446), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234970,35 +233040,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114426] = 11, - ACTIONS(1635), 1, + [114319] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(4656), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(4660), 1, anon_sym_async, - ACTIONS(6240), 1, + ACTIONS(4664), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6238), 2, + ACTIONS(4662), 2, sym_number, sym_private_property_identifier, - STATE(3054), 3, + ACTIONS(4666), 2, + anon_sym_get, + anon_sym_set, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235018,29 +233086,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114483] = 9, - ACTIONS(2338), 1, + [114376] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(6201), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5710), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - ACTIONS(6242), 2, + ACTIONS(6219), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235062,33 +233130,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114536] = 11, - ACTIONS(1635), 1, + [114429] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5518), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5524), 1, + ACTIONS(5273), 1, anon_sym_async, - ACTIONS(6244), 1, + ACTIONS(6223), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5528), 2, + ACTIONS(5277), 2, anon_sym_get, anon_sym_set, - STATE(3098), 3, + ACTIONS(6221), 2, + sym_number, + sym_private_property_identifier, + STATE(3058), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235108,33 +233176,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114593] = 11, - ACTIONS(1635), 1, + [114486] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, + ACTIONS(5137), 1, anon_sym_STAR, - ACTIONS(5037), 1, + ACTIONS(5139), 1, anon_sym_async, - ACTIONS(5041), 1, + ACTIONS(6227), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5039), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5043), 2, + ACTIONS(5145), 2, anon_sym_get, anon_sym_set, - STATE(3108), 3, + ACTIONS(6225), 2, + sym_number, + sym_private_property_identifier, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235154,40 +233222,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114650] = 11, - ACTIONS(1635), 1, + [114543] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(6229), 1, anon_sym_STAR, - ACTIONS(5166), 1, - anon_sym_async, - ACTIONS(5170), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5168), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - ACTIONS(5172), 2, + ACTIONS(6231), 2, anon_sym_get, anon_sym_set, - STATE(3133), 3, + STATE(3787), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 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, @@ -235200,30 +233266,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114707] = 3, + [114596] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5000), 1, + anon_sym_STAR, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5006), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3639), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5004), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3637), 25, + ACTIONS(5008), 2, + anon_sym_get, + anon_sym_set, + STATE(3147), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, @@ -235236,35 +233312,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114748] = 4, + [114653] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_STAR, + ACTIONS(5139), 1, + anon_sym_async, + ACTIONS(6235), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5145), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6233), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, @@ -235277,40 +233358,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114791] = 11, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6119), 1, - anon_sym_STAR, - ACTIONS(6121), 1, - anon_sym_async, - ACTIONS(6246), 1, - anon_sym_readonly, + [114710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(3675), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6125), 2, - anon_sym_get, - anon_sym_set, - STATE(3768), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 19, + anon_sym_AT, + ACTIONS(3673), 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, @@ -235323,33 +233394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114848] = 11, - ACTIONS(2338), 1, + anon_sym_abstract, + anon_sym_accessor, + [114751] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(5505), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(5511), 1, anon_sym_async, - ACTIONS(6099), 1, + ACTIONS(6237), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(5513), 2, sym_number, sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(5515), 2, anon_sym_get, anon_sym_set, - STATE(3798), 3, + STATE(3098), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235369,40 +233442,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114905] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(6250), 1, - anon_sym_readonly, + [114808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6248), 2, + ACTIONS(3667), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3063), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 19, + anon_sym_AT, + ACTIONS(3665), 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, @@ -235415,33 +233478,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114962] = 11, - ACTIONS(1635), 1, + anon_sym_abstract, + anon_sym_accessor, + [114849] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5151), 1, anon_sym_STAR, - ACTIONS(5123), 1, + ACTIONS(5153), 1, anon_sym_async, - ACTIONS(5127), 1, + ACTIONS(5157), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, + ACTIONS(5155), 2, sym_number, sym_private_property_identifier, - ACTIONS(5129), 2, + ACTIONS(5159), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3097), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235461,11 +233526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115019] = 3, + [114906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3668), 7, + ACTIONS(3572), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -235473,7 +233538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3666), 25, + ACTIONS(3570), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235499,33 +233564,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [115060] = 11, - ACTIONS(1635), 1, + [114947] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(5409), 1, + ACTIONS(6098), 1, anon_sym_async, - ACTIONS(6254), 1, + ACTIONS(6239), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(6100), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6102), 2, anon_sym_get, anon_sym_set, - ACTIONS(6252), 2, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 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, + [115004] = 11, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3077), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235545,33 +233656,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115117] = 11, - ACTIONS(1635), 1, + [115061] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(5393), 1, anon_sym_STAR, - ACTIONS(4653), 1, + ACTIONS(5395), 1, anon_sym_async, - ACTIONS(4657), 1, + ACTIONS(6241), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, + ACTIONS(5397), 2, sym_number, sym_private_property_identifier, - ACTIONS(4659), 2, + ACTIONS(5399), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + STATE(3143), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235591,7 +233702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115174] = 3, + [115118] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -235629,19 +233740,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [115215] = 3, + [115159] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_STAR, + ACTIONS(5078), 1, + anon_sym_async, + ACTIONS(6245), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 7, + ACTIONS(5084), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6243), 2, + sym_number, + sym_private_property_identifier, + STATE(3070), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, + [115216] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3591), 25, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235665,35 +233825,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [115256] = 11, - ACTIONS(1635), 1, + [115259] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(6086), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(6088), 1, anon_sym_async, - ACTIONS(5092), 1, + ACTIONS(6092), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(6094), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235713,26 +233871,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115313] = 8, - ACTIONS(1551), 1, + [115316] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - STATE(5183), 1, - sym_enum_assignment, + ACTIONS(5880), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(3399), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235741,7 +233899,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, @@ -235756,40 +233913,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115364] = 11, - ACTIONS(1635), 1, + [115366] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, - anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, - ACTIONS(6256), 1, + ACTIONS(6249), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 2, + ACTIONS(6247), 2, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, - anon_sym_get, - anon_sym_set, - STATE(3124), 3, + STATE(3460), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 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, @@ -235802,40 +233955,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115421] = 11, - ACTIONS(2338), 1, + [115416] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(6251), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, + STATE(3321), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235848,29 +233996,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115478] = 9, - ACTIONS(2338), 1, + [115464] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6258), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6260), 2, + STATE(3752), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_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(3885), 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, + [115512] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5507), 2, + sym_number, + sym_private_property_identifier, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235880,6 +234064,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, @@ -235892,24 +234078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115531] = 7, - ACTIONS(2338), 1, + [115560] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3817), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235933,24 +234119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115579] = 7, - ACTIONS(2338), 1, + [115608] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6162), 2, + ACTIONS(5364), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235974,24 +234160,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115627] = 7, - ACTIONS(2338), 1, + [115656] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(3399), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236015,24 +234201,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115675] = 7, - ACTIONS(1635), 1, + [115704] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6262), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - STATE(3327), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236056,24 +234242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115723] = 7, - ACTIONS(1635), 1, + [115752] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6264), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - STATE(3446), 3, + STATE(3787), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236097,24 +234283,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115771] = 7, - ACTIONS(2338), 1, + [115800] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4674), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236138,24 +234324,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115819] = 7, - ACTIONS(2338), 1, + [115848] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(5477), 2, sym_number, sym_private_property_identifier, - STATE(3768), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236179,24 +234365,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115867] = 7, - ACTIONS(2338), 1, + [115896] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236220,24 +234406,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115915] = 7, - ACTIONS(2338), 1, + [115944] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(3805), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236261,24 +234447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115963] = 7, - ACTIONS(2338), 1, + [115992] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5389), 2, + ACTIONS(5433), 2, sym_number, sym_private_property_identifier, - STATE(3872), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236302,65 +234488,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116011] = 7, - ACTIONS(2338), 1, + [116040] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - STATE(3824), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 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(5904), 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, - [116059] = 7, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6266), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3340), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236369,7 +234516,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, @@ -236384,24 +234530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116107] = 7, - ACTIONS(2338), 1, + [116090] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5466), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3755), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236425,24 +234571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116155] = 7, - ACTIONS(2338), 1, + [116138] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5441), 2, sym_number, sym_private_property_identifier, - STATE(3839), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236466,66 +234612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116203] = 8, - ACTIONS(1635), 1, + [116186] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6270), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6268), 2, + ACTIONS(5292), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 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, - [116253] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5580), 2, - sym_number, - sym_private_property_identifier, - STATE(3771), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236549,24 +234653,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116301] = 7, - ACTIONS(2338), 1, + [116234] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6166), 2, + ACTIONS(6253), 2, sym_number, sym_private_property_identifier, - STATE(3844), 3, + STATE(3442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236590,24 +234694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116349] = 7, - ACTIONS(2338), 1, + [116282] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3851), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236631,24 +234735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116397] = 7, - ACTIONS(2338), 1, + [116330] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236672,26 +234776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116445] = 8, - ACTIONS(1635), 1, + [116378] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5879), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236700,6 +234802,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, @@ -236714,24 +234817,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116495] = 7, - ACTIONS(1635), 1, + [116426] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5330), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236755,24 +234858,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116543] = 7, - ACTIONS(2338), 1, + [116474] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(6140), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3860), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236796,24 +234899,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116591] = 7, - ACTIONS(2338), 1, + [116522] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5547), 2, sym_number, sym_private_property_identifier, - STATE(3765), 3, + STATE(3851), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236837,24 +234940,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116639] = 7, - ACTIONS(2338), 1, + [116570] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - STATE(3885), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236878,24 +234981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116687] = 7, - ACTIONS(1635), 1, + [116618] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(5211), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236919,24 +235022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116735] = 7, - ACTIONS(1635), 1, + [116666] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6272), 2, + ACTIONS(6153), 2, sym_number, sym_private_property_identifier, - STATE(3450), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236960,26 +235063,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116783] = 8, - ACTIONS(1635), 1, + [116714] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6276), 1, + ACTIONS(6257), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6274), 2, + ACTIONS(6255), 2, sym_number, sym_private_property_identifier, - STATE(3459), 3, + STATE(3451), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237002,24 +235105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116833] = 7, - ACTIONS(1635), 1, + [116764] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6278), 2, + ACTIONS(5405), 2, sym_number, sym_private_property_identifier, - STATE(3461), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237043,26 +235146,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116881] = 8, - ACTIONS(1635), 1, + [116812] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6280), 2, + ACTIONS(6148), 2, sym_number, sym_private_property_identifier, - STATE(3468), 3, + STATE(3897), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237071,48 +235172,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [116931] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(6286), 1, anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6284), 2, - sym_number, - sym_private_property_identifier, - STATE(3338), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 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, @@ -237127,24 +235187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116981] = 7, - ACTIONS(1635), 1, + [116860] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6288), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - STATE(3345), 3, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237168,24 +235228,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117029] = 7, - ACTIONS(2338), 1, + [116908] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6259), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5710), 2, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3358), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237194,7 +235256,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, @@ -237209,24 +235270,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117077] = 7, - ACTIONS(2338), 1, + [116958] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - STATE(3798), 3, + STATE(3358), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237250,24 +235311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117125] = 7, - ACTIONS(2338), 1, + [117006] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6131), 2, + ACTIONS(6261), 2, sym_number, sym_private_property_identifier, - STATE(3835), 3, + STATE(3452), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237291,26 +235352,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117173] = 8, - ACTIONS(1635), 1, + [117054] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6292), 1, + ACTIONS(6265), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6290), 2, + ACTIONS(6263), 2, sym_number, sym_private_property_identifier, - STATE(3421), 3, + STATE(3402), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237333,65 +235394,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117223] = 7, - ACTIONS(2338), 1, + [117104] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5375), 2, - sym_number, - sym_private_property_identifier, - STATE(3858), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 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(6269), 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, - [117271] = 7, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6294), 2, + ACTIONS(6267), 2, sym_number, sym_private_property_identifier, - STATE(3427), 3, + STATE(3422), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237400,7 +235422,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, @@ -237415,24 +235436,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117319] = 7, - ACTIONS(2338), 1, + [117154] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, + ACTIONS(6271), 2, sym_number, sym_private_property_identifier, - STATE(3898), 3, + STATE(3425), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237456,24 +235477,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117367] = 7, - ACTIONS(2338), 1, + [117202] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6275), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(6273), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3461), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237482,7 +235505,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, @@ -237497,26 +235519,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117415] = 8, - ACTIONS(1635), 1, + [117252] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5826), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(6277), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3350), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237525,6 +235545,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, @@ -237539,24 +235560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117465] = 7, - ACTIONS(2338), 1, + [117300] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5415), 2, + ACTIONS(6144), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237580,24 +235601,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117513] = 7, - ACTIONS(2338), 1, + [117348] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5411), 2, sym_number, sym_private_property_identifier, - STATE(3792), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237621,24 +235642,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117561] = 7, - ACTIONS(2338), 1, + [117396] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6281), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - STATE(3758), 3, + STATE(3392), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237647,7 +235670,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, @@ -237662,24 +235684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117609] = 7, - ACTIONS(2338), 1, + [117446] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6160), 2, + ACTIONS(5376), 2, sym_number, sym_private_property_identifier, - STATE(3879), 3, + STATE(3781), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237703,24 +235725,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117657] = 7, - ACTIONS(2338), 1, + [117494] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(6283), 2, sym_number, sym_private_property_identifier, - STATE(3760), 3, + STATE(3394), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237744,24 +235766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117705] = 7, - ACTIONS(1635), 1, + [117542] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 2, + ACTIONS(5300), 2, sym_number, sym_private_property_identifier, - STATE(3411), 3, + STATE(3780), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237785,24 +235807,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117753] = 7, - ACTIONS(2338), 1, + [117590] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3762), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237826,26 +235848,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117801] = 8, - ACTIONS(1635), 1, + [117638] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6298), 1, + ACTIONS(6287), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6296), 2, + ACTIONS(6285), 2, sym_number, sym_private_property_identifier, - STATE(3416), 3, + STATE(3423), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237868,26 +235890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117851] = 8, - ACTIONS(1635), 1, + [117688] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6300), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(6289), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + STATE(3426), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237896,6 +235916,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, @@ -237910,24 +235931,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117901] = 7, - ACTIONS(1635), 1, + [117736] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + STATE(3841), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237951,26 +235972,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117949] = 8, - ACTIONS(1635), 1, + [117784] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6304), 1, + ACTIONS(6293), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6302), 2, + ACTIONS(6291), 2, sym_number, sym_private_property_identifier, - STATE(3325), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237993,26 +236014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117999] = 8, - ACTIONS(1635), 1, + [117834] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6308), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6306), 2, + ACTIONS(6295), 2, sym_number, sym_private_property_identifier, - STATE(3364), 3, + STATE(3393), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238021,6 +236040,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, @@ -238035,24 +236055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118049] = 7, - ACTIONS(1635), 1, + [117882] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6310), 2, + ACTIONS(5427), 2, sym_number, sym_private_property_identifier, - STATE(3367), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238076,24 +236096,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118097] = 7, - ACTIONS(2338), 1, + [117930] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6299), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5395), 2, + ACTIONS(6297), 2, sym_number, sym_private_property_identifier, - STATE(3859), 3, + STATE(3405), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238102,7 +236124,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, @@ -238117,24 +236138,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118145] = 7, - ACTIONS(2338), 1, + [117980] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6155), 2, + ACTIONS(5279), 2, sym_number, sym_private_property_identifier, - STATE(3873), 3, + STATE(3863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238158,26 +236179,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118193] = 8, - ACTIONS(1635), 1, + [118028] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6314), 1, + ACTIONS(6303), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6312), 2, + ACTIONS(6301), 2, sym_number, sym_private_property_identifier, - STATE(3400), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238200,24 +236221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118243] = 7, - ACTIONS(1635), 1, + [118078] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6316), 2, + ACTIONS(6305), 2, sym_number, sym_private_property_identifier, - STATE(3403), 3, + STATE(3324), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238241,26 +236262,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118291] = 8, - ACTIONS(1635), 1, + [118126] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6320), 1, + ACTIONS(6309), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6318), 2, + ACTIONS(6307), 2, sym_number, sym_private_property_identifier, - STATE(3424), 3, + STATE(3333), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238283,24 +236304,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118341] = 7, - ACTIONS(1635), 1, + [118176] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6322), 2, + ACTIONS(6311), 2, sym_number, sym_private_property_identifier, - STATE(3425), 3, + STATE(3408), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238324,66 +236345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118389] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(6326), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6324), 2, - sym_number, - sym_private_property_identifier, - STATE(3430), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 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, - [118439] = 7, - ACTIONS(2338), 1, + [118224] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, + ACTIONS(6142), 2, sym_number, sym_private_property_identifier, - STATE(3777), 3, + STATE(3846), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238407,15 +236386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118487] = 4, - ACTIONS(6328), 1, + [118272] = 4, + ACTIONS(6313), 1, sym_identifier, - STATE(5637), 1, + STATE(5613), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6330), 22, + ACTIONS(6315), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238438,26 +236417,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118522] = 9, - ACTIONS(3535), 1, + [118307] = 9, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(6066), 1, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(6332), 1, + ACTIONS(6317), 1, anon_sym_DOT, - ACTIONS(6334), 1, + ACTIONS(6319), 1, anon_sym_QMARK_DOT, - STATE(2922), 1, + STATE(2918), 1, sym_arguments, - STATE(2966), 1, + STATE(2975), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 2, + ACTIONS(4068), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4059), 12, + ACTIONS(4070), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238465,31 +236444,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [118563] = 9, - ACTIONS(3535), 1, + [118348] = 9, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6321), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(6323), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2919), 1, + STATE(2920), 1, sym_arguments, - STATE(2954), 1, + STATE(2973), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(4060), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3505), 12, + ACTIONS(4062), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238497,31 +236476,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [118604] = 9, - ACTIONS(3535), 1, + [118389] = 9, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6336), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(6338), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - STATE(2935), 1, + ACTIONS(3576), 1, + anon_sym_LT, + STATE(2917), 1, sym_arguments, - STATE(2964), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 2, + ACTIONS(3522), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4065), 12, + ACTIONS(3512), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238529,19 +236508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [118645] = 3, + [118430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 2, + ACTIONS(4380), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4415), 17, + ACTIONS(4382), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238551,22 +236530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118673] = 3, + [118458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, + ACTIONS(4284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4419), 17, + ACTIONS(4286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238576,22 +236555,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118701] = 3, + [118486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, + ACTIONS(4284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4419), 17, + ACTIONS(4286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238601,22 +236580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118729] = 3, + [118514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 2, + ACTIONS(4308), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4133), 17, + ACTIONS(4310), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238626,22 +236605,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118757] = 3, + [118542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, + ACTIONS(4246), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4129), 17, + ACTIONS(4248), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238651,22 +236630,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118785] = 3, + [118570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 2, + ACTIONS(4242), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4133), 17, + ACTIONS(4244), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238676,22 +236655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118813] = 3, + [118598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, + ACTIONS(4246), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4129), 17, + ACTIONS(4248), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238701,22 +236680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118841] = 3, + [118626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 2, + ACTIONS(4246), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4147), 17, + ACTIONS(4248), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238726,22 +236705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118869] = 3, + [118654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 2, + ACTIONS(4242), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4165), 17, + ACTIONS(4244), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238751,22 +236730,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118897] = 3, + [118682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 2, + ACTIONS(4276), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4147), 17, + ACTIONS(4278), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238776,22 +236755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118925] = 3, + [118710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 2, + ACTIONS(4158), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4165), 17, + ACTIONS(4160), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238801,22 +236780,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118953] = 3, + [118738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 2, + ACTIONS(4312), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4280), 17, + ACTIONS(4314), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238826,22 +236805,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [118981] = 3, + [118766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4280), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4125), 17, + ACTIONS(4282), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238851,22 +236830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119009] = 3, + [118794] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 2, + ACTIONS(4122), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4298), 17, + ACTIONS(4124), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238876,22 +236855,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119037] = 3, + [118822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 2, + ACTIONS(4280), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4298), 17, + ACTIONS(4282), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238901,22 +236880,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119065] = 3, + [118850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4308), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4260), 17, + ACTIONS(4310), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238926,22 +236905,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119093] = 3, + [118878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 2, + ACTIONS(4122), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4280), 17, + ACTIONS(4124), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238951,22 +236930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119121] = 3, + [118906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 2, + ACTIONS(4132), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4415), 17, + ACTIONS(4134), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238976,22 +236955,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119149] = 3, + [118934] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 2, + ACTIONS(4136), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4280), 17, + ACTIONS(4138), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239001,22 +236980,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119177] = 3, + [118962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 2, + ACTIONS(4284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4290), 17, + ACTIONS(4286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239026,22 +237005,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119205] = 3, + [118990] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4132), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4125), 17, + ACTIONS(4134), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239051,22 +237030,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119233] = 3, + [119018] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 2, + ACTIONS(4136), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4290), 17, + ACTIONS(4138), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239076,22 +237055,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119261] = 3, + [119046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 2, + ACTIONS(4162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4242), 17, + ACTIONS(4164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239101,22 +237080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119289] = 3, + [119074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 2, + ACTIONS(4234), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4246), 17, + ACTIONS(4236), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239126,22 +237105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119317] = 3, + [119102] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 2, + ACTIONS(4238), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4276), 17, + ACTIONS(4240), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239151,22 +237130,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119345] = 3, + [119130] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 2, + ACTIONS(4238), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4246), 17, + ACTIONS(4240), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239176,22 +237155,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119373] = 3, + [119158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 2, + ACTIONS(4166), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4246), 17, + ACTIONS(4168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239201,22 +237180,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119401] = 3, + [119186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4238), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4260), 17, + ACTIONS(4240), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239226,22 +237205,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119429] = 3, + [119214] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 2, + ACTIONS(4162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4290), 17, + ACTIONS(4164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239251,22 +237230,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119457] = 3, + [119242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 2, + ACTIONS(4166), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4298), 17, + ACTIONS(4168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239276,22 +237255,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119485] = 3, + [119270] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4242), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4260), 17, + ACTIONS(4244), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239301,22 +237280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119513] = 3, + [119298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 2, + ACTIONS(4308), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4389), 17, + ACTIONS(4310), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239326,22 +237305,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119541] = 3, + [119326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 2, + ACTIONS(4280), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4397), 17, + ACTIONS(4282), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239351,22 +237330,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119569] = 3, + [119354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4380), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4125), 17, + ACTIONS(4382), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239376,21 +237355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [119597] = 3, - ACTIONS(1923), 1, + [119382] = 3, + ACTIONS(1728), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1921), 17, + ACTIONS(1726), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239408,13 +237387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119624] = 3, - ACTIONS(1927), 1, + [119409] = 3, + ACTIONS(1756), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 17, + ACTIONS(1754), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239432,44 +237411,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119651] = 3, + [119436] = 3, + ACTIONS(4418), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4286), 15, + ACTIONS(4420), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119677] = 7, - ACTIONS(4077), 1, - anon_sym_EQ, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, + [119462] = 5, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(6342), 1, - anon_sym_is, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 12, + ACTIONS(3522), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3512), 13, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239477,42 +237454,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [119711] = 3, - ACTIONS(4341), 1, - anon_sym_EQ, + [119492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 16, + ACTIONS(4320), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4322), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - [119737] = 3, + [119518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4328), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 15, + ACTIONS(4330), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239521,20 +237498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [119763] = 3, - ACTIONS(4349), 1, + [119544] = 3, + ACTIONS(4426), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 16, + ACTIONS(4428), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239544,25 +237521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119789] = 5, - ACTIONS(6344), 1, - anon_sym_DOT, - ACTIONS(6346), 1, - anon_sym_QMARK_DOT, + [119570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 2, + ACTIONS(4346), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4401), 13, + ACTIONS(4348), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239571,75 +237544,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [119819] = 3, - ACTIONS(4353), 1, - anon_sym_EQ, + [119596] = 15, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(6325), 1, + sym_identifier, + ACTIONS(6327), 1, + anon_sym_STAR, + ACTIONS(6329), 1, + anon_sym_type, + ACTIONS(6331), 1, + anon_sym_LBRACE, + ACTIONS(6333), 1, + anon_sym_typeof, + ACTIONS(6337), 1, + anon_sym_DOT, + STATE(4113), 1, + sym_string, + STATE(4131), 1, + sym_import_require_clause, + STATE(5136), 1, + sym__import_identifier, + STATE(5258), 1, + sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119845] = 9, - ACTIONS(3507), 1, + STATE(5844), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(6335), 3, anon_sym_LPAREN, - ACTIONS(4057), 1, - anon_sym_PIPE, - ACTIONS(6348), 1, - anon_sym_DOT, - ACTIONS(6350), 1, anon_sym_QMARK_DOT, - ACTIONS(6352), 1, anon_sym_LT, - STATE(3125), 1, - sym_arguments, - STATE(3257), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119883] = 5, - ACTIONS(3537), 1, + [119646] = 5, + ACTIONS(6339), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(6341), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(4224), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3505), 13, + ACTIONS(4226), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239648,78 +237606,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [119913] = 15, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(6354), 1, - sym_identifier, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_type, - ACTIONS(6360), 1, - anon_sym_LBRACE, - ACTIONS(6362), 1, - anon_sym_typeof, - ACTIONS(6366), 1, - anon_sym_DOT, - STATE(4137), 1, - sym_string, - STATE(4145), 1, - sym_import_require_clause, - STATE(5185), 1, - sym_import_clause, - STATE(5314), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5825), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6364), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + [119676] = 6, + ACTIONS(3576), 1, anon_sym_LT, - [119963] = 3, - ACTIONS(3703), 1, + ACTIONS(4054), 1, anon_sym_EQ, + ACTIONS(6343), 1, + anon_sym_DOT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 16, - anon_sym_as, + ACTIONS(3548), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119989] = 4, - ACTIONS(1893), 1, + [119708] = 4, + ACTIONS(1888), 1, anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(4384), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 15, + ACTIONS(4386), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239728,32 +237654,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120017] = 9, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(4063), 1, + [119736] = 9, + ACTIONS(3522), 1, anon_sym_PIPE, - ACTIONS(6352), 1, - anon_sym_LT, - ACTIONS(6368), 1, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(6370), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - STATE(3106), 1, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(3086), 1, sym_arguments, - STATE(3255), 1, + STATE(3215), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 10, + ACTIONS(3512), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239764,37 +237690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120055] = 4, - ACTIONS(1897), 1, - anon_sym_DOT, - ACTIONS(4203), 1, + [119774] = 3, + ACTIONS(3691), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 15, + ACTIONS(3474), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120083] = 3, - ACTIONS(3687), 1, + [119800] = 3, + ACTIONS(3679), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 16, + ACTIONS(3478), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239804,47 +237729,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120109] = 6, - ACTIONS(4077), 1, + [119826] = 3, + ACTIONS(4414), 1, anon_sym_EQ, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, - anon_sym_DOT, - STATE(2995), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 13, + ACTIONS(4416), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120141] = 3, + [119852] = 4, + ACTIONS(1892), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4302), 15, + ACTIONS(4386), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239853,20 +237776,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [120167] = 3, - ACTIONS(4327), 1, + [119880] = 3, + ACTIONS(4422), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 16, + ACTIONS(4424), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239876,32 +237799,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120193] = 9, - ACTIONS(3507), 1, + [119906] = 9, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3509), 1, - anon_sym_DOT, - ACTIONS(3513), 1, - anon_sym_QMARK_DOT, - ACTIONS(3517), 1, + ACTIONS(4068), 1, anon_sym_PIPE, - ACTIONS(6352), 1, + ACTIONS(6345), 1, anon_sym_LT, - STATE(3128), 1, + ACTIONS(6347), 1, + anon_sym_DOT, + ACTIONS(6349), 1, + anon_sym_QMARK_DOT, + STATE(3089), 1, sym_arguments, - STATE(3248), 1, + STATE(3255), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 10, + ACTIONS(4070), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239912,14 +237835,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120231] = 3, - ACTIONS(4323), 1, + [119944] = 7, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4054), 1, anon_sym_EQ, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6351), 1, + anon_sym_is, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 15, - anon_sym_as, + ACTIONS(3548), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239927,20 +237857,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_GT, + anon_sym_extends, + [119978] = 9, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(4060), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_LT, + ACTIONS(6353), 1, + anon_sym_DOT, + ACTIONS(6355), 1, + anon_sym_QMARK_DOT, + STATE(3090), 1, + sym_arguments, + STATE(3257), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - [120256] = 3, - ACTIONS(1779), 1, + anon_sym_PIPE_RBRACE, + [120016] = 3, + ACTIONS(4178), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 15, + ACTIONS(4180), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239949,20 +237906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [120281] = 3, - ACTIONS(4185), 1, + [120041] = 3, + ACTIONS(1900), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 15, + ACTIONS(1898), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239971,24 +237928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120306] = 5, - ACTIONS(4087), 1, + anon_sym_is, + [120066] = 3, + ACTIONS(4118), 1, anon_sym_EQ, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2948), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(4120), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239996,25 +237950,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120335] = 6, - ACTIONS(3535), 1, + [120091] = 6, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(4117), 1, + ACTIONS(4078), 1, anon_sym_EQ, - ACTIONS(6372), 1, + ACTIONS(6357), 1, anon_sym_DOT, - STATE(2938), 1, + STATE(2934), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 12, + ACTIONS(4080), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240022,18 +237977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [120366] = 3, - ACTIONS(4099), 1, + [120122] = 4, + ACTIONS(4250), 1, anon_sym_EQ, + ACTIONS(6359), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 15, + ACTIONS(4252), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240042,23 +237999,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [120391] = 4, - ACTIONS(4453), 1, + [120149] = 5, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4108), 1, anon_sym_EQ, - ACTIONS(6374), 1, - anon_sym_DOT, + STATE(3030), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 14, - anon_sym_as, + ACTIONS(4110), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240066,66 +238023,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120418] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6378), 1, - sym_number, - ACTIONS(6380), 1, - anon_sym_unique, - STATE(5813), 1, - sym_string, - STATE(5814), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 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, - [120452] = 3, - ACTIONS(4296), 1, - anon_sym_PIPE, + [120178] = 3, + ACTIONS(4084), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4086), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120476] = 3, - ACTIONS(4296), 1, + anon_sym_is, + [120203] = 3, + ACTIONS(4284), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, + ACTIONS(4286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240140,69 +238072,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120500] = 3, - ACTIONS(4308), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4310), 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, - [120524] = 7, - ACTIONS(1551), 1, + [120227] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6382), 1, + ACTIONS(6363), 1, sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5747), 2, - sym_string, - sym_predefined_type, - ACTIONS(6376), 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, - [120556] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6384), 1, - sym_number, - STATE(5751), 1, + STATE(5699), 1, sym_string, - STATE(5755), 1, + STATE(5715), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240212,23 +238098,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120590] = 8, - ACTIONS(1551), 1, + [120261] = 3, + ACTIONS(4238), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4240), 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, + [120285] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6386), 1, + ACTIONS(6367), 1, sym_number, - STATE(5763), 1, + STATE(5717), 1, sym_string, - STATE(5767), 1, + STATE(5719), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240238,23 +238145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120624] = 8, - ACTIONS(1551), 1, + [120319] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6388), 1, + ACTIONS(6369), 1, sym_number, - STATE(5772), 1, + STATE(5721), 1, sym_string, - STATE(5773), 1, + STATE(5728), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240264,214 +238171,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120658] = 3, - ACTIONS(4365), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4367), 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, - [120682] = 3, - ACTIONS(4292), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4294), 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, - [120706] = 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(3227), 1, - sym_arguments, - STATE(3394), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 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, - [120740] = 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(3231), 1, - sym_arguments, - STATE(3415), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [120353] = 3, + ACTIONS(4242), 1, anon_sym_PIPE, - anon_sym_extends, - [120774] = 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(3221), 1, - sym_arguments, - STATE(3439), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 9, + ACTIONS(4244), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120808] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6406), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120830] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6408), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5794), 2, - sym_string, - sym_predefined_type, - ACTIONS(6376), 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, - [120862] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6410), 1, - sym_number, - STATE(5806), 1, - sym_string, - STATE(5807), 1, - sym_predefined_type, + 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, + [120377] = 3, + ACTIONS(4196), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 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, - [120896] = 8, - ACTIONS(1551), 1, + ACTIONS(4198), 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120401] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6412), 1, + ACTIONS(6371), 1, sym_number, - STATE(5822), 1, - sym_string, - STATE(5829), 1, - sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + STATE(5510), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240481,19 +238238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120930] = 5, - ACTIONS(4230), 1, + [120433] = 5, + ACTIONS(4450), 1, anon_sym_EQ, - ACTIONS(6414), 1, + ACTIONS(6373), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 3, + ACTIONS(4172), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(4232), 10, + ACTIONS(4452), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240501,16 +238258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, + anon_sym_GT, anon_sym_QMARK, - [120958] = 3, - ACTIONS(4387), 1, + [120461] = 3, + ACTIONS(4380), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 14, + ACTIONS(4382), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240525,34 +238282,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120982] = 3, - ACTIONS(4345), 1, - anon_sym_EQ, + [120485] = 8, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6377), 1, + anon_sym_DOT, + ACTIONS(6379), 1, + anon_sym_QMARK_DOT, + ACTIONS(6381), 1, + anon_sym_LT, + STATE(3226), 1, + sym_arguments, + STATE(3457), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 14, - anon_sym_as, + ACTIONS(4062), 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, + [120519] = 3, + ACTIONS(4122), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120543] = 3, + ACTIONS(4132), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 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, - [121006] = 3, - ACTIONS(4395), 1, + anon_sym_PIPE_RBRACE, + [120567] = 3, + ACTIONS(4136), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 14, + ACTIONS(4138), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240567,13 +238371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121030] = 3, - ACTIONS(4391), 1, + [120591] = 3, + ACTIONS(4260), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 14, + ACTIONS(4262), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240582,19 +238386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121054] = 3, - ACTIONS(4413), 1, + [120615] = 3, + ACTIONS(4276), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 14, + ACTIONS(4278), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240609,13 +238413,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121078] = 3, - ACTIONS(4417), 1, + [120639] = 3, + ACTIONS(4186), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120663] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 14, + ACTIONS(4282), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240630,33 +238455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121102] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121124] = 3, - ACTIONS(4413), 1, + [120687] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 14, + ACTIONS(4282), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240671,13 +238476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121148] = 3, - ACTIONS(4417), 1, + [120711] = 3, + ACTIONS(4312), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 14, + ACTIONS(4314), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240692,13 +238497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121172] = 3, - ACTIONS(4131), 1, + [120735] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 14, + ACTIONS(4282), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240713,13 +238518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121196] = 3, - ACTIONS(4127), 1, + [120759] = 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120783] = 3, + ACTIONS(4284), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 14, + ACTIONS(4286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240734,13 +238560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121220] = 3, - ACTIONS(4236), 1, + [120807] = 3, + ACTIONS(4391), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 14, + ACTIONS(4393), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240749,19 +238575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121244] = 3, - ACTIONS(4131), 1, + [120831] = 3, + ACTIONS(4284), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 14, + ACTIONS(4286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240776,13 +238602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121268] = 3, - ACTIONS(4127), 1, + [120855] = 3, + ACTIONS(4308), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 14, + ACTIONS(4310), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240797,100 +238623,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121292] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6418), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5664), 2, - sym_string, - sym_predefined_type, - ACTIONS(6376), 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, - [121324] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6420), 1, - sym_number, - STATE(5524), 1, - sym_predefined_type, - STATE(5862), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 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, - [121358] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6422), 1, - sym_number, - STATE(5533), 1, - sym_string, - STATE(5536), 1, - sym_predefined_type, + [120879] = 3, + ACTIONS(4308), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 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, - [121392] = 8, - ACTIONS(1551), 1, + ACTIONS(4310), 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, + [120903] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6424), 1, + ACTIONS(6383), 1, sym_number, - STATE(5591), 1, + STATE(5540), 1, sym_string, - STATE(5598), 1, + STATE(5756), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240900,13 +238670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121426] = 3, - ACTIONS(4145), 1, + [120937] = 3, + ACTIONS(4308), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 14, + ACTIONS(4310), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240921,75 +238691,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121450] = 3, - ACTIONS(4163), 1, - anon_sym_PIPE, + [120961] = 3, + ACTIONS(4368), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4370), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121474] = 3, - ACTIONS(4145), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120985] = 4, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(6373), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4214), 13, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121498] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6426), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121520] = 3, - ACTIONS(4409), 1, + [121011] = 3, + ACTIONS(4264), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4411), 14, + ACTIONS(4266), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240998,49 +238749,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121544] = 3, - ACTIONS(4163), 1, - anon_sym_PIPE, + [121035] = 3, + ACTIONS(4350), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4352), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121568] = 7, - ACTIONS(1551), 1, + [121059] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6428), 1, + ACTIONS(6385), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5778), 2, + STATE(5669), 2, sym_string, sym_predefined_type, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241050,75 +238801,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121600] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6430), 1, - sym_number, - STATE(5782), 1, - sym_string, - STATE(5789), 1, - sym_predefined_type, + [121091] = 3, + ACTIONS(4342), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 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, - [121634] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6432), 1, - sym_number, - STATE(5793), 1, - sym_string, - STATE(5795), 1, - sym_predefined_type, + ACTIONS(4344), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [121115] = 3, + ACTIONS(4446), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 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, - [121668] = 8, - ACTIONS(1551), 1, + ACTIONS(4448), 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [121139] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6434), 1, + ACTIONS(6387), 1, sym_number, - STATE(5804), 1, + STATE(5684), 1, sym_string, - STATE(5805), 1, + STATE(5691), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241128,13 +238869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121702] = 3, - ACTIONS(4304), 1, + [121173] = 3, + ACTIONS(4114), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 14, + ACTIONS(4116), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241143,46 +238884,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121726] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6436), 1, - sym_number, + [121197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5483), 2, - sym_string, - sym_predefined_type, - ACTIONS(6376), 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, - [121758] = 4, - ACTIONS(4254), 1, + ACTIONS(6389), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121219] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121241] = 4, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(6414), 1, + ACTIONS(6373), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 13, + ACTIONS(4172), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241190,29 +238946,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121784] = 8, - ACTIONS(1551), 1, + [121267] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6438), 1, + ACTIONS(6393), 1, sym_number, - STATE(5576), 1, + STATE(5583), 1, sym_string, - STATE(5627), 1, + STATE(5624), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241222,44 +238978,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121818] = 3, - ACTIONS(4195), 1, - anon_sym_EQ, + [121301] = 3, + ACTIONS(4242), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 14, - anon_sym_as, + ACTIONS(4244), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121842] = 8, - ACTIONS(1551), 1, + anon_sym_PIPE_RBRACE, + [121325] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6440), 1, + ACTIONS(6395), 1, sym_number, - STATE(5548), 1, + STATE(5697), 1, sym_string, - STATE(5575), 1, + STATE(5701), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241269,65 +239025,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121876] = 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_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [121900] = 3, - ACTIONS(4266), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4268), 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, - [121924] = 8, - ACTIONS(1551), 1, + [121359] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6442), 1, + ACTIONS(6397), 1, sym_number, - STATE(5647), 1, + STATE(5703), 1, sym_string, - STATE(5648), 1, + STATE(5706), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241337,32 +239051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121958] = 3, - ACTIONS(4171), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 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, - [121982] = 2, + [121393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6444), 15, + ACTIONS(6399), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241378,13 +239071,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122004] = 3, - ACTIONS(4187), 1, + [121415] = 3, + ACTIONS(4158), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4160), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121439] = 3, + ACTIONS(4184), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 14, + ACTIONS(4182), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241393,40 +239107,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122028] = 3, - ACTIONS(4191), 1, - anon_sym_EQ, + [121463] = 3, + ACTIONS(4242), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 14, - anon_sym_as, + ACTIONS(4244), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121487] = 3, + ACTIONS(4246), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4248), 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, - [122052] = 3, - ACTIONS(4222), 1, + anon_sym_PIPE_RBRACE, + [121511] = 3, + ACTIONS(4270), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 14, + ACTIONS(4156), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241435,19 +239170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122076] = 3, - ACTIONS(4226), 1, + [121535] = 3, + ACTIONS(4256), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 14, + ACTIONS(4258), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241456,39 +239191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122100] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122122] = 3, - ACTIONS(4240), 1, + [121559] = 3, + ACTIONS(4238), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 14, + ACTIONS(4240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241503,34 +239218,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122146] = 3, - ACTIONS(4244), 1, - anon_sym_PIPE, + [121583] = 3, + ACTIONS(4406), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4408), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122170] = 3, - ACTIONS(4244), 1, + [121607] = 3, + ACTIONS(4234), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 14, + ACTIONS(4236), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241545,33 +239260,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122194] = 2, + [121631] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6401), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6448), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122216] = 3, - ACTIONS(4244), 1, + STATE(5846), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 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, + [121663] = 3, + ACTIONS(4246), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 14, + ACTIONS(4248), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241586,33 +239306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122240] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6450), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122262] = 3, - ACTIONS(4377), 1, + [121687] = 3, + ACTIONS(4216), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 14, + ACTIONS(4218), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241621,62 +239321,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122286] = 4, - ACTIONS(4236), 1, + [121711] = 3, + ACTIONS(4354), 1, anon_sym_EQ, - ACTIONS(6414), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4356), 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_GT, anon_sym_QMARK, anon_sym_extends, - [122312] = 3, - ACTIONS(4083), 1, - anon_sym_EQ, + [121735] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6403), 1, + sym_number, + STATE(5862), 1, + sym_string, + STATE(5864), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 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, - [122336] = 3, - ACTIONS(4149), 1, + ACTIONS(6361), 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, + [121769] = 3, + ACTIONS(4358), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 14, + ACTIONS(4360), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241685,61 +239389,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122360] = 3, - ACTIONS(4175), 1, - anon_sym_EQ, + [121793] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6405), 1, + sym_number, + STATE(5497), 1, + sym_predefined_type, + STATE(5718), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 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, - [122384] = 3, - ACTIONS(4087), 1, - anon_sym_EQ, + ACTIONS(6361), 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, + [121827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 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, - [122408] = 3, - ACTIONS(4258), 1, + ACTIONS(6407), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121849] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6409), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121871] = 3, + ACTIONS(4380), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 14, + ACTIONS(4382), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241754,13 +239482,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122432] = 3, - ACTIONS(4199), 1, + [121895] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6411), 1, + sym_number, + STATE(5514), 1, + sym_string, + STATE(5546), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 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, + [121929] = 3, + ACTIONS(4170), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 14, + ACTIONS(4172), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241769,61 +239523,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122456] = 3, - ACTIONS(4258), 1, - anon_sym_PIPE, + [121953] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6413), 1, + sym_number, + STATE(5512), 1, + sym_string, + STATE(5749), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 14, - sym__automatic_semicolon, + ACTIONS(6361), 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, + [121987] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6415), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122009] = 3, + ACTIONS(4230), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4232), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122480] = 3, - ACTIONS(4258), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122033] = 3, + ACTIONS(4372), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4374), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122504] = 3, - ACTIONS(4123), 1, + [122057] = 3, + ACTIONS(4122), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 14, + ACTIONS(4124), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241838,13 +239638,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122528] = 3, - ACTIONS(4123), 1, + [122081] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6417), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122103] = 3, + ACTIONS(4132), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 14, + ACTIONS(4134), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241859,13 +239679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122552] = 3, - ACTIONS(4315), 1, + [122127] = 3, + ACTIONS(4324), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 14, + ACTIONS(4326), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241874,48 +239694,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122576] = 3, - ACTIONS(4123), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4125), 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, - [122600] = 7, - ACTIONS(4077), 1, + [122151] = 7, + ACTIONS(4054), 1, anon_sym_PIPE, - ACTIONS(6352), 1, + ACTIONS(6345), 1, anon_sym_LT, - ACTIONS(6452), 1, + ACTIONS(6419), 1, anon_sym_DOT, - ACTIONS(6454), 1, + ACTIONS(6421), 1, anon_sym_is, - STATE(3251), 1, + STATE(3250), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 10, + ACTIONS(3548), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241926,13 +239725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122632] = 3, - ACTIONS(4274), 1, + [122183] = 3, + ACTIONS(4136), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 14, + ACTIONS(4138), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241947,13 +239746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122656] = 3, - ACTIONS(4135), 1, + [122207] = 3, + ACTIONS(4220), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 14, + ACTIONS(4222), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241962,19 +239761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122680] = 3, - ACTIONS(4357), 1, + [122231] = 3, + ACTIONS(4300), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 14, + ACTIONS(4302), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241983,19 +239782,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122704] = 3, - ACTIONS(4449), 1, + [122255] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6423), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122277] = 3, + ACTIONS(4430), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 14, + ACTIONS(4432), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242004,19 +239823,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122728] = 3, - ACTIONS(4153), 1, + [122301] = 3, + ACTIONS(4246), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4248), 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, + [122325] = 3, + ACTIONS(4402), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 14, + ACTIONS(4404), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242025,17 +239865,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122349] = 3, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122752] = 2, + [122373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 15, + ACTIONS(6425), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242051,13 +239912,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122774] = 3, - ACTIONS(4278), 1, + [122395] = 8, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6427), 1, + anon_sym_DOT, + ACTIONS(6429), 1, + anon_sym_QMARK_DOT, + STATE(3224), 1, + sym_arguments, + STATE(3401), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3512), 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, + [122429] = 3, + ACTIONS(4162), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 14, + ACTIONS(4164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242072,52 +239959,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122798] = 3, - ACTIONS(4369), 1, - anon_sym_EQ, + [122453] = 3, + ACTIONS(4166), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4371), 14, - anon_sym_as, + ACTIONS(4168), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [122822] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6458), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122844] = 2, + anon_sym_PIPE_RBRACE, + [122477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6460), 15, + ACTIONS(6431), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242133,34 +240000,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122866] = 3, - ACTIONS(4278), 1, - anon_sym_PIPE, + [122499] = 3, + ACTIONS(4174), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4176), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122890] = 3, - ACTIONS(4278), 1, + [122523] = 3, + ACTIONS(4162), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 14, + ACTIONS(4164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242175,13 +240042,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122914] = 3, - ACTIONS(4288), 1, + [122547] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6433), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5694), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 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, + [122579] = 3, + ACTIONS(4166), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 14, + ACTIONS(4168), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242196,55 +240088,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122938] = 3, - ACTIONS(4167), 1, - anon_sym_EQ, + [122603] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6435), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 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, - [122962] = 3, - ACTIONS(4095), 1, - anon_sym_EQ, + STATE(5784), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 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, + [122635] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6437), 1, + sym_number, + STATE(5791), 1, + sym_string, + STATE(5794), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 14, - anon_sym_as, + ACTIONS(6361), 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, + [122669] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6439), 1, + sym_number, + STATE(5799), 1, + sym_string, + STATE(5806), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 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, + [122703] = 8, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6441), 1, + anon_sym_DOT, + ACTIONS(6443), 1, + anon_sym_QMARK_DOT, + STATE(3225), 1, + sym_arguments, + STATE(3420), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4070), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [122986] = 3, - ACTIONS(4288), 1, + [122737] = 3, + ACTIONS(4238), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 14, + ACTIONS(4240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242259,55 +240212,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123010] = 3, - ACTIONS(4288), 1, - anon_sym_PIPE, + [122761] = 3, + ACTIONS(4108), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4110), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123034] = 3, - ACTIONS(4296), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122785] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6445), 1, + sym_number, + STATE(5809), 1, + sym_string, + STATE(5811), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, - sym__automatic_semicolon, + ACTIONS(6361), 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, + [122819] = 3, + ACTIONS(4140), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123058] = 3, - ACTIONS(4270), 1, + [122843] = 3, + ACTIONS(4376), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 14, + ACTIONS(4378), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242316,162 +240295,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [123082] = 13, - ACTIONS(2570), 1, + [122867] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6466), 1, + ACTIONS(6451), 1, anon_sym_BANG, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6472), 1, + ACTIONS(6457), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4313), 1, + STATE(4162), 1, sym_type_annotation, - STATE(4968), 1, + STATE(4706), 1, sym__initializer, - STATE(5324), 1, + STATE(5256), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123125] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3451), 1, - sym_type_predicate, - STATE(5662), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6474), 2, - sym_identifier, - sym_this, - ACTIONS(217), 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, - [123154] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(1634), 1, - sym_type_predicate, - STATE(5721), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6476), 2, - sym_identifier, - sym_this, - ACTIONS(217), 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, - [123183] = 13, - ACTIONS(2570), 1, + [122910] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6480), 1, + ACTIONS(6461), 1, anon_sym_BANG, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6484), 1, + ACTIONS(6463), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3795), 1, - sym__call_signature, - STATE(4247), 1, + STATE(4234), 1, sym_type_annotation, - STATE(4833), 1, + STATE(4859), 1, + sym__call_signature, + STATE(4860), 1, sym__initializer, - STATE(5281), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6478), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123226] = 13, - ACTIONS(2570), 1, + [122953] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6480), 1, + ACTIONS(6467), 1, anon_sym_BANG, - ACTIONS(6486), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4247), 1, + STATE(4246), 1, sym_type_annotation, - STATE(4846), 1, - sym__call_signature, - STATE(4847), 1, + STATE(4880), 1, sym__initializer, - STATE(5222), 1, + STATE(5155), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6478), 3, + ACTIONS(6465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123269] = 6, - ACTIONS(215), 1, + [122996] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(6327), 1, + anon_sym_STAR, + ACTIONS(6331), 1, + anon_sym_LBRACE, + ACTIONS(6471), 1, + sym_identifier, + ACTIONS(6473), 1, + anon_sym_type, + ACTIONS(6475), 1, + anon_sym_COMMA, + ACTIONS(6477), 1, + anon_sym_from, + STATE(4299), 1, + sym_string, + STATE(4300), 1, + sym_import_require_clause, + STATE(5136), 1, + sym__import_identifier, + STATE(5337), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5844), 2, + sym_namespace_import, + sym_named_imports, + [123041] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(1939), 1, + STATE(3286), 1, sym_type_predicate, - STATE(5853), 1, + STATE(5724), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6488), 2, + ACTIONS(6479), 2, sym_identifier, sym_this, - ACTIONS(217), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -242481,221 +240445,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123298] = 11, - ACTIONS(2570), 1, + [123070] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3615), 1, sym_formal_parameters, - STATE(4824), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, - STATE(5138), 1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(3814), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123337] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6492), 1, - anon_sym_BANG, - ACTIONS(6494), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(4023), 1, - sym_type_annotation, - STATE(4999), 1, - sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5360), 1, - sym__call_signature, + [123109] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(1939), 1, + sym_type_predicate, + STATE(5747), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123380] = 13, - ACTIONS(2570), 1, + ACTIONS(6481), 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, + [123138] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_BANG, - ACTIONS(6500), 1, - anon_sym_QMARK, - STATE(3365), 1, - sym_formal_parameters, - STATE(3867), 1, - sym__call_signature, - STATE(4340), 1, - sym_type_annotation, - STATE(5013), 1, - sym__initializer, - STATE(5281), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6496), 3, - sym__automatic_semicolon, + ACTIONS(3808), 1, anon_sym_COMMA, - anon_sym_SEMI, - [123423] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6502), 1, - anon_sym_BANG, - ACTIONS(6504), 1, - anon_sym_QMARK, - STATE(3895), 1, + STATE(3615), 1, sym_formal_parameters, - STATE(3992), 1, - sym_type_annotation, - STATE(4802), 1, - sym__initializer, - STATE(5155), 1, - sym__call_signature, - STATE(5348), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(3814), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [123466] = 11, - ACTIONS(2570), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [123177] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3615), 1, sym_formal_parameters, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(5138), 1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(3814), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123505] = 13, - ACTIONS(2570), 1, + [123216] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6508), 1, - anon_sym_BANG, - ACTIONS(6510), 1, - anon_sym_QMARK, - STATE(3895), 1, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(3615), 1, sym_formal_parameters, - STATE(3935), 1, - sym_type_annotation, - STATE(5004), 1, - sym__initializer, - STATE(5286), 1, - sym__call_signature, - STATE(5348), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(3814), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [123548] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, anon_sym_COLON, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6514), 1, - anon_sym_BANG, - ACTIONS(6516), 1, anon_sym_QMARK, - STATE(3365), 1, - sym_formal_parameters, - STATE(3906), 1, - sym__call_signature, - STATE(3987), 1, - sym_type_annotation, - STATE(4774), 1, - sym__initializer, - STATE(5281), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [123255] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(1637), 1, + sym_type_predicate, + STATE(5570), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6512), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123591] = 4, - ACTIONS(4083), 1, + ACTIONS(6483), 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, + [123284] = 4, + ACTIONS(4104), 1, anon_sym_EQ, - ACTIONS(6342), 1, + ACTIONS(6351), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 12, + ACTIONS(4106), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -242703,25 +240619,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [123616] = 6, - ACTIONS(215), 1, + [123309] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3042), 1, + STATE(2978), 1, sym_type_predicate, - STATE(5569), 1, + STATE(5861), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6518), 2, + ACTIONS(6485), 2, sym_identifier, sym_this, - ACTIONS(217), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -242731,15 +240647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123645] = 4, - ACTIONS(4087), 1, + [123338] = 4, + ACTIONS(4108), 1, anon_sym_EQ, - ACTIONS(6520), 1, + ACTIONS(6487), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 12, + ACTIONS(4110), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -242747,55 +240663,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_GT, + anon_sym_extends, + [123363] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_BANG, + ACTIONS(6493), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(3949), 1, + sym_type_annotation, + STATE(5042), 1, + sym__initializer, + STATE(5328), 1, + sym_type_parameters, + STATE(5373), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6489), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123406] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6495), 1, + anon_sym_BANG, + ACTIONS(6497), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(3956), 1, + sym_type_annotation, + STATE(4528), 1, + sym__initializer, + STATE(5257), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6489), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123449] = 4, + ACTIONS(4114), 1, + anon_sym_EQ, + ACTIONS(6351), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [123670] = 13, - ACTIONS(2570), 1, + [123474] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6522), 1, + ACTIONS(6499), 1, anon_sym_BANG, - ACTIONS(6524), 1, + ACTIONS(6501), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4082), 1, + STATE(4014), 1, sym_type_annotation, - STATE(4582), 1, + STATE(4805), 1, sym__initializer, - STATE(5299), 1, + STATE(5139), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123713] = 6, - ACTIONS(215), 1, + [123517] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3042), 1, + STATE(2978), 1, sym_type_predicate, - STATE(5715), 1, + STATE(5673), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6526), 2, + ACTIONS(6503), 2, sym_identifier, sym_this, - ACTIONS(217), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -242805,250 +240802,453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123742] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3229), 1, - sym_type_predicate, - STATE(5698), 1, - sym_predefined_type, + [123546] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6507), 1, + anon_sym_BANG, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6511), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3900), 1, + sym__call_signature, + STATE(4003), 1, + sym_type_annotation, + STATE(4741), 1, + sym__initializer, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6528), 2, - sym_identifier, - sym_this, - ACTIONS(217), 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, - [123771] = 13, - ACTIONS(2570), 1, + ACTIONS(6505), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123589] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6515), 1, + anon_sym_BANG, + ACTIONS(6517), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(4126), 1, + sym_type_annotation, + STATE(4632), 1, + sym__initializer, + STATE(5131), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6513), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123632] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6521), 1, + anon_sym_BANG, + ACTIONS(6523), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3754), 1, + sym__call_signature, + STATE(4313), 1, + sym_type_annotation, + STATE(5010), 1, + sym__initializer, + STATE(5249), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123675] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6532), 1, + ACTIONS(6521), 1, anon_sym_BANG, - ACTIONS(6534), 1, + ACTIONS(6525), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3923), 1, + STATE(4313), 1, sym_type_annotation, - STATE(4735), 1, - sym__initializer, - STATE(5219), 1, + STATE(5077), 1, sym__call_signature, - STATE(5348), 1, + STATE(5084), 1, + sym__initializer, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123814] = 13, - ACTIONS(2570), 1, + [123718] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6538), 1, + ACTIONS(6529), 1, anon_sym_BANG, - ACTIONS(6540), 1, + ACTIONS(6531), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4268), 1, + STATE(4357), 1, sym_type_annotation, - STATE(4876), 1, + STATE(5089), 1, sym__initializer, - STATE(5273), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5431), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6536), 3, + ACTIONS(6527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123857] = 13, - ACTIONS(2570), 1, + [123761] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6544), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6533), 1, anon_sym_BANG, - ACTIONS(6546), 1, + ACTIONS(6535), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3830), 1, - sym__call_signature, - STATE(4100), 1, + STATE(4361), 1, sym_type_annotation, - STATE(4636), 1, + STATE(5093), 1, sym__initializer, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5436), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6542), 3, + ACTIONS(6527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123900] = 11, - ACTIONS(2570), 1, + [123804] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3615), 1, sym_formal_parameters, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(5138), 1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(3814), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123939] = 13, - ACTIONS(2570), 1, + [123843] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6550), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6537), 1, anon_sym_BANG, - ACTIONS(6552), 1, + ACTIONS(6539), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3834), 1, + STATE(4060), 1, + sym_type_annotation, + STATE(4563), 1, + sym__initializer, + STATE(5265), 1, sym__call_signature, - STATE(4293), 1, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6527), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123886] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6541), 1, + anon_sym_BANG, + ACTIONS(6543), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(4059), 1, sym_type_annotation, - STATE(4920), 1, + STATE(4884), 1, sym__initializer, - STATE(5281), 1, + STATE(5226), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6548), 3, + ACTIONS(6527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123982] = 13, - ACTIONS(2570), 1, + [123929] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6554), 1, + ACTIONS(6545), 1, anon_sym_BANG, - ACTIONS(6556), 1, + ACTIONS(6547), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4121), 1, + STATE(4028), 1, sym_type_annotation, - STATE(4665), 1, + STATE(4864), 1, sym__initializer, - STATE(5234), 1, + STATE(5185), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124025] = 13, - ACTIONS(2570), 1, + [123972] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6462), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6549), 1, + anon_sym_BANG, + ACTIONS(6551), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(4183), 1, + sym_type_annotation, + STATE(4516), 1, + sym__initializer, + STATE(5328), 1, + sym_type_parameters, + STATE(5367), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124015] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6498), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6555), 1, anon_sym_BANG, - ACTIONS(6558), 1, + ACTIONS(6557), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4340), 1, + STATE(3819), 1, + sym__call_signature, + STATE(4333), 1, sym_type_annotation, - STATE(5092), 1, + STATE(5058), 1, + sym__initializer, + STATE(5249), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124058] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6561), 1, + anon_sym_BANG, + ACTIONS(6563), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3751), 1, sym__call_signature, - STATE(5095), 1, + STATE(4235), 1, + sym_type_annotation, + STATE(4848), 1, sym__initializer, - STATE(5222), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6496), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124068] = 6, - ACTIONS(3507), 1, + [124101] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(2978), 1, + sym_type_predicate, + STATE(5675), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6565), 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, + [124130] = 6, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(4117), 1, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(6560), 1, + ACTIONS(6567), 1, anon_sym_DOT, - STATE(3169), 1, + STATE(3168), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 10, + ACTIONS(4080), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124159] = 6, + ACTIONS(4054), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_DOT, + STATE(3250), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3548), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243059,256 +241259,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124097] = 13, - ACTIONS(2570), 1, + [124188] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(3336), 1, + sym_type_predicate, + STATE(5501), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6569), 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, + [124217] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6562), 1, + ACTIONS(6571), 1, anon_sym_BANG, - ACTIONS(6564), 1, + ACTIONS(6573), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4259), 1, + STATE(4295), 1, sym_type_annotation, - STATE(4863), 1, + STATE(4985), 1, sym__initializer, - STATE(5215), 1, + STATE(5322), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124140] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(3600), 1, - sym_formal_parameters, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - STATE(5138), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124179] = 13, - ACTIONS(2570), 1, + [124260] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6566), 1, + ACTIONS(6575), 1, anon_sym_BANG, - ACTIONS(6568), 1, + ACTIONS(6577), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4373), 1, + STATE(4325), 1, sym_type_annotation, - STATE(5101), 1, + STATE(5028), 1, sym__initializer, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5445), 1, + STATE(5381), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124222] = 13, - ACTIONS(2570), 1, + [124303] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6570), 1, + ACTIONS(6579), 1, anon_sym_BANG, - ACTIONS(6572), 1, + ACTIONS(6581), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4270), 1, + STATE(4344), 1, sym_type_annotation, - STATE(4891), 1, + STATE(5070), 1, sym__initializer, - STATE(5245), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5412), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124265] = 14, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6360), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, - sym_identifier, - ACTIONS(6576), 1, - anon_sym_type, - ACTIONS(6578), 1, - anon_sym_COMMA, - ACTIONS(6580), 1, - anon_sym_from, - STATE(4332), 1, - sym_string, - STATE(4333), 1, - sym_import_require_clause, - STATE(5314), 1, - sym__import_identifier, - STATE(5370), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5825), 2, - sym_namespace_import, - sym_named_imports, - [124310] = 13, - ACTIONS(2570), 1, + [124346] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6582), 1, + ACTIONS(6461), 1, anon_sym_BANG, - ACTIONS(6584), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3911), 1, + STATE(3848), 1, + sym__call_signature, + STATE(4234), 1, sym_type_annotation, - STATE(5102), 1, + STATE(4849), 1, sym__initializer, - STATE(5348), 1, + STATE(5249), 1, sym_type_parameters, - STATE(5432), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124353] = 13, - ACTIONS(2570), 1, + [124389] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6586), 1, + ACTIONS(6585), 1, anon_sym_BANG, - ACTIONS(6588), 1, + ACTIONS(6587), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4256), 1, + STATE(4049), 1, sym_type_annotation, - STATE(4831), 1, + STATE(4944), 1, sym__initializer, - STATE(5252), 1, + STATE(5267), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124396] = 11, - ACTIONS(2570), 1, + [124432] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124452] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(3600), 1, + ACTIONS(6591), 1, + anon_sym_COLON, + ACTIONS(6593), 1, + anon_sym_QMARK, + STATE(3315), 1, sym_formal_parameters, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - STATE(5138), 1, + STATE(3714), 1, + sym__call_signature, + STATE(4084), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(6589), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124435] = 6, - ACTIONS(4077), 1, + [124488] = 3, + ACTIONS(4320), 1, anon_sym_PIPE, - ACTIONS(6352), 1, - anon_sym_LT, - ACTIONS(6452), 1, - anon_sym_DOT, - STATE(3251), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 10, + ACTIONS(4322), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243316,150 +241490,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124464] = 4, - ACTIONS(4095), 1, + [124510] = 11, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6595), 1, anon_sym_EQ, - ACTIONS(6342), 1, - anon_sym_is, + ACTIONS(6600), 1, + anon_sym_COLON, + ACTIONS(6602), 1, + anon_sym_extends, + STATE(2964), 1, + sym_type_arguments, + STATE(4499), 1, + sym_constraint, + STATE(5417), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 12, - anon_sym_LBRACE, + ACTIONS(6597), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(3548), 3, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [124489] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6590), 1, - anon_sym_BANG, - ACTIONS(6592), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(4377), 1, - sym_type_annotation, - STATE(5107), 1, - sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5450), 1, - sym__call_signature, + [124548] = 3, + ACTIONS(3225), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(3227), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124532] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6594), 1, - anon_sym_BANG, - ACTIONS(6596), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(4027), 1, - sym_type_annotation, - STATE(5019), 1, - sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5390), 1, - sym__call_signature, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124570] = 3, + ACTIONS(4328), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(4330), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124575] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6598), 1, - anon_sym_BANG, - ACTIONS(6600), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(3995), 1, - sym_type_annotation, - STATE(4813), 1, - sym__initializer, - STATE(5169), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124592] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(4348), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124618] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3042), 1, - sym_type_predicate, - STATE(5687), 1, - sym_predefined_type, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124614] = 4, + ACTIONS(1888), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 2, - sym_identifier, - sym_this, - ACTIONS(217), 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, - [124647] = 3, - ACTIONS(4327), 1, + ACTIONS(4386), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124638] = 3, + ACTIONS(3691), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 12, + ACTIONS(3474), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243472,248 +241618,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124669] = 2, + [124660] = 3, + ACTIONS(3679), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, + ACTIONS(3478), 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_extends, - [124689] = 2, + anon_sym_PIPE_RBRACE, + [124682] = 3, + ACTIONS(3233), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, + ACTIONS(3235), 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_extends, + anon_sym_PIPE_RBRACE, + [124704] = 6, + ACTIONS(4402), 1, + anon_sym_EQ, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6609), 1, anon_sym_extends, - [124709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4404), 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_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [124732] = 4, + ACTIONS(4438), 1, + anon_sym_EQ, + ACTIONS(6605), 1, anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [124729] = 2, + [124756] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6613), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(3524), 1, + sym__call_signature, + STATE(4050), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(6611), 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, + [124792] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6617), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(4282), 1, + sym__call_signature, + STATE(4283), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6615), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124828] = 3, + ACTIONS(3237), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3239), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124749] = 2, + anon_sym_PIPE_RBRACE, + [124850] = 4, + ACTIONS(1892), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4386), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124769] = 2, + anon_sym_PIPE_RBRACE, + [124874] = 3, + ACTIONS(4414), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4416), 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_extends, - [124789] = 2, + anon_sym_PIPE_RBRACE, + [124896] = 3, + ACTIONS(4418), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4420), 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_extends, - [124809] = 2, + anon_sym_PIPE_RBRACE, + [124918] = 3, + ACTIONS(4422), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4424), 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_extends, - [124829] = 2, + anon_sym_PIPE_RBRACE, + [124940] = 3, + ACTIONS(4426), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 13, + ACTIONS(4428), 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_extends, - [124849] = 10, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [124962] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6606), 1, + ACTIONS(6621), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4046), 1, + STATE(4029), 1, sym__call_signature, - STATE(4047), 1, + STATE(4030), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6604), 5, + ACTIONS(6619), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124885] = 11, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6608), 1, + [124998] = 4, + ACTIONS(4190), 1, anon_sym_EQ, - ACTIONS(6613), 1, - anon_sym_COLON, - ACTIONS(6615), 1, + ACTIONS(6623), 1, anon_sym_extends, - STATE(2995), 1, - sym_type_arguments, - STATE(4432), 1, - sym_constraint, - STATE(5334), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6610), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3567), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [124923] = 6, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6618), 1, - anon_sym_DOT, - ACTIONS(6620), 1, - anon_sym_is, - STATE(3404), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4192), 11, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [124951] = 2, + anon_sym_GT, + [125022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 13, + ACTIONS(4160), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243727,72 +241929,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124971] = 6, - ACTIONS(4210), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4212), 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, - [124999] = 3, - ACTIONS(3212), 1, - anon_sym_PIPE, + [125042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 12, + ACTIONS(4314), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125021] = 4, - ACTIONS(1897), 1, - anon_sym_DOT, - ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4205), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125045] = 2, + [125062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 13, + ACTIONS(4382), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243806,82 +241965,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125065] = 3, - ACTIONS(4300), 1, - anon_sym_PIPE, + [125082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 12, + ACTIONS(4124), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125087] = 10, - ACTIONS(2570), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6630), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4337), 1, - sym__call_signature, - STATE(4338), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6628), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125123] = 10, - ACTIONS(2570), 1, + anon_sym_extends, + [125102] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6634), 1, + ACTIONS(6625), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4277), 1, + STATE(4083), 1, sym__call_signature, - STATE(4279), 1, + STATE(4084), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 5, + ACTIONS(6589), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125159] = 2, + [125138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 13, + ACTIONS(4382), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243895,37 +242027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125179] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6638), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3946), 1, - sym__call_signature, - STATE(3991), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6636), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125215] = 2, + [125158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 13, + ACTIONS(4124), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243939,33 +242045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125235] = 6, - ACTIONS(4218), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4220), 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, - [125263] = 2, + [125178] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + ACTIONS(4134), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243979,11 +242063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125283] = 2, + [125198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 13, + ACTIONS(4138), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243997,30 +242081,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125303] = 3, - ACTIONS(4341), 1, - anon_sym_PIPE, + [125218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 12, + ACTIONS(4134), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125325] = 2, + [125238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4164), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244034,37 +242117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125345] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6640), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3638), 1, - sym__call_signature, - STATE(4279), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, + [125258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 5, + ACTIONS(4168), 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, - [125381] = 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4164), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244078,71 +242153,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125401] = 3, - ACTIONS(4349), 1, - anon_sym_PIPE, + [125298] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 12, + ACTIONS(4168), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125423] = 3, - ACTIONS(4353), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125318] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 12, + ACTIONS(4236), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125445] = 6, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + anon_sym_LT, anon_sym_extends, + [125338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 9, + ACTIONS(4240), 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, - [125473] = 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244156,17 +242225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125493] = 5, - ACTIONS(4399), 1, + [125378] = 5, + ACTIONS(4224), 1, anon_sym_PIPE, - ACTIONS(6642), 1, + ACTIONS(6627), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(6629), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 10, + ACTIONS(4226), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244177,56 +242246,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125519] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3683), 1, - sym__call_signature, - STATE(4047), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6604), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125555] = 3, - ACTIONS(4381), 1, - anon_sym_PIPE, + [125404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 12, + ACTIONS(4244), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125577] = 2, + [125424] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + ACTIONS(4244), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244240,11 +242282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125597] = 2, + [125444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 13, + ACTIONS(4244), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244258,50 +242300,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125617] = 3, - ACTIONS(4284), 1, - anon_sym_PIPE, + [125464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 12, + ACTIONS(4248), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125639] = 4, - ACTIONS(4361), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, + [125484] = 6, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6631), 1, + anon_sym_DOT, + ACTIONS(6633), 1, + anon_sym_is, + STATE(3319), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 11, + ACTIONS(3548), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [125663] = 2, + [125512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 13, + ACTIONS(4248), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244315,32 +242358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125683] = 5, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(6352), 1, - anon_sym_LT, - STATE(3239), 1, - sym_type_arguments, + [125532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 10, + ACTIONS(4248), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125709] = 2, + [125552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4278), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244354,102 +242394,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125729] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6648), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3670), 1, - sym__call_signature, - STATE(3991), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, + [125572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6636), 5, + ACTIONS(4282), 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, - [125765] = 3, - ACTIONS(3216), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 12, + ACTIONS(4282), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125787] = 10, - ACTIONS(2570), 1, + [125612] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6652), 1, + ACTIONS(6635), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4051), 1, + STATE(4037), 1, sym__call_signature, - STATE(4052), 1, + STATE(4050), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6650), 5, + ACTIONS(6611), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125823] = 4, - ACTIONS(1893), 1, - anon_sym_DOT, - ACTIONS(4203), 1, - anon_sym_PIPE, + [125648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 11, + ACTIONS(4282), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125847] = 2, + [125668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4286), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244463,55 +242492,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125867] = 6, - ACTIONS(4421), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, + [125688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 9, + ACTIONS(4286), 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, - [125895] = 6, - ACTIONS(4425), 1, - anon_sym_EQ, - ACTIONS(6622), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6624), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + anon_sym_LT, anon_sym_extends, + [125708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 9, + ACTIONS(4286), 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, - [125923] = 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4310), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244525,30 +242546,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125943] = 3, - ACTIONS(3687), 1, - anon_sym_PIPE, + [125748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 12, + ACTIONS(4310), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125965] = 2, + [125768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(4310), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244562,52 +242582,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125985] = 3, - ACTIONS(3208), 1, - anon_sym_PIPE, + [125788] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6637), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(3606), 1, + sym__call_signature, + STATE(4283), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 12, + ACTIONS(6615), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126007] = 2, + [125824] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6641), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(3597), 1, + sym__call_signature, + STATE(4262), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(6639), 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_PIPE_RBRACE, + [125860] = 6, + ACTIONS(4202), 1, + anon_sym_EQ, + ACTIONS(6605), 1, anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6609), 1, anon_sym_extends, - [126027] = 4, - ACTIONS(4157), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 11, + ACTIONS(4204), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244615,78 +242654,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, + anon_sym_GT, + [125888] = 6, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, + ACTIONS(6609), 1, anon_sym_extends, - [126051] = 3, - ACTIONS(3703), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4222), 9, 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_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126073] = 2, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125916] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6643), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(4261), 1, + sym__call_signature, + STATE(4262), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(6639), 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_PIPE_RBRACE, + [125952] = 6, + ACTIONS(4434), 1, + anon_sym_EQ, + ACTIONS(6605), 1, anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6609), 1, anon_sym_extends, - [126093] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4436), 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, - [126113] = 6, - ACTIONS(4226), 1, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125980] = 6, + ACTIONS(4442), 1, anon_sym_EQ, - ACTIONS(6622), 1, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 9, + ACTIONS(4444), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244694,71 +242746,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_GT, + [126008] = 4, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4306), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_EQ_GT, - [126141] = 2, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [126032] = 5, + ACTIONS(4108), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(3217), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4110), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [126161] = 2, + anon_sym_PIPE_RBRACE, + [126058] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(3627), 1, + sym__call_signature, + STATE(4030), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 13, + ACTIONS(6619), 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_PIPE_RBRACE, + [126094] = 6, + ACTIONS(4292), 1, + anon_sym_EQ, + ACTIONS(6605), 1, anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6609), 1, anon_sym_extends, - [126181] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4294), 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_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [126122] = 6, + ACTIONS(4332), 1, + anon_sym_EQ, + ACTIONS(6605), 1, anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126201] = 4, - ACTIONS(4248), 1, - anon_sym_EQ, - ACTIONS(6654), 1, + ACTIONS(6609), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 11, + ACTIONS(4334), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244766,21 +242857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_GT, + [126150] = 5, + ACTIONS(3522), 1, anon_sym_PIPE, - [126225] = 5, - ACTIONS(3509), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3513), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3517), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 10, + ACTIONS(3512), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244791,11 +242880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126251] = 2, + [126176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244809,280 +242898,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126271] = 10, - ACTIONS(2570), 1, + [126196] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6656), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6658), 1, - anon_sym_QMARK, - STATE(3307), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(3613), 1, + STATE(3870), 1, sym__call_signature, - STATE(4052), 1, + STATE(4241), 1, sym_type_annotation, - STATE(5222), 1, + STATE(4866), 1, + sym__initializer, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6650), 5, + ACTIONS(6647), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126307] = 2, + [126233] = 5, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6631), 1, + anon_sym_DOT, + STATE(3319), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(3548), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [126327] = 10, - ACTIONS(2570), 1, + [126258] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6660), 1, - anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3690), 1, + STATE(4055), 1, sym__call_signature, - STATE(4338), 1, + STATE(4058), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 5, + ACTIONS(6649), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126363] = 6, - ACTIONS(4319), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4321), 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, - [126391] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4147), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126411] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1921), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [126430] = 9, - ACTIONS(2570), 1, + [126291] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3693), 1, - sym__call_signature, - STATE(4106), 1, + STATE(3952), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5114), 1, + sym__initializer, + STATE(5328), 1, sym_type_parameters, + STATE(5443), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6662), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126463] = 9, - ACTIONS(2570), 1, + [126328] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(3682), 1, + STATE(3757), 1, sym__call_signature, - STATE(4043), 1, + STATE(4314), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5015), 1, + sym__initializer, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126496] = 3, - ACTIONS(4185), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4183), 11, + ACTIONS(6653), 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_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126517] = 11, - ACTIONS(2570), 1, + [126365] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, sym_formal_parameters, - STATE(3869), 1, - sym__call_signature, - STATE(4341), 1, + STATE(3902), 1, sym_type_annotation, - STATE(5026), 1, + STATE(5124), 1, sym__initializer, - STATE(5281), 1, + STATE(5137), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6655), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126554] = 9, - ACTIONS(2570), 1, + [126402] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4042), 1, - sym__call_signature, - STATE(4043), 1, + STATE(4314), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5045), 1, + sym__call_signature, + STATE(5046), 1, + sym__initializer, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 5, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126587] = 9, - ACTIONS(2570), 1, + [126439] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3671), 1, - sym__call_signature, - STATE(4026), 1, + STATE(3960), 1, sym_type_annotation, - STATE(5222), 1, + STATE(4538), 1, + sym__initializer, + STATE(5148), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6668), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126620] = 3, - ACTIONS(3316), 1, + [126476] = 3, + ACTIONS(3423), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 11, + ACTIONS(3425), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245094,13 +243116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126641] = 3, - ACTIONS(4323), 1, + [126497] = 4, + ACTIONS(4114), 1, anon_sym_PIPE, + ACTIONS(6421), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 11, + ACTIONS(4116), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245108,141 +243132,38 @@ 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_extends, anon_sym_PIPE_RBRACE, - [126662] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6462), 1, + [126520] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3307), 1, - sym_formal_parameters, - STATE(4341), 1, - sym_type_annotation, - STATE(5059), 1, - sym__call_signature, - STATE(5078), 1, - sym__initializer, - STATE(5222), 1, - sym_type_parameters, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(3814), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126699] = 8, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126730] = 8, - ACTIONS(6336), 1, - anon_sym_DOT, - ACTIONS(6338), 1, - anon_sym_QMARK_DOT, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2935), 1, - sym_arguments, - STATE(2964), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126761] = 12, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6360), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, - sym_identifier, - ACTIONS(6576), 1, - anon_sym_type, - STATE(4332), 1, - sym_string, - STATE(4333), 1, - sym_import_require_clause, - STATE(5314), 1, - sym__import_identifier, - STATE(5370), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5825), 2, - sym_namespace_import, - sym_named_imports, - [126800] = 8, - ACTIONS(6332), 1, - anon_sym_DOT, - ACTIONS(6334), 1, - anon_sym_QMARK_DOT, - ACTIONS(6670), 1, anon_sym_LPAREN, - ACTIONS(6672), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2922), 1, - sym_arguments, - STATE(2966), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126831] = 4, - ACTIONS(4083), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126549] = 3, + ACTIONS(4178), 1, anon_sym_PIPE, - ACTIONS(6454), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 10, + ACTIONS(4180), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245250,777 +243171,760 @@ 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_extends, anon_sym_PIPE_RBRACE, - [126854] = 11, - ACTIONS(2570), 1, + [126570] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, sym_formal_parameters, - STATE(3880), 1, - sym__call_signature, - STATE(4354), 1, + STATE(4128), 1, sym_type_annotation, - STATE(5044), 1, + STATE(4635), 1, sym__initializer, - STATE(5281), 1, + STATE(5141), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126891] = 11, - ACTIONS(2570), 1, + [126607] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(4044), 1, + STATE(3783), 1, + sym__call_signature, + STATE(4328), 1, sym_type_annotation, - STATE(5121), 1, + STATE(5047), 1, sym__initializer, - STATE(5348), 1, + STATE(5249), 1, sym_type_parameters, - STATE(5423), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 3, + ACTIONS(6659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126928] = 11, - ACTIONS(2570), 1, + [126644] = 8, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(3615), 1, sym_formal_parameters, - STATE(4358), 1, - sym_type_annotation, - STATE(5050), 1, - sym__initializer, - STATE(5348), 1, + STATE(5411), 1, sym_type_parameters, - STATE(5429), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, + ACTIONS(4074), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 5, + sym__automatic_semicolon, anon_sym_SEMI, - [126965] = 11, - ACTIONS(2570), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126675] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, sym_formal_parameters, - STATE(3803), 1, - sym__call_signature, - STATE(4254), 1, + STATE(4019), 1, sym_type_annotation, - STATE(4852), 1, + STATE(4816), 1, sym__initializer, - STATE(5281), 1, + STATE(5151), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127002] = 9, - ACTIONS(2570), 1, + [126712] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3994), 1, + STATE(3608), 1, sym__call_signature, - STATE(4026), 1, + STATE(4267), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6668), 5, + ACTIONS(6661), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127035] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + [126745] = 4, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(3909), 1, - sym_type_annotation, - STATE(4560), 1, - sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5359), 1, - sym__call_signature, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, + ACTIONS(4326), 10, anon_sym_COMMA, - anon_sym_SEMI, - [127072] = 3, - ACTIONS(3398), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [126768] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 11, + ACTIONS(3814), 7, 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_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127093] = 11, - ACTIONS(2570), 1, + [126797] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3925), 1, + STATE(4022), 1, sym_type_annotation, - STATE(4791), 1, + STATE(4833), 1, sym__initializer, - STATE(5141), 1, + STATE(5164), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127130] = 4, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(6682), 1, - anon_sym_is, + [126834] = 12, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(6327), 1, + anon_sym_STAR, + ACTIONS(6331), 1, + anon_sym_LBRACE, + ACTIONS(6471), 1, + sym_identifier, + ACTIONS(6473), 1, + anon_sym_type, + STATE(4299), 1, + sym_string, + STATE(4300), 1, + sym_import_require_clause, + STATE(5136), 1, + sym__import_identifier, + STATE(5337), 1, + sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127153] = 8, - ACTIONS(2570), 1, + STATE(5844), 2, + sym_namespace_import, + sym_named_imports, + [126873] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(4593), 1, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(3600), 1, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, sym_formal_parameters, - STATE(5138), 1, + STATE(4204), 1, + sym_type_annotation, + STATE(4773), 1, + sym__initializer, + STATE(5328), 1, sym_type_parameters, + STATE(5402), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127184] = 4, - ACTIONS(4095), 1, + [126910] = 3, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(6454), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 10, + ACTIONS(3419), 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_extends, anon_sym_PIPE_RBRACE, - [127207] = 9, - ACTIONS(2570), 1, + [126931] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(4326), 1, + STATE(3855), 1, sym__call_signature, - STATE(4328), 1, + STATE(4054), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5007), 1, + sym__initializer, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 5, + ACTIONS(6665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127240] = 9, - ACTIONS(2570), 1, + [126968] = 5, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + anon_sym_DOT, + STATE(3289), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 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, + [126993] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3640), 1, - sym__call_signature, - STATE(4284), 1, + STATE(4141), 1, sym_type_annotation, - STATE(5222), 1, + STATE(4660), 1, + sym__initializer, + STATE(5177), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127273] = 11, - ACTIONS(2570), 1, + [127030] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4287), 1, + STATE(4065), 1, sym_type_annotation, - STATE(4909), 1, + STATE(5040), 1, sym__initializer, - STATE(5266), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5393), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127310] = 3, - ACTIONS(3392), 1, - anon_sym_PIPE, + [127067] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3394), 11, + ACTIONS(3814), 7, 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_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127331] = 11, - ACTIONS(2570), 1, + [127096] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4316), 1, + STATE(4346), 1, sym_type_annotation, - STATE(4975), 1, + STATE(5072), 1, sym__initializer, - STATE(5336), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5415), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127368] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, + [127133] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(4086), 1, - sym_type_annotation, - STATE(4590), 1, - sym__initializer, - STATE(5311), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(3814), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [127405] = 11, - ACTIONS(2570), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127162] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(4016), 1, + STATE(3847), 1, + sym__call_signature, + STATE(4100), 1, sym_type_annotation, - STATE(4918), 1, + STATE(4574), 1, sym__initializer, - STATE(5257), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6669), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127442] = 9, - ACTIONS(2570), 1, + [127199] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4283), 1, + STATE(4181), 1, sym__call_signature, - STATE(4284), 1, + STATE(4182), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6671), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127475] = 9, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + [127232] = 8, + ACTIONS(3557), 1, anon_sym_COLON, - STATE(3307), 1, - sym_formal_parameters, - STATE(4105), 1, - sym__call_signature, - STATE(4106), 1, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6673), 1, + anon_sym_QMARK, + STATE(2964), 1, + sym_type_arguments, + STATE(5159), 1, sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6662), 5, - sym__automatic_semicolon, + ACTIONS(3548), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127508] = 9, - ACTIONS(2570), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127263] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3689), 1, + STATE(3626), 1, sym__call_signature, - STATE(4328), 1, + STATE(4027), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 5, + ACTIONS(6676), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127541] = 11, - ACTIONS(2570), 1, + [127296] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, sym_formal_parameters, - STATE(3818), 1, - sym__call_signature, - STATE(4096), 1, + STATE(4170), 1, sym_type_annotation, - STATE(4624), 1, + STATE(4729), 1, sym__initializer, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5336), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6692), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127578] = 7, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127607] = 11, - ACTIONS(2570), 1, + [127333] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, sym_formal_parameters, - STATE(3772), 1, - sym__call_signature, - STATE(4206), 1, + STATE(4337), 1, sym_type_annotation, - STATE(4793), 1, + STATE(5063), 1, sym__initializer, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5406), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127644] = 5, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6696), 1, - anon_sym_DOT, - STATE(3297), 1, - sym_arguments, + [127370] = 3, + ACTIONS(1900), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 9, + ACTIONS(1898), 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_extends, - [127669] = 11, - ACTIONS(2570), 1, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [127391] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4118), 1, - sym_type_annotation, - STATE(4660), 1, - sym__initializer, - STATE(5205), 1, + STATE(3527), 1, sym__call_signature, - STATE(5348), 1, + STATE(4058), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6649), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127706] = 11, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [127424] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4123), 1, - sym_type_annotation, - STATE(4672), 1, - sym__initializer, - STATE(5246), 1, + STATE(3604), 1, sym__call_signature, - STATE(5348), 1, + STATE(4278), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127743] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + anon_sym_PIPE_RBRACE, + [127457] = 8, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(6680), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(4318), 1, - sym_type_annotation, - STATE(4984), 1, - sym__initializer, - STATE(5343), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127780] = 7, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3512), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127488] = 8, + ACTIONS(6317), 1, + anon_sym_DOT, + ACTIONS(6319), 1, + anon_sym_QMARK_DOT, + ACTIONS(6680), 1, + anon_sym_LPAREN, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(2918), 1, + sym_arguments, + STATE(2975), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, - sym__automatic_semicolon, + ACTIONS(4070), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127519] = 8, + ACTIONS(6321), 1, + anon_sym_DOT, + ACTIONS(6323), 1, + anon_sym_QMARK_DOT, + ACTIONS(6680), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(6682), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127809] = 2, + STATE(2920), 1, + sym_arguments, + STATE(2973), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 12, + ACTIONS(4062), 6, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - [127828] = 11, - ACTIONS(2570), 1, + [127550] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4033), 1, + STATE(4100), 1, sym_type_annotation, - STATE(5117), 1, + STATE(4978), 1, + sym__call_signature, + STATE(4979), 1, sym__initializer, - STATE(5348), 1, + STATE(5233), 1, sym_type_parameters, - STATE(5412), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6669), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127865] = 8, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6698), 1, - anon_sym_QMARK, - STATE(2995), 1, - sym_type_arguments, - STATE(5200), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127896] = 3, - ACTIONS(1779), 1, + [127587] = 4, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 11, + ACTIONS(4252), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246030,100 +243934,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [127917] = 4, - ACTIONS(4453), 1, + [127610] = 3, + ACTIONS(3427), 1, anon_sym_PIPE, - ACTIONS(6701), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 10, + ACTIONS(3429), 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_extends, anon_sym_PIPE_RBRACE, - [127940] = 7, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 7, - sym__automatic_semicolon, + [127631] = 9, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127969] = 7, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3840), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + STATE(3315), 1, + sym_formal_parameters, + STATE(4026), 1, + sym__call_signature, + STATE(4027), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(6676), 5, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127998] = 7, - ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3930), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [127664] = 9, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3315), 1, + sym_formal_parameters, + STATE(4266), 1, + sym__call_signature, + STATE(4267), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(6661), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128027] = 3, - ACTIONS(4099), 1, + [127697] = 3, + ACTIONS(4084), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 11, + ACTIONS(4086), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246135,198 +244019,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_is, anon_sym_PIPE_RBRACE, - [128048] = 11, - ACTIONS(2570), 1, + [127718] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4253), 1, + STATE(4302), 1, sym_type_annotation, - STATE(4844), 1, + STATE(4995), 1, sym__initializer, - STATE(5197), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128085] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(4267), 1, - sym_type_annotation, - STATE(4877), 1, - sym__initializer, - STATE(5228), 1, + STATE(5335), 1, sym__call_signature, - STATE(5348), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128122] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3307), 1, - sym_formal_parameters, - STATE(4206), 1, - sym_type_annotation, - STATE(5014), 1, - sym__call_signature, - STATE(5025), 1, - sym__initializer, - STATE(5222), 1, - sym_type_parameters, + [127755] = 3, + ACTIONS(4118), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(4120), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [128159] = 5, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6618), 1, + anon_sym_LBRACK, anon_sym_DOT, - STATE(3404), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127776] = 4, + ACTIONS(4104), 1, + anon_sym_PIPE, + ACTIONS(6421), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 9, + ACTIONS(4106), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128184] = 11, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [127799] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3976), 1, + STATE(4334), 1, sym_type_annotation, - STATE(4581), 1, + STATE(5055), 1, sym__initializer, - STATE(5175), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5401), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128221] = 11, - ACTIONS(2570), 1, + [127836] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3918), 1, + STATE(4123), 1, sym_type_annotation, - STATE(4642), 1, + STATE(4619), 1, sym__initializer, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5468), 1, + STATE(5439), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128258] = 4, - ACTIONS(4031), 1, + [127873] = 9, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3315), 1, + sym_formal_parameters, + STATE(4274), 1, + sym__call_signature, + STATE(4278), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 10, + ACTIONS(6678), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [128281] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [127906] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, + sym_formal_parameters, + STATE(4231), 1, + sym_type_annotation, + STATE(4834), 1, + sym__initializer, + STATE(5170), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 11, + ACTIONS(6686), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128299] = 3, - ACTIONS(4409), 1, + [127943] = 4, + ACTIONS(4108), 1, anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4411), 10, + ACTIONS(4110), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246337,49 +244203,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128319] = 3, - ACTIONS(4304), 1, - anon_sym_PIPE, + [127966] = 9, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3315), 1, + sym_formal_parameters, + STATE(3633), 1, + sym__call_signature, + STATE(4182), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 10, + ACTIONS(6671), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128339] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, + [127999] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 8, + ACTIONS(3814), 7, 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_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128363] = 3, - ACTIONS(4357), 1, + [128028] = 3, + ACTIONS(4324), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 10, + ACTIONS(4326), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246390,47 +244266,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128383] = 4, - ACTIONS(4361), 1, + [128048] = 5, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 9, + ACTIONS(4172), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4452), 7, 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, - [128405] = 2, + [128072] = 3, + ACTIONS(4174), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 11, + ACTIONS(4176), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128423] = 3, - ACTIONS(4369), 1, + anon_sym_PIPE_RBRACE, + [128092] = 3, + ACTIONS(2371), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4371), 10, + ACTIONS(2369), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246441,13 +244319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128443] = 3, - ACTIONS(4095), 1, + [128112] = 4, + ACTIONS(4190), 1, anon_sym_PIPE, + ACTIONS(6692), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 10, + ACTIONS(4192), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246456,15 +244336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128463] = 3, - ACTIONS(1893), 1, + [128134] = 4, + ACTIONS(6427), 1, anon_sym_DOT, + ACTIONS(6429), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 10, + ACTIONS(3512), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246473,29 +244354,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [128483] = 2, + [128156] = 4, + ACTIONS(6694), 1, + anon_sym_DOT, + ACTIONS(6696), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 11, + 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128501] = 2, + [128178] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4294), 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, + [128202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 11, + ACTIONS(3227), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246507,63 +244408,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128519] = 3, - ACTIONS(4153), 1, - anon_sym_PIPE, + [128220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 10, + ACTIONS(4322), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128539] = 2, + [128238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 11, + 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_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128557] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, + [128256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 8, + ACTIONS(4348), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [128581] = 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 11, + ACTIONS(3814), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -246575,48 +244472,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128599] = 3, - ACTIONS(2382), 1, - anon_sym_PIPE, + [128292] = 3, + ACTIONS(1888), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 10, + ACTIONS(4386), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128619] = 4, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4159), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128641] = 3, - ACTIONS(4308), 1, + [128312] = 3, + ACTIONS(4402), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 10, + ACTIONS(4404), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246627,27 +244506,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128661] = 2, + [128332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 11, + ACTIONS(3474), 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_PIPE, anon_sym_extends, - [128679] = 2, + [128350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 11, + ACTIONS(3478), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246659,13 +244538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128697] = 3, - ACTIONS(4167), 1, + [128368] = 3, + ACTIONS(4256), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 10, + ACTIONS(4258), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246676,13 +244555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128717] = 3, - ACTIONS(1897), 1, + [128388] = 3, + ACTIONS(1892), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 10, + ACTIONS(4386), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246693,28 +244572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [128737] = 3, - ACTIONS(2378), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2376), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128757] = 2, + [128408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 11, + ACTIONS(4416), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246726,11 +244588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128775] = 2, + [128426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 11, + ACTIONS(4420), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246742,83 +244604,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128793] = 3, - ACTIONS(4171), 1, - anon_sym_PIPE, + [128444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 10, + ACTIONS(4424), 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_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128813] = 3, - ACTIONS(4292), 1, anon_sym_PIPE, + anon_sym_extends, + [128462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 10, + ACTIONS(4428), 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_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128833] = 2, + [128480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 11, + ACTIONS(3235), 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_PIPE, anon_sym_extends, - [128851] = 6, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6711), 1, - anon_sym_is, - STATE(2995), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [128877] = 3, - ACTIONS(4195), 1, + [128498] = 3, + ACTIONS(4260), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 10, + ACTIONS(4262), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246829,55 +244669,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128897] = 4, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3354), 1, - sym_type_arguments, + [128518] = 3, + ACTIONS(4264), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(4266), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128919] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3600), 1, - sym_formal_parameters, - STATE(5138), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [128538] = 3, + ACTIONS(2363), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(2361), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [128945] = 5, - ACTIONS(6705), 1, + [128558] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6702), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 8, + ACTIONS(4404), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246886,13 +244722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [128969] = 3, - ACTIONS(4345), 1, + [128582] = 3, + ACTIONS(4316), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 10, + ACTIONS(4318), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246903,32 +244739,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128989] = 5, - ACTIONS(4236), 1, + [128602] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_LBRACK, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4232), 7, + ACTIONS(4334), 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, - [129013] = 3, - ACTIONS(4391), 1, + [128626] = 3, + ACTIONS(2379), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 10, + ACTIONS(2377), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246939,15 +244775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129033] = 4, - ACTIONS(4248), 1, + [128646] = 3, + ACTIONS(4430), 1, anon_sym_PIPE, - ACTIONS(6715), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 9, + ACTIONS(4432), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246956,31 +244790,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [129055] = 3, - ACTIONS(4149), 1, - anon_sym_PIPE, + [128666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 10, + ACTIONS(3239), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129075] = 3, - ACTIONS(4187), 1, + [128684] = 4, + ACTIONS(4438), 1, anon_sym_PIPE, + ACTIONS(6698), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 10, + ACTIONS(4440), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246988,32 +244824,32 @@ 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, - [129095] = 2, + [128706] = 3, + ACTIONS(4446), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 11, + ACTIONS(4448), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [129113] = 3, - ACTIONS(4191), 1, + anon_sym_PIPE_RBRACE, + [128726] = 3, + ACTIONS(4391), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 10, + ACTIONS(4393), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247024,13 +244860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129133] = 3, - ACTIONS(4175), 1, + [128746] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 10, + ACTIONS(4444), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247038,68 +244878,65 @@ 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, - [129153] = 4, - ACTIONS(4254), 1, + [128770] = 3, + ACTIONS(2367), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 9, + ACTIONS(2365), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129175] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + [128790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 10, + ACTIONS(5494), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [129195] = 3, - ACTIONS(4262), 1, + [128808] = 4, + ACTIONS(4212), 1, anon_sym_PIPE, + ACTIONS(6690), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 10, + ACTIONS(4214), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129215] = 3, - ACTIONS(4266), 1, + [128830] = 3, + ACTIONS(4342), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 10, + ACTIONS(4344), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247110,13 +244947,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129235] = 3, - ACTIONS(4377), 1, + [128850] = 11, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_type, + ACTIONS(6708), 1, + anon_sym_COMMA, + ACTIONS(6710), 1, + anon_sym_RBRACE, + ACTIONS(6712), 1, + anon_sym_typeof, + STATE(5029), 1, + sym_import_specifier, + STATE(5384), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5604), 2, + sym__module_export_name, + sym_string, + [128886] = 3, + ACTIONS(4350), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 10, + ACTIONS(4352), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247127,13 +244989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129255] = 3, - ACTIONS(4083), 1, + [128906] = 3, + ACTIONS(4354), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 10, + ACTIONS(4356), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247144,17 +245006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129275] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, + [128926] = 3, + ACTIONS(4186), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 8, + ACTIONS(4188), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247162,14 +245020,16 @@ 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, - [129299] = 3, - ACTIONS(4270), 1, + [128946] = 3, + ACTIONS(4358), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 10, + ACTIONS(4360), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247180,13 +245040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129319] = 3, - ACTIONS(4236), 1, + [128966] = 3, + ACTIONS(4196), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 10, + ACTIONS(4198), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247197,31 +245057,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129339] = 4, - ACTIONS(4236), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, + [128986] = 6, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6714), 1, + anon_sym_is, + STATE(2964), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3548), 7, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [129012] = 3, + ACTIONS(4372), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 9, + ACTIONS(4374), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129361] = 3, - ACTIONS(4087), 1, + [129032] = 3, + ACTIONS(4368), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 10, + ACTIONS(4370), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247232,13 +245111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129381] = 3, - ACTIONS(4449), 1, + [129052] = 3, + ACTIONS(4406), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 10, + ACTIONS(4408), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247249,13 +245128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129401] = 3, - ACTIONS(4199), 1, + [129072] = 3, + ACTIONS(4104), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 10, + ACTIONS(4106), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247266,17 +245145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129421] = 5, - ACTIONS(6705), 1, + [129092] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6702), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 8, + ACTIONS(4204), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247285,54 +245164,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [129445] = 11, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6719), 1, - anon_sym_type, - ACTIONS(6721), 1, - anon_sym_COMMA, - ACTIONS(6723), 1, - anon_sym_RBRACE, - ACTIONS(6725), 1, - anon_sym_typeof, - STATE(4987), 1, - sym_import_specifier, - STATE(5424), 1, - sym__import_identifier, + [129116] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4324), 1, + anon_sym_PIPE, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5670), 2, - sym__module_export_name, - sym_string, - [129481] = 2, + ACTIONS(4326), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [129140] = 3, + ACTIONS(4216), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5255), 11, + ACTIONS(4218), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [129499] = 3, - ACTIONS(4222), 1, + [129160] = 3, + ACTIONS(4220), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 10, + ACTIONS(4222), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247343,13 +245217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129519] = 3, - ACTIONS(2390), 1, + [129180] = 3, + ACTIONS(4170), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 10, + ACTIONS(4172), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247360,32 +245234,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129539] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4292), 1, + [129200] = 4, + ACTIONS(4170), 1, anon_sym_PIPE, - STATE(1671), 1, - sym_arguments, + ACTIONS(6690), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 8, + ACTIONS(4172), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129563] = 3, - ACTIONS(4315), 1, + [129222] = 3, + ACTIONS(4108), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 10, + ACTIONS(4110), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247396,13 +245269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129583] = 3, - ACTIONS(2386), 1, + [129242] = 3, + ACTIONS(4140), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 10, + ACTIONS(4142), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247413,13 +245286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129603] = 3, - ACTIONS(4226), 1, + [129262] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 10, + ACTIONS(4222), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247427,20 +245304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129623] = 5, - ACTIONS(6705), 1, + [129286] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6702), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 8, + ACTIONS(4436), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247449,15 +245324,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [129647] = 4, - ACTIONS(6392), 1, - anon_sym_DOT, - ACTIONS(6394), 1, - anon_sym_QMARK_DOT, + [129310] = 3, + ACTIONS(2375), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2373), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [129330] = 4, + ACTIONS(6381), 1, + anon_sym_LT, + STATE(3363), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 9, + ACTIONS(4110), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247467,13 +245359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129669] = 3, - ACTIONS(4135), 1, + [129352] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3615), 1, + sym_formal_parameters, + STATE(5411), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [129378] = 3, + ACTIONS(4230), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 10, + ACTIONS(4232), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247484,17 +245396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129689] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, + [129398] = 3, + ACTIONS(4270), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 8, + ACTIONS(4156), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247502,32 +245410,51 @@ 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, - [129713] = 4, - ACTIONS(6727), 1, - anon_sym_DOT, - ACTIONS(6729), 1, - anon_sym_QMARK_DOT, + [129418] = 3, + ACTIONS(4300), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 9, + ACTIONS(4302), 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_extends, + anon_sym_PIPE_RBRACE, + [129438] = 4, + ACTIONS(4304), 1, anon_sym_PIPE, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4306), 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, - [129735] = 3, - ACTIONS(2374), 1, + anon_sym_PIPE_RBRACE, + [129460] = 3, + ACTIONS(4184), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 10, + ACTIONS(4182), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247538,91 +245465,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129755] = 2, + [129480] = 3, + ACTIONS(4376), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 11, + ACTIONS(4378), 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_extends, - [129773] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6731), 1, - sym_identifier, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6735), 1, - anon_sym_extends, - ACTIONS(6737), 1, - anon_sym_implements, - STATE(2172), 1, - sym_class_body, - STATE(3659), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5211), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129808] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6735), 1, anon_sym_extends, - ACTIONS(6737), 1, - anon_sym_implements, - ACTIONS(6739), 1, - sym_identifier, - STATE(2127), 1, - sym_class_body, - STATE(3518), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5255), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129843] = 3, - ACTIONS(6741), 1, - anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [129500] = 3, + ACTIONS(4114), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 9, + ACTIONS(4116), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [129862] = 2, + anon_sym_PIPE_RBRACE, + [129520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 10, + ACTIONS(1898), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247633,65 +245514,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_extends, anon_sym_is, - [129879] = 2, + [129537] = 3, + ACTIONS(6633), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 10, + ACTIONS(4116), 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_AMP, anon_sym_PIPE, anon_sym_extends, - [129896] = 9, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6743), 1, - anon_sym_type, - ACTIONS(6745), 1, - anon_sym_as, - STATE(5179), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6578), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5490), 2, - sym__module_export_name, - sym_string, - [129927] = 4, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [129948] = 2, + [129556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 10, + ACTIONS(4180), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247702,322 +245545,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129965] = 4, - ACTIONS(6749), 1, - anon_sym_COLON, + [129573] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6716), 1, + sym_identifier, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6720), 1, + anon_sym_extends, + ACTIONS(6722), 1, + anon_sym_implements, + STATE(2266), 1, + sym_class_body, + STATE(3685), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5418), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3854), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6747), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129986] = 11, - ACTIONS(2570), 1, + [129608] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6751), 1, + ACTIONS(6724), 1, sym_identifier, - STATE(2127), 1, + STATE(2277), 1, sym_class_body, - STATE(3518), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5255), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130021] = 10, - ACTIONS(2338), 1, + [129643] = 10, + ACTIONS(3109), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(3111), 1, anon_sym_SQUOTE, - ACTIONS(6717), 1, + ACTIONS(6704), 1, sym_identifier, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_type, - ACTIONS(6725), 1, + ACTIONS(6712), 1, anon_sym_typeof, - ACTIONS(6753), 1, + ACTIONS(6726), 1, anon_sym_RBRACE, - STATE(5142), 1, + STATE(5314), 1, sym_import_specifier, - STATE(5424), 1, + STATE(5384), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5670), 2, + STATE(5604), 2, sym__module_export_name, sym_string, - [130054] = 11, - ACTIONS(2570), 1, + [129676] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6735), 1, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6755), 1, + ACTIONS(6728), 1, sym_identifier, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(2609), 1, + STATE(2277), 1, sym_class_body, - STATE(3546), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5428), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130089] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1777), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [130106] = 3, - ACTIONS(6620), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 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, - [130125] = 4, - ACTIONS(6749), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3836), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6759), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130146] = 8, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6761), 1, - anon_sym_EQ, - ACTIONS(6765), 1, - anon_sym_BANG, - STATE(4056), 1, - sym_type_annotation, - STATE(4221), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130175] = 9, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6765), 1, - anon_sym_BANG, - ACTIONS(6769), 1, - sym__automatic_semicolon, - STATE(4056), 1, - sym_type_annotation, - STATE(4552), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6763), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, - [130206] = 11, - ACTIONS(2570), 1, + [129711] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6735), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6772), 1, + ACTIONS(6730), 1, sym_identifier, - STATE(1654), 1, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1673), 1, sym_class_body, - STATE(3545), 1, + STATE(3716), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5213), 1, + STATE(5149), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130241] = 9, - ACTIONS(2338), 1, + [129746] = 10, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_type, + ACTIONS(6712), 1, + anon_sym_typeof, + ACTIONS(6734), 1, + anon_sym_RBRACE, + STATE(5314), 1, + sym_import_specifier, + STATE(5384), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5604), 2, + sym__module_export_name, + sym_string, + [129779] = 9, + ACTIONS(3109), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(3111), 1, anon_sym_SQUOTE, - ACTIONS(6774), 1, + ACTIONS(6736), 1, sym_identifier, - ACTIONS(6778), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - ACTIONS(6780), 1, + ACTIONS(6742), 1, anon_sym_RBRACE, - STATE(4767), 1, + STATE(4730), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6776), 2, + ACTIONS(6738), 2, anon_sym_type, anon_sym_typeof, - STATE(4769), 2, + STATE(4735), 2, sym__module_export_name, sym_string, - [130272] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6782), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130295] = 11, - ACTIONS(2570), 1, + [129810] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6784), 1, + ACTIONS(6744), 1, sym_identifier, - STATE(2127), 1, + STATE(2266), 1, sym_class_body, - STATE(3518), 1, + STATE(3685), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5255), 1, + STATE(5418), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130330] = 11, - ACTIONS(2570), 1, + [129845] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6786), 1, + ACTIONS(6746), 1, sym_identifier, - STATE(2172), 1, + STATE(2266), 1, sym_class_body, - STATE(3659), 1, + STATE(3685), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5211), 1, + STATE(5418), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130365] = 5, - ACTIONS(6062), 1, - anon_sym_LPAREN, - ACTIONS(6372), 1, - anon_sym_DOT, - STATE(2938), 1, - sym_arguments, + [129880] = 4, + ACTIONS(4622), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 7, + ACTIONS(4074), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [129901] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6720), 1, anon_sym_extends, - [130388] = 3, - ACTIONS(6620), 1, + ACTIONS(6722), 1, + anon_sym_implements, + ACTIONS(6748), 1, + sym_identifier, + STATE(2266), 1, + sym_class_body, + STATE(3685), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5418), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [129936] = 3, + ACTIONS(6633), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 9, + ACTIONS(4106), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248027,32 +245814,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130407] = 6, - ACTIONS(6340), 1, + [129955] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6750), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [129978] = 5, + ACTIONS(6066), 1, + anon_sym_LPAREN, + ACTIONS(6357), 1, anon_sym_DOT, - ACTIONS(6672), 1, - anon_sym_LT, - ACTIONS(6788), 1, - anon_sym_is, - STATE(2995), 1, - sym_type_arguments, + STATE(2934), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 6, - anon_sym_as, + ACTIONS(4080), 7, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [130432] = 3, - ACTIONS(6790), 1, + [130001] = 4, + ACTIONS(6754), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3886), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6752), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [130022] = 3, + ACTIONS(6756), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(4110), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248062,453 +245883,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130451] = 11, - ACTIONS(2570), 1, + [130041] = 6, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6682), 1, anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6735), 1, - anon_sym_extends, - ACTIONS(6737), 1, - anon_sym_implements, - ACTIONS(6792), 1, - sym_identifier, - STATE(2172), 1, - sym_class_body, - STATE(3659), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5211), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + ACTIONS(6758), 1, + anon_sym_is, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130486] = 11, - ACTIONS(2570), 1, + ACTIONS(3548), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130066] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6735), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6757), 1, + ACTIONS(6732), 1, anon_sym_LBRACE, - ACTIONS(6794), 1, + ACTIONS(6760), 1, sym_identifier, - STATE(1675), 1, + STATE(2573), 1, sym_class_body, - STATE(3561), 1, + STATE(3670), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5282), 1, + STATE(5171), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130521] = 11, - ACTIONS(2570), 1, + [130101] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6796), 1, + ACTIONS(6762), 1, sym_identifier, - STATE(2127), 1, + STATE(2277), 1, sym_class_body, - STATE(3518), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5255), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130556] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6719), 1, - anon_sym_type, - ACTIONS(6725), 1, - anon_sym_typeof, - ACTIONS(6798), 1, - anon_sym_RBRACE, - STATE(5142), 1, - sym_import_specifier, - STATE(5424), 1, - sym__import_identifier, + [130136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5670), 2, - sym__module_export_name, - sym_string, - [130589] = 11, - ACTIONS(2570), 1, + ACTIONS(4086), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [130153] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6800), 1, + ACTIONS(6764), 1, sym_identifier, - STATE(2172), 1, + STATE(2277), 1, sym_class_body, - STATE(3659), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5211), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130624] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4100), 1, - sym_type_annotation, - STATE(4626), 1, - sym__initializer, + [130188] = 3, + ACTIONS(6766), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6544), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6542), 3, + ACTIONS(4252), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130650] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6802), 1, - anon_sym_BANG, - ACTIONS(6804), 1, - anon_sym_QMARK, - STATE(4294), 1, - sym_type_annotation, - STATE(4927), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130207] = 9, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6768), 1, + anon_sym_type, + ACTIONS(6770), 1, + anon_sym_as, + STATE(5355), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, - sym__automatic_semicolon, + ACTIONS(6475), 2, anon_sym_COMMA, - anon_sym_SEMI, - [130678] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + anon_sym_RBRACE, + STATE(5579), 2, + sym__module_export_name, + sym_string, + [130238] = 8, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6806), 1, + ACTIONS(6772), 1, + anon_sym_EQ, + ACTIONS(6776), 1, anon_sym_BANG, - ACTIONS(6808), 1, - anon_sym_QMARK, - STATE(3993), 1, - sym_type_annotation, - STATE(4801), 1, + STATE(4215), 1, sym__initializer, + STATE(4338), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6774), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130706] = 8, - ACTIONS(6462), 1, + [130267] = 9, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6810), 1, + ACTIONS(6776), 1, anon_sym_BANG, - ACTIONS(6812), 1, - anon_sym_QMARK, - STATE(4002), 1, + ACTIONS(6780), 1, + sym__automatic_semicolon, + STATE(4338), 1, sym_type_annotation, - STATE(4828), 1, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, - sym__automatic_semicolon, + ACTIONS(6774), 2, anon_sym_COMMA, anon_sym_SEMI, - [130734] = 2, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [130298] = 4, + ACTIONS(6754), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 9, + STATE(3825), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6783), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [130319] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6720), 1, anon_sym_extends, - [130750] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6814), 1, - anon_sym_BANG, - ACTIONS(6816), 1, - anon_sym_QMARK, - STATE(4013), 1, - sym_type_annotation, - STATE(4889), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130778] = 2, + ACTIONS(6722), 1, + anon_sym_implements, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym_identifier, + STATE(1653), 1, + sym_class_body, + STATE(3666), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5449), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6818), 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, - [130794] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6820), 1, - anon_sym_BANG, - ACTIONS(6822), 1, - anon_sym_QMARK, - STATE(4053), 1, - sym_type_annotation, - STATE(4532), 1, - sym__initializer, + [130354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(4120), 10, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130822] = 5, - ACTIONS(6824), 1, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(6826), 1, anon_sym_PIPE, - ACTIONS(6828), 1, anon_sym_extends, + [130371] = 8, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6736), 1, + sym_identifier, + ACTIONS(6787), 1, + anon_sym_RBRACE, + STATE(5379), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6738), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4735), 2, + sym__module_export_name, + sym_string, + [130399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 6, + ACTIONS(4393), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [130844] = 3, - ACTIONS(3398), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [130862] = 5, - ACTIONS(6372), 1, - anon_sym_DOT, - ACTIONS(6670), 1, - anon_sym_LPAREN, - STATE(2938), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4119), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130884] = 2, + [130415] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6789), 1, + anon_sym_BANG, + ACTIONS(6791), 1, + anon_sym_QMARK, + STATE(3908), 1, + sym_type_annotation, + STATE(4610), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 9, - anon_sym_EQ, + ACTIONS(6489), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + anon_sym_SEMI, + [130443] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6793), 1, + anon_sym_BANG, + ACTIONS(6795), 1, anon_sym_QMARK, - [130900] = 4, - ACTIONS(6832), 1, - anon_sym_LBRACK, + STATE(4124), 1, + sym_type_annotation, + STATE(4627), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4232), 5, + ACTIONS(6449), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130920] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, - anon_sym_extends, + [130471] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 6, + ACTIONS(4356), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [130942] = 8, - ACTIONS(6462), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130487] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6834), 1, + ACTIONS(6797), 1, anon_sym_BANG, - ACTIONS(6836), 1, + ACTIONS(6799), 1, anon_sym_QMARK, - STATE(4008), 1, + STATE(3911), 1, sym_type_annotation, - STATE(4869), 1, + STATE(4680), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130970] = 8, - ACTIONS(6462), 1, + [130515] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6838), 1, + ACTIONS(6801), 1, anon_sym_BANG, - ACTIONS(6840), 1, + ACTIONS(6803), 1, anon_sym_QMARK, - STATE(4304), 1, + STATE(3913), 1, sym_type_annotation, - STATE(4946), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130998] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6842), 1, - anon_sym_BANG, - ACTIONS(6844), 1, - anon_sym_QMARK, - STATE(4295), 1, - sym_type_annotation, - STATE(4931), 1, - sym__initializer, + [130543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(4360), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131026] = 8, - ACTIONS(6462), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130559] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6846), 1, + ACTIONS(6805), 1, anon_sym_BANG, - ACTIONS(6848), 1, + ACTIONS(6807), 1, anon_sym_QMARK, - STATE(4005), 1, + STATE(4379), 1, sym_type_annotation, - STATE(4838), 1, + STATE(4707), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131054] = 2, + [130587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 9, + ACTIONS(4258), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248518,11 +246302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131070] = 2, + [130603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 9, + ACTIONS(4262), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248532,11 +246316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131086] = 2, + [130619] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 9, + ACTIONS(4266), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248546,31 +246330,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131102] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + [130635] = 4, + ACTIONS(6809), 1, anon_sym_COLON, - ACTIONS(6850), 1, - anon_sym_BANG, - ACTIONS(6852), 1, - anon_sym_QMARK, - STATE(4009), 1, - sym_type_annotation, - STATE(4875), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + STATE(4324), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6783), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131130] = 2, + [130655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 9, + ACTIONS(2361), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248580,11 +246360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131146] = 2, + [130671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 9, + ACTIONS(4374), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248594,79 +246374,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131162] = 2, + [130687] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6811), 1, + anon_sym_BANG, + ACTIONS(6813), 1, + anon_sym_QMARK, + STATE(3936), 1, + sym_type_annotation, + STATE(4665), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6854), 9, - anon_sym_EQ, + ACTIONS(6489), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [131178] = 8, - ACTIONS(6462), 1, + anon_sym_SEMI, + [130715] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6856), 1, + ACTIONS(6815), 1, anon_sym_BANG, - ACTIONS(6858), 1, + ACTIONS(6817), 1, anon_sym_QMARK, - STATE(4362), 1, + STATE(3937), 1, sym_type_annotation, - STATE(5066), 1, + STATE(4774), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131206] = 3, - ACTIONS(6824), 1, + [130743] = 5, + ACTIONS(6819), 1, anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 8, + ACTIONS(4294), 6, 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, - [131224] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [130765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131250] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4371), 9, + ACTIONS(4116), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248676,30 +246445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131266] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131292] = 2, + [130781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 9, + ACTIONS(2373), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248709,32 +246459,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131308] = 9, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6719), 1, - anon_sym_type, - ACTIONS(6725), 1, - anon_sym_typeof, - STATE(5142), 1, - sym_import_specifier, - STATE(5424), 1, - sym__import_identifier, + [130797] = 4, + ACTIONS(6825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5670), 2, - sym__module_export_name, - sym_string, - [131338] = 2, + ACTIONS(4172), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4452), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [130817] = 3, + ACTIONS(6827), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 9, + ACTIONS(4192), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248743,32 +246490,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, + [130835] = 6, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(6829), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6750), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [130859] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, anon_sym_extends, - [131354] = 8, - ACTIONS(6462), 1, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2173), 1, + sym_class_body, + STATE(3555), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5300), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130891] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6860), 1, + ACTIONS(6835), 1, anon_sym_BANG, - ACTIONS(6862), 1, + ACTIONS(6837), 1, anon_sym_QMARK, - STATE(4370), 1, + STATE(4098), 1, sym_type_annotation, - STATE(5088), 1, + STATE(4560), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131382] = 2, + [130919] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6839), 1, + anon_sym_BANG, + ACTIONS(6841), 1, + anon_sym_QMARK, + STATE(4138), 1, + sym_type_annotation, + STATE(4662), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 9, + ACTIONS(6513), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130947] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248778,141 +246584,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131398] = 5, - ACTIONS(6824), 1, + [130963] = 5, + ACTIONS(6819), 1, anon_sym_AMP, - ACTIONS(6826), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6828), 1, + ACTIONS(6823), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 6, + ACTIONS(4334), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131420] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [130985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131446] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(1726), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6864), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2141), 1, - sym_class_body, - STATE(3533), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5434), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131478] = 2, + [131001] = 3, + ACTIONS(6825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1921), 9, + ACTIONS(4214), 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, - [131494] = 10, - ACTIONS(2570), 1, + [131019] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6843), 1, + anon_sym_BANG, + ACTIONS(6845), 1, + anon_sym_QMARK, + STATE(4353), 1, + sym_type_annotation, + STATE(5085), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6489), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131047] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(3562), 1, - sym_type_parameters, - STATE(4068), 1, + STATE(209), 1, sym_class_body, - STATE(4758), 1, + STATE(3675), 1, + sym_type_parameters, + STATE(5080), 1, sym_extends_clause, - STATE(5313), 1, + STATE(5299), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131526] = 8, - ACTIONS(6462), 1, + [131079] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6870), 1, + ACTIONS(6849), 1, anon_sym_BANG, - ACTIONS(6872), 1, + ACTIONS(6851), 1, anon_sym_QMARK, - STATE(4375), 1, + STATE(3958), 1, sym_type_annotation, - STATE(5104), 1, + STATE(4534), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131554] = 4, - ACTIONS(6874), 1, - anon_sym_COLON, + [131107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3961), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6759), 5, + ACTIONS(3425), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131574] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 9, + ACTIONS(1754), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248922,51 +246720,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131590] = 8, - ACTIONS(6462), 1, + [131139] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6470), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_BANG, - ACTIONS(6878), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4380), 1, - sym_type_annotation, - STATE(5113), 1, - sym__initializer, + [131165] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(4444), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131618] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6880), 1, - anon_sym_BANG, - ACTIONS(6882), 1, - anon_sym_QMARK, - STATE(4384), 1, - sym_type_annotation, - STATE(5126), 1, - sym__initializer, + anon_sym_LBRACK, + [131187] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131203] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(4404), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131646] = 2, + anon_sym_LBRACK, + [131225] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 9, + ACTIONS(3419), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248976,33 +246801,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131662] = 8, - ACTIONS(6462), 1, + [131241] = 7, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6884), 1, - anon_sym_BANG, - ACTIONS(6886), 1, - anon_sym_QMARK, - STATE(4041), 1, + STATE(4333), 1, sym_type_annotation, - STATE(5127), 1, + STATE(5053), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6555), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131690] = 3, - ACTIONS(6888), 1, - anon_sym_extends, + [131267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 8, + ACTIONS(3429), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249011,42 +246833,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [131708] = 2, + anon_sym_extends, + [131283] = 7, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4234), 1, + sym_type_annotation, + STATE(4855), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 9, + ACTIONS(6461), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6459), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131309] = 4, + ACTIONS(6809), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3921), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6752), 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, - [131724] = 5, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6672), 1, + [131329] = 10, + ACTIONS(2499), 1, anon_sym_LT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2284), 1, + sym_class_body, + STATE(3610), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5452), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131746] = 2, + [131361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 9, + ACTIONS(4176), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249056,85 +246905,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131762] = 6, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(6890), 1, + [131377] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4622), 1, anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6782), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [131786] = 10, - ACTIONS(2570), 1, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131403] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(3569), 1, - sym_type_parameters, - STATE(4124), 1, + STATE(788), 1, sym_class_body, - STATE(4758), 1, + STATE(3744), 1, + sym_type_parameters, + STATE(5080), 1, sym_extends_clause, - STATE(5232), 1, + STATE(5408), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131818] = 8, - ACTIONS(6462), 1, + [131435] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6855), 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, + [131451] = 7, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6892), 1, + STATE(4056), 1, + sym_type_annotation, + STATE(4991), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6859), 2, anon_sym_BANG, - ACTIONS(6894), 1, anon_sym_QMARK, - STATE(4288), 1, + ACTIONS(6857), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131477] = 7, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4313), 1, sym_type_annotation, - STATE(4917), 1, + STATE(5036), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6521), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131846] = 2, + [131503] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6861), 1, + anon_sym_BANG, + ACTIONS(6863), 1, + anon_sym_QMARK, + STATE(3963), 1, + sym_type_annotation, + STATE(4570), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 9, + ACTIONS(6489), 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, - [131862] = 2, + [131531] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6896), 9, + ACTIONS(6865), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -249144,151 +247051,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [131878] = 2, + [131573] = 3, + ACTIONS(3417), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3419), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131894] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_class_body, - STATE(3639), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5363), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + anon_sym_LBRACE_PIPE, + [131591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131926] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6757), 1, + ACTIONS(4432), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6864), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(1678), 1, - sym_class_body, - STATE(3563), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5431), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [131607] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131958] = 4, - ACTIONS(6874), 1, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131633] = 3, + ACTIONS(6819), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4061), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6747), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [131978] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4238), 9, + ACTIONS(4440), 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, - [131994] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACK, + [131651] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6867), 1, + anon_sym_BANG, + ACTIONS(6869), 1, + anon_sym_QMARK, + STATE(3966), 1, + sym_type_annotation, + STATE(4581), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 8, + ACTIONS(6489), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132012] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_class_body, - STATE(3721), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5321), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132044] = 3, - ACTIONS(3316), 1, - anon_sym_LBRACE, + [131679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 8, - anon_sym_as, + ACTIONS(6871), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [132062] = 2, + anon_sym_QMARK, + [131695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(4448), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249298,108 +247162,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132078] = 2, + [131711] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6873), 1, + anon_sym_BANG, + ACTIONS(6875), 1, + anon_sym_QMARK, + STATE(4077), 1, + sym_type_annotation, + STATE(5123), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6513), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132094] = 8, - ACTIONS(2338), 1, + [131739] = 9, + ACTIONS(3109), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(3111), 1, anon_sym_SQUOTE, - ACTIONS(6774), 1, + ACTIONS(6704), 1, sym_identifier, - ACTIONS(6902), 1, - anon_sym_RBRACE, - STATE(5430), 1, - sym_export_specifier, + ACTIONS(6706), 1, + anon_sym_type, + ACTIONS(6712), 1, + anon_sym_typeof, + STATE(5314), 1, + sym_import_specifier, + STATE(5384), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6776), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4769), 2, + STATE(5604), 2, sym__module_export_name, sym_string, - [132122] = 10, - ACTIONS(2570), 1, + [131769] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2118), 1, + STATE(2320), 1, sym_class_body, - STATE(3573), 1, + STATE(3709), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5270), 1, + STATE(5268), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132154] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, + [131801] = 3, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(3574), 1, - sym_type_parameters, - STATE(4154), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5284), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132186] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4293), 1, - sym_type_annotation, - STATE(4977), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6550), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6548), 3, - sym__automatic_semicolon, + ACTIONS(3425), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - [132212] = 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [131819] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 9, + ACTIONS(4232), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249409,87 +247254,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132228] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, + [131835] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(1696), 1, - sym_class_body, - STATE(3575), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5300), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 9, + ACTIONS(4436), 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, - [132276] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + [131857] = 7, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6904), 1, - anon_sym_BANG, - ACTIONS(6906), 1, - anon_sym_QMARK, - STATE(4386), 1, - sym_type_annotation, - STATE(4710), 1, + ACTIONS(6772), 1, + anon_sym_EQ, + STATE(4216), 1, sym__initializer, + STATE(4338), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6774), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132304] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6774), 1, - sym_identifier, - ACTIONS(6908), 1, - anon_sym_RBRACE, - STATE(5430), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6776), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4769), 2, - sym__module_export_name, - sym_string, - [132332] = 2, + [131883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3394), 9, + ACTIONS(2365), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249499,45 +247304,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132348] = 8, - ACTIONS(6462), 1, + [131899] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6910), 1, - anon_sym_BANG, - ACTIONS(6912), 1, - anon_sym_QMARK, - STATE(4162), 1, + ACTIONS(6780), 1, + sym__automatic_semicolon, + STATE(4338), 1, sym_type_annotation, - STATE(4722), 1, + STATE(4561), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, - sym__automatic_semicolon, + ACTIONS(6774), 2, anon_sym_COMMA, anon_sym_SEMI, - [132376] = 2, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [131927] = 5, + ACTIONS(6357), 1, + anon_sym_DOT, + ACTIONS(6680), 1, + anon_sym_LPAREN, + STATE(2934), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4080), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132392] = 2, + [131949] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2184), 1, + sym_class_body, + STATE(3616), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5409), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 9, + [131981] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2377), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249547,235 +247377,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132408] = 8, - ACTIONS(6462), 1, + [131997] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6914), 1, + ACTIONS(6877), 1, anon_sym_BANG, - ACTIONS(6916), 1, + ACTIONS(6879), 1, anon_sym_QMARK, - STATE(4174), 1, + STATE(4360), 1, sym_type_annotation, - STATE(4734), 1, + STATE(5092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132436] = 2, + [132025] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6881), 1, + anon_sym_BANG, + ACTIONS(6883), 1, + anon_sym_QMARK, + STATE(3969), 1, + sym_type_annotation, + STATE(4603), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 9, + ACTIONS(6489), 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, - [132452] = 8, - ACTIONS(6462), 1, + [132053] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6918), 1, + ACTIONS(6885), 1, anon_sym_BANG, - ACTIONS(6920), 1, + ACTIONS(6887), 1, anon_sym_QMARK, - STATE(3953), 1, + STATE(4362), 1, sym_type_annotation, - STATE(4628), 1, + STATE(5095), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132480] = 8, - ACTIONS(6462), 1, + [132081] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6922), 1, + ACTIONS(6889), 1, anon_sym_BANG, - ACTIONS(6924), 1, + ACTIONS(6891), 1, anon_sym_QMARK, - STATE(4205), 1, + STATE(3973), 1, sym_type_annotation, - STATE(4770), 1, + STATE(4618), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132508] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [132109] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2254), 1, + sym_class_body, + STATE(3689), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5227), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [132534] = 10, - ACTIONS(2570), 1, + [132141] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(3576), 1, - sym_type_parameters, - STATE(4213), 1, + STATE(2574), 1, sym_class_body, - STATE(4758), 1, + STATE(3513), 1, + sym_type_parameters, + STATE(5080), 1, sym_extends_clause, - STATE(5395), 1, + STATE(5153), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132566] = 8, - ACTIONS(6462), 1, + [132173] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6926), 1, + ACTIONS(6893), 1, anon_sym_BANG, - ACTIONS(6928), 1, + ACTIONS(6895), 1, anon_sym_QMARK, - STATE(4218), 1, + STATE(4095), 1, sym_type_annotation, - STATE(4792), 1, + STATE(4551), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132594] = 2, + [132201] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6930), 9, - anon_sym_EQ, + ACTIONS(4378), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [132610] = 7, - ACTIONS(6462), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132217] = 7, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4247), 1, + STATE(4235), 1, sym_type_annotation, - STATE(4841), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6480), 2, + ACTIONS(6561), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6478), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132636] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4212), 6, + ACTIONS(6559), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [132658] = 8, - ACTIONS(6462), 1, + [132243] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6934), 1, + ACTIONS(6899), 1, anon_sym_BANG, - ACTIONS(6936), 1, + ACTIONS(6901), 1, anon_sym_QMARK, - STATE(4185), 1, + STATE(4205), 1, sym_type_annotation, - STATE(4751), 1, + STATE(4775), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6932), 3, + ACTIONS(6897), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132686] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [132712] = 2, + [132271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 9, + ACTIONS(4326), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249785,314 +247588,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132728] = 8, - ACTIONS(6462), 1, + [132287] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6938), 1, + ACTIONS(6903), 1, anon_sym_BANG, - ACTIONS(6940), 1, + ACTIONS(6905), 1, anon_sym_QMARK, - STATE(4301), 1, + STATE(3978), 1, sym_type_annotation, - STATE(4943), 1, + STATE(4657), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132756] = 8, - ACTIONS(6462), 1, + [132315] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6942), 1, + ACTIONS(6907), 1, anon_sym_BANG, - ACTIONS(6944), 1, + ACTIONS(6909), 1, anon_sym_QMARK, - STATE(4292), 1, + STATE(3990), 1, sym_type_annotation, - STATE(4923), 1, + STATE(4701), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132784] = 8, - ACTIONS(6462), 1, + [132343] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(3717), 1, + sym_type_parameters, + STATE(3931), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5231), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132375] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6946), 1, + ACTIONS(6911), 1, anon_sym_BANG, - ACTIONS(6948), 1, + ACTIONS(6913), 1, anon_sym_QMARK, - STATE(4379), 1, + STATE(4142), 1, sym_type_annotation, - STATE(5115), 1, + STATE(4673), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132812] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2288), 1, - sym_class_body, - STATE(3598), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5414), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [132403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132844] = 10, - ACTIONS(2570), 1, + ACTIONS(4302), 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, + [132419] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6732), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2269), 1, + STATE(1676), 1, sym_class_body, - STATE(3592), 1, + STATE(3720), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5302), 1, + STATE(5145), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132876] = 8, - ACTIONS(6462), 1, + [132451] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6950), 1, + ACTIONS(6915), 1, anon_sym_BANG, - ACTIONS(6952), 1, + ACTIONS(6917), 1, anon_sym_QMARK, - STATE(4385), 1, + STATE(4144), 1, sym_type_annotation, - STATE(5131), 1, + STATE(4675), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132904] = 2, + [132479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6919), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132920] = 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6921), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132511] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6847), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_class_body, + STATE(3581), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5397), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132543] = 5, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(2964), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3548), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132936] = 8, - ACTIONS(6462), 1, + [132565] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6923), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_class_body, + STATE(3619), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5255), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132597] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6954), 1, + ACTIONS(6925), 1, anon_sym_BANG, - ACTIONS(6956), 1, + ACTIONS(6927), 1, anon_sym_QMARK, - STATE(4219), 1, + STATE(4152), 1, sym_type_annotation, - STATE(4796), 1, + STATE(4689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132964] = 8, - ACTIONS(6462), 1, + [132625] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6958), 1, + ACTIONS(6929), 1, anon_sym_BANG, - ACTIONS(6960), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - STATE(4225), 1, + STATE(4367), 1, sym_type_annotation, - STATE(4804), 1, + STATE(5103), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132992] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, + [132653] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4220), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6923), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [133014] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6962), 1, - anon_sym_BANG, - ACTIONS(6964), 1, - anon_sym_QMARK, - STATE(4156), 1, - sym_type_annotation, - STATE(5135), 1, - sym__initializer, + STATE(912), 1, + sym_class_body, + STATE(3621), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5304), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133042] = 7, - ACTIONS(239), 1, + [132685] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [133068] = 3, - ACTIONS(3392), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3394), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [133086] = 8, - ACTIONS(6462), 1, + [132711] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6966), 1, + ACTIONS(6933), 1, anon_sym_BANG, - ACTIONS(6968), 1, + ACTIONS(6935), 1, anon_sym_QMARK, - STATE(4239), 1, + STATE(4366), 1, sym_type_annotation, - STATE(4819), 1, + STATE(5104), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133114] = 8, - ACTIONS(6462), 1, + [132739] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6970), 1, + ACTIONS(6937), 1, anon_sym_BANG, - ACTIONS(6972), 1, + ACTIONS(6939), 1, anon_sym_QMARK, - STATE(4240), 1, + STATE(4236), 1, sym_type_annotation, - STATE(4827), 1, + STATE(4851), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6897), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133142] = 2, + [132767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 9, + ACTIONS(4344), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250102,232 +247950,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133158] = 8, - ACTIONS(6462), 1, + [132783] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(3594), 1, + sym_type_parameters, + STATE(4043), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5341), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132815] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6974), 1, + ACTIONS(6941), 1, anon_sym_BANG, - ACTIONS(6976), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - STATE(3966), 1, + STATE(4372), 1, sym_type_annotation, - STATE(4682), 1, + STATE(5113), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133186] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4228), 9, + ACTIONS(6527), 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, - [133202] = 7, - ACTIONS(6462), 1, + [132843] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4356), 1, + ACTIONS(6945), 1, + anon_sym_BANG, + ACTIONS(6947), 1, + anon_sym_QMARK, + STATE(4099), 1, sym_type_annotation, - STATE(5040), 1, + STATE(4562), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6980), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6978), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133228] = 10, - ACTIONS(2570), 1, + [132871] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(228), 1, - sym_class_body, - STATE(3587), 1, + STATE(3645), 1, sym_type_parameters, - STATE(4758), 1, + STATE(3979), 1, + sym_class_body, + STATE(5080), 1, sym_extends_clause, - STATE(5187), 1, + STATE(5144), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133260] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACK, + [132903] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6949), 1, + anon_sym_BANG, + ACTIONS(6951), 1, + anon_sym_QMARK, + STATE(4377), 1, + sym_type_annotation, + STATE(5120), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 8, + ACTIONS(6527), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133278] = 7, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6761), 1, + [132931] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4056), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6953), 1, + anon_sym_BANG, + ACTIONS(6955), 1, + anon_sym_QMARK, + STATE(4101), 1, sym_type_annotation, - STATE(4222), 1, + STATE(4567), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6763), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133304] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4393), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [132959] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133320] = 8, - ACTIONS(6462), 1, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6769), 1, - sym__automatic_semicolon, - STATE(4056), 1, - sym_type_annotation, - STATE(4589), 1, - sym__initializer, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, - [133348] = 7, - ACTIONS(3535), 1, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(6066), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6982), 1, - anon_sym_DOT, - STATE(1266), 1, - sym_arguments, - STATE(5452), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3583), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [133374] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, - anon_sym_extends, + anon_sym_QMARK, + [132985] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6957), 1, + anon_sym_BANG, + ACTIONS(6959), 1, + anon_sym_QMARK, + STATE(4105), 1, + sym_type_annotation, + STATE(4575), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 6, + ACTIONS(6513), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [133396] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_class_body, - STATE(3657), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5446), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133428] = 8, - ACTIONS(6462), 1, + [133013] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6984), 1, + ACTIONS(6961), 1, anon_sym_BANG, - ACTIONS(6986), 1, + ACTIONS(6963), 1, anon_sym_QMARK, - STATE(4269), 1, + STATE(4117), 1, sym_type_annotation, - STATE(4890), 1, + STATE(4598), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6932), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133456] = 2, + [133041] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 9, + ACTIONS(4188), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250337,31 +248147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133472] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6988), 1, - anon_sym_BANG, - ACTIONS(6990), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_type_annotation, - STATE(4899), 1, - sym__initializer, + [133057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(4370), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133500] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 9, + ACTIONS(4198), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250371,70 +248175,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133516] = 10, - ACTIONS(2570), 1, + [133089] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4204), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [133111] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2344), 1, + STATE(2345), 1, sym_class_body, - STATE(3553), 1, + STATE(3545), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5369), 1, + STATE(5175), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133548] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, + [133143] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(3558), 1, + sym_type_parameters, + STATE(4002), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5204), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [133570] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6992), 1, - anon_sym_BANG, - ACTIONS(6994), 1, - anon_sym_QMARK, - STATE(3913), 1, - sym_type_annotation, - STATE(4727), 1, - sym__initializer, + [133175] = 3, + ACTIONS(6819), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(4306), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133598] = 2, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [133193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 9, + ACTIONS(4408), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250444,139 +248265,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133614] = 10, - ACTIONS(2570), 1, + [133209] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6732), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2294), 1, + STATE(1694), 1, sym_class_body, - STATE(3660), 1, + STATE(3605), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5473), 1, + STATE(5223), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133646] = 10, - ACTIONS(2570), 1, + [133241] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133257] = 8, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6736), 1, + sym_identifier, + ACTIONS(6965), 1, + anon_sym_RBRACE, + STATE(5379), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6738), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4735), 2, + sym__module_export_name, + sym_string, + [133285] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6900), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(847), 1, + STATE(794), 1, sym_class_body, - STATE(3628), 1, + STATE(3590), 1, sym_type_parameters, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5287), 1, + STATE(5219), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133678] = 8, - ACTIONS(6462), 1, + [133317] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6996), 1, + ACTIONS(6967), 1, anon_sym_BANG, - ACTIONS(6998), 1, + ACTIONS(6969), 1, anon_sym_QMARK, - STATE(3929), 1, + STATE(4331), 1, sym_type_annotation, - STATE(4892), 1, + STATE(5048), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133706] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, + [133345] = 3, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, + anon_sym_LBRACE_PIPE, + [133363] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4218), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(780), 1, - sym_class_body, - STATE(3521), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5269), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133738] = 8, - ACTIONS(6462), 1, + ACTIONS(4222), 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, + [133395] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7000), 1, + ACTIONS(6971), 1, anon_sym_BANG, - ACTIONS(7002), 1, + ACTIONS(6973), 1, anon_sym_QMARK, - STATE(3934), 1, + STATE(4352), 1, sym_type_annotation, - STATE(5128), 1, + STATE(5082), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133766] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, + [133423] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2540), 1, - sym_class_body, - STATE(3672), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5167), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133798] = 2, + ACTIONS(4222), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [133445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 9, + ACTIONS(4172), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250586,70 +248457,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133814] = 8, - ACTIONS(6462), 1, + [133461] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7004), 1, + ACTIONS(6975), 1, anon_sym_BANG, - ACTIONS(7006), 1, + ACTIONS(6977), 1, anon_sym_QMARK, - STATE(3939), 1, + STATE(4365), 1, sym_type_annotation, - STATE(4543), 1, + STATE(5094), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133489] = 3, + ACTIONS(6825), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4172), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133842] = 7, - ACTIONS(6462), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133507] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4340), 1, + ACTIONS(6979), 1, + anon_sym_BANG, + ACTIONS(6981), 1, + anon_sym_QMARK, + STATE(3905), 1, sym_type_annotation, - STATE(5036), 1, + STATE(4674), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6498), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6496), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133868] = 8, - ACTIONS(6462), 1, + [133535] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7008), 1, + ACTIONS(6983), 1, anon_sym_BANG, - ACTIONS(7010), 1, + ACTIONS(6985), 1, anon_sym_QMARK, - STATE(3941), 1, + STATE(3907), 1, sym_type_annotation, - STATE(4565), 1, + STATE(4604), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133896] = 2, + [133563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4411), 9, + ACTIONS(4110), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250659,11 +248546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133912] = 2, + [133579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 9, + ACTIONS(4142), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250673,11 +248560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133928] = 2, + [133595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 9, + ACTIONS(4182), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250687,46 +248574,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133944] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(7012), 1, - anon_sym_BANG, - ACTIONS(7014), 1, - anon_sym_QMARK, - STATE(3955), 1, - sym_type_annotation, - STATE(4633), 1, - sym__initializer, + [133611] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133972] = 3, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4159), 8, + ACTIONS(2369), 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, - [133990] = 2, + [133627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 9, + ACTIONS(4352), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250736,501 +248602,620 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134006] = 8, - ACTIONS(6462), 1, + [133643] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7016), 1, + ACTIONS(6987), 1, anon_sym_BANG, - ACTIONS(7018), 1, + ACTIONS(6989), 1, anon_sym_QMARK, - STATE(3959), 1, + STATE(3957), 1, sym_type_annotation, - STATE(4658), 1, + STATE(4525), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134034] = 2, + [133671] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6991), 1, + anon_sym_BANG, + ACTIONS(6993), 1, + anon_sym_QMARK, + STATE(3904), 1, + sym_type_annotation, + STATE(4728), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 9, + ACTIONS(6489), 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, - [134050] = 8, - ACTIONS(6462), 1, + [133699] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7020), 1, + ACTIONS(6995), 1, anon_sym_BANG, - ACTIONS(7022), 1, + ACTIONS(6997), 1, anon_sym_QMARK, - STATE(4181), 1, + STATE(4114), 1, sym_type_annotation, - STATE(4744), 1, + STATE(4593), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134078] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7024), 1, - sym_identifier, - ACTIONS(7026), 1, - sym_this, - STATE(2924), 1, - sym__type_query_call_expression, - STATE(2985), 1, - sym__type_query_instantiation_expression, - STATE(3172), 1, - sym__type_query_member_expression, - STATE(3174), 1, - sym__type_query_subscript_expression, - STATE(4519), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134107] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6774), 1, - sym_identifier, - STATE(5430), 1, - sym_export_specifier, + [133727] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6999), 1, + anon_sym_BANG, + ACTIONS(7001), 1, + anon_sym_QMARK, + STATE(3965), 1, + sym_type_annotation, + STATE(4573), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6776), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4769), 2, - sym__module_export_name, - sym_string, - [134132] = 6, - ACTIONS(6470), 1, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133755] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, - anon_sym_QMARK_COLON, + ACTIONS(7003), 1, + anon_sym_BANG, + ACTIONS(7005), 1, + anon_sym_QMARK, + STATE(3967), 1, + sym_type_annotation, + STATE(4579), 1, + sym__initializer, 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, - [134155] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7036), 1, - sym_this, - STATE(2926), 1, - sym__type_query_subscript_expression, - STATE(2931), 1, - sym__type_query_member_expression, - STATE(3123), 1, - sym__type_query_call_expression, - STATE(3222), 1, - sym__type_query_instantiation_expression, - STATE(4408), 1, - sym_import, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134184] = 7, - ACTIONS(3424), 1, - sym_identifier, - ACTIONS(3426), 1, + ACTIONS(4156), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(3428), 1, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7038), 1, - anon_sym_enum, - STATE(4464), 1, - sym_variable_declarator, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133799] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134209] = 6, - ACTIONS(6470), 1, + ACTIONS(7007), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133820] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4094), 4, + STATE(4316), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134232] = 5, - ACTIONS(7040), 1, - anon_sym_LBRACE, - ACTIONS(7042), 1, - anon_sym_DOT, - STATE(4075), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1717), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134253] = 5, - ACTIONS(6705), 1, + [133843] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6702), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7044), 5, + ACTIONS(7015), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134274] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7026), 1, - sym_this, - ACTIONS(7046), 1, - sym_identifier, - STATE(2880), 1, - sym__type_query_subscript_expression, - STATE(2882), 1, - sym__type_query_member_expression, - STATE(2924), 1, - sym__type_query_call_expression, - STATE(2985), 1, - sym__type_query_instantiation_expression, - STATE(4433), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134303] = 4, - ACTIONS(4633), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4294), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134322] = 5, - ACTIONS(6705), 1, + [133864] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6702), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7048), 5, + ACTIONS(7017), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134343] = 6, - ACTIONS(6470), 1, + [133885] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4352), 4, + STATE(4318), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134366] = 7, - ACTIONS(7050), 1, - sym_escape_sequence, - ACTIONS(7052), 1, - anon_sym_BQUOTE, - ACTIONS(7054), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3901), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4306), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134391] = 5, - ACTIONS(7040), 1, + [133908] = 7, + ACTIONS(3405), 1, + sym_identifier, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(7058), 1, - anon_sym_DOT, - STATE(4075), 1, - sym_statement_block, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7019), 1, + anon_sym_enum, + STATE(4416), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134412] = 6, - ACTIONS(6470), 1, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [133933] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4353), 4, + STATE(4307), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134435] = 3, - ACTIONS(6711), 1, - anon_sym_is, + [133956] = 4, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 7, + ACTIONS(4326), 6, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - [134452] = 6, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(7028), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, - anon_sym_QMARK_COLON, + [133975] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7021), 1, + sym_identifier, + ACTIONS(7023), 1, + sym_this, + STATE(2951), 1, + sym__type_query_subscript_expression, + STATE(3037), 1, + sym__type_query_member_expression, + STATE(3221), 1, + sym__type_query_call_expression, + STATE(3383), 1, + sym__type_query_instantiation_expression, + STATE(4468), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4111), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134475] = 7, - ACTIONS(7050), 1, + [134004] = 7, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7027), 1, + anon_sym_BQUOTE, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134029] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7033), 1, + sym_identifier, + ACTIONS(7035), 1, + sym_this, + STATE(2931), 1, + sym__type_query_member_expression, + STATE(2933), 1, + sym__type_query_subscript_expression, + STATE(3124), 1, + sym__type_query_call_expression, + STATE(3280), 1, + sym__type_query_instantiation_expression, + STATE(4502), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134058] = 7, + ACTIONS(7025), 1, sym_escape_sequence, - ACTIONS(7054), 1, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7060), 1, + ACTIONS(7037), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3901), 2, + STATE(3785), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134500] = 7, - ACTIONS(7054), 1, + [134083] = 7, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7062), 1, + ACTIONS(7039), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134108] = 7, + ACTIONS(7025), 1, sym_escape_sequence, - ACTIONS(7064), 1, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(7041), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3785), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134525] = 7, - ACTIONS(7054), 1, + [134133] = 7, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7062), 1, + ACTIONS(7043), 1, sym_escape_sequence, - ACTIONS(7066), 1, + ACTIONS(7045), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3764), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134550] = 7, - ACTIONS(7054), 1, + [134158] = 7, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7062), 1, + ACTIONS(7047), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4057), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134183] = 7, + ACTIONS(3405), 1, + sym_identifier, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7049), 1, + anon_sym_enum, + STATE(4451), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134208] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7051), 1, + sym_identifier, + ACTIONS(7053), 1, + sym_this, + STATE(2876), 1, + sym__type_query_member_expression, + STATE(2877), 1, + sym__type_query_subscript_expression, + STATE(2922), 1, + sym__type_query_call_expression, + STATE(3010), 1, + sym__type_query_instantiation_expression, + STATE(4382), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134237] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1726), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134252] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1754), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134267] = 7, + ACTIONS(7025), 1, sym_escape_sequence, - ACTIONS(7068), 1, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(7055), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3785), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134575] = 9, - ACTIONS(1545), 1, + [134292] = 6, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(7009), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7011), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7013), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4051), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134315] = 9, + ACTIONS(1538), 1, anon_sym_import, - ACTIONS(7070), 1, - sym_identifier, - ACTIONS(7072), 1, + ACTIONS(7053), 1, sym_this, - STATE(1737), 1, - sym__type_query_member_expression, - STATE(1739), 1, - sym__type_query_subscript_expression, - STATE(1978), 1, + ACTIONS(7057), 1, + sym_identifier, + STATE(2922), 1, sym__type_query_call_expression, - STATE(1979), 1, + STATE(3010), 1, sym__type_query_instantiation_expression, - STATE(4413), 1, + STATE(3197), 1, + sym__type_query_member_expression, + STATE(3198), 1, + sym__type_query_subscript_expression, + STATE(4384), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134604] = 6, - ACTIONS(6470), 1, + [134344] = 4, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(3030), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134363] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 4, + STATE(4052), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134627] = 4, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2948), 1, - sym_type_arguments, + [134386] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 6, + ACTIONS(3235), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134646] = 7, - ACTIONS(7054), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, - sym__template_chars, - ACTIONS(7062), 1, - sym_escape_sequence, - ACTIONS(7074), 1, - anon_sym_BQUOTE, + [134401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4021), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134671] = 3, - ACTIONS(7076), 1, + ACTIONS(3239), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134416] = 7, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_BANG, + STATE(4338), 1, + sym_type_annotation, + STATE(5056), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6774), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134441] = 7, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6736), 1, + sym_identifier, + STATE(5379), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6738), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4735), 2, + sym__module_export_name, + sym_string, + [134466] = 3, + ACTIONS(6714), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 7, + ACTIONS(4106), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -251238,232 +249223,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134688] = 2, + [134483] = 3, + ACTIONS(7059), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 8, - anon_sym_as, + ACTIONS(4110), 7, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [134703] = 6, - ACTIONS(6470), 1, + [134500] = 6, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(7009), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7011), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7013), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4281), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134523] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7063), 1, + sym_this, + STATE(1735), 1, + sym__type_query_member_expression, + STATE(1737), 1, + sym__type_query_subscript_expression, + STATE(1977), 1, + sym__type_query_call_expression, + STATE(1978), 1, + sym__type_query_instantiation_expression, + STATE(4500), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134552] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4311), 4, + STATE(4186), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134726] = 6, - ACTIONS(6470), 1, + [134575] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4334), 4, + STATE(4187), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134749] = 7, - ACTIONS(7054), 1, + [134598] = 5, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7067), 1, + anon_sym_DOT, + STATE(4280), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134619] = 5, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7069), 1, + anon_sym_DOT, + STATE(4280), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134640] = 7, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7062), 1, + ACTIONS(7043), 1, sym_escape_sequence, - ACTIONS(7078), 1, + ACTIONS(7071), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3764), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134774] = 5, - ACTIONS(6824), 1, + [134665] = 5, + ACTIONS(6819), 1, anon_sym_AMP, - ACTIONS(6826), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6828), 1, + ACTIONS(6823), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6782), 5, + ACTIONS(6750), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [134795] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7080), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134816] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6765), 1, - anon_sym_BANG, - STATE(4056), 1, - sym_type_annotation, - STATE(4552), 1, - sym__initializer, + [134686] = 3, + ACTIONS(6714), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 3, - sym__automatic_semicolon, + ACTIONS(4116), 7, anon_sym_COMMA, - anon_sym_SEMI, - [134841] = 9, - ACTIONS(1545), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134703] = 9, + ACTIONS(1538), 1, anon_sym_import, - ACTIONS(7082), 1, + ACTIONS(7073), 1, sym_identifier, - ACTIONS(7084), 1, + ACTIONS(7075), 1, sym_this, - STATE(2956), 1, - sym__type_query_member_expression, - STATE(2957), 1, + STATE(1506), 1, sym__type_query_subscript_expression, - STATE(3290), 1, + STATE(1509), 1, + sym__type_query_member_expression, + STATE(1562), 1, sym__type_query_call_expression, - STATE(3462), 1, + STATE(1563), 1, sym__type_query_instantiation_expression, - STATE(4465), 1, + STATE(4388), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134870] = 7, - ACTIONS(3424), 1, - sym_identifier, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7086), 1, - anon_sym_enum, - STATE(4422), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134895] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3214), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134910] = 7, - ACTIONS(7054), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, - sym__template_chars, - ACTIONS(7062), 1, - sym_escape_sequence, - ACTIONS(7088), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3789), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4306), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134935] = 6, - ACTIONS(6470), 1, + [134732] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4087), 4, + STATE(4315), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134958] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7090), 1, - sym_identifier, - ACTIONS(7092), 1, - sym_this, - STATE(1505), 1, - sym__type_query_subscript_expression, - STATE(1506), 1, - sym__type_query_member_expression, - STATE(1631), 1, - sym__type_query_call_expression, - STATE(1633), 1, - sym__type_query_instantiation_expression, - STATE(4520), 1, - sym_import, + [134755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134987] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3218), 8, + ACTIONS(3227), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -251472,3232 +249438,3188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [135002] = 3, - ACTIONS(6711), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [135019] = 8, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - ACTIONS(7094), 1, + [134770] = 8, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(7096), 1, - anon_sym_extends, - STATE(903), 1, - sym_object_type, - STATE(4378), 1, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7077), 1, + sym_identifier, + ACTIONS(7079), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, sym_type_parameters, - STATE(5110), 1, - sym_extends_type_clause, + STATE(5421), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135045] = 8, - ACTIONS(4633), 1, + [134796] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2188), 1, + ACTIONS(7081), 1, + anon_sym_DOT, + STATE(2350), 1, sym_arguments, - STATE(5326), 1, + STATE(5286), 1, sym_optional_chain, - STATE(5332), 1, + STATE(5293), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135071] = 4, - ACTIONS(4087), 1, - anon_sym_extends, - ACTIONS(7098), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4089), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - [135089] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4220), 1, - sym_type_annotation, - STATE(4798), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135111] = 6, - ACTIONS(6462), 1, + [134822] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4224), 1, + STATE(4140), 1, sym_type_annotation, - STATE(4800), 1, + STATE(4666), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135133] = 6, - ACTIONS(6462), 1, + [134844] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4249), 1, + STATE(4237), 1, sym_type_annotation, - STATE(4836), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135155] = 8, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2279), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5393), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135181] = 6, - ACTIONS(6462), 1, + [134866] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4265), 1, + STATE(4238), 1, sym_type_annotation, - STATE(4872), 1, + STATE(4853), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135203] = 6, - ACTIONS(6462), 1, + [134888] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4266), 1, + STATE(4239), 1, sym_type_annotation, - STATE(4874), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135225] = 8, - ACTIONS(6864), 1, + [134910] = 8, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(779), 1, + STATE(2597), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5436), 1, + STATE(5343), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135251] = 6, - ACTIONS(6462), 1, + [134936] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4273), 1, + STATE(4166), 1, sym_type_annotation, - STATE(4893), 1, + STATE(4715), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135273] = 6, - ACTIONS(6462), 1, + [134958] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4275), 1, + STATE(4240), 1, sym_type_annotation, - STATE(4896), 1, + STATE(4857), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135295] = 6, - ACTIONS(6462), 1, + [134980] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4278), 1, + STATE(4242), 1, sym_type_annotation, - STATE(4900), 1, + STATE(4868), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135317] = 6, - ACTIONS(6462), 1, + [135002] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4282), 1, + STATE(4243), 1, sym_type_annotation, - STATE(4903), 1, + STATE(4870), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135339] = 6, - ACTIONS(6462), 1, + [135024] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4290), 1, + STATE(4244), 1, sym_type_annotation, - STATE(4919), 1, + STATE(4876), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135361] = 6, - ACTIONS(6462), 1, + [135046] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4291), 1, + STATE(4245), 1, sym_type_annotation, - STATE(4921), 1, + STATE(4883), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135383] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7100), 1, - anon_sym_COLON, - ACTIONS(7102), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5477), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135409] = 6, - ACTIONS(6462), 1, + [135068] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4300), 1, + STATE(4209), 1, sym_type_annotation, - STATE(4936), 1, + STATE(4779), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135431] = 4, - ACTIONS(7040), 1, + [135090] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(4075), 1, + STATE(5465), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 5, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135449] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4310), 1, - sym_type_annotation, - STATE(4962), 1, - sym__initializer, + [135108] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5316), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(7085), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135471] = 6, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [135126] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4369), 1, sym_type_annotation, - STATE(4671), 1, + STATE(5107), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135493] = 8, - ACTIONS(6733), 1, + [135148] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2292), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, STATE(5463), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135519] = 2, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 7, + ACTIONS(7085), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [135533] = 2, + [135166] = 4, + ACTIONS(4622), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1897), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(5665), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135547] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(4351), 1, - sym_type_annotation, - STATE(5031), 1, - sym__initializer, + anon_sym_LT, + anon_sym_QMARK, + [135184] = 6, + ACTIONS(6595), 1, + anon_sym_EQ, + STATE(4499), 1, + sym_constraint, + STATE(5417), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135569] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6600), 2, anon_sym_COLON, - STATE(4355), 1, - sym_type_annotation, - STATE(5039), 1, - sym__initializer, + anon_sym_extends, + ACTIONS(7087), 2, + anon_sym_COMMA, + anon_sym_GT, + [135206] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5464), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135591] = 6, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [135224] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4374), 1, + STATE(4370), 1, sym_type_annotation, - STATE(5103), 1, + STATE(5110), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135613] = 6, - ACTIONS(6462), 1, + [135246] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, STATE(4376), 1, sym_type_annotation, - STATE(5105), 1, + STATE(5111), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135635] = 6, - ACTIONS(6462), 1, + [135268] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4131), 1, + STATE(4167), 1, sym_type_annotation, - STATE(4681), 1, + STATE(4718), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135657] = 2, + [135290] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4314), 1, + sym_type_annotation, + STATE(5012), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4868), 7, + ACTIONS(6653), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [135671] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + [135312] = 6, + ACTIONS(3576), 1, anon_sym_LT, - STATE(1656), 1, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2255), 1, sym_arguments, - STATE(5172), 1, - sym_optional_chain, - STATE(5174), 1, + STATE(5181), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135697] = 6, - ACTIONS(6462), 1, + ACTIONS(7089), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [135334] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4134), 1, + STATE(4159), 1, sym_type_annotation, - STATE(4689), 1, + STATE(4699), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135719] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(7106), 1, - sym_identifier, - ACTIONS(7108), 1, - anon_sym_DOT, - STATE(764), 1, - sym_nested_identifier, - STATE(785), 1, - sym_string, - STATE(930), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135745] = 8, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(1666), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5396), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135771] = 8, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2542), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5171), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135797] = 6, - ACTIONS(6462), 1, + [135356] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4157), 1, + STATE(4263), 1, sym_type_annotation, - STATE(4711), 1, + STATE(4904), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(7091), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135819] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7112), 1, - anon_sym_DOT, - STATE(3484), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(3949), 1, - sym__module, + [135378] = 6, + ACTIONS(6595), 1, + anon_sym_EQ, + STATE(4414), 1, + sym_constraint, + STATE(5419), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135845] = 8, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - ACTIONS(7094), 1, - anon_sym_LT, - ACTIONS(7096), 1, + ACTIONS(6600), 2, + anon_sym_COLON, anon_sym_extends, - STATE(3940), 1, - sym_type_parameters, - STATE(4035), 1, - sym_object_type, - STATE(4562), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135871] = 6, - ACTIONS(6462), 1, + ACTIONS(7093), 2, + anon_sym_COMMA, + anon_sym_GT, + [135400] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4158), 1, + STATE(4168), 1, sym_type_annotation, - STATE(4712), 1, + STATE(4720), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135893] = 6, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(1673), 1, - sym_arguments, - STATE(5253), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7114), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [135915] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7102), 1, - anon_sym_QMARK, - ACTIONS(7116), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5477), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135941] = 8, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2244), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5460), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135967] = 6, - ACTIONS(6462), 1, + [135422] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4175), 1, + STATE(4264), 1, sym_type_annotation, - STATE(4736), 1, + STATE(4906), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(7091), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135989] = 6, - ACTIONS(6462), 1, + [135444] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4176), 1, + STATE(4347), 1, sym_type_annotation, - STATE(4737), 1, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136011] = 6, - ACTIONS(6462), 1, + [135466] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4182), 1, + STATE(4268), 1, sym_type_annotation, - STATE(4745), 1, + STATE(4924), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(7091), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136033] = 8, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + [135488] = 8, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(7118), 1, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, anon_sym_DOT, - STATE(1984), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(1647), 1, sym_arguments, - STATE(5326), 1, - sym_optional_chain, - STATE(5332), 1, + STATE(3174), 1, sym_type_arguments, + STATE(5286), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136059] = 6, - ACTIONS(6462), 1, + [135514] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4183), 1, + STATE(4269), 1, sym_type_annotation, - STATE(4746), 1, + STATE(4926), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(7091), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136081] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4186), 1, - sym_type_annotation, - STATE(4749), 1, - sym__initializer, + [135536] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, + ACTIONS(4334), 4, anon_sym_COMMA, - anon_sym_SEMI, - [136103] = 6, - ACTIONS(6462), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135556] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7101), 1, + anon_sym_DOT, + STATE(2372), 1, + sym_arguments, + STATE(5280), 1, + sym_optional_chain, + STATE(5376), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135582] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4190), 1, + STATE(4169), 1, sym_type_annotation, - STATE(4754), 1, + STATE(4727), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136125] = 8, - ACTIONS(6757), 1, + [135604] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(1692), 1, + STATE(2247), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5272), 1, + STATE(5340), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136151] = 8, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4153), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5277), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [135630] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2381), 1, + sym_arguments, + STATE(3471), 1, + sym_type_arguments, + STATE(5280), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136177] = 8, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(1694), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5294), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [135656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136203] = 6, - ACTIONS(6462), 1, + ACTIONS(7103), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [135670] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4232), 1, + STATE(4349), 1, sym_type_annotation, - STATE(4814), 1, + STATE(5078), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136225] = 6, - ACTIONS(6462), 1, + [135692] = 3, + ACTIONS(6758), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135708] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4234), 1, + STATE(4146), 1, sym_type_annotation, - STATE(4815), 1, + STATE(4676), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136247] = 8, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2031), 1, - sym_arguments, - STATE(3480), 1, - sym_type_arguments, - STATE(5326), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136273] = 6, - ACTIONS(6462), 1, + [135730] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4246), 1, + STATE(3915), 1, sym_type_annotation, - STATE(4829), 1, + STATE(4907), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136295] = 6, - ACTIONS(6462), 1, + [135752] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4252), 1, + STATE(4149), 1, sym_type_annotation, - STATE(4839), 1, + STATE(4679), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136317] = 8, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4200), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5374), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136343] = 6, - ACTIONS(6462), 1, + [135774] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4255), 1, + STATE(4241), 1, sym_type_annotation, - STATE(4843), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136365] = 3, - ACTIONS(6788), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4097), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136381] = 6, - ACTIONS(6462), 1, + [135796] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4258), 1, + STATE(3916), 1, sym_type_annotation, - STATE(4854), 1, + STATE(5100), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136403] = 8, - ACTIONS(6733), 1, + [135818] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2217), 1, + STATE(2181), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5394), 1, + STATE(5374), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136429] = 8, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4216), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5410), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [135844] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3938), 1, + sym_type_annotation, + STATE(4822), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136455] = 8, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(1703), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5426), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135866] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4378), 1, + sym_type_annotation, + STATE(5122), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136481] = 8, - ACTIONS(6864), 1, + ACTIONS(6655), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135888] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(4250), 1, + STATE(4047), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5447), 1, + STATE(5362), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136507] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4254), 1, - sym_type_annotation, - STATE(4849), 1, - sym__initializer, + [135914] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7105), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136529] = 6, - ACTIONS(6462), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [135928] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4264), 1, + STATE(3940), 1, sym_type_annotation, - STATE(4865), 1, + STATE(4830), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136551] = 2, + [135950] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3942), 1, + sym_type_annotation, + STATE(4877), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 7, + ACTIONS(6651), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136565] = 6, - ACTIONS(6462), 1, + [135972] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4285), 1, + STATE(3947), 1, sym_type_annotation, - STATE(4907), 1, + STATE(4917), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136587] = 6, - ACTIONS(6608), 1, - anon_sym_EQ, - STATE(4432), 1, - sym_constraint, - STATE(5334), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6613), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7120), 2, - anon_sym_COMMA, - anon_sym_GT, - [136609] = 2, + [135994] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + STATE(2376), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4870), 7, - sym__automatic_semicolon, + [136020] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + ACTIONS(6455), 1, anon_sym_COLON, - [136623] = 2, + STATE(4130), 1, + sym_type_annotation, + STATE(4642), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6896), 7, + ACTIONS(6657), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + [136042] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - [136637] = 2, + STATE(4134), 1, + sym_type_annotation, + STATE(4645), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4864), 7, + ACTIONS(6657), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136651] = 6, - ACTIONS(6462), 1, + [136064] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4296), 1, + STATE(3950), 1, sym_type_annotation, - STATE(4932), 1, + STATE(5059), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136673] = 6, - ACTIONS(6462), 1, + [136086] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4297), 1, + STATE(4155), 1, sym_type_annotation, - STATE(4934), 1, + STATE(4690), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136695] = 8, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6898), 1, + [136108] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5244), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, + sym_identifier, + STATE(4601), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136721] = 6, - ACTIONS(6462), 1, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136130] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4305), 1, + STATE(4211), 1, sym_type_annotation, - STATE(4949), 1, + STATE(4788), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136743] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + [136152] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7111), 1, + anon_sym_DOT, + STATE(2565), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136178] = 4, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4307), 1, + STATE(3920), 1, sym_type_annotation, - STATE(4950), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(7113), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136765] = 6, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [136196] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2566), 1, + sym_arguments, + STATE(3174), 1, + sym_type_arguments, + STATE(5286), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136222] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4308), 1, + STATE(4212), 1, sym_type_annotation, - STATE(4954), 1, + STATE(4791), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136787] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + [136244] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7115), 1, + anon_sym_DOT, + STATE(1951), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136270] = 8, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(1952), 1, + sym_arguments, + STATE(3268), 1, + sym_type_arguments, + STATE(5286), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136296] = 4, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4309), 1, + STATE(4076), 1, sym_type_annotation, - STATE(4955), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(7117), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136809] = 8, - ACTIONS(6733), 1, + anon_sym_PIPE_RBRACE, + [136314] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7119), 1, + sym_identifier, + ACTIONS(7121), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5247), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136340] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2277), 1, + STATE(2260), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5364), 1, + STATE(5332), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136835] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, + [136366] = 6, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, sym_identifier, - ACTIONS(7124), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5306), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + STATE(4385), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136861] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(2438), 1, - sym_arguments, - STATE(5172), 1, - sym_optional_chain, - STATE(5174), 1, - sym_type_arguments, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136388] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4213), 1, + sym_type_annotation, + STATE(4796), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6686), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136410] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6847), 1, + anon_sym_LBRACE, + STATE(225), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5237), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136887] = 6, - ACTIONS(6462), 1, + [136436] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4315), 1, + STATE(4356), 1, sym_type_annotation, - STATE(4973), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136909] = 6, - ACTIONS(6462), 1, + [136458] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4317), 1, + STATE(4156), 1, sym_type_annotation, - STATE(4981), 1, + STATE(4691), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136931] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2444), 1, - sym_arguments, - STATE(3220), 1, - sym_type_arguments, - STATE(5172), 1, - sym_optional_chain, + [136480] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4158), 1, + sym_type_annotation, + STATE(4696), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136957] = 8, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2311), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5438), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136502] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3959), 1, + sym_type_annotation, + STATE(4536), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136983] = 4, - ACTIONS(6470), 1, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136524] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4048), 1, + STATE(4358), 1, sym_type_annotation, + STATE(5090), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7128), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137001] = 4, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4274), 1, - sym_type_annotation, + [136546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7130), 5, + ACTIONS(6855), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137019] = 6, - ACTIONS(6462), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [136560] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4010), 1, + STATE(4192), 1, sym_type_annotation, - STATE(4895), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136582] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5433), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7123), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137041] = 6, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [136600] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5394), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136626] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4030), 1, + STATE(4328), 1, sym_type_annotation, - STATE(5024), 1, + STATE(5037), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137063] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(7132), 1, - anon_sym_DOT, - STATE(2153), 1, - sym_arguments, - STATE(5172), 1, - sym_optional_chain, - STATE(5174), 1, - sym_type_arguments, + [136648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137089] = 8, - ACTIONS(4031), 1, + ACTIONS(4854), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [136662] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2154), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + STATE(1588), 1, sym_arguments, - STATE(3220), 1, - sym_type_arguments, - STATE(5172), 1, + STATE(5286), 1, sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137115] = 2, + [136688] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4073), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5422), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [137129] = 6, - ACTIONS(3426), 1, + [136714] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7134), 1, + ACTIONS(7109), 1, sym_identifier, - STATE(4697), 1, + STATE(4451), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, + STATE(3718), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137151] = 6, - ACTIONS(3426), 1, + [136736] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7136), 1, + ACTIONS(7109), 1, sym_identifier, - STATE(4443), 1, + STATE(4416), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3438), 3, + STATE(3718), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137173] = 6, - ACTIONS(3426), 1, + [136758] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7138), 1, + STATE(5368), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7123), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136776] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5416), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7125), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136794] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2382), 1, + sym_arguments, + STATE(3174), 1, + sym_type_arguments, + STATE(5286), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136820] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7127), 1, sym_identifier, - STATE(4464), 1, - sym_variable_declarator, + ACTIONS(7129), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5453), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3440), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137195] = 2, + [136846] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5434), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6818), 7, + ACTIONS(7131), 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, + [136864] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - [137209] = 2, + STATE(4135), 1, + sym_type_annotation, + STATE(4637), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6854), 7, + ACTIONS(6663), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [137223] = 7, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(7140), 1, + [136886] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_QMARK, - STATE(4427), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4214), 1, sym_type_annotation, - STATE(5263), 1, + STATE(4799), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7142), 2, + ACTIONS(6686), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [137247] = 2, + anon_sym_SEMI, + [136908] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5259), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6930), 7, + ACTIONS(7125), 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, - [137261] = 4, - ACTIONS(2482), 1, + anon_sym_PIPE_RBRACE, + [136926] = 8, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(5365), 1, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1702), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5369), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136952] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5297), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7146), 5, + ACTIONS(7131), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137279] = 8, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(7148), 1, - anon_sym_DOT, - STATE(2516), 1, - sym_arguments, - STATE(5326), 1, - sym_optional_chain, - STATE(5332), 1, - sym_type_arguments, + [136970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137305] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(1622), 1, - sym_arguments, - STATE(3220), 1, - sym_type_arguments, - STATE(5172), 1, - sym_optional_chain, + ACTIONS(4859), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [136984] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5441), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137331] = 8, - ACTIONS(4633), 1, + ACTIONS(7133), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137002] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2468), 1, + STATE(2351), 1, sym_arguments, - STATE(3480), 1, + STATE(3174), 1, sym_type_arguments, - STATE(5326), 1, + STATE(5286), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137357] = 6, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2120), 1, - sym_arguments, - STATE(5251), 1, - sym_type_arguments, + [137028] = 8, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2327), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5326), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7114), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [137379] = 6, - ACTIONS(6462), 1, + [137054] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4354), 1, + STATE(4219), 1, sym_type_annotation, - STATE(5035), 1, + STATE(4811), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137401] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6743), 1, - anon_sym_type, - STATE(5179), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5490), 2, - sym__module_export_name, - sym_string, - [137425] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(7150), 1, - anon_sym_DOT, - STATE(2534), 1, - sym_arguments, - STATE(5172), 1, - sym_optional_chain, - STATE(5174), 1, - sym_type_arguments, + [137076] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4139), 1, + sym_type_annotation, + STATE(4664), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137451] = 6, - ACTIONS(6462), 1, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137098] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3980), 1, + STATE(4054), 1, sym_type_annotation, - STATE(4743), 1, + STATE(4983), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137473] = 8, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(7152), 1, - anon_sym_DOT, - STATE(1951), 1, - sym_arguments, - STATE(5172), 1, - sym_optional_chain, - STATE(5174), 1, - sym_type_arguments, + [137120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137499] = 8, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6352), 1, - anon_sym_LT, - STATE(1952), 1, - sym_arguments, - STATE(3282), 1, - sym_type_arguments, - STATE(5172), 1, - sym_optional_chain, + ACTIONS(6865), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137134] = 4, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4259), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137525] = 6, - ACTIONS(3426), 1, + ACTIONS(7135), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137152] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7134), 1, - sym_identifier, - STATE(4517), 1, - sym_variable_declarator, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2191), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5430), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137547] = 6, - ACTIONS(6462), 1, + [137178] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4357), 1, + STATE(4221), 1, sym_type_annotation, - STATE(5048), 1, + STATE(4817), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137569] = 6, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7134), 1, - sym_identifier, - STATE(4422), 1, - sym_variable_declarator, + [137200] = 5, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137591] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(7154), 1, - sym_identifier, - ACTIONS(7156), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5267), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137617] = 8, - ACTIONS(6864), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137220] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6900), 1, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(808), 1, + STATE(936), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5301), 1, + STATE(5287), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137643] = 8, - ACTIONS(6672), 1, + [137246] = 8, + ACTIONS(6682), 1, anon_sym_LT, - ACTIONS(7158), 1, + ACTIONS(7137), 1, anon_sym_LBRACE, - ACTIONS(7160), 1, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(7162), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7164), 1, + ACTIONS(7143), 1, anon_sym_LBRACE_PIPE, - STATE(4419), 1, + STATE(4399), 1, aux_sym_extends_type_clause_repeat1, - STATE(4944), 1, + STATE(5075), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137669] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7166), 1, - sym_identifier, - ACTIONS(7168), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5402), 1, - sym__call_signature, + [137272] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6923), 1, + anon_sym_LBRACE, + STATE(825), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5395), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137695] = 6, - ACTIONS(6462), 1, + [137298] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4359), 1, + STATE(4363), 1, sym_type_annotation, - STATE(5057), 1, + STATE(5097), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137717] = 6, - ACTIONS(6462), 1, + [137320] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4361), 1, + STATE(4064), 1, sym_type_annotation, - STATE(5060), 1, + STATE(5035), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137739] = 6, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7134), 1, - sym_identifier, - STATE(4443), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137761] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(7170), 1, - anon_sym_DOT, - STATE(1545), 1, - sym_arguments, - STATE(5172), 1, - sym_optional_chain, - STATE(5174), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137787] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + [137342] = 7, + ACTIONS(3557), 1, anon_sym_COLON, - STATE(4363), 1, + ACTIONS(7145), 1, + anon_sym_EQ, + ACTIONS(7149), 1, + anon_sym_QMARK, + STATE(4383), 1, sym_type_annotation, - STATE(5067), 1, + STATE(5272), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, + ACTIONS(7147), 2, anon_sym_COMMA, - anon_sym_SEMI, - [137809] = 4, - ACTIONS(2482), 1, + anon_sym_RPAREN, + [137366] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5453), 1, + STATE(5348), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137827] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4364), 1, - sym_type_annotation, - STATE(5068), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137849] = 4, - ACTIONS(2482), 1, + [137384] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5164), 1, + STATE(5420), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, + ACTIONS(7153), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137867] = 8, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(232), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5320), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137893] = 4, - ACTIONS(2482), 1, + [137402] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5461), 1, + STATE(5134), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7174), 5, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137911] = 3, - ACTIONS(6788), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137927] = 6, - ACTIONS(6462), 1, + [137420] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4365), 1, + STATE(4336), 1, sym_type_annotation, - STATE(5070), 1, + STATE(5061), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137949] = 3, - ACTIONS(7176), 1, - anon_sym_is, + [137442] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4345), 1, + sym_type_annotation, + STATE(5071), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137965] = 6, - ACTIONS(6462), 1, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137464] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4366), 1, + STATE(4066), 1, sym_type_annotation, - STATE(5071), 1, + STATE(5088), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137987] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, + [137486] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5214), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 4, + ACTIONS(7155), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138007] = 3, - ACTIONS(7178), 1, - anon_sym_AMP, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137504] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5221), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 6, + ACTIONS(7157), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [138023] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4368), 1, - sym_type_annotation, - STATE(5075), 1, - sym__initializer, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137522] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5147), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7155), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138045] = 6, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [137540] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7159), 1, + sym_identifier, + ACTIONS(7161), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5421), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137566] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4369), 1, + STATE(4075), 1, sym_type_annotation, - STATE(5077), 1, + STATE(5112), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138067] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4220), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138087] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, + [137588] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2130), 1, + sym_arguments, + STATE(5280), 1, + sym_optional_chain, + STATE(5376), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138107] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, + [137614] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5389), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 4, + ACTIONS(7163), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138127] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137632] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, + sym_identifier, + ACTIONS(7167), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5235), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138147] = 6, - ACTIONS(6608), 1, - anon_sym_EQ, - STATE(4452), 1, - sym_constraint, - STATE(5241), 1, - sym_default_type, + [137658] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(1655), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6613), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7184), 2, - anon_sym_COMMA, - anon_sym_GT, - [138169] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4371), 1, - sym_type_annotation, - STATE(5090), 1, - sym__initializer, + [137684] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5392), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7169), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138191] = 6, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [137702] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4372), 1, + STATE(4079), 1, sym_type_annotation, - STATE(5096), 1, + STATE(4518), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138213] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, + [137724] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7171), 1, + sym_identifier, + ACTIONS(7173), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5247), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137750] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7175), 1, + sym_identifier, + ACTIONS(7177), 1, + anon_sym_DOT, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(878), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 4, + [137776] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6871), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138233] = 8, - ACTIONS(6864), 1, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137790] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(794), 1, + STATE(4033), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5327), 1, + STATE(5296), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138259] = 2, + [137816] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3974), 1, + sym_type_annotation, + STATE(4628), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5255), 7, - anon_sym_EQ, + ACTIONS(6651), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [137838] = 7, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6768), 1, + anon_sym_type, + STATE(5355), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5579), 2, + sym__module_export_name, + sym_string, + [137862] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, anon_sym_LPAREN, + ACTIONS(7179), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7181), 1, anon_sym_QMARK, - [138273] = 8, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2114), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5256), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + STATE(3806), 1, + sym_formal_parameters, + STATE(5301), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138299] = 8, - ACTIONS(6733), 1, + [137888] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2333), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5338), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + STATE(5238), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7183), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137906] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7185), 1, + sym_identifier, + ACTIONS(7187), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5421), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138325] = 6, - ACTIONS(6462), 1, + [137932] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4381), 1, + STATE(3975), 1, sym_type_annotation, - STATE(5118), 1, + STATE(4630), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138347] = 6, - ACTIONS(6462), 1, + [137954] = 8, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7191), 1, + anon_sym_extends, + STATE(897), 1, + sym_object_type, + STATE(4208), 1, + sym_type_parameters, + STATE(4780), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137980] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4382), 1, + STATE(4100), 1, sym_type_annotation, - STATE(5120), 1, + STATE(4565), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6669), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138369] = 5, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, + [138002] = 3, + ACTIONS(7193), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(3586), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [138389] = 6, - ACTIONS(6462), 1, + [138018] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4020), 1, + STATE(4080), 1, sym_type_annotation, - STATE(4868), 1, + STATE(4519), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138411] = 6, - ACTIONS(6462), 1, + [138040] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4031), 1, + STATE(4081), 1, sym_type_annotation, - STATE(4761), 1, + STATE(4521), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138433] = 6, - ACTIONS(6462), 1, + [138062] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3986), 1, + STATE(4082), 1, sym_type_annotation, - STATE(4614), 1, + STATE(4526), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138455] = 6, - ACTIONS(6462), 1, + [138084] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4001), 1, + STATE(4086), 1, sym_type_annotation, - STATE(4811), 1, + STATE(4532), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138477] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5328), 1, - sym_statement_block, + [138106] = 4, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4284), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, + ACTIONS(7195), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138495] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5330), 1, - sym_statement_block, + [138124] = 3, + ACTIONS(7095), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 5, - sym__automatic_semicolon, + ACTIONS(4306), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138513] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5203), 1, - sym_statement_block, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [138140] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4294), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [138160] = 3, + ACTIONS(7197), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4192), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + [138176] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7199), 1, + anon_sym_DOT, + STATE(1588), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138202] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4364), 1, + sym_type_annotation, + STATE(5098), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138531] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5206), 1, - sym_statement_block, + [138224] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4230), 1, + sym_type_annotation, + STATE(4832), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138549] = 8, - ACTIONS(6757), 1, + [138246] = 8, + ACTIONS(6732), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2584), 1, + STATE(1664), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5355), 1, + STATE(5234), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138575] = 6, - ACTIONS(6462), 1, + [138272] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6921), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6470), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4056), 1, - sym_type_annotation, - STATE(4589), 1, - sym__initializer, + [138286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 3, + ACTIONS(7201), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138597] = 6, - ACTIONS(6462), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [138300] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4104), 1, + STATE(4093), 1, sym_type_annotation, - STATE(4620), 1, + STATE(4539), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138619] = 6, - ACTIONS(6462), 1, + [138322] = 8, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2576), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5157), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138348] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4120), 1, + STATE(4165), 1, sym_type_annotation, - STATE(4647), 1, + STATE(4709), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138641] = 6, - ACTIONS(6462), 1, + [138370] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4148), 1, + STATE(4368), 1, sym_type_annotation, - STATE(4684), 1, + STATE(5105), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138663] = 6, - ACTIONS(6462), 1, + [138392] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4180), 1, + STATE(3991), 1, sym_type_annotation, - STATE(4706), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138685] = 6, - ACTIONS(6462), 1, + [138414] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4341), 1, + STATE(3993), 1, sym_type_annotation, - STATE(5015), 1, + STATE(4710), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138707] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7190), 1, - sym_identifier, - ACTIONS(7192), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5306), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138733] = 4, - ACTIONS(2482), 1, + [138436] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(5202), 1, - sym_statement_block, + STATE(228), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5303), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138751] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5208), 1, - sym_statement_block, + [138462] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(7203), 1, + sym_identifier, + ACTIONS(7205), 1, + anon_sym_DOT, + STATE(3500), 1, + sym_nested_identifier, + STATE(3698), 1, + sym_string, + STATE(4311), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138769] = 4, - ACTIONS(2482), 1, + [138488] = 8, + ACTIONS(1034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1610), 1, anon_sym_LBRACE, - STATE(5230), 1, - sym_statement_block, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7191), 1, + anon_sym_extends, + STATE(3951), 1, + sym_type_parameters, + STATE(4374), 1, + sym_object_type, + STATE(5108), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138787] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5231), 1, - sym_statement_block, + [138514] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4096), 1, + sym_type_annotation, + STATE(4556), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138805] = 6, - ACTIONS(6462), 1, + [138536] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4343), 1, + STATE(4097), 1, sym_type_annotation, - STATE(5017), 1, + STATE(4558), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138827] = 8, - ACTIONS(2570), 1, + [138558] = 6, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(7198), 1, - sym_identifier, - ACTIONS(7200), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, + STATE(1671), 1, + sym_arguments, STATE(5298), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138853] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5216), 1, - sym_statement_block, + ACTIONS(7089), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [138580] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4232), 1, + sym_type_annotation, + STATE(4841), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 5, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138871] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5224), 1, - sym_statement_block, + [138602] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4006), 1, + sym_type_annotation, + STATE(4759), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138889] = 6, - ACTIONS(6462), 1, + [138624] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4147), 1, + STATE(4008), 1, sym_type_annotation, - STATE(4837), 1, + STATE(4768), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138911] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5236), 1, - sym_statement_block, + [138646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 5, - sym__automatic_semicolon, + ACTIONS(3622), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138929] = 4, - ACTIONS(2482), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [138660] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(5237), 1, - sym_statement_block, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2234), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5414), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138947] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym_statement_block, + [138686] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4015), 1, + sym_type_annotation, + STATE(4807), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138965] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5401), 1, - sym_statement_block, + [138708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(4850), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138983] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5243), 1, - sym_statement_block, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [138722] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7181), 1, + anon_sym_QMARK, + ACTIONS(7207), 1, + anon_sym_COLON, + STATE(3806), 1, + sym_formal_parameters, + STATE(5301), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139001] = 4, - ACTIONS(2482), 1, + [138748] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(5180), 1, - sym_statement_block, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2170), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5183), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139019] = 4, - ACTIONS(4593), 1, + [138774] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [139037] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5182), 1, - sym_statement_block, + STATE(4021), 1, + sym_type_annotation, + STATE(4828), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139055] = 6, - ACTIONS(6462), 1, + [138796] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3924), 1, + STATE(4188), 1, sym_type_annotation, - STATE(4776), 1, + STATE(4749), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7209), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139077] = 4, - ACTIONS(2482), 1, + [138818] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - STATE(5385), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7214), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139095] = 4, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3919), 1, - sym_type_annotation, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, + sym_identifier, + STATE(4450), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7216), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139113] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3931), 1, - sym_type_annotation, - STATE(4850), 1, - sym__initializer, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138840] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7211), 1, + sym_identifier, + ACTIONS(7213), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5247), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139135] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3933), 1, - sym_type_annotation, - STATE(5037), 1, - sym__initializer, + [138866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, + ACTIONS(5494), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [139157] = 8, - ACTIONS(4031), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [138880] = 8, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(7126), 1, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7215), 1, anon_sym_DOT, - STATE(1545), 1, + STATE(1983), 1, sym_arguments, - STATE(5172), 1, + STATE(5280), 1, sym_optional_chain, - STATE(5174), 1, + STATE(5376), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139183] = 4, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4045), 1, - sym_type_annotation, + [138906] = 3, + ACTIONS(6758), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7218), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139201] = 2, + ACTIONS(4106), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138922] = 3, + ACTIONS(7217), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 7, - sym__automatic_semicolon, + ACTIONS(4110), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138938] = 4, + ACTIONS(7065), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139215] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4096), 1, - sym_type_annotation, - STATE(4621), 1, - sym__initializer, + STATE(4280), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6692), 3, + ACTIONS(1674), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139237] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3954), 1, - sym_type_annotation, - STATE(4630), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [138956] = 6, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7219), 1, + sym_identifier, + STATE(4416), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139259] = 6, - ACTIONS(6462), 1, + STATE(3387), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138978] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3962), 1, + STATE(4102), 1, sym_type_annotation, - STATE(4656), 1, + STATE(4569), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139281] = 6, - ACTIONS(6462), 1, + [139000] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4004), 1, + STATE(4103), 1, sym_type_annotation, - STATE(4830), 1, + STATE(4571), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139303] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4006), 1, - sym_type_annotation, - STATE(4840), 1, - sym__initializer, + [139022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6919), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [139325] = 6, - ACTIONS(6462), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [139036] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4019), 1, + STATE(4106), 1, sym_type_annotation, - STATE(4928), 1, + STATE(4577), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139347] = 6, - ACTIONS(6462), 1, + [139058] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4022), 1, + STATE(4109), 1, sym_type_annotation, - STATE(4957), 1, + STATE(4580), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139369] = 6, - ACTIONS(6462), 1, + [139080] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4025), 1, + STATE(4110), 1, sym_type_annotation, - STATE(5005), 1, + STATE(4583), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139391] = 6, - ACTIONS(6462), 1, + [139102] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4029), 1, + STATE(4111), 1, sym_type_annotation, - STATE(5006), 1, + STATE(4584), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139413] = 2, + [139124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 7, + ACTIONS(7221), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -254705,2927 +252627,3153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139427] = 6, - ACTIONS(6462), 1, + [139138] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4055), 1, + STATE(4118), 1, sym_type_annotation, - STATE(4540), 1, + STATE(4605), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139449] = 6, - ACTIONS(6462), 1, + [139160] = 8, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2282), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5446), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139186] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4059), 1, + STATE(4119), 1, sym_type_annotation, - STATE(4555), 1, + STATE(4607), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139471] = 6, - ACTIONS(6462), 1, + [139208] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139228] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4120), 1, sym_type_annotation, - STATE(4561), 1, + STATE(4609), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139493] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4073), 1, - sym_type_annotation, - STATE(4570), 1, - sym__initializer, + [139250] = 3, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139266] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5262), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7223), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139515] = 6, - ACTIONS(3426), 1, + anon_sym_PIPE_RBRACE, + [139284] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7134), 1, + ACTIONS(7225), 1, sym_identifier, - STATE(4464), 1, + STATE(4450), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, + STATE(3385), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [139537] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4081), 1, - sym_type_annotation, - STATE(4586), 1, - sym__initializer, + [139306] = 8, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1690), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5188), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139559] = 8, - ACTIONS(6864), 1, + [139332] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6900), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(850), 1, + STATE(4000), 1, sym_class_body, - STATE(4758), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5189), 1, + STATE(5192), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139585] = 2, + [139358] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4338), 1, + sym_type_annotation, + STATE(4561), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 7, + ACTIONS(6774), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139599] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5298), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139625] = 8, - ACTIONS(2570), 1, + [139380] = 8, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7230), 1, + ACTIONS(7227), 1, sym_identifier, - ACTIONS(7232), 1, + ACTIONS(7229), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5306), 1, + STATE(5247), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139651] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7234), 1, - sym_identifier, - ACTIONS(7236), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5298), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [139406] = 8, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1692), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5215), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139677] = 6, - ACTIONS(6462), 1, + [139432] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4206), 1, + STATE(4297), 1, sym_type_annotation, - STATE(4777), 1, + STATE(4986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139699] = 3, - ACTIONS(7238), 1, + [139454] = 3, + ACTIONS(7231), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 6, + ACTIONS(3622), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [139715] = 3, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4159), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [139731] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4212), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139751] = 3, - ACTIONS(7240), 1, - anon_sym_extends, + [139470] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7234), 1, + sym_identifier, + ACTIONS(7236), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5421), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [139767] = 6, - ACTIONS(6462), 1, + [139496] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4113), 1, + STATE(4121), 1, sym_type_annotation, - STATE(4646), 1, + STATE(4611), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139789] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7242), 7, + ACTIONS(6657), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139803] = 6, - ACTIONS(6462), 1, + [139518] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4117), 1, + STATE(4194), 1, sym_type_annotation, - STATE(4652), 1, + STATE(4756), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7244), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139825] = 6, - ACTIONS(6462), 1, + [139540] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4149), 1, + STATE(4332), 1, sym_type_annotation, - STATE(4701), 1, + STATE(5051), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139847] = 6, - ACTIONS(6462), 1, + [139562] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4159), 1, + STATE(4122), 1, sym_type_annotation, - STATE(4708), 1, + STATE(4617), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139869] = 6, - ACTIONS(6462), 1, + [139584] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4163), 1, + STATE(4195), 1, sym_type_annotation, - STATE(4726), 1, + STATE(4757), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139891] = 6, - ACTIONS(6462), 1, + [139606] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4167), 1, + STATE(4198), 1, sym_type_annotation, - STATE(4731), 1, + STATE(4766), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139913] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5306), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [139628] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139939] = 3, - ACTIONS(7250), 1, - anon_sym_EQ, + ACTIONS(4204), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139648] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 6, + ACTIONS(4222), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [139955] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5298), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [139668] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139981] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3917), 1, - sym_type_annotation, - STATE(4742), 1, - sym__initializer, + ACTIONS(4436), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139688] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, - sym__automatic_semicolon, + ACTIONS(4444), 4, anon_sym_COMMA, - anon_sym_SEMI, - [140003] = 6, - ACTIONS(6462), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139708] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4187), 1, + STATE(4233), 1, sym_type_annotation, - STATE(4752), 1, + STATE(4843), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140025] = 6, - ACTIONS(6462), 1, + [139730] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4189), 1, + STATE(3909), 1, sym_type_annotation, - STATE(4753), 1, + STATE(4631), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140047] = 6, - ACTIONS(6462), 1, + [139752] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3914), 1, + STATE(3912), 1, sym_type_annotation, - STATE(5033), 1, + STATE(4677), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140069] = 6, - ACTIONS(6462), 1, + [139774] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4195), 1, + STATE(4127), 1, sym_type_annotation, - STATE(4760), 1, + STATE(4634), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140091] = 6, - ACTIONS(6462), 1, + [139796] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4196), 1, + STATE(4199), 1, sym_type_annotation, - STATE(4762), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140113] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3942), 1, - sym_type_annotation, - STATE(4568), 1, - sym__initializer, + [139818] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2030), 1, + sym_arguments, + STATE(3471), 1, + sym_type_arguments, + STATE(5280), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(1888), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140135] = 6, - ACTIONS(6462), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [139858] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3943), 1, + STATE(4206), 1, sym_type_annotation, - STATE(4569), 1, + STATE(4777), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140157] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4210), 1, - sym_type_annotation, - STATE(4780), 1, - sym__initializer, + [139880] = 4, + ACTIONS(4108), 1, + anon_sym_extends, + ACTIONS(7238), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + [139898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(1892), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140179] = 6, - ACTIONS(6462), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [139912] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5312), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139938] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4211), 1, + STATE(3968), 1, sym_type_annotation, - STATE(4785), 1, + STATE(4600), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140201] = 6, - ACTIONS(6462), 1, + [139960] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3970), 1, sym_type_annotation, - STATE(4709), 1, + STATE(4606), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140223] = 6, - ACTIONS(6462), 1, + [139982] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3975), 1, + STATE(3977), 1, sym_type_annotation, - STATE(4713), 1, + STATE(4648), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140245] = 6, - ACTIONS(6462), 1, + [140004] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3979), 1, + STATE(3988), 1, sym_type_annotation, - STATE(4732), 1, + STATE(4658), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140267] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2539), 1, - sym_arguments, - STATE(3220), 1, - sym_type_arguments, - STATE(5172), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140293] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3687), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [140026] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5345), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140316] = 4, - STATE(3766), 1, + ACTIONS(7153), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140044] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3783), 2, + ACTIONS(3752), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7259), 3, + ACTIONS(7240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140333] = 5, - ACTIONS(3282), 1, + [140061] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - ACTIONS(7261), 1, - sym_identifier, - ACTIONS(7263), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4444), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140352] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7265), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5456), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140375] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + STATE(2710), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3783), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7259), 3, + ACTIONS(7131), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140392] = 7, - ACTIONS(2570), 1, + [140078] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7267), 1, + ACTIONS(7244), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5474), 1, + STATE(5438), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140415] = 7, - ACTIONS(2570), 1, + [140101] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7269), 1, + ACTIONS(7246), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3816), 1, + STATE(3625), 1, sym__call_signature, - STATE(5281), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140438] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7271), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5145), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [140124] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2702), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7085), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140141] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7248), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, + anon_sym_GT, + STATE(4588), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140461] = 4, - STATE(3806), 1, - aux_sym_object_type_repeat1, + [140164] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3769), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7273), 3, + ACTIONS(7153), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140478] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [140181] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2704), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3769), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7273), 3, + ACTIONS(7083), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140495] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7275), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4272), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [140198] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140518] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + ACTIONS(7252), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_GT, + [140217] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3753), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7277), 3, + ACTIONS(7151), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140535] = 4, - STATE(3820), 1, - aux_sym_object_type_repeat1, + [140234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7279), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140552] = 7, - ACTIONS(2570), 1, + ACTIONS(2365), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140247] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7281), 1, - anon_sym_QMARK, - STATE(3895), 1, + ACTIONS(7254), 1, + sym_identifier, + STATE(3806), 1, sym_formal_parameters, - STATE(5331), 1, + STATE(5250), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140575] = 5, - ACTIONS(7283), 1, - anon_sym_default, - ACTIONS(7285), 1, - anon_sym_RBRACE, - ACTIONS(7287), 1, - anon_sym_case, + [140270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3903), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140594] = 4, - ACTIONS(5302), 1, + ACTIONS(7201), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(3774), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_SEMI, + anon_sym_COLON, + [140283] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 4, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4436), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140302] = 5, + ACTIONS(7264), 1, + anon_sym_BQUOTE, + ACTIONS(7266), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7262), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3832), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140321] = 4, + ACTIONS(7268), 1, anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6752), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [140338] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4444), 3, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, - [140611] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7291), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4325), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [140357] = 3, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4306), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [140372] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7270), 1, + anon_sym_COMMA, + ACTIONS(7272), 1, + anon_sym_GT, + STATE(4636), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140395] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140634] = 4, - ACTIONS(7293), 1, + ACTIONS(4294), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140414] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2705), 1, + STATE(2662), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 4, + ACTIONS(7183), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140651] = 5, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, + [140431] = 3, + ACTIONS(7274), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4192), 5, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(7295), 1, - sym_identifier, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [140446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4808), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140670] = 4, - ACTIONS(7297), 1, + ACTIONS(2369), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140459] = 6, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(7278), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7276), 2, anon_sym_COMMA, - STATE(3774), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACK, + [140480] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7280), 1, + anon_sym_export, + ACTIONS(7282), 1, + anon_sym_class, + ACTIONS(7284), 1, + anon_sym_abstract, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140503] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7286), 1, + anon_sym_COMMA, + ACTIONS(7288), 1, + anon_sym_GT, + STATE(4693), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140526] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2361), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140539] = 4, + STATE(3801), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4866), 4, + ACTIONS(7292), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7290), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [140556] = 6, + ACTIONS(3557), 1, anon_sym_COLON, - anon_sym_RBRACK, - [140687] = 3, + ACTIONS(7145), 1, + anon_sym_EQ, + STATE(4491), 1, + sym_type_annotation, + STATE(5132), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7294), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [140577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, + ACTIONS(3814), 6, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3843), 4, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [140702] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2717), 1, - sym_statement_block, + [140590] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(7296), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3800), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140719] = 7, - ACTIONS(2570), 1, + [140613] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7300), 1, + ACTIONS(7298), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4040), 1, + STATE(4257), 1, sym__call_signature, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140742] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [140636] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7175), 1, + sym_identifier, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(887), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7279), 3, + [140659] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2707), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7153), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140759] = 7, - ACTIONS(6622), 1, + [140676] = 7, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7302), 1, + ACTIONS(7300), 1, anon_sym_COMMA, - ACTIONS(7304), 1, + ACTIONS(7302), 1, anon_sym_GT, - STATE(4545), 1, + STATE(5016), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140782] = 4, - STATE(3784), 1, + [140699] = 5, + ACTIONS(7266), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7304), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7262), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3832), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140718] = 4, + STATE(3794), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7308), 2, + ACTIONS(3764), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140799] = 5, - ACTIONS(7310), 1, - anon_sym_default, - ACTIONS(7313), 1, - anon_sym_RBRACE, - ACTIONS(7315), 1, - anon_sym_case, + [140735] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(4968), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3781), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140818] = 5, - ACTIONS(7318), 1, + [140758] = 7, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(6609), 1, anon_sym_extends, + ACTIONS(7310), 1, + anon_sym_COMMA, + ACTIONS(7312), 1, + anon_sym_GT, + STATE(5006), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140837] = 4, - STATE(3787), 1, - aux_sym_object_type_repeat1, + [140781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3755), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7324), 3, + ACTIONS(7221), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [140854] = 4, - STATE(3829), 1, + anon_sym_COLON, + [140794] = 4, + STATE(3808), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3755), 2, + ACTIONS(3752), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7324), 3, + ACTIONS(7240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140871] = 3, - ACTIONS(7318), 1, - anon_sym_AMP, + [140811] = 5, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(7314), 1, + sym_identifier, + ACTIONS(7316), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [140886] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7326), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5265), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + STATE(4829), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140830] = 4, + ACTIONS(5217), 1, + anon_sym_COMMA, + STATE(3807), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140909] = 4, - STATE(3829), 1, + ACTIONS(7318), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + [140847] = 4, + STATE(3803), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3767), 2, + ACTIONS(3772), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7328), 3, + ACTIONS(7320), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140926] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7330), 1, - anon_sym_COMMA, - ACTIONS(7332), 1, - anon_sym_GT, - STATE(4537), 1, - aux_sym_implements_clause_repeat1, + [140864] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140949] = 5, - ACTIONS(7336), 1, - anon_sym_BQUOTE, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, + ACTIONS(3780), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140881] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7334), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140968] = 4, - ACTIONS(7293), 1, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [140896] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2691), 1, + STATE(2655), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 4, + ACTIONS(7155), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140985] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(7106), 1, - sym_identifier, - STATE(764), 1, - sym_nested_identifier, - STATE(785), 1, - sym_string, - STATE(930), 1, - sym__module, + [140913] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141008] = 7, - ACTIONS(2570), 1, + ACTIONS(3774), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140930] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7340), 1, + ACTIONS(7326), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3863), 1, + STATE(3917), 1, sym__call_signature, - STATE(5281), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141031] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2372), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141044] = 2, + [140953] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141057] = 4, - ACTIONS(7293), 1, + ACTIONS(7123), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140970] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(2657), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 4, + ACTIONS(7157), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141074] = 2, + [140987] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 6, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3772), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [141087] = 7, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(7320), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141004] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7342), 1, + ACTIONS(7328), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5194), 1, + STATE(4272), 1, sym__call_signature, - STATE(5348), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141110] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7344), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5457), 1, - sym__call_signature, + [141027] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141133] = 7, - ACTIONS(2570), 1, + ACTIONS(3748), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7330), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141044] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5058), 1, + STATE(3799), 1, sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141156] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7348), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, + STATE(5249), 1, sym_type_parameters, - STATE(5403), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141192] = 2, + [141067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 6, + ACTIONS(7103), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [141205] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2697), 1, - sym_statement_block, + [141080] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7174), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141222] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7350), 1, + ACTIONS(6783), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [141097] = 4, + ACTIONS(7334), 1, anon_sym_COMMA, - ACTIONS(7352), 1, - anon_sym_GT, - STATE(4594), 1, - aux_sym_implements_clause_repeat1, + STATE(3807), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141245] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7354), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3669), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + ACTIONS(4852), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + [141114] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141268] = 4, - STATE(3829), 1, + ACTIONS(3790), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7337), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141131] = 4, + STATE(3879), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3777), 2, + ACTIONS(7341), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7356), 3, + ACTIONS(7339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141285] = 4, - STATE(3811), 1, + [141148] = 4, + STATE(3889), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7360), 2, + ACTIONS(7345), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7358), 3, + ACTIONS(7343), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141302] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, + [141165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141321] = 4, - STATE(3813), 1, - aux_sym_object_type_repeat1, + ACTIONS(7347), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [141178] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7175), 1, + sym_identifier, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(878), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3757), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7362), 3, + [141201] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7169), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141338] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, + [141218] = 4, + STATE(3797), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141357] = 4, - STATE(3829), 1, + ACTIONS(3786), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7349), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141235] = 4, + STATE(3864), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3757), 2, + ACTIONS(7353), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7362), 3, + ACTIONS(7351), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141374] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, + [141252] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7355), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5242), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141393] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [141275] = 5, + ACTIONS(7357), 1, + anon_sym_default, + ACTIONS(7360), 1, + anon_sym_RBRACE, + ACTIONS(7362), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3765), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7364), 3, - sym__automatic_semicolon, + STATE(3817), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141294] = 7, + ACTIONS(6682), 1, + anon_sym_LT, + ACTIONS(7139), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141410] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, + ACTIONS(7365), 1, + anon_sym_LBRACE, + ACTIONS(7367), 1, + anon_sym_LBRACE_PIPE, + STATE(4400), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5076), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141429] = 4, - ACTIONS(7293), 1, + [141317] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2650), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 4, + ACTIONS(7151), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141446] = 4, - ACTIONS(7293), 1, + [141334] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2715), 1, + STATE(2687), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 4, + ACTIONS(7125), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141463] = 7, - ACTIONS(2570), 1, + [141351] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5250), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141374] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, + ACTIONS(7371), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3875), 1, + STATE(5213), 1, sym__call_signature, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141486] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2683), 1, - sym_statement_block, + [141397] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7373), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5187), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141503] = 2, + [141420] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 6, + ACTIONS(4204), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141516] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [141439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3799), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7368), 3, + ACTIONS(7375), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141533] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, + anon_sym_PIPE_RBRACE, + [141452] = 7, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4108), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141556] = 4, - STATE(3778), 1, - aux_sym_object_type_repeat1, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(7377), 1, + anon_sym_RPAREN, + ACTIONS(7379), 1, + anon_sym_DOT, + STATE(1288), 1, + sym_arguments, + STATE(5440), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 2, + [141475] = 5, + ACTIONS(7381), 1, + anon_sym_default, + ACTIONS(7383), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7372), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141573] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7376), 1, - anon_sym_COMMA, - ACTIONS(7378), 1, - anon_sym_GT, - STATE(4635), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(7385), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141596] = 7, - ACTIONS(2570), 1, + STATE(3877), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141494] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7387), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3681), 1, + STATE(3632), 1, sym__call_signature, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141619] = 7, - ACTIONS(2570), 1, + [141517] = 5, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7389), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4813), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [141536] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7284), 1, + anon_sym_abstract, + ACTIONS(7391), 1, + anon_sym_export, + ACTIONS(7393), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141559] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7395), 1, sym_identifier, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5455), 1, + STATE(5429), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141642] = 4, - STATE(3833), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7386), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7384), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141659] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2689), 1, - sym_statement_block, + [141582] = 5, + ACTIONS(7400), 1, + anon_sym_BQUOTE, + ACTIONS(7402), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141676] = 2, + ACTIONS(7397), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3832), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141601] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(7405), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3813), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141689] = 4, - STATE(3829), 1, + [141624] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7391), 2, + ACTIONS(7410), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7388), 3, + ACTIONS(7407), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141706] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2711), 1, - sym_statement_block, + [141641] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7412), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [141723] = 4, - STATE(3837), 1, - aux_sym_object_type_repeat1, + anon_sym_GT, + [141660] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7414), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(3601), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3793), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7393), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141740] = 6, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(7397), 1, + [141683] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7416), 1, anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5435), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7395), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [141761] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [141706] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3793), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7393), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141778] = 4, - ACTIONS(7293), 1, + ACTIONS(4334), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141725] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2716), 1, + STATE(2688), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 4, + ACTIONS(7131), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141795] = 7, - ACTIONS(2570), 1, + [141742] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7399), 1, + ACTIONS(7418), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5235), 1, + STATE(5328), 1, + sym_type_parameters, + STATE(5350), 1, sym__call_signature, - STATE(5348), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141765] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7420), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(5060), 1, + sym__call_signature, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141818] = 2, + [141788] = 7, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(7379), 1, + anon_sym_DOT, + ACTIONS(7422), 1, + anon_sym_RPAREN, + STATE(1288), 1, + sym_arguments, + STATE(5440), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7401), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141831] = 4, - STATE(3829), 1, + [141811] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7424), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(5044), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141834] = 4, + STATE(3750), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3795), 2, + ACTIONS(7428), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7403), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141848] = 7, - ACTIONS(2570), 1, + [141851] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7405), 1, + ACTIONS(7430), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3636), 1, + STATE(4179), 1, sym__call_signature, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141871] = 7, - ACTIONS(2570), 1, + [141874] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7407), 1, + ACTIONS(7432), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3692), 1, + STATE(4255), 1, sym__call_signature, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141894] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, + [141897] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2708), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6747), 2, + ACTIONS(7125), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141914] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5441), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141911] = 5, - ACTIONS(7318), 1, + STATE(2690), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7123), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141931] = 5, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(7260), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 3, + ACTIONS(4222), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141930] = 5, - ACTIONS(6622), 1, + [141950] = 3, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(6626), 1, anon_sym_extends, + [141965] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7434), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5365), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7411), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [141949] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(7106), 1, - sym_identifier, - STATE(764), 1, - sym_nested_identifier, - STATE(785), 1, - sym_string, - STATE(885), 1, - sym__module, + [141988] = 5, + ACTIONS(7266), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7436), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141972] = 7, - ACTIONS(2570), 1, + ACTIONS(7025), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142007] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7413), 1, + ACTIONS(7438), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3696), 1, + STATE(5133), 1, sym__call_signature, - STATE(5222), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141995] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7415), 1, - anon_sym_export, - ACTIONS(7417), 1, - anon_sym_class, - ACTIONS(7419), 1, - anon_sym_abstract, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, + [142030] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7440), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5250), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142018] = 2, + [142053] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7155), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142070] = 7, + ACTIONS(6605), 1, anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, + ACTIONS(6609), 1, anon_sym_extends, - [142031] = 5, - ACTIONS(6622), 1, + ACTIONS(7442), 1, + anon_sym_LBRACE, + ACTIONS(7444), 1, + anon_sym_COMMA, + STATE(4905), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142093] = 5, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(7260), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7421), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [142050] = 5, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(7263), 1, + ACTIONS(4404), 3, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(7423), 1, + anon_sym_RBRACK, + [142112] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7446), 1, sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5429), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4820), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142069] = 5, - ACTIONS(7425), 1, - anon_sym_AT, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3602), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [142088] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2693), 1, - sym_statement_block, + [142135] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7448), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5429), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142105] = 7, - ACTIONS(2570), 1, + [142158] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7428), 1, + ACTIONS(7450), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5316), 1, + STATE(3640), 1, sym__call_signature, - STATE(5348), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142128] = 2, + [142181] = 5, + ACTIONS(7266), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7452), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7430), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142141] = 2, + ACTIONS(7043), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3764), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7432), 6, + ACTIONS(7454), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142154] = 2, + [142213] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(7456), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3895), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7434), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142167] = 4, - STATE(3764), 1, + [142236] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7438), 2, + ACTIONS(3786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7436), 3, + ACTIONS(7349), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142184] = 7, - ACTIONS(6672), 1, + [142253] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(7160), 1, - anon_sym_COMMA, - ACTIONS(7440), 1, - anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4420), 1, - aux_sym_extends_type_clause_repeat1, - STATE(4945), 1, - sym_type_arguments, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7458), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5250), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142207] = 7, - ACTIONS(2570), 1, + [142276] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7444), 1, - sym_identifier, - STATE(3895), 1, + ACTIONS(7460), 1, + anon_sym_QMARK, + STATE(3315), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5455), 1, + STATE(3589), 1, sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142230] = 7, - ACTIONS(2570), 1, + [142299] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7446), 1, - anon_sym_QMARK, - STATE(3895), 1, + ACTIONS(7462), 1, + sym_identifier, + STATE(3806), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5422), 1, + STATE(5236), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142322] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3766), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142339] = 6, + ACTIONS(6682), 1, + anon_sym_LT, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7466), 1, + anon_sym_LBRACE, + STATE(5075), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7468), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [142360] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2696), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7133), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142377] = 7, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(7203), 1, + sym_identifier, + STATE(3500), 1, + sym_nested_identifier, + STATE(3698), 1, + sym_string, + STATE(4270), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142253] = 7, - ACTIONS(2570), 1, + [142400] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7448), 1, + ACTIONS(7470), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4103), 1, + STATE(5318), 1, sym__call_signature, - STATE(5222), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142276] = 2, + [142423] = 7, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(7203), 1, + sym_identifier, + STATE(3500), 1, + sym_nested_identifier, + STATE(3698), 1, + sym_string, + STATE(4311), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [142289] = 7, - ACTIONS(2570), 1, + [142446] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7450), 1, - sym_identifier, - STATE(3895), 1, + ACTIONS(7472), 1, + anon_sym_QMARK, + STATE(3315), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5455), 1, + STATE(4025), 1, sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142312] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2702), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7186), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142329] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2712), 1, - sym_statement_block, + [142469] = 4, + STATE(3868), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 4, + ACTIONS(3760), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7474), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142346] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(7452), 1, - anon_sym_QMARK, - STATE(3365), 1, - sym_formal_parameters, - STATE(3882), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, + [142486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142369] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7454), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5408), 1, - sym__call_signature, + ACTIONS(2373), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142499] = 5, + ACTIONS(7381), 1, + anon_sym_default, + ACTIONS(7385), 1, + anon_sym_case, + ACTIONS(7476), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142392] = 7, - ACTIONS(2570), 1, + STATE(3817), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142518] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7478), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4339), 1, - sym__call_signature, - STATE(5222), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5426), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142415] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2696), 1, - sym_statement_block, + [142541] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 4, + ACTIONS(3760), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7474), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142432] = 7, - ACTIONS(2570), 1, + [142558] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7458), 1, - sym_identifier, - STATE(3895), 1, + ACTIONS(7480), 1, + anon_sym_QMARK, + STATE(3806), 1, sym_formal_parameters, - STATE(5265), 1, + STATE(5240), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142455] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2688), 1, - sym_statement_block, + [142581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 4, + ACTIONS(7105), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [142472] = 5, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7460), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7062), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3789), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142491] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7419), 1, - anon_sym_abstract, - ACTIONS(7462), 1, - anon_sym_export, - ACTIONS(7464), 1, - anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142514] = 7, - ACTIONS(2570), 1, + anon_sym_COLON, + [142594] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7466), 1, + ACTIONS(7482), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3790), 1, + STATE(3522), 1, sym__call_signature, - STATE(5281), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142537] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7468), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4643), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [142617] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7484), 1, + anon_sym_COMMA, + ACTIONS(7486), 1, + anon_sym_GT, + STATE(4542), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142560] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2652), 1, - sym_statement_block, + [142640] = 4, + STATE(3896), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 4, + ACTIONS(3768), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7488), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142577] = 4, - ACTIONS(7293), 1, + [142657] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2680), 1, + STATE(2668), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 4, + ACTIONS(7083), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142594] = 5, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7470), 1, - anon_sym_BQUOTE, + [142674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7050), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3901), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142613] = 3, - ACTIONS(7318), 1, - anon_sym_AMP, + ACTIONS(7490), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142687] = 4, + STATE(3891), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [142628] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, + ACTIONS(7494), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7492), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142704] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7496), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142647] = 7, - ACTIONS(2570), 1, + [142727] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3768), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7488), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142744] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(7472), 1, + ACTIONS(7498), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3776), 1, + STATE(3759), 1, sym__call_signature, - STATE(5281), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142670] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2677), 1, - sym_statement_block, + [142767] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 4, + ACTIONS(3764), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7306), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142687] = 3, - ACTIONS(7474), 1, - anon_sym_extends, + [142784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 5, + ACTIONS(2377), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - [142702] = 4, - ACTIONS(7293), 1, + anon_sym_extends, + [142797] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(2659), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142719] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7476), 1, - anon_sym_COMMA, - ACTIONS(7478), 1, - anon_sym_GT, - STATE(5056), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142742] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7242), 6, + ACTIONS(7163), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142755] = 7, - ACTIONS(2570), 1, + [142814] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7480), 1, - anon_sym_QMARK, - STATE(3307), 1, + ACTIONS(7500), 1, + sym_identifier, + STATE(3806), 1, sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5222), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5429), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142778] = 4, - ACTIONS(7293), 1, + [142837] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2684), 1, + STATE(2669), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 4, + ACTIONS(7085), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142795] = 7, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6982), 1, - anon_sym_DOT, - ACTIONS(7482), 1, - anon_sym_RPAREN, - STATE(1266), 1, - sym_arguments, - STATE(5452), 1, - sym_type_arguments, + [142854] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142818] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7484), 1, - anon_sym_LBRACE, - ACTIONS(7486), 1, + ACTIONS(3776), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7502), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4897), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [142871] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7504), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5128), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142841] = 7, - ACTIONS(2570), 1, + [142894] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(7488), 1, - sym_identifier, - STATE(3895), 1, + ACTIONS(7506), 1, + anon_sym_QMARK, + STATE(3330), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5455), 1, + STATE(3839), 1, sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142864] = 7, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(7110), 1, + [142917] = 5, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(7316), 1, + anon_sym_LBRACK, + ACTIONS(7508), 1, sym_identifier, - STATE(3484), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(4049), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142887] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7490), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5265), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + STATE(4431), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [142936] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142910] = 5, - ACTIONS(7495), 1, + ACTIONS(7223), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142953] = 5, + ACTIONS(7510), 1, anon_sym_BQUOTE, - ACTIONS(7497), 1, + ACTIONS(7512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7492), 2, + ACTIONS(7514), 1, sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142929] = 7, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(7110), 1, - sym_identifier, - STATE(3484), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(3949), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142952] = 6, - ACTIONS(6672), 1, - anon_sym_LT, - ACTIONS(7162), 1, - anon_sym_DOT, - ACTIONS(7500), 1, - anon_sym_LBRACE, - STATE(4944), 1, - sym_type_arguments, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [142971] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4798), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7502), 2, + ACTIONS(7516), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [142973] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, + anon_sym_SEMI, + [142987] = 5, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_LPAREN, + STATE(2711), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6759), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [142990] = 7, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6982), 1, - anon_sym_DOT, - ACTIONS(7504), 1, - anon_sym_RPAREN, - STATE(1266), 1, - sym_arguments, - STATE(5452), 1, - sym_type_arguments, + STATE(2806), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [143005] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4559), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143013] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7506), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5265), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143021] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5109), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143036] = 7, - ACTIONS(2570), 1, + ACTIONS(7524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143037] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_QMARK, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(4251), 1, sym__call_signature, - STATE(5348), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143059] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7510), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5462), 1, - sym__call_signature, + [143057] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4743), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143082] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7512), 1, + ACTIONS(7524), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7514), 1, - anon_sym_GT, - STATE(4991), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [143073] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4572), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143105] = 5, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7516), 1, - anon_sym_BQUOTE, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143089] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4823), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7334), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [143124] = 4, - STATE(3759), 1, - aux_sym_object_type_repeat1, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7520), 2, + ACTIONS(7528), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(7518), 3, + [143117] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4582), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143141] = 5, - ACTIONS(7283), 1, - anon_sym_default, - ACTIONS(7287), 1, - anon_sym_case, - ACTIONS(7522), 1, - anon_sym_RBRACE, + [143133] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4954), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3781), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [143160] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7524), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5418), 1, - sym__call_signature, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143149] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4585), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143183] = 6, - ACTIONS(3550), 1, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143165] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5223), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7140), 1, + anon_sym_QMARK, + [143177] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4402), 1, - sym_type_annotation, - STATE(5350), 1, + STATE(4589), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143193] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4592), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [143204] = 4, - ACTIONS(7293), 1, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143209] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7085), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143221] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7347), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2670), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [143233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7146), 4, + ACTIONS(7454), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143221] = 2, + [143245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2820), 5, + ACTIONS(7532), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143233] = 2, + [143257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 5, + ACTIONS(7490), 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, - [143245] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4832), 1, - sym__initializer, + [143269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, + ACTIONS(5231), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [143261] = 5, - ACTIONS(7530), 1, - sym_identifier, - ACTIONS(7532), 1, - anon_sym_LPAREN, - STATE(1247), 1, - sym_decorator_member_expression, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143281] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7534), 1, + anon_sym_BQUOTE, + ACTIONS(7536), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1284), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143279] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4662), 1, - sym__initializer, + STATE(3901), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [143299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, - sym__automatic_semicolon, + ACTIONS(5231), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [143295] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 5, + ACTIONS(2901), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143307] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4690), 1, - sym__initializer, + [143323] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(2561), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143323] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4691), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [143335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(2561), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143339] = 2, + anon_sym_PIPE_RBRACE, + [143347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2928), 5, + ACTIONS(2969), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143351] = 2, + [143359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 5, + ACTIONS(2977), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143363] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4663), 1, - sym__initializer, + [143371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143379] = 4, - ACTIONS(6462), 1, + ACTIONS(5231), 5, anon_sym_EQ, - STATE(4699), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(1842), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, [143395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 5, + ACTIONS(2561), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -257635,17453 +255783,17175 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5312), 5, - anon_sym_EQ, + ACTIONS(2561), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, [143419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5228), 5, - anon_sym_EQ, + ACTIONS(2561), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143431] = 5, - ACTIONS(7540), 1, - anon_sym_BQUOTE, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7544), 1, - sym__template_chars, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3938), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143449] = 4, - ACTIONS(6462), 1, + ACTIONS(2561), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143443] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4848), 1, + STATE(4608), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143465] = 4, - ACTIONS(6462), 1, + [143459] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4851), 1, + STATE(4612), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143481] = 4, - ACTIONS(6462), 1, + [143475] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4861), 1, + STATE(4613), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143497] = 2, + [143491] = 6, + ACTIONS(3814), 1, + anon_sym_COLON, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(7538), 1, + anon_sym_RBRACE, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5316), 5, + [143511] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143509] = 2, + STATE(4614), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5316), 5, - anon_sym_EQ, + ACTIONS(7530), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143521] = 2, + anon_sym_SEMI, + [143527] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5316), 5, + ACTIONS(4854), 5, anon_sym_EQ, - anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - [143533] = 4, - ACTIONS(6462), 1, + [143539] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4714), 1, + STATE(4615), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143549] = 6, - ACTIONS(3843), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(7548), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143569] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4866), 1, - sym__initializer, + [143555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(2629), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143585] = 6, - ACTIONS(4335), 1, + anon_sym_PIPE_RBRACE, + [143567] = 6, + ACTIONS(4336), 1, anon_sym_LBRACE, - ACTIONS(7550), 1, + ACTIONS(7540), 1, anon_sym_SEMI, - ACTIONS(7552), 1, + ACTIONS(7542), 1, sym__automatic_semicolon, - ACTIONS(7554), 1, + ACTIONS(7544), 1, sym__function_signature_automatic_semicolon, - STATE(2263), 1, + STATE(2199), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143605] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4871), 1, - sym__initializer, + [143587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(2641), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143621] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4739), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [143599] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(2657), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143637] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [143611] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4951), 1, + STATE(4616), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143653] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7558), 1, - anon_sym_BQUOTE, - ACTIONS(7560), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4306), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143671] = 4, - ACTIONS(7409), 1, + [143627] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7562), 1, + ACTIONS(7546), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, + STATE(5306), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [143687] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7565), 1, - anon_sym_BQUOTE, - ACTIONS(7567), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143705] = 4, - ACTIONS(6462), 1, + [143643] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4748), 1, + STATE(4623), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143721] = 6, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - ACTIONS(7096), 1, - anon_sym_extends, - STATE(4127), 1, - sym_object_type, - STATE(4670), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143741] = 4, - ACTIONS(6462), 1, + [143659] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4755), 1, + STATE(4624), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143757] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4756), 1, - sym__initializer, + [143675] = 6, + ACTIONS(1034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(7191), 1, + anon_sym_extends, + STATE(3984), 1, + sym_object_type, + STATE(4643), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143773] = 4, - ACTIONS(6462), 1, + [143695] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4759), 1, + STATE(4626), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143789] = 5, - ACTIONS(7571), 1, - anon_sym_SEMI, - ACTIONS(7573), 1, - sym__automatic_semicolon, - STATE(5377), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7569), 2, - anon_sym_with, - anon_sym_assert, - [143807] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7575), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143825] = 2, + [143711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 5, + ACTIONS(2839), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143837] = 2, + [143723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2756), 5, + ACTIONS(2839), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143849] = 6, - ACTIONS(7040), 1, - anon_sym_LBRACE, - ACTIONS(7579), 1, - anon_sym_SEMI, - ACTIONS(7581), 1, - sym__automatic_semicolon, - ACTIONS(7583), 1, - sym__function_signature_automatic_semicolon, - STATE(3964), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143869] = 2, + [143735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2952), 5, + ACTIONS(2839), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143881] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(7577), 1, - anon_sym_PIPE, + [143747] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4640), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 2, + ACTIONS(7522), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [143899] = 5, - ACTIONS(6672), 1, - anon_sym_LT, - ACTIONS(7587), 1, - anon_sym_LBRACE, - STATE(4945), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7589), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [143917] = 6, - ACTIONS(4335), 1, - anon_sym_LBRACE, - ACTIONS(7591), 1, anon_sym_SEMI, - ACTIONS(7593), 1, - sym__automatic_semicolon, - ACTIONS(7595), 1, - sym__function_signature_automatic_semicolon, - STATE(2132), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143937] = 4, - ACTIONS(6462), 1, + [143763] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4881), 1, + STATE(4535), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143953] = 4, - ACTIONS(6462), 1, + [143779] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4882), 1, + STATE(4652), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143969] = 4, - ACTIONS(6462), 1, + [143795] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4816), 1, + STATE(4655), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143985] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7597), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144001] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7600), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5441), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144017] = 6, - ACTIONS(7603), 1, - anon_sym_EQ, - ACTIONS(7605), 1, - anon_sym_COMMA, - ACTIONS(7607), 1, - anon_sym_RBRACE, - STATE(4728), 1, - aux_sym_enum_body_repeat1, - STATE(5309), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144037] = 4, - ACTIONS(6462), 1, + [143811] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4842), 1, + STATE(4659), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144053] = 5, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(7609), 1, - sym_identifier, + [143827] = 6, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7549), 1, + anon_sym_SEMI, + ACTIONS(7551), 1, + sym__automatic_semicolon, + ACTIONS(7553), 1, + sym__function_signature_automatic_semicolon, + STATE(3981), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5435), 2, - sym__module_export_name, - sym_string, - [144071] = 2, + [143847] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7401), 5, + ACTIONS(7555), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - [144083] = 4, - ACTIONS(6462), 1, + [143865] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4883), 1, + STATE(4667), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144099] = 6, - ACTIONS(7040), 1, + [143881] = 6, + ACTIONS(4336), 1, anon_sym_LBRACE, - ACTIONS(7611), 1, + ACTIONS(7559), 1, anon_sym_SEMI, - ACTIONS(7613), 1, + ACTIONS(7561), 1, sym__automatic_semicolon, - ACTIONS(7615), 1, + ACTIONS(7563), 1, sym__function_signature_automatic_semicolon, - STATE(3977), 1, + STATE(2165), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144119] = 3, - ACTIONS(5454), 1, - sym__automatic_semicolon, + [143901] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4858), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 4, + ACTIONS(7524), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144133] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(7577), 1, - anon_sym_PIPE, + [143917] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4682), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7617), 2, + ACTIONS(7522), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144151] = 4, - ACTIONS(6462), 1, + [143933] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4856), 1, + STATE(4945), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144167] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(3668), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [143949] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4947), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144187] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(4193), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143965] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4694), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144207] = 2, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143981] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4948), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2948), 5, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144219] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5444), 1, - sym__call_signature, + [143997] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7565), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144239] = 4, - ACTIONS(7409), 1, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144013] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7619), 1, + ACTIONS(7568), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, + STATE(5199), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144255] = 4, - ACTIONS(6462), 1, + [144029] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4857), 1, + STATE(4702), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144271] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2784), 5, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144283] = 6, - ACTIONS(7040), 1, - anon_sym_LBRACE, - ACTIONS(7550), 1, anon_sym_SEMI, - ACTIONS(7552), 1, - sym__automatic_semicolon, - ACTIONS(7554), 1, - sym__function_signature_automatic_semicolon, - STATE(781), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144303] = 4, - ACTIONS(6462), 1, + [144045] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4858), 1, + STATE(4703), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144319] = 4, - ACTIONS(6462), 1, + [144061] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4664), 1, + STATE(4705), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144335] = 3, - ACTIONS(5478), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1781), 4, + [144077] = 6, + ACTIONS(7571), 1, + anon_sym_EQ, + ACTIONS(7573), 1, anon_sym_COMMA, + ACTIONS(7575), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144349] = 3, - ACTIONS(5480), 1, - sym__automatic_semicolon, + STATE(4712), 1, + aux_sym_enum_body_repeat1, + STATE(5290), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144363] = 4, - ACTIONS(6462), 1, + [144097] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4859), 1, + STATE(4953), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144379] = 4, - ACTIONS(6462), 1, + [144113] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4860), 1, + STATE(4717), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144395] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(3680), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [144129] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144415] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6709), 1, - anon_sym_extends, + ACTIONS(2553), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144141] = 6, + ACTIONS(7065), 1, + anon_sym_LBRACE, ACTIONS(7577), 1, - anon_sym_PIPE, + anon_sym_SEMI, + ACTIONS(7579), 1, + sym__automatic_semicolon, + ACTIONS(7581), 1, + sym__function_signature_automatic_semicolon, + STATE(3997), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 2, + [144161] = 3, + ACTIONS(5318), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1810), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144433] = 3, - ACTIONS(5514), 1, - sym__automatic_semicolon, + anon_sym_PIPE_RBRACE, + [144175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 4, + ACTIONS(2675), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144447] = 5, - ACTIONS(6705), 1, + [144187] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6709), 1, + ACTIONS(6702), 1, anon_sym_extends, - ACTIONS(7577), 1, + ACTIONS(7557), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7624), 2, + ACTIONS(7583), 2, sym__automatic_semicolon, anon_sym_SEMI, - [144465] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(3686), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144485] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4795), 1, - sym__initializer, + [144205] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(2737), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144501] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4853), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7626), 3, + ACTIONS(2741), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144517] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(3691), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144537] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [144229] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3694), 1, + STATE(3521), 1, sym__call_signature, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144557] = 6, - ACTIONS(2570), 1, + [144249] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3698), 1, + STATE(4355), 1, sym__call_signature, - STATE(5222), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144577] = 2, + [144269] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4970), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 5, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144589] = 4, - ACTIONS(6462), 1, + [144285] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7585), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144301] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4884), 1, + STATE(4722), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144605] = 4, - ACTIONS(6462), 1, + [144317] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4898), 1, + STATE(4723), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144621] = 2, + [144333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, + ACTIONS(2749), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144633] = 4, - ACTIONS(6462), 1, + [144345] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4911), 1, + STATE(4724), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144649] = 6, - ACTIONS(3843), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(7630), 1, - anon_sym_RBRACE, - STATE(4906), 1, - aux_sym_object_pattern_repeat1, + [144361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144669] = 2, + ACTIONS(2809), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4870), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [144681] = 2, + ACTIONS(2809), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144385] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4864), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [144693] = 2, + ACTIONS(2829), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144397] = 3, + ACTIONS(5322), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2720), 5, - sym__automatic_semicolon, + ACTIONS(1770), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144705] = 2, + [144411] = 3, + ACTIONS(5324), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2724), 5, - sym__automatic_semicolon, + ACTIONS(1780), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144717] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4797), 1, - sym__initializer, + [144425] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(1790), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144733] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4912), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(1800), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144749] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [144449] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5449), 1, + STATE(3598), 1, sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144769] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4913), 1, - sym__initializer, + [144469] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(1706), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144785] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [144481] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4938), 1, + STATE(4867), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7588), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144801] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4914), 1, - sym__initializer, + [144497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(2857), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144817] = 5, - ACTIONS(7632), 1, - sym_identifier, - ACTIONS(7634), 1, - anon_sym_LPAREN, - STATE(2708), 1, - sym_decorator_member_expression, + anon_sym_PIPE_RBRACE, + [144509] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2796), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [144835] = 4, - ACTIONS(6462), 1, + ACTIONS(7590), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144527] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4953), 1, + STATE(4725), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144851] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4958), 1, - sym__initializer, + [144543] = 3, + ACTIONS(5328), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, - sym__automatic_semicolon, + ACTIONS(1856), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144867] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [144557] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4959), 1, + STATE(4726), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144883] = 6, - ACTIONS(2570), 1, + [144573] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5242), 1, + STATE(3749), 1, sym__call_signature, - STATE(5348), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144903] = 6, - ACTIONS(1721), 1, - anon_sym_LBRACE, - ACTIONS(7591), 1, - anon_sym_SEMI, - ACTIONS(7593), 1, - sym__automatic_semicolon, - ACTIONS(7595), 1, - sym__function_signature_automatic_semicolon, - STATE(223), 1, - sym_statement_block, + [144593] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(3631), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144923] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4924), 1, - sym__initializer, + [144613] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(2909), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144939] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7636), 1, - anon_sym_BQUOTE, - ACTIONS(7638), 1, - sym__template_chars, + anon_sym_PIPE_RBRACE, + [144625] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(3637), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4021), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [144957] = 6, - ACTIONS(2570), 1, + [144645] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4012), 1, + STATE(3649), 1, sym__call_signature, - STATE(5281), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144977] = 4, - ACTIONS(6462), 1, + [144665] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4960), 1, + STATE(4731), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144993] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5218), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [144681] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4732), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145013] = 6, - ACTIONS(4335), 1, - anon_sym_LBRACE, - ACTIONS(7579), 1, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(7581), 1, + [144697] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2699), 5, sym__automatic_semicolon, - ACTIONS(7583), 1, - sym__function_signature_automatic_semicolon, - STATE(2278), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145033] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4925), 1, - sym__initializer, + ACTIONS(2699), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(2699), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145049] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [144733] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4790), 1, + STATE(4737), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145065] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, - sym__template_chars, - ACTIONS(7640), 1, - anon_sym_BQUOTE, + [144749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145083] = 4, - ACTIONS(6462), 1, + ACTIONS(2861), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144761] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4929), 1, + STATE(4738), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145099] = 4, - ACTIONS(6462), 1, + [144777] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4979), 1, + STATE(4739), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145115] = 6, - ACTIONS(4335), 1, - anon_sym_LBRACE, - ACTIONS(7611), 1, - anon_sym_SEMI, - ACTIONS(7613), 1, + [144793] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7153), 5, sym__automatic_semicolon, - ACTIONS(7615), 1, - sym__function_signature_automatic_semicolon, - STATE(2290), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144805] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4177), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145135] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__initializer, + [144825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145151] = 2, + anon_sym_PIPE_RBRACE, + [144837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 5, + ACTIONS(7153), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145163] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4989), 1, - sym__initializer, + [144849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7592), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145179] = 5, - ACTIONS(7532), 1, - anon_sym_LPAREN, - ACTIONS(7644), 1, - sym_identifier, - STATE(3441), 1, - sym_decorator_member_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1284), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [145197] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [144861] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4933), 1, + STATE(4522), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145213] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4992), 1, - sym__initializer, + [144877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145229] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4794), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7594), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145245] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [144901] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5307), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5391), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145265] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4993), 1, - sym__initializer, + [144921] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(2943), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145281] = 2, + anon_sym_PIPE_RBRACE, + [144933] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2812), 5, + ACTIONS(2949), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145293] = 2, + [144945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2860), 5, + ACTIONS(2957), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145305] = 2, + [144957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2884), 5, + ACTIONS(2965), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145317] = 6, - ACTIONS(1721), 1, - anon_sym_LBRACE, - ACTIONS(7550), 1, - anon_sym_SEMI, - ACTIONS(7552), 1, - sym__automatic_semicolon, - ACTIONS(7554), 1, - sym__function_signature_automatic_semicolon, - STATE(238), 1, - sym_statement_block, + [144969] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145337] = 2, + ACTIONS(2865), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(7085), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145349] = 6, - ACTIONS(2570), 1, + [144993] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4323), 1, + STATE(5228), 1, sym__call_signature, - STATE(5222), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145369] = 2, + [145013] = 6, + ACTIONS(1678), 1, + anon_sym_LBRACE, + ACTIONS(7559), 1, + anon_sym_SEMI, + ACTIONS(7561), 1, + sym__automatic_semicolon, + ACTIONS(7563), 1, + sym__function_signature_automatic_semicolon, + STATE(222), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(2719), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145381] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4805), 1, - sym__initializer, + [145045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(2719), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145397] = 2, + anon_sym_PIPE_RBRACE, + [145057] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(3893), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(2869), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145409] = 2, + [145089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7646), 5, + ACTIONS(1758), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145421] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4782), 1, - sym__initializer, + [145101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7648), 3, + ACTIONS(1820), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145437] = 2, + anon_sym_PIPE_RBRACE, + [145113] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7596), 1, + anon_sym_BQUOTE, + ACTIONS(7598), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4057), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7650), 5, + ACTIONS(1830), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145449] = 2, + [145143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(2917), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145461] = 2, + [145155] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4557), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7652), 5, + ACTIONS(7600), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145473] = 2, + [145183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7654), 5, + ACTIONS(7602), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145485] = 2, + [145195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1763), 5, + ACTIONS(7604), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145497] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7656), 1, - anon_sym_BQUOTE, - ACTIONS(7658), 1, - sym__template_chars, + [145207] = 6, + ACTIONS(4336), 1, + anon_sym_LBRACE, + ACTIONS(7549), 1, + anon_sym_SEMI, + ACTIONS(7551), 1, + sym__automatic_semicolon, + ACTIONS(7553), 1, + sym__function_signature_automatic_semicolon, + STATE(2182), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4054), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145515] = 2, + [145227] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4748), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7146), 5, + ACTIONS(7606), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145527] = 2, + [145243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7660), 5, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145539] = 4, - ACTIONS(6462), 1, + [145255] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4966), 1, + STATE(4750), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7608), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145555] = 5, - ACTIONS(7542), 1, + [145271] = 5, + ACTIONS(7512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, + ACTIONS(7514), 1, sym__template_chars, - ACTIONS(7662), 1, + ACTIONS(7610), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, + STATE(4136), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145573] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4972), 1, - sym__initializer, + [145289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7612), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145589] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [145301] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4597), 1, + STATE(4837), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7664), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145605] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5015), 5, + [145317] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145617] = 2, + STATE(4670), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7430), 5, + ACTIONS(7614), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [145629] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4980), 1, - sym__initializer, + [145333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(2775), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145345] = 6, + ACTIONS(4336), 1, + anon_sym_LBRACE, + ACTIONS(7577), 1, anon_sym_SEMI, - [145645] = 2, + ACTIONS(7579), 1, + sym__automatic_semicolon, + ACTIONS(7581), 1, + sym__function_signature_automatic_semicolon, + STATE(2186), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7432), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [145657] = 2, + [145365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7434), 5, + ACTIONS(2783), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145669] = 2, + anon_sym_PIPE_RBRACE, + [145377] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4751), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2940), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145681] = 4, - ACTIONS(6462), 1, + [145393] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4982), 1, + STATE(4752), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145697] = 2, + [145409] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4753), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145709] = 2, + [145425] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2797), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145721] = 2, + [145437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 5, + ACTIONS(2801), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145733] = 2, + [145449] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2552), 5, + ACTIONS(2813), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145745] = 2, + [145461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 5, + ACTIONS(2835), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145757] = 2, + [145473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2921), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145769] = 2, + [145485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2723), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145781] = 2, + [145497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2585), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145793] = 2, + [145509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(1866), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145805] = 4, - ACTIONS(6462), 1, + [145521] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4985), 1, + STATE(4755), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145821] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5399), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145841] = 2, + [145537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1861), 5, + ACTIONS(7618), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145853] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4868), 5, + [145549] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [145865] = 2, + STATE(4758), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2640), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145877] = 2, + [145565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2652), 5, + ACTIONS(2707), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145889] = 2, + [145577] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4760), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2664), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145901] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7666), 1, - anon_sym_BQUOTE, - ACTIONS(7668), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4083), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145919] = 4, - ACTIONS(6462), 1, + [145593] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4986), 1, + STATE(4761), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145935] = 4, - ACTIONS(6462), 1, + [145609] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5124), 1, + STATE(4762), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145951] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, - sym__template_chars, - ACTIONS(7670), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145969] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7419), 1, - anon_sym_abstract, - ACTIONS(7672), 1, - anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145989] = 2, + [145625] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4763), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5139), 5, - anon_sym_EQ, + ACTIONS(7616), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146001] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5002), 1, - sym__initializer, + anon_sym_SEMI, + [145641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7223), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146017] = 2, + anon_sym_PIPE_RBRACE, + [145653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7674), 5, + ACTIONS(7622), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146029] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(4038), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [145665] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7624), 1, + anon_sym_BQUOTE, + ACTIONS(7626), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146049] = 4, - ACTIONS(3550), 1, - anon_sym_COLON, - STATE(5200), 1, - sym_type_annotation, + STATE(4092), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145683] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4764), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 3, - anon_sym_EQ, + ACTIONS(7616), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [146065] = 2, + anon_sym_SEMI, + [145699] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7628), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7676), 5, + ACTIONS(2771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146077] = 2, + [145727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(2787), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146089] = 2, + [145739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(2791), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146101] = 2, + [145751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(2825), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146113] = 2, + [145763] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + sym__template_chars, + ACTIONS(7631), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145781] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4765), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7678), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146125] = 6, - ACTIONS(2570), 1, + [145797] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3874), 1, + STATE(3756), 1, sym__call_signature, - STATE(5281), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146145] = 4, - ACTIONS(6462), 1, + [145817] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5032), 1, + STATE(4769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7680), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146161] = 3, - ACTIONS(7682), 1, + [145833] = 4, + ACTIONS(6447), 1, anon_sym_EQ, + STATE(4770), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 4, + ACTIONS(7616), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146175] = 2, + anon_sym_SEMI, + [145849] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4771), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146187] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(4330), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146207] = 4, - ACTIONS(6462), 1, + [145865] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5038), 1, + STATE(4633), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7685), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146223] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7687), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146239] = 2, + [145881] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4786), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146251] = 2, + [145897] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5031), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(7633), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146263] = 4, - ACTIONS(6462), 1, + [145913] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4806), 1, + STATE(4793), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146279] = 2, + [145929] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4794), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146291] = 2, + [145945] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4795), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7692), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146303] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7694), 1, - anon_sym_EQ_GT, + [145961] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146319] = 2, + ACTIONS(7635), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145979] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146331] = 2, + [145995] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4801), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7697), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146343] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(5045), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [146011] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7637), 1, + anon_sym_BQUOTE, + ACTIONS(7639), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4112), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146029] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + sym__template_chars, + ACTIONS(7641), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146363] = 2, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146047] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4803), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7699), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146375] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, + [146063] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4804), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 2, + ACTIONS(7616), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [146393] = 4, - ACTIONS(6462), 1, + anon_sym_SEMI, + [146079] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5046), 1, + STATE(4809), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146409] = 4, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(7705), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4238), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [146425] = 5, - ACTIONS(7707), 1, - anon_sym_BQUOTE, - ACTIONS(7709), 1, + [146095] = 5, + ACTIONS(7512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7712), 1, + ACTIONS(7514), 1, sym__template_chars, + ACTIONS(7643), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, + STATE(4136), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146443] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, + [146113] = 4, + STATE(5437), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 2, - anon_sym_COMMA, - anon_sym_GT, - [146461] = 4, - ACTIONS(6462), 1, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7647), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [146129] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5018), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7717), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146477] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5047), 1, - sym__initializer, + [146145] = 4, + ACTIONS(3557), 1, + anon_sym_COLON, + STATE(5159), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, + ACTIONS(3622), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [146493] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(3850), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, + anon_sym_RBRACK, + [146161] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7649), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146513] = 4, - ACTIONS(6462), 1, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [146177] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4812), 1, + STATE(4818), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146529] = 4, - ACTIONS(6462), 1, + [146193] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5051), 1, + STATE(4819), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146545] = 4, - ACTIONS(6462), 1, + [146209] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5052), 1, + STATE(4820), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146561] = 4, - ACTIONS(6462), 1, + [146225] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5053), 1, + STATE(4821), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146577] = 2, + [146241] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4824), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2672), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146589] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(3932), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146609] = 2, + [146257] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4826), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2688), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146621] = 2, + [146273] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4831), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2748), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146633] = 2, + [146289] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4772), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2752), 5, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146645] = 2, + [146305] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7652), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 5, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [146321] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [146657] = 5, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(7723), 1, - sym_identifier, + STATE(4835), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5672), 2, - sym__module_export_name, - sym_string, - [146675] = 4, - ACTIONS(6462), 1, + ACTIONS(7620), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146337] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5054), 1, + STATE(4836), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146691] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5467), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146711] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5471), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146731] = 4, - ACTIONS(6462), 1, + [146353] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5055), 1, + STATE(4838), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146747] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7417), 1, - anon_sym_class, - ACTIONS(7419), 1, - anon_sym_abstract, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, + [146369] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146767] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(3948), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, + ACTIONS(7655), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [146387] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4839), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146787] = 4, - STATE(5153), 1, + ACTIONS(7616), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146403] = 4, + STATE(5309), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, + ACTIONS(7645), 2, anon_sym_with, anon_sym_assert, - ACTIONS(7725), 2, + ACTIONS(7657), 2, sym__automatic_semicolon, anon_sym_SEMI, - [146803] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(3815), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146823] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5440), 1, - sym__call_signature, + [146419] = 5, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7659), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146843] = 4, - ACTIONS(6366), 1, - anon_sym_DOT, - ACTIONS(7727), 1, - sym_identifier, + STATE(5863), 2, + sym__module_export_name, + sym_string, + [146437] = 4, + ACTIONS(6373), 1, + anon_sym_LBRACK, + ACTIONS(7661), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [146859] = 2, + ACTIONS(4172), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [146453] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4840), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2968), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146871] = 6, - ACTIONS(7603), 1, + [146469] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(7729), 1, - anon_sym_COMMA, - ACTIONS(7731), 1, - anon_sym_RBRACE, - STATE(4952), 1, - aux_sym_enum_body_repeat1, - STATE(5309), 1, + STATE(4776), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146891] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(3952), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146485] = 5, + ACTIONS(7663), 1, + anon_sym_BQUOTE, + ACTIONS(7665), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7668), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146911] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5147), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146503] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146931] = 4, - STATE(5173), 1, - sym_import_attribute, + ACTIONS(7671), 2, + anon_sym_COMMA, + anon_sym_GT, + [146521] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4845), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7733), 2, + ACTIONS(7620), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146947] = 2, + [146537] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4846), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2820), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146959] = 4, - ACTIONS(6462), 1, + [146553] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4763), 1, + STATE(4847), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7648), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146975] = 4, - ACTIONS(6462), 1, + [146569] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4818), 1, + STATE(4781), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146991] = 4, - ACTIONS(6462), 1, + [146585] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5021), 1, + STATE(4854), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147007] = 5, - ACTIONS(7737), 1, - anon_sym_SEMI, - ACTIONS(7739), 1, - sym__automatic_semicolon, - STATE(5475), 1, - sym_import_attribute, + [146601] = 5, + ACTIONS(6682), 1, + anon_sym_LT, + ACTIONS(7673), 1, + anon_sym_LBRACE, + STATE(5076), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, - anon_sym_with, - anon_sym_assert, - [147025] = 2, + ACTIONS(7675), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [146619] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4861), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2844), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147037] = 2, + [146635] = 4, + ACTIONS(6337), 1, + anon_sym_DOT, + ACTIONS(7677), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147049] = 2, + ACTIONS(6335), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [146651] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4862), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147061] = 2, + [146667] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(3944), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147073] = 2, + [146687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2864), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147085] = 4, - ACTIONS(6462), 1, + ACTIONS(7679), 5, anon_sym_EQ, - STATE(4747), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [146699] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4865), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147101] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5062), 1, - sym__initializer, + [146715] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7282), 1, + anon_sym_class, + ACTIONS(7284), 1, + anon_sym_abstract, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147117] = 4, - ACTIONS(6462), 1, + [146735] = 6, + ACTIONS(7571), 1, anon_sym_EQ, - STATE(5063), 1, + ACTIONS(7681), 1, + anon_sym_COMMA, + ACTIONS(7683), 1, + anon_sym_RBRACE, + STATE(4962), 1, + aux_sym_enum_body_repeat1, + STATE(5290), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147133] = 4, - ACTIONS(6462), 1, + [146755] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5023), 1, + STATE(4871), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147149] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2896), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147161] = 6, - ACTIONS(99), 1, + [146771] = 6, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7419), 1, + ACTIONS(7284), 1, anon_sym_abstract, - ACTIONS(7464), 1, + ACTIONS(7393), 1, anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, + STATE(1269), 1, aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146791] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(3961), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147181] = 4, - ACTIONS(6462), 1, + [146811] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5069), 1, + STATE(4872), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147197] = 4, - ACTIONS(6462), 1, + [146827] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5027), 1, + STATE(4873), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147213] = 6, - ACTIONS(2570), 1, + [146843] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3963), 1, + STATE(5150), 1, sym__call_signature, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147233] = 2, + [146863] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4874), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147245] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5290), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147265] = 4, - ACTIONS(6462), 1, + [146879] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5030), 1, + STATE(4875), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147281] = 6, - ACTIONS(2570), 1, + [146895] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5295), 1, + STATE(3964), 1, sym__call_signature, - STATE(5348), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147301] = 6, - ACTIONS(2570), 1, + [146915] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5296), 1, + STATE(5224), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147321] = 2, + [146935] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4827), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 5, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147333] = 2, + [146951] = 5, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(7685), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4881), 2, + sym__module_export_name, + sym_string, + [146969] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7687), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [146981] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4886), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147345] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5317), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [146997] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4888), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147365] = 2, + ACTIONS(7616), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147013] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4889), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2692), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147377] = 4, - ACTIONS(6462), 1, + [147029] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5072), 1, + STATE(4892), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147393] = 4, - ACTIONS(6462), 1, + [147045] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(4893), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147409] = 4, - ACTIONS(6462), 1, + [147061] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5074), 1, + STATE(4895), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147425] = 5, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(7741), 1, - sym_identifier, + [147077] = 6, + ACTIONS(3814), 1, + anon_sym_COLON, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(7689), 1, + anon_sym_RBRACE, + STATE(4802), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5323), 2, - sym__module_export_name, - sym_string, - [147443] = 6, - ACTIONS(2570), 1, + [147097] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(3980), 1, + sym__call_signature, + STATE(5249), 1, sym_type_parameters, - STATE(5413), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147117] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5212), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147463] = 6, - ACTIONS(2570), 1, + [147137] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5216), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, - STATE(5421), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147157] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5220), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147483] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4821), 1, - sym__initializer, + [147177] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5241), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147499] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5079), 1, - sym__initializer, + [147197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7155), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147515] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5080), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147209] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4252), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147531] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5081), 1, - sym__initializer, + [147229] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7157), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147547] = 5, - ACTIONS(2338), 1, + anon_sym_PIPE_RBRACE, + [147241] = 5, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(7743), 1, + ACTIONS(7691), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4654), 2, + STATE(5307), 2, sym__module_export_name, sym_string, - [147565] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5042), 1, - sym__initializer, + [147259] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7745), 3, + ACTIONS(7155), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147581] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5082), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7693), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147597] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [147283] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5043), 1, + STATE(4842), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147613] = 6, - ACTIONS(2570), 1, + [147299] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5454), 1, + STATE(5363), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147633] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5064), 1, - sym__initializer, + [147319] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5366), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147339] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7695), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7697), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147649] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [147363] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5083), 1, + STATE(4898), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7699), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147665] = 6, - ACTIONS(2570), 1, + [147379] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5325), 1, + STATE(3770), 1, sym__call_signature, - STATE(5348), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147685] = 6, - ACTIONS(2570), 1, + [147399] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5472), 1, + STATE(5310), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147705] = 6, - ACTIONS(7040), 1, + [147419] = 6, + ACTIONS(7065), 1, anon_sym_LBRACE, - ACTIONS(7591), 1, + ACTIONS(7559), 1, anon_sym_SEMI, - ACTIONS(7593), 1, + ACTIONS(7561), 1, sym__automatic_semicolon, - ACTIONS(7595), 1, + ACTIONS(7563), 1, sym__function_signature_automatic_semicolon, - STATE(776), 1, + STATE(799), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147725] = 6, - ACTIONS(2570), 1, + [147439] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4844), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147455] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5143), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5424), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147745] = 4, - ACTIONS(6462), 1, + [147475] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5065), 1, + STATE(4900), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147761] = 4, - ACTIONS(6462), 1, + [147491] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5084), 1, + STATE(4901), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147777] = 6, - ACTIONS(2570), 1, + [147507] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5146), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5447), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147797] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7747), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [147815] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2964), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147827] = 2, + [147527] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5127), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147839] = 2, + [147547] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4902), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2772), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147851] = 2, + [147563] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4903), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2728), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147863] = 6, - ACTIONS(2570), 1, + [147579] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5329), 1, + STATE(5135), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147883] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2608), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147895] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5098), 1, - sym__initializer, + [147599] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(4250), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147911] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4619), 1, - sym__initializer, + [147619] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7749), 3, + ACTIONS(7703), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [147927] = 6, - ACTIONS(2570), 1, + [147637] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5335), 1, + STATE(5315), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147947] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2776), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147959] = 2, + [147657] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4850), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2776), 5, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147971] = 4, - ACTIONS(6462), 1, + [147673] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5085), 1, + STATE(4909), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147987] = 4, - ACTIONS(6462), 1, + [147689] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148003] = 6, - ACTIONS(2570), 1, + [147705] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3974), 1, + STATE(5324), 1, sym__call_signature, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148023] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2556), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148035] = 2, + [147725] = 6, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + ACTIONS(7191), 1, + anon_sym_extends, + STATE(869), 1, + sym_object_type, + STATE(4688), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148047] = 2, + [147745] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4912), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148059] = 2, + [147761] = 3, + ACTIONS(4826), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148071] = 2, + ACTIONS(5337), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [147775] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4913), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2944), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148083] = 4, - ACTIONS(6462), 1, + [147791] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5122), 1, + STATE(4914), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148099] = 4, - ACTIONS(6462), 1, + [147807] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4608), 1, + STATE(4915), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148115] = 4, - ACTIONS(6462), 1, + [147823] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5089), 1, + STATE(4916), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148131] = 4, - ACTIONS(7753), 1, + [147839] = 4, + ACTIONS(7709), 1, anon_sym_in, - ACTIONS(7755), 1, + ACTIONS(7711), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148147] = 4, - ACTIONS(7757), 1, + [147855] = 4, + ACTIONS(7713), 1, anon_sym_in, - ACTIONS(7759), 1, + ACTIONS(7715), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148163] = 6, - ACTIONS(2570), 1, + [147871] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4018), 1, + STATE(4053), 1, sym__call_signature, - STATE(5281), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148183] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5093), 1, - sym__initializer, + [147891] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7717), 1, + anon_sym_BQUOTE, + ACTIONS(7719), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148199] = 4, - ACTIONS(6462), 1, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147909] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4864), 1, + STATE(4918), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148215] = 2, + [147925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 5, + ACTIONS(5469), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148227] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2796), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148239] = 2, + [147937] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4919), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2804), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148251] = 6, - ACTIONS(99), 1, + [147953] = 6, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7761), 1, + ACTIONS(7721), 1, anon_sym_class, - ACTIONS(7763), 1, + ACTIONS(7723), 1, anon_sym_abstract, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, + STATE(1269), 1, aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148271] = 6, - ACTIONS(2570), 1, + ACTIONS(5473), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147985] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4024), 1, + STATE(4062), 1, sym__call_signature, - STATE(5281), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148291] = 6, - ACTIONS(2570), 1, + [148005] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5367), 1, + STATE(5377), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148311] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4870), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148327] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5498), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148339] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4873), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148355] = 2, + [148025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5498), 5, + ACTIONS(5473), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148367] = 2, + [148037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5498), 5, + ACTIONS(5473), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148379] = 6, - ACTIONS(2570), 1, + [148049] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5420), 1, + STATE(3885), 1, sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148399] = 6, - ACTIONS(2570), 1, + [148069] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3862), 1, - sym__call_signature, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5410), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148419] = 4, - ACTIONS(6462), 1, + [148089] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4669), 1, + STATE(4920), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148435] = 4, - ACTIONS(6462), 1, + [148105] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4886), 1, + STATE(4921), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148451] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2832), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148463] = 2, + [148121] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4922), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2836), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148475] = 2, + [148137] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4923), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2848), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148487] = 2, + [148153] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5017), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2872), 5, + ACTIONS(7725), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148499] = 2, + [148169] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5049), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2920), 5, + ACTIONS(7727), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148511] = 4, - ACTIONS(6462), 1, + [148185] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4887), 1, + STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148527] = 4, - ACTIONS(6462), 1, + [148201] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5028), 1, + STATE(4929), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7765), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148543] = 2, + [148217] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4931), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2888), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148555] = 4, - ACTIONS(6462), 1, + [148233] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5094), 1, + STATE(4932), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148571] = 2, + [148249] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4933), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2684), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148583] = 2, + [148265] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5065), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 5, + ACTIONS(7729), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148595] = 4, - ACTIONS(6462), 1, + [148281] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4978), 1, + STATE(4934), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148611] = 4, - ACTIONS(6462), 1, + [148297] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5097), 1, + STATE(4936), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148627] = 4, - ACTIONS(6462), 1, + [148313] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5087), 1, + STATE(4937), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148643] = 4, - ACTIONS(6462), 1, + [148329] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5003), 1, + STATE(4938), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148659] = 4, - ACTIONS(6462), 1, + [148345] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4678), 1, + STATE(4517), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148675] = 2, + [148361] = 5, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7733), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2740), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148687] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5012), 1, - sym__initializer, + STATE(5385), 2, + sym__module_export_name, + sym_string, + [148379] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(4191), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148703] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4634), 1, - sym__initializer, + [148399] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [148419] = 6, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7540), 1, anon_sym_SEMI, - [148719] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2808), 5, + ACTIONS(7542), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148731] = 2, + ACTIONS(7544), 1, + sym__function_signature_automatic_semicolon, + STATE(786), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2824), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148743] = 2, + [148439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2828), 5, + ACTIONS(7125), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148755] = 2, + [148451] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2852), 5, + ACTIONS(7163), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148767] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4698), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148783] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5099), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148799] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5100), 1, - sym__initializer, + [148463] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4271), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148815] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5137), 1, - sym__initializer, + [148483] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7735), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [148831] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4533), 1, - sym__initializer, + [148501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7769), 3, + ACTIONS(7169), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148847] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5108), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148513] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4294), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7745), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148863] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4823), 1, - sym__initializer, + [148533] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7123), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148879] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [148545] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4289), 1, + STATE(4023), 1, sym__call_signature, - STATE(5222), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148899] = 2, + [148565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, + ACTIONS(7737), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148911] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5111), 1, - sym__initializer, + [148577] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5432), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + [148597] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7123), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148927] = 2, + anon_sym_PIPE_RBRACE, + [148609] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7771), 5, + ACTIONS(7739), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148939] = 4, - ACTIONS(6462), 1, + [148621] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5112), 1, + STATE(4940), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148955] = 4, - ACTIONS(6462), 1, + [148637] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4867), 1, + STATE(4941), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148971] = 2, + [148653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, + ACTIONS(7410), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148983] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5114), 1, - sym__initializer, + [148665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7133), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148999] = 2, + anon_sym_PIPE_RBRACE, + [148677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7773), 5, + ACTIONS(7743), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149011] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7775), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149027] = 2, + [148689] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4942), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7391), 5, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149039] = 4, - ACTIONS(6462), 1, + [148705] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(4943), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149055] = 2, + [148721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7174), 5, + ACTIONS(1852), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149067] = 2, + [148733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7778), 5, + ACTIONS(7183), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149079] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4531), 1, - sym__initializer, + [148745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7131), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149095] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [148757] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4037), 1, - sym__call_signature, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149115] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4591), 1, - sym__initializer, + [148777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7125), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149131] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4716), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(1730), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149147] = 2, + anon_sym_PIPE_RBRACE, + [148801] = 3, + ACTIONS(7745), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, - sym__automatic_semicolon, + ACTIONS(3586), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149159] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5125), 1, - sym__initializer, + anon_sym_COLON, + anon_sym_RBRACK, + [148815] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7747), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149175] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5129), 1, - sym__initializer, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7750), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149191] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4855), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148843] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5450), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149207] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4625), 1, - sym__initializer, + [148863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7780), 3, + ACTIONS(1750), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149223] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4996), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7752), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149239] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5041), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148887] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7131), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149255] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5049), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7754), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149271] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5076), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148911] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7756), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149287] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7782), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5441), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149303] = 3, - ACTIONS(4837), 1, - anon_sym_in, + anon_sym_PIPE_RBRACE, + [148923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5565), 4, - anon_sym_LPAREN, + ACTIONS(5417), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - [149317] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5130), 1, - sym__initializer, + [148935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(2893), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149333] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4559), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(1730), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149349] = 3, - ACTIONS(7785), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3623), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [149363] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7787), 5, + ACTIONS(7758), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [149375] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4572), 1, - sym__initializer, + [148971] = 5, + ACTIONS(7760), 1, + anon_sym_SEMI, + ACTIONS(7762), 1, + sym__automatic_semicolon, + STATE(5398), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149391] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4573), 1, - sym__initializer, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + [148989] = 5, + ACTIONS(7764), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_LPAREN, + STATE(1246), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149407] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, - sym__template_chars, - ACTIONS(7789), 1, - anon_sym_BQUOTE, + STATE(1317), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [149007] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(5054), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149425] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4576), 1, - sym__initializer, + [149027] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5261), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149441] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4583), 1, - sym__initializer, + [149047] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5425), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149457] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4585), 1, - sym__initializer, + [149067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149473] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [149079] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5133), 1, + STATE(5064), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149489] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7791), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [149095] = 5, + ACTIONS(7768), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149501] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5150), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + ACTIONS(7770), 1, + sym__automatic_semicolon, + STATE(5460), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149521] = 4, - ACTIONS(6462), 1, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + [149113] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4599), 1, + STATE(5066), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149537] = 6, - ACTIONS(2570), 1, + [149129] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5207), 1, + STATE(5288), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149557] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4604), 1, - sym__initializer, + [149149] = 4, + STATE(5331), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7772), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [149573] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4616), 1, - sym__initializer, + [149165] = 4, + STATE(5334), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7774), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [149589] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4618), 1, - sym__initializer, + [149181] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7284), 1, + anon_sym_abstract, + ACTIONS(7776), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149605] = 4, - ACTIONS(6462), 1, + [149201] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4623), 1, + STATE(5067), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149621] = 4, - ACTIONS(1893), 1, - anon_sym_DOT, - ACTIONS(4203), 1, - anon_sym_LBRACE, + [149217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 3, + ACTIONS(5535), 5, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149229] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7723), 1, + anon_sym_abstract, + ACTIONS(7778), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149249] = 6, + ACTIONS(2499), 1, anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149637] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5308), 1, + STATE(5217), 1, sym__call_signature, - STATE(5348), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149657] = 4, - ACTIONS(1897), 1, - anon_sym_DOT, - ACTIONS(4203), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4205), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149673] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7763), 1, - anon_sym_abstract, - ACTIONS(7793), 1, - anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, + [149269] = 6, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, + ACTIONS(7780), 1, + anon_sym_as, + ACTIONS(7782), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149693] = 2, + [149289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 5, + ACTIONS(7784), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149705] = 6, - ACTIONS(2570), 1, + [149301] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4098), 1, + STATE(3820), 1, sym__call_signature, - STATE(5222), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149725] = 2, + [149321] = 3, + ACTIONS(7786), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3622), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, + ACTIONS(2731), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149737] = 2, + [149347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 5, + ACTIONS(2763), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149749] = 2, + [149359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 5, + ACTIONS(5121), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [149761] = 2, + [149371] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4625), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7795), 5, + ACTIONS(7789), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149773] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(4631), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [149387] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4669), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149793] = 2, + ACTIONS(7791), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 5, + ACTIONS(7793), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149805] = 6, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, - ACTIONS(7797), 1, - anon_sym_as, - ACTIONS(7799), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149825] = 4, - STATE(5419), 1, - sym_import_attribute, + [149415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7801), 2, + ACTIONS(7795), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149841] = 4, - STATE(5448), 1, - sym_import_attribute, + anon_sym_PIPE_RBRACE, + [149427] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7797), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7803), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [149857] = 2, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7805), 5, + ACTIONS(7800), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149869] = 6, - ACTIONS(2570), 1, + [149455] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3827), 1, - sym__call_signature, - STATE(5281), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5390), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149889] = 6, - ACTIONS(2570), 1, + [149475] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3908), 1, + STATE(3796), 1, sym__call_signature, - STATE(5222), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149909] = 2, + [149495] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7802), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149921] = 2, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149511] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7805), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7807), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149933] = 2, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149527] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5405), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149945] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4862), 1, - sym__initializer, + [149547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7809), 3, + ACTIONS(7375), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [149961] = 4, - ACTIONS(6462), 1, + [149559] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4880), 1, + STATE(5073), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7811), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149977] = 4, - ACTIONS(7409), 1, + [149575] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7813), 1, + ACTIONS(7808), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, + STATE(5199), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149993] = 4, - ACTIONS(6462), 1, + [149591] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2953), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149603] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4826), 1, + STATE(4957), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150009] = 6, - ACTIONS(2570), 1, + [149619] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5181), 1, + STATE(4963), 1, sym__call_signature, - STATE(5348), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150029] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5425), 1, - sym__call_signature, + [149639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150049] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7816), 1, - anon_sym_EQ_GT, + ACTIONS(2649), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149651] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5079), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150065] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_EQ_GT, + ACTIONS(7524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149667] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5081), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150081] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5437), 1, - sym__call_signature, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149683] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4988), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149699] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5083), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150101] = 6, - ACTIONS(2570), 1, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149715] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(5024), 1, sym__call_signature, - STATE(5281), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150121] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7822), 1, - anon_sym_EQ_GT, + [149735] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5025), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150137] = 4, - ACTIONS(6462), 1, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149751] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4530), 1, + STATE(5034), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150153] = 2, + [149767] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5102), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7827), 5, + ACTIONS(7815), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150165] = 2, + [149783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7829), 5, - sym__automatic_semicolon, + ACTIONS(5130), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150177] = 4, - ACTIONS(6462), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149795] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4859), 5, anon_sym_EQ, - STATE(4650), 1, - sym__initializer, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [149807] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4850), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [149819] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 3, + ACTIONS(2671), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150193] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5109), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 3, + ACTIONS(2695), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150209] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [149843] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4659), 1, + STATE(5043), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7833), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150225] = 4, - ACTIONS(6462), 1, + [149859] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4674), 1, + STATE(5050), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150241] = 4, - ACTIONS(6462), 1, + [149875] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4688), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150257] = 4, - ACTIONS(6462), 1, + [149891] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4693), 1, + STATE(5069), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150273] = 6, - ACTIONS(2570), 1, + [149907] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5001), 1, + STATE(4039), 1, sym__call_signature, - STATE(5222), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150293] = 4, - ACTIONS(6462), 1, + [149927] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4694), 1, + STATE(5086), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150309] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4715), 1, - sym__initializer, + [149943] = 4, + ACTIONS(1888), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, - sym__automatic_semicolon, + ACTIONS(4386), 3, anon_sym_COMMA, - anon_sym_SEMI, - [150325] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4717), 1, - sym__initializer, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [149959] = 4, + ACTIONS(1892), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, + ACTIONS(4386), 3, anon_sym_COMMA, - anon_sym_SEMI, - [150341] = 4, - ACTIONS(6462), 1, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [149975] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4718), 1, + STATE(5091), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150357] = 4, - ACTIONS(6462), 1, + [149991] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4719), 1, + STATE(5117), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150373] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4721), 1, - sym__initializer, + [150007] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5276), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [150027] = 6, + ACTIONS(1678), 1, + anon_sym_LBRACE, + ACTIONS(7540), 1, anon_sym_SEMI, - [150389] = 2, + ACTIONS(7542), 1, + sym__automatic_semicolon, + ACTIONS(7544), 1, + sym__function_signature_automatic_semicolon, + STATE(226), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7835), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [150401] = 4, - ACTIONS(6462), 1, + [150047] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4723), 1, + STATE(5118), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150417] = 4, - ACTIONS(6462), 1, + [150063] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4725), 1, + STATE(5002), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150433] = 4, - ACTIONS(6462), 1, + [150079] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4733), 1, + STATE(5119), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150449] = 4, - ACTIONS(6462), 1, + [150095] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5346), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150115] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4738), 1, + STATE(4520), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150465] = 4, - ACTIONS(6462), 1, + [150131] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4740), 1, + STATE(5057), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150481] = 4, - ACTIONS(6462), 1, + [150147] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4598), 1, + STATE(4527), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150497] = 4, - ACTIONS(6462), 1, + [150163] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4538), 1, + STATE(4529), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150513] = 4, - ACTIONS(6462), 1, + [150179] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4757), 1, + STATE(4530), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150529] = 4, - ACTIONS(6462), 1, + [150195] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4575), 1, + STATE(5099), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150545] = 4, - ACTIONS(6462), 1, + [150211] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4702), 1, + STATE(4754), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150561] = 6, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - ACTIONS(7096), 1, - anon_sym_extends, - STATE(867), 1, - sym_object_type, - STATE(4692), 1, - sym_extends_type_clause, + [150227] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4546), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150581] = 4, - ACTIONS(6462), 1, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150243] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4574), 1, + STATE(4547), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150597] = 4, - ACTIONS(6462), 1, + [150259] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4764), 1, + STATE(4548), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150613] = 4, - ACTIONS(6462), 1, + [150275] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4768), 1, + STATE(4549), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150629] = 4, - ACTIONS(6462), 1, + [150291] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2759), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150303] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4773), 1, + STATE(4641), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150645] = 4, - ACTIONS(6366), 1, + [150319] = 4, + ACTIONS(6337), 1, anon_sym_DOT, - ACTIONS(7837), 1, + ACTIONS(7817), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, + ACTIONS(6335), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [150661] = 4, - ACTIONS(6462), 1, + [150335] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2821), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150347] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2849), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150359] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4786), 1, + STATE(4550), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150677] = 4, - ACTIONS(6462), 1, + [150375] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4729), 1, + STATE(4778), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150693] = 4, - ACTIONS(6462), 1, + [150391] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5061), 1, + STATE(4782), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7516), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150709] = 4, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5151), 1, - sym__from_clause, + [150407] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4885), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7841), 2, + ACTIONS(7620), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150724] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7843), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + [150423] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(7819), 1, + anon_sym_SQUOTE, + STATE(4466), 1, + aux_sym_string_repeat2, + ACTIONS(7821), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150440] = 5, + ACTIONS(3), 1, sym_comment, - [150741] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7823), 1, + anon_sym_SQUOTE, + STATE(4495), 1, + aux_sym_string_repeat2, + ACTIONS(7825), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150457] = 5, + ACTIONS(3514), 1, anon_sym_LPAREN, - STATE(5261), 1, - sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, + ACTIONS(3576), 1, + anon_sym_LT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150758] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7845), 1, - anon_sym_RPAREN, + [150474] = 4, + ACTIONS(7145), 1, + anon_sym_EQ, + STATE(5319), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150775] = 4, - ACTIONS(7847), 1, + ACTIONS(7827), 2, anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RPAREN, + [150489] = 5, + ACTIONS(6680), 1, + anon_sym_LPAREN, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7849), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150790] = 4, - ACTIONS(7847), 1, + [150506] = 4, + ACTIONS(7829), 1, anon_sym_COMMA, - STATE(4425), 1, + STATE(4458), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7851), 2, + ACTIONS(7831), 2, sym__automatic_semicolon, anon_sym_SEMI, - [150805] = 5, - ACTIONS(6622), 1, + [150521] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7853), 1, - anon_sym_COLON, + ACTIONS(7833), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150822] = 5, - ACTIONS(3), 1, + [150538] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7835), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [150555] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(7837), 1, + anon_sym_LT, + STATE(1602), 1, + sym_arguments, + STATE(1603), 1, + sym_type_arguments, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7855), 1, - anon_sym_SQUOTE, - STATE(4436), 1, - aux_sym_string_repeat2, - ACTIONS(7857), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150839] = 4, - ACTIONS(3843), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_EQ, + sym_comment, + [150572] = 3, + ACTIONS(6337), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [150854] = 5, + ACTIONS(6335), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [150585] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7861), 1, + ACTIONS(7839), 1, anon_sym_DQUOTE, - STATE(4399), 1, + STATE(4394), 1, aux_sym_string_repeat1, - ACTIONS(7863), 2, + ACTIONS(7841), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150871] = 5, + [150602] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7843), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150619] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7861), 1, + ACTIONS(7839), 1, anon_sym_SQUOTE, - STATE(4400), 1, + STATE(4395), 1, aux_sym_string_repeat2, - ACTIONS(7865), 2, + ACTIONS(7845), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150888] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7867), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, + [150636] = 5, + ACTIONS(3), 1, sym_comment, - [150905] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7847), 1, + anon_sym_DQUOTE, + STATE(4476), 1, + aux_sym_string_repeat1, + ACTIONS(7849), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150653] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7869), 1, + ACTIONS(7851), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(7853), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150922] = 5, + [150670] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7869), 1, + ACTIONS(7851), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150939] = 4, + [150687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_SQUOTE, + STATE(4478), 1, + aux_sym_string_repeat2, + ACTIONS(7855), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150704] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7857), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7873), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150954] = 4, - ACTIONS(7140), 1, - anon_sym_EQ, - STATE(5166), 1, - sym__initializer, + [150721] = 5, + ACTIONS(7859), 1, + sym_identifier, + STATE(4143), 1, + sym_nested_type_identifier, + STATE(4683), 1, + sym_generic_type, + STATE(5633), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7875), 2, + [150738] = 5, + ACTIONS(7139), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [150969] = 3, - ACTIONS(6127), 1, - anon_sym_EQ_GT, + ACTIONS(7861), 1, + anon_sym_LBRACE, + ACTIONS(7863), 1, + anon_sym_LBRACE_PIPE, + STATE(4485), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [150982] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7877), 1, - anon_sym_RBRACK, + [150755] = 5, + ACTIONS(7139), 1, + anon_sym_COMMA, + ACTIONS(7865), 1, + anon_sym_LBRACE, + ACTIONS(7867), 1, + anon_sym_LBRACE_PIPE, + STATE(4485), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150999] = 3, - ACTIONS(7879), 1, - anon_sym_EQ_GT, + [150772] = 5, + ACTIONS(7139), 1, + anon_sym_COMMA, + ACTIONS(7865), 1, + anon_sym_LBRACE, + ACTIONS(7867), 1, + anon_sym_LBRACE_PIPE, + STATE(4485), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [151012] = 3, - ACTIONS(7705), 1, + [150789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7869), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150806] = 3, + ACTIONS(7661), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 3, + ACTIONS(4172), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151025] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7881), 1, - anon_sym_export, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, + [150819] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7871), 1, + anon_sym_DQUOTE, + STATE(4412), 1, + aux_sym_string_repeat1, + ACTIONS(7873), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150836] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7875), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151042] = 5, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(6352), 1, - anon_sym_LT, - STATE(3128), 1, - sym_arguments, - STATE(3248), 1, - sym_type_arguments, + [150853] = 5, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(7877), 1, + anon_sym_EQ, + ACTIONS(7879), 1, + anon_sym_RBRACK, + STATE(4990), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151059] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, + [150870] = 5, + ACTIONS(7881), 1, + sym_identifier, ACTIONS(7883), 1, - anon_sym_COLON, + anon_sym_const, + ACTIONS(7885), 1, + anon_sym_GT, + STATE(5244), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150887] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7887), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151076] = 5, - ACTIONS(6622), 1, + [150904] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7885), 1, + ACTIONS(7889), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151093] = 5, + [150921] = 5, + ACTIONS(7891), 1, + sym_identifier, + STATE(3818), 1, + sym_nested_type_identifier, + STATE(4447), 1, + sym_generic_type, + STATE(5633), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150938] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7887), 1, + ACTIONS(7871), 1, anon_sym_SQUOTE, - STATE(4394), 1, + STATE(4456), 1, aux_sym_string_repeat2, - ACTIONS(7889), 2, + ACTIONS(7893), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151110] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + [150955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7895), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150972] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5174), 1, + sym_type_parameters, + STATE(5518), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151125] = 5, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(7893), 1, - anon_sym_LT, - STATE(1966), 1, - sym_arguments, - STATE(1967), 1, - sym_type_arguments, + [150989] = 4, + ACTIONS(6595), 1, + anon_sym_EQ, + STATE(5263), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151142] = 5, - ACTIONS(6622), 1, + ACTIONS(7897), 2, + anon_sym_COMMA, + anon_sym_GT, + [151004] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7895), 1, - anon_sym_RPAREN, + ACTIONS(7899), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151021] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4506), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151159] = 2, + ACTIONS(7901), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151036] = 4, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(4457), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7897), 4, + ACTIONS(7318), 2, sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, anon_sym_SEMI, - [151170] = 4, - ACTIONS(6356), 1, + [151051] = 4, + ACTIONS(7905), 1, + anon_sym_COMMA, + STATE(4480), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7903), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151066] = 4, + ACTIONS(6327), 1, anon_sym_STAR, - ACTIONS(6360), 1, + ACTIONS(6331), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5547), 2, + STATE(5748), 2, sym_namespace_import, sym_named_imports, - [151185] = 3, - ACTIONS(7899), 1, + [151081] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(7907), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151098] = 3, + ACTIONS(7909), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, + ACTIONS(6335), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [151198] = 5, - ACTIONS(7901), 1, - sym_identifier, - STATE(3951), 1, - sym_nested_type_identifier, - STATE(4612), 1, - sym_generic_type, - STATE(5633), 1, - sym_nested_identifier, + [151111] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7911), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151215] = 5, - ACTIONS(7160), 1, - anon_sym_COMMA, - ACTIONS(7903), 1, - anon_sym_LBRACE, - ACTIONS(7905), 1, - anon_sym_LBRACE_PIPE, - STATE(4440), 1, - aux_sym_extends_type_clause_repeat1, + [151128] = 4, + ACTIONS(7913), 1, + anon_sym_COMMA, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151232] = 5, - ACTIONS(7160), 1, - anon_sym_COMMA, - ACTIONS(7907), 1, + ACTIONS(7252), 2, anon_sym_LBRACE, - ACTIONS(7909), 1, - anon_sym_LBRACE_PIPE, - STATE(4440), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_GT, + [151143] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7916), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151249] = 5, - ACTIONS(7160), 1, - anon_sym_COMMA, - ACTIONS(7907), 1, - anon_sym_LBRACE, - ACTIONS(7909), 1, - anon_sym_LBRACE_PIPE, - STATE(4440), 1, - aux_sym_extends_type_clause_repeat1, + [151160] = 3, + ACTIONS(7918), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151266] = 4, - ACTIONS(7847), 1, + ACTIONS(3622), 3, anon_sym_COMMA, - STATE(4401), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [151173] = 4, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5161), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151188] = 4, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5461), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7911), 2, + ACTIONS(7923), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151281] = 5, - ACTIONS(99), 1, + [151203] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5375), 1, + sym_type_parameters, + STATE(5478), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151220] = 5, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7913), 1, + ACTIONS(7925), 1, anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, + STATE(1269), 1, aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151237] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5163), 1, + sym_type_parameters, + STATE(5577), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151254] = 4, + ACTIONS(7927), 1, + anon_sym_EQ, + STATE(5342), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151298] = 5, - ACTIONS(7178), 1, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [151269] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7915), 1, - anon_sym_QMARK, + ACTIONS(7929), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151315] = 4, - ACTIONS(7917), 1, - anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + [151286] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7931), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7920), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151330] = 5, - ACTIONS(6622), 1, + [151303] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7922), 1, - anon_sym_RBRACK, + ACTIONS(7933), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151347] = 4, - ACTIONS(7140), 1, - anon_sym_EQ, - STATE(5405), 1, - sym__initializer, + [151320] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7935), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151362] = 5, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(7926), 1, - anon_sym_EQ, - ACTIONS(7928), 1, + [151337] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7937), 1, anon_sym_RBRACK, - STATE(5000), 1, - aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151379] = 5, - ACTIONS(2570), 1, + [151354] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7939), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151371] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5337), 1, + STATE(5292), 1, sym_type_parameters, - STATE(5661), 1, + STATE(5472), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151396] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7930), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7871), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7932), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7934), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151430] = 4, - ACTIONS(6608), 1, - anon_sym_EQ, - STATE(5227), 1, - sym_default_type, + [151388] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5387), 1, + sym_type_parameters, + STATE(5653), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7937), 2, - anon_sym_COMMA, - anon_sym_GT, - [151445] = 5, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + [151405] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151462] = 4, - ACTIONS(7939), 1, + ACTIONS(6064), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [151416] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7941), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7421), 2, - anon_sym_LBRACE, - anon_sym_GT, - [151477] = 5, - ACTIONS(6622), 1, + [151433] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7942), 1, + ACTIONS(7943), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151494] = 5, + [151450] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7944), 1, + ACTIONS(7869), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7946), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151511] = 5, - ACTIONS(7949), 1, + [151467] = 5, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7951), 1, + ACTIONS(7883), 1, anon_sym_const, - ACTIONS(7953), 1, + ACTIONS(7945), 1, anon_sym_GT, - STATE(5280), 1, + STATE(5244), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151528] = 2, + [151484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7955), 4, + ACTIONS(7947), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [151539] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5229), 1, - sym_type_parameters, - STATE(5511), 1, - sym_formal_parameters, + [151495] = 4, + ACTIONS(7571), 1, + anon_sym_EQ, + STATE(5290), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151556] = 5, - ACTIONS(7957), 1, - anon_sym_LBRACE, - ACTIONS(7959), 1, + ACTIONS(7949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [151510] = 5, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(7962), 1, + ACTIONS(7365), 1, + anon_sym_LBRACE, + ACTIONS(7367), 1, anon_sym_LBRACE_PIPE, - STATE(4440), 1, + STATE(4401), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151573] = 5, - ACTIONS(6622), 1, + [151527] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(7099), 1, anon_sym_extends, - ACTIONS(7964), 1, - anon_sym_RBRACK, + ACTIONS(7951), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151590] = 5, - ACTIONS(2570), 1, + [151544] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5176), 1, + STATE(5167), 1, sym_type_parameters, - STATE(5534), 1, + STATE(5711), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151607] = 4, - ACTIONS(7847), 1, + [151561] = 4, + ACTIONS(7829), 1, anon_sym_COMMA, - STATE(4412), 1, + STATE(4515), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7966), 2, + ACTIONS(7953), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151622] = 4, - ACTIONS(7968), 1, - anon_sym_EQ, - STATE(5351), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, - [151637] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7970), 1, - anon_sym_RPAREN, + [151576] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4459), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151654] = 5, + ACTIONS(7955), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151591] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7930), 1, + ACTIONS(7957), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151671] = 5, - ACTIONS(7160), 1, - anon_sym_COMMA, - ACTIONS(7440), 1, - anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4421), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151688] = 3, - ACTIONS(7972), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3613), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [151701] = 5, + [151608] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7975), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - STATE(4457), 1, + STATE(4465), 1, aux_sym_string_repeat1, - ACTIONS(7977), 2, + ACTIONS(7959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151718] = 5, + [151625] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7961), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151642] = 4, + ACTIONS(7963), 1, + anon_sym_COMMA, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7966), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151657] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7975), 1, + ACTIONS(7895), 1, anon_sym_SQUOTE, - STATE(4458), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7979), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151735] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7981), 1, - anon_sym_RBRACK, + [151674] = 4, + ACTIONS(7968), 1, + anon_sym_COMMA, + STATE(4457), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151752] = 4, - ACTIONS(6608), 1, - anon_sym_EQ, - STATE(5276), 1, - sym_default_type, + ACTIONS(4852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151689] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7983), 2, + ACTIONS(7971), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151704] = 4, + ACTIONS(7829), 1, anon_sym_COMMA, - anon_sym_GT, - [151767] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7985), 1, - anon_sym_RBRACK, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7973), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151719] = 4, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5428), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151784] = 5, - ACTIONS(6622), 1, + ACTIONS(7975), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151734] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7987), 1, - anon_sym_COLON, + ACTIONS(7977), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151801] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5392), 1, - sym_type_parameters, - STATE(5542), 1, - sym_formal_parameters, + [151751] = 4, + ACTIONS(7905), 1, + anon_sym_COMMA, + STATE(4418), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151818] = 5, - ACTIONS(7949), 1, + ACTIONS(7979), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151766] = 5, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7951), 1, + ACTIONS(7883), 1, anon_sym_const, - ACTIONS(7989), 1, + ACTIONS(7981), 1, anon_sym_GT, - STATE(5280), 1, + STATE(5244), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151835] = 5, + [151783] = 4, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5203), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5041), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151798] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7991), 1, + ACTIONS(7983), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(7853), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151852] = 5, + [151815] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7991), 1, + ACTIONS(7983), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151869] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, + [151832] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7985), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151843] = 5, + ACTIONS(6375), 1, anon_sym_LPAREN, - STATE(5260), 1, - sym_type_parameters, - STATE(5554), 1, - sym_formal_parameters, + ACTIONS(6381), 1, + anon_sym_LT, + STATE(3224), 1, + sym_arguments, + STATE(3401), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151886] = 5, - ACTIONS(2570), 1, + ACTIONS(7987), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151871] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5178), 1, + STATE(5208), 1, sym_type_parameters, - STATE(5690), 1, + STATE(5491), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151903] = 4, - ACTIONS(7995), 1, - anon_sym_COMMA, - STATE(4482), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7993), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151918] = 5, + [151888] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7997), 1, + ACTIONS(7989), 1, anon_sym_DQUOTE, - STATE(4430), 1, + STATE(4402), 1, aux_sym_string_repeat1, - ACTIONS(7999), 2, + ACTIONS(7991), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151935] = 4, - ACTIONS(8001), 1, - anon_sym_COMMA, - STATE(4463), 1, - aux_sym_sequence_expression_repeat1, + [151905] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5210), 1, + sym_type_parameters, + STATE(5560), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4866), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151950] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4391), 1, - aux_sym_variable_declaration_repeat1, + [151922] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(7993), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8004), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151965] = 5, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, + [151939] = 5, + ACTIONS(2499), 1, anon_sym_LT, - STATE(3227), 1, - sym_arguments, - STATE(3394), 1, - sym_type_arguments, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5378), 1, + sym_type_parameters, + STATE(5632), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151956] = 5, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_const, + ACTIONS(7995), 1, + anon_sym_GT, + STATE(5244), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151982] = 5, + [151973] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8006), 1, + ACTIONS(7997), 1, anon_sym_DQUOTE, - STATE(4486), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(8008), 2, + ACTIONS(7853), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151999] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5409), 1, - sym_type_parameters, - STATE(5697), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152016] = 5, - ACTIONS(6622), 1, + [151990] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(8010), 1, + ACTIONS(7999), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152033] = 5, + [152007] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8006), 1, + ACTIONS(7997), 1, anon_sym_SQUOTE, - STATE(4491), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(8012), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152050] = 4, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5310), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152065] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(8014), 1, - anon_sym_COLON, + [152024] = 5, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(7877), 1, + anon_sym_EQ, + ACTIONS(8001), 1, + anon_sym_RBRACK, + STATE(4890), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152082] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(8016), 1, - anon_sym_QMARK, + [152041] = 4, + ACTIONS(8005), 1, + anon_sym_COMMA, + STATE(4480), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152099] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5417), 1, - sym_type_parameters, - STATE(5684), 1, - sym_formal_parameters, + ACTIONS(8003), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152056] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8008), 1, + anon_sym_export, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152116] = 5, + [152073] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7887), 1, - anon_sym_DQUOTE, - STATE(4492), 1, - aux_sym_string_repeat1, - ACTIONS(8018), 2, - sym_unescaped_double_string_fragment, + ACTIONS(7989), 1, + anon_sym_SQUOTE, + STATE(4443), 1, + aux_sym_string_repeat2, + ACTIONS(8010), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [152133] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(8020), 1, - anon_sym_RBRACK, + [152090] = 3, + ACTIONS(6104), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152150] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(8022), 1, - anon_sym_RBRACK, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [152103] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3576), 1, + sym_formal_parameters, + STATE(5246), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152167] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(8024), 1, - anon_sym_RBRACK, + [152120] = 5, + ACTIONS(8012), 1, + anon_sym_LBRACE, + ACTIONS(8014), 1, + anon_sym_COMMA, + ACTIONS(8017), 1, + anon_sym_LBRACE_PIPE, + STATE(4485), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152184] = 5, - ACTIONS(6622), 1, + [152137] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(8026), 1, - anon_sym_COLON, + ACTIONS(8019), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152201] = 4, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(4463), 1, - aux_sym_sequence_expression_repeat1, + [152154] = 3, + ACTIONS(8021), 1, + sym_escape_sequence, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152216] = 3, - ACTIONS(6366), 1, - anon_sym_DOT, + ACTIONS(8023), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152167] = 3, + ACTIONS(8026), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, - anon_sym_QMARK_DOT, anon_sym_LT, - [152229] = 5, - ACTIONS(6622), 1, + anon_sym_QMARK, + [152180] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(7099), 1, anon_sym_extends, ACTIONS(8028), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152246] = 4, - ACTIONS(7995), 1, - anon_sym_COMMA, - STATE(4502), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8030), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152261] = 5, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - ACTIONS(8032), 1, - anon_sym_GT, - STATE(5280), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152278] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8034), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152289] = 2, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6075), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152300] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8036), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7871), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152317] = 5, - ACTIONS(6622), 1, + [152197] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(8038), 1, - anon_sym_RBRACK, + ACTIONS(8030), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, - sym_comment, - [152334] = 5, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - ACTIONS(8040), 1, - anon_sym_GT, - STATE(5280), 1, - sym_type_parameter, + sym_comment, + [152214] = 4, + ACTIONS(7145), 1, + anon_sym_EQ, + STATE(5152), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152351] = 5, - ACTIONS(6622), 1, + ACTIONS(8032), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [152229] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(7099), 1, anon_sym_extends, - ACTIONS(8042), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152368] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5223), 1, - sym_type_parameters, - STATE(5614), 1, - sym_formal_parameters, + ACTIONS(8034), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152385] = 5, + [152246] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, ACTIONS(8036), 1, - anon_sym_SQUOTE, - STATE(4436), 1, - aux_sym_string_repeat2, - ACTIONS(7857), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152402] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7855), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4512), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(8038), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152419] = 5, + [152263] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8044), 1, + ACTIONS(8040), 1, anon_sym_DQUOTE, - STATE(4497), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(8046), 2, + ACTIONS(8042), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152436] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5225), 1, - sym_type_parameters, - STATE(5838), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152453] = 5, + [152280] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8044), 1, + ACTIONS(8045), 1, anon_sym_SQUOTE, - STATE(4498), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(8048), 2, + ACTIONS(8047), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152470] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3703), 1, - sym_formal_parameters, - STATE(5259), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152487] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8050), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7871), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152504] = 5, + [152297] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8050), 1, + ACTIONS(8036), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4381), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(8050), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152521] = 5, - ACTIONS(99), 1, - anon_sym_AT, + [152314] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(8052), 1, - anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152538] = 5, - ACTIONS(7178), 1, + [152331] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(6609), 1, anon_sym_extends, ACTIONS(8054), 1, - anon_sym_QMARK, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152348] = 4, + ACTIONS(6595), 1, + anon_sym_EQ, + STATE(5178), 1, + sym_default_type, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8056), 1, - anon_sym_DQUOTE, - STATE(4506), 1, - aux_sym_string_repeat1, - ACTIONS(8058), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152572] = 4, - ACTIONS(8062), 1, + sym_comment, + ACTIONS(8056), 2, anon_sym_COMMA, - STATE(4502), 1, - aux_sym_extends_clause_repeat1, + anon_sym_GT, + [152363] = 5, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(8058), 1, + anon_sym_LT, + STATE(1964), 1, + sym_arguments, + STATE(1965), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8060), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8056), 1, - anon_sym_SQUOTE, - STATE(4510), 1, - aux_sym_string_repeat2, - ACTIONS(8065), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152604] = 3, - ACTIONS(8067), 1, - sym_escape_sequence, + [152380] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5252), 1, + sym_type_parameters, + STATE(5769), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152617] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(8072), 1, - anon_sym_QMARK, + [152397] = 5, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(3086), 1, + sym_arguments, + STATE(3215), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152414] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5253), 1, + sym_type_parameters, + STATE(5552), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8074), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7871), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152651] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(8076), 1, - anon_sym_QMARK, + sym_comment, + [152431] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_type_parameters, + STATE(5647), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152668] = 5, - ACTIONS(8078), 1, - sym_identifier, - STATE(3856), 1, - sym_nested_type_identifier, - STATE(4447), 1, - sym_generic_type, - STATE(5633), 1, - sym_nested_identifier, + [152448] = 4, + ACTIONS(3814), 1, + anon_sym_COLON, + ACTIONS(4622), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152685] = 4, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5177), 1, - sym__from_clause, + ACTIONS(8060), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [152463] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5064), 2, + ACTIONS(8062), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8074), 1, - anon_sym_SQUOTE, - STATE(4436), 1, - aux_sym_string_repeat2, - ACTIONS(7857), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152717] = 5, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(7926), 1, - anon_sym_EQ, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4578), 1, - aux_sym_array_pattern_repeat1, + [152478] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5179), 1, + sym_type_parameters, + STATE(5547), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152734] = 5, - ACTIONS(2570), 1, + [152495] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5278), 1, + STATE(5459), 1, sym_type_parameters, - STATE(5699), 1, + STATE(5671), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152751] = 5, + [152512] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7997), 1, - anon_sym_SQUOTE, - STATE(4446), 1, - aux_sym_string_repeat2, - ACTIONS(8082), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8064), 1, + anon_sym_DQUOTE, + STATE(4513), 1, + aux_sym_string_repeat1, + ACTIONS(8066), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [152768] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5466), 1, - sym_type_parameters, - STATE(5659), 1, - sym_formal_parameters, + [152529] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(8068), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152785] = 4, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5249), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, + [152546] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152800] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5470), 1, - sym_type_parameters, - STATE(5683), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8064), 1, + anon_sym_SQUOTE, + STATE(4452), 1, + aux_sym_string_repeat2, + ACTIONS(8070), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152563] = 5, + ACTIONS(3), 1, sym_comment, - [152817] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4392), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(7823), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152580] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8086), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152832] = 5, - ACTIONS(7178), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7957), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152597] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(8088), 1, - anon_sym_QMARK, + ACTIONS(8072), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152849] = 5, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + [152614] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152866] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(8090), 1, - anon_sym_LT, - STATE(1580), 1, - sym_arguments, - STATE(1587), 1, - sym_type_arguments, + ACTIONS(8074), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152629] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152883] = 5, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(8092), 1, - anon_sym_QMARK, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152900] = 4, - ACTIONS(7603), 1, - anon_sym_EQ, - STATE(5309), 1, - sym__initializer, + ACTIONS(8078), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8094), 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [152915] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - ACTIONS(8096), 1, - anon_sym_LPAREN, - STATE(786), 1, - sym_statement_block, + anon_sym_SEMI, + [152659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152929] = 4, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - STATE(4720), 1, - sym_type_parameter, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152943] = 4, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(8098), 1, - anon_sym_EQ, - STATE(5632), 1, - sym_type_parameters, + ACTIONS(8082), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152957] = 4, - ACTIONS(5278), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8100), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [152689] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152971] = 4, - ACTIONS(8102), 1, + ACTIONS(8084), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8104), 1, - anon_sym_RBRACK, - STATE(4644), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [152699] = 3, + ACTIONS(8086), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152985] = 4, - ACTIONS(5080), 1, + ACTIONS(8088), 2, anon_sym_COMMA, - ACTIONS(8106), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + anon_sym_from, + [152711] = 4, + ACTIONS(8090), 1, + sym_identifier, + ACTIONS(8092), 1, + anon_sym_LBRACK, + ACTIONS(8094), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152999] = 4, - ACTIONS(5011), 1, - anon_sym_extends, - ACTIONS(8108), 1, - anon_sym_AMP, - ACTIONS(8110), 1, - anon_sym_PIPE, + [152725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153013] = 2, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8112), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153023] = 2, + [152745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153033] = 2, + [152755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153043] = 2, + [152765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8118), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153053] = 3, - ACTIONS(7926), 1, - anon_sym_EQ, + [152775] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8120), 2, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [153065] = 4, - ACTIONS(4031), 1, + anon_sym_SEMI, + [152785] = 4, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(8122), 1, + ACTIONS(8100), 1, anon_sym_DOT, - STATE(1581), 1, + STATE(1529), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153079] = 3, - ACTIONS(8124), 1, - sym_identifier, + [152799] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8126), 2, + ACTIONS(8080), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [153091] = 4, - ACTIONS(3234), 1, - anon_sym_GT, - ACTIONS(8128), 1, + [152809] = 4, + ACTIONS(8102), 1, + sym_identifier, + ACTIONS(8104), 1, + anon_sym_LBRACK, + ACTIONS(8106), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152823] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [152833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153105] = 2, + ACTIONS(8084), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8112), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153115] = 4, - ACTIONS(8130), 1, + [152853] = 4, + ACTIONS(8110), 1, sym_identifier, - ACTIONS(8132), 1, + ACTIONS(8112), 1, anon_sym_LBRACK, - ACTIONS(8134), 1, + ACTIONS(8114), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153129] = 2, + [152867] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153139] = 4, - ACTIONS(7989), 1, - anon_sym_GT, - ACTIONS(8138), 1, - anon_sym_COMMA, - STATE(4685), 1, - aux_sym_type_parameters_repeat1, + [152877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153153] = 4, - ACTIONS(8140), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8142), 1, + anon_sym_SEMI, + [152887] = 4, + ACTIONS(8116), 1, + anon_sym_COMMA, + ACTIONS(8118), 1, anon_sym_RBRACK, - STATE(4556), 1, + STATE(4552), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153167] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8144), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153177] = 4, - ACTIONS(4216), 1, + [152901] = 4, + ACTIONS(4210), 1, anon_sym_extends, - ACTIONS(8146), 1, + ACTIONS(8120), 1, anon_sym_AMP, - ACTIONS(8148), 1, + ACTIONS(8122), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153191] = 4, - ACTIONS(3254), 1, + [152915] = 4, + ACTIONS(3215), 1, anon_sym_GT, - ACTIONS(8150), 1, + ACTIONS(8124), 1, anon_sym_COMMA, - STATE(4434), 1, + STATE(4423), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153205] = 4, - ACTIONS(4866), 1, - anon_sym_RPAREN, - ACTIONS(8152), 1, - anon_sym_COMMA, - STATE(4546), 1, - aux_sym_sequence_expression_repeat1, + [152929] = 4, + ACTIONS(8126), 1, + sym_identifier, + ACTIONS(8128), 1, + anon_sym_LBRACK, + ACTIONS(8130), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153219] = 4, - ACTIONS(1976), 1, + [152943] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5427), 1, + ACTIONS(5368), 1, anon_sym_RPAREN, - STATE(4557), 1, + STATE(4554), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153233] = 4, - ACTIONS(1976), 1, + [152957] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5427), 1, + ACTIONS(5368), 1, anon_sym_RPAREN, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153247] = 2, + [152971] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 3, + ACTIONS(8082), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [153257] = 4, - ACTIONS(8155), 1, - sym_identifier, - ACTIONS(8157), 1, - anon_sym_LBRACK, - ACTIONS(8159), 1, - sym_private_property_identifier, + anon_sym_SEMI, + [152981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153271] = 4, - ACTIONS(8161), 1, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8163), 1, - anon_sym_RPAREN, - STATE(4894), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153285] = 2, + anon_sym_SEMI, + [152991] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153295] = 3, - ACTIONS(7926), 1, - anon_sym_EQ, + [153001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8165), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [153307] = 4, - ACTIONS(1976), 1, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153321] = 2, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153331] = 4, - ACTIONS(2990), 1, + [153031] = 4, + ACTIONS(2941), 1, anon_sym_RBRACK, - ACTIONS(8167), 1, + ACTIONS(8134), 1, anon_sym_COMMA, - STATE(4939), 1, + STATE(4949), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153345] = 4, - ACTIONS(1976), 1, + [153045] = 4, + ACTIONS(8136), 1, + sym_identifier, + ACTIONS(8138), 1, + anon_sym_LBRACK, + ACTIONS(8140), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153059] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8169), 1, + ACTIONS(8142), 1, anon_sym_RPAREN, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153359] = 4, - ACTIONS(8171), 1, - sym_identifier, - ACTIONS(8173), 1, - anon_sym_LBRACK, - ACTIONS(8175), 1, - sym_private_property_identifier, + [153073] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8144), 1, + anon_sym_RBRACE, + STATE(4959), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153373] = 2, + [153087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153383] = 2, + [153097] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153393] = 2, + [153107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153403] = 4, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - STATE(4126), 1, - sym_object_type, + [153117] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153417] = 4, - ACTIONS(1976), 1, + ACTIONS(8082), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(4676), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153431] = 4, - ACTIONS(1976), 1, + ACTIONS(8076), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153445] = 2, + ACTIONS(7707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153147] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153455] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(8179), 1, - anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_repeat1, + [153157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153469] = 4, - ACTIONS(5080), 1, + ACTIONS(8146), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8181), 1, - anon_sym_RBRACE, - STATE(4961), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [153167] = 3, + ACTIONS(7067), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153483] = 2, + ACTIONS(8148), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153493] = 2, + [153189] = 3, + ACTIONS(7069), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8148), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153503] = 2, + [153201] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153513] = 4, - ACTIONS(1976), 1, + [153211] = 4, + ACTIONS(8152), 1, anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(4705), 1, - aux_sym_array_repeat1, + ACTIONS(8154), 1, + anon_sym_RBRACK, + STATE(4649), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153527] = 2, + [153225] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153537] = 2, + [153235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153547] = 2, + [153245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153557] = 2, + [153255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8112), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153567] = 2, + [153265] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153577] = 4, - ACTIONS(8187), 1, - sym_identifier, - ACTIONS(8189), 1, - anon_sym_LBRACK, - ACTIONS(8191), 1, - sym_private_property_identifier, + [153275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153591] = 4, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(8193), 1, - anon_sym_RBRACK, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153605] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153619] = 4, - ACTIONS(5692), 1, - anon_sym_RBRACK, - ACTIONS(8195), 1, + ACTIONS(8150), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4580), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153633] = 2, + anon_sym_SEMI, + [153285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153643] = 2, + [153295] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8156), 1, + anon_sym_RBRACE, + STATE(4965), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153653] = 2, + [153309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153663] = 4, - ACTIONS(6390), 1, + [153319] = 4, + ACTIONS(6375), 1, anon_sym_LPAREN, - ACTIONS(8200), 1, + ACTIONS(8158), 1, anon_sym_DOT, - STATE(3300), 1, + STATE(3317), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153677] = 2, + [153333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153687] = 2, + [153343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153697] = 4, - ACTIONS(8202), 1, - anon_sym_COMMA, - ACTIONS(8204), 1, - anon_sym_RPAREN, - STATE(4964), 1, - aux_sym_formal_parameters_repeat1, + [153353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153711] = 3, - ACTIONS(7785), 1, - anon_sym_EQ, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3699), 2, - anon_sym_in, - anon_sym_of, - [153723] = 2, + ACTIONS(8082), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153733] = 2, + [153383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153743] = 2, + [153393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153753] = 4, - ACTIONS(8206), 1, + [153403] = 4, + ACTIONS(8160), 1, anon_sym_COMMA, - ACTIONS(8208), 1, + ACTIONS(8162), 1, anon_sym_RBRACK, - STATE(4606), 1, + STATE(4599), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153767] = 4, - ACTIONS(6824), 1, + [153417] = 4, + ACTIONS(6819), 1, anon_sym_AMP, - ACTIONS(6826), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6828), 1, + ACTIONS(6823), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153781] = 4, - ACTIONS(3252), 1, + [153431] = 4, + ACTIONS(3201), 1, anon_sym_GT, - ACTIONS(8210), 1, + ACTIONS(8164), 1, anon_sym_COMMA, - STATE(4434), 1, + STATE(4423), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153795] = 4, - ACTIONS(1976), 1, + [153445] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153455] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5429), 1, + ACTIONS(5374), 1, anon_sym_RPAREN, - STATE(4607), 1, + STATE(4602), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153809] = 4, - ACTIONS(1976), 1, + [153469] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5429), 1, + ACTIONS(5374), 1, anon_sym_RPAREN, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153823] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8212), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153833] = 2, + [153483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153843] = 2, + [153493] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153853] = 4, - ACTIONS(8214), 1, + [153503] = 4, + ACTIONS(8166), 1, sym_identifier, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(8218), 1, + ACTIONS(8170), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153867] = 4, - ACTIONS(8220), 1, + [153517] = 4, + ACTIONS(8172), 1, sym_identifier, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_LBRACK, - ACTIONS(8224), 1, + ACTIONS(8176), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153881] = 4, - ACTIONS(8226), 1, + [153531] = 4, + ACTIONS(8178), 1, sym_identifier, - ACTIONS(8228), 1, + ACTIONS(8180), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8182), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153895] = 4, - ACTIONS(8232), 1, + [153545] = 4, + ACTIONS(8184), 1, sym_identifier, - ACTIONS(8234), 1, + ACTIONS(8186), 1, anon_sym_LBRACK, - ACTIONS(8236), 1, + ACTIONS(8188), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153909] = 2, + [153559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153919] = 4, - ACTIONS(8238), 1, - sym_identifier, - ACTIONS(8240), 1, - anon_sym_LBRACK, - ACTIONS(8242), 1, - sym_private_property_identifier, + [153569] = 4, + ACTIONS(2577), 1, + anon_sym_RBRACK, + ACTIONS(8190), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153933] = 4, - ACTIONS(2978), 1, - anon_sym_RBRACK, - ACTIONS(8244), 1, + [153583] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8192), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4939), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [153593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153947] = 4, - ACTIONS(1976), 1, + ACTIONS(7966), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8246), 1, + anon_sym_SEMI, + [153603] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(8194), 1, anon_sym_RPAREN, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153961] = 2, + [153617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153971] = 4, - ACTIONS(8165), 1, - anon_sym_RBRACK, - ACTIONS(8248), 1, - anon_sym_COMMA, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, + [153627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153985] = 3, - ACTIONS(7042), 1, - anon_sym_DOT, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153637] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8080), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [153997] = 3, - ACTIONS(7058), 1, - anon_sym_DOT, + [153647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8192), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [154009] = 3, - ACTIONS(7587), 1, - anon_sym_LBRACE, + [153657] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7589), 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [154021] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + anon_sym_SEMI, + [153667] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8253), 1, - sym__glimmer_template_content, - ACTIONS(8256), 1, - sym_glimmer_closing_tag, - STATE(4613), 1, - aux_sym_glimmer_template_repeat1, - [154037] = 2, + sym_comment, + ACTIONS(8082), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154047] = 4, - ACTIONS(1909), 1, + [153687] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [153697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154061] = 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153707] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154071] = 4, - ACTIONS(1909), 1, + [153717] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7928), 1, - anon_sym_RBRACK, - STATE(5000), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [153727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154085] = 2, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154095] = 2, + [153747] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8258), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154105] = 2, + [153757] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154115] = 2, + [153767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8260), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154125] = 4, - ACTIONS(5222), 1, + [153777] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5308), 1, + anon_sym_SEMI, + [153787] = 4, + ACTIONS(2735), 1, anon_sym_RBRACK, - STATE(4994), 1, - aux_sym_array_repeat1, + ACTIONS(8196), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153801] = 4, + ACTIONS(8198), 1, + anon_sym_COMMA, + ACTIONS(8200), 1, + anon_sym_RPAREN, + STATE(5014), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153815] = 4, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154139] = 2, + [153829] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154149] = 2, + [153839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8260), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154159] = 2, + [153849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8262), 3, + ACTIONS(8202), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154169] = 2, + [153859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8264), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154179] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_repeat1, + [153869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154193] = 2, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154203] = 4, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(7928), 1, - anon_sym_RBRACK, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, + [153889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154217] = 2, + ACTIONS(7089), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [153899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154227] = 2, + [153909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8266), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154237] = 5, - ACTIONS(3), 1, + [153919] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(8132), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153929] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8268), 1, - sym__glimmer_template_content, - ACTIONS(8270), 1, - sym_glimmer_closing_tag, - STATE(4613), 1, - aux_sym_glimmer_template_repeat1, - [154253] = 2, + sym_comment, + ACTIONS(8084), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154263] = 2, + [153949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154273] = 4, - ACTIONS(3242), 1, + [153959] = 4, + ACTIONS(3231), 1, anon_sym_GT, - ACTIONS(8272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - STATE(4434), 1, + STATE(4423), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154287] = 2, + [153973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8264), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154297] = 4, - ACTIONS(1976), 1, + [153983] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5431), 1, + ACTIONS(5380), 1, anon_sym_RPAREN, - STATE(4640), 1, + STATE(4644), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154311] = 4, - ACTIONS(1976), 1, + [153997] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5431), 1, + ACTIONS(5380), 1, anon_sym_RPAREN, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154325] = 3, - ACTIONS(8274), 1, - anon_sym_EQ, + [154011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8276), 2, - anon_sym_COMMA, - anon_sym_from, - [154337] = 4, - ACTIONS(1976), 1, + ACTIONS(8082), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8278), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [154021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154351] = 2, + ACTIONS(8206), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 3, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154041] = 4, + ACTIONS(1034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1610), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [154361] = 2, + STATE(4034), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, - sym__automatic_semicolon, + [154055] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154371] = 2, + ACTIONS(8208), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154381] = 4, - ACTIONS(2986), 1, - anon_sym_RBRACK, - ACTIONS(8282), 1, + [154079] = 4, + ACTIONS(8210), 1, anon_sym_COMMA, - STATE(4939), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8212), 1, + anon_sym_RBRACE, + STATE(4716), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154395] = 4, - ACTIONS(4879), 1, + [154093] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(7289), 1, + ACTIONS(8214), 1, anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_sequence_expression_repeat1, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154409] = 2, + [154107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154419] = 2, + [154117] = 4, + ACTIONS(2665), 1, + anon_sym_RBRACK, + ACTIONS(8216), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154131] = 4, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(8218), 1, + anon_sym_DOT, + STATE(2048), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154145] = 3, + ACTIONS(8220), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(7679), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [154157] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154429] = 4, - ACTIONS(1976), 1, + [154167] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5433), 1, + ACTIONS(5382), 1, anon_sym_RPAREN, - STATE(4651), 1, + STATE(4656), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154443] = 4, - ACTIONS(1976), 1, + [154181] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5433), 1, + ACTIONS(5382), 1, anon_sym_RPAREN, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154457] = 2, + [154195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8286), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154467] = 4, - ACTIONS(1976), 1, + [154205] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8288), 1, + ACTIONS(8222), 1, anon_sym_RPAREN, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154481] = 2, + [154219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8290), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154491] = 4, - ACTIONS(2988), 1, - anon_sym_RBRACK, - ACTIONS(8292), 1, - anon_sym_COMMA, - STATE(4939), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154505] = 3, - ACTIONS(8294), 1, - anon_sym_as, + [154229] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8296), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [154517] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8298), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [154527] = 2, + [154239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154537] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8300), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154551] = 2, + [154249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154561] = 2, + [154259] = 4, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + STATE(4469), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8302), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154571] = 2, + [154273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154581] = 4, - ACTIONS(8304), 1, + [154283] = 4, + ACTIONS(8224), 1, anon_sym_LPAREN, - ACTIONS(8306), 1, + ACTIONS(8226), 1, anon_sym_await, - STATE(34), 1, + STATE(36), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154595] = 2, + [154297] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154605] = 2, + [154307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154615] = 2, + [154317] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154625] = 2, + [154327] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154635] = 4, - ACTIONS(6908), 1, - anon_sym_RBRACE, - ACTIONS(8314), 1, + [154337] = 4, + ACTIONS(8228), 1, anon_sym_COMMA, - STATE(4750), 1, - aux_sym_export_clause_repeat1, + ACTIONS(8230), 1, + anon_sym_GT, + STATE(5038), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154649] = 4, - ACTIONS(7839), 1, + [154351] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8232), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154361] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8206), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154371] = 4, + ACTIONS(7921), 1, anon_sym_from, - ACTIONS(8316), 1, + ACTIONS(8234), 1, anon_sym_as, - STATE(5198), 1, + STATE(5371), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154663] = 4, - ACTIONS(2292), 1, + [154385] = 4, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(8318), 1, + ACTIONS(8236), 1, sym_identifier, - STATE(4470), 1, + STATE(4426), 1, sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154677] = 2, + [154399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154687] = 4, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - STATE(4201), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154701] = 2, + [154409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154711] = 2, + [154419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154721] = 4, - ACTIONS(8320), 1, - anon_sym_COMMA, - ACTIONS(8322), 1, - anon_sym_RBRACE, - STATE(4730), 1, - aux_sym_enum_body_repeat1, + [154429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154735] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8324), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154745] = 3, - ACTIONS(8326), 1, - anon_sym_LBRACE, + [154439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [154757] = 4, - ACTIONS(1976), 1, + ACTIONS(8192), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8328), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [154449] = 4, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_const, + STATE(4668), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154771] = 3, - ACTIONS(8330), 1, - anon_sym_as, + [154463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [154783] = 2, + anon_sym_SEMI, + [154473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154793] = 4, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - STATE(4778), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154807] = 4, - ACTIONS(6062), 1, + [154483] = 4, + ACTIONS(6066), 1, anon_sym_LPAREN, - ACTIONS(8332), 1, + ACTIONS(8238), 1, anon_sym_DOT, - STATE(2940), 1, + STATE(2936), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154821] = 2, + [154497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154831] = 2, + [154507] = 3, + ACTIONS(7673), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, - sym__automatic_semicolon, + ACTIONS(7675), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154841] = 4, - ACTIONS(8334), 1, - sym_identifier, - STATE(3887), 1, - sym_decorator_member_expression, - STATE(5691), 1, - sym_decorator_call_expression, + anon_sym_LBRACE_PIPE, + [154519] = 4, + ACTIONS(8240), 1, + anon_sym_COMMA, + ACTIONS(8243), 1, + anon_sym_GT, + STATE(4684), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154855] = 2, + [154533] = 4, + ACTIONS(8245), 1, + sym_identifier, + STATE(3826), 1, + sym_decorator_member_expression, + STATE(5817), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154865] = 4, - ACTIONS(8336), 1, - anon_sym_COMMA, - ACTIONS(8339), 1, - anon_sym_GT, - STATE(4685), 1, - aux_sym_type_parameters_repeat1, + [154547] = 4, + ACTIONS(7921), 1, + anon_sym_from, + ACTIONS(8234), 1, + anon_sym_as, + STATE(5197), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154879] = 2, + [154561] = 4, + ACTIONS(8247), 1, + anon_sym_LPAREN, + ACTIONS(8249), 1, + anon_sym_await, + STATE(71), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [154889] = 4, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - STATE(4415), 1, - sym_string, + [154575] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154903] = 2, + [154589] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154913] = 2, + [154599] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154923] = 2, + [154609] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154933] = 2, + [154619] = 4, + ACTIONS(8251), 1, + anon_sym_COMMA, + ACTIONS(8253), 1, + anon_sym_RBRACE, + STATE(4966), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, - sym__automatic_semicolon, + [154633] = 4, + ACTIONS(3229), 1, + anon_sym_GT, + ACTIONS(8255), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154943] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - STATE(873), 1, - sym_object_type, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154957] = 2, + [154647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154967] = 2, + [154657] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154977] = 4, - ACTIONS(8341), 1, - anon_sym_COMMA, - ACTIONS(8344), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(6335), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [154667] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154991] = 4, - ACTIONS(2512), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154677] = 4, + ACTIONS(2511), 1, anon_sym_while, - ACTIONS(8346), 1, + ACTIONS(8257), 1, anon_sym_else, - STATE(856), 1, + STATE(854), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155005] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7920), 3, - sym__automatic_semicolon, + [154691] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155015] = 2, + ACTIONS(8259), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155025] = 2, + [154705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155035] = 4, - ACTIONS(5692), 1, + [154715] = 4, + ACTIONS(5718), 1, anon_sym_RPAREN, - ACTIONS(8348), 1, + ACTIONS(8261), 1, anon_sym_COMMA, STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155049] = 2, + [154729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155059] = 2, + [154739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155069] = 4, - ACTIONS(8353), 1, + [154749] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8355), 1, - anon_sym_RBRACE, - STATE(4956), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [154759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155083] = 4, - ACTIONS(5278), 1, + ACTIONS(8108), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8300), 1, - anon_sym_RBRACE, - STATE(4965), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [154769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155097] = 4, - ACTIONS(1976), 1, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [154779] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155111] = 2, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155121] = 4, - ACTIONS(7318), 1, + [154799] = 4, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(7260), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155135] = 2, + [154813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155145] = 2, + [154823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155155] = 2, + [154833] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8264), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [154843] = 4, + ACTIONS(8266), 1, + anon_sym_COMMA, + ACTIONS(8268), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154857] = 4, + ACTIONS(7995), 1, + anon_sym_GT, + ACTIONS(8270), 1, + anon_sym_COMMA, + STATE(4684), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154871] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8272), 1, + anon_sym_RBRACE, + STATE(4806), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155165] = 2, + [154895] = 4, + ACTIONS(8274), 1, + anon_sym_COMMA, + ACTIONS(8276), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155175] = 2, + [154919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155185] = 2, + [154929] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155195] = 2, + [154939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155205] = 2, + [154949] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8278), 1, + anon_sym_RBRACE, + STATE(4812), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155215] = 2, + [154973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155225] = 2, + [154983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155235] = 2, + [154993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155245] = 2, + [155003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155255] = 4, - ACTIONS(8361), 1, - anon_sym_COMMA, - ACTIONS(8363), 1, - anon_sym_GT, - STATE(5091), 1, - aux_sym_type_parameters_repeat1, + [155013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155269] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8324), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155279] = 2, + [155023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155289] = 2, + [155033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155299] = 4, - ACTIONS(8365), 1, - anon_sym_LPAREN, - ACTIONS(8367), 1, - anon_sym_await, - STATE(36), 1, - sym__for_header, + [155043] = 4, + ACTIONS(8280), 1, + anon_sym_COMMA, + ACTIONS(8282), 1, + anon_sym_RBRACE, + STATE(4887), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155313] = 2, + [155057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155323] = 2, + [155067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155333] = 2, + [155077] = 4, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, + anon_sym_LBRACK, + ACTIONS(8288), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, - sym__automatic_semicolon, + [155091] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155343] = 4, - ACTIONS(8369), 1, - anon_sym_COMMA, - ACTIONS(8371), 1, + ACTIONS(8278), 1, anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_enum_body_repeat1, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155357] = 2, + [155105] = 3, + ACTIONS(8290), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, - sym__automatic_semicolon, + ACTIONS(8292), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155367] = 4, - ACTIONS(8373), 1, + anon_sym_RBRACE, + [155117] = 4, + ACTIONS(5060), 1, anon_sym_COMMA, - ACTIONS(8375), 1, + ACTIONS(8272), 1, anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_enum_body_repeat1, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155381] = 2, + [155131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155391] = 2, + [155141] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155401] = 2, + [155151] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155411] = 2, + [155161] = 4, + ACTIONS(8294), 1, + sym_identifier, + STATE(3842), 1, + sym_decorator_member_expression, + STATE(5812), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155421] = 2, + [155175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8296), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155431] = 2, + [155185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8298), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [155441] = 2, + [155195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155451] = 2, + [155205] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8156), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + [155219] = 4, + ACTIONS(5060), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155461] = 2, + ACTIONS(8144), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, + [155233] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155471] = 2, + ACTIONS(8303), 1, + anon_sym_RBRACE, + STATE(4746), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155481] = 2, + [155247] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8377), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [155491] = 2, + [155257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8305), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155501] = 2, + [155267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8307), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155511] = 2, + [155277] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8309), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155521] = 2, + [155287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155531] = 2, + [155297] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155541] = 2, + [155307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155551] = 2, + [155317] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155561] = 2, + [155327] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155571] = 4, - ACTIONS(8379), 1, - anon_sym_COMMA, - ACTIONS(8382), 1, - anon_sym_RBRACE, - STATE(4750), 1, - aux_sym_export_clause_repeat1, + [155337] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155585] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8384), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155595] = 2, + [155347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155605] = 2, + [155357] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155615] = 2, + [155367] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155625] = 2, + [155377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155635] = 2, + [155387] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155645] = 2, + [155397] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155655] = 4, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(8386), 1, - anon_sym_LBRACE, - STATE(5624), 1, - sym_implements_clause, + [155407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155669] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8310), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155679] = 2, + [155417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155689] = 2, + [155427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155699] = 2, + [155437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155709] = 2, + [155447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155719] = 2, + [155457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155729] = 2, + [155467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6075), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155739] = 2, + [155477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8390), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [155749] = 4, - ACTIONS(8392), 1, anon_sym_COMMA, - ACTIONS(8394), 1, - anon_sym_RBRACE, - STATE(4666), 1, - aux_sym_export_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155763] = 2, + anon_sym_SEMI, + [155487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155773] = 3, - ACTIONS(8396), 1, - anon_sym_as, + [155497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 2, + ACTIONS(8084), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [155785] = 2, + anon_sym_SEMI, + [155507] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155795] = 3, - ACTIONS(8400), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7787), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [155807] = 4, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(8402), 1, - anon_sym_DOT, - STATE(2046), 1, - sym_arguments, + [155517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155821] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8324), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155831] = 2, + [155527] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8404), 3, + ACTIONS(8317), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155841] = 3, - ACTIONS(8406), 1, - anon_sym_as, + [155537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6578), 2, + ACTIONS(8319), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [155853] = 2, + anon_sym_SEMI, + [155547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155863] = 2, + [155557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155873] = 4, - ACTIONS(8410), 1, - anon_sym_COMMA, - ACTIONS(8412), 1, - anon_sym_GT, - STATE(4541), 1, - aux_sym_type_parameters_repeat1, + [155567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155887] = 4, - ACTIONS(6576), 1, - anon_sym_type, - ACTIONS(8414), 1, - sym_identifier, - STATE(5139), 1, - sym__import_identifier, + ACTIONS(8313), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155577] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155901] = 2, + [155591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155911] = 4, - ACTIONS(7839), 1, - anon_sym_from, - ACTIONS(8316), 1, - anon_sym_as, - STATE(5288), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155925] = 2, + [155601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, + ACTIONS(8321), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155935] = 4, - ACTIONS(6576), 1, + [155611] = 4, + ACTIONS(6473), 1, anon_sym_type, - ACTIONS(8416), 1, + ACTIONS(8323), 1, sym_identifier, - STATE(5339), 1, + STATE(5329), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155949] = 4, - ACTIONS(6576), 1, + [155625] = 4, + ACTIONS(6473), 1, anon_sym_type, - ACTIONS(8418), 1, + ACTIONS(8325), 1, sym_identifier, - STATE(5340), 1, + STATE(5330), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155963] = 2, + [155639] = 4, + ACTIONS(8327), 1, + anon_sym_COMMA, + ACTIONS(8330), 1, + anon_sym_RBRACE, + STATE(4785), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155973] = 2, + [155663] = 4, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + STATE(5545), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155983] = 4, - ACTIONS(8420), 1, + [155687] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_RBRACE, - STATE(4787), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155997] = 4, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(8332), 1, - anon_sym_DOT, - STATE(2940), 1, - sym_arguments, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4698), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156011] = 4, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - STATE(5562), 1, - sym_string, + [155701] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156025] = 2, + [155715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156035] = 2, + [155725] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8332), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156045] = 2, + [155749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156055] = 2, + [155759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156065] = 2, + [155769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156075] = 2, + [155779] = 4, + ACTIONS(2139), 1, + anon_sym_LBRACE, + ACTIONS(8334), 1, + sym_identifier, + STATE(4464), 1, + sym_export_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8321), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156085] = 2, + [155803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156095] = 2, + [155813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156105] = 2, + [155823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156115] = 2, + [155833] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8336), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8425), 3, + [155847] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156125] = 2, + [155857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156135] = 2, + [155867] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156145] = 2, + [155877] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8338), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + [155891] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156155] = 4, - ACTIONS(6670), 1, + [155901] = 4, + ACTIONS(6680), 1, anon_sym_LPAREN, - ACTIONS(8332), 1, + ACTIONS(8238), 1, anon_sym_DOT, - STATE(2940), 1, + STATE(2936), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156169] = 2, + [155915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156179] = 2, + [155925] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8340), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156189] = 2, + [155939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156199] = 4, - ACTIONS(8427), 1, + [155949] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - ACTIONS(8430), 1, + ACTIONS(8342), 1, anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_enum_body_repeat1, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156213] = 3, - ACTIONS(8432), 1, + [155963] = 3, + ACTIONS(8344), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6778), 2, anon_sym_in, anon_sym_of, - [156225] = 2, + [155975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7242), 3, + ACTIONS(7105), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [156235] = 2, + [155985] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8346), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156245] = 2, + [155999] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8108), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156009] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8313), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156019] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8315), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156029] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8311), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156039] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156255] = 2, + [156049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156265] = 2, + [156059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156275] = 2, + [156069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156285] = 2, + [156079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156295] = 2, + [156089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156305] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8268), 1, - sym__glimmer_template_content, - ACTIONS(8434), 1, - sym_glimmer_closing_tag, - STATE(4613), 1, - aux_sym_glimmer_template_repeat1, - [156321] = 2, + [156099] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156331] = 2, + [156109] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156341] = 4, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(8436), 1, - anon_sym_RPAREN, - STATE(5606), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156355] = 2, + [156119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156365] = 4, - ACTIONS(8438), 1, - sym_identifier, - ACTIONS(8440), 1, - anon_sym_LBRACK, - ACTIONS(8442), 1, - sym_private_property_identifier, + [156129] = 4, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(8348), 1, + anon_sym_RPAREN, + STATE(5588), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156379] = 2, + [156143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156389] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8444), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156403] = 4, - ACTIONS(6576), 1, - anon_sym_type, - ACTIONS(8446), 1, - sym_identifier, - STATE(5140), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156417] = 2, + [156153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156427] = 2, + [156163] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156437] = 2, + [156173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156447] = 2, + [156183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156457] = 2, + [156193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156467] = 2, + [156203] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156477] = 2, + [156213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156487] = 2, + [156223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156497] = 3, - ACTIONS(8450), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8452), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [156509] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8454), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156523] = 2, + [156233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156533] = 2, + [156243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156543] = 2, + [156253] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156553] = 2, + [156263] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156563] = 2, + [156273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156573] = 2, + [156283] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156583] = 2, + [156293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156593] = 2, + [156303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156603] = 2, + [156313] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156613] = 4, - ACTIONS(6753), 1, - anon_sym_RBRACE, - ACTIONS(8458), 1, - anon_sym_COMMA, - STATE(4787), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156627] = 2, + [156323] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8460), 3, + ACTIONS(8350), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156637] = 2, + [156333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 3, + ACTIONS(8352), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156647] = 2, + [156343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156657] = 2, + [156353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8462), 3, + ACTIONS(8317), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156667] = 2, + [156363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156677] = 2, + [156373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156687] = 2, + [156383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8462), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156697] = 2, + [156393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8464), 3, + ACTIONS(8352), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156707] = 2, + [156403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156717] = 2, + [156413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156727] = 2, + [156423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156737] = 2, + [156433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8354), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156747] = 2, + [156443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8352), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156757] = 2, + [156453] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156767] = 2, + [156463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156777] = 2, + [156473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8356), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156787] = 2, + [156483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156797] = 2, + [156493] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156807] = 2, + [156503] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8356), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156817] = 2, + [156513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8358), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156827] = 2, + [156523] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156837] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8177), 3, - sym__automatic_semicolon, + [156533] = 4, + ACTIONS(1688), 1, + anon_sym_RPAREN, + ACTIONS(8360), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156847] = 2, + STATE(4896), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156857] = 2, + [156547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156867] = 2, + [156557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156877] = 2, + [156567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156887] = 2, + [156577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156897] = 2, + [156587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156907] = 2, + [156597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156917] = 2, + [156607] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156927] = 2, + [156617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8468), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156937] = 2, + [156627] = 4, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(8238), 1, + anon_sym_DOT, + STATE(2936), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156947] = 4, - ACTIONS(5080), 1, + [156641] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(8181), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8470), 1, - sym__glimmer_template_content, - ACTIONS(8472), 1, - sym_glimmer_closing_tag, - STATE(4817), 1, - aux_sym_glimmer_template_repeat1, - [156977] = 2, + ACTIONS(8362), 1, + anon_sym_RBRACK, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8474), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156987] = 2, + [156655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8364), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156997] = 2, + [156665] = 3, + ACTIONS(8366), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(8368), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157007] = 2, + anon_sym_RBRACE, + [156677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157017] = 2, + [156687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157027] = 3, - ACTIONS(7042), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8476), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [157039] = 2, + [156697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157049] = 2, + [156707] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157059] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8478), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [157069] = 2, + [156717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157079] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8384), 3, - sym__automatic_semicolon, + [156727] = 4, + ACTIONS(6787), 1, + anon_sym_RBRACE, + ACTIONS(8372), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157089] = 2, + STATE(4746), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157099] = 2, + [156741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157109] = 2, + [156751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157119] = 4, - ACTIONS(1679), 1, - anon_sym_RPAREN, - ACTIONS(8480), 1, + [156761] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157133] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8183), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157143] = 2, + ACTIONS(8374), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157153] = 4, - ACTIONS(7486), 1, - anon_sym_COMMA, - ACTIONS(8482), 1, + [156775] = 3, + ACTIONS(8376), 1, anon_sym_LBRACE, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157167] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8359), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157177] = 2, + ACTIONS(7758), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157187] = 2, + [156797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157197] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8484), 1, - anon_sym_RBRACE, - STATE(4941), 1, - aux_sym_object_repeat1, + [156807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157211] = 4, - ACTIONS(5278), 1, + ACTIONS(8378), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(8484), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157225] = 2, + anon_sym_implements, + [156817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157235] = 4, - ACTIONS(8486), 1, + [156827] = 4, + ACTIONS(8380), 1, anon_sym_COMMA, - ACTIONS(8488), 1, + ACTIONS(8383), 1, anon_sym_RPAREN, - STATE(4947), 1, + STATE(4896), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157249] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8490), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157263] = 4, - ACTIONS(5080), 1, + [156841] = 4, + ACTIONS(4852), 1, + anon_sym_RPAREN, + ACTIONS(8385), 1, anon_sym_COMMA, - ACTIONS(8492), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + STATE(4897), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157277] = 2, + [156855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157287] = 4, - ACTIONS(5080), 1, + [156865] = 4, + ACTIONS(8390), 1, anon_sym_COMMA, - ACTIONS(8494), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(8392), 1, + anon_sym_RPAREN, + STATE(4869), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157301] = 2, + [156879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157311] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8496), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157325] = 2, + [156889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157335] = 2, + [156899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157345] = 2, + [156909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157355] = 2, + [156919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157365] = 4, - ACTIONS(8498), 1, + [156929] = 4, + ACTIONS(7444), 1, anon_sym_COMMA, - ACTIONS(8500), 1, - anon_sym_RBRACK, - STATE(4653), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8398), 1, + anon_sym_LBRACE, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157379] = 3, - ACTIONS(7058), 1, - anon_sym_DOT, + [156943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 2, + ACTIONS(8396), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [157391] = 2, + [156953] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157401] = 2, + [156963] = 4, + ACTIONS(8400), 1, + anon_sym_COMMA, + ACTIONS(8402), 1, + anon_sym_GT, + STATE(4713), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157411] = 2, + [156977] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8404), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157421] = 2, + [156987] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8406), 1, + anon_sym_RBRACE, + STATE(4961), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8502), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157431] = 2, + [157001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157441] = 4, - ACTIONS(2292), 1, - anon_sym_LBRACE, - ACTIONS(8504), 1, - sym_identifier, - STATE(4509), 1, - sym_export_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157455] = 2, + [157011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157465] = 2, + [157021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157475] = 2, + [157031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157485] = 4, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_DOT, - STATE(3164), 1, - sym_arguments, + [157041] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157499] = 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157509] = 2, + [157061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157519] = 2, + [157071] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157529] = 2, + [157081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157539] = 2, + [157091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157549] = 2, + [157101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157559] = 2, + [157111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157569] = 2, + [157121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157579] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8508), 1, - sym__glimmer_template_content, - ACTIONS(8510), 1, - sym_glimmer_closing_tag, - STATE(4632), 1, - aux_sym_glimmer_template_repeat1, - [157595] = 2, + [157131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157605] = 2, + [157141] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8406), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157615] = 2, + [157155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157625] = 4, - ACTIONS(8512), 1, + [157165] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(8515), 1, + ACTIONS(8001), 1, anon_sym_RBRACK, - STATE(4939), 1, - aux_sym_tuple_type_repeat1, + STATE(4890), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157639] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8517), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [157179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157653] = 4, - ACTIONS(5278), 1, + ACTIONS(8404), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8519), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [157189] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157667] = 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157199] = 3, + ACTIONS(7877), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8521), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [157677] = 2, + ACTIONS(8408), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [157211] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157687] = 3, - ACTIONS(4195), 1, - anon_sym_LBRACE, + [157221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157699] = 3, - ACTIONS(4308), 1, - anon_sym_LBRACE, + anon_sym_SEMI, + [157231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157711] = 2, + anon_sym_SEMI, + [157241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157721] = 4, - ACTIONS(1687), 1, - anon_sym_RPAREN, - ACTIONS(8523), 1, - anon_sym_COMMA, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157735] = 4, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - STATE(5280), 1, - sym_type_parameter, + [157251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157749] = 2, + ACTIONS(7201), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157759] = 2, + [157271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157769] = 2, + [157281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157779] = 4, - ACTIONS(8525), 1, + [157291] = 4, + ACTIONS(8410), 1, anon_sym_COMMA, - ACTIONS(8527), 1, - anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157793] = 2, + ACTIONS(8412), 1, + anon_sym_RPAREN, + STATE(4964), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157803] = 2, + [157305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157813] = 2, + [157315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157823] = 4, - ACTIONS(8529), 1, - anon_sym_COMMA, - ACTIONS(8531), 1, - anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157837] = 2, + [157325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157847] = 2, + [157335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157857] = 2, + [157345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157867] = 2, + [157355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157877] = 4, - ACTIONS(5080), 1, + [157365] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(8533), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5227), 1, + anon_sym_RBRACK, + STATE(4879), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157891] = 2, + [157379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157901] = 2, + [157389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7114), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [157911] = 4, - ACTIONS(1681), 1, - anon_sym_RPAREN, - ACTIONS(8535), 1, + ACTIONS(8319), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [157399] = 4, + ACTIONS(8416), 1, + anon_sym_COMMA, + ACTIONS(8419), 1, + anon_sym_RBRACK, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157925] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8537), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [157413] = 4, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(8421), 1, + anon_sym_DOT, + STATE(3206), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157939] = 2, + [157427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8350), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157949] = 2, + [157437] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8423), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [157447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8539), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [157959] = 2, + [157457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157969] = 4, - ACTIONS(8541), 1, + [157467] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(8543), 1, + ACTIONS(5227), 1, anon_sym_RBRACK, - STATE(5029), 1, - aux_sym_tuple_type_repeat1, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157983] = 4, - ACTIONS(8545), 1, + [157481] = 4, + ACTIONS(8425), 1, anon_sym_COMMA, - ACTIONS(8548), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + ACTIONS(8427), 1, + anon_sym_RBRACK, + STATE(4620), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157997] = 4, - ACTIONS(8550), 1, - anon_sym_COMMA, - ACTIONS(8553), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + [157495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158011] = 2, + ACTIONS(8429), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157505] = 4, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_const, + STATE(5244), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + [157519] = 4, + ACTIONS(5060), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158021] = 2, + ACTIONS(8431), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, - sym__automatic_semicolon, + [157533] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158031] = 4, - ACTIONS(8555), 1, - sym_identifier, - ACTIONS(8557), 1, - anon_sym_require, - STATE(4916), 1, - sym_nested_identifier, + ACTIONS(8433), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158045] = 2, + [157547] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8435), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, - sym__automatic_semicolon, + [157561] = 4, + ACTIONS(8437), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158055] = 4, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(7577), 1, - anon_sym_PIPE, + ACTIONS(8439), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158069] = 2, + [157575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8502), 3, + ACTIONS(8441), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158079] = 2, + [157585] = 4, + ACTIONS(1702), 1, + anon_sym_RPAREN, + ACTIONS(8443), 1, + anon_sym_COMMA, + STATE(4896), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, + [157599] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158089] = 2, + ACTIONS(8445), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, + [157613] = 4, + ACTIONS(8447), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158099] = 2, + ACTIONS(8449), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158109] = 2, + [157627] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_LPAREN, + STATE(809), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158119] = 2, + [157641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158129] = 4, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, + [157651] = 4, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(7879), 1, + anon_sym_RBRACK, + STATE(4990), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158143] = 2, + [157665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158153] = 2, + [157675] = 4, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5489), 1, + anon_sym_RBRACK, + STATE(4987), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + [157689] = 4, + ACTIONS(8455), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158163] = 2, + ACTIONS(8458), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158173] = 4, - ACTIONS(8559), 1, + [157703] = 4, + ACTIONS(8460), 1, anon_sym_COMMA, - ACTIONS(8561), 1, + ACTIONS(8463), 1, anon_sym_RBRACE, - STATE(4845), 1, - aux_sym_named_imports_repeat1, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158187] = 2, + [157717] = 4, + ACTIONS(8465), 1, + anon_sym_COMMA, + ACTIONS(8468), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6578), 3, + [157731] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [158197] = 2, + ACTIONS(5489), 1, + anon_sym_RBRACK, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158207] = 3, - ACTIONS(8563), 1, - anon_sym_EQ, + [157745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8276), 2, - anon_sym_COMMA, + ACTIONS(8470), 3, + sym__automatic_semicolon, anon_sym_from, - [158219] = 4, - ACTIONS(3224), 1, - anon_sym_GT, - ACTIONS(8565), 1, + anon_sym_SEMI, + [157755] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(7879), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158233] = 2, + [157769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8441), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158243] = 2, + [157779] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158253] = 4, - ACTIONS(5222), 1, + [157789] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5718), 3, anon_sym_COMMA, - ACTIONS(8567), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_repeat1, + [157799] = 4, + ACTIONS(4998), 1, + anon_sym_extends, + ACTIONS(8472), 1, + anon_sym_AMP, + ACTIONS(8474), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158267] = 4, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(8569), 1, + [157813] = 3, + ACTIONS(7877), 1, anon_sym_EQ, - STATE(5640), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158281] = 2, + ACTIONS(8476), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [157825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158291] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(5421), 1, - anon_sym_RPAREN, - STATE(5034), 1, - aux_sym_array_repeat1, + [157835] = 3, + ACTIONS(8480), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158305] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(5421), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + ACTIONS(8482), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [157847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158319] = 2, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158329] = 4, - ACTIONS(1909), 1, + [157867] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(8571), 1, + ACTIONS(8484), 1, anon_sym_RBRACK, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158343] = 2, + [157881] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8573), 3, + ACTIONS(8486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158353] = 2, + [157891] = 3, + ACTIONS(8488), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + ACTIONS(6475), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158363] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, + anon_sym_RBRACE, + [157903] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158373] = 2, + ACTIONS(8490), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158383] = 2, + [157917] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8492), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158393] = 2, + [157927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, + ACTIONS(6475), 3, anon_sym_COMMA, - anon_sym_SEMI, - [158403] = 4, - ACTIONS(8575), 1, - sym_identifier, - ACTIONS(8577), 1, - anon_sym_LBRACK, - ACTIONS(8579), 1, - sym_private_property_identifier, + anon_sym_RBRACE, + anon_sym_from, + [157937] = 3, + ACTIONS(8494), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158417] = 4, - ACTIONS(8581), 1, + ACTIONS(8088), 2, + anon_sym_COMMA, + anon_sym_from, + [157949] = 4, + ACTIONS(6473), 1, + anon_sym_type, + ACTIONS(8496), 1, sym_identifier, - ACTIONS(8583), 1, - anon_sym_LBRACK, - ACTIONS(8585), 1, - sym_private_property_identifier, + STATE(5462), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158431] = 2, + [157963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158441] = 4, - ACTIONS(8589), 1, + [157973] = 4, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(8591), 1, - anon_sym_LBRACK, - ACTIONS(8593), 1, - sym_private_property_identifier, + ACTIONS(7883), 1, + anon_sym_const, + STATE(4908), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158455] = 4, - ACTIONS(8595), 1, - sym_identifier, - ACTIONS(8597), 1, - anon_sym_LBRACK, - ACTIONS(8599), 1, - sym_private_property_identifier, + [157987] = 4, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(8498), 1, + anon_sym_COMMA, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158469] = 2, + [158001] = 4, + ACTIONS(8476), 1, + anon_sym_RBRACK, + ACTIONS(8501), 1, + anon_sym_COMMA, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, + [158015] = 4, + ACTIONS(8504), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158479] = 2, + ACTIONS(8506), 1, + anon_sym_RBRACK, + STATE(5052), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158489] = 2, + [158029] = 4, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(8508), 1, + anon_sym_EQ, + STATE(5628), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158499] = 2, + [158043] = 4, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158509] = 3, - ACTIONS(7238), 1, + [158067] = 3, + ACTIONS(7745), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3699), 2, + ACTIONS(3684), 2, anon_sym_in, anon_sym_of, - [158521] = 2, + [158079] = 3, + ACTIONS(8510), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, + ACTIONS(8088), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158531] = 2, + anon_sym_RBRACE, + [158091] = 4, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(8512), 1, + anon_sym_EQ, + STATE(5614), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8605), 3, - sym__automatic_semicolon, + [158105] = 4, + ACTIONS(3241), 1, + anon_sym_GT, + ACTIONS(8514), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158541] = 2, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158551] = 4, - ACTIONS(1909), 1, + [158129] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4578), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(5362), 1, + anon_sym_RPAREN, + STATE(5062), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158565] = 2, + [158143] = 3, + ACTIONS(8516), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8518), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158575] = 4, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158589] = 2, + [158155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158599] = 2, + [158165] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5362), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158609] = 2, + [158179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158619] = 2, + [158189] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, - sym__automatic_semicolon, + ACTIONS(7221), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158199] = 4, + ACTIONS(1686), 1, + anon_sym_RPAREN, + ACTIONS(8524), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158629] = 2, + STATE(4896), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158639] = 2, + [158213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8609), 3, + ACTIONS(8522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158649] = 4, - ACTIONS(2972), 1, - anon_sym_RBRACK, - ACTIONS(8611), 1, + [158223] = 4, + ACTIONS(3247), 1, + anon_sym_GT, + ACTIONS(8526), 1, anon_sym_COMMA, - STATE(4939), 1, - aux_sym_tuple_type_repeat1, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158663] = 2, + [158237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158673] = 2, + [158247] = 4, + ACTIONS(6473), 1, + anon_sym_type, + ACTIONS(8530), 1, + sym_identifier, + STATE(5313), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158683] = 2, + [158261] = 3, + ACTIONS(7193), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8615), 3, - sym__automatic_semicolon, + ACTIONS(3684), 2, + anon_sym_in, + anon_sym_of, + [158273] = 4, + ACTIONS(6726), 1, + anon_sym_RBRACE, + ACTIONS(8532), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158693] = 2, + STATE(4785), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(6064), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158703] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(8617), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + [158297] = 4, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158717] = 2, + [158311] = 4, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(8001), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8619), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158727] = 2, + [158325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8601), 3, + ACTIONS(8534), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158737] = 2, + [158335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158747] = 2, + [158345] = 4, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(7318), 1, + anon_sym_RPAREN, + STATE(4897), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8621), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158757] = 2, + [158359] = 4, + ACTIONS(8536), 1, + sym_identifier, + ACTIONS(8538), 1, + anon_sym_LBRACK, + ACTIONS(8540), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158767] = 2, + [158373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158777] = 2, + [158383] = 4, + ACTIONS(8542), 1, + anon_sym_COMMA, + ACTIONS(8544), 1, + anon_sym_RBRACE, + STATE(5020), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158787] = 2, + [158397] = 4, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8548), 1, + anon_sym_LBRACK, + ACTIONS(8550), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8625), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158797] = 2, + [158411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8552), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158807] = 2, + [158421] = 4, + ACTIONS(8554), 1, + sym_identifier, + ACTIONS(8556), 1, + anon_sym_LBRACK, + ACTIONS(8558), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8619), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158817] = 2, + [158435] = 4, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8562), 1, + anon_sym_LBRACK, + ACTIONS(8564), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8627), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158827] = 2, + [158449] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158837] = 2, + [158459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158847] = 2, + [158469] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158857] = 2, + [158479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8566), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158867] = 2, + [158489] = 4, + ACTIONS(7885), 1, + anon_sym_GT, + ACTIONS(8568), 1, + anon_sym_COMMA, + STATE(4684), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158877] = 2, + [158503] = 3, + ACTIONS(7067), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8570), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158887] = 2, + [158515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158897] = 2, + [158525] = 3, + ACTIONS(7069), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8570), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158907] = 2, + [158537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158917] = 2, + [158547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158927] = 4, - ACTIONS(3226), 1, - anon_sym_GT, - ACTIONS(8629), 1, - anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158941] = 2, + [158557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8572), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158951] = 2, + [158567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8631), 3, + ACTIONS(8574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158961] = 2, + [158577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8633), 3, + ACTIONS(8522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158971] = 2, + [158587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8566), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158981] = 2, + [158597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158991] = 2, + [158607] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159001] = 2, + [158617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159011] = 2, + [158627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159021] = 2, + [158637] = 4, + ACTIONS(2833), 1, + anon_sym_RBRACK, + ACTIONS(8578), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + [158651] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159031] = 2, + [158661] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159041] = 2, + [158671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159051] = 2, + [158681] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(7707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159061] = 2, + [158691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159071] = 2, + [158701] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159081] = 2, + [158711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159091] = 2, + [158721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159101] = 2, + [158731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159111] = 2, + [158741] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(8586), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + [158755] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159121] = 2, + [158765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159131] = 2, + [158775] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8588), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159141] = 2, + [158785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159151] = 2, + [158795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159161] = 2, + [158805] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159171] = 2, + [158815] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159181] = 2, + [158825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159191] = 2, + [158835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159201] = 2, + [158845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159211] = 2, + [158855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159221] = 2, + [158865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159231] = 2, + [158875] = 3, + ACTIONS(4391), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, - sym__automatic_semicolon, + ACTIONS(4393), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159241] = 2, + anon_sym_LBRACE_PIPE, + [158887] = 3, + ACTIONS(4174), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8635), 3, - sym__automatic_semicolon, + ACTIONS(4176), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159251] = 2, + anon_sym_LBRACE_PIPE, + [158899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8572), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159261] = 2, + [158909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159271] = 2, + [158919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159281] = 4, - ACTIONS(8040), 1, - anon_sym_GT, - ACTIONS(8637), 1, - anon_sym_COMMA, - STATE(4685), 1, - aux_sym_type_parameters_repeat1, + [158929] = 4, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(8590), 1, + anon_sym_LBRACE, + STATE(5735), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159295] = 2, + [158943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8631), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159305] = 2, + [158953] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159315] = 2, + [158963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159325] = 2, + [158973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8601), 3, + ACTIONS(8520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159335] = 2, + [158983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159345] = 2, + [158993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159355] = 2, + [159003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159365] = 2, + [159013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159375] = 2, + [159023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159385] = 2, + [159033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159395] = 2, + [159043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159405] = 2, + [159053] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159415] = 2, + [159063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159425] = 2, + [159073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159435] = 3, - ACTIONS(8639), 1, + [159083] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159093] = 3, + ACTIONS(8592), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 2, + ACTIONS(3622), 2, anon_sym_COMMA, anon_sym_RBRACK, - [159447] = 2, + [159105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159457] = 2, + [159115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8625), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159467] = 2, + [159125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8112), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159477] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - STATE(851), 1, - sym_object_type, + [159135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159491] = 2, + ACTIONS(8108), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159501] = 2, + [159155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8597), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159511] = 2, + [159165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159521] = 2, + [159175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159531] = 2, + [159185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159541] = 3, - ACTIONS(8642), 1, + [159195] = 3, + ACTIONS(8599), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7835), 2, + ACTIONS(7687), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [159553] = 2, + [159207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159563] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159573] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + [159217] = 4, + ACTIONS(1034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1610), 1, + anon_sym_LBRACE, + STATE(3982), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159587] = 2, + [159231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159597] = 2, + [159241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159607] = 2, + [159251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159617] = 2, + [159261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159627] = 2, + [159271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159637] = 2, + [159281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159647] = 2, + [159291] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5283), 1, + anon_sym_RPAREN, + STATE(4647), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, - sym__automatic_semicolon, + [159305] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159657] = 2, + ACTIONS(5283), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159667] = 2, + [159319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159677] = 2, + [159329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159687] = 2, + [159339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159697] = 2, + [159349] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159707] = 4, - ACTIONS(8644), 1, + [159359] = 4, + ACTIONS(8601), 1, sym_identifier, - STATE(3896), 1, - sym_decorator_member_expression, - STATE(5821), 1, - sym_decorator_call_expression, + ACTIONS(8603), 1, + anon_sym_require, + STATE(5041), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159721] = 2, + [159373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8605), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159731] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8106), 1, - anon_sym_RBRACE, - STATE(4908), 1, - aux_sym_object_pattern_repeat1, + [159383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159745] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8198), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159755] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8100), 1, - anon_sym_RBRACE, - STATE(4910), 1, - aux_sym_object_repeat1, + [159393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159769] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8114), 3, + ACTIONS(8605), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159779] = 3, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3699), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159790] = 2, + [159403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8646), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159799] = 2, + ACTIONS(7103), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [159413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8648), 2, + ACTIONS(8476), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [159808] = 3, - ACTIONS(7293), 1, + anon_sym_RBRACK, + [159422] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(2659), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159819] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8423), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159828] = 3, - ACTIONS(7293), 1, + [159433] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2684), 1, + STATE(2660), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159839] = 2, + [159444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1698), 2, sym__automatic_semicolon, anon_sym_SEMI, - [159848] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2717), 1, - sym_statement_block, + [159453] = 3, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159859] = 3, - ACTIONS(7293), 1, + [159464] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2693), 1, + STATE(2650), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159870] = 3, - ACTIONS(4335), 1, + [159475] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8611), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159484] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2133), 1, + STATE(2695), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159881] = 3, - ACTIONS(8650), 1, - anon_sym_SEMI, - ACTIONS(8652), 1, - sym__automatic_semicolon, + [159495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159892] = 3, - ACTIONS(7040), 1, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159504] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(4034), 1, + STATE(2662), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159903] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5461), 1, - sym_statement_block, + [159515] = 3, + ACTIONS(8613), 1, + anon_sym_COMMA, + ACTIONS(8615), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159914] = 3, - ACTIONS(8654), 1, - anon_sym_SEMI, - ACTIONS(8656), 1, - sym__automatic_semicolon, + [159526] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2696), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159925] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(4298), 1, - sym_formal_parameters, + [159537] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(877), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159936] = 2, + [159548] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8658), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159945] = 2, + [159559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8660), 2, + ACTIONS(8617), 2, anon_sym_in, anon_sym_of, - [159954] = 3, - ACTIONS(7293), 1, + [159568] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2687), 1, + STATE(2674), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159965] = 3, - ACTIONS(8662), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159976] = 3, - ACTIONS(8666), 1, + [159579] = 3, + ACTIONS(8619), 1, anon_sym_LBRACE, - STATE(4036), 1, - sym_enum_body, + STATE(860), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159987] = 3, - ACTIONS(8668), 1, + [159590] = 3, + ACTIONS(8621), 1, sym_identifier, - ACTIONS(8670), 1, + ACTIONS(8623), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159998] = 3, - ACTIONS(8672), 1, - sym_identifier, - ACTIONS(8674), 1, - sym_private_property_identifier, + [159601] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4032), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160009] = 3, - ACTIONS(6468), 1, + [159612] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1691), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159623] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5597), 1, + STATE(5618), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160020] = 3, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, - sym_private_property_identifier, + [159634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160031] = 3, - ACTIONS(4651), 1, + ACTIONS(6004), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159643] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2728), 1, + STATE(2661), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160042] = 2, + [159654] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5050), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160051] = 2, + [159665] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160060] = 3, - ACTIONS(8680), 1, - sym_identifier, - ACTIONS(8682), 1, - sym_private_property_identifier, + [159676] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160071] = 2, + [159687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8684), 2, + ACTIONS(8625), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160080] = 3, - ACTIONS(6757), 1, + [159696] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2583), 1, + STATE(2596), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160091] = 3, - ACTIONS(8686), 1, + [159707] = 3, + ACTIONS(8627), 1, sym_identifier, - ACTIONS(8688), 1, + ACTIONS(8629), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160102] = 3, - ACTIONS(7293), 1, + [159718] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(2693), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160113] = 3, - ACTIONS(8690), 1, - anon_sym_LBRACE, - STATE(5443), 1, - sym_object, + [159729] = 3, + ACTIONS(3557), 1, + anon_sym_COLON, + STATE(5277), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160124] = 3, - ACTIONS(6757), 1, + [159740] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2585), 1, + STATE(2598), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160135] = 3, - ACTIONS(8438), 1, - sym_identifier, - ACTIONS(8442), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160146] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7803), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160155] = 3, - ACTIONS(4031), 1, + [159751] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + STATE(4125), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160166] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2688), 1, - sym_statement_block, + [159762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160177] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5688), 1, - sym_formal_parameters, + ACTIONS(8631), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160188] = 3, - ACTIONS(8692), 1, + ACTIONS(8633), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159780] = 3, + ACTIONS(8635), 1, anon_sym_SEMI, - ACTIONS(8694), 1, + ACTIONS(8637), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160199] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5765), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160210] = 2, + [159791] = 3, + ACTIONS(8102), 1, + sym_identifier, + ACTIONS(8106), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8696), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160219] = 2, + [159802] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5709), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160228] = 3, - ACTIONS(2482), 1, + [159813] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(5385), 1, + STATE(2671), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160239] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6083), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160248] = 2, + [159824] = 3, + ACTIONS(3557), 1, + anon_sym_COLON, + STATE(5159), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8698), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160257] = 3, - ACTIONS(8700), 1, + [159835] = 3, + ACTIONS(8639), 1, sym_identifier, - ACTIONS(8702), 1, + ACTIONS(8641), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160268] = 3, - ACTIONS(7839), 1, - anon_sym_from, - STATE(3944), 1, - sym__from_clause, + [159846] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5775), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160279] = 2, + [159857] = 3, + ACTIONS(8643), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8704), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160288] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(219), 1, - sym_class_body, + [159868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160299] = 3, - ACTIONS(8706), 1, - anon_sym_LPAREN, - STATE(796), 1, - sym_parenthesized_expression, + ACTIONS(8383), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159877] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160310] = 3, - ACTIONS(6900), 1, + [159888] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(2575), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160321] = 3, - ACTIONS(8708), 1, - sym_identifier, - ACTIONS(8710), 1, - anon_sym_STAR, + [159899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160332] = 3, - ACTIONS(8712), 1, + ACTIONS(8645), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159908] = 3, + ACTIONS(8647), 1, sym_identifier, - ACTIONS(8714), 1, + ACTIONS(8649), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160343] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7401), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [160352] = 3, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4799), 1, - sym_type_annotation, + [159919] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5493), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160363] = 3, - ACTIONS(2482), 1, + [159930] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(5453), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160374] = 2, + STATE(2246), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8716), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160383] = 3, - ACTIONS(8718), 1, + [159941] = 3, + ACTIONS(8651), 1, sym_identifier, - ACTIONS(8720), 1, + ACTIONS(8653), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160394] = 3, - ACTIONS(7293), 1, + [159952] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2677), 1, + STATE(2691), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160405] = 3, - ACTIONS(8722), 1, - anon_sym_SEMI, - ACTIONS(8724), 1, - sym__automatic_semicolon, + [159963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160416] = 3, - ACTIONS(3550), 1, - anon_sym_COLON, - STATE(5292), 1, - sym_type_annotation, + ACTIONS(8655), 2, + anon_sym_COMMA, + anon_sym_GT, + [159972] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5841), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160427] = 2, + [159983] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8726), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [160436] = 2, + [159994] = 3, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2251), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8728), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [160445] = 2, + [160005] = 3, + ACTIONS(8659), 1, + anon_sym_LBRACE, + STATE(3946), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160454] = 2, + [160016] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2163), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160463] = 3, - ACTIONS(8730), 1, + [160027] = 3, + ACTIONS(8661), 1, sym_identifier, - ACTIONS(8732), 1, + ACTIONS(8663), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160474] = 3, - ACTIONS(7293), 1, + [160038] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2705), 1, + STATE(2679), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160485] = 2, + [160049] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160494] = 3, - ACTIONS(2482), 1, + [160060] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(5216), 1, + STATE(1695), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160505] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6028), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160514] = 3, - ACTIONS(8734), 1, + [160071] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(911), 1, - sym_enum_body, + STATE(1697), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160525] = 2, + [160082] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8120), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160534] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2356), 1, - sym_class_body, + [160093] = 3, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160545] = 3, - ACTIONS(8130), 1, + [160104] = 3, + ACTIONS(8669), 1, sym_identifier, - ACTIONS(8134), 1, + ACTIONS(8671), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160556] = 3, - ACTIONS(6757), 1, + [160115] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(1665), 1, + STATE(4044), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160567] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + [160126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160578] = 3, - ACTIONS(7293), 1, + ACTIONS(7347), 2, anon_sym_LBRACE, - STATE(2661), 1, - sym_statement_block, + anon_sym_EQ_GT, + [160135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160589] = 2, + ACTIONS(4530), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160598] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, + ACTIONS(4534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160609] = 3, - ACTIONS(2482), 1, + ACTIONS(7454), 2, anon_sym_LBRACE, - STATE(5398), 1, - sym_statement_block, + anon_sym_EQ_GT, + [160162] = 3, + ACTIONS(8673), 1, + anon_sym_SEMI, + ACTIONS(8675), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160620] = 3, - ACTIONS(7293), 1, + [160173] = 3, + ACTIONS(8677), 1, anon_sym_LBRACE, - STATE(2711), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160631] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5510), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160642] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160653] = 3, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3301), 1, - sym_formal_parameters, + STATE(846), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160664] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5820), 1, - sym_formal_parameters, + [160184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160675] = 2, + ACTIONS(7490), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [160193] = 3, + ACTIONS(8679), 1, + sym_identifier, + ACTIONS(8681), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160684] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5500), 1, - sym_formal_parameters, + [160204] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2258), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160695] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(820), 1, - sym_statement_block, + [160215] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5423), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160706] = 2, + [160226] = 3, + ACTIONS(8683), 1, + anon_sym_SEMI, + ACTIONS(8685), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8738), 2, - anon_sym_COMMA, - anon_sym_GT, - [160715] = 3, - ACTIONS(7293), 1, + [160237] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(2664), 1, - sym_statement_block, + STATE(4045), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160726] = 3, - ACTIONS(6468), 1, + [160248] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5869), 1, + STATE(5505), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160737] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160746] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6028), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160755] = 3, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4199), 1, - sym_class_body, + [160259] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5457), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160766] = 3, - ACTIONS(8734), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym_enum_body, + [160270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160777] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2716), 1, - sym_statement_block, + ACTIONS(8687), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160279] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5556), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160788] = 3, - ACTIONS(2482), 1, + [160290] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5401), 1, + STATE(807), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160799] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6009), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160808] = 2, + [160301] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5832), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160817] = 3, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5148), 1, - sym__from_clause, + [160312] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160828] = 3, - ACTIONS(8740), 1, + [160323] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(862), 1, - sym_switch_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160839] = 3, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5248), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160850] = 2, + STATE(2668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8742), 2, - anon_sym_COMMA, - anon_sym_GT, - [160859] = 3, - ACTIONS(1721), 1, + [160334] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(2669), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160870] = 2, + [160345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 2, + ACTIONS(6004), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160879] = 3, - ACTIONS(6898), 1, + [160354] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(221), 1, + STATE(1698), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160890] = 3, - ACTIONS(7293), 1, + [160365] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2668), 1, + STATE(1699), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160901] = 3, - ACTIONS(7293), 1, + [160376] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2653), 1, + STATE(5389), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160912] = 2, + [160387] = 3, + ACTIONS(8689), 1, + sym_identifier, + STATE(5041), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8553), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160921] = 3, - ACTIONS(8744), 1, - anon_sym_SEMI, - ACTIONS(8746), 1, - sym__automatic_semicolon, + [160398] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160932] = 3, - ACTIONS(8748), 1, - anon_sym_SEMI, - ACTIONS(8750), 1, - sym__automatic_semicolon, + [160409] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160943] = 2, + [160420] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8548), 2, + ACTIONS(6008), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160952] = 3, - ACTIONS(4633), 1, + [160429] = 3, + ACTIONS(8643), 1, anon_sym_LPAREN, - STATE(2266), 1, - sym_arguments, + STATE(39), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160963] = 3, - ACTIONS(7293), 1, + [160440] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2673), 1, - sym_statement_block, + STATE(1701), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160974] = 3, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1690), 1, - sym_arguments, + [160451] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2168), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160985] = 3, - ACTIONS(8752), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym__for_header, + [160462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160996] = 3, - ACTIONS(6733), 1, + ACTIONS(8468), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160471] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2273), 1, - sym_class_body, + STATE(2666), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161007] = 3, - ACTIONS(6733), 1, + [160482] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2234), 1, + STATE(2164), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161018] = 3, - ACTIONS(7293), 1, + [160493] = 3, + ACTIONS(1678), 1, anon_sym_LBRACE, - STATE(2685), 1, + STATE(232), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161029] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5605), 1, - sym_formal_parameters, + [160504] = 3, + ACTIONS(7065), 1, + anon_sym_LBRACE, + STATE(4371), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161040] = 3, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3599), 1, - sym_formal_parameters, + [160515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161051] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5706), 1, - sym_formal_parameters, + ACTIONS(8458), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160524] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(3999), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161062] = 3, - ACTIONS(6468), 1, + [160535] = 3, + ACTIONS(8657), 1, anon_sym_LPAREN, - STATE(5774), 1, - sym_formal_parameters, + STATE(5142), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161073] = 3, - ACTIONS(6468), 1, + [160546] = 3, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(4107), 1, + STATE(3304), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161084] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8754), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161093] = 3, - ACTIONS(8756), 1, - sym_identifier, - STATE(4916), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161104] = 3, - ACTIONS(4335), 1, + [160557] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2315), 1, - sym_statement_block, + STATE(1679), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161115] = 3, - ACTIONS(7293), 1, + [160568] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2672), 1, + STATE(1681), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161126] = 3, - ACTIONS(4331), 1, + [160579] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1667), 1, + STATE(1684), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161137] = 3, - ACTIONS(3550), 1, - anon_sym_COLON, - STATE(5200), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161148] = 3, - ACTIONS(6868), 1, + [160590] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(777), 1, + STATE(220), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161159] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2216), 1, - sym_class_body, + [160601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161170] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5756), 1, - sym_formal_parameters, + ACTIONS(6020), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160610] = 3, + ACTIONS(8659), 1, + anon_sym_LBRACE, + STATE(4375), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161181] = 3, - ACTIONS(6757), 1, + [160621] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(1698), 1, - sym_class_body, + STATE(5392), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161192] = 3, - ACTIONS(7293), 1, + [160632] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2670), 1, + STATE(2259), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161203] = 3, - ACTIONS(8758), 1, - sym_identifier, - ACTIONS(8760), 1, - sym_private_property_identifier, + [160643] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5433), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161214] = 2, + [160654] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5646), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7430), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [161223] = 2, + [160665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8762), 2, + ACTIONS(8243), 2, anon_sym_COMMA, anon_sym_GT, - [161232] = 3, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4214), 1, - sym_class_body, + [160674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161243] = 3, - ACTIONS(6468), 1, + ACTIONS(5024), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160683] = 3, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(5831), 1, + STATE(3659), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161254] = 2, + [160694] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2318), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161263] = 2, + [160705] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5469), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8339), 2, - anon_sym_COMMA, - anon_sym_GT, - [161272] = 3, - ACTIONS(6482), 1, + [160716] = 3, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3383), 1, + STATE(3361), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161283] = 3, - ACTIONS(6757), 1, + [160727] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(1723), 1, - sym_class_body, + STATE(2304), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161294] = 2, + [160738] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5483), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8344), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161303] = 3, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4215), 1, - sym_class_body, + [160749] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5549), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161314] = 3, - ACTIONS(8752), 1, + [160760] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__for_header, + STATE(5665), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161325] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2669), 1, - sym_statement_block, + [160771] = 3, + ACTIONS(8691), 1, + sym_identifier, + ACTIONS(8693), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161336] = 3, - ACTIONS(6900), 1, + [160782] = 3, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(934), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161347] = 3, - ACTIONS(8764), 1, - anon_sym_SEMI, - ACTIONS(8766), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161358] = 3, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8770), 1, - sym_private_property_identifier, + [160793] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2692), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161369] = 3, - ACTIONS(7293), 1, + [160804] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2702), 1, + STATE(2658), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161380] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2712), 1, - sym_statement_block, + [160815] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(4289), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161391] = 2, + [160826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8772), 2, + ACTIONS(5996), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [161400] = 2, + anon_sym_RBRACE, + [160835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8515), 2, + ACTIONS(8408), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [161409] = 3, - ACTIONS(6757), 1, + anon_sym_RBRACE, + [160844] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(1699), 1, - sym_class_body, + STATE(5441), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161420] = 3, - ACTIONS(4331), 1, - anon_sym_LBRACE, - STATE(1700), 1, - sym_statement_block, + [160855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161431] = 3, - ACTIONS(4331), 1, - anon_sym_LBRACE, - STATE(1701), 1, - sym_statement_block, + ACTIONS(6038), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161442] = 3, - ACTIONS(8774), 1, + ACTIONS(8695), 2, + anon_sym_COMMA, + anon_sym_GT, + [160873] = 3, + ACTIONS(8697), 1, sym_identifier, - ACTIONS(8776), 1, + ACTIONS(8699), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161453] = 3, - ACTIONS(4335), 1, + [160884] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2237), 1, + STATE(2649), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161464] = 3, - ACTIONS(7293), 1, + [160895] = 3, + ACTIONS(8701), 1, + sym_identifier, + ACTIONS(8703), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160906] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2707), 1, + STATE(2685), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161475] = 3, - ACTIONS(6757), 1, + [160917] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1702), 1, + STATE(2281), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161486] = 3, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_class_body, + [160928] = 3, + ACTIONS(8705), 1, + sym_identifier, + ACTIONS(8707), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161497] = 3, - ACTIONS(6733), 1, + [160939] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2276), 1, - sym_class_body, + STATE(745), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161508] = 2, + [160950] = 3, + ACTIONS(8709), 1, + sym_identifier, + ACTIONS(8711), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8778), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161517] = 3, - ACTIONS(8666), 1, - anon_sym_LBRACE, - STATE(4079), 1, - sym_enum_body, + [160961] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161528] = 3, - ACTIONS(8780), 1, + ACTIONS(8713), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160970] = 3, + ACTIONS(8715), 1, sym_identifier, - ACTIONS(8782), 1, + ACTIONS(8717), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161539] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2160), 1, - sym_statement_block, + [160981] = 3, + ACTIONS(8719), 1, + sym_identifier, + ACTIONS(8721), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161550] = 3, - ACTIONS(1721), 1, - anon_sym_LBRACE, - STATE(224), 1, - sym_statement_block, + [160992] = 3, + ACTIONS(8723), 1, + sym_identifier, + ACTIONS(8725), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161561] = 3, - ACTIONS(4335), 1, + [161003] = 3, + ACTIONS(1678), 1, anon_sym_LBRACE, - STATE(2293), 1, + STATE(223), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161572] = 2, + [161014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8784), 2, + ACTIONS(8727), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [161581] = 3, - ACTIONS(8786), 1, - anon_sym_SEMI, - ACTIONS(8788), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161592] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2699), 1, - sym_statement_block, + anon_sym_RBRACK, + [161023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161603] = 2, + ACTIONS(8419), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161032] = 3, + ACTIONS(8729), 1, + sym_identifier, + ACTIONS(8731), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8790), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161612] = 3, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4152), 1, - sym_class_body, + [161043] = 3, + ACTIONS(8090), 1, + sym_identifier, + ACTIONS(8094), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161623] = 3, - ACTIONS(8792), 1, - anon_sym_COMMA, - ACTIONS(8794), 1, - anon_sym_from, + [161054] = 3, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(8735), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161634] = 3, - ACTIONS(8796), 1, + [161065] = 3, + ACTIONS(8737), 1, sym_identifier, - ACTIONS(8798), 1, + ACTIONS(8739), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161645] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5224), 1, - sym_statement_block, + [161076] = 3, + ACTIONS(8741), 1, + sym_identifier, + ACTIONS(8743), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161656] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2223), 1, - sym_statement_block, + [161087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161667] = 3, - ACTIONS(8800), 1, - sym_identifier, - ACTIONS(8802), 1, - sym_private_property_identifier, + ACTIONS(5012), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161678] = 3, - ACTIONS(8804), 1, + ACTIONS(8745), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161105] = 3, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8806), 1, + ACTIONS(8288), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161689] = 3, - ACTIONS(6898), 1, + [161116] = 3, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(890), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161700] = 3, - ACTIONS(6900), 1, + [161127] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(912), 1, - sym_class_body, + STATE(2283), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161711] = 3, - ACTIONS(8736), 1, + [161138] = 3, + ACTIONS(8747), 1, anon_sym_LPAREN, - STATE(49), 1, + STATE(785), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161722] = 2, + [161149] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8808), 2, + ACTIONS(8749), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161731] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2674), 1, - sym_statement_block, + [161158] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3972), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161742] = 3, - ACTIONS(7040), 1, - anon_sym_LBRACE, - STATE(797), 1, - sym_statement_block, + [161169] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5503), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161753] = 3, - ACTIONS(8238), 1, + [161180] = 3, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161191] = 3, + ACTIONS(8751), 1, sym_identifier, - ACTIONS(8242), 1, + ACTIONS(8753), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161764] = 3, - ACTIONS(6868), 1, + [161202] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161213] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(795), 1, + STATE(4067), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161775] = 2, + [161224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 2, + ACTIONS(6000), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161784] = 3, - ACTIONS(2482), 1, + [161233] = 3, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1688), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161244] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(5202), 1, - sym_statement_block, + STATE(227), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161795] = 2, + [161255] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161804] = 3, - ACTIONS(2482), 1, + [161266] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5208), 1, + STATE(5262), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161815] = 3, - ACTIONS(4633), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_arguments, + [161277] = 3, + ACTIONS(8755), 1, + sym_identifier, + ACTIONS(8757), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161826] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3957), 1, - sym_formal_parameters, + [161288] = 3, + ACTIONS(6847), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161837] = 2, + [161299] = 3, + ACTIONS(6923), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8810), 2, - anon_sym_COMMA, - anon_sym_GT, - [161846] = 3, - ACTIONS(4335), 1, + [161310] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5022), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161319] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 2, anon_sym_LBRACE, - STATE(2125), 1, - sym_statement_block, + anon_sym_EQ_GT, + [161328] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8759), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161337] = 3, + ACTIONS(8166), 1, + sym_identifier, + ACTIONS(8170), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161857] = 3, - ACTIONS(7293), 1, + ACTIONS(7774), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161357] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(2675), 1, + STATE(801), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161868] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5660), 1, - sym_formal_parameters, + [161368] = 3, + ACTIONS(8761), 1, + sym_identifier, + ACTIONS(8763), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161879] = 3, - ACTIONS(6733), 1, + [161379] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(2131), 1, + STATE(806), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161890] = 2, + [161390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8812), 2, + ACTIONS(8765), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161899] = 2, + [161399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8814), 2, + ACTIONS(8330), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161908] = 2, + [161408] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5416), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4625), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161917] = 3, - ACTIONS(8816), 1, + [161419] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6024), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161428] = 3, + ACTIONS(8767), 1, sym_identifier, - ACTIONS(8818), 1, + ACTIONS(8769), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161928] = 3, - ACTIONS(7293), 1, + [161439] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2676), 1, + STATE(5434), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161939] = 2, + [161450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4549), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161948] = 2, + ACTIONS(8771), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161459] = 3, + ACTIONS(8773), 1, + sym_identifier, + ACTIONS(8775), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161957] = 3, - ACTIONS(8820), 1, + [161470] = 3, + ACTIONS(8777), 1, sym_identifier, - ACTIONS(8822), 1, + ACTIONS(8779), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161968] = 3, - ACTIONS(8824), 1, + [161481] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2702), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161492] = 3, + ACTIONS(8781), 1, sym_identifier, - ACTIONS(8826), 1, + ACTIONS(8783), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161979] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3840), 1, - sym_formal_parameters, + [161503] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2265), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161990] = 3, - ACTIONS(8828), 1, + [161514] = 3, + ACTIONS(8785), 1, sym_identifier, - ACTIONS(8830), 1, + ACTIONS(8787), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162001] = 2, + [161525] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2279), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8832), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162010] = 3, - ACTIONS(7753), 1, - anon_sym_in, - ACTIONS(7755), 1, - anon_sym_of, + [161536] = 3, + ACTIONS(8789), 1, + sym_identifier, + ACTIONS(8791), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162021] = 3, - ACTIONS(8834), 1, - sym_identifier, - ACTIONS(8836), 1, - sym_private_property_identifier, + [161547] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3765), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162032] = 3, - ACTIONS(8838), 1, - sym_identifier, - ACTIONS(8840), 1, - anon_sym_STAR, + [161558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162043] = 3, - ACTIONS(8842), 1, - sym_identifier, - ACTIONS(8844), 1, - sym_private_property_identifier, + ACTIONS(8793), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162054] = 3, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(2599), 1, - sym_class_body, + ACTIONS(8795), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162065] = 3, - ACTIONS(2482), 1, + ACTIONS(8797), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161585] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(740), 1, - sym_statement_block, + STATE(2319), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162076] = 2, + [161596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8165), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162085] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym_parenthesized_expression, + ACTIONS(4606), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162096] = 3, - ACTIONS(7293), 1, + ACTIONS(8799), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161614] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2678), 1, + STATE(2704), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162107] = 3, - ACTIONS(7293), 1, + [161625] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2692), 1, + STATE(2680), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162118] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(802), 1, - sym_statement_block, + [161636] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(4296), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161647] = 3, + ACTIONS(8801), 1, + sym_identifier, + ACTIONS(8803), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161658] = 3, + ACTIONS(8805), 1, + sym_identifier, + ACTIONS(8807), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162129] = 3, - ACTIONS(2482), 1, + [161669] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(774), 1, - sym_statement_block, + STATE(2309), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162140] = 3, - ACTIONS(6898), 1, + [161680] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(217), 1, + STATE(4072), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162151] = 3, - ACTIONS(6733), 1, + [161691] = 3, + ACTIONS(7709), 1, + anon_sym_in, + ACTIONS(7711), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161702] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2289), 1, + STATE(2603), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162162] = 2, + [161713] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(4277), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6034), 2, + ACTIONS(6032), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162171] = 3, - ACTIONS(2482), 1, + [161733] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(887), 1, + STATE(5214), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162182] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2295), 1, - sym_statement_block, + [161744] = 3, + ACTIONS(8809), 1, + sym_identifier, + ACTIONS(8811), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162193] = 3, - ACTIONS(8846), 1, - sym_identifier, - ACTIONS(8848), 1, - sym_private_property_identifier, + [161755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162204] = 3, - ACTIONS(6733), 1, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161764] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2243), 1, - sym_class_body, + STATE(808), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162215] = 3, - ACTIONS(7839), 1, - anon_sym_from, - STATE(4150), 1, - sym__from_clause, + [161775] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5221), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162226] = 3, - ACTIONS(8850), 1, + [161786] = 3, + ACTIONS(8813), 1, sym_identifier, - ACTIONS(8852), 1, - sym_private_property_identifier, + STATE(4566), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162237] = 3, - ACTIONS(8854), 1, + [161797] = 3, + ACTIONS(8815), 1, sym_identifier, - ACTIONS(8856), 1, + ACTIONS(8817), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162248] = 3, - ACTIONS(8575), 1, + [161808] = 3, + ACTIONS(8819), 1, + anon_sym_LBRACE, + STATE(5413), 1, + sym_object, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161819] = 3, + ACTIONS(8821), 1, sym_identifier, - ACTIONS(8579), 1, + ACTIONS(8823), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162259] = 3, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4241), 1, - sym_class_body, + [161830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162270] = 3, - ACTIONS(8858), 1, - sym_identifier, - ACTIONS(8860), 1, - sym_private_property_identifier, + ACTIONS(8825), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162281] = 3, - ACTIONS(8862), 1, + ACTIONS(8827), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161848] = 3, + ACTIONS(8829), 1, sym_identifier, - ACTIONS(8864), 1, + ACTIONS(8831), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162292] = 3, - ACTIONS(8866), 1, - anon_sym_SEMI, - ACTIONS(8868), 1, + [161859] = 3, + ACTIONS(8833), 1, + anon_sym_in, + ACTIONS(8835), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161870] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8837), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [161879] = 3, + ACTIONS(4658), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162303] = 3, - ACTIONS(6468), 1, + [161890] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5570), 1, + STATE(5499), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162314] = 3, - ACTIONS(8214), 1, - sym_identifier, - ACTIONS(8218), 1, - sym_private_property_identifier, + [161901] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4074), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162325] = 3, - ACTIONS(8870), 1, - anon_sym_in, - ACTIONS(8872), 1, - anon_sym_COLON, + [161912] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162336] = 3, - ACTIONS(8874), 1, + [161923] = 3, + ACTIONS(8839), 1, sym_identifier, - ACTIONS(8876), 1, + ACTIONS(8841), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162347] = 3, - ACTIONS(8878), 1, - sym_identifier, - ACTIONS(8880), 1, - sym_private_property_identifier, + [161934] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2688), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162358] = 3, - ACTIONS(8882), 1, - sym_identifier, - ACTIONS(8884), 1, - sym_private_property_identifier, + [161945] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1703), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162369] = 3, - ACTIONS(8886), 1, - sym_identifier, - ACTIONS(8888), 1, - sym_private_property_identifier, + [161956] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2701), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162380] = 2, + [161967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6054), 2, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162389] = 3, - ACTIONS(8890), 1, - sym_identifier, - STATE(4611), 1, - sym_nested_identifier, + [161976] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1704), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162400] = 3, - ACTIONS(8892), 1, - sym_identifier, - ACTIONS(8894), 1, - sym_private_property_identifier, + [161987] = 3, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(5101), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162411] = 2, + [161998] = 3, + ACTIONS(8843), 1, + anon_sym_SEMI, + ACTIONS(8845), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7432), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162420] = 3, - ACTIONS(8896), 1, - sym_identifier, - ACTIONS(8898), 1, - sym_private_property_identifier, + [162009] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3989), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162431] = 3, - ACTIONS(7293), 1, + [162020] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2682), 1, + STATE(2654), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162442] = 3, - ACTIONS(8900), 1, - sym_identifier, - ACTIONS(8902), 1, - sym_private_property_identifier, + [162031] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2185), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162453] = 3, - ACTIONS(6468), 1, + [162042] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5696), 1, + STATE(5651), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162464] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2327), 1, - sym_class_body, + [162053] = 3, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162475] = 3, - ACTIONS(6733), 1, + [162064] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2232), 1, - sym_class_body, + STATE(2187), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162486] = 3, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(4248), 1, - sym_class_body, + [162075] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5858), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162497] = 3, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_class_body, + [162086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162508] = 3, - ACTIONS(8904), 1, + ACTIONS(8303), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162095] = 3, + ACTIONS(8536), 1, sym_identifier, - ACTIONS(8906), 1, + ACTIONS(8540), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162519] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162528] = 3, - ACTIONS(2482), 1, + [162106] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(5180), 1, + STATE(2663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162539] = 3, - ACTIONS(8908), 1, + [162117] = 3, + ACTIONS(8847), 1, sym_identifier, - ACTIONS(8910), 1, + ACTIONS(8849), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162550] = 2, + [162128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6042), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162559] = 3, - ACTIONS(4331), 1, - anon_sym_LBRACE, - STATE(1683), 1, - sym_statement_block, + ACTIONS(4472), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162570] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5182), 1, - sym_statement_block, + ACTIONS(8851), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162581] = 2, + ACTIONS(8853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162155] = 3, + ACTIONS(8855), 1, + sym_identifier, + ACTIONS(8857), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8912), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162590] = 2, + [162166] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5704), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162599] = 3, - ACTIONS(8916), 1, + [162177] = 3, + ACTIONS(8859), 1, sym_identifier, - ACTIONS(8918), 1, + ACTIONS(8861), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162610] = 3, - ACTIONS(8920), 1, - sym_identifier, - ACTIONS(8922), 1, - sym_private_property_identifier, + [162188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162621] = 3, - ACTIONS(4331), 1, + ACTIONS(6012), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162197] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(1686), 1, + STATE(3998), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162632] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5745), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162643] = 3, - ACTIONS(6868), 1, + [162208] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(4251), 1, - sym_class_body, + STATE(5238), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162654] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3971), 1, - sym_formal_parameters, + [162219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162665] = 3, - ACTIONS(7293), 1, + ACTIONS(6016), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162228] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2681), 1, + STATE(2707), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162676] = 3, - ACTIONS(7293), 1, + [162239] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(2689), 1, - sym_statement_block, + STATE(792), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162687] = 3, - ACTIONS(6733), 1, + [162250] = 3, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(2306), 1, + STATE(898), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162698] = 3, - ACTIONS(8924), 1, + [162261] = 3, + ACTIONS(8863), 1, sym_identifier, - ACTIONS(8926), 1, + ACTIONS(8865), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162709] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, + [162272] = 3, + ACTIONS(6847), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162720] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5596), 1, - sym_formal_parameters, + [162283] = 3, + ACTIONS(8867), 1, + anon_sym_SEMI, + ACTIONS(8869), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162731] = 3, - ACTIONS(7293), 1, + [162294] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(796), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162742] = 2, + [162305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8928), 2, + ACTIONS(8871), 2, sym__automatic_semicolon, anon_sym_SEMI, - [162751] = 3, - ACTIONS(4335), 1, + [162314] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2312), 1, + STATE(2665), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162762] = 3, - ACTIONS(4331), 1, + [162325] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(1704), 1, + STATE(2703), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162773] = 3, - ACTIONS(7293), 1, + [162336] = 3, + ACTIONS(8873), 1, + sym_identifier, + ACTIONS(8875), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162347] = 3, + ACTIONS(8877), 1, + sym_identifier, + ACTIONS(8879), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162358] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(2691), 1, + STATE(4007), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162784] = 3, - ACTIONS(7293), 1, + [162369] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2697), 1, + STATE(2708), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162795] = 2, + [162380] = 3, + ACTIONS(8677), 1, + anon_sym_LBRACE, + STATE(907), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8930), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162804] = 3, - ACTIONS(7040), 1, + [162391] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(3978), 1, - sym_statement_block, + STATE(797), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162815] = 3, - ACTIONS(6757), 1, + [162402] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1705), 1, + STATE(2190), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162826] = 2, + [162413] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2192), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5057), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162835] = 3, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(2541), 1, - sym_class_body, + [162424] = 3, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3571), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162846] = 3, - ACTIONS(7293), 1, + [162435] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2683), 1, + STATE(2710), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162857] = 2, + [162446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162866] = 3, - ACTIONS(6757), 1, + ACTIONS(8881), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162455] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1693), 1, + STATE(2197), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162877] = 3, - ACTIONS(7293), 1, + [162466] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2696), 1, + STATE(2651), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162888] = 2, + [162477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5055), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162897] = 3, - ACTIONS(6733), 1, + ACTIONS(5996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162486] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8883), 2, + anon_sym_COMMA, + anon_sym_GT, + [162495] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2291), 1, + STATE(2230), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162908] = 2, + [162506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8932), 2, + ACTIONS(8885), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162917] = 3, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(778), 1, - sym_class_body, + anon_sym_GT, + [162515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162928] = 3, - ACTIONS(7040), 1, + ACTIONS(6032), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162524] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(3983), 1, + STATE(2200), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162939] = 3, - ACTIONS(6733), 1, + [162535] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(4091), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162950] = 3, - ACTIONS(8934), 1, - sym_identifier, - ACTIONS(8936), 1, - sym_private_property_identifier, + [162546] = 3, + ACTIONS(8887), 1, + anon_sym_SEMI, + ACTIONS(8889), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162961] = 3, - ACTIONS(4331), 1, + [162557] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(2712), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162972] = 2, + [162568] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5345), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7434), 2, + [162579] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [162981] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5737), 1, - sym_formal_parameters, + STATE(2653), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162992] = 2, + [162590] = 3, + ACTIONS(8891), 1, + sym_identifier, + ACTIONS(8893), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8938), 2, - sym__automatic_semicolon, + [162601] = 3, + ACTIONS(8895), 1, anon_sym_SEMI, - [163001] = 3, - ACTIONS(7040), 1, - anon_sym_LBRACE, - STATE(803), 1, - sym_statement_block, + ACTIONS(8897), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163012] = 3, - ACTIONS(7293), 1, + [162612] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(2206), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163023] = 3, - ACTIONS(6868), 1, + [162623] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(787), 1, + STATE(2194), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163034] = 3, - ACTIONS(6868), 1, + [162634] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(4263), 1, - sym_class_body, + STATE(2690), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163045] = 2, + [162645] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5465), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8940), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163054] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5328), 1, - sym_statement_block, + [162656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163065] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2703), 1, - sym_statement_block, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163076] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(5239), 1, - sym_parenthesized_expression, + ACTIONS(6000), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162674] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5348), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163087] = 3, - ACTIONS(3535), 1, - anon_sym_LPAREN, - STATE(1253), 1, - sym_arguments, + [162685] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2705), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163098] = 2, + [162696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163107] = 3, - ACTIONS(7293), 1, + ACTIONS(8899), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162705] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(5316), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163118] = 3, - ACTIONS(4335), 1, + [162716] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2240), 1, + STATE(2673), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163129] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2715), 1, - sym_statement_block, + [162727] = 3, + ACTIONS(3514), 1, + anon_sym_LPAREN, + STATE(1287), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162738] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6042), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162747] = 3, + ACTIONS(6066), 1, + anon_sym_LPAREN, + STATE(2790), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163140] = 3, - ACTIONS(2482), 1, + [162758] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(5330), 1, + STATE(2656), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163151] = 3, - ACTIONS(8942), 1, - sym_identifier, - ACTIONS(8944), 1, - sym_private_property_identifier, + [162769] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163162] = 3, - ACTIONS(6062), 1, + [162780] = 3, + ACTIONS(8657), 1, anon_sym_LPAREN, - STATE(2812), 1, - sym_arguments, + STATE(70), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163173] = 3, - ACTIONS(6733), 1, + [162791] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2129), 1, + STATE(2323), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163184] = 2, + [162802] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2655), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6060), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163193] = 3, - ACTIONS(4331), 1, + [162813] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(1697), 1, + STATE(2324), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163204] = 3, - ACTIONS(6733), 1, + [162824] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2329), 1, + STATE(1663), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163215] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5666), 1, - sym_formal_parameters, + [162835] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2325), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163226] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(4347), 1, - sym_formal_parameters, + [162846] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2657), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163237] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5682), 1, - sym_formal_parameters, + [162857] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2326), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163248] = 3, - ACTIONS(4335), 1, + [162868] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2330), 1, + STATE(1665), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163259] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2710), 1, - sym_statement_block, + [162879] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5654), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163270] = 3, - ACTIONS(6468), 1, + [162890] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(4350), 1, + STATE(4322), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163281] = 3, - ACTIONS(6468), 1, + [162901] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5694), 1, + STATE(5670), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163292] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2331), 1, - sym_statement_block, + [162912] = 3, + ACTIONS(8901), 1, + anon_sym_SEMI, + ACTIONS(8903), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163303] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2652), 1, - sym_statement_block, + [162923] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(4326), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163314] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2332), 1, - sym_class_body, + [162934] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5682), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163325] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2680), 1, - sym_statement_block, + [162945] = 3, + ACTIONS(8905), 1, + anon_sym_SEMI, + ACTIONS(8907), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163336] = 3, - ACTIONS(8946), 1, + [162956] = 3, + ACTIONS(8909), 1, anon_sym_SEMI, - ACTIONS(8948), 1, + ACTIONS(8911), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163347] = 3, - ACTIONS(8950), 1, - sym_identifier, - ACTIONS(8952), 1, - anon_sym_STAR, + [162967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163358] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5365), 1, - sym_statement_block, + ACTIONS(8913), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163369] = 2, - ACTIONS(8954), 1, - anon_sym_EQ_GT, + ACTIONS(6024), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163377] = 2, - ACTIONS(8956), 1, - sym_identifier, + ACTIONS(6028), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163385] = 2, - ACTIONS(8958), 1, - sym_number, + ACTIONS(6028), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163003] = 2, + ACTIONS(8915), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163393] = 2, - ACTIONS(8960), 1, + [163011] = 2, + ACTIONS(8917), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163401] = 2, - ACTIONS(7238), 1, - anon_sym_EQ, + [163019] = 2, + ACTIONS(8282), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163409] = 2, - ACTIONS(8962), 1, - anon_sym_RBRACK, + [163027] = 2, + ACTIONS(8919), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163417] = 2, - ACTIONS(8964), 1, - anon_sym_EQ, + [163035] = 2, + ACTIONS(8921), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163425] = 2, - ACTIONS(8966), 1, - anon_sym_function, + [163043] = 2, + ACTIONS(8923), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [163051] = 2, + ACTIONS(8925), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8968), 1, - sym_regex_pattern, - [163443] = 2, - ACTIONS(5482), 1, - anon_sym_COLON, + sym_comment, + [163059] = 2, + ACTIONS(8927), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163451] = 2, - ACTIONS(5659), 1, - anon_sym_in, + [163067] = 2, + ACTIONS(8929), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163459] = 2, - ACTIONS(8970), 1, + [163075] = 2, + ACTIONS(8931), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163467] = 2, - ACTIONS(8972), 1, - anon_sym_as, + [163083] = 2, + ACTIONS(5652), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163475] = 2, - ACTIONS(8974), 1, + [163091] = 2, + ACTIONS(8933), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163483] = 2, - ACTIONS(8976), 1, + [163099] = 2, + ACTIONS(8935), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163491] = 2, - ACTIONS(8978), 1, + [163107] = 2, + ACTIONS(8937), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163499] = 2, - ACTIONS(8980), 1, - sym_identifier, + [163115] = 2, + ACTIONS(8939), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163507] = 2, - ACTIONS(8982), 1, - anon_sym_DOT, + [163123] = 2, + ACTIONS(8941), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163515] = 3, + [163131] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8984), 1, + ACTIONS(8943), 1, sym_regex_pattern, - [163525] = 2, - ACTIONS(8986), 1, - anon_sym_from, + [163141] = 2, + ACTIONS(8945), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163533] = 2, - ACTIONS(8988), 1, - anon_sym_COLON, + [163149] = 2, + ACTIONS(8118), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163541] = 2, - ACTIONS(8990), 1, + [163157] = 2, + ACTIONS(8947), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163549] = 2, - ACTIONS(8992), 1, - anon_sym_EQ_GT, + [163165] = 2, + ACTIONS(8949), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163557] = 2, - ACTIONS(8994), 1, - anon_sym_EQ, + [163173] = 2, + ACTIONS(5290), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163565] = 2, - ACTIONS(8996), 1, - anon_sym_RPAREN, + [163181] = 2, + ACTIONS(8951), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163573] = 2, - ACTIONS(8998), 1, - anon_sym_while, + [163189] = 2, + ACTIONS(8953), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163581] = 2, - ACTIONS(9000), 1, + [163197] = 2, + ACTIONS(8955), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163589] = 2, - ACTIONS(9002), 1, - sym_identifier, + [163205] = 2, + ACTIONS(8957), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163597] = 2, - ACTIONS(9004), 1, - anon_sym_RBRACK, + [163213] = 2, + ACTIONS(8959), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163605] = 2, - ACTIONS(5419), 1, - anon_sym_SEMI, + [163221] = 2, + ACTIONS(8961), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163613] = 2, - ACTIONS(9006), 1, + [163229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8963), 1, + sym_regex_pattern, + [163239] = 2, + ACTIONS(8965), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163621] = 2, - ACTIONS(9008), 1, - anon_sym_RBRACK, + [163247] = 2, + ACTIONS(8967), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163629] = 2, - ACTIONS(9010), 1, - anon_sym_EQ_GT, + [163255] = 2, + ACTIONS(8969), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163637] = 2, - ACTIONS(9012), 1, - anon_sym_EQ_GT, + [163263] = 2, + ACTIONS(5288), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163645] = 2, - ACTIONS(9014), 1, - anon_sym_from, + [163271] = 2, + ACTIONS(8971), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163653] = 2, - ACTIONS(5484), 1, - anon_sym_RPAREN, + [163279] = 2, + ACTIONS(5219), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163661] = 2, - ACTIONS(9016), 1, - sym_identifier, + [163287] = 2, + ACTIONS(6756), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163669] = 2, - ACTIONS(8208), 1, + [163295] = 2, + ACTIONS(8973), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163677] = 2, - ACTIONS(9018), 1, - anon_sym_target, + [163303] = 2, + ACTIONS(8975), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163685] = 3, - ACTIONS(3), 1, + [163311] = 2, + ACTIONS(8026), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [163319] = 2, + ACTIONS(8977), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9020), 1, - sym_regex_pattern, - [163695] = 2, - ACTIONS(9022), 1, + sym_comment, + [163327] = 2, + ACTIONS(5459), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163703] = 2, - ACTIONS(9024), 1, - anon_sym_RBRACK, + [163335] = 2, + ACTIONS(4734), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163711] = 2, - ACTIONS(9026), 1, - sym_identifier, + [163343] = 2, + ACTIONS(8979), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163719] = 2, - ACTIONS(9028), 1, - anon_sym_require, + [163351] = 2, + ACTIONS(8981), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163727] = 2, - ACTIONS(9030), 1, - sym_identifier, + [163359] = 2, + ACTIONS(8983), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163735] = 2, - ACTIONS(8543), 1, - anon_sym_RBRACK, + [163367] = 2, + ACTIONS(5461), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163743] = 2, - ACTIONS(9032), 1, + [163375] = 2, + ACTIONS(8985), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163751] = 2, - ACTIONS(9034), 1, - anon_sym_EQ_GT, + [163383] = 2, + ACTIONS(4909), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163759] = 2, - ACTIONS(9036), 1, + [163391] = 2, + ACTIONS(8987), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163767] = 2, - ACTIONS(5448), 1, - anon_sym_RBRACK, + [163399] = 2, + ACTIONS(8989), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163775] = 2, - ACTIONS(9038), 1, - anon_sym_RBRACK, + [163407] = 2, + ACTIONS(8991), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163783] = 2, - ACTIONS(9040), 1, - anon_sym_RBRACK, + [163415] = 2, + ACTIONS(8993), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163791] = 2, - ACTIONS(9042), 1, - anon_sym_RBRACK, + [163423] = 2, + ACTIONS(8995), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163799] = 2, - ACTIONS(9044), 1, - sym_identifier, + [163431] = 2, + ACTIONS(8997), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163807] = 2, - ACTIONS(9046), 1, + [163439] = 2, + ACTIONS(8999), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163815] = 2, - ACTIONS(9048), 1, - anon_sym_RBRACK, + [163447] = 2, + ACTIONS(9001), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163823] = 2, - ACTIONS(9050), 1, - anon_sym_EQ_GT, + [163455] = 2, + ACTIONS(7193), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163831] = 2, - ACTIONS(8104), 1, - anon_sym_RBRACK, + [163463] = 2, + ACTIONS(9003), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163839] = 2, - ACTIONS(9052), 1, - anon_sym_RBRACK, + [163471] = 2, + ACTIONS(9005), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163847] = 2, - ACTIONS(9054), 1, - sym_identifier, + [163479] = 2, + ACTIONS(9007), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163855] = 2, - ACTIONS(8142), 1, - anon_sym_RBRACK, + [163487] = 2, + ACTIONS(9009), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163863] = 2, - ACTIONS(9056), 1, - anon_sym_from, + [163495] = 2, + ACTIONS(9011), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163871] = 2, - ACTIONS(5783), 1, + [163503] = 2, + ACTIONS(5773), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163879] = 2, - ACTIONS(9058), 1, + [163511] = 2, + ACTIONS(9013), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163887] = 2, - ACTIONS(9060), 1, - anon_sym_EQ_GT, + [163519] = 2, + ACTIONS(9015), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163895] = 2, - ACTIONS(9062), 1, + [163527] = 2, + ACTIONS(9017), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163903] = 2, - ACTIONS(9064), 1, + [163535] = 2, + ACTIONS(9019), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163911] = 2, - ACTIONS(9066), 1, + [163543] = 2, + ACTIONS(9021), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163919] = 2, - ACTIONS(9068), 1, - sym_identifier, + [163551] = 2, + ACTIONS(9023), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163927] = 2, - ACTIONS(9070), 1, - anon_sym_from, + [163559] = 2, + ACTIONS(9025), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163935] = 2, - ACTIONS(9072), 1, - anon_sym_RBRACK, + [163567] = 2, + ACTIONS(9027), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163943] = 2, - ACTIONS(9074), 1, - anon_sym_from, + [163575] = 2, + ACTIONS(9029), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163951] = 2, - ACTIONS(9076), 1, - anon_sym_RBRACK, + [163583] = 2, + ACTIONS(9031), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163959] = 2, - ACTIONS(9078), 1, - anon_sym_RBRACK, + [163591] = 2, + ACTIONS(9033), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163967] = 2, - ACTIONS(9080), 1, - sym_identifier, + [163599] = 2, + ACTIONS(9035), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163975] = 2, - ACTIONS(9082), 1, + [163607] = 2, + ACTIONS(9037), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163983] = 2, - ACTIONS(9084), 1, - anon_sym_EQ_GT, + [163615] = 2, + ACTIONS(5296), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163991] = 2, - ACTIONS(9086), 1, - anon_sym_RBRACK, + [163623] = 2, + ACTIONS(9039), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163999] = 2, - ACTIONS(4979), 1, - anon_sym_RPAREN, + [163631] = 2, + ACTIONS(9041), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164007] = 2, - ACTIONS(9088), 1, - anon_sym_RBRACK, + [163639] = 2, + ACTIONS(9043), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164015] = 2, - ACTIONS(9090), 1, + [163647] = 2, + ACTIONS(9045), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164023] = 2, - ACTIONS(9092), 1, - sym_identifier, + [163655] = 2, + ACTIONS(9047), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164031] = 2, - ACTIONS(9094), 1, - anon_sym_from, + [163663] = 2, + ACTIONS(9049), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164039] = 2, - ACTIONS(9096), 1, - anon_sym_RBRACK, + [163671] = 2, + ACTIONS(9051), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164047] = 2, - ACTIONS(9098), 1, + [163679] = 2, + ACTIONS(9053), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164055] = 2, - ACTIONS(9100), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164063] = 2, - ACTIONS(4729), 1, - anon_sym_in, + [163687] = 2, + ACTIONS(5527), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164071] = 2, - ACTIONS(9102), 1, + [163695] = 2, + ACTIONS(9055), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164079] = 2, - ACTIONS(9104), 1, - anon_sym_RBRACK, + [163703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9057), 1, + anon_sym_SLASH2, + [163713] = 2, + ACTIONS(9059), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164087] = 2, - ACTIONS(9106), 1, + [163721] = 2, + ACTIONS(9061), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164095] = 2, - ACTIONS(5540), 1, - anon_sym_RPAREN, + [163729] = 2, + ACTIONS(9063), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164103] = 2, - ACTIONS(6520), 1, - anon_sym_is, + [163737] = 2, + ACTIONS(9065), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164111] = 2, - ACTIONS(9108), 1, + [163745] = 2, + ACTIONS(9067), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164119] = 2, - ACTIONS(9110), 1, - sym_identifier, + [163753] = 2, + ACTIONS(9069), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164127] = 2, - ACTIONS(9112), 1, - anon_sym_RBRACK, + [163761] = 2, + ACTIONS(9071), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164135] = 2, - ACTIONS(9114), 1, - sym_identifier, + [163769] = 2, + ACTIONS(5465), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164143] = 2, - ACTIONS(9116), 1, - anon_sym_EQ, + [163777] = 2, + ACTIONS(5529), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164151] = 2, - ACTIONS(9118), 1, - anon_sym_RBRACK, + [163785] = 2, + ACTIONS(8544), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164159] = 2, - ACTIONS(9120), 1, - anon_sym_RBRACK, + [163793] = 2, + ACTIONS(9073), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164167] = 2, - ACTIONS(9122), 1, - sym_identifier, + [163801] = 2, + ACTIONS(5531), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164175] = 2, - ACTIONS(9124), 1, - anon_sym_EQ, + [163809] = 2, + ACTIONS(9075), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164183] = 2, - ACTIONS(5542), 1, - anon_sym_RPAREN, + [163817] = 2, + ACTIONS(9077), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164191] = 2, - ACTIONS(5272), 1, - anon_sym_RPAREN, + [163825] = 2, + ACTIONS(9079), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [163833] = 2, + ACTIONS(9081), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9126), 1, - anon_sym_SLASH2, - [164209] = 2, - ACTIONS(5544), 1, - anon_sym_RPAREN, + sym_comment, + [163841] = 2, + ACTIONS(4112), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164217] = 2, - ACTIONS(9128), 1, - anon_sym_DOT, + [163849] = 2, + ACTIONS(8506), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164225] = 2, - ACTIONS(9130), 1, - anon_sym_EQ_GT, + [163857] = 2, + ACTIONS(9083), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164233] = 2, - ACTIONS(8504), 1, + [163865] = 2, + ACTIONS(9085), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164241] = 2, - ACTIONS(5344), 1, + [163873] = 2, + ACTIONS(5259), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164249] = 2, - ACTIONS(9132), 1, - sym_identifier, + [163881] = 2, + ACTIONS(4969), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164257] = 2, - ACTIONS(9134), 1, + [163889] = 2, + ACTIONS(9087), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164265] = 2, - ACTIONS(9136), 1, - anon_sym_RBRACK, + [163897] = 2, + ACTIONS(9089), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164273] = 2, - ACTIONS(9138), 1, - sym_identifier, + [163905] = 2, + ACTIONS(9091), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164281] = 2, - ACTIONS(9140), 1, - anon_sym_RBRACK, + [163913] = 2, + ACTIONS(9093), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164289] = 2, - ACTIONS(9142), 1, + [163921] = 2, + ACTIONS(9095), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164297] = 2, - ACTIONS(9144), 1, + [163929] = 2, + ACTIONS(9097), 1, anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164305] = 2, - ACTIONS(9146), 1, - anon_sym_COLON, + [163937] = 2, + ACTIONS(5187), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164313] = 2, - ACTIONS(9148), 1, - anon_sym_EQ, + [163945] = 2, + ACTIONS(9099), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164321] = 2, - ACTIONS(9150), 1, - anon_sym_EQ_GT, + [163953] = 2, + ACTIONS(9101), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164329] = 2, - ACTIONS(9152), 1, + [163961] = 2, + ACTIONS(9103), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164337] = 2, - ACTIONS(9154), 1, - anon_sym_RBRACK, + [163969] = 2, + ACTIONS(9105), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164345] = 2, - ACTIONS(9156), 1, - anon_sym_EQ_GT, + [163977] = 2, + ACTIONS(9107), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164353] = 2, - ACTIONS(5486), 1, + [163985] = 2, + ACTIONS(9109), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164361] = 2, - ACTIONS(9158), 1, + [163993] = 2, + ACTIONS(9111), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164369] = 2, - ACTIONS(5200), 1, - anon_sym_in, + [164001] = 2, + ACTIONS(9113), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164377] = 2, - ACTIONS(9160), 1, + [164009] = 2, + ACTIONS(9115), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164385] = 2, - ACTIONS(7879), 1, - anon_sym_EQ_GT, + [164017] = 2, + ACTIONS(9117), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164393] = 2, - ACTIONS(9162), 1, - anon_sym_EQ_GT, + [164025] = 2, + ACTIONS(9119), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164401] = 2, - ACTIONS(9164), 1, - anon_sym_RPAREN, + [164033] = 2, + ACTIONS(9121), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164409] = 2, - ACTIONS(9166), 1, - anon_sym_EQ_GT, + [164041] = 2, + ACTIONS(9123), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164417] = 2, - ACTIONS(9168), 1, - anon_sym_EQ_GT, + [164049] = 2, + ACTIONS(9125), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164425] = 2, - ACTIONS(9170), 1, - anon_sym_EQ_GT, + [164057] = 2, + ACTIONS(5372), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164433] = 2, - ACTIONS(9172), 1, + [164065] = 2, + ACTIONS(9127), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164073] = 2, + ACTIONS(9129), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9174), 1, - anon_sym_SLASH2, - [164451] = 2, - ACTIONS(9176), 1, + sym_comment, + [164081] = 2, + ACTIONS(9131), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164459] = 2, - ACTIONS(9178), 1, + [164089] = 2, + ACTIONS(9133), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164467] = 2, - ACTIONS(9180), 1, - anon_sym_EQ_GT, + [164097] = 2, + ACTIONS(9135), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164475] = 2, - ACTIONS(9182), 1, - anon_sym_RPAREN, + [164105] = 2, + ACTIONS(9137), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164483] = 2, - ACTIONS(9184), 1, - anon_sym_EQ_GT, + [164113] = 2, + ACTIONS(9139), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164491] = 2, - ACTIONS(9186), 1, - sym_identifier, + [164121] = 2, + ACTIONS(9141), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164499] = 2, - ACTIONS(9188), 1, - sym_identifier, + [164129] = 2, + ACTIONS(9143), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164507] = 2, - ACTIONS(9190), 1, - anon_sym_EQ_GT, + [164137] = 2, + ACTIONS(9145), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164515] = 2, - ACTIONS(9192), 1, - sym_identifier, + [164145] = 2, + ACTIONS(9147), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164523] = 2, - ACTIONS(9194), 1, - anon_sym_EQ, + [164153] = 2, + ACTIONS(9149), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164531] = 2, - ACTIONS(9196), 1, + [164161] = 2, + ACTIONS(9151), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164539] = 2, - ACTIONS(9198), 1, - anon_sym_EQ_GT, + [164169] = 2, + ACTIONS(9153), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164547] = 2, - ACTIONS(9200), 1, - anon_sym_LBRACE, + [164177] = 2, + ACTIONS(9155), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164555] = 2, - ACTIONS(5488), 1, - anon_sym_RPAREN, + [164185] = 2, + ACTIONS(9157), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164193] = 2, + ACTIONS(9159), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9202), 1, - sym_regex_pattern, - [164573] = 2, - ACTIONS(9204), 1, - anon_sym_RBRACK, + sym_comment, + [164201] = 2, + ACTIONS(9161), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164581] = 2, - ACTIONS(9206), 1, + [164209] = 2, + ACTIONS(9163), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164589] = 2, - ACTIONS(9208), 1, + [164217] = 2, + ACTIONS(9165), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164597] = 2, - ACTIONS(9210), 1, - anon_sym_COLON, + [164225] = 2, + ACTIONS(9167), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164605] = 2, - ACTIONS(9212), 1, + [164233] = 2, + ACTIONS(9169), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164613] = 2, - ACTIONS(9214), 1, - anon_sym_EQ, + [164241] = 2, + ACTIONS(9171), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164621] = 2, - ACTIONS(9216), 1, - anon_sym_DOT, + [164249] = 2, + ACTIONS(9173), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164629] = 2, - ACTIONS(8318), 1, + [164257] = 2, + ACTIONS(8236), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164637] = 2, - ACTIONS(9218), 1, + [164265] = 2, + ACTIONS(9175), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164645] = 2, - ACTIONS(9220), 1, - sym_identifier, + [164273] = 2, + ACTIONS(9177), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164653] = 2, - ACTIONS(9222), 1, - anon_sym_RBRACK, + [164281] = 2, + ACTIONS(9179), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164661] = 2, - ACTIONS(9224), 1, + [164289] = 2, + ACTIONS(9181), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164669] = 2, - ACTIONS(5367), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [164297] = 3, + ACTIONS(3), 1, sym_comment, - [164677] = 2, - ACTIONS(9226), 1, - anon_sym_EQ, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [164685] = 2, - ACTIONS(9228), 1, - sym_identifier, + ACTIONS(9183), 1, + sym_regex_pattern, + [164307] = 2, + ACTIONS(9185), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164693] = 2, - ACTIONS(5304), 1, - anon_sym_SEMI, + [164315] = 2, + ACTIONS(9187), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164701] = 2, - ACTIONS(9230), 1, - anon_sym_EQ_GT, + [164323] = 2, + ACTIONS(9189), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164709] = 2, - ACTIONS(9232), 1, - anon_sym_RBRACK, + [164331] = 2, + ACTIONS(9191), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164717] = 2, - ACTIONS(9234), 1, - sym_identifier, + [164339] = 2, + ACTIONS(9193), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164725] = 2, - ACTIONS(4881), 1, - anon_sym_RPAREN, + [164347] = 2, + ACTIONS(9195), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164733] = 2, - ACTIONS(9236), 1, - anon_sym_RBRACK, + [164355] = 2, + ACTIONS(4826), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164741] = 2, - ACTIONS(9238), 1, + [164363] = 2, + ACTIONS(9197), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164749] = 2, - ACTIONS(9240), 1, - anon_sym_RBRACK, + [164371] = 2, + ACTIONS(9199), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164757] = 2, - ACTIONS(9242), 1, - anon_sym_LPAREN, + [164379] = 2, + ACTIONS(9201), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164765] = 2, - ACTIONS(9244), 1, - sym_identifier, + [164387] = 2, + ACTIONS(9203), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164773] = 2, - ACTIONS(9246), 1, - anon_sym_as, + [164395] = 2, + ACTIONS(9205), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164781] = 2, - ACTIONS(9248), 1, - sym_identifier, + [164403] = 2, + ACTIONS(5326), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164789] = 2, - ACTIONS(8500), 1, + [164411] = 2, + ACTIONS(9207), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164797] = 2, - ACTIONS(9250), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164805] = 2, - ACTIONS(5490), 1, - anon_sym_SEMI, + [164419] = 2, + ACTIONS(9209), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164813] = 2, - ACTIONS(9252), 1, - anon_sym_new, + [164427] = 2, + ACTIONS(5455), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164821] = 2, - ACTIONS(9254), 1, + [164435] = 2, + ACTIONS(9211), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164829] = 2, - ACTIONS(9256), 1, - anon_sym_EQ_GT, + [164443] = 2, + ACTIONS(9213), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164837] = 2, - ACTIONS(9258), 1, + [164451] = 2, + ACTIONS(9215), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164845] = 2, - ACTIONS(9260), 1, + [164459] = 2, + ACTIONS(9217), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164853] = 2, - ACTIONS(6790), 1, - anon_sym_is, + [164467] = 2, + ACTIONS(9015), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164861] = 2, - ACTIONS(9262), 1, - anon_sym_class, - ACTIONS(5), 2, - sym_html_comment, + [164475] = 3, + ACTIONS(3), 1, sym_comment, - [164869] = 2, - ACTIONS(9264), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [164877] = 2, - ACTIONS(9266), 1, + ACTIONS(9219), 1, + anon_sym_SLASH2, + [164485] = 2, + ACTIONS(9221), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164885] = 2, - ACTIONS(9268), 1, + [164493] = 2, + ACTIONS(9223), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164893] = 2, - ACTIONS(9270), 1, - anon_sym_RBRACK, + [164501] = 2, + ACTIONS(9225), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164509] = 2, + ACTIONS(9227), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9272), 1, - anon_sym_SLASH2, - [164911] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9274), 1, - anon_sym_SLASH2, - [164921] = 2, - ACTIONS(9276), 1, - anon_sym_as, + [164517] = 2, + ACTIONS(9229), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164929] = 3, + [164525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9278), 1, + ACTIONS(9231), 1, sym_regex_pattern, - [164939] = 2, - ACTIONS(9280), 1, - anon_sym_from, + [164535] = 2, + ACTIONS(9233), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164947] = 2, - ACTIONS(9282), 1, - anon_sym_RBRACK, + [164543] = 2, + ACTIONS(9235), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164551] = 2, + ACTIONS(9237), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164955] = 2, - ACTIONS(9284), 1, + [164559] = 2, + ACTIONS(9239), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164963] = 2, - ACTIONS(9286), 1, + [164567] = 2, + ACTIONS(9241), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164971] = 2, - ACTIONS(5550), 1, - anon_sym_SEMI, + [164575] = 2, + ACTIONS(9243), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164979] = 2, - ACTIONS(9288), 1, - anon_sym_DOT, + [164583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9245), 1, + anon_sym_SLASH2, + [164593] = 2, + ACTIONS(9247), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164987] = 2, - ACTIONS(9290), 1, - sym_number, + [164601] = 2, + ACTIONS(5543), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164995] = 2, - ACTIONS(9292), 1, + [164609] = 2, + ACTIONS(9249), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165003] = 2, - ACTIONS(9294), 1, + [164617] = 2, + ACTIONS(9251), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165011] = 2, - ACTIONS(9296), 1, - sym_number, + [164625] = 2, + ACTIONS(9253), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165019] = 2, - ACTIONS(9298), 1, - anon_sym_EQ_GT, + [164633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9255), 1, + sym_regex_pattern, + [164643] = 2, + ACTIONS(9257), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165027] = 2, - ACTIONS(9300), 1, + [164651] = 2, + ACTIONS(9259), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165035] = 2, - ACTIONS(9302), 1, + [164659] = 2, + ACTIONS(9261), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165043] = 2, - ACTIONS(9304), 1, - sym_identifier, + [164667] = 2, + ACTIONS(9263), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164675] = 2, + ACTIONS(7217), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165051] = 2, - ACTIONS(9306), 1, + [164683] = 2, + ACTIONS(9265), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165059] = 2, - ACTIONS(7076), 1, + [164691] = 2, + ACTIONS(7059), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165067] = 2, - ACTIONS(9308), 1, - anon_sym_EQ_GT, + [164699] = 2, + ACTIONS(9267), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165075] = 2, - ACTIONS(9310), 1, + [164707] = 2, + ACTIONS(9269), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165083] = 2, - ACTIONS(9312), 1, - anon_sym_EQ_GT, + [164715] = 2, + ACTIONS(8334), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165091] = 2, - ACTIONS(7482), 1, + [164723] = 2, + ACTIONS(4920), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165099] = 2, - ACTIONS(5552), 1, + [164731] = 2, + ACTIONS(5545), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165107] = 2, - ACTIONS(9314), 1, + [164739] = 2, + ACTIONS(9271), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165115] = 2, - ACTIONS(9316), 1, + [164747] = 2, + ACTIONS(9273), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165123] = 2, - ACTIONS(9318), 1, + [164755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9275), 1, + anon_sym_SLASH2, + [164765] = 2, + ACTIONS(9277), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165131] = 2, - ACTIONS(9320), 1, - anon_sym_EQ_GT, + [164773] = 2, + ACTIONS(9279), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165139] = 2, - ACTIONS(9322), 1, - anon_sym_EQ_GT, + [164781] = 2, + ACTIONS(9281), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165147] = 2, - ACTIONS(6682), 1, - anon_sym_is, + [164789] = 2, + ACTIONS(5431), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165155] = 2, - ACTIONS(9324), 1, - anon_sym_EQ_GT, + [164797] = 2, + ACTIONS(9283), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165163] = 2, - ACTIONS(9326), 1, - anon_sym_target, + [164805] = 2, + ACTIONS(9285), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165171] = 2, - ACTIONS(9326), 1, - anon_sym_meta, + [164813] = 2, + ACTIONS(9287), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165179] = 2, - ACTIONS(9328), 1, + [164821] = 2, + ACTIONS(9289), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165187] = 2, - ACTIONS(8561), 1, - anon_sym_RBRACE, + [164829] = 2, + ACTIONS(9291), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165195] = 2, - ACTIONS(9330), 1, - sym_identifier, + [164837] = 2, + ACTIONS(9293), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165203] = 2, - ACTIONS(9332), 1, - anon_sym_RPAREN, + [164845] = 2, + ACTIONS(9295), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165211] = 2, - ACTIONS(9334), 1, - anon_sym_EQ_GT, + [164853] = 2, + ACTIONS(9297), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165219] = 2, - ACTIONS(9336), 1, - sym_identifier, + [164861] = 2, + ACTIONS(9299), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165227] = 2, - ACTIONS(9338), 1, + [164869] = 2, + ACTIONS(9301), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165235] = 2, - ACTIONS(9340), 1, - anon_sym_EQ_GT, + [164877] = 2, + ACTIONS(7745), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165243] = 2, - ACTIONS(7785), 1, - anon_sym_EQ, + [164885] = 2, + ACTIONS(9303), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165251] = 2, - ACTIONS(9342), 1, + [164893] = 2, + ACTIONS(9305), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165259] = 2, - ACTIONS(9344), 1, - sym_identifier, + [164901] = 2, + ACTIONS(9307), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165267] = 2, - ACTIONS(9346), 1, + [164909] = 2, + ACTIONS(9309), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165275] = 2, - ACTIONS(9348), 1, - sym_identifier, + [164917] = 2, + ACTIONS(9311), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165283] = 2, - ACTIONS(7176), 1, - anon_sym_is, + [164925] = 2, + ACTIONS(9313), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165291] = 2, - ACTIONS(5274), 1, - anon_sym_RPAREN, + [164933] = 2, + ACTIONS(9315), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165299] = 2, - ACTIONS(9350), 1, - sym_number, + [164941] = 2, + ACTIONS(9317), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165307] = 2, - ACTIONS(9352), 1, - sym_identifier, + [164949] = 2, + ACTIONS(9319), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165315] = 2, - ACTIONS(9354), 1, - anon_sym_RBRACK, + [164957] = 2, + ACTIONS(9321), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165323] = 2, - ACTIONS(9356), 1, - anon_sym_readonly, + [164965] = 2, + ACTIONS(9323), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165331] = 2, - ACTIONS(4091), 1, - anon_sym_is, + [164973] = 2, + ACTIONS(9325), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165339] = 2, - ACTIONS(9358), 1, - sym_number, + [164981] = 2, + ACTIONS(9327), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165347] = 2, - ACTIONS(9360), 1, + [164989] = 2, + ACTIONS(9329), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165355] = 2, - ACTIONS(5456), 1, - anon_sym_RPAREN, + [164997] = 2, + ACTIONS(9331), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165363] = 2, - ACTIONS(9362), 1, + [165005] = 2, + ACTIONS(9333), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165371] = 2, - ACTIONS(9364), 1, - sym_identifier, + [165013] = 2, + ACTIONS(9335), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165379] = 2, - ACTIONS(5620), 1, - anon_sym_in, + [165021] = 2, + ACTIONS(9337), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165387] = 2, - ACTIONS(9366), 1, - anon_sym_EQ_GT, + [165029] = 2, + ACTIONS(9339), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165395] = 2, - ACTIONS(5361), 1, + [165037] = 2, + ACTIONS(9341), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165403] = 2, - ACTIONS(9368), 1, - sym_identifier, + [165045] = 2, + ACTIONS(9343), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165411] = 2, - ACTIONS(9370), 1, - ts_builtin_sym_end, + [165053] = 2, + ACTIONS(9345), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165419] = 2, - ACTIONS(9372), 1, - anon_sym_EQ_GT, + [165061] = 2, + ACTIONS(9347), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165427] = 2, - ACTIONS(9374), 1, - anon_sym_symbol, + [165069] = 2, + ACTIONS(5457), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165435] = 2, - ACTIONS(9376), 1, - anon_sym_RBRACK, + [165077] = 2, + ACTIONS(5437), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165443] = 2, - ACTIONS(9378), 1, - anon_sym_RBRACK, + [165085] = 2, + ACTIONS(6688), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165451] = 2, - ACTIONS(9380), 1, + [165093] = 2, + ACTIONS(9349), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165459] = 2, - ACTIONS(9382), 1, - anon_sym_EQ_GT, + [165101] = 2, + ACTIONS(5439), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165467] = 2, - ACTIONS(9384), 1, + [165109] = 2, + ACTIONS(9351), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165475] = 2, - ACTIONS(9386), 1, + [165117] = 2, + ACTIONS(9353), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165483] = 2, - ACTIONS(9388), 1, - anon_sym_RBRACK, + [165125] = 2, + ACTIONS(9355), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165491] = 2, - ACTIONS(9390), 1, - anon_sym_RBRACK, + [165133] = 2, + ACTIONS(9357), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165499] = 2, - ACTIONS(9392), 1, - anon_sym_RBRACK, + [165141] = 2, + ACTIONS(9359), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165507] = 2, - ACTIONS(9394), 1, - anon_sym_EQ_GT, + [165149] = 2, + ACTIONS(8154), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165515] = 2, - ACTIONS(9396), 1, - anon_sym_RBRACK, + [165157] = 2, + ACTIONS(9361), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165523] = 2, - ACTIONS(9398), 1, - anon_sym_EQ_GT, + [165165] = 2, + ACTIONS(9363), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165531] = 2, - ACTIONS(9400), 1, - anon_sym_RBRACK, + [165173] = 2, + ACTIONS(9365), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165539] = 2, - ACTIONS(9402), 1, - anon_sym_RBRACK, + [165181] = 2, + ACTIONS(5215), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165547] = 2, - ACTIONS(9404), 1, + [165189] = 2, + ACTIONS(9367), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165555] = 2, - ACTIONS(9406), 1, - anon_sym_EQ_GT, + [165197] = 2, + ACTIONS(9315), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165563] = 2, - ACTIONS(9408), 1, - anon_sym_RBRACK, + [165205] = 2, + ACTIONS(9369), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165571] = 2, - ACTIONS(9410), 1, + [165213] = 2, + ACTIONS(9371), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165579] = 2, - ACTIONS(9412), 1, - anon_sym_RBRACK, + [165221] = 2, + ACTIONS(9373), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165587] = 2, - ACTIONS(9414), 1, + [165229] = 2, + ACTIONS(9375), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165595] = 2, - ACTIONS(9416), 1, + [165237] = 2, + ACTIONS(9377), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165603] = 2, - ACTIONS(9418), 1, + [165245] = 2, + ACTIONS(9379), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165611] = 2, - ACTIONS(9420), 1, - anon_sym_EQ_GT, + [165253] = 2, + ACTIONS(9381), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165619] = 2, - ACTIONS(9422), 1, + [165261] = 2, + ACTIONS(8162), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165627] = 2, - ACTIONS(9424), 1, - anon_sym_RBRACK, + [165269] = 2, + ACTIONS(4907), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165635] = 2, - ACTIONS(9426), 1, - anon_sym_RBRACK, + [165277] = 2, + ACTIONS(9383), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165643] = 2, - ACTIONS(9428), 1, + [165285] = 2, + ACTIONS(9385), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165651] = 2, - ACTIONS(9430), 1, - anon_sym_RBRACK, + [165293] = 2, + ACTIONS(7677), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165659] = 2, - ACTIONS(5462), 1, + [165301] = 2, + ACTIONS(5445), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165667] = 2, - ACTIONS(9432), 1, - anon_sym_RBRACK, + [165309] = 2, + ACTIONS(5600), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165675] = 2, - ACTIONS(5464), 1, - anon_sym_RPAREN, + [165317] = 2, + ACTIONS(9387), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165683] = 2, - ACTIONS(9434), 1, - anon_sym_EQ_GT, + [165325] = 2, + ACTIONS(9389), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165691] = 2, - ACTIONS(8394), 1, - anon_sym_RBRACE, + [165333] = 2, + ACTIONS(9391), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165699] = 2, - ACTIONS(9436), 1, + [165341] = 2, + ACTIONS(9393), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165707] = 2, - ACTIONS(9438), 1, - anon_sym_symbol, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165715] = 2, - ACTIONS(9440), 1, + [165349] = 2, + ACTIONS(9395), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165723] = 2, - ACTIONS(9442), 1, - anon_sym_RBRACK, + [165357] = 2, + ACTIONS(9397), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165731] = 2, - ACTIONS(9444), 1, + [165365] = 2, + ACTIONS(9399), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165739] = 2, - ACTIONS(9446), 1, - anon_sym_RBRACK, + [165373] = 2, + ACTIONS(9401), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165747] = 2, - ACTIONS(9448), 1, + [165381] = 2, + ACTIONS(9403), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165755] = 2, - ACTIONS(9450), 1, + [165389] = 2, + ACTIONS(9405), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165763] = 2, - ACTIONS(9452), 1, + [165397] = 2, + ACTIONS(9407), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165771] = 2, - ACTIONS(5470), 1, - anon_sym_RPAREN, + [165405] = 2, + ACTIONS(9409), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165779] = 2, - ACTIONS(8386), 1, - anon_sym_LBRACE, + [165413] = 2, + ACTIONS(9411), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165787] = 2, - ACTIONS(9454), 1, + [165421] = 2, + ACTIONS(9413), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165795] = 2, - ACTIONS(9456), 1, + [165429] = 2, + ACTIONS(9415), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165803] = 2, - ACTIONS(4959), 1, + [165437] = 2, + ACTIONS(4948), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165811] = 2, - ACTIONS(9458), 1, - anon_sym_new, + [165445] = 2, + ACTIONS(9417), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165819] = 2, - ACTIONS(9460), 1, - anon_sym_RBRACK, + [165453] = 2, + ACTIONS(9419), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165827] = 2, - ACTIONS(9462), 1, + [165461] = 2, + ACTIONS(9421), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165835] = 2, - ACTIONS(9464), 1, - sym_identifier, + [165469] = 2, + ACTIONS(9423), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165843] = 2, - ACTIONS(9466), 1, + [165477] = 2, + ACTIONS(9425), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165851] = 2, - ACTIONS(9468), 1, - sym_identifier, + [165485] = 2, + ACTIONS(4897), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165859] = 2, - ACTIONS(9470), 1, + [165493] = 2, + ACTIONS(9427), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165867] = 2, - ACTIONS(9472), 1, + [165501] = 2, + ACTIONS(9429), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165875] = 2, - ACTIONS(9474), 1, - anon_sym_RBRACK, + [165509] = 2, + ACTIONS(9431), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165883] = 2, - ACTIONS(9476), 1, + [165517] = 2, + ACTIONS(9433), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165891] = 2, - ACTIONS(9478), 1, + [165525] = 2, + ACTIONS(9435), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165899] = 2, - ACTIONS(9480), 1, - anon_sym_RBRACK, + [165533] = 2, + ACTIONS(4871), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165907] = 2, - ACTIONS(9482), 1, + [165541] = 2, + ACTIONS(9437), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165915] = 2, - ACTIONS(9484), 1, - anon_sym_RBRACK, + [165549] = 2, + ACTIONS(9439), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165923] = 2, - ACTIONS(9486), 1, - anon_sym_RBRACK, + [165557] = 2, + ACTIONS(9441), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165931] = 2, - ACTIONS(5532), 1, - anon_sym_RBRACE, + [165565] = 2, + ACTIONS(9443), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165939] = 2, - ACTIONS(9488), 1, - anon_sym_EQ, + [165573] = 2, + ACTIONS(9445), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165947] = 2, - ACTIONS(9490), 1, + [165581] = 2, + ACTIONS(9447), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165955] = 2, - ACTIONS(9492), 1, - anon_sym_RBRACK, + [165589] = 2, + ACTIONS(9449), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165963] = 2, - ACTIONS(9494), 1, + [165597] = 2, + ACTIONS(9451), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165971] = 2, - ACTIONS(9496), 1, + [165605] = 2, + ACTIONS(9453), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165979] = 2, - ACTIONS(9498), 1, - anon_sym_EQ, + [165613] = 2, + ACTIONS(5825), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165987] = 2, - ACTIONS(9500), 1, - sym_identifier, + [165621] = 2, + ACTIONS(9455), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165995] = 2, - ACTIONS(9502), 1, - anon_sym_RBRACK, + [165629] = 2, + ACTIONS(8590), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166003] = 2, - ACTIONS(9504), 1, - anon_sym_RBRACK, + [165637] = 2, + ACTIONS(9457), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166011] = 2, - ACTIONS(9506), 1, + [165645] = 2, + ACTIONS(9459), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166019] = 2, - ACTIONS(9508), 1, + [165653] = 2, + ACTIONS(9461), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166027] = 2, - ACTIONS(9510), 1, - sym_identifier, + [165661] = 2, + ACTIONS(9463), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166035] = 2, - ACTIONS(9512), 1, - anon_sym_symbol, + [165669] = 2, + ACTIONS(9465), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166043] = 2, - ACTIONS(9514), 1, + [165677] = 2, + ACTIONS(9467), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166051] = 2, - ACTIONS(9516), 1, - anon_sym_DOT, + [165685] = 2, + ACTIONS(9469), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166059] = 2, - ACTIONS(5824), 1, - anon_sym_in, + [165693] = 2, + ACTIONS(9471), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166067] = 2, - ACTIONS(9518), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [165701] = 3, + ACTIONS(3), 1, sym_comment, - [166075] = 2, - ACTIONS(9520), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9473), 1, + anon_sym_SLASH2, + [165711] = 2, + ACTIONS(9475), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166083] = 2, - ACTIONS(9522), 1, + [165719] = 2, + ACTIONS(9477), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166091] = 2, - ACTIONS(9524), 1, - sym_identifier, + [165727] = 2, + ACTIONS(9479), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166099] = 2, - ACTIONS(9526), 1, + [165735] = 2, + ACTIONS(9481), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166107] = 2, - ACTIONS(9528), 1, + [165743] = 2, + ACTIONS(9483), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166115] = 2, - ACTIONS(9530), 1, - anon_sym_COLON, + [165751] = 2, + ACTIONS(9485), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166123] = 2, - ACTIONS(9532), 1, - anon_sym_EQ_GT, + [165759] = 2, + ACTIONS(9487), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166131] = 2, - ACTIONS(7504), 1, - anon_sym_RPAREN, + [165767] = 2, + ACTIONS(9489), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166139] = 2, - ACTIONS(9534), 1, + [165775] = 2, + ACTIONS(9491), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166147] = 2, - ACTIONS(9536), 1, - sym_identifier, + [165783] = 2, + ACTIONS(9493), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166155] = 2, - ACTIONS(9538), 1, - anon_sym_EQ_GT, + [165791] = 2, + ACTIONS(7422), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166163] = 2, - ACTIONS(8794), 1, - anon_sym_from, + [165799] = 2, + ACTIONS(9495), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166171] = 2, - ACTIONS(9540), 1, - sym_identifier, + [165807] = 2, + ACTIONS(9497), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166179] = 2, - ACTIONS(9542), 1, + [165815] = 2, + ACTIONS(9499), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166187] = 2, - ACTIONS(9544), 1, + [165823] = 2, + ACTIONS(9501), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166195] = 2, - ACTIONS(9546), 1, - anon_sym_RBRACK, + [165831] = 2, + ACTIONS(7377), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166203] = 2, - ACTIONS(9548), 1, - anon_sym_EQ, + [165839] = 2, + ACTIONS(9503), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166211] = 2, - ACTIONS(9550), 1, - anon_sym_EQ_GT, + [165847] = 2, + ACTIONS(9505), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166219] = 2, - ACTIONS(9552), 1, - anon_sym_symbol, + [165855] = 2, + ACTIONS(9507), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166227] = 2, - ACTIONS(4837), 1, - anon_sym_in, + [165863] = 2, + ACTIONS(9509), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9554), 1, - anon_sym_SLASH2, - [166245] = 2, - ACTIONS(9556), 1, - anon_sym_EQ, + [165871] = 2, + ACTIONS(9511), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166253] = 2, - ACTIONS(9558), 1, + [165879] = 2, + ACTIONS(9513), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166261] = 2, - ACTIONS(9560), 1, - anon_sym_namespace, + [165887] = 2, + ACTIONS(9515), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166269] = 2, - ACTIONS(9562), 1, + [165895] = 2, + ACTIONS(6104), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166277] = 2, - ACTIONS(9564), 1, + [165903] = 2, + ACTIONS(9517), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165911] = 2, + ACTIONS(9519), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166285] = 2, - ACTIONS(9566), 1, - anon_sym_EQ_GT, + [165919] = 2, + ACTIONS(9521), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166293] = 2, - ACTIONS(9568), 1, + [165927] = 2, + ACTIONS(9523), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166301] = 2, - ACTIONS(9570), 1, + [165935] = 2, + ACTIONS(9525), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166309] = 2, - ACTIONS(9572), 1, + [165943] = 2, + ACTIONS(9527), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166317] = 2, - ACTIONS(9574), 1, + [165951] = 2, + ACTIONS(9529), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166325] = 2, - ACTIONS(9576), 1, + [165959] = 2, + ACTIONS(9531), 1, anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166333] = 2, - ACTIONS(9578), 1, - anon_sym_EQ, + [165967] = 2, + ACTIONS(9533), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166341] = 2, - ACTIONS(9018), 1, - anon_sym_meta, + [165975] = 2, + ACTIONS(5370), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166349] = 2, - ACTIONS(6127), 1, - anon_sym_EQ_GT, + [165983] = 2, + ACTIONS(9535), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166357] = 2, - ACTIONS(9580), 1, - anon_sym_EQ_GT, + [165991] = 2, + ACTIONS(5401), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166365] = 2, - ACTIONS(7837), 1, + [165999] = 2, + ACTIONS(7817), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166373] = 2, - ACTIONS(9582), 1, + [166007] = 2, + ACTIONS(9537), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166381] = 2, - ACTIONS(4907), 1, - anon_sym_in, + [166015] = 2, + ACTIONS(9539), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166389] = 2, - ACTIONS(4875), 1, - anon_sym_is, + [166023] = 2, + ACTIONS(9541), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166397] = 2, - ACTIONS(9584), 1, + [166031] = 2, + ACTIONS(9543), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166405] = 2, - ACTIONS(9586), 1, + [166039] = 2, + ACTIONS(9545), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166413] = 2, - ACTIONS(9588), 1, - sym_identifier, + [166047] = 2, + ACTIONS(8615), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166421] = 2, - ACTIONS(9590), 1, - anon_sym_RPAREN, + [166055] = 2, + ACTIONS(9547), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166429] = 2, - ACTIONS(4931), 1, - anon_sym_RPAREN, + [166063] = 2, + ACTIONS(9549), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166437] = 2, - ACTIONS(9592), 1, + [166071] = 2, + ACTIONS(9551), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166445] = 2, - ACTIONS(5578), 1, - anon_sym_RBRACK, + [166079] = 2, + ACTIONS(9553), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166453] = 2, - ACTIONS(5592), 1, + [166087] = 2, + ACTIONS(5519), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166461] = 2, - ACTIONS(9594), 1, - anon_sym_RBRACK, + [166095] = 2, + ACTIONS(9555), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166469] = 2, - ACTIONS(9596), 1, - anon_sym_RBRACK, + [166103] = 2, + ACTIONS(9557), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166477] = 2, - ACTIONS(9598), 1, - sym_identifier, + [166111] = 2, + ACTIONS(9559), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166485] = 2, - ACTIONS(9600), 1, - anon_sym_EQ_GT, + [166119] = 2, + ACTIONS(8427), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166493] = 2, - ACTIONS(9602), 1, + [166127] = 2, + ACTIONS(9561), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166501] = 2, - ACTIONS(9604), 1, + [166135] = 2, + ACTIONS(9563), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166509] = 2, - ACTIONS(9606), 1, - anon_sym_DOT, + [166143] = 2, + ACTIONS(9565), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166517] = 2, - ACTIONS(9608), 1, - anon_sym_EQ_GT, + [166151] = 2, + ACTIONS(9567), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166525] = 2, - ACTIONS(9610), 1, - anon_sym_RPAREN, + [166159] = 2, + ACTIONS(9569), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166533] = 2, - ACTIONS(9612), 1, - anon_sym_RPAREN, + [166167] = 2, + ACTIONS(9571), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166541] = 2, - ACTIONS(7727), 1, + [166175] = 2, + ACTIONS(9573), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166549] = 2, - ACTIONS(9614), 1, - sym_identifier, + [166183] = 2, + ACTIONS(6487), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166557] = 2, - ACTIONS(9616), 1, - anon_sym_EQ_GT, + [166191] = 2, + ACTIONS(9575), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166565] = 2, - ACTIONS(9618), 1, - anon_sym_RBRACK, + [166199] = 2, + ACTIONS(9577), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166573] = 2, - ACTIONS(9620), 1, + [166207] = 2, + ACTIONS(9579), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166581] = 2, - ACTIONS(9622), 1, + [166215] = 2, + ACTIONS(9581), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166589] = 2, - ACTIONS(9624), 1, - anon_sym_EQ, + [166223] = 2, + ACTIONS(9583), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166597] = 2, - ACTIONS(9626), 1, - anon_sym_LBRACK, + [166231] = 2, + ACTIONS(9585), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166605] = 2, - ACTIONS(4926), 1, - anon_sym_RPAREN, + [166239] = 2, + ACTIONS(9587), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166613] = 2, - ACTIONS(9628), 1, - anon_sym_class, + [166247] = 2, + ACTIONS(9589), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -275090,4693 +272960,4681 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1193)] = 0, [SMALL_STATE(1194)] = 93, - [SMALL_STATE(1195)] = 164, - [SMALL_STATE(1196)] = 259, - [SMALL_STATE(1197)] = 352, - [SMALL_STATE(1198)] = 443, - [SMALL_STATE(1199)] = 514, - [SMALL_STATE(1200)] = 585, - [SMALL_STATE(1201)] = 674, - [SMALL_STATE(1202)] = 763, - [SMALL_STATE(1203)] = 834, - [SMALL_STATE(1204)] = 925, - [SMALL_STATE(1205)] = 996, - [SMALL_STATE(1206)] = 1069, - [SMALL_STATE(1207)] = 1142, - [SMALL_STATE(1208)] = 1231, - [SMALL_STATE(1209)] = 1324, - [SMALL_STATE(1210)] = 1417, + [SMALL_STATE(1195)] = 186, + [SMALL_STATE(1196)] = 281, + [SMALL_STATE(1197)] = 374, + [SMALL_STATE(1198)] = 445, + [SMALL_STATE(1199)] = 516, + [SMALL_STATE(1200)] = 587, + [SMALL_STATE(1201)] = 658, + [SMALL_STATE(1202)] = 747, + [SMALL_STATE(1203)] = 820, + [SMALL_STATE(1204)] = 913, + [SMALL_STATE(1205)] = 1004, + [SMALL_STATE(1206)] = 1077, + [SMALL_STATE(1207)] = 1148, + [SMALL_STATE(1208)] = 1219, + [SMALL_STATE(1209)] = 1308, + [SMALL_STATE(1210)] = 1397, [SMALL_STATE(1211)] = 1488, [SMALL_STATE(1212)] = 1577, [SMALL_STATE(1213)] = 1648, - [SMALL_STATE(1214)] = 1740, - [SMALL_STATE(1215)] = 1830, - [SMALL_STATE(1216)] = 1920, - [SMALL_STATE(1217)] = 1990, - [SMALL_STATE(1218)] = 2080, - [SMALL_STATE(1219)] = 2166, - [SMALL_STATE(1220)] = 2254, - [SMALL_STATE(1221)] = 2342, - [SMALL_STATE(1222)] = 2412, - [SMALL_STATE(1223)] = 2500, - [SMALL_STATE(1224)] = 2586, - [SMALL_STATE(1225)] = 2674, - [SMALL_STATE(1226)] = 2762, - [SMALL_STATE(1227)] = 2852, - [SMALL_STATE(1228)] = 2942, - [SMALL_STATE(1229)] = 3016, - [SMALL_STATE(1230)] = 3106, + [SMALL_STATE(1214)] = 1722, + [SMALL_STATE(1215)] = 1812, + [SMALL_STATE(1216)] = 1902, + [SMALL_STATE(1217)] = 1992, + [SMALL_STATE(1218)] = 2062, + [SMALL_STATE(1219)] = 2150, + [SMALL_STATE(1220)] = 2220, + [SMALL_STATE(1221)] = 2308, + [SMALL_STATE(1222)] = 2394, + [SMALL_STATE(1223)] = 2480, + [SMALL_STATE(1224)] = 2572, + [SMALL_STATE(1225)] = 2660, + [SMALL_STATE(1226)] = 2750, + [SMALL_STATE(1227)] = 2838, + [SMALL_STATE(1228)] = 2928, + [SMALL_STATE(1229)] = 3018, + [SMALL_STATE(1230)] = 3110, [SMALL_STATE(1231)] = 3198, [SMALL_STATE(1232)] = 3290, [SMALL_STATE(1233)] = 3380, [SMALL_STATE(1234)] = 3470, [SMALL_STATE(1235)] = 3557, - [SMALL_STATE(1236)] = 3652, - [SMALL_STATE(1237)] = 3739, - [SMALL_STATE(1238)] = 3830, - [SMALL_STATE(1239)] = 3917, - [SMALL_STATE(1240)] = 4004, - [SMALL_STATE(1241)] = 4091, - [SMALL_STATE(1242)] = 4178, - [SMALL_STATE(1243)] = 4269, - [SMALL_STATE(1244)] = 4358, - [SMALL_STATE(1245)] = 4447, - [SMALL_STATE(1246)] = 4538, - [SMALL_STATE(1247)] = 4625, + [SMALL_STATE(1236)] = 3644, + [SMALL_STATE(1237)] = 3731, + [SMALL_STATE(1238)] = 3818, + [SMALL_STATE(1239)] = 3905, + [SMALL_STATE(1240)] = 3992, + [SMALL_STATE(1241)] = 4079, + [SMALL_STATE(1242)] = 4174, + [SMALL_STATE(1243)] = 4263, + [SMALL_STATE(1244)] = 4354, + [SMALL_STATE(1245)] = 4445, + [SMALL_STATE(1246)] = 4534, + [SMALL_STATE(1247)] = 4613, [SMALL_STATE(1248)] = 4704, - [SMALL_STATE(1249)] = 4782, - [SMALL_STATE(1250)] = 4872, - [SMALL_STATE(1251)] = 4958, - [SMALL_STATE(1252)] = 5044, + [SMALL_STATE(1249)] = 4790, + [SMALL_STATE(1250)] = 4880, + [SMALL_STATE(1251)] = 4966, + [SMALL_STATE(1252)] = 5052, [SMALL_STATE(1253)] = 5130, - [SMALL_STATE(1254)] = 5198, - [SMALL_STATE(1255)] = 5284, - [SMALL_STATE(1256)] = 5362, - [SMALL_STATE(1257)] = 5448, - [SMALL_STATE(1258)] = 5524, - [SMALL_STATE(1259)] = 5610, - [SMALL_STATE(1260)] = 5688, - [SMALL_STATE(1261)] = 5778, - [SMALL_STATE(1262)] = 5864, - [SMALL_STATE(1263)] = 5938, - [SMALL_STATE(1264)] = 6016, - [SMALL_STATE(1265)] = 6096, - [SMALL_STATE(1266)] = 6186, - [SMALL_STATE(1267)] = 6254, - [SMALL_STATE(1268)] = 6340, - [SMALL_STATE(1269)] = 6432, - [SMALL_STATE(1270)] = 6522, - [SMALL_STATE(1271)] = 6608, - [SMALL_STATE(1272)] = 6694, - [SMALL_STATE(1273)] = 6786, - [SMALL_STATE(1274)] = 6872, - [SMALL_STATE(1275)] = 6958, - [SMALL_STATE(1276)] = 7044, - [SMALL_STATE(1277)] = 7130, - [SMALL_STATE(1278)] = 7220, - [SMALL_STATE(1279)] = 7300, - [SMALL_STATE(1280)] = 7389, - [SMALL_STATE(1281)] = 7476, - [SMALL_STATE(1282)] = 7551, - [SMALL_STATE(1283)] = 7628, - [SMALL_STATE(1284)] = 7697, - [SMALL_STATE(1285)] = 7764, - [SMALL_STATE(1286)] = 7849, - [SMALL_STATE(1287)] = 7916, - [SMALL_STATE(1288)] = 7985, - [SMALL_STATE(1289)] = 8074, - [SMALL_STATE(1290)] = 8147, - [SMALL_STATE(1291)] = 8216, - [SMALL_STATE(1292)] = 8299, - [SMALL_STATE(1293)] = 8384, - [SMALL_STATE(1294)] = 8473, - [SMALL_STATE(1295)] = 8552, - [SMALL_STATE(1296)] = 8625, - [SMALL_STATE(1297)] = 8694, - [SMALL_STATE(1298)] = 8761, - [SMALL_STATE(1299)] = 8846, - [SMALL_STATE(1300)] = 8913, - [SMALL_STATE(1301)] = 8996, - [SMALL_STATE(1302)] = 9085, - [SMALL_STATE(1303)] = 9160, - [SMALL_STATE(1304)] = 9239, - [SMALL_STATE(1305)] = 9328, - [SMALL_STATE(1306)] = 9401, - [SMALL_STATE(1307)] = 9474, - [SMALL_STATE(1308)] = 9563, - [SMALL_STATE(1309)] = 9640, - [SMALL_STATE(1310)] = 9718, - [SMALL_STATE(1311)] = 9786, - [SMALL_STATE(1312)] = 9852, - [SMALL_STATE(1313)] = 9930, - [SMALL_STATE(1314)] = 10012, - [SMALL_STATE(1315)] = 10088, - [SMALL_STATE(1316)] = 10168, - [SMALL_STATE(1317)] = 10246, - [SMALL_STATE(1318)] = 10312, - [SMALL_STATE(1319)] = 10386, - [SMALL_STATE(1320)] = 10452, - [SMALL_STATE(1321)] = 10528, - [SMALL_STATE(1322)] = 10602, - [SMALL_STATE(1323)] = 10676, - [SMALL_STATE(1324)] = 10748, - [SMALL_STATE(1325)] = 10818, - [SMALL_STATE(1326)] = 10888, - [SMALL_STATE(1327)] = 10968, - [SMALL_STATE(1328)] = 11042, - [SMALL_STATE(1329)] = 11118, - [SMALL_STATE(1330)] = 11184, - [SMALL_STATE(1331)] = 11256, - [SMALL_STATE(1332)] = 11328, - [SMALL_STATE(1333)] = 11394, - [SMALL_STATE(1334)] = 11460, - [SMALL_STATE(1335)] = 11532, - [SMALL_STATE(1336)] = 11598, - [SMALL_STATE(1337)] = 11666, - [SMALL_STATE(1338)] = 11750, - [SMALL_STATE(1339)] = 11838, - [SMALL_STATE(1340)] = 11904, - [SMALL_STATE(1341)] = 11988, - [SMALL_STATE(1342)] = 12060, - [SMALL_STATE(1343)] = 12126, - [SMALL_STATE(1344)] = 12198, - [SMALL_STATE(1345)] = 12286, - [SMALL_STATE(1346)] = 12358, - [SMALL_STATE(1347)] = 12442, - [SMALL_STATE(1348)] = 12514, - [SMALL_STATE(1349)] = 12598, - [SMALL_STATE(1350)] = 12671, - [SMALL_STATE(1351)] = 12738, - [SMALL_STATE(1352)] = 12811, - [SMALL_STATE(1353)] = 12882, - [SMALL_STATE(1354)] = 12951, - [SMALL_STATE(1355)] = 13020, - [SMALL_STATE(1356)] = 13099, - [SMALL_STATE(1357)] = 13172, - [SMALL_STATE(1358)] = 13245, - [SMALL_STATE(1359)] = 13316, - [SMALL_STATE(1360)] = 13393, - [SMALL_STATE(1361)] = 13468, - [SMALL_STATE(1362)] = 13539, - [SMALL_STATE(1363)] = 13616, - [SMALL_STATE(1364)] = 13689, - [SMALL_STATE(1365)] = 13758, - [SMALL_STATE(1366)] = 13825, - [SMALL_STATE(1367)] = 13896, - [SMALL_STATE(1368)] = 13967, - [SMALL_STATE(1369)] = 14044, - [SMALL_STATE(1370)] = 14119, - [SMALL_STATE(1371)] = 14192, - [SMALL_STATE(1372)] = 14269, - [SMALL_STATE(1373)] = 14352, - [SMALL_STATE(1374)] = 14423, - [SMALL_STATE(1375)] = 14494, - [SMALL_STATE(1376)] = 14567, - [SMALL_STATE(1377)] = 14644, - [SMALL_STATE(1378)] = 14715, - [SMALL_STATE(1379)] = 14784, - [SMALL_STATE(1380)] = 14904, - [SMALL_STATE(1381)] = 14974, - [SMALL_STATE(1382)] = 15042, - [SMALL_STATE(1383)] = 15118, - [SMALL_STATE(1384)] = 15190, - [SMALL_STATE(1385)] = 15264, - [SMALL_STATE(1386)] = 15330, - [SMALL_STATE(1387)] = 15402, - [SMALL_STATE(1388)] = 15522, - [SMALL_STATE(1389)] = 15642, - [SMALL_STATE(1390)] = 15762, - [SMALL_STATE(1391)] = 15828, - [SMALL_STATE(1392)] = 15896, - [SMALL_STATE(1393)] = 15966, - [SMALL_STATE(1394)] = 16040, - [SMALL_STATE(1395)] = 16112, - [SMALL_STATE(1396)] = 16186, - [SMALL_STATE(1397)] = 16306, - [SMALL_STATE(1398)] = 16380, - [SMALL_STATE(1399)] = 16450, - [SMALL_STATE(1400)] = 16520, - [SMALL_STATE(1401)] = 16590, - [SMALL_STATE(1402)] = 16710, - [SMALL_STATE(1403)] = 16779, - [SMALL_STATE(1404)] = 16848, - [SMALL_STATE(1405)] = 16917, - [SMALL_STATE(1406)] = 16986, - [SMALL_STATE(1407)] = 17059, - [SMALL_STATE(1408)] = 17128, - [SMALL_STATE(1409)] = 17197, - [SMALL_STATE(1410)] = 17266, - [SMALL_STATE(1411)] = 17335, - [SMALL_STATE(1412)] = 17406, - [SMALL_STATE(1413)] = 17477, - [SMALL_STATE(1414)] = 17546, - [SMALL_STATE(1415)] = 17615, - [SMALL_STATE(1416)] = 17684, - [SMALL_STATE(1417)] = 17753, - [SMALL_STATE(1418)] = 17820, - [SMALL_STATE(1419)] = 17893, - [SMALL_STATE(1420)] = 18009, - [SMALL_STATE(1421)] = 18077, - [SMALL_STATE(1422)] = 18145, - [SMALL_STATE(1423)] = 18261, - [SMALL_STATE(1424)] = 18329, - [SMALL_STATE(1425)] = 18445, - [SMALL_STATE(1426)] = 18561, - [SMALL_STATE(1427)] = 18629, - [SMALL_STATE(1428)] = 18697, - [SMALL_STATE(1429)] = 18813, - [SMALL_STATE(1430)] = 18929, - [SMALL_STATE(1431)] = 18997, - [SMALL_STATE(1432)] = 19065, - [SMALL_STATE(1433)] = 19133, - [SMALL_STATE(1434)] = 19249, - [SMALL_STATE(1435)] = 19317, - [SMALL_STATE(1436)] = 19433, - [SMALL_STATE(1437)] = 19549, - [SMALL_STATE(1438)] = 19617, - [SMALL_STATE(1439)] = 19685, - [SMALL_STATE(1440)] = 19753, - [SMALL_STATE(1441)] = 19869, - [SMALL_STATE(1442)] = 19985, - [SMALL_STATE(1443)] = 20053, - [SMALL_STATE(1444)] = 20121, - [SMALL_STATE(1445)] = 20237, - [SMALL_STATE(1446)] = 20353, - [SMALL_STATE(1447)] = 20421, - [SMALL_STATE(1448)] = 20489, - [SMALL_STATE(1449)] = 20557, - [SMALL_STATE(1450)] = 20627, - [SMALL_STATE(1451)] = 20695, - [SMALL_STATE(1452)] = 20763, - [SMALL_STATE(1453)] = 20831, - [SMALL_STATE(1454)] = 20899, - [SMALL_STATE(1455)] = 20967, - [SMALL_STATE(1456)] = 21083, - [SMALL_STATE(1457)] = 21199, - [SMALL_STATE(1458)] = 21265, - [SMALL_STATE(1459)] = 21381, - [SMALL_STATE(1460)] = 21447, - [SMALL_STATE(1461)] = 21515, - [SMALL_STATE(1462)] = 21581, - [SMALL_STATE(1463)] = 21697, - [SMALL_STATE(1464)] = 21813, - [SMALL_STATE(1465)] = 21878, - [SMALL_STATE(1466)] = 21943, - [SMALL_STATE(1467)] = 22008, - [SMALL_STATE(1468)] = 22073, - [SMALL_STATE(1469)] = 22138, - [SMALL_STATE(1470)] = 22203, - [SMALL_STATE(1471)] = 22268, - [SMALL_STATE(1472)] = 22333, - [SMALL_STATE(1473)] = 22398, - [SMALL_STATE(1474)] = 22463, - [SMALL_STATE(1475)] = 22575, - [SMALL_STATE(1476)] = 22687, - [SMALL_STATE(1477)] = 22799, - [SMALL_STATE(1478)] = 22911, - [SMALL_STATE(1479)] = 23023, - [SMALL_STATE(1480)] = 23135, - [SMALL_STATE(1481)] = 23247, - [SMALL_STATE(1482)] = 23358, - [SMALL_STATE(1483)] = 23477, - [SMALL_STATE(1484)] = 23596, - [SMALL_STATE(1485)] = 23715, - [SMALL_STATE(1486)] = 23826, - [SMALL_STATE(1487)] = 23945, - [SMALL_STATE(1488)] = 24056, - [SMALL_STATE(1489)] = 24167, - [SMALL_STATE(1490)] = 24278, - [SMALL_STATE(1491)] = 24389, - [SMALL_STATE(1492)] = 24500, - [SMALL_STATE(1493)] = 24611, - [SMALL_STATE(1494)] = 24730, - [SMALL_STATE(1495)] = 24841, - [SMALL_STATE(1496)] = 24952, - [SMALL_STATE(1497)] = 25063, - [SMALL_STATE(1498)] = 25165, - [SMALL_STATE(1499)] = 25267, - [SMALL_STATE(1500)] = 25369, - [SMALL_STATE(1501)] = 25471, - [SMALL_STATE(1502)] = 25573, - [SMALL_STATE(1503)] = 25651, - [SMALL_STATE(1504)] = 25753, - [SMALL_STATE(1505)] = 25810, - [SMALL_STATE(1506)] = 25877, - [SMALL_STATE(1507)] = 25944, - [SMALL_STATE(1508)] = 26053, - [SMALL_STATE(1509)] = 26164, - [SMALL_STATE(1510)] = 26231, - [SMALL_STATE(1511)] = 26296, - [SMALL_STATE(1512)] = 26353, - [SMALL_STATE(1513)] = 26421, - [SMALL_STATE(1514)] = 26479, - [SMALL_STATE(1515)] = 26537, - [SMALL_STATE(1516)] = 26597, - [SMALL_STATE(1517)] = 26653, - [SMALL_STATE(1518)] = 26715, - [SMALL_STATE(1519)] = 26771, - [SMALL_STATE(1520)] = 26829, - [SMALL_STATE(1521)] = 26885, - [SMALL_STATE(1522)] = 26945, - [SMALL_STATE(1523)] = 27001, - [SMALL_STATE(1524)] = 27095, - [SMALL_STATE(1525)] = 27151, - [SMALL_STATE(1526)] = 27207, - [SMALL_STATE(1527)] = 27269, - [SMALL_STATE(1528)] = 27325, - [SMALL_STATE(1529)] = 27380, - [SMALL_STATE(1530)] = 27435, - [SMALL_STATE(1531)] = 27490, - [SMALL_STATE(1532)] = 27545, - [SMALL_STATE(1533)] = 27608, - [SMALL_STATE(1534)] = 27663, - [SMALL_STATE(1535)] = 27718, - [SMALL_STATE(1536)] = 27773, - [SMALL_STATE(1537)] = 27828, - [SMALL_STATE(1538)] = 27885, - [SMALL_STATE(1539)] = 27940, - [SMALL_STATE(1540)] = 27995, - [SMALL_STATE(1541)] = 28050, - [SMALL_STATE(1542)] = 28105, - [SMALL_STATE(1543)] = 28160, - [SMALL_STATE(1544)] = 28215, - [SMALL_STATE(1545)] = 28270, - [SMALL_STATE(1546)] = 28329, - [SMALL_STATE(1547)] = 28384, - [SMALL_STATE(1548)] = 28439, - [SMALL_STATE(1549)] = 28494, - [SMALL_STATE(1550)] = 28549, - [SMALL_STATE(1551)] = 28604, - [SMALL_STATE(1552)] = 28661, - [SMALL_STATE(1553)] = 28722, - [SMALL_STATE(1554)] = 28783, - [SMALL_STATE(1555)] = 28838, - [SMALL_STATE(1556)] = 28893, - [SMALL_STATE(1557)] = 28954, - [SMALL_STATE(1558)] = 29009, - [SMALL_STATE(1559)] = 29070, - [SMALL_STATE(1560)] = 29125, - [SMALL_STATE(1561)] = 29180, - [SMALL_STATE(1562)] = 29235, - [SMALL_STATE(1563)] = 29292, - [SMALL_STATE(1564)] = 29349, - [SMALL_STATE(1565)] = 29404, - [SMALL_STATE(1566)] = 29459, - [SMALL_STATE(1567)] = 29514, - [SMALL_STATE(1568)] = 29569, - [SMALL_STATE(1569)] = 29624, - [SMALL_STATE(1570)] = 29679, - [SMALL_STATE(1571)] = 29734, - [SMALL_STATE(1572)] = 29789, - [SMALL_STATE(1573)] = 29844, - [SMALL_STATE(1574)] = 29899, - [SMALL_STATE(1575)] = 29954, - [SMALL_STATE(1576)] = 30009, - [SMALL_STATE(1577)] = 30064, - [SMALL_STATE(1578)] = 30119, - [SMALL_STATE(1579)] = 30174, - [SMALL_STATE(1580)] = 30231, - [SMALL_STATE(1581)] = 30286, - [SMALL_STATE(1582)] = 30341, - [SMALL_STATE(1583)] = 30396, - [SMALL_STATE(1584)] = 30451, - [SMALL_STATE(1585)] = 30506, - [SMALL_STATE(1586)] = 30561, - [SMALL_STATE(1587)] = 30616, - [SMALL_STATE(1588)] = 30671, - [SMALL_STATE(1589)] = 30728, - [SMALL_STATE(1590)] = 30783, - [SMALL_STATE(1591)] = 30838, - [SMALL_STATE(1592)] = 30893, - [SMALL_STATE(1593)] = 30952, - [SMALL_STATE(1594)] = 31007, - [SMALL_STATE(1595)] = 31062, - [SMALL_STATE(1596)] = 31119, - [SMALL_STATE(1597)] = 31174, - [SMALL_STATE(1598)] = 31231, - [SMALL_STATE(1599)] = 31286, - [SMALL_STATE(1600)] = 31347, - [SMALL_STATE(1601)] = 31402, - [SMALL_STATE(1602)] = 31463, - [SMALL_STATE(1603)] = 31518, - [SMALL_STATE(1604)] = 31579, - [SMALL_STATE(1605)] = 31640, - [SMALL_STATE(1606)] = 31701, - [SMALL_STATE(1607)] = 31760, - [SMALL_STATE(1608)] = 31815, - [SMALL_STATE(1609)] = 31870, - [SMALL_STATE(1610)] = 31927, - [SMALL_STATE(1611)] = 31982, - [SMALL_STATE(1612)] = 32037, - [SMALL_STATE(1613)] = 32092, - [SMALL_STATE(1614)] = 32149, - [SMALL_STATE(1615)] = 32204, - [SMALL_STATE(1616)] = 32259, - [SMALL_STATE(1617)] = 32314, - [SMALL_STATE(1618)] = 32375, - [SMALL_STATE(1619)] = 32432, - [SMALL_STATE(1620)] = 32487, - [SMALL_STATE(1621)] = 32542, - [SMALL_STATE(1622)] = 32601, - [SMALL_STATE(1623)] = 32660, - [SMALL_STATE(1624)] = 32715, - [SMALL_STATE(1625)] = 32776, - [SMALL_STATE(1626)] = 32831, - [SMALL_STATE(1627)] = 32890, - [SMALL_STATE(1628)] = 32945, - [SMALL_STATE(1629)] = 33000, - [SMALL_STATE(1630)] = 33055, - [SMALL_STATE(1631)] = 33110, - [SMALL_STATE(1632)] = 33167, - [SMALL_STATE(1633)] = 33224, - [SMALL_STATE(1634)] = 33279, - [SMALL_STATE(1635)] = 33334, - [SMALL_STATE(1636)] = 33389, - [SMALL_STATE(1637)] = 33444, - [SMALL_STATE(1638)] = 33505, - [SMALL_STATE(1639)] = 33560, - [SMALL_STATE(1640)] = 33621, - [SMALL_STATE(1641)] = 33676, - [SMALL_STATE(1642)] = 33737, - [SMALL_STATE(1643)] = 33796, - [SMALL_STATE(1644)] = 33859, - [SMALL_STATE(1645)] = 33914, - [SMALL_STATE(1646)] = 33977, - [SMALL_STATE(1647)] = 34036, - [SMALL_STATE(1648)] = 34091, - [SMALL_STATE(1649)] = 34148, - [SMALL_STATE(1650)] = 34203, - [SMALL_STATE(1651)] = 34258, - [SMALL_STATE(1652)] = 34318, - [SMALL_STATE(1653)] = 34372, - [SMALL_STATE(1654)] = 34426, - [SMALL_STATE(1655)] = 34480, - [SMALL_STATE(1656)] = 34534, - [SMALL_STATE(1657)] = 34588, - [SMALL_STATE(1658)] = 34642, - [SMALL_STATE(1659)] = 34696, - [SMALL_STATE(1660)] = 34750, - [SMALL_STATE(1661)] = 34804, - [SMALL_STATE(1662)] = 34858, - [SMALL_STATE(1663)] = 34912, - [SMALL_STATE(1664)] = 34966, - [SMALL_STATE(1665)] = 35020, - [SMALL_STATE(1666)] = 35074, - [SMALL_STATE(1667)] = 35128, - [SMALL_STATE(1668)] = 35182, - [SMALL_STATE(1669)] = 35236, - [SMALL_STATE(1670)] = 35290, - [SMALL_STATE(1671)] = 35344, - [SMALL_STATE(1672)] = 35398, - [SMALL_STATE(1673)] = 35458, - [SMALL_STATE(1674)] = 35512, - [SMALL_STATE(1675)] = 35566, - [SMALL_STATE(1676)] = 35620, - [SMALL_STATE(1677)] = 35674, - [SMALL_STATE(1678)] = 35728, - [SMALL_STATE(1679)] = 35782, - [SMALL_STATE(1680)] = 35836, - [SMALL_STATE(1681)] = 35890, - [SMALL_STATE(1682)] = 35944, - [SMALL_STATE(1683)] = 35998, - [SMALL_STATE(1684)] = 36052, - [SMALL_STATE(1685)] = 36106, - [SMALL_STATE(1686)] = 36160, - [SMALL_STATE(1687)] = 36214, - [SMALL_STATE(1688)] = 36268, - [SMALL_STATE(1689)] = 36322, - [SMALL_STATE(1690)] = 36408, - [SMALL_STATE(1691)] = 36462, - [SMALL_STATE(1692)] = 36516, - [SMALL_STATE(1693)] = 36570, - [SMALL_STATE(1694)] = 36624, - [SMALL_STATE(1695)] = 36678, - [SMALL_STATE(1696)] = 36732, - [SMALL_STATE(1697)] = 36786, - [SMALL_STATE(1698)] = 36840, - [SMALL_STATE(1699)] = 36894, - [SMALL_STATE(1700)] = 36948, - [SMALL_STATE(1701)] = 37002, - [SMALL_STATE(1702)] = 37056, - [SMALL_STATE(1703)] = 37110, - [SMALL_STATE(1704)] = 37164, - [SMALL_STATE(1705)] = 37218, - [SMALL_STATE(1706)] = 37272, - [SMALL_STATE(1707)] = 37328, - [SMALL_STATE(1708)] = 37384, - [SMALL_STATE(1709)] = 37440, - [SMALL_STATE(1710)] = 37500, - [SMALL_STATE(1711)] = 37554, - [SMALL_STATE(1712)] = 37608, - [SMALL_STATE(1713)] = 37682, - [SMALL_STATE(1714)] = 37736, - [SMALL_STATE(1715)] = 37790, - [SMALL_STATE(1716)] = 37844, - [SMALL_STATE(1717)] = 37898, - [SMALL_STATE(1718)] = 37952, - [SMALL_STATE(1719)] = 38006, - [SMALL_STATE(1720)] = 38092, - [SMALL_STATE(1721)] = 38178, - [SMALL_STATE(1722)] = 38264, - [SMALL_STATE(1723)] = 38350, - [SMALL_STATE(1724)] = 38404, - [SMALL_STATE(1725)] = 38483, - [SMALL_STATE(1726)] = 38564, - [SMALL_STATE(1727)] = 38619, - [SMALL_STATE(1728)] = 38676, - [SMALL_STATE(1729)] = 38729, - [SMALL_STATE(1730)] = 38786, - [SMALL_STATE(1731)] = 38841, - [SMALL_STATE(1732)] = 38898, - [SMALL_STATE(1733)] = 38961, - [SMALL_STATE(1734)] = 39038, - [SMALL_STATE(1735)] = 39099, - [SMALL_STATE(1736)] = 39152, - [SMALL_STATE(1737)] = 39231, - [SMALL_STATE(1738)] = 39294, - [SMALL_STATE(1739)] = 39371, - [SMALL_STATE(1740)] = 39434, - [SMALL_STATE(1741)] = 39513, - [SMALL_STATE(1742)] = 39576, - [SMALL_STATE(1743)] = 39685, - [SMALL_STATE(1744)] = 39794, - [SMALL_STATE(1745)] = 39903, - [SMALL_STATE(1746)] = 40012, - [SMALL_STATE(1747)] = 40121, - [SMALL_STATE(1748)] = 40204, - [SMALL_STATE(1749)] = 40277, - [SMALL_STATE(1750)] = 40374, - [SMALL_STATE(1751)] = 40473, - [SMALL_STATE(1752)] = 40552, - [SMALL_STATE(1753)] = 40605, - [SMALL_STATE(1754)] = 40698, - [SMALL_STATE(1755)] = 40793, - [SMALL_STATE(1756)] = 40870, - [SMALL_STATE(1757)] = 40949, - [SMALL_STATE(1758)] = 41036, - [SMALL_STATE(1759)] = 41137, - [SMALL_STATE(1760)] = 41246, - [SMALL_STATE(1761)] = 41355, - [SMALL_STATE(1762)] = 41464, - [SMALL_STATE(1763)] = 41573, - [SMALL_STATE(1764)] = 41682, - [SMALL_STATE(1765)] = 41791, - [SMALL_STATE(1766)] = 41900, - [SMALL_STATE(1767)] = 41979, - [SMALL_STATE(1768)] = 42088, - [SMALL_STATE(1769)] = 42141, - [SMALL_STATE(1770)] = 42218, - [SMALL_STATE(1771)] = 42271, - [SMALL_STATE(1772)] = 42340, - [SMALL_STATE(1773)] = 42417, - [SMALL_STATE(1774)] = 42496, - [SMALL_STATE(1775)] = 42575, - [SMALL_STATE(1776)] = 42652, - [SMALL_STATE(1777)] = 42705, - [SMALL_STATE(1778)] = 42784, - [SMALL_STATE(1779)] = 42855, - [SMALL_STATE(1780)] = 42932, - [SMALL_STATE(1781)] = 43041, - [SMALL_STATE(1782)] = 43132, - [SMALL_STATE(1783)] = 43240, - [SMALL_STATE(1784)] = 43316, - [SMALL_STATE(1785)] = 43424, - [SMALL_STATE(1786)] = 43496, - [SMALL_STATE(1787)] = 43570, - [SMALL_STATE(1788)] = 43630, - [SMALL_STATE(1789)] = 43682, - [SMALL_STATE(1790)] = 43790, - [SMALL_STATE(1791)] = 43848, - [SMALL_STATE(1792)] = 43920, - [SMALL_STATE(1793)] = 44028, - [SMALL_STATE(1794)] = 44084, - [SMALL_STATE(1795)] = 44192, - [SMALL_STATE(1796)] = 44300, - [SMALL_STATE(1797)] = 44382, - [SMALL_STATE(1798)] = 44442, - [SMALL_STATE(1799)] = 44498, - [SMALL_STATE(1800)] = 44556, - [SMALL_STATE(1801)] = 44612, - [SMALL_STATE(1802)] = 44664, - [SMALL_STATE(1803)] = 44736, - [SMALL_STATE(1804)] = 44796, - [SMALL_STATE(1805)] = 44892, - [SMALL_STATE(1806)] = 44990, - [SMALL_STATE(1807)] = 45068, - [SMALL_STATE(1808)] = 45158, - [SMALL_STATE(1809)] = 45250, - [SMALL_STATE(1810)] = 45344, - [SMALL_STATE(1811)] = 45420, - [SMALL_STATE(1812)] = 45498, - [SMALL_STATE(1813)] = 45584, - [SMALL_STATE(1814)] = 45642, - [SMALL_STATE(1815)] = 45696, - [SMALL_STATE(1816)] = 45750, - [SMALL_STATE(1817)] = 45858, - [SMALL_STATE(1818)] = 45974, - [SMALL_STATE(1819)] = 46082, - [SMALL_STATE(1820)] = 46190, - [SMALL_STATE(1821)] = 46298, - [SMALL_STATE(1822)] = 46406, - [SMALL_STATE(1823)] = 46458, - [SMALL_STATE(1824)] = 46514, - [SMALL_STATE(1825)] = 46568, - [SMALL_STATE(1826)] = 46640, - [SMALL_STATE(1827)] = 46710, - [SMALL_STATE(1828)] = 46826, - [SMALL_STATE(1829)] = 46926, - [SMALL_STATE(1830)] = 47034, - [SMALL_STATE(1831)] = 47102, - [SMALL_STATE(1832)] = 47174, - [SMALL_STATE(1833)] = 47228, - [SMALL_STATE(1834)] = 47292, - [SMALL_STATE(1835)] = 47408, - [SMALL_STATE(1836)] = 47480, - [SMALL_STATE(1837)] = 47542, - [SMALL_STATE(1838)] = 47604, - [SMALL_STATE(1839)] = 47712, - [SMALL_STATE(1840)] = 47820, - [SMALL_STATE(1841)] = 47928, - [SMALL_STATE(1842)] = 47980, - [SMALL_STATE(1843)] = 48088, - [SMALL_STATE(1844)] = 48196, - [SMALL_STATE(1845)] = 48278, - [SMALL_STATE(1846)] = 48350, - [SMALL_STATE(1847)] = 48446, - [SMALL_STATE(1848)] = 48544, - [SMALL_STATE(1849)] = 48622, - [SMALL_STATE(1850)] = 48712, - [SMALL_STATE(1851)] = 48804, - [SMALL_STATE(1852)] = 48898, - [SMALL_STATE(1853)] = 48974, - [SMALL_STATE(1854)] = 49052, - [SMALL_STATE(1855)] = 49138, - [SMALL_STATE(1856)] = 49238, - [SMALL_STATE(1857)] = 49346, - [SMALL_STATE(1858)] = 49454, - [SMALL_STATE(1859)] = 49562, - [SMALL_STATE(1860)] = 49670, - [SMALL_STATE(1861)] = 49778, - [SMALL_STATE(1862)] = 49886, - [SMALL_STATE(1863)] = 49994, - [SMALL_STATE(1864)] = 50102, - [SMALL_STATE(1865)] = 50164, - [SMALL_STATE(1866)] = 50232, - [SMALL_STATE(1867)] = 50348, - [SMALL_STATE(1868)] = 50406, - [SMALL_STATE(1869)] = 50466, - [SMALL_STATE(1870)] = 50574, - [SMALL_STATE(1871)] = 50682, - [SMALL_STATE(1872)] = 50756, - [SMALL_STATE(1873)] = 50834, - [SMALL_STATE(1874)] = 50886, - [SMALL_STATE(1875)] = 50994, - [SMALL_STATE(1876)] = 51064, - [SMALL_STATE(1877)] = 51140, - [SMALL_STATE(1878)] = 51248, - [SMALL_STATE(1879)] = 51310, - [SMALL_STATE(1880)] = 51393, - [SMALL_STATE(1881)] = 51444, - [SMALL_STATE(1882)] = 51495, - [SMALL_STATE(1883)] = 51552, - [SMALL_STATE(1884)] = 51603, - [SMALL_STATE(1885)] = 51658, - [SMALL_STATE(1886)] = 51721, - [SMALL_STATE(1887)] = 51784, - [SMALL_STATE(1888)] = 51891, - [SMALL_STATE(1889)] = 51998, - [SMALL_STATE(1890)] = 52073, - [SMALL_STATE(1891)] = 52180, - [SMALL_STATE(1892)] = 52263, - [SMALL_STATE(1893)] = 52344, - [SMALL_STATE(1894)] = 52399, - [SMALL_STATE(1895)] = 52506, - [SMALL_STATE(1896)] = 52577, - [SMALL_STATE(1897)] = 52686, - [SMALL_STATE(1898)] = 52781, - [SMALL_STATE(1899)] = 52878, - [SMALL_STATE(1900)] = 52955, - [SMALL_STATE(1901)] = 53044, - [SMALL_STATE(1902)] = 53135, - [SMALL_STATE(1903)] = 53228, - [SMALL_STATE(1904)] = 53303, - [SMALL_STATE(1905)] = 53380, - [SMALL_STATE(1906)] = 53433, - [SMALL_STATE(1907)] = 53518, - [SMALL_STATE(1908)] = 53571, - [SMALL_STATE(1909)] = 53670, - [SMALL_STATE(1910)] = 53721, - [SMALL_STATE(1911)] = 53774, - [SMALL_STATE(1912)] = 53827, - [SMALL_STATE(1913)] = 53884, - [SMALL_STATE(1914)] = 53991, - [SMALL_STATE(1915)] = 54098, - [SMALL_STATE(1916)] = 54149, - [SMALL_STATE(1917)] = 54222, - [SMALL_STATE(1918)] = 54305, - [SMALL_STATE(1919)] = 54356, - [SMALL_STATE(1920)] = 54463, - [SMALL_STATE(1921)] = 54530, - [SMALL_STATE(1922)] = 54587, - [SMALL_STATE(1923)] = 54646, - [SMALL_STATE(1924)] = 54757, - [SMALL_STATE(1925)] = 54826, - [SMALL_STATE(1926)] = 54883, - [SMALL_STATE(1927)] = 54994, - [SMALL_STATE(1928)] = 55101, - [SMALL_STATE(1929)] = 55170, - [SMALL_STATE(1930)] = 55221, - [SMALL_STATE(1931)] = 55328, - [SMALL_STATE(1932)] = 55385, - [SMALL_STATE(1933)] = 55438, - [SMALL_STATE(1934)] = 55545, - [SMALL_STATE(1935)] = 55604, - [SMALL_STATE(1936)] = 55663, - [SMALL_STATE(1937)] = 55722, - [SMALL_STATE(1938)] = 55777, - [SMALL_STATE(1939)] = 55828, - [SMALL_STATE(1940)] = 55879, - [SMALL_STATE(1941)] = 55990, - [SMALL_STATE(1942)] = 56041, - [SMALL_STATE(1943)] = 56098, - [SMALL_STATE(1944)] = 56155, - [SMALL_STATE(1945)] = 56266, - [SMALL_STATE(1946)] = 56377, - [SMALL_STATE(1947)] = 56488, - [SMALL_STATE(1948)] = 56599, - [SMALL_STATE(1949)] = 56682, - [SMALL_STATE(1950)] = 56745, - [SMALL_STATE(1951)] = 56808, - [SMALL_STATE(1952)] = 56861, - [SMALL_STATE(1953)] = 56914, - [SMALL_STATE(1954)] = 56997, - [SMALL_STATE(1955)] = 57062, - [SMALL_STATE(1956)] = 57127, - [SMALL_STATE(1957)] = 57184, - [SMALL_STATE(1958)] = 57241, - [SMALL_STATE(1959)] = 57298, - [SMALL_STATE(1960)] = 57405, - [SMALL_STATE(1961)] = 57512, - [SMALL_STATE(1962)] = 57565, - [SMALL_STATE(1963)] = 57618, - [SMALL_STATE(1964)] = 57673, - [SMALL_STATE(1965)] = 57746, - [SMALL_STATE(1966)] = 57797, - [SMALL_STATE(1967)] = 57848, - [SMALL_STATE(1968)] = 57899, - [SMALL_STATE(1969)] = 57950, - [SMALL_STATE(1970)] = 58001, - [SMALL_STATE(1971)] = 58074, - [SMALL_STATE(1972)] = 58143, - [SMALL_STATE(1973)] = 58194, - [SMALL_STATE(1974)] = 58245, - [SMALL_STATE(1975)] = 58298, - [SMALL_STATE(1976)] = 58359, - [SMALL_STATE(1977)] = 58410, - [SMALL_STATE(1978)] = 58483, - [SMALL_STATE(1979)] = 58536, - [SMALL_STATE(1980)] = 58587, - [SMALL_STATE(1981)] = 58646, - [SMALL_STATE(1982)] = 58703, - [SMALL_STATE(1983)] = 58758, - [SMALL_STATE(1984)] = 58815, - [SMALL_STATE(1985)] = 58868, - [SMALL_STATE(1986)] = 58919, - [SMALL_STATE(1987)] = 58970, - [SMALL_STATE(1988)] = 59021, - [SMALL_STATE(1989)] = 59074, - [SMALL_STATE(1990)] = 59125, - [SMALL_STATE(1991)] = 59176, - [SMALL_STATE(1992)] = 59229, - [SMALL_STATE(1993)] = 59280, - [SMALL_STATE(1994)] = 59337, - [SMALL_STATE(1995)] = 59388, - [SMALL_STATE(1996)] = 59457, - [SMALL_STATE(1997)] = 59508, - [SMALL_STATE(1998)] = 59559, - [SMALL_STATE(1999)] = 59610, - [SMALL_STATE(2000)] = 59661, - [SMALL_STATE(2001)] = 59712, - [SMALL_STATE(2002)] = 59765, - [SMALL_STATE(2003)] = 59816, - [SMALL_STATE(2004)] = 59879, - [SMALL_STATE(2005)] = 59942, - [SMALL_STATE(2006)] = 59993, - [SMALL_STATE(2007)] = 60044, - [SMALL_STATE(2008)] = 60153, - [SMALL_STATE(2009)] = 60204, - [SMALL_STATE(2010)] = 60255, - [SMALL_STATE(2011)] = 60306, - [SMALL_STATE(2012)] = 60357, - [SMALL_STATE(2013)] = 60408, - [SMALL_STATE(2014)] = 60459, - [SMALL_STATE(2015)] = 60510, - [SMALL_STATE(2016)] = 60561, - [SMALL_STATE(2017)] = 60634, - [SMALL_STATE(2018)] = 60685, - [SMALL_STATE(2019)] = 60736, - [SMALL_STATE(2020)] = 60787, - [SMALL_STATE(2021)] = 60838, - [SMALL_STATE(2022)] = 60901, - [SMALL_STATE(2023)] = 60952, - [SMALL_STATE(2024)] = 61003, - [SMALL_STATE(2025)] = 61054, - [SMALL_STATE(2026)] = 61105, - [SMALL_STATE(2027)] = 61168, - [SMALL_STATE(2028)] = 61223, - [SMALL_STATE(2029)] = 61286, - [SMALL_STATE(2030)] = 61337, - [SMALL_STATE(2031)] = 61388, - [SMALL_STATE(2032)] = 61441, - [SMALL_STATE(2033)] = 61492, - [SMALL_STATE(2034)] = 61543, - [SMALL_STATE(2035)] = 61600, - [SMALL_STATE(2036)] = 61651, - [SMALL_STATE(2037)] = 61702, - [SMALL_STATE(2038)] = 61753, - [SMALL_STATE(2039)] = 61826, - [SMALL_STATE(2040)] = 61883, - [SMALL_STATE(2041)] = 61990, - [SMALL_STATE(2042)] = 62047, - [SMALL_STATE(2043)] = 62104, - [SMALL_STATE(2044)] = 62157, - [SMALL_STATE(2045)] = 62210, - [SMALL_STATE(2046)] = 62317, - [SMALL_STATE(2047)] = 62368, - [SMALL_STATE(2048)] = 62419, - [SMALL_STATE(2049)] = 62478, - [SMALL_STATE(2050)] = 62529, - [SMALL_STATE(2051)] = 62580, - [SMALL_STATE(2052)] = 62631, - [SMALL_STATE(2053)] = 62682, - [SMALL_STATE(2054)] = 62733, - [SMALL_STATE(2055)] = 62784, - [SMALL_STATE(2056)] = 62835, - [SMALL_STATE(2057)] = 62886, - [SMALL_STATE(2058)] = 62937, - [SMALL_STATE(2059)] = 62988, - [SMALL_STATE(2060)] = 63039, - [SMALL_STATE(2061)] = 63090, - [SMALL_STATE(2062)] = 63141, - [SMALL_STATE(2063)] = 63192, - [SMALL_STATE(2064)] = 63243, - [SMALL_STATE(2065)] = 63294, - [SMALL_STATE(2066)] = 63345, - [SMALL_STATE(2067)] = 63398, - [SMALL_STATE(2068)] = 63471, - [SMALL_STATE(2069)] = 63540, - [SMALL_STATE(2070)] = 63591, - [SMALL_STATE(2071)] = 63660, - [SMALL_STATE(2072)] = 63711, - [SMALL_STATE(2073)] = 63782, - [SMALL_STATE(2074)] = 63855, - [SMALL_STATE(2075)] = 63906, - [SMALL_STATE(2076)] = 63957, - [SMALL_STATE(2077)] = 64010, - [SMALL_STATE(2078)] = 64093, - [SMALL_STATE(2079)] = 64144, - [SMALL_STATE(2080)] = 64195, - [SMALL_STATE(2081)] = 64246, - [SMALL_STATE(2082)] = 64297, - [SMALL_STATE(2083)] = 64358, - [SMALL_STATE(2084)] = 64465, - [SMALL_STATE(2085)] = 64572, - [SMALL_STATE(2086)] = 64679, - [SMALL_STATE(2087)] = 64786, - [SMALL_STATE(2088)] = 64893, - [SMALL_STATE(2089)] = 64974, - [SMALL_STATE(2090)] = 65045, - [SMALL_STATE(2091)] = 65140, - [SMALL_STATE(2092)] = 65237, - [SMALL_STATE(2093)] = 65314, - [SMALL_STATE(2094)] = 65403, - [SMALL_STATE(2095)] = 65494, - [SMALL_STATE(2096)] = 65587, - [SMALL_STATE(2097)] = 65662, - [SMALL_STATE(2098)] = 65739, - [SMALL_STATE(2099)] = 65824, - [SMALL_STATE(2100)] = 65923, - [SMALL_STATE(2101)] = 66030, - [SMALL_STATE(2102)] = 66137, - [SMALL_STATE(2103)] = 66244, - [SMALL_STATE(2104)] = 66351, - [SMALL_STATE(2105)] = 66458, - [SMALL_STATE(2106)] = 66565, - [SMALL_STATE(2107)] = 66672, - [SMALL_STATE(2108)] = 66779, - [SMALL_STATE(2109)] = 66848, - [SMALL_STATE(2110)] = 66923, - [SMALL_STATE(2111)] = 67030, - [SMALL_STATE(2112)] = 67097, - [SMALL_STATE(2113)] = 67150, - [SMALL_STATE(2114)] = 67260, - [SMALL_STATE(2115)] = 67310, - [SMALL_STATE(2116)] = 67360, - [SMALL_STATE(2117)] = 67414, - [SMALL_STATE(2118)] = 67464, - [SMALL_STATE(2119)] = 67518, - [SMALL_STATE(2120)] = 67584, - [SMALL_STATE(2121)] = 67634, - [SMALL_STATE(2122)] = 67684, - [SMALL_STATE(2123)] = 67748, - [SMALL_STATE(2124)] = 67814, - [SMALL_STATE(2125)] = 67870, - [SMALL_STATE(2126)] = 67920, - [SMALL_STATE(2127)] = 67976, - [SMALL_STATE(2128)] = 68026, - [SMALL_STATE(2129)] = 68080, - [SMALL_STATE(2130)] = 68134, - [SMALL_STATE(2131)] = 68184, - [SMALL_STATE(2132)] = 68234, - [SMALL_STATE(2133)] = 68288, - [SMALL_STATE(2134)] = 68342, - [SMALL_STATE(2135)] = 68392, - [SMALL_STATE(2136)] = 68450, - [SMALL_STATE(2137)] = 68560, - [SMALL_STATE(2138)] = 68610, - [SMALL_STATE(2139)] = 68684, - [SMALL_STATE(2140)] = 68794, - [SMALL_STATE(2141)] = 68870, - [SMALL_STATE(2142)] = 68920, - [SMALL_STATE(2143)] = 68976, - [SMALL_STATE(2144)] = 69086, - [SMALL_STATE(2145)] = 69196, - [SMALL_STATE(2146)] = 69252, - [SMALL_STATE(2147)] = 69362, - [SMALL_STATE(2148)] = 69472, - [SMALL_STATE(2149)] = 69546, - [SMALL_STATE(2150)] = 69656, - [SMALL_STATE(2151)] = 69732, - [SMALL_STATE(2152)] = 69794, - [SMALL_STATE(2153)] = 69856, - [SMALL_STATE(2154)] = 69908, - [SMALL_STATE(2155)] = 69960, - [SMALL_STATE(2156)] = 70046, - [SMALL_STATE(2157)] = 70108, - [SMALL_STATE(2158)] = 70170, - [SMALL_STATE(2159)] = 70230, - [SMALL_STATE(2160)] = 70290, - [SMALL_STATE(2161)] = 70340, - [SMALL_STATE(2162)] = 70398, - [SMALL_STATE(2163)] = 70456, - [SMALL_STATE(2164)] = 70518, - [SMALL_STATE(2165)] = 70580, - [SMALL_STATE(2166)] = 70642, - [SMALL_STATE(2167)] = 70704, - [SMALL_STATE(2168)] = 70754, - [SMALL_STATE(2169)] = 70816, - [SMALL_STATE(2170)] = 70878, - [SMALL_STATE(2171)] = 70984, - [SMALL_STATE(2172)] = 71034, - [SMALL_STATE(2173)] = 71084, - [SMALL_STATE(2174)] = 71134, - [SMALL_STATE(2175)] = 71198, - [SMALL_STATE(2176)] = 71308, - [SMALL_STATE(2177)] = 71360, - [SMALL_STATE(2178)] = 71470, - [SMALL_STATE(2179)] = 71524, - [SMALL_STATE(2180)] = 71578, - [SMALL_STATE(2181)] = 71632, - [SMALL_STATE(2182)] = 71692, - [SMALL_STATE(2183)] = 71746, - [SMALL_STATE(2184)] = 71852, - [SMALL_STATE(2185)] = 71958, - [SMALL_STATE(2186)] = 72064, - [SMALL_STATE(2187)] = 72114, - [SMALL_STATE(2188)] = 72220, - [SMALL_STATE(2189)] = 72270, - [SMALL_STATE(2190)] = 72376, - [SMALL_STATE(2191)] = 72482, - [SMALL_STATE(2192)] = 72562, - [SMALL_STATE(2193)] = 72672, - [SMALL_STATE(2194)] = 72742, - [SMALL_STATE(2195)] = 72852, - [SMALL_STATE(2196)] = 72946, - [SMALL_STATE(2197)] = 73042, - [SMALL_STATE(2198)] = 73118, - [SMALL_STATE(2199)] = 73206, - [SMALL_STATE(2200)] = 73296, - [SMALL_STATE(2201)] = 73388, - [SMALL_STATE(2202)] = 73462, - [SMALL_STATE(2203)] = 73538, - [SMALL_STATE(2204)] = 73622, - [SMALL_STATE(2205)] = 73720, - [SMALL_STATE(2206)] = 73826, - [SMALL_STATE(2207)] = 73932, - [SMALL_STATE(2208)] = 74038, - [SMALL_STATE(2209)] = 74144, - [SMALL_STATE(2210)] = 74250, - [SMALL_STATE(2211)] = 74356, - [SMALL_STATE(2212)] = 74462, - [SMALL_STATE(2213)] = 74526, - [SMALL_STATE(2214)] = 74592, - [SMALL_STATE(2215)] = 74702, - [SMALL_STATE(2216)] = 74808, - [SMALL_STATE(2217)] = 74862, - [SMALL_STATE(2218)] = 74916, - [SMALL_STATE(2219)] = 74982, - [SMALL_STATE(2220)] = 75046, - [SMALL_STATE(2221)] = 75110, - [SMALL_STATE(2222)] = 75168, - [SMALL_STATE(2223)] = 75218, - [SMALL_STATE(2224)] = 75272, - [SMALL_STATE(2225)] = 75336, - [SMALL_STATE(2226)] = 75386, - [SMALL_STATE(2227)] = 75450, - [SMALL_STATE(2228)] = 75514, - [SMALL_STATE(2229)] = 75580, - [SMALL_STATE(2230)] = 75646, - [SMALL_STATE(2231)] = 75712, - [SMALL_STATE(2232)] = 75776, - [SMALL_STATE(2233)] = 75830, - [SMALL_STATE(2234)] = 75940, - [SMALL_STATE(2235)] = 75990, - [SMALL_STATE(2236)] = 76040, - [SMALL_STATE(2237)] = 76094, - [SMALL_STATE(2238)] = 76144, - [SMALL_STATE(2239)] = 76194, - [SMALL_STATE(2240)] = 76244, - [SMALL_STATE(2241)] = 76294, - [SMALL_STATE(2242)] = 76404, - [SMALL_STATE(2243)] = 76454, - [SMALL_STATE(2244)] = 76508, - [SMALL_STATE(2245)] = 76562, - [SMALL_STATE(2246)] = 76612, - [SMALL_STATE(2247)] = 76676, - [SMALL_STATE(2248)] = 76742, - [SMALL_STATE(2249)] = 76852, - [SMALL_STATE(2250)] = 76910, - [SMALL_STATE(2251)] = 76968, - [SMALL_STATE(2252)] = 77078, - [SMALL_STATE(2253)] = 77132, - [SMALL_STATE(2254)] = 77190, - [SMALL_STATE(2255)] = 77240, - [SMALL_STATE(2256)] = 77298, - [SMALL_STATE(2257)] = 77408, - [SMALL_STATE(2258)] = 77468, - [SMALL_STATE(2259)] = 77578, - [SMALL_STATE(2260)] = 77646, - [SMALL_STATE(2261)] = 77720, - [SMALL_STATE(2262)] = 77826, - [SMALL_STATE(2263)] = 77892, - [SMALL_STATE(2264)] = 77946, - [SMALL_STATE(2265)] = 78010, - [SMALL_STATE(2266)] = 78120, - [SMALL_STATE(2267)] = 78170, - [SMALL_STATE(2268)] = 78244, - [SMALL_STATE(2269)] = 78320, - [SMALL_STATE(2270)] = 78372, - [SMALL_STATE(2271)] = 78432, - [SMALL_STATE(2272)] = 78488, - [SMALL_STATE(2273)] = 78562, - [SMALL_STATE(2274)] = 78612, - [SMALL_STATE(2275)] = 78676, - [SMALL_STATE(2276)] = 78752, - [SMALL_STATE(2277)] = 78804, - [SMALL_STATE(2278)] = 78856, - [SMALL_STATE(2279)] = 78910, - [SMALL_STATE(2280)] = 78960, - [SMALL_STATE(2281)] = 79068, - [SMALL_STATE(2282)] = 79178, - [SMALL_STATE(2283)] = 79242, - [SMALL_STATE(2284)] = 79352, - [SMALL_STATE(2285)] = 79462, - [SMALL_STATE(2286)] = 79526, - [SMALL_STATE(2287)] = 79636, - [SMALL_STATE(2288)] = 79700, - [SMALL_STATE(2289)] = 79752, - [SMALL_STATE(2290)] = 79804, - [SMALL_STATE(2291)] = 79858, - [SMALL_STATE(2292)] = 79908, - [SMALL_STATE(2293)] = 79958, - [SMALL_STATE(2294)] = 80008, - [SMALL_STATE(2295)] = 80058, - [SMALL_STATE(2296)] = 80112, - [SMALL_STATE(2297)] = 80162, - [SMALL_STATE(2298)] = 80272, - [SMALL_STATE(2299)] = 80382, - [SMALL_STATE(2300)] = 80492, - [SMALL_STATE(2301)] = 80602, - [SMALL_STATE(2302)] = 80712, - [SMALL_STATE(2303)] = 80766, - [SMALL_STATE(2304)] = 80820, - [SMALL_STATE(2305)] = 80874, - [SMALL_STATE(2306)] = 80928, - [SMALL_STATE(2307)] = 80980, - [SMALL_STATE(2308)] = 81044, - [SMALL_STATE(2309)] = 81110, - [SMALL_STATE(2310)] = 81168, - [SMALL_STATE(2311)] = 81234, - [SMALL_STATE(2312)] = 81286, - [SMALL_STATE(2313)] = 81340, - [SMALL_STATE(2314)] = 81392, - [SMALL_STATE(2315)] = 81458, - [SMALL_STATE(2316)] = 81508, - [SMALL_STATE(2317)] = 81572, - [SMALL_STATE(2318)] = 81638, - [SMALL_STATE(2319)] = 81704, - [SMALL_STATE(2320)] = 81814, - [SMALL_STATE(2321)] = 81864, - [SMALL_STATE(2322)] = 81928, - [SMALL_STATE(2323)] = 81994, - [SMALL_STATE(2324)] = 82100, - [SMALL_STATE(2325)] = 82168, - [SMALL_STATE(2326)] = 82218, - [SMALL_STATE(2327)] = 82268, - [SMALL_STATE(2328)] = 82318, - [SMALL_STATE(2329)] = 82372, - [SMALL_STATE(2330)] = 82422, - [SMALL_STATE(2331)] = 82472, - [SMALL_STATE(2332)] = 82522, - [SMALL_STATE(2333)] = 82572, - [SMALL_STATE(2334)] = 82622, - [SMALL_STATE(2335)] = 82696, - [SMALL_STATE(2336)] = 82772, - [SMALL_STATE(2337)] = 82882, - [SMALL_STATE(2338)] = 82992, - [SMALL_STATE(2339)] = 83102, - [SMALL_STATE(2340)] = 83156, - [SMALL_STATE(2341)] = 83208, - [SMALL_STATE(2342)] = 83318, - [SMALL_STATE(2343)] = 83428, - [SMALL_STATE(2344)] = 83492, - [SMALL_STATE(2345)] = 83546, - [SMALL_STATE(2346)] = 83620, - [SMALL_STATE(2347)] = 83696, - [SMALL_STATE(2348)] = 83806, - [SMALL_STATE(2349)] = 83858, - [SMALL_STATE(2350)] = 83916, - [SMALL_STATE(2351)] = 83966, - [SMALL_STATE(2352)] = 84022, - [SMALL_STATE(2353)] = 84128, - [SMALL_STATE(2354)] = 84190, - [SMALL_STATE(2355)] = 84296, - [SMALL_STATE(2356)] = 84406, - [SMALL_STATE(2357)] = 84456, - [SMALL_STATE(2358)] = 84520, - [SMALL_STATE(2359)] = 84586, - [SMALL_STATE(2360)] = 84638, - [SMALL_STATE(2361)] = 84704, - [SMALL_STATE(2362)] = 84814, - [SMALL_STATE(2363)] = 84864, - [SMALL_STATE(2364)] = 84969, - [SMALL_STATE(2365)] = 85028, - [SMALL_STATE(2366)] = 85133, - [SMALL_STATE(2367)] = 85238, - [SMALL_STATE(2368)] = 85343, - [SMALL_STATE(2369)] = 85448, - [SMALL_STATE(2370)] = 85553, - [SMALL_STATE(2371)] = 85632, - [SMALL_STATE(2372)] = 85701, - [SMALL_STATE(2373)] = 85794, - [SMALL_STATE(2374)] = 85889, - [SMALL_STATE(2375)] = 85964, - [SMALL_STATE(2376)] = 86051, - [SMALL_STATE(2377)] = 86140, - [SMALL_STATE(2378)] = 86231, - [SMALL_STATE(2379)] = 86304, - [SMALL_STATE(2380)] = 86379, - [SMALL_STATE(2381)] = 86462, - [SMALL_STATE(2382)] = 86559, - [SMALL_STATE(2383)] = 86664, - [SMALL_STATE(2384)] = 86769, - [SMALL_STATE(2385)] = 86874, - [SMALL_STATE(2386)] = 86979, - [SMALL_STATE(2387)] = 87084, - [SMALL_STATE(2388)] = 87189, - [SMALL_STATE(2389)] = 87294, - [SMALL_STATE(2390)] = 87347, - [SMALL_STATE(2391)] = 87398, - [SMALL_STATE(2392)] = 87457, - [SMALL_STATE(2393)] = 87562, - [SMALL_STATE(2394)] = 87667, - [SMALL_STATE(2395)] = 87772, - [SMALL_STATE(2396)] = 87877, - [SMALL_STATE(2397)] = 87982, - [SMALL_STATE(2398)] = 88061, - [SMALL_STATE(2399)] = 88130, - [SMALL_STATE(2400)] = 88223, - [SMALL_STATE(2401)] = 88318, - [SMALL_STATE(2402)] = 88393, - [SMALL_STATE(2403)] = 88480, - [SMALL_STATE(2404)] = 88569, - [SMALL_STATE(2405)] = 88660, - [SMALL_STATE(2406)] = 88733, - [SMALL_STATE(2407)] = 88808, - [SMALL_STATE(2408)] = 88891, - [SMALL_STATE(2409)] = 88988, - [SMALL_STATE(2410)] = 89093, - [SMALL_STATE(2411)] = 89198, - [SMALL_STATE(2412)] = 89303, - [SMALL_STATE(2413)] = 89408, - [SMALL_STATE(2414)] = 89513, - [SMALL_STATE(2415)] = 89618, - [SMALL_STATE(2416)] = 89723, - [SMALL_STATE(2417)] = 89828, - [SMALL_STATE(2418)] = 89933, - [SMALL_STATE(2419)] = 89992, - [SMALL_STATE(2420)] = 90061, - [SMALL_STATE(2421)] = 90120, - [SMALL_STATE(2422)] = 90209, - [SMALL_STATE(2423)] = 90314, - [SMALL_STATE(2424)] = 90419, - [SMALL_STATE(2425)] = 90474, - [SMALL_STATE(2426)] = 90529, - [SMALL_STATE(2427)] = 90588, - [SMALL_STATE(2428)] = 90639, - [SMALL_STATE(2429)] = 90744, - [SMALL_STATE(2430)] = 90803, - [SMALL_STATE(2431)] = 90872, - [SMALL_STATE(2432)] = 90927, - [SMALL_STATE(2433)] = 90978, - [SMALL_STATE(2434)] = 91083, - [SMALL_STATE(2435)] = 91190, - [SMALL_STATE(2436)] = 91245, - [SMALL_STATE(2437)] = 91314, - [SMALL_STATE(2438)] = 91373, - [SMALL_STATE(2439)] = 91424, - [SMALL_STATE(2440)] = 91529, - [SMALL_STATE(2441)] = 91634, - [SMALL_STATE(2442)] = 91739, - [SMALL_STATE(2443)] = 91846, - [SMALL_STATE(2444)] = 91905, - [SMALL_STATE(2445)] = 91956, - [SMALL_STATE(2446)] = 92033, - [SMALL_STATE(2447)] = 92092, - [SMALL_STATE(2448)] = 92151, - [SMALL_STATE(2449)] = 92210, - [SMALL_STATE(2450)] = 92265, - [SMALL_STATE(2451)] = 92332, - [SMALL_STATE(2452)] = 92389, - [SMALL_STATE(2453)] = 92494, - [SMALL_STATE(2454)] = 92559, - [SMALL_STATE(2455)] = 92614, - [SMALL_STATE(2456)] = 92673, - [SMALL_STATE(2457)] = 92748, - [SMALL_STATE(2458)] = 92853, - [SMALL_STATE(2459)] = 92920, - [SMALL_STATE(2460)] = 92993, - [SMALL_STATE(2461)] = 93098, - [SMALL_STATE(2462)] = 93163, - [SMALL_STATE(2463)] = 93222, - [SMALL_STATE(2464)] = 93277, - [SMALL_STATE(2465)] = 93334, - [SMALL_STATE(2466)] = 93387, - [SMALL_STATE(2467)] = 93444, - [SMALL_STATE(2468)] = 93503, - [SMALL_STATE(2469)] = 93554, - [SMALL_STATE(2470)] = 93635, - [SMALL_STATE(2471)] = 93686, - [SMALL_STATE(2472)] = 93755, - [SMALL_STATE(2473)] = 93860, - [SMALL_STATE(2474)] = 93919, - [SMALL_STATE(2475)] = 93978, - [SMALL_STATE(2476)] = 94033, - [SMALL_STATE(2477)] = 94092, - [SMALL_STATE(2478)] = 94161, - [SMALL_STATE(2479)] = 94220, - [SMALL_STATE(2480)] = 94279, - [SMALL_STATE(2481)] = 94332, - [SMALL_STATE(2482)] = 94391, - [SMALL_STATE(2483)] = 94448, - [SMALL_STATE(2484)] = 94517, - [SMALL_STATE(2485)] = 94576, - [SMALL_STATE(2486)] = 94635, - [SMALL_STATE(2487)] = 94740, - [SMALL_STATE(2488)] = 94797, - [SMALL_STATE(2489)] = 94856, - [SMALL_STATE(2490)] = 94961, - [SMALL_STATE(2491)] = 95020, - [SMALL_STATE(2492)] = 95125, - [SMALL_STATE(2493)] = 95230, - [SMALL_STATE(2494)] = 95335, - [SMALL_STATE(2495)] = 95440, - [SMALL_STATE(2496)] = 95545, - [SMALL_STATE(2497)] = 95624, - [SMALL_STATE(2498)] = 95693, - [SMALL_STATE(2499)] = 95786, - [SMALL_STATE(2500)] = 95881, - [SMALL_STATE(2501)] = 95956, - [SMALL_STATE(2502)] = 96043, - [SMALL_STATE(2503)] = 96132, - [SMALL_STATE(2504)] = 96223, - [SMALL_STATE(2505)] = 96296, - [SMALL_STATE(2506)] = 96371, - [SMALL_STATE(2507)] = 96454, - [SMALL_STATE(2508)] = 96551, - [SMALL_STATE(2509)] = 96656, - [SMALL_STATE(2510)] = 96761, - [SMALL_STATE(2511)] = 96866, - [SMALL_STATE(2512)] = 96971, - [SMALL_STATE(2513)] = 97076, - [SMALL_STATE(2514)] = 97181, - [SMALL_STATE(2515)] = 97286, - [SMALL_STATE(2516)] = 97391, - [SMALL_STATE(2517)] = 97442, - [SMALL_STATE(2518)] = 97493, - [SMALL_STATE(2519)] = 97560, - [SMALL_STATE(2520)] = 97633, - [SMALL_STATE(2521)] = 97738, - [SMALL_STATE(2522)] = 97803, - [SMALL_STATE(2523)] = 97862, - [SMALL_STATE(2524)] = 97921, - [SMALL_STATE(2525)] = 97978, - [SMALL_STATE(2526)] = 98035, - [SMALL_STATE(2527)] = 98086, - [SMALL_STATE(2528)] = 98143, - [SMALL_STATE(2529)] = 98216, - [SMALL_STATE(2530)] = 98298, - [SMALL_STATE(2531)] = 98362, - [SMALL_STATE(2532)] = 98422, - [SMALL_STATE(2533)] = 98482, - [SMALL_STATE(2534)] = 98536, - [SMALL_STATE(2535)] = 98586, - [SMALL_STATE(2536)] = 98640, - [SMALL_STATE(2537)] = 98708, - [SMALL_STATE(2538)] = 98778, - [SMALL_STATE(2539)] = 98882, - [SMALL_STATE(2540)] = 98932, - [SMALL_STATE(2541)] = 98982, - [SMALL_STATE(2542)] = 99032, - [SMALL_STATE(2543)] = 99082, - [SMALL_STATE(2544)] = 99148, - [SMALL_STATE(2545)] = 99220, - [SMALL_STATE(2546)] = 99324, - [SMALL_STATE(2547)] = 99388, - [SMALL_STATE(2548)] = 99442, - [SMALL_STATE(2549)] = 99506, - [SMALL_STATE(2550)] = 99566, - [SMALL_STATE(2551)] = 99624, - [SMALL_STATE(2552)] = 99688, - [SMALL_STATE(2553)] = 99748, - [SMALL_STATE(2554)] = 99852, - [SMALL_STATE(2555)] = 99956, - [SMALL_STATE(2556)] = 100060, - [SMALL_STATE(2557)] = 100164, - [SMALL_STATE(2558)] = 100268, - [SMALL_STATE(2559)] = 100372, - [SMALL_STATE(2560)] = 100438, - [SMALL_STATE(2561)] = 100516, - [SMALL_STATE(2562)] = 100584, - [SMALL_STATE(2563)] = 100652, - [SMALL_STATE(2564)] = 100744, - [SMALL_STATE(2565)] = 100798, - [SMALL_STATE(2566)] = 100902, - [SMALL_STATE(2567)] = 100996, - [SMALL_STATE(2568)] = 101070, - [SMALL_STATE(2569)] = 101156, - [SMALL_STATE(2570)] = 101244, - [SMALL_STATE(2571)] = 101334, - [SMALL_STATE(2572)] = 101406, - [SMALL_STATE(2573)] = 101510, - [SMALL_STATE(2574)] = 101570, - [SMALL_STATE(2575)] = 101624, - [SMALL_STATE(2576)] = 101728, - [SMALL_STATE(2577)] = 101782, - [SMALL_STATE(2578)] = 101856, - [SMALL_STATE(2579)] = 101952, - [SMALL_STATE(2580)] = 102056, - [SMALL_STATE(2581)] = 102160, - [SMALL_STATE(2582)] = 102264, - [SMALL_STATE(2583)] = 102314, - [SMALL_STATE(2584)] = 102364, - [SMALL_STATE(2585)] = 102414, - [SMALL_STATE(2586)] = 102464, - [SMALL_STATE(2587)] = 102568, - [SMALL_STATE(2588)] = 102622, - [SMALL_STATE(2589)] = 102726, - [SMALL_STATE(2590)] = 102830, - [SMALL_STATE(2591)] = 102894, - [SMALL_STATE(2592)] = 102948, - [SMALL_STATE(2593)] = 102996, - [SMALL_STATE(2594)] = 103102, - [SMALL_STATE(2595)] = 103206, - [SMALL_STATE(2596)] = 103310, - [SMALL_STATE(2597)] = 103414, - [SMALL_STATE(2598)] = 103468, - [SMALL_STATE(2599)] = 103572, - [SMALL_STATE(2600)] = 103622, - [SMALL_STATE(2601)] = 103726, - [SMALL_STATE(2602)] = 103798, - [SMALL_STATE(2603)] = 103846, - [SMALL_STATE(2604)] = 103902, - [SMALL_STATE(2605)] = 103950, - [SMALL_STATE(2606)] = 104054, - [SMALL_STATE(2607)] = 104108, - [SMALL_STATE(2608)] = 104212, - [SMALL_STATE(2609)] = 104316, - [SMALL_STATE(2610)] = 104366, - [SMALL_STATE(2611)] = 104470, - [SMALL_STATE(2612)] = 104534, - [SMALL_STATE(2613)] = 104588, - [SMALL_STATE(2614)] = 104645, - [SMALL_STATE(2615)] = 104702, - [SMALL_STATE(2616)] = 104803, - [SMALL_STATE(2617)] = 104866, - [SMALL_STATE(2618)] = 104923, - [SMALL_STATE(2619)] = 104982, - [SMALL_STATE(2620)] = 105041, - [SMALL_STATE(2621)] = 105100, - [SMALL_STATE(2622)] = 105159, - [SMALL_STATE(2623)] = 105218, - [SMALL_STATE(2624)] = 105275, - [SMALL_STATE(2625)] = 105332, - [SMALL_STATE(2626)] = 105385, - [SMALL_STATE(2627)] = 105446, - [SMALL_STATE(2628)] = 105503, - [SMALL_STATE(2629)] = 105562, - [SMALL_STATE(2630)] = 105619, - [SMALL_STATE(2631)] = 105678, - [SMALL_STATE(2632)] = 105727, - [SMALL_STATE(2633)] = 105784, - [SMALL_STATE(2634)] = 105841, - [SMALL_STATE(2635)] = 105900, - [SMALL_STATE(2636)] = 105959, - [SMALL_STATE(2637)] = 106016, - [SMALL_STATE(2638)] = 106073, - [SMALL_STATE(2639)] = 106174, - [SMALL_STATE(2640)] = 106231, - [SMALL_STATE(2641)] = 106296, - [SMALL_STATE(2642)] = 106355, - [SMALL_STATE(2643)] = 106418, - [SMALL_STATE(2644)] = 106475, - [SMALL_STATE(2645)] = 106532, - [SMALL_STATE(2646)] = 106589, - [SMALL_STATE(2647)] = 106638, - [SMALL_STATE(2648)] = 106695, - [SMALL_STATE(2649)] = 106744, - [SMALL_STATE(2650)] = 106793, - [SMALL_STATE(2651)] = 106852, - [SMALL_STATE(2652)] = 106911, - [SMALL_STATE(2653)] = 106957, - [SMALL_STATE(2654)] = 107003, - [SMALL_STATE(2655)] = 107051, - [SMALL_STATE(2656)] = 107099, - [SMALL_STATE(2657)] = 107145, - [SMALL_STATE(2658)] = 107193, - [SMALL_STATE(2659)] = 107239, - [SMALL_STATE(2660)] = 107289, - [SMALL_STATE(2661)] = 107337, - [SMALL_STATE(2662)] = 107383, - [SMALL_STATE(2663)] = 107431, - [SMALL_STATE(2664)] = 107477, - [SMALL_STATE(2665)] = 107523, - [SMALL_STATE(2666)] = 107571, - [SMALL_STATE(2667)] = 107619, - [SMALL_STATE(2668)] = 107667, - [SMALL_STATE(2669)] = 107713, - [SMALL_STATE(2670)] = 107759, - [SMALL_STATE(2671)] = 107805, - [SMALL_STATE(2672)] = 107851, - [SMALL_STATE(2673)] = 107897, - [SMALL_STATE(2674)] = 107943, - [SMALL_STATE(2675)] = 107989, - [SMALL_STATE(2676)] = 108035, - [SMALL_STATE(2677)] = 108081, - [SMALL_STATE(2678)] = 108127, - [SMALL_STATE(2679)] = 108173, - [SMALL_STATE(2680)] = 108221, - [SMALL_STATE(2681)] = 108267, - [SMALL_STATE(2682)] = 108313, - [SMALL_STATE(2683)] = 108359, - [SMALL_STATE(2684)] = 108405, - [SMALL_STATE(2685)] = 108451, - [SMALL_STATE(2686)] = 108497, - [SMALL_STATE(2687)] = 108547, - [SMALL_STATE(2688)] = 108593, - [SMALL_STATE(2689)] = 108639, - [SMALL_STATE(2690)] = 108685, - [SMALL_STATE(2691)] = 108743, - [SMALL_STATE(2692)] = 108789, - [SMALL_STATE(2693)] = 108835, - [SMALL_STATE(2694)] = 108881, - [SMALL_STATE(2695)] = 108927, - [SMALL_STATE(2696)] = 108975, - [SMALL_STATE(2697)] = 109021, - [SMALL_STATE(2698)] = 109067, - [SMALL_STATE(2699)] = 109113, - [SMALL_STATE(2700)] = 109159, - [SMALL_STATE(2701)] = 109207, - [SMALL_STATE(2702)] = 109253, - [SMALL_STATE(2703)] = 109299, - [SMALL_STATE(2704)] = 109345, - [SMALL_STATE(2705)] = 109391, - [SMALL_STATE(2706)] = 109437, - [SMALL_STATE(2707)] = 109485, - [SMALL_STATE(2708)] = 109531, - [SMALL_STATE(2709)] = 109587, - [SMALL_STATE(2710)] = 109637, - [SMALL_STATE(2711)] = 109683, - [SMALL_STATE(2712)] = 109729, - [SMALL_STATE(2713)] = 109775, - [SMALL_STATE(2714)] = 109823, - [SMALL_STATE(2715)] = 109871, - [SMALL_STATE(2716)] = 109917, - [SMALL_STATE(2717)] = 109963, - [SMALL_STATE(2718)] = 110009, - [SMALL_STATE(2719)] = 110054, - [SMALL_STATE(2720)] = 110105, - [SMALL_STATE(2721)] = 110154, - [SMALL_STATE(2722)] = 110207, - [SMALL_STATE(2723)] = 110252, - [SMALL_STATE(2724)] = 110319, - [SMALL_STATE(2725)] = 110370, - [SMALL_STATE(2726)] = 110415, - [SMALL_STATE(2727)] = 110460, - [SMALL_STATE(2728)] = 110505, - [SMALL_STATE(2729)] = 110550, - [SMALL_STATE(2730)] = 110595, - [SMALL_STATE(2731)] = 110648, - [SMALL_STATE(2732)] = 110706, - [SMALL_STATE(2733)] = 110778, - [SMALL_STATE(2734)] = 110838, - [SMALL_STATE(2735)] = 110894, - [SMALL_STATE(2736)] = 110952, - [SMALL_STATE(2737)] = 111012, - [SMALL_STATE(2738)] = 111070, - [SMALL_STATE(2739)] = 111118, - [SMALL_STATE(2740)] = 111176, - [SMALL_STATE(2741)] = 111224, - [SMALL_STATE(2742)] = 111284, - [SMALL_STATE(2743)] = 111356, - [SMALL_STATE(2744)] = 111409, - [SMALL_STATE(2745)] = 111462, - [SMALL_STATE(2746)] = 111515, - [SMALL_STATE(2747)] = 111578, - [SMALL_STATE(2748)] = 111631, - [SMALL_STATE(2749)] = 111680, - [SMALL_STATE(2750)] = 111733, - [SMALL_STATE(2751)] = 111786, - [SMALL_STATE(2752)] = 111839, - [SMALL_STATE(2753)] = 111892, - [SMALL_STATE(2754)] = 111945, - [SMALL_STATE(2755)] = 111998, - [SMALL_STATE(2756)] = 112051, - [SMALL_STATE(2757)] = 112104, - [SMALL_STATE(2758)] = 112157, - [SMALL_STATE(2759)] = 112210, - [SMALL_STATE(2760)] = 112263, - [SMALL_STATE(2761)] = 112316, - [SMALL_STATE(2762)] = 112379, - [SMALL_STATE(2763)] = 112432, - [SMALL_STATE(2764)] = 112485, - [SMALL_STATE(2765)] = 112538, - [SMALL_STATE(2766)] = 112591, - [SMALL_STATE(2767)] = 112644, - [SMALL_STATE(2768)] = 112697, - [SMALL_STATE(2769)] = 112750, - [SMALL_STATE(2770)] = 112803, - [SMALL_STATE(2771)] = 112856, - [SMALL_STATE(2772)] = 112909, - [SMALL_STATE(2773)] = 112962, - [SMALL_STATE(2774)] = 113026, - [SMALL_STATE(2775)] = 113080, - [SMALL_STATE(2776)] = 113134, - [SMALL_STATE(2777)] = 113188, - [SMALL_STATE(2778)] = 113242, - [SMALL_STATE(2779)] = 113322, - [SMALL_STATE(2780)] = 113376, - [SMALL_STATE(2781)] = 113430, - [SMALL_STATE(2782)] = 113494, - [SMALL_STATE(2783)] = 113554, - [SMALL_STATE(2784)] = 113614, - [SMALL_STATE(2785)] = 113694, - [SMALL_STATE(2786)] = 113748, - [SMALL_STATE(2787)] = 113828, - [SMALL_STATE(2788)] = 113892, - [SMALL_STATE(2789)] = 113946, - [SMALL_STATE(2790)] = 114000, - [SMALL_STATE(2791)] = 114054, - [SMALL_STATE(2792)] = 114134, - [SMALL_STATE(2793)] = 114214, - [SMALL_STATE(2794)] = 114271, - [SMALL_STATE(2795)] = 114328, - [SMALL_STATE(2796)] = 114385, - [SMALL_STATE(2797)] = 114426, - [SMALL_STATE(2798)] = 114483, - [SMALL_STATE(2799)] = 114536, - [SMALL_STATE(2800)] = 114593, - [SMALL_STATE(2801)] = 114650, - [SMALL_STATE(2802)] = 114707, - [SMALL_STATE(2803)] = 114748, - [SMALL_STATE(2804)] = 114791, - [SMALL_STATE(2805)] = 114848, - [SMALL_STATE(2806)] = 114905, - [SMALL_STATE(2807)] = 114962, - [SMALL_STATE(2808)] = 115019, - [SMALL_STATE(2809)] = 115060, - [SMALL_STATE(2810)] = 115117, - [SMALL_STATE(2811)] = 115174, - [SMALL_STATE(2812)] = 115215, - [SMALL_STATE(2813)] = 115256, - [SMALL_STATE(2814)] = 115313, - [SMALL_STATE(2815)] = 115364, - [SMALL_STATE(2816)] = 115421, - [SMALL_STATE(2817)] = 115478, - [SMALL_STATE(2818)] = 115531, - [SMALL_STATE(2819)] = 115579, - [SMALL_STATE(2820)] = 115627, - [SMALL_STATE(2821)] = 115675, - [SMALL_STATE(2822)] = 115723, - [SMALL_STATE(2823)] = 115771, - [SMALL_STATE(2824)] = 115819, - [SMALL_STATE(2825)] = 115867, - [SMALL_STATE(2826)] = 115915, - [SMALL_STATE(2827)] = 115963, - [SMALL_STATE(2828)] = 116011, - [SMALL_STATE(2829)] = 116059, - [SMALL_STATE(2830)] = 116107, - [SMALL_STATE(2831)] = 116155, - [SMALL_STATE(2832)] = 116203, - [SMALL_STATE(2833)] = 116253, - [SMALL_STATE(2834)] = 116301, - [SMALL_STATE(2835)] = 116349, - [SMALL_STATE(2836)] = 116397, - [SMALL_STATE(2837)] = 116445, - [SMALL_STATE(2838)] = 116495, - [SMALL_STATE(2839)] = 116543, - [SMALL_STATE(2840)] = 116591, - [SMALL_STATE(2841)] = 116639, - [SMALL_STATE(2842)] = 116687, - [SMALL_STATE(2843)] = 116735, - [SMALL_STATE(2844)] = 116783, - [SMALL_STATE(2845)] = 116833, - [SMALL_STATE(2846)] = 116881, - [SMALL_STATE(2847)] = 116931, - [SMALL_STATE(2848)] = 116981, - [SMALL_STATE(2849)] = 117029, - [SMALL_STATE(2850)] = 117077, - [SMALL_STATE(2851)] = 117125, - [SMALL_STATE(2852)] = 117173, - [SMALL_STATE(2853)] = 117223, - [SMALL_STATE(2854)] = 117271, - [SMALL_STATE(2855)] = 117319, - [SMALL_STATE(2856)] = 117367, - [SMALL_STATE(2857)] = 117415, - [SMALL_STATE(2858)] = 117465, - [SMALL_STATE(2859)] = 117513, - [SMALL_STATE(2860)] = 117561, - [SMALL_STATE(2861)] = 117609, - [SMALL_STATE(2862)] = 117657, - [SMALL_STATE(2863)] = 117705, - [SMALL_STATE(2864)] = 117753, - [SMALL_STATE(2865)] = 117801, - [SMALL_STATE(2866)] = 117851, - [SMALL_STATE(2867)] = 117901, - [SMALL_STATE(2868)] = 117949, - [SMALL_STATE(2869)] = 117999, - [SMALL_STATE(2870)] = 118049, - [SMALL_STATE(2871)] = 118097, - [SMALL_STATE(2872)] = 118145, - [SMALL_STATE(2873)] = 118193, - [SMALL_STATE(2874)] = 118243, - [SMALL_STATE(2875)] = 118291, - [SMALL_STATE(2876)] = 118341, - [SMALL_STATE(2877)] = 118389, - [SMALL_STATE(2878)] = 118439, - [SMALL_STATE(2879)] = 118487, - [SMALL_STATE(2880)] = 118522, - [SMALL_STATE(2881)] = 118563, - [SMALL_STATE(2882)] = 118604, - [SMALL_STATE(2883)] = 118645, - [SMALL_STATE(2884)] = 118673, - [SMALL_STATE(2885)] = 118701, - [SMALL_STATE(2886)] = 118729, - [SMALL_STATE(2887)] = 118757, - [SMALL_STATE(2888)] = 118785, - [SMALL_STATE(2889)] = 118813, - [SMALL_STATE(2890)] = 118841, - [SMALL_STATE(2891)] = 118869, - [SMALL_STATE(2892)] = 118897, - [SMALL_STATE(2893)] = 118925, - [SMALL_STATE(2894)] = 118953, - [SMALL_STATE(2895)] = 118981, - [SMALL_STATE(2896)] = 119009, - [SMALL_STATE(2897)] = 119037, - [SMALL_STATE(2898)] = 119065, - [SMALL_STATE(2899)] = 119093, - [SMALL_STATE(2900)] = 119121, - [SMALL_STATE(2901)] = 119149, - [SMALL_STATE(2902)] = 119177, - [SMALL_STATE(2903)] = 119205, - [SMALL_STATE(2904)] = 119233, - [SMALL_STATE(2905)] = 119261, - [SMALL_STATE(2906)] = 119289, - [SMALL_STATE(2907)] = 119317, - [SMALL_STATE(2908)] = 119345, - [SMALL_STATE(2909)] = 119373, - [SMALL_STATE(2910)] = 119401, - [SMALL_STATE(2911)] = 119429, - [SMALL_STATE(2912)] = 119457, - [SMALL_STATE(2913)] = 119485, - [SMALL_STATE(2914)] = 119513, - [SMALL_STATE(2915)] = 119541, - [SMALL_STATE(2916)] = 119569, - [SMALL_STATE(2917)] = 119597, - [SMALL_STATE(2918)] = 119624, - [SMALL_STATE(2919)] = 119651, - [SMALL_STATE(2920)] = 119677, - [SMALL_STATE(2921)] = 119711, - [SMALL_STATE(2922)] = 119737, - [SMALL_STATE(2923)] = 119763, - [SMALL_STATE(2924)] = 119789, - [SMALL_STATE(2925)] = 119819, - [SMALL_STATE(2926)] = 119845, - [SMALL_STATE(2927)] = 119883, - [SMALL_STATE(2928)] = 119913, - [SMALL_STATE(2929)] = 119963, - [SMALL_STATE(2930)] = 119989, - [SMALL_STATE(2931)] = 120017, - [SMALL_STATE(2932)] = 120055, - [SMALL_STATE(2933)] = 120083, - [SMALL_STATE(2934)] = 120109, - [SMALL_STATE(2935)] = 120141, - [SMALL_STATE(2936)] = 120167, - [SMALL_STATE(2937)] = 120193, - [SMALL_STATE(2938)] = 120231, - [SMALL_STATE(2939)] = 120256, - [SMALL_STATE(2940)] = 120281, - [SMALL_STATE(2941)] = 120306, - [SMALL_STATE(2942)] = 120335, - [SMALL_STATE(2943)] = 120366, - [SMALL_STATE(2944)] = 120391, - [SMALL_STATE(2945)] = 120418, - [SMALL_STATE(2946)] = 120452, - [SMALL_STATE(2947)] = 120476, - [SMALL_STATE(2948)] = 120500, - [SMALL_STATE(2949)] = 120524, - [SMALL_STATE(2950)] = 120556, - [SMALL_STATE(2951)] = 120590, - [SMALL_STATE(2952)] = 120624, - [SMALL_STATE(2953)] = 120658, - [SMALL_STATE(2954)] = 120682, - [SMALL_STATE(2955)] = 120706, - [SMALL_STATE(2956)] = 120740, - [SMALL_STATE(2957)] = 120774, - [SMALL_STATE(2958)] = 120808, - [SMALL_STATE(2959)] = 120830, - [SMALL_STATE(2960)] = 120862, - [SMALL_STATE(2961)] = 120896, - [SMALL_STATE(2962)] = 120930, - [SMALL_STATE(2963)] = 120958, - [SMALL_STATE(2964)] = 120982, - [SMALL_STATE(2965)] = 121006, - [SMALL_STATE(2966)] = 121030, - [SMALL_STATE(2967)] = 121054, - [SMALL_STATE(2968)] = 121078, - [SMALL_STATE(2969)] = 121102, - [SMALL_STATE(2970)] = 121124, - [SMALL_STATE(2971)] = 121148, - [SMALL_STATE(2972)] = 121172, - [SMALL_STATE(2973)] = 121196, - [SMALL_STATE(2974)] = 121220, - [SMALL_STATE(2975)] = 121244, - [SMALL_STATE(2976)] = 121268, - [SMALL_STATE(2977)] = 121292, - [SMALL_STATE(2978)] = 121324, - [SMALL_STATE(2979)] = 121358, - [SMALL_STATE(2980)] = 121392, - [SMALL_STATE(2981)] = 121426, - [SMALL_STATE(2982)] = 121450, - [SMALL_STATE(2983)] = 121474, - [SMALL_STATE(2984)] = 121498, - [SMALL_STATE(2985)] = 121520, - [SMALL_STATE(2986)] = 121544, - [SMALL_STATE(2987)] = 121568, - [SMALL_STATE(2988)] = 121600, - [SMALL_STATE(2989)] = 121634, - [SMALL_STATE(2990)] = 121668, - [SMALL_STATE(2991)] = 121702, - [SMALL_STATE(2992)] = 121726, - [SMALL_STATE(2993)] = 121758, - [SMALL_STATE(2994)] = 121784, - [SMALL_STATE(2995)] = 121818, - [SMALL_STATE(2996)] = 121842, - [SMALL_STATE(2997)] = 121876, - [SMALL_STATE(2998)] = 121900, - [SMALL_STATE(2999)] = 121924, - [SMALL_STATE(3000)] = 121958, - [SMALL_STATE(3001)] = 121982, - [SMALL_STATE(3002)] = 122004, - [SMALL_STATE(3003)] = 122028, - [SMALL_STATE(3004)] = 122052, - [SMALL_STATE(3005)] = 122076, - [SMALL_STATE(3006)] = 122100, - [SMALL_STATE(3007)] = 122122, - [SMALL_STATE(3008)] = 122146, - [SMALL_STATE(3009)] = 122170, - [SMALL_STATE(3010)] = 122194, - [SMALL_STATE(3011)] = 122216, - [SMALL_STATE(3012)] = 122240, - [SMALL_STATE(3013)] = 122262, - [SMALL_STATE(3014)] = 122286, - [SMALL_STATE(3015)] = 122312, - [SMALL_STATE(3016)] = 122336, - [SMALL_STATE(3017)] = 122360, - [SMALL_STATE(3018)] = 122384, - [SMALL_STATE(3019)] = 122408, - [SMALL_STATE(3020)] = 122432, - [SMALL_STATE(3021)] = 122456, - [SMALL_STATE(3022)] = 122480, - [SMALL_STATE(3023)] = 122504, - [SMALL_STATE(3024)] = 122528, - [SMALL_STATE(3025)] = 122552, - [SMALL_STATE(3026)] = 122576, - [SMALL_STATE(3027)] = 122600, - [SMALL_STATE(3028)] = 122632, - [SMALL_STATE(3029)] = 122656, - [SMALL_STATE(3030)] = 122680, - [SMALL_STATE(3031)] = 122704, - [SMALL_STATE(3032)] = 122728, - [SMALL_STATE(3033)] = 122752, - [SMALL_STATE(3034)] = 122774, - [SMALL_STATE(3035)] = 122798, - [SMALL_STATE(3036)] = 122822, - [SMALL_STATE(3037)] = 122844, - [SMALL_STATE(3038)] = 122866, - [SMALL_STATE(3039)] = 122890, - [SMALL_STATE(3040)] = 122914, - [SMALL_STATE(3041)] = 122938, - [SMALL_STATE(3042)] = 122962, - [SMALL_STATE(3043)] = 122986, - [SMALL_STATE(3044)] = 123010, - [SMALL_STATE(3045)] = 123034, - [SMALL_STATE(3046)] = 123058, - [SMALL_STATE(3047)] = 123082, - [SMALL_STATE(3048)] = 123125, - [SMALL_STATE(3049)] = 123154, - [SMALL_STATE(3050)] = 123183, - [SMALL_STATE(3051)] = 123226, - [SMALL_STATE(3052)] = 123269, - [SMALL_STATE(3053)] = 123298, - [SMALL_STATE(3054)] = 123337, - [SMALL_STATE(3055)] = 123380, - [SMALL_STATE(3056)] = 123423, - [SMALL_STATE(3057)] = 123466, - [SMALL_STATE(3058)] = 123505, - [SMALL_STATE(3059)] = 123548, - [SMALL_STATE(3060)] = 123591, - [SMALL_STATE(3061)] = 123616, - [SMALL_STATE(3062)] = 123645, - [SMALL_STATE(3063)] = 123670, - [SMALL_STATE(3064)] = 123713, - [SMALL_STATE(3065)] = 123742, - [SMALL_STATE(3066)] = 123771, - [SMALL_STATE(3067)] = 123814, - [SMALL_STATE(3068)] = 123857, - [SMALL_STATE(3069)] = 123900, - [SMALL_STATE(3070)] = 123939, - [SMALL_STATE(3071)] = 123982, - [SMALL_STATE(3072)] = 124025, - [SMALL_STATE(3073)] = 124068, - [SMALL_STATE(3074)] = 124097, - [SMALL_STATE(3075)] = 124140, - [SMALL_STATE(3076)] = 124179, - [SMALL_STATE(3077)] = 124222, - [SMALL_STATE(3078)] = 124265, - [SMALL_STATE(3079)] = 124310, - [SMALL_STATE(3080)] = 124353, - [SMALL_STATE(3081)] = 124396, - [SMALL_STATE(3082)] = 124435, - [SMALL_STATE(3083)] = 124464, - [SMALL_STATE(3084)] = 124489, - [SMALL_STATE(3085)] = 124532, - [SMALL_STATE(3086)] = 124575, - [SMALL_STATE(3087)] = 124618, - [SMALL_STATE(3088)] = 124647, - [SMALL_STATE(3089)] = 124669, - [SMALL_STATE(3090)] = 124689, - [SMALL_STATE(3091)] = 124709, - [SMALL_STATE(3092)] = 124729, - [SMALL_STATE(3093)] = 124749, - [SMALL_STATE(3094)] = 124769, - [SMALL_STATE(3095)] = 124789, - [SMALL_STATE(3096)] = 124809, - [SMALL_STATE(3097)] = 124829, - [SMALL_STATE(3098)] = 124849, - [SMALL_STATE(3099)] = 124885, - [SMALL_STATE(3100)] = 124923, - [SMALL_STATE(3101)] = 124951, - [SMALL_STATE(3102)] = 124971, - [SMALL_STATE(3103)] = 124999, - [SMALL_STATE(3104)] = 125021, - [SMALL_STATE(3105)] = 125045, - [SMALL_STATE(3106)] = 125065, - [SMALL_STATE(3107)] = 125087, - [SMALL_STATE(3108)] = 125123, - [SMALL_STATE(3109)] = 125159, - [SMALL_STATE(3110)] = 125179, - [SMALL_STATE(3111)] = 125215, - [SMALL_STATE(3112)] = 125235, - [SMALL_STATE(3113)] = 125263, - [SMALL_STATE(3114)] = 125283, - [SMALL_STATE(3115)] = 125303, - [SMALL_STATE(3116)] = 125325, - [SMALL_STATE(3117)] = 125345, - [SMALL_STATE(3118)] = 125381, - [SMALL_STATE(3119)] = 125401, - [SMALL_STATE(3120)] = 125423, - [SMALL_STATE(3121)] = 125445, - [SMALL_STATE(3122)] = 125473, - [SMALL_STATE(3123)] = 125493, - [SMALL_STATE(3124)] = 125519, - [SMALL_STATE(3125)] = 125555, - [SMALL_STATE(3126)] = 125577, - [SMALL_STATE(3127)] = 125597, - [SMALL_STATE(3128)] = 125617, - [SMALL_STATE(3129)] = 125639, - [SMALL_STATE(3130)] = 125663, - [SMALL_STATE(3131)] = 125683, - [SMALL_STATE(3132)] = 125709, - [SMALL_STATE(3133)] = 125729, - [SMALL_STATE(3134)] = 125765, - [SMALL_STATE(3135)] = 125787, - [SMALL_STATE(3136)] = 125823, - [SMALL_STATE(3137)] = 125847, - [SMALL_STATE(3138)] = 125867, - [SMALL_STATE(3139)] = 125895, - [SMALL_STATE(3140)] = 125923, - [SMALL_STATE(3141)] = 125943, - [SMALL_STATE(3142)] = 125965, - [SMALL_STATE(3143)] = 125985, - [SMALL_STATE(3144)] = 126007, - [SMALL_STATE(3145)] = 126027, - [SMALL_STATE(3146)] = 126051, - [SMALL_STATE(3147)] = 126073, - [SMALL_STATE(3148)] = 126093, - [SMALL_STATE(3149)] = 126113, - [SMALL_STATE(3150)] = 126141, - [SMALL_STATE(3151)] = 126161, - [SMALL_STATE(3152)] = 126181, - [SMALL_STATE(3153)] = 126201, - [SMALL_STATE(3154)] = 126225, - [SMALL_STATE(3155)] = 126251, - [SMALL_STATE(3156)] = 126271, - [SMALL_STATE(3157)] = 126307, - [SMALL_STATE(3158)] = 126327, - [SMALL_STATE(3159)] = 126363, - [SMALL_STATE(3160)] = 126391, - [SMALL_STATE(3161)] = 126411, - [SMALL_STATE(3162)] = 126430, - [SMALL_STATE(3163)] = 126463, - [SMALL_STATE(3164)] = 126496, - [SMALL_STATE(3165)] = 126517, - [SMALL_STATE(3166)] = 126554, - [SMALL_STATE(3167)] = 126587, - [SMALL_STATE(3168)] = 126620, - [SMALL_STATE(3169)] = 126641, - [SMALL_STATE(3170)] = 126662, - [SMALL_STATE(3171)] = 126699, - [SMALL_STATE(3172)] = 126730, - [SMALL_STATE(3173)] = 126761, - [SMALL_STATE(3174)] = 126800, - [SMALL_STATE(3175)] = 126831, - [SMALL_STATE(3176)] = 126854, - [SMALL_STATE(3177)] = 126891, - [SMALL_STATE(3178)] = 126928, - [SMALL_STATE(3179)] = 126965, - [SMALL_STATE(3180)] = 127002, - [SMALL_STATE(3181)] = 127035, - [SMALL_STATE(3182)] = 127072, - [SMALL_STATE(3183)] = 127093, - [SMALL_STATE(3184)] = 127130, - [SMALL_STATE(3185)] = 127153, - [SMALL_STATE(3186)] = 127184, - [SMALL_STATE(3187)] = 127207, - [SMALL_STATE(3188)] = 127240, - [SMALL_STATE(3189)] = 127273, - [SMALL_STATE(3190)] = 127310, - [SMALL_STATE(3191)] = 127331, - [SMALL_STATE(3192)] = 127368, - [SMALL_STATE(3193)] = 127405, - [SMALL_STATE(3194)] = 127442, - [SMALL_STATE(3195)] = 127475, - [SMALL_STATE(3196)] = 127508, - [SMALL_STATE(3197)] = 127541, - [SMALL_STATE(3198)] = 127578, - [SMALL_STATE(3199)] = 127607, - [SMALL_STATE(3200)] = 127644, - [SMALL_STATE(3201)] = 127669, - [SMALL_STATE(3202)] = 127706, - [SMALL_STATE(3203)] = 127743, - [SMALL_STATE(3204)] = 127780, - [SMALL_STATE(3205)] = 127809, - [SMALL_STATE(3206)] = 127828, - [SMALL_STATE(3207)] = 127865, - [SMALL_STATE(3208)] = 127896, - [SMALL_STATE(3209)] = 127917, - [SMALL_STATE(3210)] = 127940, - [SMALL_STATE(3211)] = 127969, - [SMALL_STATE(3212)] = 127998, - [SMALL_STATE(3213)] = 128027, - [SMALL_STATE(3214)] = 128048, - [SMALL_STATE(3215)] = 128085, - [SMALL_STATE(3216)] = 128122, - [SMALL_STATE(3217)] = 128159, - [SMALL_STATE(3218)] = 128184, - [SMALL_STATE(3219)] = 128221, - [SMALL_STATE(3220)] = 128258, - [SMALL_STATE(3221)] = 128281, - [SMALL_STATE(3222)] = 128299, - [SMALL_STATE(3223)] = 128319, - [SMALL_STATE(3224)] = 128339, - [SMALL_STATE(3225)] = 128363, - [SMALL_STATE(3226)] = 128383, - [SMALL_STATE(3227)] = 128405, - [SMALL_STATE(3228)] = 128423, - [SMALL_STATE(3229)] = 128443, - [SMALL_STATE(3230)] = 128463, - [SMALL_STATE(3231)] = 128483, - [SMALL_STATE(3232)] = 128501, - [SMALL_STATE(3233)] = 128519, - [SMALL_STATE(3234)] = 128539, - [SMALL_STATE(3235)] = 128557, - [SMALL_STATE(3236)] = 128581, - [SMALL_STATE(3237)] = 128599, - [SMALL_STATE(3238)] = 128619, - [SMALL_STATE(3239)] = 128641, - [SMALL_STATE(3240)] = 128661, - [SMALL_STATE(3241)] = 128679, - [SMALL_STATE(3242)] = 128697, - [SMALL_STATE(3243)] = 128717, - [SMALL_STATE(3244)] = 128737, - [SMALL_STATE(3245)] = 128757, - [SMALL_STATE(3246)] = 128775, - [SMALL_STATE(3247)] = 128793, - [SMALL_STATE(3248)] = 128813, - [SMALL_STATE(3249)] = 128833, - [SMALL_STATE(3250)] = 128851, - [SMALL_STATE(3251)] = 128877, - [SMALL_STATE(3252)] = 128897, - [SMALL_STATE(3253)] = 128919, - [SMALL_STATE(3254)] = 128945, - [SMALL_STATE(3255)] = 128969, - [SMALL_STATE(3256)] = 128989, - [SMALL_STATE(3257)] = 129013, - [SMALL_STATE(3258)] = 129033, - [SMALL_STATE(3259)] = 129055, - [SMALL_STATE(3260)] = 129075, - [SMALL_STATE(3261)] = 129095, - [SMALL_STATE(3262)] = 129113, - [SMALL_STATE(3263)] = 129133, - [SMALL_STATE(3264)] = 129153, - [SMALL_STATE(3265)] = 129175, - [SMALL_STATE(3266)] = 129195, - [SMALL_STATE(3267)] = 129215, - [SMALL_STATE(3268)] = 129235, - [SMALL_STATE(3269)] = 129255, - [SMALL_STATE(3270)] = 129275, - [SMALL_STATE(3271)] = 129299, - [SMALL_STATE(3272)] = 129319, - [SMALL_STATE(3273)] = 129339, - [SMALL_STATE(3274)] = 129361, - [SMALL_STATE(3275)] = 129381, - [SMALL_STATE(3276)] = 129401, - [SMALL_STATE(3277)] = 129421, - [SMALL_STATE(3278)] = 129445, - [SMALL_STATE(3279)] = 129481, - [SMALL_STATE(3280)] = 129499, - [SMALL_STATE(3281)] = 129519, - [SMALL_STATE(3282)] = 129539, - [SMALL_STATE(3283)] = 129563, - [SMALL_STATE(3284)] = 129583, - [SMALL_STATE(3285)] = 129603, - [SMALL_STATE(3286)] = 129623, - [SMALL_STATE(3287)] = 129647, - [SMALL_STATE(3288)] = 129669, - [SMALL_STATE(3289)] = 129689, - [SMALL_STATE(3290)] = 129713, - [SMALL_STATE(3291)] = 129735, - [SMALL_STATE(3292)] = 129755, - [SMALL_STATE(3293)] = 129773, - [SMALL_STATE(3294)] = 129808, - [SMALL_STATE(3295)] = 129843, - [SMALL_STATE(3296)] = 129862, - [SMALL_STATE(3297)] = 129879, - [SMALL_STATE(3298)] = 129896, - [SMALL_STATE(3299)] = 129927, - [SMALL_STATE(3300)] = 129948, - [SMALL_STATE(3301)] = 129965, - [SMALL_STATE(3302)] = 129986, - [SMALL_STATE(3303)] = 130021, - [SMALL_STATE(3304)] = 130054, - [SMALL_STATE(3305)] = 130089, - [SMALL_STATE(3306)] = 130106, - [SMALL_STATE(3307)] = 130125, - [SMALL_STATE(3308)] = 130146, - [SMALL_STATE(3309)] = 130175, - [SMALL_STATE(3310)] = 130206, - [SMALL_STATE(3311)] = 130241, - [SMALL_STATE(3312)] = 130272, - [SMALL_STATE(3313)] = 130295, - [SMALL_STATE(3314)] = 130330, - [SMALL_STATE(3315)] = 130365, - [SMALL_STATE(3316)] = 130388, - [SMALL_STATE(3317)] = 130407, - [SMALL_STATE(3318)] = 130432, - [SMALL_STATE(3319)] = 130451, - [SMALL_STATE(3320)] = 130486, - [SMALL_STATE(3321)] = 130521, - [SMALL_STATE(3322)] = 130556, - [SMALL_STATE(3323)] = 130589, - [SMALL_STATE(3324)] = 130624, - [SMALL_STATE(3325)] = 130650, - [SMALL_STATE(3326)] = 130678, - [SMALL_STATE(3327)] = 130706, - [SMALL_STATE(3328)] = 130734, - [SMALL_STATE(3329)] = 130750, - [SMALL_STATE(3330)] = 130778, - [SMALL_STATE(3331)] = 130794, - [SMALL_STATE(3332)] = 130822, - [SMALL_STATE(3333)] = 130844, - [SMALL_STATE(3334)] = 130862, - [SMALL_STATE(3335)] = 130884, - [SMALL_STATE(3336)] = 130900, - [SMALL_STATE(3337)] = 130920, - [SMALL_STATE(3338)] = 130942, - [SMALL_STATE(3339)] = 130970, - [SMALL_STATE(3340)] = 130998, - [SMALL_STATE(3341)] = 131026, - [SMALL_STATE(3342)] = 131054, - [SMALL_STATE(3343)] = 131070, - [SMALL_STATE(3344)] = 131086, - [SMALL_STATE(3345)] = 131102, - [SMALL_STATE(3346)] = 131130, - [SMALL_STATE(3347)] = 131146, - [SMALL_STATE(3348)] = 131162, - [SMALL_STATE(3349)] = 131178, - [SMALL_STATE(3350)] = 131206, - [SMALL_STATE(3351)] = 131224, - [SMALL_STATE(3352)] = 131250, - [SMALL_STATE(3353)] = 131266, - [SMALL_STATE(3354)] = 131292, - [SMALL_STATE(3355)] = 131308, - [SMALL_STATE(3356)] = 131338, - [SMALL_STATE(3357)] = 131354, - [SMALL_STATE(3358)] = 131382, - [SMALL_STATE(3359)] = 131398, - [SMALL_STATE(3360)] = 131420, - [SMALL_STATE(3361)] = 131446, - [SMALL_STATE(3362)] = 131478, - [SMALL_STATE(3363)] = 131494, - [SMALL_STATE(3364)] = 131526, - [SMALL_STATE(3365)] = 131554, - [SMALL_STATE(3366)] = 131574, - [SMALL_STATE(3367)] = 131590, - [SMALL_STATE(3368)] = 131618, - [SMALL_STATE(3369)] = 131646, - [SMALL_STATE(3370)] = 131662, - [SMALL_STATE(3371)] = 131690, - [SMALL_STATE(3372)] = 131708, - [SMALL_STATE(3373)] = 131724, - [SMALL_STATE(3374)] = 131746, - [SMALL_STATE(3375)] = 131762, - [SMALL_STATE(3376)] = 131786, - [SMALL_STATE(3377)] = 131818, - [SMALL_STATE(3378)] = 131846, - [SMALL_STATE(3379)] = 131862, - [SMALL_STATE(3380)] = 131878, - [SMALL_STATE(3381)] = 131894, - [SMALL_STATE(3382)] = 131926, - [SMALL_STATE(3383)] = 131958, - [SMALL_STATE(3384)] = 131978, - [SMALL_STATE(3385)] = 131994, - [SMALL_STATE(3386)] = 132012, - [SMALL_STATE(3387)] = 132044, - [SMALL_STATE(3388)] = 132062, - [SMALL_STATE(3389)] = 132078, - [SMALL_STATE(3390)] = 132094, - [SMALL_STATE(3391)] = 132122, - [SMALL_STATE(3392)] = 132154, - [SMALL_STATE(3393)] = 132186, - [SMALL_STATE(3394)] = 132212, - [SMALL_STATE(3395)] = 132228, - [SMALL_STATE(3396)] = 132260, - [SMALL_STATE(3397)] = 132276, - [SMALL_STATE(3398)] = 132304, - [SMALL_STATE(3399)] = 132332, - [SMALL_STATE(3400)] = 132348, - [SMALL_STATE(3401)] = 132376, - [SMALL_STATE(3402)] = 132392, - [SMALL_STATE(3403)] = 132408, - [SMALL_STATE(3404)] = 132436, - [SMALL_STATE(3405)] = 132452, - [SMALL_STATE(3406)] = 132480, - [SMALL_STATE(3407)] = 132508, - [SMALL_STATE(3408)] = 132534, - [SMALL_STATE(3409)] = 132566, - [SMALL_STATE(3410)] = 132594, - [SMALL_STATE(3411)] = 132610, - [SMALL_STATE(3412)] = 132636, - [SMALL_STATE(3413)] = 132658, - [SMALL_STATE(3414)] = 132686, - [SMALL_STATE(3415)] = 132712, - [SMALL_STATE(3416)] = 132728, - [SMALL_STATE(3417)] = 132756, - [SMALL_STATE(3418)] = 132784, - [SMALL_STATE(3419)] = 132812, - [SMALL_STATE(3420)] = 132844, - [SMALL_STATE(3421)] = 132876, - [SMALL_STATE(3422)] = 132904, - [SMALL_STATE(3423)] = 132920, - [SMALL_STATE(3424)] = 132936, - [SMALL_STATE(3425)] = 132964, - [SMALL_STATE(3426)] = 132992, - [SMALL_STATE(3427)] = 133014, - [SMALL_STATE(3428)] = 133042, - [SMALL_STATE(3429)] = 133068, - [SMALL_STATE(3430)] = 133086, - [SMALL_STATE(3431)] = 133114, - [SMALL_STATE(3432)] = 133142, - [SMALL_STATE(3433)] = 133158, - [SMALL_STATE(3434)] = 133186, - [SMALL_STATE(3435)] = 133202, - [SMALL_STATE(3436)] = 133228, - [SMALL_STATE(3437)] = 133260, - [SMALL_STATE(3438)] = 133278, - [SMALL_STATE(3439)] = 133304, - [SMALL_STATE(3440)] = 133320, - [SMALL_STATE(3441)] = 133348, - [SMALL_STATE(3442)] = 133374, - [SMALL_STATE(3443)] = 133396, - [SMALL_STATE(3444)] = 133428, - [SMALL_STATE(3445)] = 133456, - [SMALL_STATE(3446)] = 133472, - [SMALL_STATE(3447)] = 133500, - [SMALL_STATE(3448)] = 133516, - [SMALL_STATE(3449)] = 133548, - [SMALL_STATE(3450)] = 133570, - [SMALL_STATE(3451)] = 133598, - [SMALL_STATE(3452)] = 133614, - [SMALL_STATE(3453)] = 133646, - [SMALL_STATE(3454)] = 133678, - [SMALL_STATE(3455)] = 133706, - [SMALL_STATE(3456)] = 133738, - [SMALL_STATE(3457)] = 133766, - [SMALL_STATE(3458)] = 133798, - [SMALL_STATE(3459)] = 133814, - [SMALL_STATE(3460)] = 133842, - [SMALL_STATE(3461)] = 133868, - [SMALL_STATE(3462)] = 133896, - [SMALL_STATE(3463)] = 133912, - [SMALL_STATE(3464)] = 133928, - [SMALL_STATE(3465)] = 133944, - [SMALL_STATE(3466)] = 133972, - [SMALL_STATE(3467)] = 133990, - [SMALL_STATE(3468)] = 134006, - [SMALL_STATE(3469)] = 134034, - [SMALL_STATE(3470)] = 134050, - [SMALL_STATE(3471)] = 134078, - [SMALL_STATE(3472)] = 134107, - [SMALL_STATE(3473)] = 134132, - [SMALL_STATE(3474)] = 134155, - [SMALL_STATE(3475)] = 134184, - [SMALL_STATE(3476)] = 134209, - [SMALL_STATE(3477)] = 134232, - [SMALL_STATE(3478)] = 134253, - [SMALL_STATE(3479)] = 134274, - [SMALL_STATE(3480)] = 134303, - [SMALL_STATE(3481)] = 134322, - [SMALL_STATE(3482)] = 134343, - [SMALL_STATE(3483)] = 134366, - [SMALL_STATE(3484)] = 134391, - [SMALL_STATE(3485)] = 134412, - [SMALL_STATE(3486)] = 134435, - [SMALL_STATE(3487)] = 134452, - [SMALL_STATE(3488)] = 134475, - [SMALL_STATE(3489)] = 134500, - [SMALL_STATE(3490)] = 134525, - [SMALL_STATE(3491)] = 134550, - [SMALL_STATE(3492)] = 134575, - [SMALL_STATE(3493)] = 134604, - [SMALL_STATE(3494)] = 134627, - [SMALL_STATE(3495)] = 134646, - [SMALL_STATE(3496)] = 134671, - [SMALL_STATE(3497)] = 134688, - [SMALL_STATE(3498)] = 134703, - [SMALL_STATE(3499)] = 134726, - [SMALL_STATE(3500)] = 134749, - [SMALL_STATE(3501)] = 134774, - [SMALL_STATE(3502)] = 134795, - [SMALL_STATE(3503)] = 134816, - [SMALL_STATE(3504)] = 134841, - [SMALL_STATE(3505)] = 134870, - [SMALL_STATE(3506)] = 134895, - [SMALL_STATE(3507)] = 134910, - [SMALL_STATE(3508)] = 134935, - [SMALL_STATE(3509)] = 134958, - [SMALL_STATE(3510)] = 134987, - [SMALL_STATE(3511)] = 135002, - [SMALL_STATE(3512)] = 135019, - [SMALL_STATE(3513)] = 135045, - [SMALL_STATE(3514)] = 135071, - [SMALL_STATE(3515)] = 135089, - [SMALL_STATE(3516)] = 135111, - [SMALL_STATE(3517)] = 135133, - [SMALL_STATE(3518)] = 135155, - [SMALL_STATE(3519)] = 135181, - [SMALL_STATE(3520)] = 135203, - [SMALL_STATE(3521)] = 135225, - [SMALL_STATE(3522)] = 135251, - [SMALL_STATE(3523)] = 135273, - [SMALL_STATE(3524)] = 135295, - [SMALL_STATE(3525)] = 135317, - [SMALL_STATE(3526)] = 135339, - [SMALL_STATE(3527)] = 135361, - [SMALL_STATE(3528)] = 135383, - [SMALL_STATE(3529)] = 135409, - [SMALL_STATE(3530)] = 135431, - [SMALL_STATE(3531)] = 135449, - [SMALL_STATE(3532)] = 135471, - [SMALL_STATE(3533)] = 135493, - [SMALL_STATE(3534)] = 135519, - [SMALL_STATE(3535)] = 135533, - [SMALL_STATE(3536)] = 135547, - [SMALL_STATE(3537)] = 135569, - [SMALL_STATE(3538)] = 135591, - [SMALL_STATE(3539)] = 135613, - [SMALL_STATE(3540)] = 135635, - [SMALL_STATE(3541)] = 135657, - [SMALL_STATE(3542)] = 135671, - [SMALL_STATE(3543)] = 135697, - [SMALL_STATE(3544)] = 135719, - [SMALL_STATE(3545)] = 135745, - [SMALL_STATE(3546)] = 135771, - [SMALL_STATE(3547)] = 135797, - [SMALL_STATE(3548)] = 135819, - [SMALL_STATE(3549)] = 135845, - [SMALL_STATE(3550)] = 135871, - [SMALL_STATE(3551)] = 135893, - [SMALL_STATE(3552)] = 135915, - [SMALL_STATE(3553)] = 135941, - [SMALL_STATE(3554)] = 135967, - [SMALL_STATE(3555)] = 135989, - [SMALL_STATE(3556)] = 136011, - [SMALL_STATE(3557)] = 136033, - [SMALL_STATE(3558)] = 136059, - [SMALL_STATE(3559)] = 136081, - [SMALL_STATE(3560)] = 136103, - [SMALL_STATE(3561)] = 136125, - [SMALL_STATE(3562)] = 136151, - [SMALL_STATE(3563)] = 136177, - [SMALL_STATE(3564)] = 136203, - [SMALL_STATE(3565)] = 136225, - [SMALL_STATE(3566)] = 136247, - [SMALL_STATE(3567)] = 136273, - [SMALL_STATE(3568)] = 136295, - [SMALL_STATE(3569)] = 136317, - [SMALL_STATE(3570)] = 136343, - [SMALL_STATE(3571)] = 136365, - [SMALL_STATE(3572)] = 136381, - [SMALL_STATE(3573)] = 136403, - [SMALL_STATE(3574)] = 136429, - [SMALL_STATE(3575)] = 136455, - [SMALL_STATE(3576)] = 136481, - [SMALL_STATE(3577)] = 136507, - [SMALL_STATE(3578)] = 136529, - [SMALL_STATE(3579)] = 136551, - [SMALL_STATE(3580)] = 136565, - [SMALL_STATE(3581)] = 136587, - [SMALL_STATE(3582)] = 136609, - [SMALL_STATE(3583)] = 136623, - [SMALL_STATE(3584)] = 136637, - [SMALL_STATE(3585)] = 136651, - [SMALL_STATE(3586)] = 136673, - [SMALL_STATE(3587)] = 136695, - [SMALL_STATE(3588)] = 136721, - [SMALL_STATE(3589)] = 136743, - [SMALL_STATE(3590)] = 136765, - [SMALL_STATE(3591)] = 136787, - [SMALL_STATE(3592)] = 136809, - [SMALL_STATE(3593)] = 136835, - [SMALL_STATE(3594)] = 136861, - [SMALL_STATE(3595)] = 136887, - [SMALL_STATE(3596)] = 136909, - [SMALL_STATE(3597)] = 136931, - [SMALL_STATE(3598)] = 136957, - [SMALL_STATE(3599)] = 136983, - [SMALL_STATE(3600)] = 137001, - [SMALL_STATE(3601)] = 137019, - [SMALL_STATE(3602)] = 137041, - [SMALL_STATE(3603)] = 137063, - [SMALL_STATE(3604)] = 137089, - [SMALL_STATE(3605)] = 137115, - [SMALL_STATE(3606)] = 137129, - [SMALL_STATE(3607)] = 137151, - [SMALL_STATE(3608)] = 137173, - [SMALL_STATE(3609)] = 137195, - [SMALL_STATE(3610)] = 137209, - [SMALL_STATE(3611)] = 137223, - [SMALL_STATE(3612)] = 137247, - [SMALL_STATE(3613)] = 137261, - [SMALL_STATE(3614)] = 137279, - [SMALL_STATE(3615)] = 137305, - [SMALL_STATE(3616)] = 137331, - [SMALL_STATE(3617)] = 137357, - [SMALL_STATE(3618)] = 137379, - [SMALL_STATE(3619)] = 137401, - [SMALL_STATE(3620)] = 137425, - [SMALL_STATE(3621)] = 137451, - [SMALL_STATE(3622)] = 137473, - [SMALL_STATE(3623)] = 137499, - [SMALL_STATE(3624)] = 137525, - [SMALL_STATE(3625)] = 137547, - [SMALL_STATE(3626)] = 137569, - [SMALL_STATE(3627)] = 137591, - [SMALL_STATE(3628)] = 137617, - [SMALL_STATE(3629)] = 137643, - [SMALL_STATE(3630)] = 137669, - [SMALL_STATE(3631)] = 137695, - [SMALL_STATE(3632)] = 137717, - [SMALL_STATE(3633)] = 137739, - [SMALL_STATE(3634)] = 137761, - [SMALL_STATE(3635)] = 137787, - [SMALL_STATE(3636)] = 137809, - [SMALL_STATE(3637)] = 137827, - [SMALL_STATE(3638)] = 137849, - [SMALL_STATE(3639)] = 137867, - [SMALL_STATE(3640)] = 137893, - [SMALL_STATE(3641)] = 137911, - [SMALL_STATE(3642)] = 137927, - [SMALL_STATE(3643)] = 137949, - [SMALL_STATE(3644)] = 137965, - [SMALL_STATE(3645)] = 137987, - [SMALL_STATE(3646)] = 138007, - [SMALL_STATE(3647)] = 138023, - [SMALL_STATE(3648)] = 138045, - [SMALL_STATE(3649)] = 138067, - [SMALL_STATE(3650)] = 138087, - [SMALL_STATE(3651)] = 138107, - [SMALL_STATE(3652)] = 138127, - [SMALL_STATE(3653)] = 138147, - [SMALL_STATE(3654)] = 138169, - [SMALL_STATE(3655)] = 138191, - [SMALL_STATE(3656)] = 138213, - [SMALL_STATE(3657)] = 138233, - [SMALL_STATE(3658)] = 138259, - [SMALL_STATE(3659)] = 138273, - [SMALL_STATE(3660)] = 138299, - [SMALL_STATE(3661)] = 138325, - [SMALL_STATE(3662)] = 138347, - [SMALL_STATE(3663)] = 138369, - [SMALL_STATE(3664)] = 138389, - [SMALL_STATE(3665)] = 138411, - [SMALL_STATE(3666)] = 138433, - [SMALL_STATE(3667)] = 138455, - [SMALL_STATE(3668)] = 138477, - [SMALL_STATE(3669)] = 138495, - [SMALL_STATE(3670)] = 138513, - [SMALL_STATE(3671)] = 138531, - [SMALL_STATE(3672)] = 138549, - [SMALL_STATE(3673)] = 138575, - [SMALL_STATE(3674)] = 138597, - [SMALL_STATE(3675)] = 138619, - [SMALL_STATE(3676)] = 138641, - [SMALL_STATE(3677)] = 138663, - [SMALL_STATE(3678)] = 138685, - [SMALL_STATE(3679)] = 138707, - [SMALL_STATE(3680)] = 138733, - [SMALL_STATE(3681)] = 138751, - [SMALL_STATE(3682)] = 138769, - [SMALL_STATE(3683)] = 138787, - [SMALL_STATE(3684)] = 138805, - [SMALL_STATE(3685)] = 138827, - [SMALL_STATE(3686)] = 138853, - [SMALL_STATE(3687)] = 138871, - [SMALL_STATE(3688)] = 138889, - [SMALL_STATE(3689)] = 138911, - [SMALL_STATE(3690)] = 138929, - [SMALL_STATE(3691)] = 138947, - [SMALL_STATE(3692)] = 138965, - [SMALL_STATE(3693)] = 138983, - [SMALL_STATE(3694)] = 139001, - [SMALL_STATE(3695)] = 139019, - [SMALL_STATE(3696)] = 139037, - [SMALL_STATE(3697)] = 139055, - [SMALL_STATE(3698)] = 139077, - [SMALL_STATE(3699)] = 139095, - [SMALL_STATE(3700)] = 139113, - [SMALL_STATE(3701)] = 139135, - [SMALL_STATE(3702)] = 139157, - [SMALL_STATE(3703)] = 139183, - [SMALL_STATE(3704)] = 139201, - [SMALL_STATE(3705)] = 139215, - [SMALL_STATE(3706)] = 139237, - [SMALL_STATE(3707)] = 139259, - [SMALL_STATE(3708)] = 139281, - [SMALL_STATE(3709)] = 139303, - [SMALL_STATE(3710)] = 139325, - [SMALL_STATE(3711)] = 139347, - [SMALL_STATE(3712)] = 139369, - [SMALL_STATE(3713)] = 139391, - [SMALL_STATE(3714)] = 139413, - [SMALL_STATE(3715)] = 139427, - [SMALL_STATE(3716)] = 139449, - [SMALL_STATE(3717)] = 139471, - [SMALL_STATE(3718)] = 139493, - [SMALL_STATE(3719)] = 139515, - [SMALL_STATE(3720)] = 139537, - [SMALL_STATE(3721)] = 139559, - [SMALL_STATE(3722)] = 139585, - [SMALL_STATE(3723)] = 139599, - [SMALL_STATE(3724)] = 139625, - [SMALL_STATE(3725)] = 139651, - [SMALL_STATE(3726)] = 139677, - [SMALL_STATE(3727)] = 139699, - [SMALL_STATE(3728)] = 139715, - [SMALL_STATE(3729)] = 139731, - [SMALL_STATE(3730)] = 139751, - [SMALL_STATE(3731)] = 139767, - [SMALL_STATE(3732)] = 139789, - [SMALL_STATE(3733)] = 139803, - [SMALL_STATE(3734)] = 139825, - [SMALL_STATE(3735)] = 139847, - [SMALL_STATE(3736)] = 139869, - [SMALL_STATE(3737)] = 139891, - [SMALL_STATE(3738)] = 139913, - [SMALL_STATE(3739)] = 139939, - [SMALL_STATE(3740)] = 139955, - [SMALL_STATE(3741)] = 139981, - [SMALL_STATE(3742)] = 140003, - [SMALL_STATE(3743)] = 140025, - [SMALL_STATE(3744)] = 140047, - [SMALL_STATE(3745)] = 140069, - [SMALL_STATE(3746)] = 140091, - [SMALL_STATE(3747)] = 140113, - [SMALL_STATE(3748)] = 140135, - [SMALL_STATE(3749)] = 140157, - [SMALL_STATE(3750)] = 140179, - [SMALL_STATE(3751)] = 140201, - [SMALL_STATE(3752)] = 140223, - [SMALL_STATE(3753)] = 140245, - [SMALL_STATE(3754)] = 140267, - [SMALL_STATE(3755)] = 140293, - [SMALL_STATE(3756)] = 140316, - [SMALL_STATE(3757)] = 140333, - [SMALL_STATE(3758)] = 140352, - [SMALL_STATE(3759)] = 140375, - [SMALL_STATE(3760)] = 140392, - [SMALL_STATE(3761)] = 140415, - [SMALL_STATE(3762)] = 140438, - [SMALL_STATE(3763)] = 140461, - [SMALL_STATE(3764)] = 140478, - [SMALL_STATE(3765)] = 140495, - [SMALL_STATE(3766)] = 140518, - [SMALL_STATE(3767)] = 140535, - [SMALL_STATE(3768)] = 140552, - [SMALL_STATE(3769)] = 140575, - [SMALL_STATE(3770)] = 140594, - [SMALL_STATE(3771)] = 140611, - [SMALL_STATE(3772)] = 140634, - [SMALL_STATE(3773)] = 140651, - [SMALL_STATE(3774)] = 140670, - [SMALL_STATE(3775)] = 140687, - [SMALL_STATE(3776)] = 140702, - [SMALL_STATE(3777)] = 140719, - [SMALL_STATE(3778)] = 140742, - [SMALL_STATE(3779)] = 140759, - [SMALL_STATE(3780)] = 140782, - [SMALL_STATE(3781)] = 140799, - [SMALL_STATE(3782)] = 140818, - [SMALL_STATE(3783)] = 140837, - [SMALL_STATE(3784)] = 140854, - [SMALL_STATE(3785)] = 140871, - [SMALL_STATE(3786)] = 140886, - [SMALL_STATE(3787)] = 140909, - [SMALL_STATE(3788)] = 140926, - [SMALL_STATE(3789)] = 140949, - [SMALL_STATE(3790)] = 140968, - [SMALL_STATE(3791)] = 140985, - [SMALL_STATE(3792)] = 141008, - [SMALL_STATE(3793)] = 141031, - [SMALL_STATE(3794)] = 141044, - [SMALL_STATE(3795)] = 141057, - [SMALL_STATE(3796)] = 141074, - [SMALL_STATE(3797)] = 141087, - [SMALL_STATE(3798)] = 141110, - [SMALL_STATE(3799)] = 141133, - [SMALL_STATE(3800)] = 141156, - [SMALL_STATE(3801)] = 141179, - [SMALL_STATE(3802)] = 141192, - [SMALL_STATE(3803)] = 141205, - [SMALL_STATE(3804)] = 141222, - [SMALL_STATE(3805)] = 141245, - [SMALL_STATE(3806)] = 141268, - [SMALL_STATE(3807)] = 141285, - [SMALL_STATE(3808)] = 141302, - [SMALL_STATE(3809)] = 141321, - [SMALL_STATE(3810)] = 141338, - [SMALL_STATE(3811)] = 141357, - [SMALL_STATE(3812)] = 141374, - [SMALL_STATE(3813)] = 141393, - [SMALL_STATE(3814)] = 141410, - [SMALL_STATE(3815)] = 141429, - [SMALL_STATE(3816)] = 141446, - [SMALL_STATE(3817)] = 141463, - [SMALL_STATE(3818)] = 141486, - [SMALL_STATE(3819)] = 141503, - [SMALL_STATE(3820)] = 141516, - [SMALL_STATE(3821)] = 141533, - [SMALL_STATE(3822)] = 141556, - [SMALL_STATE(3823)] = 141573, - [SMALL_STATE(3824)] = 141596, - [SMALL_STATE(3825)] = 141619, - [SMALL_STATE(3826)] = 141642, - [SMALL_STATE(3827)] = 141659, - [SMALL_STATE(3828)] = 141676, - [SMALL_STATE(3829)] = 141689, - [SMALL_STATE(3830)] = 141706, - [SMALL_STATE(3831)] = 141723, - [SMALL_STATE(3832)] = 141740, - [SMALL_STATE(3833)] = 141761, - [SMALL_STATE(3834)] = 141778, - [SMALL_STATE(3835)] = 141795, - [SMALL_STATE(3836)] = 141818, - [SMALL_STATE(3837)] = 141831, - [SMALL_STATE(3838)] = 141848, - [SMALL_STATE(3839)] = 141871, - [SMALL_STATE(3840)] = 141894, - [SMALL_STATE(3841)] = 141911, - [SMALL_STATE(3842)] = 141930, - [SMALL_STATE(3843)] = 141949, - [SMALL_STATE(3844)] = 141972, - [SMALL_STATE(3845)] = 141995, - [SMALL_STATE(3846)] = 142018, - [SMALL_STATE(3847)] = 142031, - [SMALL_STATE(3848)] = 142050, - [SMALL_STATE(3849)] = 142069, - [SMALL_STATE(3850)] = 142088, - [SMALL_STATE(3851)] = 142105, - [SMALL_STATE(3852)] = 142128, - [SMALL_STATE(3853)] = 142141, - [SMALL_STATE(3854)] = 142154, - [SMALL_STATE(3855)] = 142167, - [SMALL_STATE(3856)] = 142184, - [SMALL_STATE(3857)] = 142207, - [SMALL_STATE(3858)] = 142230, - [SMALL_STATE(3859)] = 142253, - [SMALL_STATE(3860)] = 142276, - [SMALL_STATE(3861)] = 142289, - [SMALL_STATE(3862)] = 142312, - [SMALL_STATE(3863)] = 142329, - [SMALL_STATE(3864)] = 142346, - [SMALL_STATE(3865)] = 142369, - [SMALL_STATE(3866)] = 142392, - [SMALL_STATE(3867)] = 142415, - [SMALL_STATE(3868)] = 142432, - [SMALL_STATE(3869)] = 142455, - [SMALL_STATE(3870)] = 142472, - [SMALL_STATE(3871)] = 142491, - [SMALL_STATE(3872)] = 142514, - [SMALL_STATE(3873)] = 142537, - [SMALL_STATE(3874)] = 142560, - [SMALL_STATE(3875)] = 142577, - [SMALL_STATE(3876)] = 142594, - [SMALL_STATE(3877)] = 142613, - [SMALL_STATE(3878)] = 142628, - [SMALL_STATE(3879)] = 142647, - [SMALL_STATE(3880)] = 142670, - [SMALL_STATE(3881)] = 142687, - [SMALL_STATE(3882)] = 142702, - [SMALL_STATE(3883)] = 142719, - [SMALL_STATE(3884)] = 142742, - [SMALL_STATE(3885)] = 142755, - [SMALL_STATE(3886)] = 142778, - [SMALL_STATE(3887)] = 142795, - [SMALL_STATE(3888)] = 142818, - [SMALL_STATE(3889)] = 142841, - [SMALL_STATE(3890)] = 142864, - [SMALL_STATE(3891)] = 142887, - [SMALL_STATE(3892)] = 142910, - [SMALL_STATE(3893)] = 142929, - [SMALL_STATE(3894)] = 142952, - [SMALL_STATE(3895)] = 142973, - [SMALL_STATE(3896)] = 142990, - [SMALL_STATE(3897)] = 143013, - [SMALL_STATE(3898)] = 143036, - [SMALL_STATE(3899)] = 143059, - [SMALL_STATE(3900)] = 143082, - [SMALL_STATE(3901)] = 143105, - [SMALL_STATE(3902)] = 143124, - [SMALL_STATE(3903)] = 143141, - [SMALL_STATE(3904)] = 143160, - [SMALL_STATE(3905)] = 143183, - [SMALL_STATE(3906)] = 143204, - [SMALL_STATE(3907)] = 143221, - [SMALL_STATE(3908)] = 143233, - [SMALL_STATE(3909)] = 143245, - [SMALL_STATE(3910)] = 143261, - [SMALL_STATE(3911)] = 143279, - [SMALL_STATE(3912)] = 143295, - [SMALL_STATE(3913)] = 143307, - [SMALL_STATE(3914)] = 143323, - [SMALL_STATE(3915)] = 143339, - [SMALL_STATE(3916)] = 143351, - [SMALL_STATE(3917)] = 143363, - [SMALL_STATE(3918)] = 143379, - [SMALL_STATE(3919)] = 143395, - [SMALL_STATE(3920)] = 143407, - [SMALL_STATE(3921)] = 143419, - [SMALL_STATE(3922)] = 143431, - [SMALL_STATE(3923)] = 143449, - [SMALL_STATE(3924)] = 143465, - [SMALL_STATE(3925)] = 143481, - [SMALL_STATE(3926)] = 143497, - [SMALL_STATE(3927)] = 143509, - [SMALL_STATE(3928)] = 143521, - [SMALL_STATE(3929)] = 143533, - [SMALL_STATE(3930)] = 143549, - [SMALL_STATE(3931)] = 143569, - [SMALL_STATE(3932)] = 143585, - [SMALL_STATE(3933)] = 143605, - [SMALL_STATE(3934)] = 143621, - [SMALL_STATE(3935)] = 143637, - [SMALL_STATE(3936)] = 143653, - [SMALL_STATE(3937)] = 143671, - [SMALL_STATE(3938)] = 143687, - [SMALL_STATE(3939)] = 143705, - [SMALL_STATE(3940)] = 143721, - [SMALL_STATE(3941)] = 143741, - [SMALL_STATE(3942)] = 143757, - [SMALL_STATE(3943)] = 143773, - [SMALL_STATE(3944)] = 143789, - [SMALL_STATE(3945)] = 143807, - [SMALL_STATE(3946)] = 143825, - [SMALL_STATE(3947)] = 143837, - [SMALL_STATE(3948)] = 143849, - [SMALL_STATE(3949)] = 143869, - [SMALL_STATE(3950)] = 143881, - [SMALL_STATE(3951)] = 143899, - [SMALL_STATE(3952)] = 143917, - [SMALL_STATE(3953)] = 143937, - [SMALL_STATE(3954)] = 143953, - [SMALL_STATE(3955)] = 143969, - [SMALL_STATE(3956)] = 143985, - [SMALL_STATE(3957)] = 144001, - [SMALL_STATE(3958)] = 144017, - [SMALL_STATE(3959)] = 144037, - [SMALL_STATE(3960)] = 144053, - [SMALL_STATE(3961)] = 144071, - [SMALL_STATE(3962)] = 144083, - [SMALL_STATE(3963)] = 144099, - [SMALL_STATE(3964)] = 144119, - [SMALL_STATE(3965)] = 144133, - [SMALL_STATE(3966)] = 144151, - [SMALL_STATE(3967)] = 144167, - [SMALL_STATE(3968)] = 144187, - [SMALL_STATE(3969)] = 144207, - [SMALL_STATE(3970)] = 144219, - [SMALL_STATE(3971)] = 144239, - [SMALL_STATE(3972)] = 144255, - [SMALL_STATE(3973)] = 144271, - [SMALL_STATE(3974)] = 144283, - [SMALL_STATE(3975)] = 144303, - [SMALL_STATE(3976)] = 144319, - [SMALL_STATE(3977)] = 144335, - [SMALL_STATE(3978)] = 144349, - [SMALL_STATE(3979)] = 144363, - [SMALL_STATE(3980)] = 144379, - [SMALL_STATE(3981)] = 144395, - [SMALL_STATE(3982)] = 144415, - [SMALL_STATE(3983)] = 144433, - [SMALL_STATE(3984)] = 144447, - [SMALL_STATE(3985)] = 144465, - [SMALL_STATE(3986)] = 144485, - [SMALL_STATE(3987)] = 144501, - [SMALL_STATE(3988)] = 144517, - [SMALL_STATE(3989)] = 144537, - [SMALL_STATE(3990)] = 144557, - [SMALL_STATE(3991)] = 144577, - [SMALL_STATE(3992)] = 144589, - [SMALL_STATE(3993)] = 144605, - [SMALL_STATE(3994)] = 144621, - [SMALL_STATE(3995)] = 144633, - [SMALL_STATE(3996)] = 144649, - [SMALL_STATE(3997)] = 144669, - [SMALL_STATE(3998)] = 144681, - [SMALL_STATE(3999)] = 144693, - [SMALL_STATE(4000)] = 144705, - [SMALL_STATE(4001)] = 144717, - [SMALL_STATE(4002)] = 144733, - [SMALL_STATE(4003)] = 144749, - [SMALL_STATE(4004)] = 144769, - [SMALL_STATE(4005)] = 144785, - [SMALL_STATE(4006)] = 144801, - [SMALL_STATE(4007)] = 144817, - [SMALL_STATE(4008)] = 144835, - [SMALL_STATE(4009)] = 144851, - [SMALL_STATE(4010)] = 144867, - [SMALL_STATE(4011)] = 144883, - [SMALL_STATE(4012)] = 144903, - [SMALL_STATE(4013)] = 144923, - [SMALL_STATE(4014)] = 144939, - [SMALL_STATE(4015)] = 144957, - [SMALL_STATE(4016)] = 144977, - [SMALL_STATE(4017)] = 144993, - [SMALL_STATE(4018)] = 145013, - [SMALL_STATE(4019)] = 145033, - [SMALL_STATE(4020)] = 145049, - [SMALL_STATE(4021)] = 145065, - [SMALL_STATE(4022)] = 145083, - [SMALL_STATE(4023)] = 145099, - [SMALL_STATE(4024)] = 145115, - [SMALL_STATE(4025)] = 145135, - [SMALL_STATE(4026)] = 145151, - [SMALL_STATE(4027)] = 145163, - [SMALL_STATE(4028)] = 145179, - [SMALL_STATE(4029)] = 145197, - [SMALL_STATE(4030)] = 145213, - [SMALL_STATE(4031)] = 145229, - [SMALL_STATE(4032)] = 145245, - [SMALL_STATE(4033)] = 145265, - [SMALL_STATE(4034)] = 145281, - [SMALL_STATE(4035)] = 145293, - [SMALL_STATE(4036)] = 145305, - [SMALL_STATE(4037)] = 145317, - [SMALL_STATE(4038)] = 145337, - [SMALL_STATE(4039)] = 145349, - [SMALL_STATE(4040)] = 145369, - [SMALL_STATE(4041)] = 145381, - [SMALL_STATE(4042)] = 145397, - [SMALL_STATE(4043)] = 145409, - [SMALL_STATE(4044)] = 145421, - [SMALL_STATE(4045)] = 145437, - [SMALL_STATE(4046)] = 145449, - [SMALL_STATE(4047)] = 145461, - [SMALL_STATE(4048)] = 145473, - [SMALL_STATE(4049)] = 145485, - [SMALL_STATE(4050)] = 145497, - [SMALL_STATE(4051)] = 145515, - [SMALL_STATE(4052)] = 145527, - [SMALL_STATE(4053)] = 145539, - [SMALL_STATE(4054)] = 145555, - [SMALL_STATE(4055)] = 145573, - [SMALL_STATE(4056)] = 145589, - [SMALL_STATE(4057)] = 145605, - [SMALL_STATE(4058)] = 145617, - [SMALL_STATE(4059)] = 145629, - [SMALL_STATE(4060)] = 145645, - [SMALL_STATE(4061)] = 145657, - [SMALL_STATE(4062)] = 145669, - [SMALL_STATE(4063)] = 145681, - [SMALL_STATE(4064)] = 145697, - [SMALL_STATE(4065)] = 145709, - [SMALL_STATE(4066)] = 145721, - [SMALL_STATE(4067)] = 145733, - [SMALL_STATE(4068)] = 145745, - [SMALL_STATE(4069)] = 145757, - [SMALL_STATE(4070)] = 145769, - [SMALL_STATE(4071)] = 145781, - [SMALL_STATE(4072)] = 145793, - [SMALL_STATE(4073)] = 145805, - [SMALL_STATE(4074)] = 145821, - [SMALL_STATE(4075)] = 145841, - [SMALL_STATE(4076)] = 145853, - [SMALL_STATE(4077)] = 145865, - [SMALL_STATE(4078)] = 145877, - [SMALL_STATE(4079)] = 145889, - [SMALL_STATE(4080)] = 145901, - [SMALL_STATE(4081)] = 145919, - [SMALL_STATE(4082)] = 145935, - [SMALL_STATE(4083)] = 145951, - [SMALL_STATE(4084)] = 145969, - [SMALL_STATE(4085)] = 145989, - [SMALL_STATE(4086)] = 146001, - [SMALL_STATE(4087)] = 146017, - [SMALL_STATE(4088)] = 146029, - [SMALL_STATE(4089)] = 146049, - [SMALL_STATE(4090)] = 146065, - [SMALL_STATE(4091)] = 146077, - [SMALL_STATE(4092)] = 146089, - [SMALL_STATE(4093)] = 146101, - [SMALL_STATE(4094)] = 146113, - [SMALL_STATE(4095)] = 146125, - [SMALL_STATE(4096)] = 146145, - [SMALL_STATE(4097)] = 146161, - [SMALL_STATE(4098)] = 146175, - [SMALL_STATE(4099)] = 146187, - [SMALL_STATE(4100)] = 146207, - [SMALL_STATE(4101)] = 146223, - [SMALL_STATE(4102)] = 146239, - [SMALL_STATE(4103)] = 146251, - [SMALL_STATE(4104)] = 146263, - [SMALL_STATE(4105)] = 146279, - [SMALL_STATE(4106)] = 146291, - [SMALL_STATE(4107)] = 146303, - [SMALL_STATE(4108)] = 146319, - [SMALL_STATE(4109)] = 146331, - [SMALL_STATE(4110)] = 146343, - [SMALL_STATE(4111)] = 146363, - [SMALL_STATE(4112)] = 146375, - [SMALL_STATE(4113)] = 146393, - [SMALL_STATE(4114)] = 146409, - [SMALL_STATE(4115)] = 146425, - [SMALL_STATE(4116)] = 146443, - [SMALL_STATE(4117)] = 146461, - [SMALL_STATE(4118)] = 146477, - [SMALL_STATE(4119)] = 146493, - [SMALL_STATE(4120)] = 146513, - [SMALL_STATE(4121)] = 146529, - [SMALL_STATE(4122)] = 146545, - [SMALL_STATE(4123)] = 146561, - [SMALL_STATE(4124)] = 146577, - [SMALL_STATE(4125)] = 146589, - [SMALL_STATE(4126)] = 146609, - [SMALL_STATE(4127)] = 146621, - [SMALL_STATE(4128)] = 146633, - [SMALL_STATE(4129)] = 146645, - [SMALL_STATE(4130)] = 146657, - [SMALL_STATE(4131)] = 146675, - [SMALL_STATE(4132)] = 146691, - [SMALL_STATE(4133)] = 146711, - [SMALL_STATE(4134)] = 146731, - [SMALL_STATE(4135)] = 146747, - [SMALL_STATE(4136)] = 146767, - [SMALL_STATE(4137)] = 146787, - [SMALL_STATE(4138)] = 146803, - [SMALL_STATE(4139)] = 146823, - [SMALL_STATE(4140)] = 146843, - [SMALL_STATE(4141)] = 146859, - [SMALL_STATE(4142)] = 146871, - [SMALL_STATE(4143)] = 146891, - [SMALL_STATE(4144)] = 146911, - [SMALL_STATE(4145)] = 146931, - [SMALL_STATE(4146)] = 146947, - [SMALL_STATE(4147)] = 146959, - [SMALL_STATE(4148)] = 146975, - [SMALL_STATE(4149)] = 146991, - [SMALL_STATE(4150)] = 147007, - [SMALL_STATE(4151)] = 147025, - [SMALL_STATE(4152)] = 147037, - [SMALL_STATE(4153)] = 147049, - [SMALL_STATE(4154)] = 147061, - [SMALL_STATE(4155)] = 147073, - [SMALL_STATE(4156)] = 147085, - [SMALL_STATE(4157)] = 147101, - [SMALL_STATE(4158)] = 147117, - [SMALL_STATE(4159)] = 147133, - [SMALL_STATE(4160)] = 147149, - [SMALL_STATE(4161)] = 147161, - [SMALL_STATE(4162)] = 147181, - [SMALL_STATE(4163)] = 147197, - [SMALL_STATE(4164)] = 147213, - [SMALL_STATE(4165)] = 147233, - [SMALL_STATE(4166)] = 147245, - [SMALL_STATE(4167)] = 147265, - [SMALL_STATE(4168)] = 147281, - [SMALL_STATE(4169)] = 147301, - [SMALL_STATE(4170)] = 147321, - [SMALL_STATE(4171)] = 147333, - [SMALL_STATE(4172)] = 147345, - [SMALL_STATE(4173)] = 147365, - [SMALL_STATE(4174)] = 147377, - [SMALL_STATE(4175)] = 147393, - [SMALL_STATE(4176)] = 147409, - [SMALL_STATE(4177)] = 147425, - [SMALL_STATE(4178)] = 147443, - [SMALL_STATE(4179)] = 147463, - [SMALL_STATE(4180)] = 147483, - [SMALL_STATE(4181)] = 147499, - [SMALL_STATE(4182)] = 147515, - [SMALL_STATE(4183)] = 147531, - [SMALL_STATE(4184)] = 147547, - [SMALL_STATE(4185)] = 147565, - [SMALL_STATE(4186)] = 147581, - [SMALL_STATE(4187)] = 147597, - [SMALL_STATE(4188)] = 147613, - [SMALL_STATE(4189)] = 147633, - [SMALL_STATE(4190)] = 147649, - [SMALL_STATE(4191)] = 147665, - [SMALL_STATE(4192)] = 147685, - [SMALL_STATE(4193)] = 147705, - [SMALL_STATE(4194)] = 147725, - [SMALL_STATE(4195)] = 147745, - [SMALL_STATE(4196)] = 147761, - [SMALL_STATE(4197)] = 147777, - [SMALL_STATE(4198)] = 147797, - [SMALL_STATE(4199)] = 147815, - [SMALL_STATE(4200)] = 147827, - [SMALL_STATE(4201)] = 147839, - [SMALL_STATE(4202)] = 147851, - [SMALL_STATE(4203)] = 147863, - [SMALL_STATE(4204)] = 147883, - [SMALL_STATE(4205)] = 147895, - [SMALL_STATE(4206)] = 147911, - [SMALL_STATE(4207)] = 147927, - [SMALL_STATE(4208)] = 147947, - [SMALL_STATE(4209)] = 147959, - [SMALL_STATE(4210)] = 147971, - [SMALL_STATE(4211)] = 147987, - [SMALL_STATE(4212)] = 148003, - [SMALL_STATE(4213)] = 148023, - [SMALL_STATE(4214)] = 148035, - [SMALL_STATE(4215)] = 148047, - [SMALL_STATE(4216)] = 148059, - [SMALL_STATE(4217)] = 148071, - [SMALL_STATE(4218)] = 148083, - [SMALL_STATE(4219)] = 148099, - [SMALL_STATE(4220)] = 148115, - [SMALL_STATE(4221)] = 148131, - [SMALL_STATE(4222)] = 148147, - [SMALL_STATE(4223)] = 148163, - [SMALL_STATE(4224)] = 148183, - [SMALL_STATE(4225)] = 148199, - [SMALL_STATE(4226)] = 148215, - [SMALL_STATE(4227)] = 148227, - [SMALL_STATE(4228)] = 148239, - [SMALL_STATE(4229)] = 148251, - [SMALL_STATE(4230)] = 148271, - [SMALL_STATE(4231)] = 148291, - [SMALL_STATE(4232)] = 148311, - [SMALL_STATE(4233)] = 148327, - [SMALL_STATE(4234)] = 148339, - [SMALL_STATE(4235)] = 148355, - [SMALL_STATE(4236)] = 148367, - [SMALL_STATE(4237)] = 148379, - [SMALL_STATE(4238)] = 148399, - [SMALL_STATE(4239)] = 148419, - [SMALL_STATE(4240)] = 148435, - [SMALL_STATE(4241)] = 148451, - [SMALL_STATE(4242)] = 148463, - [SMALL_STATE(4243)] = 148475, - [SMALL_STATE(4244)] = 148487, - [SMALL_STATE(4245)] = 148499, - [SMALL_STATE(4246)] = 148511, - [SMALL_STATE(4247)] = 148527, - [SMALL_STATE(4248)] = 148543, - [SMALL_STATE(4249)] = 148555, - [SMALL_STATE(4250)] = 148571, - [SMALL_STATE(4251)] = 148583, - [SMALL_STATE(4252)] = 148595, - [SMALL_STATE(4253)] = 148611, - [SMALL_STATE(4254)] = 148627, - [SMALL_STATE(4255)] = 148643, - [SMALL_STATE(4256)] = 148659, - [SMALL_STATE(4257)] = 148675, - [SMALL_STATE(4258)] = 148687, - [SMALL_STATE(4259)] = 148703, - [SMALL_STATE(4260)] = 148719, - [SMALL_STATE(4261)] = 148731, - [SMALL_STATE(4262)] = 148743, - [SMALL_STATE(4263)] = 148755, - [SMALL_STATE(4264)] = 148767, - [SMALL_STATE(4265)] = 148783, - [SMALL_STATE(4266)] = 148799, - [SMALL_STATE(4267)] = 148815, - [SMALL_STATE(4268)] = 148831, - [SMALL_STATE(4269)] = 148847, - [SMALL_STATE(4270)] = 148863, - [SMALL_STATE(4271)] = 148879, - [SMALL_STATE(4272)] = 148899, - [SMALL_STATE(4273)] = 148911, - [SMALL_STATE(4274)] = 148927, - [SMALL_STATE(4275)] = 148939, - [SMALL_STATE(4276)] = 148955, - [SMALL_STATE(4277)] = 148971, - [SMALL_STATE(4278)] = 148983, - [SMALL_STATE(4279)] = 148999, - [SMALL_STATE(4280)] = 149011, - [SMALL_STATE(4281)] = 149027, - [SMALL_STATE(4282)] = 149039, - [SMALL_STATE(4283)] = 149055, - [SMALL_STATE(4284)] = 149067, - [SMALL_STATE(4285)] = 149079, - [SMALL_STATE(4286)] = 149095, - [SMALL_STATE(4287)] = 149115, - [SMALL_STATE(4288)] = 149131, - [SMALL_STATE(4289)] = 149147, - [SMALL_STATE(4290)] = 149159, - [SMALL_STATE(4291)] = 149175, - [SMALL_STATE(4292)] = 149191, - [SMALL_STATE(4293)] = 149207, - [SMALL_STATE(4294)] = 149223, - [SMALL_STATE(4295)] = 149239, - [SMALL_STATE(4296)] = 149255, - [SMALL_STATE(4297)] = 149271, - [SMALL_STATE(4298)] = 149287, - [SMALL_STATE(4299)] = 149303, - [SMALL_STATE(4300)] = 149317, - [SMALL_STATE(4301)] = 149333, - [SMALL_STATE(4302)] = 149349, - [SMALL_STATE(4303)] = 149363, - [SMALL_STATE(4304)] = 149375, - [SMALL_STATE(4305)] = 149391, - [SMALL_STATE(4306)] = 149407, - [SMALL_STATE(4307)] = 149425, - [SMALL_STATE(4308)] = 149441, - [SMALL_STATE(4309)] = 149457, - [SMALL_STATE(4310)] = 149473, - [SMALL_STATE(4311)] = 149489, - [SMALL_STATE(4312)] = 149501, - [SMALL_STATE(4313)] = 149521, - [SMALL_STATE(4314)] = 149537, - [SMALL_STATE(4315)] = 149557, - [SMALL_STATE(4316)] = 149573, - [SMALL_STATE(4317)] = 149589, - [SMALL_STATE(4318)] = 149605, - [SMALL_STATE(4319)] = 149621, - [SMALL_STATE(4320)] = 149637, - [SMALL_STATE(4321)] = 149657, - [SMALL_STATE(4322)] = 149673, - [SMALL_STATE(4323)] = 149693, - [SMALL_STATE(4324)] = 149705, - [SMALL_STATE(4325)] = 149725, - [SMALL_STATE(4326)] = 149737, - [SMALL_STATE(4327)] = 149749, - [SMALL_STATE(4328)] = 149761, - [SMALL_STATE(4329)] = 149773, - [SMALL_STATE(4330)] = 149793, - [SMALL_STATE(4331)] = 149805, - [SMALL_STATE(4332)] = 149825, - [SMALL_STATE(4333)] = 149841, - [SMALL_STATE(4334)] = 149857, - [SMALL_STATE(4335)] = 149869, - [SMALL_STATE(4336)] = 149889, - [SMALL_STATE(4337)] = 149909, - [SMALL_STATE(4338)] = 149921, - [SMALL_STATE(4339)] = 149933, - [SMALL_STATE(4340)] = 149945, - [SMALL_STATE(4341)] = 149961, - [SMALL_STATE(4342)] = 149977, - [SMALL_STATE(4343)] = 149993, - [SMALL_STATE(4344)] = 150009, - [SMALL_STATE(4345)] = 150029, - [SMALL_STATE(4346)] = 150049, - [SMALL_STATE(4347)] = 150065, - [SMALL_STATE(4348)] = 150081, - [SMALL_STATE(4349)] = 150101, - [SMALL_STATE(4350)] = 150121, - [SMALL_STATE(4351)] = 150137, - [SMALL_STATE(4352)] = 150153, - [SMALL_STATE(4353)] = 150165, - [SMALL_STATE(4354)] = 150177, - [SMALL_STATE(4355)] = 150193, - [SMALL_STATE(4356)] = 150209, - [SMALL_STATE(4357)] = 150225, - [SMALL_STATE(4358)] = 150241, - [SMALL_STATE(4359)] = 150257, - [SMALL_STATE(4360)] = 150273, - [SMALL_STATE(4361)] = 150293, - [SMALL_STATE(4362)] = 150309, - [SMALL_STATE(4363)] = 150325, - [SMALL_STATE(4364)] = 150341, - [SMALL_STATE(4365)] = 150357, - [SMALL_STATE(4366)] = 150373, - [SMALL_STATE(4367)] = 150389, - [SMALL_STATE(4368)] = 150401, - [SMALL_STATE(4369)] = 150417, - [SMALL_STATE(4370)] = 150433, - [SMALL_STATE(4371)] = 150449, - [SMALL_STATE(4372)] = 150465, - [SMALL_STATE(4373)] = 150481, - [SMALL_STATE(4374)] = 150497, - [SMALL_STATE(4375)] = 150513, - [SMALL_STATE(4376)] = 150529, - [SMALL_STATE(4377)] = 150545, - [SMALL_STATE(4378)] = 150561, - [SMALL_STATE(4379)] = 150581, - [SMALL_STATE(4380)] = 150597, - [SMALL_STATE(4381)] = 150613, - [SMALL_STATE(4382)] = 150629, - [SMALL_STATE(4383)] = 150645, - [SMALL_STATE(4384)] = 150661, - [SMALL_STATE(4385)] = 150677, - [SMALL_STATE(4386)] = 150693, - [SMALL_STATE(4387)] = 150709, - [SMALL_STATE(4388)] = 150724, - [SMALL_STATE(4389)] = 150741, - [SMALL_STATE(4390)] = 150758, - [SMALL_STATE(4391)] = 150775, - [SMALL_STATE(4392)] = 150790, - [SMALL_STATE(4393)] = 150805, - [SMALL_STATE(4394)] = 150822, - [SMALL_STATE(4395)] = 150839, - [SMALL_STATE(4396)] = 150854, - [SMALL_STATE(4397)] = 150871, - [SMALL_STATE(4398)] = 150888, - [SMALL_STATE(4399)] = 150905, - [SMALL_STATE(4400)] = 150922, - [SMALL_STATE(4401)] = 150939, - [SMALL_STATE(4402)] = 150954, - [SMALL_STATE(4403)] = 150969, - [SMALL_STATE(4404)] = 150982, - [SMALL_STATE(4405)] = 150999, - [SMALL_STATE(4406)] = 151012, - [SMALL_STATE(4407)] = 151025, - [SMALL_STATE(4408)] = 151042, - [SMALL_STATE(4409)] = 151059, - [SMALL_STATE(4410)] = 151076, - [SMALL_STATE(4411)] = 151093, - [SMALL_STATE(4412)] = 151110, - [SMALL_STATE(4413)] = 151125, - [SMALL_STATE(4414)] = 151142, - [SMALL_STATE(4415)] = 151159, - [SMALL_STATE(4416)] = 151170, - [SMALL_STATE(4417)] = 151185, - [SMALL_STATE(4418)] = 151198, - [SMALL_STATE(4419)] = 151215, - [SMALL_STATE(4420)] = 151232, - [SMALL_STATE(4421)] = 151249, - [SMALL_STATE(4422)] = 151266, - [SMALL_STATE(4423)] = 151281, - [SMALL_STATE(4424)] = 151298, - [SMALL_STATE(4425)] = 151315, - [SMALL_STATE(4426)] = 151330, - [SMALL_STATE(4427)] = 151347, - [SMALL_STATE(4428)] = 151362, - [SMALL_STATE(4429)] = 151379, - [SMALL_STATE(4430)] = 151396, - [SMALL_STATE(4431)] = 151413, - [SMALL_STATE(4432)] = 151430, - [SMALL_STATE(4433)] = 151445, - [SMALL_STATE(4434)] = 151462, - [SMALL_STATE(4435)] = 151477, - [SMALL_STATE(4436)] = 151494, - [SMALL_STATE(4437)] = 151511, - [SMALL_STATE(4438)] = 151528, - [SMALL_STATE(4439)] = 151539, - [SMALL_STATE(4440)] = 151556, - [SMALL_STATE(4441)] = 151573, - [SMALL_STATE(4442)] = 151590, - [SMALL_STATE(4443)] = 151607, - [SMALL_STATE(4444)] = 151622, - [SMALL_STATE(4445)] = 151637, - [SMALL_STATE(4446)] = 151654, - [SMALL_STATE(4447)] = 151671, - [SMALL_STATE(4448)] = 151688, - [SMALL_STATE(4449)] = 151701, - [SMALL_STATE(4450)] = 151718, - [SMALL_STATE(4451)] = 151735, - [SMALL_STATE(4452)] = 151752, - [SMALL_STATE(4453)] = 151767, - [SMALL_STATE(4454)] = 151784, - [SMALL_STATE(4455)] = 151801, - [SMALL_STATE(4456)] = 151818, - [SMALL_STATE(4457)] = 151835, - [SMALL_STATE(4458)] = 151852, - [SMALL_STATE(4459)] = 151869, - [SMALL_STATE(4460)] = 151886, - [SMALL_STATE(4461)] = 151903, - [SMALL_STATE(4462)] = 151918, - [SMALL_STATE(4463)] = 151935, - [SMALL_STATE(4464)] = 151950, - [SMALL_STATE(4465)] = 151965, - [SMALL_STATE(4466)] = 151982, - [SMALL_STATE(4467)] = 151999, - [SMALL_STATE(4468)] = 152016, - [SMALL_STATE(4469)] = 152033, - [SMALL_STATE(4470)] = 152050, - [SMALL_STATE(4471)] = 152065, - [SMALL_STATE(4472)] = 152082, - [SMALL_STATE(4473)] = 152099, - [SMALL_STATE(4474)] = 152116, - [SMALL_STATE(4475)] = 152133, - [SMALL_STATE(4476)] = 152150, - [SMALL_STATE(4477)] = 152167, - [SMALL_STATE(4478)] = 152184, - [SMALL_STATE(4479)] = 152201, - [SMALL_STATE(4480)] = 152216, - [SMALL_STATE(4481)] = 152229, - [SMALL_STATE(4482)] = 152246, - [SMALL_STATE(4483)] = 152261, - [SMALL_STATE(4484)] = 152278, - [SMALL_STATE(4485)] = 152289, - [SMALL_STATE(4486)] = 152300, - [SMALL_STATE(4487)] = 152317, - [SMALL_STATE(4488)] = 152334, - [SMALL_STATE(4489)] = 152351, - [SMALL_STATE(4490)] = 152368, - [SMALL_STATE(4491)] = 152385, - [SMALL_STATE(4492)] = 152402, - [SMALL_STATE(4493)] = 152419, - [SMALL_STATE(4494)] = 152436, - [SMALL_STATE(4495)] = 152453, - [SMALL_STATE(4496)] = 152470, - [SMALL_STATE(4497)] = 152487, - [SMALL_STATE(4498)] = 152504, - [SMALL_STATE(4499)] = 152521, - [SMALL_STATE(4500)] = 152538, - [SMALL_STATE(4501)] = 152555, - [SMALL_STATE(4502)] = 152572, - [SMALL_STATE(4503)] = 152587, - [SMALL_STATE(4504)] = 152604, - [SMALL_STATE(4505)] = 152617, - [SMALL_STATE(4506)] = 152634, - [SMALL_STATE(4507)] = 152651, - [SMALL_STATE(4508)] = 152668, - [SMALL_STATE(4509)] = 152685, - [SMALL_STATE(4510)] = 152700, - [SMALL_STATE(4511)] = 152717, - [SMALL_STATE(4512)] = 152734, - [SMALL_STATE(4513)] = 152751, - [SMALL_STATE(4514)] = 152768, - [SMALL_STATE(4515)] = 152785, - [SMALL_STATE(4516)] = 152800, - [SMALL_STATE(4517)] = 152817, - [SMALL_STATE(4518)] = 152832, - [SMALL_STATE(4519)] = 152849, - [SMALL_STATE(4520)] = 152866, - [SMALL_STATE(4521)] = 152883, - [SMALL_STATE(4522)] = 152900, - [SMALL_STATE(4523)] = 152915, - [SMALL_STATE(4524)] = 152929, - [SMALL_STATE(4525)] = 152943, - [SMALL_STATE(4526)] = 152957, - [SMALL_STATE(4527)] = 152971, - [SMALL_STATE(4528)] = 152985, - [SMALL_STATE(4529)] = 152999, - [SMALL_STATE(4530)] = 153013, - [SMALL_STATE(4531)] = 153023, - [SMALL_STATE(4532)] = 153033, - [SMALL_STATE(4533)] = 153043, - [SMALL_STATE(4534)] = 153053, - [SMALL_STATE(4535)] = 153065, - [SMALL_STATE(4536)] = 153079, - [SMALL_STATE(4537)] = 153091, - [SMALL_STATE(4538)] = 153105, - [SMALL_STATE(4539)] = 153115, - [SMALL_STATE(4540)] = 153129, - [SMALL_STATE(4541)] = 153139, - [SMALL_STATE(4542)] = 153153, - [SMALL_STATE(4543)] = 153167, - [SMALL_STATE(4544)] = 153177, - [SMALL_STATE(4545)] = 153191, - [SMALL_STATE(4546)] = 153205, - [SMALL_STATE(4547)] = 153219, - [SMALL_STATE(4548)] = 153233, - [SMALL_STATE(4549)] = 153247, - [SMALL_STATE(4550)] = 153257, - [SMALL_STATE(4551)] = 153271, - [SMALL_STATE(4552)] = 153285, - [SMALL_STATE(4553)] = 153295, - [SMALL_STATE(4554)] = 153307, - [SMALL_STATE(4555)] = 153321, - [SMALL_STATE(4556)] = 153331, - [SMALL_STATE(4557)] = 153345, - [SMALL_STATE(4558)] = 153359, - [SMALL_STATE(4559)] = 153373, - [SMALL_STATE(4560)] = 153383, - [SMALL_STATE(4561)] = 153393, - [SMALL_STATE(4562)] = 153403, - [SMALL_STATE(4563)] = 153417, - [SMALL_STATE(4564)] = 153431, - [SMALL_STATE(4565)] = 153445, - [SMALL_STATE(4566)] = 153455, - [SMALL_STATE(4567)] = 153469, - [SMALL_STATE(4568)] = 153483, - [SMALL_STATE(4569)] = 153493, - [SMALL_STATE(4570)] = 153503, - [SMALL_STATE(4571)] = 153513, - [SMALL_STATE(4572)] = 153527, - [SMALL_STATE(4573)] = 153537, - [SMALL_STATE(4574)] = 153547, - [SMALL_STATE(4575)] = 153557, - [SMALL_STATE(4576)] = 153567, - [SMALL_STATE(4577)] = 153577, - [SMALL_STATE(4578)] = 153591, - [SMALL_STATE(4579)] = 153605, - [SMALL_STATE(4580)] = 153619, - [SMALL_STATE(4581)] = 153633, - [SMALL_STATE(4582)] = 153643, - [SMALL_STATE(4583)] = 153653, - [SMALL_STATE(4584)] = 153663, - [SMALL_STATE(4585)] = 153677, - [SMALL_STATE(4586)] = 153687, - [SMALL_STATE(4587)] = 153697, - [SMALL_STATE(4588)] = 153711, - [SMALL_STATE(4589)] = 153723, - [SMALL_STATE(4590)] = 153733, - [SMALL_STATE(4591)] = 153743, - [SMALL_STATE(4592)] = 153753, - [SMALL_STATE(4593)] = 153767, - [SMALL_STATE(4594)] = 153781, - [SMALL_STATE(4595)] = 153795, - [SMALL_STATE(4596)] = 153809, - [SMALL_STATE(4597)] = 153823, - [SMALL_STATE(4598)] = 153833, - [SMALL_STATE(4599)] = 153843, - [SMALL_STATE(4600)] = 153853, - [SMALL_STATE(4601)] = 153867, - [SMALL_STATE(4602)] = 153881, - [SMALL_STATE(4603)] = 153895, - [SMALL_STATE(4604)] = 153909, - [SMALL_STATE(4605)] = 153919, - [SMALL_STATE(4606)] = 153933, - [SMALL_STATE(4607)] = 153947, - [SMALL_STATE(4608)] = 153961, - [SMALL_STATE(4609)] = 153971, - [SMALL_STATE(4610)] = 153985, - [SMALL_STATE(4611)] = 153997, - [SMALL_STATE(4612)] = 154009, - [SMALL_STATE(4613)] = 154021, - [SMALL_STATE(4614)] = 154037, - [SMALL_STATE(4615)] = 154047, - [SMALL_STATE(4616)] = 154061, - [SMALL_STATE(4617)] = 154071, - [SMALL_STATE(4618)] = 154085, - [SMALL_STATE(4619)] = 154095, - [SMALL_STATE(4620)] = 154105, - [SMALL_STATE(4621)] = 154115, - [SMALL_STATE(4622)] = 154125, - [SMALL_STATE(4623)] = 154139, - [SMALL_STATE(4624)] = 154149, - [SMALL_STATE(4625)] = 154159, - [SMALL_STATE(4626)] = 154169, - [SMALL_STATE(4627)] = 154179, - [SMALL_STATE(4628)] = 154193, - [SMALL_STATE(4629)] = 154203, - [SMALL_STATE(4630)] = 154217, - [SMALL_STATE(4631)] = 154227, - [SMALL_STATE(4632)] = 154237, - [SMALL_STATE(4633)] = 154253, - [SMALL_STATE(4634)] = 154263, - [SMALL_STATE(4635)] = 154273, - [SMALL_STATE(4636)] = 154287, - [SMALL_STATE(4637)] = 154297, - [SMALL_STATE(4638)] = 154311, - [SMALL_STATE(4639)] = 154325, - [SMALL_STATE(4640)] = 154337, - [SMALL_STATE(4641)] = 154351, - [SMALL_STATE(4642)] = 154361, - [SMALL_STATE(4643)] = 154371, - [SMALL_STATE(4644)] = 154381, - [SMALL_STATE(4645)] = 154395, - [SMALL_STATE(4646)] = 154409, - [SMALL_STATE(4647)] = 154419, - [SMALL_STATE(4648)] = 154429, - [SMALL_STATE(4649)] = 154443, - [SMALL_STATE(4650)] = 154457, - [SMALL_STATE(4651)] = 154467, - [SMALL_STATE(4652)] = 154481, - [SMALL_STATE(4653)] = 154491, - [SMALL_STATE(4654)] = 154505, - [SMALL_STATE(4655)] = 154517, - [SMALL_STATE(4656)] = 154527, - [SMALL_STATE(4657)] = 154537, - [SMALL_STATE(4658)] = 154551, - [SMALL_STATE(4659)] = 154561, - [SMALL_STATE(4660)] = 154571, - [SMALL_STATE(4661)] = 154581, - [SMALL_STATE(4662)] = 154595, - [SMALL_STATE(4663)] = 154605, - [SMALL_STATE(4664)] = 154615, - [SMALL_STATE(4665)] = 154625, - [SMALL_STATE(4666)] = 154635, - [SMALL_STATE(4667)] = 154649, - [SMALL_STATE(4668)] = 154663, - [SMALL_STATE(4669)] = 154677, - [SMALL_STATE(4670)] = 154687, - [SMALL_STATE(4671)] = 154701, - [SMALL_STATE(4672)] = 154711, - [SMALL_STATE(4673)] = 154721, - [SMALL_STATE(4674)] = 154735, - [SMALL_STATE(4675)] = 154745, - [SMALL_STATE(4676)] = 154757, - [SMALL_STATE(4677)] = 154771, - [SMALL_STATE(4678)] = 154783, - [SMALL_STATE(4679)] = 154793, - [SMALL_STATE(4680)] = 154807, - [SMALL_STATE(4681)] = 154821, - [SMALL_STATE(4682)] = 154831, - [SMALL_STATE(4683)] = 154841, - [SMALL_STATE(4684)] = 154855, - [SMALL_STATE(4685)] = 154865, - [SMALL_STATE(4686)] = 154879, - [SMALL_STATE(4687)] = 154889, - [SMALL_STATE(4688)] = 154903, - [SMALL_STATE(4689)] = 154913, - [SMALL_STATE(4690)] = 154923, - [SMALL_STATE(4691)] = 154933, - [SMALL_STATE(4692)] = 154943, - [SMALL_STATE(4693)] = 154957, - [SMALL_STATE(4694)] = 154967, - [SMALL_STATE(4695)] = 154977, - [SMALL_STATE(4696)] = 154991, - [SMALL_STATE(4697)] = 155005, - [SMALL_STATE(4698)] = 155015, - [SMALL_STATE(4699)] = 155025, - [SMALL_STATE(4700)] = 155035, - [SMALL_STATE(4701)] = 155049, - [SMALL_STATE(4702)] = 155059, - [SMALL_STATE(4703)] = 155069, - [SMALL_STATE(4704)] = 155083, - [SMALL_STATE(4705)] = 155097, - [SMALL_STATE(4706)] = 155111, - [SMALL_STATE(4707)] = 155121, - [SMALL_STATE(4708)] = 155135, - [SMALL_STATE(4709)] = 155145, - [SMALL_STATE(4710)] = 155155, - [SMALL_STATE(4711)] = 155165, - [SMALL_STATE(4712)] = 155175, - [SMALL_STATE(4713)] = 155185, - [SMALL_STATE(4714)] = 155195, - [SMALL_STATE(4715)] = 155205, - [SMALL_STATE(4716)] = 155215, - [SMALL_STATE(4717)] = 155225, - [SMALL_STATE(4718)] = 155235, - [SMALL_STATE(4719)] = 155245, - [SMALL_STATE(4720)] = 155255, - [SMALL_STATE(4721)] = 155269, - [SMALL_STATE(4722)] = 155279, - [SMALL_STATE(4723)] = 155289, - [SMALL_STATE(4724)] = 155299, - [SMALL_STATE(4725)] = 155313, - [SMALL_STATE(4726)] = 155323, - [SMALL_STATE(4727)] = 155333, - [SMALL_STATE(4728)] = 155343, - [SMALL_STATE(4729)] = 155357, - [SMALL_STATE(4730)] = 155367, - [SMALL_STATE(4731)] = 155381, - [SMALL_STATE(4732)] = 155391, - [SMALL_STATE(4733)] = 155401, - [SMALL_STATE(4734)] = 155411, - [SMALL_STATE(4735)] = 155421, - [SMALL_STATE(4736)] = 155431, - [SMALL_STATE(4737)] = 155441, - [SMALL_STATE(4738)] = 155451, - [SMALL_STATE(4739)] = 155461, - [SMALL_STATE(4740)] = 155471, - [SMALL_STATE(4741)] = 155481, - [SMALL_STATE(4742)] = 155491, - [SMALL_STATE(4743)] = 155501, - [SMALL_STATE(4744)] = 155511, - [SMALL_STATE(4745)] = 155521, - [SMALL_STATE(4746)] = 155531, - [SMALL_STATE(4747)] = 155541, - [SMALL_STATE(4748)] = 155551, - [SMALL_STATE(4749)] = 155561, - [SMALL_STATE(4750)] = 155571, - [SMALL_STATE(4751)] = 155585, - [SMALL_STATE(4752)] = 155595, - [SMALL_STATE(4753)] = 155605, - [SMALL_STATE(4754)] = 155615, - [SMALL_STATE(4755)] = 155625, - [SMALL_STATE(4756)] = 155635, - [SMALL_STATE(4757)] = 155645, - [SMALL_STATE(4758)] = 155655, - [SMALL_STATE(4759)] = 155669, - [SMALL_STATE(4760)] = 155679, - [SMALL_STATE(4761)] = 155689, - [SMALL_STATE(4762)] = 155699, - [SMALL_STATE(4763)] = 155709, - [SMALL_STATE(4764)] = 155719, - [SMALL_STATE(4765)] = 155729, - [SMALL_STATE(4766)] = 155739, - [SMALL_STATE(4767)] = 155749, - [SMALL_STATE(4768)] = 155763, - [SMALL_STATE(4769)] = 155773, - [SMALL_STATE(4770)] = 155785, - [SMALL_STATE(4771)] = 155795, - [SMALL_STATE(4772)] = 155807, - [SMALL_STATE(4773)] = 155821, - [SMALL_STATE(4774)] = 155831, - [SMALL_STATE(4775)] = 155841, - [SMALL_STATE(4776)] = 155853, - [SMALL_STATE(4777)] = 155863, - [SMALL_STATE(4778)] = 155873, - [SMALL_STATE(4779)] = 155887, - [SMALL_STATE(4780)] = 155901, - [SMALL_STATE(4781)] = 155911, - [SMALL_STATE(4782)] = 155925, - [SMALL_STATE(4783)] = 155935, - [SMALL_STATE(4784)] = 155949, - [SMALL_STATE(4785)] = 155963, - [SMALL_STATE(4786)] = 155973, - [SMALL_STATE(4787)] = 155983, - [SMALL_STATE(4788)] = 155997, - [SMALL_STATE(4789)] = 156011, - [SMALL_STATE(4790)] = 156025, - [SMALL_STATE(4791)] = 156035, - [SMALL_STATE(4792)] = 156045, - [SMALL_STATE(4793)] = 156055, - [SMALL_STATE(4794)] = 156065, - [SMALL_STATE(4795)] = 156075, - [SMALL_STATE(4796)] = 156085, - [SMALL_STATE(4797)] = 156095, - [SMALL_STATE(4798)] = 156105, - [SMALL_STATE(4799)] = 156115, - [SMALL_STATE(4800)] = 156125, - [SMALL_STATE(4801)] = 156135, - [SMALL_STATE(4802)] = 156145, - [SMALL_STATE(4803)] = 156155, - [SMALL_STATE(4804)] = 156169, - [SMALL_STATE(4805)] = 156179, - [SMALL_STATE(4806)] = 156189, - [SMALL_STATE(4807)] = 156199, - [SMALL_STATE(4808)] = 156213, - [SMALL_STATE(4809)] = 156225, - [SMALL_STATE(4810)] = 156235, - [SMALL_STATE(4811)] = 156245, - [SMALL_STATE(4812)] = 156255, - [SMALL_STATE(4813)] = 156265, - [SMALL_STATE(4814)] = 156275, - [SMALL_STATE(4815)] = 156285, - [SMALL_STATE(4816)] = 156295, - [SMALL_STATE(4817)] = 156305, - [SMALL_STATE(4818)] = 156321, - [SMALL_STATE(4819)] = 156331, - [SMALL_STATE(4820)] = 156341, - [SMALL_STATE(4821)] = 156355, - [SMALL_STATE(4822)] = 156365, - [SMALL_STATE(4823)] = 156379, - [SMALL_STATE(4824)] = 156389, - [SMALL_STATE(4825)] = 156403, - [SMALL_STATE(4826)] = 156417, - [SMALL_STATE(4827)] = 156427, - [SMALL_STATE(4828)] = 156437, - [SMALL_STATE(4829)] = 156447, - [SMALL_STATE(4830)] = 156457, - [SMALL_STATE(4831)] = 156467, - [SMALL_STATE(4832)] = 156477, - [SMALL_STATE(4833)] = 156487, - [SMALL_STATE(4834)] = 156497, - [SMALL_STATE(4835)] = 156509, - [SMALL_STATE(4836)] = 156523, - [SMALL_STATE(4837)] = 156533, - [SMALL_STATE(4838)] = 156543, - [SMALL_STATE(4839)] = 156553, - [SMALL_STATE(4840)] = 156563, - [SMALL_STATE(4841)] = 156573, - [SMALL_STATE(4842)] = 156583, - [SMALL_STATE(4843)] = 156593, - [SMALL_STATE(4844)] = 156603, - [SMALL_STATE(4845)] = 156613, - [SMALL_STATE(4846)] = 156627, - [SMALL_STATE(4847)] = 156637, - [SMALL_STATE(4848)] = 156647, - [SMALL_STATE(4849)] = 156657, - [SMALL_STATE(4850)] = 156667, - [SMALL_STATE(4851)] = 156677, - [SMALL_STATE(4852)] = 156687, - [SMALL_STATE(4853)] = 156697, - [SMALL_STATE(4854)] = 156707, - [SMALL_STATE(4855)] = 156717, - [SMALL_STATE(4856)] = 156727, - [SMALL_STATE(4857)] = 156737, - [SMALL_STATE(4858)] = 156747, - [SMALL_STATE(4859)] = 156757, - [SMALL_STATE(4860)] = 156767, - [SMALL_STATE(4861)] = 156777, - [SMALL_STATE(4862)] = 156787, - [SMALL_STATE(4863)] = 156797, - [SMALL_STATE(4864)] = 156807, - [SMALL_STATE(4865)] = 156817, - [SMALL_STATE(4866)] = 156827, - [SMALL_STATE(4867)] = 156837, - [SMALL_STATE(4868)] = 156847, - [SMALL_STATE(4869)] = 156857, - [SMALL_STATE(4870)] = 156867, - [SMALL_STATE(4871)] = 156877, - [SMALL_STATE(4872)] = 156887, - [SMALL_STATE(4873)] = 156897, - [SMALL_STATE(4874)] = 156907, - [SMALL_STATE(4875)] = 156917, - [SMALL_STATE(4876)] = 156927, - [SMALL_STATE(4877)] = 156937, - [SMALL_STATE(4878)] = 156947, - [SMALL_STATE(4879)] = 156961, - [SMALL_STATE(4880)] = 156977, - [SMALL_STATE(4881)] = 156987, - [SMALL_STATE(4882)] = 156997, - [SMALL_STATE(4883)] = 157007, - [SMALL_STATE(4884)] = 157017, - [SMALL_STATE(4885)] = 157027, - [SMALL_STATE(4886)] = 157039, - [SMALL_STATE(4887)] = 157049, - [SMALL_STATE(4888)] = 157059, - [SMALL_STATE(4889)] = 157069, - [SMALL_STATE(4890)] = 157079, - [SMALL_STATE(4891)] = 157089, - [SMALL_STATE(4892)] = 157099, - [SMALL_STATE(4893)] = 157109, - [SMALL_STATE(4894)] = 157119, - [SMALL_STATE(4895)] = 157133, - [SMALL_STATE(4896)] = 157143, - [SMALL_STATE(4897)] = 157153, - [SMALL_STATE(4898)] = 157167, - [SMALL_STATE(4899)] = 157177, - [SMALL_STATE(4900)] = 157187, - [SMALL_STATE(4901)] = 157197, - [SMALL_STATE(4902)] = 157211, - [SMALL_STATE(4903)] = 157225, - [SMALL_STATE(4904)] = 157235, - [SMALL_STATE(4905)] = 157249, - [SMALL_STATE(4906)] = 157263, - [SMALL_STATE(4907)] = 157277, - [SMALL_STATE(4908)] = 157287, - [SMALL_STATE(4909)] = 157301, - [SMALL_STATE(4910)] = 157311, - [SMALL_STATE(4911)] = 157325, - [SMALL_STATE(4912)] = 157335, - [SMALL_STATE(4913)] = 157345, - [SMALL_STATE(4914)] = 157355, - [SMALL_STATE(4915)] = 157365, - [SMALL_STATE(4916)] = 157379, - [SMALL_STATE(4917)] = 157391, - [SMALL_STATE(4918)] = 157401, - [SMALL_STATE(4919)] = 157411, - [SMALL_STATE(4920)] = 157421, - [SMALL_STATE(4921)] = 157431, - [SMALL_STATE(4922)] = 157441, - [SMALL_STATE(4923)] = 157455, - [SMALL_STATE(4924)] = 157465, - [SMALL_STATE(4925)] = 157475, - [SMALL_STATE(4926)] = 157485, - [SMALL_STATE(4927)] = 157499, - [SMALL_STATE(4928)] = 157509, - [SMALL_STATE(4929)] = 157519, - [SMALL_STATE(4930)] = 157529, - [SMALL_STATE(4931)] = 157539, - [SMALL_STATE(4932)] = 157549, - [SMALL_STATE(4933)] = 157559, - [SMALL_STATE(4934)] = 157569, - [SMALL_STATE(4935)] = 157579, - [SMALL_STATE(4936)] = 157595, - [SMALL_STATE(4937)] = 157605, - [SMALL_STATE(4938)] = 157615, - [SMALL_STATE(4939)] = 157625, - [SMALL_STATE(4940)] = 157639, - [SMALL_STATE(4941)] = 157653, - [SMALL_STATE(4942)] = 157667, - [SMALL_STATE(4943)] = 157677, - [SMALL_STATE(4944)] = 157687, - [SMALL_STATE(4945)] = 157699, - [SMALL_STATE(4946)] = 157711, - [SMALL_STATE(4947)] = 157721, - [SMALL_STATE(4948)] = 157735, - [SMALL_STATE(4949)] = 157749, - [SMALL_STATE(4950)] = 157759, - [SMALL_STATE(4951)] = 157769, - [SMALL_STATE(4952)] = 157779, - [SMALL_STATE(4953)] = 157793, - [SMALL_STATE(4954)] = 157803, - [SMALL_STATE(4955)] = 157813, - [SMALL_STATE(4956)] = 157823, - [SMALL_STATE(4957)] = 157837, - [SMALL_STATE(4958)] = 157847, - [SMALL_STATE(4959)] = 157857, - [SMALL_STATE(4960)] = 157867, - [SMALL_STATE(4961)] = 157877, - [SMALL_STATE(4962)] = 157891, - [SMALL_STATE(4963)] = 157901, - [SMALL_STATE(4964)] = 157911, - [SMALL_STATE(4965)] = 157925, - [SMALL_STATE(4966)] = 157939, - [SMALL_STATE(4967)] = 157949, - [SMALL_STATE(4968)] = 157959, - [SMALL_STATE(4969)] = 157969, - [SMALL_STATE(4970)] = 157983, - [SMALL_STATE(4971)] = 157997, - [SMALL_STATE(4972)] = 158011, - [SMALL_STATE(4973)] = 158021, - [SMALL_STATE(4974)] = 158031, - [SMALL_STATE(4975)] = 158045, - [SMALL_STATE(4976)] = 158055, - [SMALL_STATE(4977)] = 158069, - [SMALL_STATE(4978)] = 158079, - [SMALL_STATE(4979)] = 158089, - [SMALL_STATE(4980)] = 158099, - [SMALL_STATE(4981)] = 158109, - [SMALL_STATE(4982)] = 158119, - [SMALL_STATE(4983)] = 158129, - [SMALL_STATE(4984)] = 158143, - [SMALL_STATE(4985)] = 158153, - [SMALL_STATE(4986)] = 158163, - [SMALL_STATE(4987)] = 158173, - [SMALL_STATE(4988)] = 158187, - [SMALL_STATE(4989)] = 158197, - [SMALL_STATE(4990)] = 158207, - [SMALL_STATE(4991)] = 158219, - [SMALL_STATE(4992)] = 158233, - [SMALL_STATE(4993)] = 158243, - [SMALL_STATE(4994)] = 158253, - [SMALL_STATE(4995)] = 158267, - [SMALL_STATE(4996)] = 158281, - [SMALL_STATE(4997)] = 158291, - [SMALL_STATE(4998)] = 158305, - [SMALL_STATE(4999)] = 158319, - [SMALL_STATE(5000)] = 158329, - [SMALL_STATE(5001)] = 158343, - [SMALL_STATE(5002)] = 158353, - [SMALL_STATE(5003)] = 158363, - [SMALL_STATE(5004)] = 158373, - [SMALL_STATE(5005)] = 158383, - [SMALL_STATE(5006)] = 158393, - [SMALL_STATE(5007)] = 158403, - [SMALL_STATE(5008)] = 158417, - [SMALL_STATE(5009)] = 158431, - [SMALL_STATE(5010)] = 158441, - [SMALL_STATE(5011)] = 158455, - [SMALL_STATE(5012)] = 158469, - [SMALL_STATE(5013)] = 158479, - [SMALL_STATE(5014)] = 158489, - [SMALL_STATE(5015)] = 158499, - [SMALL_STATE(5016)] = 158509, - [SMALL_STATE(5017)] = 158521, - [SMALL_STATE(5018)] = 158531, - [SMALL_STATE(5019)] = 158541, - [SMALL_STATE(5020)] = 158551, - [SMALL_STATE(5021)] = 158565, - [SMALL_STATE(5022)] = 158575, - [SMALL_STATE(5023)] = 158589, - [SMALL_STATE(5024)] = 158599, - [SMALL_STATE(5025)] = 158609, - [SMALL_STATE(5026)] = 158619, - [SMALL_STATE(5027)] = 158629, - [SMALL_STATE(5028)] = 158639, - [SMALL_STATE(5029)] = 158649, - [SMALL_STATE(5030)] = 158663, - [SMALL_STATE(5031)] = 158673, - [SMALL_STATE(5032)] = 158683, - [SMALL_STATE(5033)] = 158693, - [SMALL_STATE(5034)] = 158703, - [SMALL_STATE(5035)] = 158717, - [SMALL_STATE(5036)] = 158727, - [SMALL_STATE(5037)] = 158737, - [SMALL_STATE(5038)] = 158747, - [SMALL_STATE(5039)] = 158757, - [SMALL_STATE(5040)] = 158767, - [SMALL_STATE(5041)] = 158777, - [SMALL_STATE(5042)] = 158787, - [SMALL_STATE(5043)] = 158797, - [SMALL_STATE(5044)] = 158807, - [SMALL_STATE(5045)] = 158817, - [SMALL_STATE(5046)] = 158827, - [SMALL_STATE(5047)] = 158837, - [SMALL_STATE(5048)] = 158847, - [SMALL_STATE(5049)] = 158857, - [SMALL_STATE(5050)] = 158867, - [SMALL_STATE(5051)] = 158877, - [SMALL_STATE(5052)] = 158887, - [SMALL_STATE(5053)] = 158897, - [SMALL_STATE(5054)] = 158907, - [SMALL_STATE(5055)] = 158917, - [SMALL_STATE(5056)] = 158927, - [SMALL_STATE(5057)] = 158941, - [SMALL_STATE(5058)] = 158951, - [SMALL_STATE(5059)] = 158961, - [SMALL_STATE(5060)] = 158971, - [SMALL_STATE(5061)] = 158981, - [SMALL_STATE(5062)] = 158991, - [SMALL_STATE(5063)] = 159001, - [SMALL_STATE(5064)] = 159011, - [SMALL_STATE(5065)] = 159021, - [SMALL_STATE(5066)] = 159031, - [SMALL_STATE(5067)] = 159041, - [SMALL_STATE(5068)] = 159051, - [SMALL_STATE(5069)] = 159061, - [SMALL_STATE(5070)] = 159071, - [SMALL_STATE(5071)] = 159081, - [SMALL_STATE(5072)] = 159091, - [SMALL_STATE(5073)] = 159101, - [SMALL_STATE(5074)] = 159111, - [SMALL_STATE(5075)] = 159121, - [SMALL_STATE(5076)] = 159131, - [SMALL_STATE(5077)] = 159141, - [SMALL_STATE(5078)] = 159151, - [SMALL_STATE(5079)] = 159161, - [SMALL_STATE(5080)] = 159171, - [SMALL_STATE(5081)] = 159181, - [SMALL_STATE(5082)] = 159191, - [SMALL_STATE(5083)] = 159201, - [SMALL_STATE(5084)] = 159211, - [SMALL_STATE(5085)] = 159221, - [SMALL_STATE(5086)] = 159231, - [SMALL_STATE(5087)] = 159241, - [SMALL_STATE(5088)] = 159251, - [SMALL_STATE(5089)] = 159261, - [SMALL_STATE(5090)] = 159271, - [SMALL_STATE(5091)] = 159281, - [SMALL_STATE(5092)] = 159295, - [SMALL_STATE(5093)] = 159305, - [SMALL_STATE(5094)] = 159315, - [SMALL_STATE(5095)] = 159325, - [SMALL_STATE(5096)] = 159335, - [SMALL_STATE(5097)] = 159345, - [SMALL_STATE(5098)] = 159355, - [SMALL_STATE(5099)] = 159365, - [SMALL_STATE(5100)] = 159375, - [SMALL_STATE(5101)] = 159385, - [SMALL_STATE(5102)] = 159395, - [SMALL_STATE(5103)] = 159405, - [SMALL_STATE(5104)] = 159415, - [SMALL_STATE(5105)] = 159425, - [SMALL_STATE(5106)] = 159435, - [SMALL_STATE(5107)] = 159447, - [SMALL_STATE(5108)] = 159457, - [SMALL_STATE(5109)] = 159467, - [SMALL_STATE(5110)] = 159477, - [SMALL_STATE(5111)] = 159491, - [SMALL_STATE(5112)] = 159501, - [SMALL_STATE(5113)] = 159511, - [SMALL_STATE(5114)] = 159521, - [SMALL_STATE(5115)] = 159531, - [SMALL_STATE(5116)] = 159541, - [SMALL_STATE(5117)] = 159553, - [SMALL_STATE(5118)] = 159563, - [SMALL_STATE(5119)] = 159573, - [SMALL_STATE(5120)] = 159587, - [SMALL_STATE(5121)] = 159597, - [SMALL_STATE(5122)] = 159607, - [SMALL_STATE(5123)] = 159617, - [SMALL_STATE(5124)] = 159627, - [SMALL_STATE(5125)] = 159637, - [SMALL_STATE(5126)] = 159647, - [SMALL_STATE(5127)] = 159657, - [SMALL_STATE(5128)] = 159667, - [SMALL_STATE(5129)] = 159677, - [SMALL_STATE(5130)] = 159687, - [SMALL_STATE(5131)] = 159697, - [SMALL_STATE(5132)] = 159707, - [SMALL_STATE(5133)] = 159721, - [SMALL_STATE(5134)] = 159731, - [SMALL_STATE(5135)] = 159745, - [SMALL_STATE(5136)] = 159755, - [SMALL_STATE(5137)] = 159769, - [SMALL_STATE(5138)] = 159779, - [SMALL_STATE(5139)] = 159790, - [SMALL_STATE(5140)] = 159799, - [SMALL_STATE(5141)] = 159808, - [SMALL_STATE(5142)] = 159819, - [SMALL_STATE(5143)] = 159828, - [SMALL_STATE(5144)] = 159839, - [SMALL_STATE(5145)] = 159848, - [SMALL_STATE(5146)] = 159859, - [SMALL_STATE(5147)] = 159870, - [SMALL_STATE(5148)] = 159881, - [SMALL_STATE(5149)] = 159892, - [SMALL_STATE(5150)] = 159903, - [SMALL_STATE(5151)] = 159914, - [SMALL_STATE(5152)] = 159925, - [SMALL_STATE(5153)] = 159936, - [SMALL_STATE(5154)] = 159945, - [SMALL_STATE(5155)] = 159954, - [SMALL_STATE(5156)] = 159965, - [SMALL_STATE(5157)] = 159976, - [SMALL_STATE(5158)] = 159987, - [SMALL_STATE(5159)] = 159998, - [SMALL_STATE(5160)] = 160009, - [SMALL_STATE(5161)] = 160020, - [SMALL_STATE(5162)] = 160031, - [SMALL_STATE(5163)] = 160042, - [SMALL_STATE(5164)] = 160051, - [SMALL_STATE(5165)] = 160060, - [SMALL_STATE(5166)] = 160071, - [SMALL_STATE(5167)] = 160080, - [SMALL_STATE(5168)] = 160091, - [SMALL_STATE(5169)] = 160102, - [SMALL_STATE(5170)] = 160113, - [SMALL_STATE(5171)] = 160124, - [SMALL_STATE(5172)] = 160135, - [SMALL_STATE(5173)] = 160146, - [SMALL_STATE(5174)] = 160155, - [SMALL_STATE(5175)] = 160166, - [SMALL_STATE(5176)] = 160177, - [SMALL_STATE(5177)] = 160188, - [SMALL_STATE(5178)] = 160199, - [SMALL_STATE(5179)] = 160210, - [SMALL_STATE(5180)] = 160219, - [SMALL_STATE(5181)] = 160228, - [SMALL_STATE(5182)] = 160239, - [SMALL_STATE(5183)] = 160248, - [SMALL_STATE(5184)] = 160257, - [SMALL_STATE(5185)] = 160268, - [SMALL_STATE(5186)] = 160279, - [SMALL_STATE(5187)] = 160288, - [SMALL_STATE(5188)] = 160299, - [SMALL_STATE(5189)] = 160310, - [SMALL_STATE(5190)] = 160321, - [SMALL_STATE(5191)] = 160332, - [SMALL_STATE(5192)] = 160343, - [SMALL_STATE(5193)] = 160352, - [SMALL_STATE(5194)] = 160363, - [SMALL_STATE(5195)] = 160374, - [SMALL_STATE(5196)] = 160383, - [SMALL_STATE(5197)] = 160394, - [SMALL_STATE(5198)] = 160405, - [SMALL_STATE(5199)] = 160416, - [SMALL_STATE(5200)] = 160427, - [SMALL_STATE(5201)] = 160436, - [SMALL_STATE(5202)] = 160445, - [SMALL_STATE(5203)] = 160454, - [SMALL_STATE(5204)] = 160463, - [SMALL_STATE(5205)] = 160474, - [SMALL_STATE(5206)] = 160485, - [SMALL_STATE(5207)] = 160494, - [SMALL_STATE(5208)] = 160505, - [SMALL_STATE(5209)] = 160514, - [SMALL_STATE(5210)] = 160525, - [SMALL_STATE(5211)] = 160534, - [SMALL_STATE(5212)] = 160545, - [SMALL_STATE(5213)] = 160556, - [SMALL_STATE(5214)] = 160567, - [SMALL_STATE(5215)] = 160578, - [SMALL_STATE(5216)] = 160589, - [SMALL_STATE(5217)] = 160598, - [SMALL_STATE(5218)] = 160609, - [SMALL_STATE(5219)] = 160620, - [SMALL_STATE(5220)] = 160631, - [SMALL_STATE(5221)] = 160642, - [SMALL_STATE(5222)] = 160653, - [SMALL_STATE(5223)] = 160664, - [SMALL_STATE(5224)] = 160675, - [SMALL_STATE(5225)] = 160684, - [SMALL_STATE(5226)] = 160695, - [SMALL_STATE(5227)] = 160706, - [SMALL_STATE(5228)] = 160715, - [SMALL_STATE(5229)] = 160726, - [SMALL_STATE(5230)] = 160737, - [SMALL_STATE(5231)] = 160746, - [SMALL_STATE(5232)] = 160755, - [SMALL_STATE(5233)] = 160766, - [SMALL_STATE(5234)] = 160777, - [SMALL_STATE(5235)] = 160788, - [SMALL_STATE(5236)] = 160799, - [SMALL_STATE(5237)] = 160808, - [SMALL_STATE(5238)] = 160817, - [SMALL_STATE(5239)] = 160828, - [SMALL_STATE(5240)] = 160839, - [SMALL_STATE(5241)] = 160850, - [SMALL_STATE(5242)] = 160859, - [SMALL_STATE(5243)] = 160870, - [SMALL_STATE(5244)] = 160879, - [SMALL_STATE(5245)] = 160890, - [SMALL_STATE(5246)] = 160901, - [SMALL_STATE(5247)] = 160912, - [SMALL_STATE(5248)] = 160921, - [SMALL_STATE(5249)] = 160932, - [SMALL_STATE(5250)] = 160943, - [SMALL_STATE(5251)] = 160952, - [SMALL_STATE(5252)] = 160963, - [SMALL_STATE(5253)] = 160974, - [SMALL_STATE(5254)] = 160985, - [SMALL_STATE(5255)] = 160996, - [SMALL_STATE(5256)] = 161007, - [SMALL_STATE(5257)] = 161018, - [SMALL_STATE(5258)] = 161029, - [SMALL_STATE(5259)] = 161040, - [SMALL_STATE(5260)] = 161051, - [SMALL_STATE(5261)] = 161062, - [SMALL_STATE(5262)] = 161073, - [SMALL_STATE(5263)] = 161084, - [SMALL_STATE(5264)] = 161093, - [SMALL_STATE(5265)] = 161104, - [SMALL_STATE(5266)] = 161115, - [SMALL_STATE(5267)] = 161126, - [SMALL_STATE(5268)] = 161137, - [SMALL_STATE(5269)] = 161148, - [SMALL_STATE(5270)] = 161159, - [SMALL_STATE(5271)] = 161170, - [SMALL_STATE(5272)] = 161181, - [SMALL_STATE(5273)] = 161192, - [SMALL_STATE(5274)] = 161203, - [SMALL_STATE(5275)] = 161214, - [SMALL_STATE(5276)] = 161223, - [SMALL_STATE(5277)] = 161232, - [SMALL_STATE(5278)] = 161243, - [SMALL_STATE(5279)] = 161254, - [SMALL_STATE(5280)] = 161263, - [SMALL_STATE(5281)] = 161272, - [SMALL_STATE(5282)] = 161283, - [SMALL_STATE(5283)] = 161294, - [SMALL_STATE(5284)] = 161303, - [SMALL_STATE(5285)] = 161314, - [SMALL_STATE(5286)] = 161325, - [SMALL_STATE(5287)] = 161336, - [SMALL_STATE(5288)] = 161347, - [SMALL_STATE(5289)] = 161358, - [SMALL_STATE(5290)] = 161369, - [SMALL_STATE(5291)] = 161380, - [SMALL_STATE(5292)] = 161391, - [SMALL_STATE(5293)] = 161400, - [SMALL_STATE(5294)] = 161409, - [SMALL_STATE(5295)] = 161420, - [SMALL_STATE(5296)] = 161431, - [SMALL_STATE(5297)] = 161442, - [SMALL_STATE(5298)] = 161453, - [SMALL_STATE(5299)] = 161464, - [SMALL_STATE(5300)] = 161475, - [SMALL_STATE(5301)] = 161486, - [SMALL_STATE(5302)] = 161497, - [SMALL_STATE(5303)] = 161508, - [SMALL_STATE(5304)] = 161517, - [SMALL_STATE(5305)] = 161528, - [SMALL_STATE(5306)] = 161539, - [SMALL_STATE(5307)] = 161550, - [SMALL_STATE(5308)] = 161561, - [SMALL_STATE(5309)] = 161572, - [SMALL_STATE(5310)] = 161581, - [SMALL_STATE(5311)] = 161592, - [SMALL_STATE(5312)] = 161603, - [SMALL_STATE(5313)] = 161612, - [SMALL_STATE(5314)] = 161623, - [SMALL_STATE(5315)] = 161634, - [SMALL_STATE(5316)] = 161645, - [SMALL_STATE(5317)] = 161656, - [SMALL_STATE(5318)] = 161667, - [SMALL_STATE(5319)] = 161678, - [SMALL_STATE(5320)] = 161689, - [SMALL_STATE(5321)] = 161700, - [SMALL_STATE(5322)] = 161711, - [SMALL_STATE(5323)] = 161722, - [SMALL_STATE(5324)] = 161731, - [SMALL_STATE(5325)] = 161742, - [SMALL_STATE(5326)] = 161753, - [SMALL_STATE(5327)] = 161764, - [SMALL_STATE(5328)] = 161775, - [SMALL_STATE(5329)] = 161784, - [SMALL_STATE(5330)] = 161795, - [SMALL_STATE(5331)] = 161804, - [SMALL_STATE(5332)] = 161815, - [SMALL_STATE(5333)] = 161826, - [SMALL_STATE(5334)] = 161837, - [SMALL_STATE(5335)] = 161846, - [SMALL_STATE(5336)] = 161857, - [SMALL_STATE(5337)] = 161868, - [SMALL_STATE(5338)] = 161879, - [SMALL_STATE(5339)] = 161890, - [SMALL_STATE(5340)] = 161899, - [SMALL_STATE(5341)] = 161908, - [SMALL_STATE(5342)] = 161917, - [SMALL_STATE(5343)] = 161928, - [SMALL_STATE(5344)] = 161939, - [SMALL_STATE(5345)] = 161948, - [SMALL_STATE(5346)] = 161957, - [SMALL_STATE(5347)] = 161968, - [SMALL_STATE(5348)] = 161979, - [SMALL_STATE(5349)] = 161990, - [SMALL_STATE(5350)] = 162001, - [SMALL_STATE(5351)] = 162010, - [SMALL_STATE(5352)] = 162021, - [SMALL_STATE(5353)] = 162032, - [SMALL_STATE(5354)] = 162043, - [SMALL_STATE(5355)] = 162054, - [SMALL_STATE(5356)] = 162065, - [SMALL_STATE(5357)] = 162076, - [SMALL_STATE(5358)] = 162085, - [SMALL_STATE(5359)] = 162096, - [SMALL_STATE(5360)] = 162107, - [SMALL_STATE(5361)] = 162118, - [SMALL_STATE(5362)] = 162129, - [SMALL_STATE(5363)] = 162140, - [SMALL_STATE(5364)] = 162151, - [SMALL_STATE(5365)] = 162162, - [SMALL_STATE(5366)] = 162171, - [SMALL_STATE(5367)] = 162182, - [SMALL_STATE(5368)] = 162193, - [SMALL_STATE(5369)] = 162204, - [SMALL_STATE(5370)] = 162215, - [SMALL_STATE(5371)] = 162226, - [SMALL_STATE(5372)] = 162237, - [SMALL_STATE(5373)] = 162248, - [SMALL_STATE(5374)] = 162259, - [SMALL_STATE(5375)] = 162270, - [SMALL_STATE(5376)] = 162281, - [SMALL_STATE(5377)] = 162292, - [SMALL_STATE(5378)] = 162303, - [SMALL_STATE(5379)] = 162314, - [SMALL_STATE(5380)] = 162325, - [SMALL_STATE(5381)] = 162336, - [SMALL_STATE(5382)] = 162347, - [SMALL_STATE(5383)] = 162358, - [SMALL_STATE(5384)] = 162369, - [SMALL_STATE(5385)] = 162380, - [SMALL_STATE(5386)] = 162389, - [SMALL_STATE(5387)] = 162400, - [SMALL_STATE(5388)] = 162411, - [SMALL_STATE(5389)] = 162420, - [SMALL_STATE(5390)] = 162431, - [SMALL_STATE(5391)] = 162442, - [SMALL_STATE(5392)] = 162453, - [SMALL_STATE(5393)] = 162464, - [SMALL_STATE(5394)] = 162475, - [SMALL_STATE(5395)] = 162486, - [SMALL_STATE(5396)] = 162497, - [SMALL_STATE(5397)] = 162508, - [SMALL_STATE(5398)] = 162519, - [SMALL_STATE(5399)] = 162528, - [SMALL_STATE(5400)] = 162539, - [SMALL_STATE(5401)] = 162550, - [SMALL_STATE(5402)] = 162559, - [SMALL_STATE(5403)] = 162570, - [SMALL_STATE(5404)] = 162581, - [SMALL_STATE(5405)] = 162590, - [SMALL_STATE(5406)] = 162599, - [SMALL_STATE(5407)] = 162610, - [SMALL_STATE(5408)] = 162621, - [SMALL_STATE(5409)] = 162632, - [SMALL_STATE(5410)] = 162643, - [SMALL_STATE(5411)] = 162654, - [SMALL_STATE(5412)] = 162665, - [SMALL_STATE(5413)] = 162676, - [SMALL_STATE(5414)] = 162687, - [SMALL_STATE(5415)] = 162698, - [SMALL_STATE(5416)] = 162709, - [SMALL_STATE(5417)] = 162720, - [SMALL_STATE(5418)] = 162731, - [SMALL_STATE(5419)] = 162742, - [SMALL_STATE(5420)] = 162751, - [SMALL_STATE(5421)] = 162762, - [SMALL_STATE(5422)] = 162773, - [SMALL_STATE(5423)] = 162784, - [SMALL_STATE(5424)] = 162795, - [SMALL_STATE(5425)] = 162804, - [SMALL_STATE(5426)] = 162815, - [SMALL_STATE(5427)] = 162826, - [SMALL_STATE(5428)] = 162835, - [SMALL_STATE(5429)] = 162846, - [SMALL_STATE(5430)] = 162857, - [SMALL_STATE(5431)] = 162866, - [SMALL_STATE(5432)] = 162877, - [SMALL_STATE(5433)] = 162888, - [SMALL_STATE(5434)] = 162897, - [SMALL_STATE(5435)] = 162908, - [SMALL_STATE(5436)] = 162917, - [SMALL_STATE(5437)] = 162928, - [SMALL_STATE(5438)] = 162939, - [SMALL_STATE(5439)] = 162950, - [SMALL_STATE(5440)] = 162961, - [SMALL_STATE(5441)] = 162972, - [SMALL_STATE(5442)] = 162981, - [SMALL_STATE(5443)] = 162992, - [SMALL_STATE(5444)] = 163001, - [SMALL_STATE(5445)] = 163012, - [SMALL_STATE(5446)] = 163023, - [SMALL_STATE(5447)] = 163034, - [SMALL_STATE(5448)] = 163045, - [SMALL_STATE(5449)] = 163054, - [SMALL_STATE(5450)] = 163065, - [SMALL_STATE(5451)] = 163076, - [SMALL_STATE(5452)] = 163087, - [SMALL_STATE(5453)] = 163098, - [SMALL_STATE(5454)] = 163107, - [SMALL_STATE(5455)] = 163118, - [SMALL_STATE(5456)] = 163129, - [SMALL_STATE(5457)] = 163140, - [SMALL_STATE(5458)] = 163151, - [SMALL_STATE(5459)] = 163162, - [SMALL_STATE(5460)] = 163173, - [SMALL_STATE(5461)] = 163184, - [SMALL_STATE(5462)] = 163193, - [SMALL_STATE(5463)] = 163204, - [SMALL_STATE(5464)] = 163215, - [SMALL_STATE(5465)] = 163226, - [SMALL_STATE(5466)] = 163237, - [SMALL_STATE(5467)] = 163248, - [SMALL_STATE(5468)] = 163259, - [SMALL_STATE(5469)] = 163270, - [SMALL_STATE(5470)] = 163281, - [SMALL_STATE(5471)] = 163292, - [SMALL_STATE(5472)] = 163303, - [SMALL_STATE(5473)] = 163314, - [SMALL_STATE(5474)] = 163325, - [SMALL_STATE(5475)] = 163336, - [SMALL_STATE(5476)] = 163347, - [SMALL_STATE(5477)] = 163358, - [SMALL_STATE(5478)] = 163369, - [SMALL_STATE(5479)] = 163377, - [SMALL_STATE(5480)] = 163385, - [SMALL_STATE(5481)] = 163393, - [SMALL_STATE(5482)] = 163401, - [SMALL_STATE(5483)] = 163409, - [SMALL_STATE(5484)] = 163417, - [SMALL_STATE(5485)] = 163425, - [SMALL_STATE(5486)] = 163433, - [SMALL_STATE(5487)] = 163443, - [SMALL_STATE(5488)] = 163451, - [SMALL_STATE(5489)] = 163459, - [SMALL_STATE(5490)] = 163467, - [SMALL_STATE(5491)] = 163475, - [SMALL_STATE(5492)] = 163483, - [SMALL_STATE(5493)] = 163491, - [SMALL_STATE(5494)] = 163499, - [SMALL_STATE(5495)] = 163507, - [SMALL_STATE(5496)] = 163515, - [SMALL_STATE(5497)] = 163525, - [SMALL_STATE(5498)] = 163533, - [SMALL_STATE(5499)] = 163541, - [SMALL_STATE(5500)] = 163549, - [SMALL_STATE(5501)] = 163557, - [SMALL_STATE(5502)] = 163565, - [SMALL_STATE(5503)] = 163573, - [SMALL_STATE(5504)] = 163581, - [SMALL_STATE(5505)] = 163589, - [SMALL_STATE(5506)] = 163597, - [SMALL_STATE(5507)] = 163605, - [SMALL_STATE(5508)] = 163613, - [SMALL_STATE(5509)] = 163621, - [SMALL_STATE(5510)] = 163629, - [SMALL_STATE(5511)] = 163637, - [SMALL_STATE(5512)] = 163645, - [SMALL_STATE(5513)] = 163653, - [SMALL_STATE(5514)] = 163661, - [SMALL_STATE(5515)] = 163669, - [SMALL_STATE(5516)] = 163677, - [SMALL_STATE(5517)] = 163685, - [SMALL_STATE(5518)] = 163695, - [SMALL_STATE(5519)] = 163703, - [SMALL_STATE(5520)] = 163711, - [SMALL_STATE(5521)] = 163719, - [SMALL_STATE(5522)] = 163727, - [SMALL_STATE(5523)] = 163735, - [SMALL_STATE(5524)] = 163743, - [SMALL_STATE(5525)] = 163751, - [SMALL_STATE(5526)] = 163759, - [SMALL_STATE(5527)] = 163767, - [SMALL_STATE(5528)] = 163775, - [SMALL_STATE(5529)] = 163783, - [SMALL_STATE(5530)] = 163791, - [SMALL_STATE(5531)] = 163799, - [SMALL_STATE(5532)] = 163807, - [SMALL_STATE(5533)] = 163815, - [SMALL_STATE(5534)] = 163823, - [SMALL_STATE(5535)] = 163831, - [SMALL_STATE(5536)] = 163839, - [SMALL_STATE(5537)] = 163847, - [SMALL_STATE(5538)] = 163855, - [SMALL_STATE(5539)] = 163863, - [SMALL_STATE(5540)] = 163871, - [SMALL_STATE(5541)] = 163879, - [SMALL_STATE(5542)] = 163887, - [SMALL_STATE(5543)] = 163895, - [SMALL_STATE(5544)] = 163903, - [SMALL_STATE(5545)] = 163911, - [SMALL_STATE(5546)] = 163919, - [SMALL_STATE(5547)] = 163927, - [SMALL_STATE(5548)] = 163935, - [SMALL_STATE(5549)] = 163943, - [SMALL_STATE(5550)] = 163951, - [SMALL_STATE(5551)] = 163959, - [SMALL_STATE(5552)] = 163967, - [SMALL_STATE(5553)] = 163975, - [SMALL_STATE(5554)] = 163983, - [SMALL_STATE(5555)] = 163991, - [SMALL_STATE(5556)] = 163999, - [SMALL_STATE(5557)] = 164007, - [SMALL_STATE(5558)] = 164015, - [SMALL_STATE(5559)] = 164023, - [SMALL_STATE(5560)] = 164031, - [SMALL_STATE(5561)] = 164039, - [SMALL_STATE(5562)] = 164047, - [SMALL_STATE(5563)] = 164055, - [SMALL_STATE(5564)] = 164063, - [SMALL_STATE(5565)] = 164071, - [SMALL_STATE(5566)] = 164079, - [SMALL_STATE(5567)] = 164087, - [SMALL_STATE(5568)] = 164095, - [SMALL_STATE(5569)] = 164103, - [SMALL_STATE(5570)] = 164111, - [SMALL_STATE(5571)] = 164119, - [SMALL_STATE(5572)] = 164127, - [SMALL_STATE(5573)] = 164135, - [SMALL_STATE(5574)] = 164143, - [SMALL_STATE(5575)] = 164151, - [SMALL_STATE(5576)] = 164159, - [SMALL_STATE(5577)] = 164167, - [SMALL_STATE(5578)] = 164175, - [SMALL_STATE(5579)] = 164183, - [SMALL_STATE(5580)] = 164191, - [SMALL_STATE(5581)] = 164199, - [SMALL_STATE(5582)] = 164209, - [SMALL_STATE(5583)] = 164217, - [SMALL_STATE(5584)] = 164225, - [SMALL_STATE(5585)] = 164233, - [SMALL_STATE(5586)] = 164241, - [SMALL_STATE(5587)] = 164249, - [SMALL_STATE(5588)] = 164257, - [SMALL_STATE(5589)] = 164265, - [SMALL_STATE(5590)] = 164273, - [SMALL_STATE(5591)] = 164281, - [SMALL_STATE(5592)] = 164289, - [SMALL_STATE(5593)] = 164297, - [SMALL_STATE(5594)] = 164305, - [SMALL_STATE(5595)] = 164313, - [SMALL_STATE(5596)] = 164321, - [SMALL_STATE(5597)] = 164329, - [SMALL_STATE(5598)] = 164337, - [SMALL_STATE(5599)] = 164345, - [SMALL_STATE(5600)] = 164353, - [SMALL_STATE(5601)] = 164361, - [SMALL_STATE(5602)] = 164369, - [SMALL_STATE(5603)] = 164377, - [SMALL_STATE(5604)] = 164385, - [SMALL_STATE(5605)] = 164393, - [SMALL_STATE(5606)] = 164401, - [SMALL_STATE(5607)] = 164409, - [SMALL_STATE(5608)] = 164417, - [SMALL_STATE(5609)] = 164425, - [SMALL_STATE(5610)] = 164433, - [SMALL_STATE(5611)] = 164441, - [SMALL_STATE(5612)] = 164451, - [SMALL_STATE(5613)] = 164459, - [SMALL_STATE(5614)] = 164467, - [SMALL_STATE(5615)] = 164475, - [SMALL_STATE(5616)] = 164483, - [SMALL_STATE(5617)] = 164491, - [SMALL_STATE(5618)] = 164499, - [SMALL_STATE(5619)] = 164507, - [SMALL_STATE(5620)] = 164515, - [SMALL_STATE(5621)] = 164523, - [SMALL_STATE(5622)] = 164531, - [SMALL_STATE(5623)] = 164539, - [SMALL_STATE(5624)] = 164547, - [SMALL_STATE(5625)] = 164555, - [SMALL_STATE(5626)] = 164563, - [SMALL_STATE(5627)] = 164573, - [SMALL_STATE(5628)] = 164581, - [SMALL_STATE(5629)] = 164589, - [SMALL_STATE(5630)] = 164597, - [SMALL_STATE(5631)] = 164605, - [SMALL_STATE(5632)] = 164613, - [SMALL_STATE(5633)] = 164621, - [SMALL_STATE(5634)] = 164629, - [SMALL_STATE(5635)] = 164637, - [SMALL_STATE(5636)] = 164645, - [SMALL_STATE(5637)] = 164653, - [SMALL_STATE(5638)] = 164661, - [SMALL_STATE(5639)] = 164669, - [SMALL_STATE(5640)] = 164677, - [SMALL_STATE(5641)] = 164685, - [SMALL_STATE(5642)] = 164693, - [SMALL_STATE(5643)] = 164701, - [SMALL_STATE(5644)] = 164709, - [SMALL_STATE(5645)] = 164717, - [SMALL_STATE(5646)] = 164725, - [SMALL_STATE(5647)] = 164733, - [SMALL_STATE(5648)] = 164741, - [SMALL_STATE(5649)] = 164749, - [SMALL_STATE(5650)] = 164757, - [SMALL_STATE(5651)] = 164765, - [SMALL_STATE(5652)] = 164773, - [SMALL_STATE(5653)] = 164781, - [SMALL_STATE(5654)] = 164789, - [SMALL_STATE(5655)] = 164797, - [SMALL_STATE(5656)] = 164805, - [SMALL_STATE(5657)] = 164813, - [SMALL_STATE(5658)] = 164821, - [SMALL_STATE(5659)] = 164829, - [SMALL_STATE(5660)] = 164837, - [SMALL_STATE(5661)] = 164845, - [SMALL_STATE(5662)] = 164853, - [SMALL_STATE(5663)] = 164861, - [SMALL_STATE(5664)] = 164869, - [SMALL_STATE(5665)] = 164877, - [SMALL_STATE(5666)] = 164885, - [SMALL_STATE(5667)] = 164893, - [SMALL_STATE(5668)] = 164901, - [SMALL_STATE(5669)] = 164911, - [SMALL_STATE(5670)] = 164921, - [SMALL_STATE(5671)] = 164929, - [SMALL_STATE(5672)] = 164939, - [SMALL_STATE(5673)] = 164947, - [SMALL_STATE(5674)] = 164955, - [SMALL_STATE(5675)] = 164963, - [SMALL_STATE(5676)] = 164971, - [SMALL_STATE(5677)] = 164979, - [SMALL_STATE(5678)] = 164987, - [SMALL_STATE(5679)] = 164995, - [SMALL_STATE(5680)] = 165003, - [SMALL_STATE(5681)] = 165011, - [SMALL_STATE(5682)] = 165019, - [SMALL_STATE(5683)] = 165027, - [SMALL_STATE(5684)] = 165035, - [SMALL_STATE(5685)] = 165043, - [SMALL_STATE(5686)] = 165051, - [SMALL_STATE(5687)] = 165059, - [SMALL_STATE(5688)] = 165067, - [SMALL_STATE(5689)] = 165075, - [SMALL_STATE(5690)] = 165083, - [SMALL_STATE(5691)] = 165091, - [SMALL_STATE(5692)] = 165099, - [SMALL_STATE(5693)] = 165107, - [SMALL_STATE(5694)] = 165115, - [SMALL_STATE(5695)] = 165123, - [SMALL_STATE(5696)] = 165131, - [SMALL_STATE(5697)] = 165139, - [SMALL_STATE(5698)] = 165147, - [SMALL_STATE(5699)] = 165155, - [SMALL_STATE(5700)] = 165163, - [SMALL_STATE(5701)] = 165171, - [SMALL_STATE(5702)] = 165179, - [SMALL_STATE(5703)] = 165187, - [SMALL_STATE(5704)] = 165195, - [SMALL_STATE(5705)] = 165203, - [SMALL_STATE(5706)] = 165211, - [SMALL_STATE(5707)] = 165219, - [SMALL_STATE(5708)] = 165227, - [SMALL_STATE(5709)] = 165235, - [SMALL_STATE(5710)] = 165243, - [SMALL_STATE(5711)] = 165251, - [SMALL_STATE(5712)] = 165259, - [SMALL_STATE(5713)] = 165267, - [SMALL_STATE(5714)] = 165275, - [SMALL_STATE(5715)] = 165283, - [SMALL_STATE(5716)] = 165291, - [SMALL_STATE(5717)] = 165299, - [SMALL_STATE(5718)] = 165307, - [SMALL_STATE(5719)] = 165315, - [SMALL_STATE(5720)] = 165323, - [SMALL_STATE(5721)] = 165331, - [SMALL_STATE(5722)] = 165339, - [SMALL_STATE(5723)] = 165347, - [SMALL_STATE(5724)] = 165355, - [SMALL_STATE(5725)] = 165363, - [SMALL_STATE(5726)] = 165371, - [SMALL_STATE(5727)] = 165379, - [SMALL_STATE(5728)] = 165387, - [SMALL_STATE(5729)] = 165395, - [SMALL_STATE(5730)] = 165403, - [SMALL_STATE(5731)] = 165411, - [SMALL_STATE(5732)] = 165419, - [SMALL_STATE(5733)] = 165427, - [SMALL_STATE(5734)] = 165435, - [SMALL_STATE(5735)] = 165443, - [SMALL_STATE(5736)] = 165451, - [SMALL_STATE(5737)] = 165459, - [SMALL_STATE(5738)] = 165467, - [SMALL_STATE(5739)] = 165475, - [SMALL_STATE(5740)] = 165483, - [SMALL_STATE(5741)] = 165491, - [SMALL_STATE(5742)] = 165499, - [SMALL_STATE(5743)] = 165507, - [SMALL_STATE(5744)] = 165515, - [SMALL_STATE(5745)] = 165523, - [SMALL_STATE(5746)] = 165531, - [SMALL_STATE(5747)] = 165539, - [SMALL_STATE(5748)] = 165547, - [SMALL_STATE(5749)] = 165555, - [SMALL_STATE(5750)] = 165563, - [SMALL_STATE(5751)] = 165571, - [SMALL_STATE(5752)] = 165579, - [SMALL_STATE(5753)] = 165587, - [SMALL_STATE(5754)] = 165595, - [SMALL_STATE(5755)] = 165603, - [SMALL_STATE(5756)] = 165611, - [SMALL_STATE(5757)] = 165619, - [SMALL_STATE(5758)] = 165627, - [SMALL_STATE(5759)] = 165635, - [SMALL_STATE(5760)] = 165643, - [SMALL_STATE(5761)] = 165651, - [SMALL_STATE(5762)] = 165659, - [SMALL_STATE(5763)] = 165667, - [SMALL_STATE(5764)] = 165675, - [SMALL_STATE(5765)] = 165683, - [SMALL_STATE(5766)] = 165691, - [SMALL_STATE(5767)] = 165699, - [SMALL_STATE(5768)] = 165707, - [SMALL_STATE(5769)] = 165715, - [SMALL_STATE(5770)] = 165723, - [SMALL_STATE(5771)] = 165731, - [SMALL_STATE(5772)] = 165739, - [SMALL_STATE(5773)] = 165747, - [SMALL_STATE(5774)] = 165755, - [SMALL_STATE(5775)] = 165763, - [SMALL_STATE(5776)] = 165771, - [SMALL_STATE(5777)] = 165779, - [SMALL_STATE(5778)] = 165787, - [SMALL_STATE(5779)] = 165795, - [SMALL_STATE(5780)] = 165803, - [SMALL_STATE(5781)] = 165811, - [SMALL_STATE(5782)] = 165819, - [SMALL_STATE(5783)] = 165827, - [SMALL_STATE(5784)] = 165835, - [SMALL_STATE(5785)] = 165843, - [SMALL_STATE(5786)] = 165851, - [SMALL_STATE(5787)] = 165859, - [SMALL_STATE(5788)] = 165867, - [SMALL_STATE(5789)] = 165875, - [SMALL_STATE(5790)] = 165883, - [SMALL_STATE(5791)] = 165891, - [SMALL_STATE(5792)] = 165899, - [SMALL_STATE(5793)] = 165907, - [SMALL_STATE(5794)] = 165915, - [SMALL_STATE(5795)] = 165923, - [SMALL_STATE(5796)] = 165931, - [SMALL_STATE(5797)] = 165939, - [SMALL_STATE(5798)] = 165947, - [SMALL_STATE(5799)] = 165955, - [SMALL_STATE(5800)] = 165963, - [SMALL_STATE(5801)] = 165971, - [SMALL_STATE(5802)] = 165979, - [SMALL_STATE(5803)] = 165987, - [SMALL_STATE(5804)] = 165995, - [SMALL_STATE(5805)] = 166003, - [SMALL_STATE(5806)] = 166011, - [SMALL_STATE(5807)] = 166019, - [SMALL_STATE(5808)] = 166027, - [SMALL_STATE(5809)] = 166035, - [SMALL_STATE(5810)] = 166043, - [SMALL_STATE(5811)] = 166051, - [SMALL_STATE(5812)] = 166059, - [SMALL_STATE(5813)] = 166067, - [SMALL_STATE(5814)] = 166075, - [SMALL_STATE(5815)] = 166083, - [SMALL_STATE(5816)] = 166091, - [SMALL_STATE(5817)] = 166099, - [SMALL_STATE(5818)] = 166107, - [SMALL_STATE(5819)] = 166115, - [SMALL_STATE(5820)] = 166123, - [SMALL_STATE(5821)] = 166131, - [SMALL_STATE(5822)] = 166139, - [SMALL_STATE(5823)] = 166147, - [SMALL_STATE(5824)] = 166155, - [SMALL_STATE(5825)] = 166163, - [SMALL_STATE(5826)] = 166171, - [SMALL_STATE(5827)] = 166179, - [SMALL_STATE(5828)] = 166187, - [SMALL_STATE(5829)] = 166195, - [SMALL_STATE(5830)] = 166203, - [SMALL_STATE(5831)] = 166211, - [SMALL_STATE(5832)] = 166219, - [SMALL_STATE(5833)] = 166227, - [SMALL_STATE(5834)] = 166235, - [SMALL_STATE(5835)] = 166245, - [SMALL_STATE(5836)] = 166253, - [SMALL_STATE(5837)] = 166261, - [SMALL_STATE(5838)] = 166269, - [SMALL_STATE(5839)] = 166277, - [SMALL_STATE(5840)] = 166285, - [SMALL_STATE(5841)] = 166293, - [SMALL_STATE(5842)] = 166301, - [SMALL_STATE(5843)] = 166309, - [SMALL_STATE(5844)] = 166317, - [SMALL_STATE(5845)] = 166325, - [SMALL_STATE(5846)] = 166333, - [SMALL_STATE(5847)] = 166341, - [SMALL_STATE(5848)] = 166349, - [SMALL_STATE(5849)] = 166357, - [SMALL_STATE(5850)] = 166365, - [SMALL_STATE(5851)] = 166373, - [SMALL_STATE(5852)] = 166381, - [SMALL_STATE(5853)] = 166389, - [SMALL_STATE(5854)] = 166397, - [SMALL_STATE(5855)] = 166405, - [SMALL_STATE(5856)] = 166413, - [SMALL_STATE(5857)] = 166421, - [SMALL_STATE(5858)] = 166429, - [SMALL_STATE(5859)] = 166437, - [SMALL_STATE(5860)] = 166445, - [SMALL_STATE(5861)] = 166453, - [SMALL_STATE(5862)] = 166461, - [SMALL_STATE(5863)] = 166469, - [SMALL_STATE(5864)] = 166477, - [SMALL_STATE(5865)] = 166485, - [SMALL_STATE(5866)] = 166493, - [SMALL_STATE(5867)] = 166501, - [SMALL_STATE(5868)] = 166509, - [SMALL_STATE(5869)] = 166517, - [SMALL_STATE(5870)] = 166525, - [SMALL_STATE(5871)] = 166533, - [SMALL_STATE(5872)] = 166541, - [SMALL_STATE(5873)] = 166549, - [SMALL_STATE(5874)] = 166557, - [SMALL_STATE(5875)] = 166565, - [SMALL_STATE(5876)] = 166573, - [SMALL_STATE(5877)] = 166581, - [SMALL_STATE(5878)] = 166589, - [SMALL_STATE(5879)] = 166597, - [SMALL_STATE(5880)] = 166605, - [SMALL_STATE(5881)] = 166613, + [SMALL_STATE(1254)] = 5216, + [SMALL_STATE(1255)] = 5306, + [SMALL_STATE(1256)] = 5392, + [SMALL_STATE(1257)] = 5478, + [SMALL_STATE(1258)] = 5564, + [SMALL_STATE(1259)] = 5654, + [SMALL_STATE(1260)] = 5740, + [SMALL_STATE(1261)] = 5818, + [SMALL_STATE(1262)] = 5908, + [SMALL_STATE(1263)] = 5988, + [SMALL_STATE(1264)] = 6078, + [SMALL_STATE(1265)] = 6170, + [SMALL_STATE(1266)] = 6248, + [SMALL_STATE(1267)] = 6334, + [SMALL_STATE(1268)] = 6420, + [SMALL_STATE(1269)] = 6506, + [SMALL_STATE(1270)] = 6580, + [SMALL_STATE(1271)] = 6666, + [SMALL_STATE(1272)] = 6752, + [SMALL_STATE(1273)] = 6820, + [SMALL_STATE(1274)] = 6898, + [SMALL_STATE(1275)] = 6984, + [SMALL_STATE(1276)] = 7076, + [SMALL_STATE(1277)] = 7156, + [SMALL_STATE(1278)] = 7229, + [SMALL_STATE(1279)] = 7304, + [SMALL_STATE(1280)] = 7393, + [SMALL_STATE(1281)] = 7480, + [SMALL_STATE(1282)] = 7569, + [SMALL_STATE(1283)] = 7638, + [SMALL_STATE(1284)] = 7727, + [SMALL_STATE(1285)] = 7796, + [SMALL_STATE(1286)] = 7873, + [SMALL_STATE(1287)] = 7956, + [SMALL_STATE(1288)] = 8023, + [SMALL_STATE(1289)] = 8090, + [SMALL_STATE(1290)] = 8175, + [SMALL_STATE(1291)] = 8244, + [SMALL_STATE(1292)] = 8313, + [SMALL_STATE(1293)] = 8390, + [SMALL_STATE(1294)] = 8479, + [SMALL_STATE(1295)] = 8564, + [SMALL_STATE(1296)] = 8639, + [SMALL_STATE(1297)] = 8728, + [SMALL_STATE(1298)] = 8803, + [SMALL_STATE(1299)] = 8892, + [SMALL_STATE(1300)] = 8965, + [SMALL_STATE(1301)] = 9044, + [SMALL_STATE(1302)] = 9117, + [SMALL_STATE(1303)] = 9202, + [SMALL_STATE(1304)] = 9281, + [SMALL_STATE(1305)] = 9354, + [SMALL_STATE(1306)] = 9437, + [SMALL_STATE(1307)] = 9515, + [SMALL_STATE(1308)] = 9587, + [SMALL_STATE(1309)] = 9659, + [SMALL_STATE(1310)] = 9743, + [SMALL_STATE(1311)] = 9809, + [SMALL_STATE(1312)] = 9875, + [SMALL_STATE(1313)] = 9947, + [SMALL_STATE(1314)] = 10019, + [SMALL_STATE(1315)] = 10095, + [SMALL_STATE(1316)] = 10169, + [SMALL_STATE(1317)] = 10243, + [SMALL_STATE(1318)] = 10309, + [SMALL_STATE(1319)] = 10389, + [SMALL_STATE(1320)] = 10465, + [SMALL_STATE(1321)] = 10537, + [SMALL_STATE(1322)] = 10603, + [SMALL_STATE(1323)] = 10673, + [SMALL_STATE(1324)] = 10757, + [SMALL_STATE(1325)] = 10829, + [SMALL_STATE(1326)] = 10895, + [SMALL_STATE(1327)] = 10969, + [SMALL_STATE(1328)] = 11057, + [SMALL_STATE(1329)] = 11135, + [SMALL_STATE(1330)] = 11207, + [SMALL_STATE(1331)] = 11273, + [SMALL_STATE(1332)] = 11339, + [SMALL_STATE(1333)] = 11405, + [SMALL_STATE(1334)] = 11487, + [SMALL_STATE(1335)] = 11557, + [SMALL_STATE(1336)] = 11623, + [SMALL_STATE(1337)] = 11707, + [SMALL_STATE(1338)] = 11779, + [SMALL_STATE(1339)] = 11859, + [SMALL_STATE(1340)] = 11927, + [SMALL_STATE(1341)] = 12011, + [SMALL_STATE(1342)] = 12087, + [SMALL_STATE(1343)] = 12161, + [SMALL_STATE(1344)] = 12239, + [SMALL_STATE(1345)] = 12305, + [SMALL_STATE(1346)] = 12373, + [SMALL_STATE(1347)] = 12461, + [SMALL_STATE(1348)] = 12527, + [SMALL_STATE(1349)] = 12593, + [SMALL_STATE(1350)] = 12664, + [SMALL_STATE(1351)] = 12731, + [SMALL_STATE(1352)] = 12804, + [SMALL_STATE(1353)] = 12877, + [SMALL_STATE(1354)] = 12948, + [SMALL_STATE(1355)] = 13017, + [SMALL_STATE(1356)] = 13088, + [SMALL_STATE(1357)] = 13163, + [SMALL_STATE(1358)] = 13246, + [SMALL_STATE(1359)] = 13319, + [SMALL_STATE(1360)] = 13392, + [SMALL_STATE(1361)] = 13463, + [SMALL_STATE(1362)] = 13540, + [SMALL_STATE(1363)] = 13609, + [SMALL_STATE(1364)] = 13682, + [SMALL_STATE(1365)] = 13751, + [SMALL_STATE(1366)] = 13826, + [SMALL_STATE(1367)] = 13897, + [SMALL_STATE(1368)] = 13964, + [SMALL_STATE(1369)] = 14035, + [SMALL_STATE(1370)] = 14104, + [SMALL_STATE(1371)] = 14181, + [SMALL_STATE(1372)] = 14254, + [SMALL_STATE(1373)] = 14333, + [SMALL_STATE(1374)] = 14410, + [SMALL_STATE(1375)] = 14481, + [SMALL_STATE(1376)] = 14552, + [SMALL_STATE(1377)] = 14625, + [SMALL_STATE(1378)] = 14702, + [SMALL_STATE(1379)] = 14779, + [SMALL_STATE(1380)] = 14851, + [SMALL_STATE(1381)] = 14971, + [SMALL_STATE(1382)] = 15043, + [SMALL_STATE(1383)] = 15163, + [SMALL_STATE(1384)] = 15233, + [SMALL_STATE(1385)] = 15303, + [SMALL_STATE(1386)] = 15373, + [SMALL_STATE(1387)] = 15493, + [SMALL_STATE(1388)] = 15561, + [SMALL_STATE(1389)] = 15635, + [SMALL_STATE(1390)] = 15755, + [SMALL_STATE(1391)] = 15829, + [SMALL_STATE(1392)] = 15903, + [SMALL_STATE(1393)] = 15977, + [SMALL_STATE(1394)] = 16053, + [SMALL_STATE(1395)] = 16173, + [SMALL_STATE(1396)] = 16293, + [SMALL_STATE(1397)] = 16363, + [SMALL_STATE(1398)] = 16429, + [SMALL_STATE(1399)] = 16497, + [SMALL_STATE(1400)] = 16569, + [SMALL_STATE(1401)] = 16639, + [SMALL_STATE(1402)] = 16705, + [SMALL_STATE(1403)] = 16774, + [SMALL_STATE(1404)] = 16843, + [SMALL_STATE(1405)] = 16912, + [SMALL_STATE(1406)] = 16981, + [SMALL_STATE(1407)] = 17050, + [SMALL_STATE(1408)] = 17119, + [SMALL_STATE(1409)] = 17188, + [SMALL_STATE(1410)] = 17259, + [SMALL_STATE(1411)] = 17326, + [SMALL_STATE(1412)] = 17399, + [SMALL_STATE(1413)] = 17468, + [SMALL_STATE(1414)] = 17541, + [SMALL_STATE(1415)] = 17612, + [SMALL_STATE(1416)] = 17681, + [SMALL_STATE(1417)] = 17750, + [SMALL_STATE(1418)] = 17819, + [SMALL_STATE(1419)] = 17888, + [SMALL_STATE(1420)] = 18004, + [SMALL_STATE(1421)] = 18072, + [SMALL_STATE(1422)] = 18140, + [SMALL_STATE(1423)] = 18208, + [SMALL_STATE(1424)] = 18324, + [SMALL_STATE(1425)] = 18440, + [SMALL_STATE(1426)] = 18508, + [SMALL_STATE(1427)] = 18624, + [SMALL_STATE(1428)] = 18692, + [SMALL_STATE(1429)] = 18760, + [SMALL_STATE(1430)] = 18828, + [SMALL_STATE(1431)] = 18896, + [SMALL_STATE(1432)] = 18964, + [SMALL_STATE(1433)] = 19080, + [SMALL_STATE(1434)] = 19196, + [SMALL_STATE(1435)] = 19264, + [SMALL_STATE(1436)] = 19332, + [SMALL_STATE(1437)] = 19448, + [SMALL_STATE(1438)] = 19564, + [SMALL_STATE(1439)] = 19632, + [SMALL_STATE(1440)] = 19748, + [SMALL_STATE(1441)] = 19816, + [SMALL_STATE(1442)] = 19932, + [SMALL_STATE(1443)] = 20048, + [SMALL_STATE(1444)] = 20164, + [SMALL_STATE(1445)] = 20232, + [SMALL_STATE(1446)] = 20300, + [SMALL_STATE(1447)] = 20368, + [SMALL_STATE(1448)] = 20438, + [SMALL_STATE(1449)] = 20506, + [SMALL_STATE(1450)] = 20574, + [SMALL_STATE(1451)] = 20690, + [SMALL_STATE(1452)] = 20758, + [SMALL_STATE(1453)] = 20826, + [SMALL_STATE(1454)] = 20894, + [SMALL_STATE(1455)] = 21010, + [SMALL_STATE(1456)] = 21126, + [SMALL_STATE(1457)] = 21192, + [SMALL_STATE(1458)] = 21258, + [SMALL_STATE(1459)] = 21326, + [SMALL_STATE(1460)] = 21392, + [SMALL_STATE(1461)] = 21508, + [SMALL_STATE(1462)] = 21576, + [SMALL_STATE(1463)] = 21692, + [SMALL_STATE(1464)] = 21808, + [SMALL_STATE(1465)] = 21873, + [SMALL_STATE(1466)] = 21938, + [SMALL_STATE(1467)] = 22003, + [SMALL_STATE(1468)] = 22068, + [SMALL_STATE(1469)] = 22133, + [SMALL_STATE(1470)] = 22198, + [SMALL_STATE(1471)] = 22263, + [SMALL_STATE(1472)] = 22328, + [SMALL_STATE(1473)] = 22393, + [SMALL_STATE(1474)] = 22458, + [SMALL_STATE(1475)] = 22570, + [SMALL_STATE(1476)] = 22682, + [SMALL_STATE(1477)] = 22794, + [SMALL_STATE(1478)] = 22906, + [SMALL_STATE(1479)] = 23018, + [SMALL_STATE(1480)] = 23130, + [SMALL_STATE(1481)] = 23242, + [SMALL_STATE(1482)] = 23361, + [SMALL_STATE(1483)] = 23472, + [SMALL_STATE(1484)] = 23583, + [SMALL_STATE(1485)] = 23694, + [SMALL_STATE(1486)] = 23805, + [SMALL_STATE(1487)] = 23924, + [SMALL_STATE(1488)] = 24043, + [SMALL_STATE(1489)] = 24162, + [SMALL_STATE(1490)] = 24273, + [SMALL_STATE(1491)] = 24384, + [SMALL_STATE(1492)] = 24495, + [SMALL_STATE(1493)] = 24606, + [SMALL_STATE(1494)] = 24725, + [SMALL_STATE(1495)] = 24836, + [SMALL_STATE(1496)] = 24947, + [SMALL_STATE(1497)] = 25058, + [SMALL_STATE(1498)] = 25160, + [SMALL_STATE(1499)] = 25262, + [SMALL_STATE(1500)] = 25364, + [SMALL_STATE(1501)] = 25466, + [SMALL_STATE(1502)] = 25544, + [SMALL_STATE(1503)] = 25646, + [SMALL_STATE(1504)] = 25748, + [SMALL_STATE(1505)] = 25815, + [SMALL_STATE(1506)] = 25880, + [SMALL_STATE(1507)] = 25947, + [SMALL_STATE(1508)] = 26056, + [SMALL_STATE(1509)] = 26113, + [SMALL_STATE(1510)] = 26180, + [SMALL_STATE(1511)] = 26291, + [SMALL_STATE(1512)] = 26348, + [SMALL_STATE(1513)] = 26410, + [SMALL_STATE(1514)] = 26466, + [SMALL_STATE(1515)] = 26528, + [SMALL_STATE(1516)] = 26596, + [SMALL_STATE(1517)] = 26652, + [SMALL_STATE(1518)] = 26708, + [SMALL_STATE(1519)] = 26764, + [SMALL_STATE(1520)] = 26820, + [SMALL_STATE(1521)] = 26914, + [SMALL_STATE(1522)] = 26974, + [SMALL_STATE(1523)] = 27030, + [SMALL_STATE(1524)] = 27088, + [SMALL_STATE(1525)] = 27146, + [SMALL_STATE(1526)] = 27204, + [SMALL_STATE(1527)] = 27260, + [SMALL_STATE(1528)] = 27320, + [SMALL_STATE(1529)] = 27377, + [SMALL_STATE(1530)] = 27432, + [SMALL_STATE(1531)] = 27487, + [SMALL_STATE(1532)] = 27550, + [SMALL_STATE(1533)] = 27605, + [SMALL_STATE(1534)] = 27660, + [SMALL_STATE(1535)] = 27717, + [SMALL_STATE(1536)] = 27780, + [SMALL_STATE(1537)] = 27835, + [SMALL_STATE(1538)] = 27890, + [SMALL_STATE(1539)] = 27945, + [SMALL_STATE(1540)] = 28008, + [SMALL_STATE(1541)] = 28063, + [SMALL_STATE(1542)] = 28118, + [SMALL_STATE(1543)] = 28173, + [SMALL_STATE(1544)] = 28228, + [SMALL_STATE(1545)] = 28283, + [SMALL_STATE(1546)] = 28338, + [SMALL_STATE(1547)] = 28393, + [SMALL_STATE(1548)] = 28448, + [SMALL_STATE(1549)] = 28503, + [SMALL_STATE(1550)] = 28562, + [SMALL_STATE(1551)] = 28619, + [SMALL_STATE(1552)] = 28674, + [SMALL_STATE(1553)] = 28731, + [SMALL_STATE(1554)] = 28786, + [SMALL_STATE(1555)] = 28843, + [SMALL_STATE(1556)] = 28898, + [SMALL_STATE(1557)] = 28953, + [SMALL_STATE(1558)] = 29014, + [SMALL_STATE(1559)] = 29071, + [SMALL_STATE(1560)] = 29126, + [SMALL_STATE(1561)] = 29181, + [SMALL_STATE(1562)] = 29242, + [SMALL_STATE(1563)] = 29299, + [SMALL_STATE(1564)] = 29354, + [SMALL_STATE(1565)] = 29409, + [SMALL_STATE(1566)] = 29464, + [SMALL_STATE(1567)] = 29519, + [SMALL_STATE(1568)] = 29574, + [SMALL_STATE(1569)] = 29629, + [SMALL_STATE(1570)] = 29684, + [SMALL_STATE(1571)] = 29739, + [SMALL_STATE(1572)] = 29794, + [SMALL_STATE(1573)] = 29849, + [SMALL_STATE(1574)] = 29904, + [SMALL_STATE(1575)] = 29961, + [SMALL_STATE(1576)] = 30016, + [SMALL_STATE(1577)] = 30071, + [SMALL_STATE(1578)] = 30126, + [SMALL_STATE(1579)] = 30181, + [SMALL_STATE(1580)] = 30238, + [SMALL_STATE(1581)] = 30293, + [SMALL_STATE(1582)] = 30354, + [SMALL_STATE(1583)] = 30409, + [SMALL_STATE(1584)] = 30464, + [SMALL_STATE(1585)] = 30519, + [SMALL_STATE(1586)] = 30574, + [SMALL_STATE(1587)] = 30629, + [SMALL_STATE(1588)] = 30684, + [SMALL_STATE(1589)] = 30743, + [SMALL_STATE(1590)] = 30798, + [SMALL_STATE(1591)] = 30853, + [SMALL_STATE(1592)] = 30908, + [SMALL_STATE(1593)] = 30969, + [SMALL_STATE(1594)] = 31026, + [SMALL_STATE(1595)] = 31081, + [SMALL_STATE(1596)] = 31138, + [SMALL_STATE(1597)] = 31193, + [SMALL_STATE(1598)] = 31248, + [SMALL_STATE(1599)] = 31303, + [SMALL_STATE(1600)] = 31358, + [SMALL_STATE(1601)] = 31413, + [SMALL_STATE(1602)] = 31468, + [SMALL_STATE(1603)] = 31523, + [SMALL_STATE(1604)] = 31578, + [SMALL_STATE(1605)] = 31633, + [SMALL_STATE(1606)] = 31694, + [SMALL_STATE(1607)] = 31755, + [SMALL_STATE(1608)] = 31810, + [SMALL_STATE(1609)] = 31871, + [SMALL_STATE(1610)] = 31926, + [SMALL_STATE(1611)] = 31981, + [SMALL_STATE(1612)] = 32036, + [SMALL_STATE(1613)] = 32095, + [SMALL_STATE(1614)] = 32150, + [SMALL_STATE(1615)] = 32205, + [SMALL_STATE(1616)] = 32266, + [SMALL_STATE(1617)] = 32327, + [SMALL_STATE(1618)] = 32386, + [SMALL_STATE(1619)] = 32441, + [SMALL_STATE(1620)] = 32502, + [SMALL_STATE(1621)] = 32557, + [SMALL_STATE(1622)] = 32612, + [SMALL_STATE(1623)] = 32667, + [SMALL_STATE(1624)] = 32722, + [SMALL_STATE(1625)] = 32779, + [SMALL_STATE(1626)] = 32834, + [SMALL_STATE(1627)] = 32889, + [SMALL_STATE(1628)] = 32948, + [SMALL_STATE(1629)] = 33003, + [SMALL_STATE(1630)] = 33058, + [SMALL_STATE(1631)] = 33115, + [SMALL_STATE(1632)] = 33170, + [SMALL_STATE(1633)] = 33225, + [SMALL_STATE(1634)] = 33284, + [SMALL_STATE(1635)] = 33345, + [SMALL_STATE(1636)] = 33400, + [SMALL_STATE(1637)] = 33455, + [SMALL_STATE(1638)] = 33510, + [SMALL_STATE(1639)] = 33565, + [SMALL_STATE(1640)] = 33620, + [SMALL_STATE(1641)] = 33675, + [SMALL_STATE(1642)] = 33730, + [SMALL_STATE(1643)] = 33785, + [SMALL_STATE(1644)] = 33846, + [SMALL_STATE(1645)] = 33903, + [SMALL_STATE(1646)] = 33964, + [SMALL_STATE(1647)] = 34019, + [SMALL_STATE(1648)] = 34078, + [SMALL_STATE(1649)] = 34137, + [SMALL_STATE(1650)] = 34198, + [SMALL_STATE(1651)] = 34253, + [SMALL_STATE(1652)] = 34309, + [SMALL_STATE(1653)] = 34363, + [SMALL_STATE(1654)] = 34417, + [SMALL_STATE(1655)] = 34471, + [SMALL_STATE(1656)] = 34525, + [SMALL_STATE(1657)] = 34579, + [SMALL_STATE(1658)] = 34633, + [SMALL_STATE(1659)] = 34687, + [SMALL_STATE(1660)] = 34741, + [SMALL_STATE(1661)] = 34795, + [SMALL_STATE(1662)] = 34849, + [SMALL_STATE(1663)] = 34903, + [SMALL_STATE(1664)] = 34957, + [SMALL_STATE(1665)] = 35011, + [SMALL_STATE(1666)] = 35065, + [SMALL_STATE(1667)] = 35119, + [SMALL_STATE(1668)] = 35173, + [SMALL_STATE(1669)] = 35227, + [SMALL_STATE(1670)] = 35281, + [SMALL_STATE(1671)] = 35341, + [SMALL_STATE(1672)] = 35395, + [SMALL_STATE(1673)] = 35449, + [SMALL_STATE(1674)] = 35503, + [SMALL_STATE(1675)] = 35557, + [SMALL_STATE(1676)] = 35611, + [SMALL_STATE(1677)] = 35665, + [SMALL_STATE(1678)] = 35719, + [SMALL_STATE(1679)] = 35773, + [SMALL_STATE(1680)] = 35827, + [SMALL_STATE(1681)] = 35881, + [SMALL_STATE(1682)] = 35935, + [SMALL_STATE(1683)] = 35989, + [SMALL_STATE(1684)] = 36043, + [SMALL_STATE(1685)] = 36097, + [SMALL_STATE(1686)] = 36151, + [SMALL_STATE(1687)] = 36205, + [SMALL_STATE(1688)] = 36259, + [SMALL_STATE(1689)] = 36313, + [SMALL_STATE(1690)] = 36367, + [SMALL_STATE(1691)] = 36421, + [SMALL_STATE(1692)] = 36475, + [SMALL_STATE(1693)] = 36529, + [SMALL_STATE(1694)] = 36583, + [SMALL_STATE(1695)] = 36637, + [SMALL_STATE(1696)] = 36691, + [SMALL_STATE(1697)] = 36765, + [SMALL_STATE(1698)] = 36819, + [SMALL_STATE(1699)] = 36873, + [SMALL_STATE(1700)] = 36927, + [SMALL_STATE(1701)] = 36981, + [SMALL_STATE(1702)] = 37035, + [SMALL_STATE(1703)] = 37089, + [SMALL_STATE(1704)] = 37143, + [SMALL_STATE(1705)] = 37197, + [SMALL_STATE(1706)] = 37253, + [SMALL_STATE(1707)] = 37309, + [SMALL_STATE(1708)] = 37369, + [SMALL_STATE(1709)] = 37423, + [SMALL_STATE(1710)] = 37477, + [SMALL_STATE(1711)] = 37537, + [SMALL_STATE(1712)] = 37591, + [SMALL_STATE(1713)] = 37645, + [SMALL_STATE(1714)] = 37699, + [SMALL_STATE(1715)] = 37753, + [SMALL_STATE(1716)] = 37807, + [SMALL_STATE(1717)] = 37861, + [SMALL_STATE(1718)] = 37947, + [SMALL_STATE(1719)] = 38033, + [SMALL_STATE(1720)] = 38119, + [SMALL_STATE(1721)] = 38205, + [SMALL_STATE(1722)] = 38291, + [SMALL_STATE(1723)] = 38368, + [SMALL_STATE(1724)] = 38425, + [SMALL_STATE(1725)] = 38480, + [SMALL_STATE(1726)] = 38561, + [SMALL_STATE(1727)] = 38618, + [SMALL_STATE(1728)] = 38671, + [SMALL_STATE(1729)] = 38750, + [SMALL_STATE(1730)] = 38805, + [SMALL_STATE(1731)] = 38868, + [SMALL_STATE(1732)] = 38945, + [SMALL_STATE(1733)] = 39006, + [SMALL_STATE(1734)] = 39059, + [SMALL_STATE(1735)] = 39138, + [SMALL_STATE(1736)] = 39201, + [SMALL_STATE(1737)] = 39278, + [SMALL_STATE(1738)] = 39341, + [SMALL_STATE(1739)] = 39420, + [SMALL_STATE(1740)] = 39483, + [SMALL_STATE(1741)] = 39592, + [SMALL_STATE(1742)] = 39701, + [SMALL_STATE(1743)] = 39780, + [SMALL_STATE(1744)] = 39889, + [SMALL_STATE(1745)] = 39998, + [SMALL_STATE(1746)] = 40107, + [SMALL_STATE(1747)] = 40190, + [SMALL_STATE(1748)] = 40263, + [SMALL_STATE(1749)] = 40360, + [SMALL_STATE(1750)] = 40459, + [SMALL_STATE(1751)] = 40512, + [SMALL_STATE(1752)] = 40603, + [SMALL_STATE(1753)] = 40696, + [SMALL_STATE(1754)] = 40791, + [SMALL_STATE(1755)] = 40868, + [SMALL_STATE(1756)] = 40947, + [SMALL_STATE(1757)] = 41034, + [SMALL_STATE(1758)] = 41135, + [SMALL_STATE(1759)] = 41244, + [SMALL_STATE(1760)] = 41353, + [SMALL_STATE(1761)] = 41462, + [SMALL_STATE(1762)] = 41571, + [SMALL_STATE(1763)] = 41680, + [SMALL_STATE(1764)] = 41789, + [SMALL_STATE(1765)] = 41898, + [SMALL_STATE(1766)] = 42007, + [SMALL_STATE(1767)] = 42060, + [SMALL_STATE(1768)] = 42137, + [SMALL_STATE(1769)] = 42194, + [SMALL_STATE(1770)] = 42273, + [SMALL_STATE(1771)] = 42350, + [SMALL_STATE(1772)] = 42403, + [SMALL_STATE(1773)] = 42482, + [SMALL_STATE(1774)] = 42559, + [SMALL_STATE(1775)] = 42612, + [SMALL_STATE(1776)] = 42691, + [SMALL_STATE(1777)] = 42762, + [SMALL_STATE(1778)] = 42831, + [SMALL_STATE(1779)] = 42940, + [SMALL_STATE(1780)] = 43019, + [SMALL_STATE(1781)] = 43073, + [SMALL_STATE(1782)] = 43131, + [SMALL_STATE(1783)] = 43239, + [SMALL_STATE(1784)] = 43311, + [SMALL_STATE(1785)] = 43385, + [SMALL_STATE(1786)] = 43445, + [SMALL_STATE(1787)] = 43497, + [SMALL_STATE(1788)] = 43555, + [SMALL_STATE(1789)] = 43613, + [SMALL_STATE(1790)] = 43721, + [SMALL_STATE(1791)] = 43829, + [SMALL_STATE(1792)] = 43911, + [SMALL_STATE(1793)] = 43983, + [SMALL_STATE(1794)] = 44039, + [SMALL_STATE(1795)] = 44147, + [SMALL_STATE(1796)] = 44199, + [SMALL_STATE(1797)] = 44259, + [SMALL_STATE(1798)] = 44315, + [SMALL_STATE(1799)] = 44391, + [SMALL_STATE(1800)] = 44447, + [SMALL_STATE(1801)] = 44519, + [SMALL_STATE(1802)] = 44579, + [SMALL_STATE(1803)] = 44675, + [SMALL_STATE(1804)] = 44773, + [SMALL_STATE(1805)] = 44851, + [SMALL_STATE(1806)] = 44941, + [SMALL_STATE(1807)] = 45033, + [SMALL_STATE(1808)] = 45127, + [SMALL_STATE(1809)] = 45203, + [SMALL_STATE(1810)] = 45281, + [SMALL_STATE(1811)] = 45345, + [SMALL_STATE(1812)] = 45431, + [SMALL_STATE(1813)] = 45531, + [SMALL_STATE(1814)] = 45589, + [SMALL_STATE(1815)] = 45659, + [SMALL_STATE(1816)] = 45767, + [SMALL_STATE(1817)] = 45883, + [SMALL_STATE(1818)] = 45991, + [SMALL_STATE(1819)] = 46099, + [SMALL_STATE(1820)] = 46207, + [SMALL_STATE(1821)] = 46315, + [SMALL_STATE(1822)] = 46369, + [SMALL_STATE(1823)] = 46423, + [SMALL_STATE(1824)] = 46531, + [SMALL_STATE(1825)] = 46603, + [SMALL_STATE(1826)] = 46719, + [SMALL_STATE(1827)] = 46771, + [SMALL_STATE(1828)] = 46825, + [SMALL_STATE(1829)] = 46933, + [SMALL_STATE(1830)] = 47005, + [SMALL_STATE(1831)] = 47113, + [SMALL_STATE(1832)] = 47181, + [SMALL_STATE(1833)] = 47297, + [SMALL_STATE(1834)] = 47369, + [SMALL_STATE(1835)] = 47431, + [SMALL_STATE(1836)] = 47493, + [SMALL_STATE(1837)] = 47601, + [SMALL_STATE(1838)] = 47709, + [SMALL_STATE(1839)] = 47761, + [SMALL_STATE(1840)] = 47869, + [SMALL_STATE(1841)] = 47977, + [SMALL_STATE(1842)] = 48085, + [SMALL_STATE(1843)] = 48167, + [SMALL_STATE(1844)] = 48239, + [SMALL_STATE(1845)] = 48335, + [SMALL_STATE(1846)] = 48433, + [SMALL_STATE(1847)] = 48511, + [SMALL_STATE(1848)] = 48601, + [SMALL_STATE(1849)] = 48693, + [SMALL_STATE(1850)] = 48787, + [SMALL_STATE(1851)] = 48863, + [SMALL_STATE(1852)] = 48941, + [SMALL_STATE(1853)] = 49027, + [SMALL_STATE(1854)] = 49127, + [SMALL_STATE(1855)] = 49235, + [SMALL_STATE(1856)] = 49343, + [SMALL_STATE(1857)] = 49451, + [SMALL_STATE(1858)] = 49559, + [SMALL_STATE(1859)] = 49667, + [SMALL_STATE(1860)] = 49775, + [SMALL_STATE(1861)] = 49883, + [SMALL_STATE(1862)] = 49991, + [SMALL_STATE(1863)] = 50053, + [SMALL_STATE(1864)] = 50115, + [SMALL_STATE(1865)] = 50231, + [SMALL_STATE(1866)] = 50287, + [SMALL_STATE(1867)] = 50395, + [SMALL_STATE(1868)] = 50455, + [SMALL_STATE(1869)] = 50563, + [SMALL_STATE(1870)] = 50637, + [SMALL_STATE(1871)] = 50715, + [SMALL_STATE(1872)] = 50767, + [SMALL_STATE(1873)] = 50875, + [SMALL_STATE(1874)] = 50945, + [SMALL_STATE(1875)] = 51021, + [SMALL_STATE(1876)] = 51129, + [SMALL_STATE(1877)] = 51197, + [SMALL_STATE(1878)] = 51280, + [SMALL_STATE(1879)] = 51331, + [SMALL_STATE(1880)] = 51382, + [SMALL_STATE(1881)] = 51433, + [SMALL_STATE(1882)] = 51484, + [SMALL_STATE(1883)] = 51535, + [SMALL_STATE(1884)] = 51592, + [SMALL_STATE(1885)] = 51643, + [SMALL_STATE(1886)] = 51698, + [SMALL_STATE(1887)] = 51805, + [SMALL_STATE(1888)] = 51912, + [SMALL_STATE(1889)] = 52019, + [SMALL_STATE(1890)] = 52102, + [SMALL_STATE(1891)] = 52209, + [SMALL_STATE(1892)] = 52290, + [SMALL_STATE(1893)] = 52363, + [SMALL_STATE(1894)] = 52474, + [SMALL_STATE(1895)] = 52583, + [SMALL_STATE(1896)] = 52654, + [SMALL_STATE(1897)] = 52749, + [SMALL_STATE(1898)] = 52846, + [SMALL_STATE(1899)] = 52923, + [SMALL_STATE(1900)] = 53012, + [SMALL_STATE(1901)] = 53103, + [SMALL_STATE(1902)] = 53196, + [SMALL_STATE(1903)] = 53307, + [SMALL_STATE(1904)] = 53382, + [SMALL_STATE(1905)] = 53459, + [SMALL_STATE(1906)] = 53570, + [SMALL_STATE(1907)] = 53655, + [SMALL_STATE(1908)] = 53708, + [SMALL_STATE(1909)] = 53807, + [SMALL_STATE(1910)] = 53860, + [SMALL_STATE(1911)] = 53917, + [SMALL_STATE(1912)] = 53970, + [SMALL_STATE(1913)] = 54021, + [SMALL_STATE(1914)] = 54128, + [SMALL_STATE(1915)] = 54235, + [SMALL_STATE(1916)] = 54288, + [SMALL_STATE(1917)] = 54339, + [SMALL_STATE(1918)] = 54422, + [SMALL_STATE(1919)] = 54473, + [SMALL_STATE(1920)] = 54580, + [SMALL_STATE(1921)] = 54637, + [SMALL_STATE(1922)] = 54696, + [SMALL_STATE(1923)] = 54763, + [SMALL_STATE(1924)] = 54838, + [SMALL_STATE(1925)] = 54945, + [SMALL_STATE(1926)] = 55002, + [SMALL_STATE(1927)] = 55059, + [SMALL_STATE(1928)] = 55166, + [SMALL_STATE(1929)] = 55219, + [SMALL_STATE(1930)] = 55288, + [SMALL_STATE(1931)] = 55395, + [SMALL_STATE(1932)] = 55446, + [SMALL_STATE(1933)] = 55553, + [SMALL_STATE(1934)] = 55606, + [SMALL_STATE(1935)] = 55665, + [SMALL_STATE(1936)] = 55724, + [SMALL_STATE(1937)] = 55783, + [SMALL_STATE(1938)] = 55838, + [SMALL_STATE(1939)] = 55889, + [SMALL_STATE(1940)] = 55940, + [SMALL_STATE(1941)] = 56051, + [SMALL_STATE(1942)] = 56108, + [SMALL_STATE(1943)] = 56165, + [SMALL_STATE(1944)] = 56276, + [SMALL_STATE(1945)] = 56387, + [SMALL_STATE(1946)] = 56498, + [SMALL_STATE(1947)] = 56605, + [SMALL_STATE(1948)] = 56688, + [SMALL_STATE(1949)] = 56743, + [SMALL_STATE(1950)] = 56806, + [SMALL_STATE(1951)] = 56869, + [SMALL_STATE(1952)] = 56922, + [SMALL_STATE(1953)] = 56975, + [SMALL_STATE(1954)] = 57058, + [SMALL_STATE(1955)] = 57123, + [SMALL_STATE(1956)] = 57188, + [SMALL_STATE(1957)] = 57245, + [SMALL_STATE(1958)] = 57302, + [SMALL_STATE(1959)] = 57359, + [SMALL_STATE(1960)] = 57466, + [SMALL_STATE(1961)] = 57535, + [SMALL_STATE(1962)] = 57588, + [SMALL_STATE(1963)] = 57661, + [SMALL_STATE(1964)] = 57712, + [SMALL_STATE(1965)] = 57763, + [SMALL_STATE(1966)] = 57814, + [SMALL_STATE(1967)] = 57865, + [SMALL_STATE(1968)] = 57916, + [SMALL_STATE(1969)] = 57989, + [SMALL_STATE(1970)] = 58058, + [SMALL_STATE(1971)] = 58109, + [SMALL_STATE(1972)] = 58182, + [SMALL_STATE(1973)] = 58251, + [SMALL_STATE(1974)] = 58302, + [SMALL_STATE(1975)] = 58355, + [SMALL_STATE(1976)] = 58406, + [SMALL_STATE(1977)] = 58467, + [SMALL_STATE(1978)] = 58520, + [SMALL_STATE(1979)] = 58571, + [SMALL_STATE(1980)] = 58630, + [SMALL_STATE(1981)] = 58687, + [SMALL_STATE(1982)] = 58742, + [SMALL_STATE(1983)] = 58799, + [SMALL_STATE(1984)] = 58852, + [SMALL_STATE(1985)] = 58903, + [SMALL_STATE(1986)] = 58954, + [SMALL_STATE(1987)] = 59005, + [SMALL_STATE(1988)] = 59058, + [SMALL_STATE(1989)] = 59109, + [SMALL_STATE(1990)] = 59160, + [SMALL_STATE(1991)] = 59213, + [SMALL_STATE(1992)] = 59264, + [SMALL_STATE(1993)] = 59321, + [SMALL_STATE(1994)] = 59372, + [SMALL_STATE(1995)] = 59423, + [SMALL_STATE(1996)] = 59474, + [SMALL_STATE(1997)] = 59525, + [SMALL_STATE(1998)] = 59576, + [SMALL_STATE(1999)] = 59627, + [SMALL_STATE(2000)] = 59680, + [SMALL_STATE(2001)] = 59731, + [SMALL_STATE(2002)] = 59786, + [SMALL_STATE(2003)] = 59849, + [SMALL_STATE(2004)] = 59912, + [SMALL_STATE(2005)] = 59963, + [SMALL_STATE(2006)] = 60072, + [SMALL_STATE(2007)] = 60125, + [SMALL_STATE(2008)] = 60176, + [SMALL_STATE(2009)] = 60227, + [SMALL_STATE(2010)] = 60278, + [SMALL_STATE(2011)] = 60329, + [SMALL_STATE(2012)] = 60380, + [SMALL_STATE(2013)] = 60431, + [SMALL_STATE(2014)] = 60482, + [SMALL_STATE(2015)] = 60555, + [SMALL_STATE(2016)] = 60606, + [SMALL_STATE(2017)] = 60657, + [SMALL_STATE(2018)] = 60708, + [SMALL_STATE(2019)] = 60759, + [SMALL_STATE(2020)] = 60814, + [SMALL_STATE(2021)] = 60877, + [SMALL_STATE(2022)] = 60928, + [SMALL_STATE(2023)] = 60979, + [SMALL_STATE(2024)] = 61030, + [SMALL_STATE(2025)] = 61081, + [SMALL_STATE(2026)] = 61144, + [SMALL_STATE(2027)] = 61195, + [SMALL_STATE(2028)] = 61258, + [SMALL_STATE(2029)] = 61331, + [SMALL_STATE(2030)] = 61382, + [SMALL_STATE(2031)] = 61435, + [SMALL_STATE(2032)] = 61486, + [SMALL_STATE(2033)] = 61537, + [SMALL_STATE(2034)] = 61588, + [SMALL_STATE(2035)] = 61651, + [SMALL_STATE(2036)] = 61714, + [SMALL_STATE(2037)] = 61771, + [SMALL_STATE(2038)] = 61822, + [SMALL_STATE(2039)] = 61873, + [SMALL_STATE(2040)] = 61924, + [SMALL_STATE(2041)] = 61981, + [SMALL_STATE(2042)] = 62088, + [SMALL_STATE(2043)] = 62145, + [SMALL_STATE(2044)] = 62202, + [SMALL_STATE(2045)] = 62255, + [SMALL_STATE(2046)] = 62308, + [SMALL_STATE(2047)] = 62367, + [SMALL_STATE(2048)] = 62418, + [SMALL_STATE(2049)] = 62469, + [SMALL_STATE(2050)] = 62520, + [SMALL_STATE(2051)] = 62571, + [SMALL_STATE(2052)] = 62622, + [SMALL_STATE(2053)] = 62673, + [SMALL_STATE(2054)] = 62724, + [SMALL_STATE(2055)] = 62775, + [SMALL_STATE(2056)] = 62826, + [SMALL_STATE(2057)] = 62877, + [SMALL_STATE(2058)] = 62928, + [SMALL_STATE(2059)] = 62979, + [SMALL_STATE(2060)] = 63030, + [SMALL_STATE(2061)] = 63081, + [SMALL_STATE(2062)] = 63132, + [SMALL_STATE(2063)] = 63183, + [SMALL_STATE(2064)] = 63234, + [SMALL_STATE(2065)] = 63287, + [SMALL_STATE(2066)] = 63360, + [SMALL_STATE(2067)] = 63429, + [SMALL_STATE(2068)] = 63480, + [SMALL_STATE(2069)] = 63549, + [SMALL_STATE(2070)] = 63600, + [SMALL_STATE(2071)] = 63671, + [SMALL_STATE(2072)] = 63744, + [SMALL_STATE(2073)] = 63795, + [SMALL_STATE(2074)] = 63846, + [SMALL_STATE(2075)] = 63899, + [SMALL_STATE(2076)] = 63982, + [SMALL_STATE(2077)] = 64033, + [SMALL_STATE(2078)] = 64084, + [SMALL_STATE(2079)] = 64135, + [SMALL_STATE(2080)] = 64186, + [SMALL_STATE(2081)] = 64247, + [SMALL_STATE(2082)] = 64354, + [SMALL_STATE(2083)] = 64461, + [SMALL_STATE(2084)] = 64568, + [SMALL_STATE(2085)] = 64675, + [SMALL_STATE(2086)] = 64782, + [SMALL_STATE(2087)] = 64863, + [SMALL_STATE(2088)] = 64934, + [SMALL_STATE(2089)] = 65029, + [SMALL_STATE(2090)] = 65126, + [SMALL_STATE(2091)] = 65203, + [SMALL_STATE(2092)] = 65292, + [SMALL_STATE(2093)] = 65383, + [SMALL_STATE(2094)] = 65476, + [SMALL_STATE(2095)] = 65551, + [SMALL_STATE(2096)] = 65628, + [SMALL_STATE(2097)] = 65713, + [SMALL_STATE(2098)] = 65812, + [SMALL_STATE(2099)] = 65919, + [SMALL_STATE(2100)] = 66026, + [SMALL_STATE(2101)] = 66133, + [SMALL_STATE(2102)] = 66240, + [SMALL_STATE(2103)] = 66347, + [SMALL_STATE(2104)] = 66454, + [SMALL_STATE(2105)] = 66561, + [SMALL_STATE(2106)] = 66668, + [SMALL_STATE(2107)] = 66737, + [SMALL_STATE(2108)] = 66812, + [SMALL_STATE(2109)] = 66919, + [SMALL_STATE(2110)] = 66986, + [SMALL_STATE(2111)] = 67037, + [SMALL_STATE(2112)] = 67101, + [SMALL_STATE(2113)] = 67161, + [SMALL_STATE(2114)] = 67221, + [SMALL_STATE(2115)] = 67285, + [SMALL_STATE(2116)] = 67343, + [SMALL_STATE(2117)] = 67401, + [SMALL_STATE(2118)] = 67463, + [SMALL_STATE(2119)] = 67525, + [SMALL_STATE(2120)] = 67587, + [SMALL_STATE(2121)] = 67649, + [SMALL_STATE(2122)] = 67759, + [SMALL_STATE(2123)] = 67821, + [SMALL_STATE(2124)] = 67883, + [SMALL_STATE(2125)] = 67993, + [SMALL_STATE(2126)] = 68047, + [SMALL_STATE(2127)] = 68157, + [SMALL_STATE(2128)] = 68211, + [SMALL_STATE(2129)] = 68265, + [SMALL_STATE(2130)] = 68319, + [SMALL_STATE(2131)] = 68369, + [SMALL_STATE(2132)] = 68429, + [SMALL_STATE(2133)] = 68535, + [SMALL_STATE(2134)] = 68641, + [SMALL_STATE(2135)] = 68691, + [SMALL_STATE(2136)] = 68797, + [SMALL_STATE(2137)] = 68903, + [SMALL_STATE(2138)] = 68969, + [SMALL_STATE(2139)] = 69033, + [SMALL_STATE(2140)] = 69139, + [SMALL_STATE(2141)] = 69245, + [SMALL_STATE(2142)] = 69325, + [SMALL_STATE(2143)] = 69435, + [SMALL_STATE(2144)] = 69505, + [SMALL_STATE(2145)] = 69615, + [SMALL_STATE(2146)] = 69709, + [SMALL_STATE(2147)] = 69805, + [SMALL_STATE(2148)] = 69881, + [SMALL_STATE(2149)] = 69969, + [SMALL_STATE(2150)] = 70059, + [SMALL_STATE(2151)] = 70151, + [SMALL_STATE(2152)] = 70225, + [SMALL_STATE(2153)] = 70301, + [SMALL_STATE(2154)] = 70385, + [SMALL_STATE(2155)] = 70483, + [SMALL_STATE(2156)] = 70589, + [SMALL_STATE(2157)] = 70695, + [SMALL_STATE(2158)] = 70761, + [SMALL_STATE(2159)] = 70867, + [SMALL_STATE(2160)] = 70973, + [SMALL_STATE(2161)] = 71079, + [SMALL_STATE(2162)] = 71185, + [SMALL_STATE(2163)] = 71291, + [SMALL_STATE(2164)] = 71345, + [SMALL_STATE(2165)] = 71399, + [SMALL_STATE(2166)] = 71453, + [SMALL_STATE(2167)] = 71563, + [SMALL_STATE(2168)] = 71669, + [SMALL_STATE(2169)] = 71723, + [SMALL_STATE(2170)] = 71797, + [SMALL_STATE(2171)] = 71851, + [SMALL_STATE(2172)] = 71915, + [SMALL_STATE(2173)] = 71991, + [SMALL_STATE(2174)] = 72043, + [SMALL_STATE(2175)] = 72153, + [SMALL_STATE(2176)] = 72213, + [SMALL_STATE(2177)] = 72269, + [SMALL_STATE(2178)] = 72333, + [SMALL_STATE(2179)] = 72399, + [SMALL_STATE(2180)] = 72465, + [SMALL_STATE(2181)] = 72517, + [SMALL_STATE(2182)] = 72569, + [SMALL_STATE(2183)] = 72623, + [SMALL_STATE(2184)] = 72729, + [SMALL_STATE(2185)] = 72781, + [SMALL_STATE(2186)] = 72833, + [SMALL_STATE(2187)] = 72887, + [SMALL_STATE(2188)] = 72941, + [SMALL_STATE(2189)] = 73051, + [SMALL_STATE(2190)] = 73101, + [SMALL_STATE(2191)] = 73153, + [SMALL_STATE(2192)] = 73205, + [SMALL_STATE(2193)] = 73259, + [SMALL_STATE(2194)] = 73309, + [SMALL_STATE(2195)] = 73361, + [SMALL_STATE(2196)] = 73411, + [SMALL_STATE(2197)] = 73475, + [SMALL_STATE(2198)] = 73525, + [SMALL_STATE(2199)] = 73575, + [SMALL_STATE(2200)] = 73629, + [SMALL_STATE(2201)] = 73679, + [SMALL_STATE(2202)] = 73729, + [SMALL_STATE(2203)] = 73787, + [SMALL_STATE(2204)] = 73851, + [SMALL_STATE(2205)] = 73901, + [SMALL_STATE(2206)] = 73967, + [SMALL_STATE(2207)] = 74017, + [SMALL_STATE(2208)] = 74067, + [SMALL_STATE(2209)] = 74177, + [SMALL_STATE(2210)] = 74229, + [SMALL_STATE(2211)] = 74279, + [SMALL_STATE(2212)] = 74329, + [SMALL_STATE(2213)] = 74439, + [SMALL_STATE(2214)] = 74497, + [SMALL_STATE(2215)] = 74571, + [SMALL_STATE(2216)] = 74635, + [SMALL_STATE(2217)] = 74701, + [SMALL_STATE(2218)] = 74775, + [SMALL_STATE(2219)] = 74851, + [SMALL_STATE(2220)] = 74961, + [SMALL_STATE(2221)] = 75011, + [SMALL_STATE(2222)] = 75063, + [SMALL_STATE(2223)] = 75113, + [SMALL_STATE(2224)] = 75189, + [SMALL_STATE(2225)] = 75295, + [SMALL_STATE(2226)] = 75405, + [SMALL_STATE(2227)] = 75461, + [SMALL_STATE(2228)] = 75571, + [SMALL_STATE(2229)] = 75621, + [SMALL_STATE(2230)] = 75679, + [SMALL_STATE(2231)] = 75729, + [SMALL_STATE(2232)] = 75839, + [SMALL_STATE(2233)] = 75893, + [SMALL_STATE(2234)] = 75951, + [SMALL_STATE(2235)] = 76001, + [SMALL_STATE(2236)] = 76065, + [SMALL_STATE(2237)] = 76125, + [SMALL_STATE(2238)] = 76235, + [SMALL_STATE(2239)] = 76345, + [SMALL_STATE(2240)] = 76413, + [SMALL_STATE(2241)] = 76487, + [SMALL_STATE(2242)] = 76593, + [SMALL_STATE(2243)] = 76659, + [SMALL_STATE(2244)] = 76713, + [SMALL_STATE(2245)] = 76779, + [SMALL_STATE(2246)] = 76829, + [SMALL_STATE(2247)] = 76883, + [SMALL_STATE(2248)] = 76937, + [SMALL_STATE(2249)] = 77003, + [SMALL_STATE(2250)] = 77111, + [SMALL_STATE(2251)] = 77221, + [SMALL_STATE(2252)] = 77271, + [SMALL_STATE(2253)] = 77335, + [SMALL_STATE(2254)] = 77401, + [SMALL_STATE(2255)] = 77455, + [SMALL_STATE(2256)] = 77505, + [SMALL_STATE(2257)] = 77563, + [SMALL_STATE(2258)] = 77627, + [SMALL_STATE(2259)] = 77677, + [SMALL_STATE(2260)] = 77731, + [SMALL_STATE(2261)] = 77781, + [SMALL_STATE(2262)] = 77835, + [SMALL_STATE(2263)] = 77885, + [SMALL_STATE(2264)] = 77949, + [SMALL_STATE(2265)] = 78011, + [SMALL_STATE(2266)] = 78061, + [SMALL_STATE(2267)] = 78111, + [SMALL_STATE(2268)] = 78163, + [SMALL_STATE(2269)] = 78227, + [SMALL_STATE(2270)] = 78337, + [SMALL_STATE(2271)] = 78401, + [SMALL_STATE(2272)] = 78457, + [SMALL_STATE(2273)] = 78567, + [SMALL_STATE(2274)] = 78677, + [SMALL_STATE(2275)] = 78741, + [SMALL_STATE(2276)] = 78851, + [SMALL_STATE(2277)] = 78915, + [SMALL_STATE(2278)] = 78965, + [SMALL_STATE(2279)] = 79023, + [SMALL_STATE(2280)] = 79073, + [SMALL_STATE(2281)] = 79123, + [SMALL_STATE(2282)] = 79173, + [SMALL_STATE(2283)] = 79223, + [SMALL_STATE(2284)] = 79273, + [SMALL_STATE(2285)] = 79323, + [SMALL_STATE(2286)] = 79433, + [SMALL_STATE(2287)] = 79483, + [SMALL_STATE(2288)] = 79593, + [SMALL_STATE(2289)] = 79703, + [SMALL_STATE(2290)] = 79813, + [SMALL_STATE(2291)] = 79923, + [SMALL_STATE(2292)] = 80033, + [SMALL_STATE(2293)] = 80143, + [SMALL_STATE(2294)] = 80197, + [SMALL_STATE(2295)] = 80251, + [SMALL_STATE(2296)] = 80305, + [SMALL_STATE(2297)] = 80359, + [SMALL_STATE(2298)] = 80423, + [SMALL_STATE(2299)] = 80489, + [SMALL_STATE(2300)] = 80547, + [SMALL_STATE(2301)] = 80613, + [SMALL_STATE(2302)] = 80723, + [SMALL_STATE(2303)] = 80781, + [SMALL_STATE(2304)] = 80847, + [SMALL_STATE(2305)] = 80897, + [SMALL_STATE(2306)] = 81007, + [SMALL_STATE(2307)] = 81071, + [SMALL_STATE(2308)] = 81137, + [SMALL_STATE(2309)] = 81247, + [SMALL_STATE(2310)] = 81301, + [SMALL_STATE(2311)] = 81351, + [SMALL_STATE(2312)] = 81461, + [SMALL_STATE(2313)] = 81567, + [SMALL_STATE(2314)] = 81633, + [SMALL_STATE(2315)] = 81687, + [SMALL_STATE(2316)] = 81755, + [SMALL_STATE(2317)] = 81811, + [SMALL_STATE(2318)] = 81861, + [SMALL_STATE(2319)] = 81911, + [SMALL_STATE(2320)] = 81961, + [SMALL_STATE(2321)] = 82011, + [SMALL_STATE(2322)] = 82085, + [SMALL_STATE(2323)] = 82161, + [SMALL_STATE(2324)] = 82211, + [SMALL_STATE(2325)] = 82261, + [SMALL_STATE(2326)] = 82311, + [SMALL_STATE(2327)] = 82361, + [SMALL_STATE(2328)] = 82411, + [SMALL_STATE(2329)] = 82521, + [SMALL_STATE(2330)] = 82631, + [SMALL_STATE(2331)] = 82741, + [SMALL_STATE(2332)] = 82795, + [SMALL_STATE(2333)] = 82869, + [SMALL_STATE(2334)] = 82919, + [SMALL_STATE(2335)] = 82995, + [SMALL_STATE(2336)] = 83059, + [SMALL_STATE(2337)] = 83169, + [SMALL_STATE(2338)] = 83279, + [SMALL_STATE(2339)] = 83335, + [SMALL_STATE(2340)] = 83391, + [SMALL_STATE(2341)] = 83455, + [SMALL_STATE(2342)] = 83565, + [SMALL_STATE(2343)] = 83615, + [SMALL_STATE(2344)] = 83701, + [SMALL_STATE(2345)] = 83775, + [SMALL_STATE(2346)] = 83829, + [SMALL_STATE(2347)] = 83905, + [SMALL_STATE(2348)] = 83967, + [SMALL_STATE(2349)] = 84029, + [SMALL_STATE(2350)] = 84083, + [SMALL_STATE(2351)] = 84135, + [SMALL_STATE(2352)] = 84187, + [SMALL_STATE(2353)] = 84253, + [SMALL_STATE(2354)] = 84359, + [SMALL_STATE(2355)] = 84421, + [SMALL_STATE(2356)] = 84483, + [SMALL_STATE(2357)] = 84535, + [SMALL_STATE(2358)] = 84601, + [SMALL_STATE(2359)] = 84651, + [SMALL_STATE(2360)] = 84756, + [SMALL_STATE(2361)] = 84831, + [SMALL_STATE(2362)] = 84914, + [SMALL_STATE(2363)] = 85011, + [SMALL_STATE(2364)] = 85116, + [SMALL_STATE(2365)] = 85221, + [SMALL_STATE(2366)] = 85326, + [SMALL_STATE(2367)] = 85431, + [SMALL_STATE(2368)] = 85536, + [SMALL_STATE(2369)] = 85641, + [SMALL_STATE(2370)] = 85746, + [SMALL_STATE(2371)] = 85851, + [SMALL_STATE(2372)] = 85956, + [SMALL_STATE(2373)] = 86007, + [SMALL_STATE(2374)] = 86112, + [SMALL_STATE(2375)] = 86181, + [SMALL_STATE(2376)] = 86240, + [SMALL_STATE(2377)] = 86291, + [SMALL_STATE(2378)] = 86396, + [SMALL_STATE(2379)] = 86465, + [SMALL_STATE(2380)] = 86524, + [SMALL_STATE(2381)] = 86583, + [SMALL_STATE(2382)] = 86634, + [SMALL_STATE(2383)] = 86685, + [SMALL_STATE(2384)] = 86744, + [SMALL_STATE(2385)] = 86821, + [SMALL_STATE(2386)] = 86872, + [SMALL_STATE(2387)] = 86977, + [SMALL_STATE(2388)] = 87036, + [SMALL_STATE(2389)] = 87141, + [SMALL_STATE(2390)] = 87246, + [SMALL_STATE(2391)] = 87351, + [SMALL_STATE(2392)] = 87456, + [SMALL_STATE(2393)] = 87561, + [SMALL_STATE(2394)] = 87640, + [SMALL_STATE(2395)] = 87709, + [SMALL_STATE(2396)] = 87802, + [SMALL_STATE(2397)] = 87897, + [SMALL_STATE(2398)] = 87972, + [SMALL_STATE(2399)] = 88031, + [SMALL_STATE(2400)] = 88106, + [SMALL_STATE(2401)] = 88193, + [SMALL_STATE(2402)] = 88252, + [SMALL_STATE(2403)] = 88341, + [SMALL_STATE(2404)] = 88432, + [SMALL_STATE(2405)] = 88499, + [SMALL_STATE(2406)] = 88572, + [SMALL_STATE(2407)] = 88677, + [SMALL_STATE(2408)] = 88742, + [SMALL_STATE(2409)] = 88815, + [SMALL_STATE(2410)] = 88890, + [SMALL_STATE(2411)] = 88973, + [SMALL_STATE(2412)] = 89078, + [SMALL_STATE(2413)] = 89175, + [SMALL_STATE(2414)] = 89280, + [SMALL_STATE(2415)] = 89347, + [SMALL_STATE(2416)] = 89420, + [SMALL_STATE(2417)] = 89525, + [SMALL_STATE(2418)] = 89590, + [SMALL_STATE(2419)] = 89695, + [SMALL_STATE(2420)] = 89800, + [SMALL_STATE(2421)] = 89905, + [SMALL_STATE(2422)] = 90010, + [SMALL_STATE(2423)] = 90063, + [SMALL_STATE(2424)] = 90168, + [SMALL_STATE(2425)] = 90273, + [SMALL_STATE(2426)] = 90378, + [SMALL_STATE(2427)] = 90483, + [SMALL_STATE(2428)] = 90588, + [SMALL_STATE(2429)] = 90647, + [SMALL_STATE(2430)] = 90728, + [SMALL_STATE(2431)] = 90785, + [SMALL_STATE(2432)] = 90844, + [SMALL_STATE(2433)] = 90899, + [SMALL_STATE(2434)] = 90954, + [SMALL_STATE(2435)] = 91013, + [SMALL_STATE(2436)] = 91120, + [SMALL_STATE(2437)] = 91175, + [SMALL_STATE(2438)] = 91234, + [SMALL_STATE(2439)] = 91303, + [SMALL_STATE(2440)] = 91408, + [SMALL_STATE(2441)] = 91467, + [SMALL_STATE(2442)] = 91572, + [SMALL_STATE(2443)] = 91629, + [SMALL_STATE(2444)] = 91688, + [SMALL_STATE(2445)] = 91747, + [SMALL_STATE(2446)] = 91816, + [SMALL_STATE(2447)] = 91907, + [SMALL_STATE(2448)] = 91980, + [SMALL_STATE(2449)] = 92035, + [SMALL_STATE(2450)] = 92088, + [SMALL_STATE(2451)] = 92193, + [SMALL_STATE(2452)] = 92244, + [SMALL_STATE(2453)] = 92303, + [SMALL_STATE(2454)] = 92354, + [SMALL_STATE(2455)] = 92461, + [SMALL_STATE(2456)] = 92520, + [SMALL_STATE(2457)] = 92577, + [SMALL_STATE(2458)] = 92646, + [SMALL_STATE(2459)] = 92705, + [SMALL_STATE(2460)] = 92764, + [SMALL_STATE(2461)] = 92821, + [SMALL_STATE(2462)] = 92880, + [SMALL_STATE(2463)] = 92937, + [SMALL_STATE(2464)] = 92996, + [SMALL_STATE(2465)] = 93049, + [SMALL_STATE(2466)] = 93154, + [SMALL_STATE(2467)] = 93213, + [SMALL_STATE(2468)] = 93318, + [SMALL_STATE(2469)] = 93423, + [SMALL_STATE(2470)] = 93528, + [SMALL_STATE(2471)] = 93585, + [SMALL_STATE(2472)] = 93690, + [SMALL_STATE(2473)] = 93741, + [SMALL_STATE(2474)] = 93810, + [SMALL_STATE(2475)] = 93915, + [SMALL_STATE(2476)] = 93974, + [SMALL_STATE(2477)] = 94029, + [SMALL_STATE(2478)] = 94084, + [SMALL_STATE(2479)] = 94173, + [SMALL_STATE(2480)] = 94252, + [SMALL_STATE(2481)] = 94307, + [SMALL_STATE(2482)] = 94376, + [SMALL_STATE(2483)] = 94469, + [SMALL_STATE(2484)] = 94564, + [SMALL_STATE(2485)] = 94623, + [SMALL_STATE(2486)] = 94728, + [SMALL_STATE(2487)] = 94833, + [SMALL_STATE(2488)] = 94938, + [SMALL_STATE(2489)] = 95043, + [SMALL_STATE(2490)] = 95148, + [SMALL_STATE(2491)] = 95227, + [SMALL_STATE(2492)] = 95296, + [SMALL_STATE(2493)] = 95389, + [SMALL_STATE(2494)] = 95484, + [SMALL_STATE(2495)] = 95559, + [SMALL_STATE(2496)] = 95646, + [SMALL_STATE(2497)] = 95735, + [SMALL_STATE(2498)] = 95826, + [SMALL_STATE(2499)] = 95899, + [SMALL_STATE(2500)] = 95974, + [SMALL_STATE(2501)] = 96057, + [SMALL_STATE(2502)] = 96154, + [SMALL_STATE(2503)] = 96259, + [SMALL_STATE(2504)] = 96364, + [SMALL_STATE(2505)] = 96469, + [SMALL_STATE(2506)] = 96574, + [SMALL_STATE(2507)] = 96679, + [SMALL_STATE(2508)] = 96784, + [SMALL_STATE(2509)] = 96889, + [SMALL_STATE(2510)] = 96994, + [SMALL_STATE(2511)] = 97053, + [SMALL_STATE(2512)] = 97108, + [SMALL_STATE(2513)] = 97183, + [SMALL_STATE(2514)] = 97234, + [SMALL_STATE(2515)] = 97301, + [SMALL_STATE(2516)] = 97374, + [SMALL_STATE(2517)] = 97479, + [SMALL_STATE(2518)] = 97544, + [SMALL_STATE(2519)] = 97631, + [SMALL_STATE(2520)] = 97720, + [SMALL_STATE(2521)] = 97779, + [SMALL_STATE(2522)] = 97836, + [SMALL_STATE(2523)] = 97887, + [SMALL_STATE(2524)] = 97944, + [SMALL_STATE(2525)] = 98003, + [SMALL_STATE(2526)] = 98051, + [SMALL_STATE(2527)] = 98111, + [SMALL_STATE(2528)] = 98169, + [SMALL_STATE(2529)] = 98273, + [SMALL_STATE(2530)] = 98377, + [SMALL_STATE(2531)] = 98481, + [SMALL_STATE(2532)] = 98585, + [SMALL_STATE(2533)] = 98663, + [SMALL_STATE(2534)] = 98731, + [SMALL_STATE(2535)] = 98823, + [SMALL_STATE(2536)] = 98917, + [SMALL_STATE(2537)] = 98991, + [SMALL_STATE(2538)] = 99077, + [SMALL_STATE(2539)] = 99165, + [SMALL_STATE(2540)] = 99255, + [SMALL_STATE(2541)] = 99327, + [SMALL_STATE(2542)] = 99401, + [SMALL_STATE(2543)] = 99483, + [SMALL_STATE(2544)] = 99579, + [SMALL_STATE(2545)] = 99683, + [SMALL_STATE(2546)] = 99787, + [SMALL_STATE(2547)] = 99891, + [SMALL_STATE(2548)] = 99995, + [SMALL_STATE(2549)] = 100099, + [SMALL_STATE(2550)] = 100203, + [SMALL_STATE(2551)] = 100307, + [SMALL_STATE(2552)] = 100411, + [SMALL_STATE(2553)] = 100517, + [SMALL_STATE(2554)] = 100621, + [SMALL_STATE(2555)] = 100675, + [SMALL_STATE(2556)] = 100729, + [SMALL_STATE(2557)] = 100801, + [SMALL_STATE(2558)] = 100855, + [SMALL_STATE(2559)] = 100909, + [SMALL_STATE(2560)] = 100963, + [SMALL_STATE(2561)] = 101017, + [SMALL_STATE(2562)] = 101065, + [SMALL_STATE(2563)] = 101119, + [SMALL_STATE(2564)] = 101167, + [SMALL_STATE(2565)] = 101221, + [SMALL_STATE(2566)] = 101271, + [SMALL_STATE(2567)] = 101321, + [SMALL_STATE(2568)] = 101375, + [SMALL_STATE(2569)] = 101429, + [SMALL_STATE(2570)] = 101497, + [SMALL_STATE(2571)] = 101567, + [SMALL_STATE(2572)] = 101623, + [SMALL_STATE(2573)] = 101727, + [SMALL_STATE(2574)] = 101777, + [SMALL_STATE(2575)] = 101827, + [SMALL_STATE(2576)] = 101877, + [SMALL_STATE(2577)] = 101927, + [SMALL_STATE(2578)] = 101993, + [SMALL_STATE(2579)] = 102065, + [SMALL_STATE(2580)] = 102169, + [SMALL_STATE(2581)] = 102233, + [SMALL_STATE(2582)] = 102299, + [SMALL_STATE(2583)] = 102367, + [SMALL_STATE(2584)] = 102431, + [SMALL_STATE(2585)] = 102491, + [SMALL_STATE(2586)] = 102555, + [SMALL_STATE(2587)] = 102615, + [SMALL_STATE(2588)] = 102719, + [SMALL_STATE(2589)] = 102823, + [SMALL_STATE(2590)] = 102927, + [SMALL_STATE(2591)] = 103031, + [SMALL_STATE(2592)] = 103135, + [SMALL_STATE(2593)] = 103239, + [SMALL_STATE(2594)] = 103303, + [SMALL_STATE(2595)] = 103363, + [SMALL_STATE(2596)] = 103467, + [SMALL_STATE(2597)] = 103517, + [SMALL_STATE(2598)] = 103567, + [SMALL_STATE(2599)] = 103617, + [SMALL_STATE(2600)] = 103667, + [SMALL_STATE(2601)] = 103731, + [SMALL_STATE(2602)] = 103835, + [SMALL_STATE(2603)] = 103895, + [SMALL_STATE(2604)] = 103945, + [SMALL_STATE(2605)] = 104049, + [SMALL_STATE(2606)] = 104103, + [SMALL_STATE(2607)] = 104207, + [SMALL_STATE(2608)] = 104271, + [SMALL_STATE(2609)] = 104375, + [SMALL_STATE(2610)] = 104434, + [SMALL_STATE(2611)] = 104497, + [SMALL_STATE(2612)] = 104598, + [SMALL_STATE(2613)] = 104655, + [SMALL_STATE(2614)] = 104714, + [SMALL_STATE(2615)] = 104773, + [SMALL_STATE(2616)] = 104832, + [SMALL_STATE(2617)] = 104891, + [SMALL_STATE(2618)] = 104950, + [SMALL_STATE(2619)] = 105009, + [SMALL_STATE(2620)] = 105066, + [SMALL_STATE(2621)] = 105125, + [SMALL_STATE(2622)] = 105190, + [SMALL_STATE(2623)] = 105243, + [SMALL_STATE(2624)] = 105304, + [SMALL_STATE(2625)] = 105361, + [SMALL_STATE(2626)] = 105418, + [SMALL_STATE(2627)] = 105477, + [SMALL_STATE(2628)] = 105536, + [SMALL_STATE(2629)] = 105595, + [SMALL_STATE(2630)] = 105654, + [SMALL_STATE(2631)] = 105717, + [SMALL_STATE(2632)] = 105774, + [SMALL_STATE(2633)] = 105831, + [SMALL_STATE(2634)] = 105888, + [SMALL_STATE(2635)] = 105945, + [SMALL_STATE(2636)] = 106002, + [SMALL_STATE(2637)] = 106059, + [SMALL_STATE(2638)] = 106116, + [SMALL_STATE(2639)] = 106165, + [SMALL_STATE(2640)] = 106222, + [SMALL_STATE(2641)] = 106279, + [SMALL_STATE(2642)] = 106336, + [SMALL_STATE(2643)] = 106385, + [SMALL_STATE(2644)] = 106434, + [SMALL_STATE(2645)] = 106535, + [SMALL_STATE(2646)] = 106592, + [SMALL_STATE(2647)] = 106641, + [SMALL_STATE(2648)] = 106698, + [SMALL_STATE(2649)] = 106746, + [SMALL_STATE(2650)] = 106792, + [SMALL_STATE(2651)] = 106838, + [SMALL_STATE(2652)] = 106884, + [SMALL_STATE(2653)] = 106932, + [SMALL_STATE(2654)] = 106978, + [SMALL_STATE(2655)] = 107024, + [SMALL_STATE(2656)] = 107070, + [SMALL_STATE(2657)] = 107116, + [SMALL_STATE(2658)] = 107162, + [SMALL_STATE(2659)] = 107208, + [SMALL_STATE(2660)] = 107254, + [SMALL_STATE(2661)] = 107300, + [SMALL_STATE(2662)] = 107346, + [SMALL_STATE(2663)] = 107392, + [SMALL_STATE(2664)] = 107438, + [SMALL_STATE(2665)] = 107484, + [SMALL_STATE(2666)] = 107530, + [SMALL_STATE(2667)] = 107576, + [SMALL_STATE(2668)] = 107624, + [SMALL_STATE(2669)] = 107670, + [SMALL_STATE(2670)] = 107716, + [SMALL_STATE(2671)] = 107762, + [SMALL_STATE(2672)] = 107808, + [SMALL_STATE(2673)] = 107854, + [SMALL_STATE(2674)] = 107900, + [SMALL_STATE(2675)] = 107946, + [SMALL_STATE(2676)] = 107994, + [SMALL_STATE(2677)] = 108042, + [SMALL_STATE(2678)] = 108090, + [SMALL_STATE(2679)] = 108136, + [SMALL_STATE(2680)] = 108182, + [SMALL_STATE(2681)] = 108228, + [SMALL_STATE(2682)] = 108276, + [SMALL_STATE(2683)] = 108324, + [SMALL_STATE(2684)] = 108382, + [SMALL_STATE(2685)] = 108428, + [SMALL_STATE(2686)] = 108474, + [SMALL_STATE(2687)] = 108522, + [SMALL_STATE(2688)] = 108568, + [SMALL_STATE(2689)] = 108614, + [SMALL_STATE(2690)] = 108662, + [SMALL_STATE(2691)] = 108708, + [SMALL_STATE(2692)] = 108754, + [SMALL_STATE(2693)] = 108800, + [SMALL_STATE(2694)] = 108846, + [SMALL_STATE(2695)] = 108896, + [SMALL_STATE(2696)] = 108942, + [SMALL_STATE(2697)] = 108988, + [SMALL_STATE(2698)] = 109036, + [SMALL_STATE(2699)] = 109084, + [SMALL_STATE(2700)] = 109134, + [SMALL_STATE(2701)] = 109184, + [SMALL_STATE(2702)] = 109230, + [SMALL_STATE(2703)] = 109276, + [SMALL_STATE(2704)] = 109322, + [SMALL_STATE(2705)] = 109368, + [SMALL_STATE(2706)] = 109414, + [SMALL_STATE(2707)] = 109462, + [SMALL_STATE(2708)] = 109508, + [SMALL_STATE(2709)] = 109554, + [SMALL_STATE(2710)] = 109602, + [SMALL_STATE(2711)] = 109648, + [SMALL_STATE(2712)] = 109704, + [SMALL_STATE(2713)] = 109750, + [SMALL_STATE(2714)] = 109801, + [SMALL_STATE(2715)] = 109852, + [SMALL_STATE(2716)] = 109897, + [SMALL_STATE(2717)] = 109942, + [SMALL_STATE(2718)] = 109987, + [SMALL_STATE(2719)] = 110032, + [SMALL_STATE(2720)] = 110081, + [SMALL_STATE(2721)] = 110126, + [SMALL_STATE(2722)] = 110171, + [SMALL_STATE(2723)] = 110238, + [SMALL_STATE(2724)] = 110283, + [SMALL_STATE(2725)] = 110336, + [SMALL_STATE(2726)] = 110389, + [SMALL_STATE(2727)] = 110437, + [SMALL_STATE(2728)] = 110497, + [SMALL_STATE(2729)] = 110553, + [SMALL_STATE(2730)] = 110597, + [SMALL_STATE(2731)] = 110655, + [SMALL_STATE(2732)] = 110715, + [SMALL_STATE(2733)] = 110787, + [SMALL_STATE(2734)] = 110845, + [SMALL_STATE(2735)] = 110903, + [SMALL_STATE(2736)] = 110963, + [SMALL_STATE(2737)] = 111035, + [SMALL_STATE(2738)] = 111093, + [SMALL_STATE(2739)] = 111141, + [SMALL_STATE(2740)] = 111194, + [SMALL_STATE(2741)] = 111247, + [SMALL_STATE(2742)] = 111300, + [SMALL_STATE(2743)] = 111353, + [SMALL_STATE(2744)] = 111406, + [SMALL_STATE(2745)] = 111459, + [SMALL_STATE(2746)] = 111512, + [SMALL_STATE(2747)] = 111565, + [SMALL_STATE(2748)] = 111618, + [SMALL_STATE(2749)] = 111671, + [SMALL_STATE(2750)] = 111724, + [SMALL_STATE(2751)] = 111777, + [SMALL_STATE(2752)] = 111830, + [SMALL_STATE(2753)] = 111883, + [SMALL_STATE(2754)] = 111936, + [SMALL_STATE(2755)] = 111989, + [SMALL_STATE(2756)] = 112042, + [SMALL_STATE(2757)] = 112095, + [SMALL_STATE(2758)] = 112148, + [SMALL_STATE(2759)] = 112201, + [SMALL_STATE(2760)] = 112254, + [SMALL_STATE(2761)] = 112307, + [SMALL_STATE(2762)] = 112356, + [SMALL_STATE(2763)] = 112409, + [SMALL_STATE(2764)] = 112462, + [SMALL_STATE(2765)] = 112515, + [SMALL_STATE(2766)] = 112568, + [SMALL_STATE(2767)] = 112631, + [SMALL_STATE(2768)] = 112694, + [SMALL_STATE(2769)] = 112747, + [SMALL_STATE(2770)] = 112801, + [SMALL_STATE(2771)] = 112881, + [SMALL_STATE(2772)] = 112945, + [SMALL_STATE(2773)] = 112999, + [SMALL_STATE(2774)] = 113063, + [SMALL_STATE(2775)] = 113123, + [SMALL_STATE(2776)] = 113177, + [SMALL_STATE(2777)] = 113231, + [SMALL_STATE(2778)] = 113285, + [SMALL_STATE(2779)] = 113339, + [SMALL_STATE(2780)] = 113393, + [SMALL_STATE(2781)] = 113447, + [SMALL_STATE(2782)] = 113507, + [SMALL_STATE(2783)] = 113561, + [SMALL_STATE(2784)] = 113615, + [SMALL_STATE(2785)] = 113695, + [SMALL_STATE(2786)] = 113775, + [SMALL_STATE(2787)] = 113839, + [SMALL_STATE(2788)] = 113919, + [SMALL_STATE(2789)] = 113999, + [SMALL_STATE(2790)] = 114056, + [SMALL_STATE(2791)] = 114097, + [SMALL_STATE(2792)] = 114154, + [SMALL_STATE(2793)] = 114211, + [SMALL_STATE(2794)] = 114268, + [SMALL_STATE(2795)] = 114319, + [SMALL_STATE(2796)] = 114376, + [SMALL_STATE(2797)] = 114429, + [SMALL_STATE(2798)] = 114486, + [SMALL_STATE(2799)] = 114543, + [SMALL_STATE(2800)] = 114596, + [SMALL_STATE(2801)] = 114653, + [SMALL_STATE(2802)] = 114710, + [SMALL_STATE(2803)] = 114751, + [SMALL_STATE(2804)] = 114808, + [SMALL_STATE(2805)] = 114849, + [SMALL_STATE(2806)] = 114906, + [SMALL_STATE(2807)] = 114947, + [SMALL_STATE(2808)] = 115004, + [SMALL_STATE(2809)] = 115061, + [SMALL_STATE(2810)] = 115118, + [SMALL_STATE(2811)] = 115159, + [SMALL_STATE(2812)] = 115216, + [SMALL_STATE(2813)] = 115259, + [SMALL_STATE(2814)] = 115316, + [SMALL_STATE(2815)] = 115366, + [SMALL_STATE(2816)] = 115416, + [SMALL_STATE(2817)] = 115464, + [SMALL_STATE(2818)] = 115512, + [SMALL_STATE(2819)] = 115560, + [SMALL_STATE(2820)] = 115608, + [SMALL_STATE(2821)] = 115656, + [SMALL_STATE(2822)] = 115704, + [SMALL_STATE(2823)] = 115752, + [SMALL_STATE(2824)] = 115800, + [SMALL_STATE(2825)] = 115848, + [SMALL_STATE(2826)] = 115896, + [SMALL_STATE(2827)] = 115944, + [SMALL_STATE(2828)] = 115992, + [SMALL_STATE(2829)] = 116040, + [SMALL_STATE(2830)] = 116090, + [SMALL_STATE(2831)] = 116138, + [SMALL_STATE(2832)] = 116186, + [SMALL_STATE(2833)] = 116234, + [SMALL_STATE(2834)] = 116282, + [SMALL_STATE(2835)] = 116330, + [SMALL_STATE(2836)] = 116378, + [SMALL_STATE(2837)] = 116426, + [SMALL_STATE(2838)] = 116474, + [SMALL_STATE(2839)] = 116522, + [SMALL_STATE(2840)] = 116570, + [SMALL_STATE(2841)] = 116618, + [SMALL_STATE(2842)] = 116666, + [SMALL_STATE(2843)] = 116714, + [SMALL_STATE(2844)] = 116764, + [SMALL_STATE(2845)] = 116812, + [SMALL_STATE(2846)] = 116860, + [SMALL_STATE(2847)] = 116908, + [SMALL_STATE(2848)] = 116958, + [SMALL_STATE(2849)] = 117006, + [SMALL_STATE(2850)] = 117054, + [SMALL_STATE(2851)] = 117104, + [SMALL_STATE(2852)] = 117154, + [SMALL_STATE(2853)] = 117202, + [SMALL_STATE(2854)] = 117252, + [SMALL_STATE(2855)] = 117300, + [SMALL_STATE(2856)] = 117348, + [SMALL_STATE(2857)] = 117396, + [SMALL_STATE(2858)] = 117446, + [SMALL_STATE(2859)] = 117494, + [SMALL_STATE(2860)] = 117542, + [SMALL_STATE(2861)] = 117590, + [SMALL_STATE(2862)] = 117638, + [SMALL_STATE(2863)] = 117688, + [SMALL_STATE(2864)] = 117736, + [SMALL_STATE(2865)] = 117784, + [SMALL_STATE(2866)] = 117834, + [SMALL_STATE(2867)] = 117882, + [SMALL_STATE(2868)] = 117930, + [SMALL_STATE(2869)] = 117980, + [SMALL_STATE(2870)] = 118028, + [SMALL_STATE(2871)] = 118078, + [SMALL_STATE(2872)] = 118126, + [SMALL_STATE(2873)] = 118176, + [SMALL_STATE(2874)] = 118224, + [SMALL_STATE(2875)] = 118272, + [SMALL_STATE(2876)] = 118307, + [SMALL_STATE(2877)] = 118348, + [SMALL_STATE(2878)] = 118389, + [SMALL_STATE(2879)] = 118430, + [SMALL_STATE(2880)] = 118458, + [SMALL_STATE(2881)] = 118486, + [SMALL_STATE(2882)] = 118514, + [SMALL_STATE(2883)] = 118542, + [SMALL_STATE(2884)] = 118570, + [SMALL_STATE(2885)] = 118598, + [SMALL_STATE(2886)] = 118626, + [SMALL_STATE(2887)] = 118654, + [SMALL_STATE(2888)] = 118682, + [SMALL_STATE(2889)] = 118710, + [SMALL_STATE(2890)] = 118738, + [SMALL_STATE(2891)] = 118766, + [SMALL_STATE(2892)] = 118794, + [SMALL_STATE(2893)] = 118822, + [SMALL_STATE(2894)] = 118850, + [SMALL_STATE(2895)] = 118878, + [SMALL_STATE(2896)] = 118906, + [SMALL_STATE(2897)] = 118934, + [SMALL_STATE(2898)] = 118962, + [SMALL_STATE(2899)] = 118990, + [SMALL_STATE(2900)] = 119018, + [SMALL_STATE(2901)] = 119046, + [SMALL_STATE(2902)] = 119074, + [SMALL_STATE(2903)] = 119102, + [SMALL_STATE(2904)] = 119130, + [SMALL_STATE(2905)] = 119158, + [SMALL_STATE(2906)] = 119186, + [SMALL_STATE(2907)] = 119214, + [SMALL_STATE(2908)] = 119242, + [SMALL_STATE(2909)] = 119270, + [SMALL_STATE(2910)] = 119298, + [SMALL_STATE(2911)] = 119326, + [SMALL_STATE(2912)] = 119354, + [SMALL_STATE(2913)] = 119382, + [SMALL_STATE(2914)] = 119409, + [SMALL_STATE(2915)] = 119436, + [SMALL_STATE(2916)] = 119462, + [SMALL_STATE(2917)] = 119492, + [SMALL_STATE(2918)] = 119518, + [SMALL_STATE(2919)] = 119544, + [SMALL_STATE(2920)] = 119570, + [SMALL_STATE(2921)] = 119596, + [SMALL_STATE(2922)] = 119646, + [SMALL_STATE(2923)] = 119676, + [SMALL_STATE(2924)] = 119708, + [SMALL_STATE(2925)] = 119736, + [SMALL_STATE(2926)] = 119774, + [SMALL_STATE(2927)] = 119800, + [SMALL_STATE(2928)] = 119826, + [SMALL_STATE(2929)] = 119852, + [SMALL_STATE(2930)] = 119880, + [SMALL_STATE(2931)] = 119906, + [SMALL_STATE(2932)] = 119944, + [SMALL_STATE(2933)] = 119978, + [SMALL_STATE(2934)] = 120016, + [SMALL_STATE(2935)] = 120041, + [SMALL_STATE(2936)] = 120066, + [SMALL_STATE(2937)] = 120091, + [SMALL_STATE(2938)] = 120122, + [SMALL_STATE(2939)] = 120149, + [SMALL_STATE(2940)] = 120178, + [SMALL_STATE(2941)] = 120203, + [SMALL_STATE(2942)] = 120227, + [SMALL_STATE(2943)] = 120261, + [SMALL_STATE(2944)] = 120285, + [SMALL_STATE(2945)] = 120319, + [SMALL_STATE(2946)] = 120353, + [SMALL_STATE(2947)] = 120377, + [SMALL_STATE(2948)] = 120401, + [SMALL_STATE(2949)] = 120433, + [SMALL_STATE(2950)] = 120461, + [SMALL_STATE(2951)] = 120485, + [SMALL_STATE(2952)] = 120519, + [SMALL_STATE(2953)] = 120543, + [SMALL_STATE(2954)] = 120567, + [SMALL_STATE(2955)] = 120591, + [SMALL_STATE(2956)] = 120615, + [SMALL_STATE(2957)] = 120639, + [SMALL_STATE(2958)] = 120663, + [SMALL_STATE(2959)] = 120687, + [SMALL_STATE(2960)] = 120711, + [SMALL_STATE(2961)] = 120735, + [SMALL_STATE(2962)] = 120759, + [SMALL_STATE(2963)] = 120783, + [SMALL_STATE(2964)] = 120807, + [SMALL_STATE(2965)] = 120831, + [SMALL_STATE(2966)] = 120855, + [SMALL_STATE(2967)] = 120879, + [SMALL_STATE(2968)] = 120903, + [SMALL_STATE(2969)] = 120937, + [SMALL_STATE(2970)] = 120961, + [SMALL_STATE(2971)] = 120985, + [SMALL_STATE(2972)] = 121011, + [SMALL_STATE(2973)] = 121035, + [SMALL_STATE(2974)] = 121059, + [SMALL_STATE(2975)] = 121091, + [SMALL_STATE(2976)] = 121115, + [SMALL_STATE(2977)] = 121139, + [SMALL_STATE(2978)] = 121173, + [SMALL_STATE(2979)] = 121197, + [SMALL_STATE(2980)] = 121219, + [SMALL_STATE(2981)] = 121241, + [SMALL_STATE(2982)] = 121267, + [SMALL_STATE(2983)] = 121301, + [SMALL_STATE(2984)] = 121325, + [SMALL_STATE(2985)] = 121359, + [SMALL_STATE(2986)] = 121393, + [SMALL_STATE(2987)] = 121415, + [SMALL_STATE(2988)] = 121439, + [SMALL_STATE(2989)] = 121463, + [SMALL_STATE(2990)] = 121487, + [SMALL_STATE(2991)] = 121511, + [SMALL_STATE(2992)] = 121535, + [SMALL_STATE(2993)] = 121559, + [SMALL_STATE(2994)] = 121583, + [SMALL_STATE(2995)] = 121607, + [SMALL_STATE(2996)] = 121631, + [SMALL_STATE(2997)] = 121663, + [SMALL_STATE(2998)] = 121687, + [SMALL_STATE(2999)] = 121711, + [SMALL_STATE(3000)] = 121735, + [SMALL_STATE(3001)] = 121769, + [SMALL_STATE(3002)] = 121793, + [SMALL_STATE(3003)] = 121827, + [SMALL_STATE(3004)] = 121849, + [SMALL_STATE(3005)] = 121871, + [SMALL_STATE(3006)] = 121895, + [SMALL_STATE(3007)] = 121929, + [SMALL_STATE(3008)] = 121953, + [SMALL_STATE(3009)] = 121987, + [SMALL_STATE(3010)] = 122009, + [SMALL_STATE(3011)] = 122033, + [SMALL_STATE(3012)] = 122057, + [SMALL_STATE(3013)] = 122081, + [SMALL_STATE(3014)] = 122103, + [SMALL_STATE(3015)] = 122127, + [SMALL_STATE(3016)] = 122151, + [SMALL_STATE(3017)] = 122183, + [SMALL_STATE(3018)] = 122207, + [SMALL_STATE(3019)] = 122231, + [SMALL_STATE(3020)] = 122255, + [SMALL_STATE(3021)] = 122277, + [SMALL_STATE(3022)] = 122301, + [SMALL_STATE(3023)] = 122325, + [SMALL_STATE(3024)] = 122349, + [SMALL_STATE(3025)] = 122373, + [SMALL_STATE(3026)] = 122395, + [SMALL_STATE(3027)] = 122429, + [SMALL_STATE(3028)] = 122453, + [SMALL_STATE(3029)] = 122477, + [SMALL_STATE(3030)] = 122499, + [SMALL_STATE(3031)] = 122523, + [SMALL_STATE(3032)] = 122547, + [SMALL_STATE(3033)] = 122579, + [SMALL_STATE(3034)] = 122603, + [SMALL_STATE(3035)] = 122635, + [SMALL_STATE(3036)] = 122669, + [SMALL_STATE(3037)] = 122703, + [SMALL_STATE(3038)] = 122737, + [SMALL_STATE(3039)] = 122761, + [SMALL_STATE(3040)] = 122785, + [SMALL_STATE(3041)] = 122819, + [SMALL_STATE(3042)] = 122843, + [SMALL_STATE(3043)] = 122867, + [SMALL_STATE(3044)] = 122910, + [SMALL_STATE(3045)] = 122953, + [SMALL_STATE(3046)] = 122996, + [SMALL_STATE(3047)] = 123041, + [SMALL_STATE(3048)] = 123070, + [SMALL_STATE(3049)] = 123109, + [SMALL_STATE(3050)] = 123138, + [SMALL_STATE(3051)] = 123177, + [SMALL_STATE(3052)] = 123216, + [SMALL_STATE(3053)] = 123255, + [SMALL_STATE(3054)] = 123284, + [SMALL_STATE(3055)] = 123309, + [SMALL_STATE(3056)] = 123338, + [SMALL_STATE(3057)] = 123363, + [SMALL_STATE(3058)] = 123406, + [SMALL_STATE(3059)] = 123449, + [SMALL_STATE(3060)] = 123474, + [SMALL_STATE(3061)] = 123517, + [SMALL_STATE(3062)] = 123546, + [SMALL_STATE(3063)] = 123589, + [SMALL_STATE(3064)] = 123632, + [SMALL_STATE(3065)] = 123675, + [SMALL_STATE(3066)] = 123718, + [SMALL_STATE(3067)] = 123761, + [SMALL_STATE(3068)] = 123804, + [SMALL_STATE(3069)] = 123843, + [SMALL_STATE(3070)] = 123886, + [SMALL_STATE(3071)] = 123929, + [SMALL_STATE(3072)] = 123972, + [SMALL_STATE(3073)] = 124015, + [SMALL_STATE(3074)] = 124058, + [SMALL_STATE(3075)] = 124101, + [SMALL_STATE(3076)] = 124130, + [SMALL_STATE(3077)] = 124159, + [SMALL_STATE(3078)] = 124188, + [SMALL_STATE(3079)] = 124217, + [SMALL_STATE(3080)] = 124260, + [SMALL_STATE(3081)] = 124303, + [SMALL_STATE(3082)] = 124346, + [SMALL_STATE(3083)] = 124389, + [SMALL_STATE(3084)] = 124432, + [SMALL_STATE(3085)] = 124452, + [SMALL_STATE(3086)] = 124488, + [SMALL_STATE(3087)] = 124510, + [SMALL_STATE(3088)] = 124548, + [SMALL_STATE(3089)] = 124570, + [SMALL_STATE(3090)] = 124592, + [SMALL_STATE(3091)] = 124614, + [SMALL_STATE(3092)] = 124638, + [SMALL_STATE(3093)] = 124660, + [SMALL_STATE(3094)] = 124682, + [SMALL_STATE(3095)] = 124704, + [SMALL_STATE(3096)] = 124732, + [SMALL_STATE(3097)] = 124756, + [SMALL_STATE(3098)] = 124792, + [SMALL_STATE(3099)] = 124828, + [SMALL_STATE(3100)] = 124850, + [SMALL_STATE(3101)] = 124874, + [SMALL_STATE(3102)] = 124896, + [SMALL_STATE(3103)] = 124918, + [SMALL_STATE(3104)] = 124940, + [SMALL_STATE(3105)] = 124962, + [SMALL_STATE(3106)] = 124998, + [SMALL_STATE(3107)] = 125022, + [SMALL_STATE(3108)] = 125042, + [SMALL_STATE(3109)] = 125062, + [SMALL_STATE(3110)] = 125082, + [SMALL_STATE(3111)] = 125102, + [SMALL_STATE(3112)] = 125138, + [SMALL_STATE(3113)] = 125158, + [SMALL_STATE(3114)] = 125178, + [SMALL_STATE(3115)] = 125198, + [SMALL_STATE(3116)] = 125218, + [SMALL_STATE(3117)] = 125238, + [SMALL_STATE(3118)] = 125258, + [SMALL_STATE(3119)] = 125278, + [SMALL_STATE(3120)] = 125298, + [SMALL_STATE(3121)] = 125318, + [SMALL_STATE(3122)] = 125338, + [SMALL_STATE(3123)] = 125358, + [SMALL_STATE(3124)] = 125378, + [SMALL_STATE(3125)] = 125404, + [SMALL_STATE(3126)] = 125424, + [SMALL_STATE(3127)] = 125444, + [SMALL_STATE(3128)] = 125464, + [SMALL_STATE(3129)] = 125484, + [SMALL_STATE(3130)] = 125512, + [SMALL_STATE(3131)] = 125532, + [SMALL_STATE(3132)] = 125552, + [SMALL_STATE(3133)] = 125572, + [SMALL_STATE(3134)] = 125592, + [SMALL_STATE(3135)] = 125612, + [SMALL_STATE(3136)] = 125648, + [SMALL_STATE(3137)] = 125668, + [SMALL_STATE(3138)] = 125688, + [SMALL_STATE(3139)] = 125708, + [SMALL_STATE(3140)] = 125728, + [SMALL_STATE(3141)] = 125748, + [SMALL_STATE(3142)] = 125768, + [SMALL_STATE(3143)] = 125788, + [SMALL_STATE(3144)] = 125824, + [SMALL_STATE(3145)] = 125860, + [SMALL_STATE(3146)] = 125888, + [SMALL_STATE(3147)] = 125916, + [SMALL_STATE(3148)] = 125952, + [SMALL_STATE(3149)] = 125980, + [SMALL_STATE(3150)] = 126008, + [SMALL_STATE(3151)] = 126032, + [SMALL_STATE(3152)] = 126058, + [SMALL_STATE(3153)] = 126094, + [SMALL_STATE(3154)] = 126122, + [SMALL_STATE(3155)] = 126150, + [SMALL_STATE(3156)] = 126176, + [SMALL_STATE(3157)] = 126196, + [SMALL_STATE(3158)] = 126233, + [SMALL_STATE(3159)] = 126258, + [SMALL_STATE(3160)] = 126291, + [SMALL_STATE(3161)] = 126328, + [SMALL_STATE(3162)] = 126365, + [SMALL_STATE(3163)] = 126402, + [SMALL_STATE(3164)] = 126439, + [SMALL_STATE(3165)] = 126476, + [SMALL_STATE(3166)] = 126497, + [SMALL_STATE(3167)] = 126520, + [SMALL_STATE(3168)] = 126549, + [SMALL_STATE(3169)] = 126570, + [SMALL_STATE(3170)] = 126607, + [SMALL_STATE(3171)] = 126644, + [SMALL_STATE(3172)] = 126675, + [SMALL_STATE(3173)] = 126712, + [SMALL_STATE(3174)] = 126745, + [SMALL_STATE(3175)] = 126768, + [SMALL_STATE(3176)] = 126797, + [SMALL_STATE(3177)] = 126834, + [SMALL_STATE(3178)] = 126873, + [SMALL_STATE(3179)] = 126910, + [SMALL_STATE(3180)] = 126931, + [SMALL_STATE(3181)] = 126968, + [SMALL_STATE(3182)] = 126993, + [SMALL_STATE(3183)] = 127030, + [SMALL_STATE(3184)] = 127067, + [SMALL_STATE(3185)] = 127096, + [SMALL_STATE(3186)] = 127133, + [SMALL_STATE(3187)] = 127162, + [SMALL_STATE(3188)] = 127199, + [SMALL_STATE(3189)] = 127232, + [SMALL_STATE(3190)] = 127263, + [SMALL_STATE(3191)] = 127296, + [SMALL_STATE(3192)] = 127333, + [SMALL_STATE(3193)] = 127370, + [SMALL_STATE(3194)] = 127391, + [SMALL_STATE(3195)] = 127424, + [SMALL_STATE(3196)] = 127457, + [SMALL_STATE(3197)] = 127488, + [SMALL_STATE(3198)] = 127519, + [SMALL_STATE(3199)] = 127550, + [SMALL_STATE(3200)] = 127587, + [SMALL_STATE(3201)] = 127610, + [SMALL_STATE(3202)] = 127631, + [SMALL_STATE(3203)] = 127664, + [SMALL_STATE(3204)] = 127697, + [SMALL_STATE(3205)] = 127718, + [SMALL_STATE(3206)] = 127755, + [SMALL_STATE(3207)] = 127776, + [SMALL_STATE(3208)] = 127799, + [SMALL_STATE(3209)] = 127836, + [SMALL_STATE(3210)] = 127873, + [SMALL_STATE(3211)] = 127906, + [SMALL_STATE(3212)] = 127943, + [SMALL_STATE(3213)] = 127966, + [SMALL_STATE(3214)] = 127999, + [SMALL_STATE(3215)] = 128028, + [SMALL_STATE(3216)] = 128048, + [SMALL_STATE(3217)] = 128072, + [SMALL_STATE(3218)] = 128092, + [SMALL_STATE(3219)] = 128112, + [SMALL_STATE(3220)] = 128134, + [SMALL_STATE(3221)] = 128156, + [SMALL_STATE(3222)] = 128178, + [SMALL_STATE(3223)] = 128202, + [SMALL_STATE(3224)] = 128220, + [SMALL_STATE(3225)] = 128238, + [SMALL_STATE(3226)] = 128256, + [SMALL_STATE(3227)] = 128274, + [SMALL_STATE(3228)] = 128292, + [SMALL_STATE(3229)] = 128312, + [SMALL_STATE(3230)] = 128332, + [SMALL_STATE(3231)] = 128350, + [SMALL_STATE(3232)] = 128368, + [SMALL_STATE(3233)] = 128388, + [SMALL_STATE(3234)] = 128408, + [SMALL_STATE(3235)] = 128426, + [SMALL_STATE(3236)] = 128444, + [SMALL_STATE(3237)] = 128462, + [SMALL_STATE(3238)] = 128480, + [SMALL_STATE(3239)] = 128498, + [SMALL_STATE(3240)] = 128518, + [SMALL_STATE(3241)] = 128538, + [SMALL_STATE(3242)] = 128558, + [SMALL_STATE(3243)] = 128582, + [SMALL_STATE(3244)] = 128602, + [SMALL_STATE(3245)] = 128626, + [SMALL_STATE(3246)] = 128646, + [SMALL_STATE(3247)] = 128666, + [SMALL_STATE(3248)] = 128684, + [SMALL_STATE(3249)] = 128706, + [SMALL_STATE(3250)] = 128726, + [SMALL_STATE(3251)] = 128746, + [SMALL_STATE(3252)] = 128770, + [SMALL_STATE(3253)] = 128790, + [SMALL_STATE(3254)] = 128808, + [SMALL_STATE(3255)] = 128830, + [SMALL_STATE(3256)] = 128850, + [SMALL_STATE(3257)] = 128886, + [SMALL_STATE(3258)] = 128906, + [SMALL_STATE(3259)] = 128926, + [SMALL_STATE(3260)] = 128946, + [SMALL_STATE(3261)] = 128966, + [SMALL_STATE(3262)] = 128986, + [SMALL_STATE(3263)] = 129012, + [SMALL_STATE(3264)] = 129032, + [SMALL_STATE(3265)] = 129052, + [SMALL_STATE(3266)] = 129072, + [SMALL_STATE(3267)] = 129092, + [SMALL_STATE(3268)] = 129116, + [SMALL_STATE(3269)] = 129140, + [SMALL_STATE(3270)] = 129160, + [SMALL_STATE(3271)] = 129180, + [SMALL_STATE(3272)] = 129200, + [SMALL_STATE(3273)] = 129222, + [SMALL_STATE(3274)] = 129242, + [SMALL_STATE(3275)] = 129262, + [SMALL_STATE(3276)] = 129286, + [SMALL_STATE(3277)] = 129310, + [SMALL_STATE(3278)] = 129330, + [SMALL_STATE(3279)] = 129352, + [SMALL_STATE(3280)] = 129378, + [SMALL_STATE(3281)] = 129398, + [SMALL_STATE(3282)] = 129418, + [SMALL_STATE(3283)] = 129438, + [SMALL_STATE(3284)] = 129460, + [SMALL_STATE(3285)] = 129480, + [SMALL_STATE(3286)] = 129500, + [SMALL_STATE(3287)] = 129520, + [SMALL_STATE(3288)] = 129537, + [SMALL_STATE(3289)] = 129556, + [SMALL_STATE(3290)] = 129573, + [SMALL_STATE(3291)] = 129608, + [SMALL_STATE(3292)] = 129643, + [SMALL_STATE(3293)] = 129676, + [SMALL_STATE(3294)] = 129711, + [SMALL_STATE(3295)] = 129746, + [SMALL_STATE(3296)] = 129779, + [SMALL_STATE(3297)] = 129810, + [SMALL_STATE(3298)] = 129845, + [SMALL_STATE(3299)] = 129880, + [SMALL_STATE(3300)] = 129901, + [SMALL_STATE(3301)] = 129936, + [SMALL_STATE(3302)] = 129955, + [SMALL_STATE(3303)] = 129978, + [SMALL_STATE(3304)] = 130001, + [SMALL_STATE(3305)] = 130022, + [SMALL_STATE(3306)] = 130041, + [SMALL_STATE(3307)] = 130066, + [SMALL_STATE(3308)] = 130101, + [SMALL_STATE(3309)] = 130136, + [SMALL_STATE(3310)] = 130153, + [SMALL_STATE(3311)] = 130188, + [SMALL_STATE(3312)] = 130207, + [SMALL_STATE(3313)] = 130238, + [SMALL_STATE(3314)] = 130267, + [SMALL_STATE(3315)] = 130298, + [SMALL_STATE(3316)] = 130319, + [SMALL_STATE(3317)] = 130354, + [SMALL_STATE(3318)] = 130371, + [SMALL_STATE(3319)] = 130399, + [SMALL_STATE(3320)] = 130415, + [SMALL_STATE(3321)] = 130443, + [SMALL_STATE(3322)] = 130471, + [SMALL_STATE(3323)] = 130487, + [SMALL_STATE(3324)] = 130515, + [SMALL_STATE(3325)] = 130543, + [SMALL_STATE(3326)] = 130559, + [SMALL_STATE(3327)] = 130587, + [SMALL_STATE(3328)] = 130603, + [SMALL_STATE(3329)] = 130619, + [SMALL_STATE(3330)] = 130635, + [SMALL_STATE(3331)] = 130655, + [SMALL_STATE(3332)] = 130671, + [SMALL_STATE(3333)] = 130687, + [SMALL_STATE(3334)] = 130715, + [SMALL_STATE(3335)] = 130743, + [SMALL_STATE(3336)] = 130765, + [SMALL_STATE(3337)] = 130781, + [SMALL_STATE(3338)] = 130797, + [SMALL_STATE(3339)] = 130817, + [SMALL_STATE(3340)] = 130835, + [SMALL_STATE(3341)] = 130859, + [SMALL_STATE(3342)] = 130891, + [SMALL_STATE(3343)] = 130919, + [SMALL_STATE(3344)] = 130947, + [SMALL_STATE(3345)] = 130963, + [SMALL_STATE(3346)] = 130985, + [SMALL_STATE(3347)] = 131001, + [SMALL_STATE(3348)] = 131019, + [SMALL_STATE(3349)] = 131047, + [SMALL_STATE(3350)] = 131079, + [SMALL_STATE(3351)] = 131107, + [SMALL_STATE(3352)] = 131123, + [SMALL_STATE(3353)] = 131139, + [SMALL_STATE(3354)] = 131165, + [SMALL_STATE(3355)] = 131187, + [SMALL_STATE(3356)] = 131203, + [SMALL_STATE(3357)] = 131225, + [SMALL_STATE(3358)] = 131241, + [SMALL_STATE(3359)] = 131267, + [SMALL_STATE(3360)] = 131283, + [SMALL_STATE(3361)] = 131309, + [SMALL_STATE(3362)] = 131329, + [SMALL_STATE(3363)] = 131361, + [SMALL_STATE(3364)] = 131377, + [SMALL_STATE(3365)] = 131403, + [SMALL_STATE(3366)] = 131435, + [SMALL_STATE(3367)] = 131451, + [SMALL_STATE(3368)] = 131477, + [SMALL_STATE(3369)] = 131503, + [SMALL_STATE(3370)] = 131531, + [SMALL_STATE(3371)] = 131557, + [SMALL_STATE(3372)] = 131573, + [SMALL_STATE(3373)] = 131591, + [SMALL_STATE(3374)] = 131607, + [SMALL_STATE(3375)] = 131633, + [SMALL_STATE(3376)] = 131651, + [SMALL_STATE(3377)] = 131679, + [SMALL_STATE(3378)] = 131695, + [SMALL_STATE(3379)] = 131711, + [SMALL_STATE(3380)] = 131739, + [SMALL_STATE(3381)] = 131769, + [SMALL_STATE(3382)] = 131801, + [SMALL_STATE(3383)] = 131819, + [SMALL_STATE(3384)] = 131835, + [SMALL_STATE(3385)] = 131857, + [SMALL_STATE(3386)] = 131883, + [SMALL_STATE(3387)] = 131899, + [SMALL_STATE(3388)] = 131927, + [SMALL_STATE(3389)] = 131949, + [SMALL_STATE(3390)] = 131981, + [SMALL_STATE(3391)] = 131997, + [SMALL_STATE(3392)] = 132025, + [SMALL_STATE(3393)] = 132053, + [SMALL_STATE(3394)] = 132081, + [SMALL_STATE(3395)] = 132109, + [SMALL_STATE(3396)] = 132141, + [SMALL_STATE(3397)] = 132173, + [SMALL_STATE(3398)] = 132201, + [SMALL_STATE(3399)] = 132217, + [SMALL_STATE(3400)] = 132243, + [SMALL_STATE(3401)] = 132271, + [SMALL_STATE(3402)] = 132287, + [SMALL_STATE(3403)] = 132315, + [SMALL_STATE(3404)] = 132343, + [SMALL_STATE(3405)] = 132375, + [SMALL_STATE(3406)] = 132403, + [SMALL_STATE(3407)] = 132419, + [SMALL_STATE(3408)] = 132451, + [SMALL_STATE(3409)] = 132479, + [SMALL_STATE(3410)] = 132495, + [SMALL_STATE(3411)] = 132511, + [SMALL_STATE(3412)] = 132543, + [SMALL_STATE(3413)] = 132565, + [SMALL_STATE(3414)] = 132597, + [SMALL_STATE(3415)] = 132625, + [SMALL_STATE(3416)] = 132653, + [SMALL_STATE(3417)] = 132685, + [SMALL_STATE(3418)] = 132711, + [SMALL_STATE(3419)] = 132739, + [SMALL_STATE(3420)] = 132767, + [SMALL_STATE(3421)] = 132783, + [SMALL_STATE(3422)] = 132815, + [SMALL_STATE(3423)] = 132843, + [SMALL_STATE(3424)] = 132871, + [SMALL_STATE(3425)] = 132903, + [SMALL_STATE(3426)] = 132931, + [SMALL_STATE(3427)] = 132959, + [SMALL_STATE(3428)] = 132985, + [SMALL_STATE(3429)] = 133013, + [SMALL_STATE(3430)] = 133041, + [SMALL_STATE(3431)] = 133057, + [SMALL_STATE(3432)] = 133073, + [SMALL_STATE(3433)] = 133089, + [SMALL_STATE(3434)] = 133111, + [SMALL_STATE(3435)] = 133143, + [SMALL_STATE(3436)] = 133175, + [SMALL_STATE(3437)] = 133193, + [SMALL_STATE(3438)] = 133209, + [SMALL_STATE(3439)] = 133241, + [SMALL_STATE(3440)] = 133257, + [SMALL_STATE(3441)] = 133285, + [SMALL_STATE(3442)] = 133317, + [SMALL_STATE(3443)] = 133345, + [SMALL_STATE(3444)] = 133363, + [SMALL_STATE(3445)] = 133379, + [SMALL_STATE(3446)] = 133395, + [SMALL_STATE(3447)] = 133423, + [SMALL_STATE(3448)] = 133445, + [SMALL_STATE(3449)] = 133461, + [SMALL_STATE(3450)] = 133489, + [SMALL_STATE(3451)] = 133507, + [SMALL_STATE(3452)] = 133535, + [SMALL_STATE(3453)] = 133563, + [SMALL_STATE(3454)] = 133579, + [SMALL_STATE(3455)] = 133595, + [SMALL_STATE(3456)] = 133611, + [SMALL_STATE(3457)] = 133627, + [SMALL_STATE(3458)] = 133643, + [SMALL_STATE(3459)] = 133671, + [SMALL_STATE(3460)] = 133699, + [SMALL_STATE(3461)] = 133727, + [SMALL_STATE(3462)] = 133755, + [SMALL_STATE(3463)] = 133783, + [SMALL_STATE(3464)] = 133799, + [SMALL_STATE(3465)] = 133820, + [SMALL_STATE(3466)] = 133843, + [SMALL_STATE(3467)] = 133864, + [SMALL_STATE(3468)] = 133885, + [SMALL_STATE(3469)] = 133908, + [SMALL_STATE(3470)] = 133933, + [SMALL_STATE(3471)] = 133956, + [SMALL_STATE(3472)] = 133975, + [SMALL_STATE(3473)] = 134004, + [SMALL_STATE(3474)] = 134029, + [SMALL_STATE(3475)] = 134058, + [SMALL_STATE(3476)] = 134083, + [SMALL_STATE(3477)] = 134108, + [SMALL_STATE(3478)] = 134133, + [SMALL_STATE(3479)] = 134158, + [SMALL_STATE(3480)] = 134183, + [SMALL_STATE(3481)] = 134208, + [SMALL_STATE(3482)] = 134237, + [SMALL_STATE(3483)] = 134252, + [SMALL_STATE(3484)] = 134267, + [SMALL_STATE(3485)] = 134292, + [SMALL_STATE(3486)] = 134315, + [SMALL_STATE(3487)] = 134344, + [SMALL_STATE(3488)] = 134363, + [SMALL_STATE(3489)] = 134386, + [SMALL_STATE(3490)] = 134401, + [SMALL_STATE(3491)] = 134416, + [SMALL_STATE(3492)] = 134441, + [SMALL_STATE(3493)] = 134466, + [SMALL_STATE(3494)] = 134483, + [SMALL_STATE(3495)] = 134500, + [SMALL_STATE(3496)] = 134523, + [SMALL_STATE(3497)] = 134552, + [SMALL_STATE(3498)] = 134575, + [SMALL_STATE(3499)] = 134598, + [SMALL_STATE(3500)] = 134619, + [SMALL_STATE(3501)] = 134640, + [SMALL_STATE(3502)] = 134665, + [SMALL_STATE(3503)] = 134686, + [SMALL_STATE(3504)] = 134703, + [SMALL_STATE(3505)] = 134732, + [SMALL_STATE(3506)] = 134755, + [SMALL_STATE(3507)] = 134770, + [SMALL_STATE(3508)] = 134796, + [SMALL_STATE(3509)] = 134822, + [SMALL_STATE(3510)] = 134844, + [SMALL_STATE(3511)] = 134866, + [SMALL_STATE(3512)] = 134888, + [SMALL_STATE(3513)] = 134910, + [SMALL_STATE(3514)] = 134936, + [SMALL_STATE(3515)] = 134958, + [SMALL_STATE(3516)] = 134980, + [SMALL_STATE(3517)] = 135002, + [SMALL_STATE(3518)] = 135024, + [SMALL_STATE(3519)] = 135046, + [SMALL_STATE(3520)] = 135068, + [SMALL_STATE(3521)] = 135090, + [SMALL_STATE(3522)] = 135108, + [SMALL_STATE(3523)] = 135126, + [SMALL_STATE(3524)] = 135148, + [SMALL_STATE(3525)] = 135166, + [SMALL_STATE(3526)] = 135184, + [SMALL_STATE(3527)] = 135206, + [SMALL_STATE(3528)] = 135224, + [SMALL_STATE(3529)] = 135246, + [SMALL_STATE(3530)] = 135268, + [SMALL_STATE(3531)] = 135290, + [SMALL_STATE(3532)] = 135312, + [SMALL_STATE(3533)] = 135334, + [SMALL_STATE(3534)] = 135356, + [SMALL_STATE(3535)] = 135378, + [SMALL_STATE(3536)] = 135400, + [SMALL_STATE(3537)] = 135422, + [SMALL_STATE(3538)] = 135444, + [SMALL_STATE(3539)] = 135466, + [SMALL_STATE(3540)] = 135488, + [SMALL_STATE(3541)] = 135514, + [SMALL_STATE(3542)] = 135536, + [SMALL_STATE(3543)] = 135556, + [SMALL_STATE(3544)] = 135582, + [SMALL_STATE(3545)] = 135604, + [SMALL_STATE(3546)] = 135630, + [SMALL_STATE(3547)] = 135656, + [SMALL_STATE(3548)] = 135670, + [SMALL_STATE(3549)] = 135692, + [SMALL_STATE(3550)] = 135708, + [SMALL_STATE(3551)] = 135730, + [SMALL_STATE(3552)] = 135752, + [SMALL_STATE(3553)] = 135774, + [SMALL_STATE(3554)] = 135796, + [SMALL_STATE(3555)] = 135818, + [SMALL_STATE(3556)] = 135844, + [SMALL_STATE(3557)] = 135866, + [SMALL_STATE(3558)] = 135888, + [SMALL_STATE(3559)] = 135914, + [SMALL_STATE(3560)] = 135928, + [SMALL_STATE(3561)] = 135950, + [SMALL_STATE(3562)] = 135972, + [SMALL_STATE(3563)] = 135994, + [SMALL_STATE(3564)] = 136020, + [SMALL_STATE(3565)] = 136042, + [SMALL_STATE(3566)] = 136064, + [SMALL_STATE(3567)] = 136086, + [SMALL_STATE(3568)] = 136108, + [SMALL_STATE(3569)] = 136130, + [SMALL_STATE(3570)] = 136152, + [SMALL_STATE(3571)] = 136178, + [SMALL_STATE(3572)] = 136196, + [SMALL_STATE(3573)] = 136222, + [SMALL_STATE(3574)] = 136244, + [SMALL_STATE(3575)] = 136270, + [SMALL_STATE(3576)] = 136296, + [SMALL_STATE(3577)] = 136314, + [SMALL_STATE(3578)] = 136340, + [SMALL_STATE(3579)] = 136366, + [SMALL_STATE(3580)] = 136388, + [SMALL_STATE(3581)] = 136410, + [SMALL_STATE(3582)] = 136436, + [SMALL_STATE(3583)] = 136458, + [SMALL_STATE(3584)] = 136480, + [SMALL_STATE(3585)] = 136502, + [SMALL_STATE(3586)] = 136524, + [SMALL_STATE(3587)] = 136546, + [SMALL_STATE(3588)] = 136560, + [SMALL_STATE(3589)] = 136582, + [SMALL_STATE(3590)] = 136600, + [SMALL_STATE(3591)] = 136626, + [SMALL_STATE(3592)] = 136648, + [SMALL_STATE(3593)] = 136662, + [SMALL_STATE(3594)] = 136688, + [SMALL_STATE(3595)] = 136714, + [SMALL_STATE(3596)] = 136736, + [SMALL_STATE(3597)] = 136758, + [SMALL_STATE(3598)] = 136776, + [SMALL_STATE(3599)] = 136794, + [SMALL_STATE(3600)] = 136820, + [SMALL_STATE(3601)] = 136846, + [SMALL_STATE(3602)] = 136864, + [SMALL_STATE(3603)] = 136886, + [SMALL_STATE(3604)] = 136908, + [SMALL_STATE(3605)] = 136926, + [SMALL_STATE(3606)] = 136952, + [SMALL_STATE(3607)] = 136970, + [SMALL_STATE(3608)] = 136984, + [SMALL_STATE(3609)] = 137002, + [SMALL_STATE(3610)] = 137028, + [SMALL_STATE(3611)] = 137054, + [SMALL_STATE(3612)] = 137076, + [SMALL_STATE(3613)] = 137098, + [SMALL_STATE(3614)] = 137120, + [SMALL_STATE(3615)] = 137134, + [SMALL_STATE(3616)] = 137152, + [SMALL_STATE(3617)] = 137178, + [SMALL_STATE(3618)] = 137200, + [SMALL_STATE(3619)] = 137220, + [SMALL_STATE(3620)] = 137246, + [SMALL_STATE(3621)] = 137272, + [SMALL_STATE(3622)] = 137298, + [SMALL_STATE(3623)] = 137320, + [SMALL_STATE(3624)] = 137342, + [SMALL_STATE(3625)] = 137366, + [SMALL_STATE(3626)] = 137384, + [SMALL_STATE(3627)] = 137402, + [SMALL_STATE(3628)] = 137420, + [SMALL_STATE(3629)] = 137442, + [SMALL_STATE(3630)] = 137464, + [SMALL_STATE(3631)] = 137486, + [SMALL_STATE(3632)] = 137504, + [SMALL_STATE(3633)] = 137522, + [SMALL_STATE(3634)] = 137540, + [SMALL_STATE(3635)] = 137566, + [SMALL_STATE(3636)] = 137588, + [SMALL_STATE(3637)] = 137614, + [SMALL_STATE(3638)] = 137632, + [SMALL_STATE(3639)] = 137658, + [SMALL_STATE(3640)] = 137684, + [SMALL_STATE(3641)] = 137702, + [SMALL_STATE(3642)] = 137724, + [SMALL_STATE(3643)] = 137750, + [SMALL_STATE(3644)] = 137776, + [SMALL_STATE(3645)] = 137790, + [SMALL_STATE(3646)] = 137816, + [SMALL_STATE(3647)] = 137838, + [SMALL_STATE(3648)] = 137862, + [SMALL_STATE(3649)] = 137888, + [SMALL_STATE(3650)] = 137906, + [SMALL_STATE(3651)] = 137932, + [SMALL_STATE(3652)] = 137954, + [SMALL_STATE(3653)] = 137980, + [SMALL_STATE(3654)] = 138002, + [SMALL_STATE(3655)] = 138018, + [SMALL_STATE(3656)] = 138040, + [SMALL_STATE(3657)] = 138062, + [SMALL_STATE(3658)] = 138084, + [SMALL_STATE(3659)] = 138106, + [SMALL_STATE(3660)] = 138124, + [SMALL_STATE(3661)] = 138140, + [SMALL_STATE(3662)] = 138160, + [SMALL_STATE(3663)] = 138176, + [SMALL_STATE(3664)] = 138202, + [SMALL_STATE(3665)] = 138224, + [SMALL_STATE(3666)] = 138246, + [SMALL_STATE(3667)] = 138272, + [SMALL_STATE(3668)] = 138286, + [SMALL_STATE(3669)] = 138300, + [SMALL_STATE(3670)] = 138322, + [SMALL_STATE(3671)] = 138348, + [SMALL_STATE(3672)] = 138370, + [SMALL_STATE(3673)] = 138392, + [SMALL_STATE(3674)] = 138414, + [SMALL_STATE(3675)] = 138436, + [SMALL_STATE(3676)] = 138462, + [SMALL_STATE(3677)] = 138488, + [SMALL_STATE(3678)] = 138514, + [SMALL_STATE(3679)] = 138536, + [SMALL_STATE(3680)] = 138558, + [SMALL_STATE(3681)] = 138580, + [SMALL_STATE(3682)] = 138602, + [SMALL_STATE(3683)] = 138624, + [SMALL_STATE(3684)] = 138646, + [SMALL_STATE(3685)] = 138660, + [SMALL_STATE(3686)] = 138686, + [SMALL_STATE(3687)] = 138708, + [SMALL_STATE(3688)] = 138722, + [SMALL_STATE(3689)] = 138748, + [SMALL_STATE(3690)] = 138774, + [SMALL_STATE(3691)] = 138796, + [SMALL_STATE(3692)] = 138818, + [SMALL_STATE(3693)] = 138840, + [SMALL_STATE(3694)] = 138866, + [SMALL_STATE(3695)] = 138880, + [SMALL_STATE(3696)] = 138906, + [SMALL_STATE(3697)] = 138922, + [SMALL_STATE(3698)] = 138938, + [SMALL_STATE(3699)] = 138956, + [SMALL_STATE(3700)] = 138978, + [SMALL_STATE(3701)] = 139000, + [SMALL_STATE(3702)] = 139022, + [SMALL_STATE(3703)] = 139036, + [SMALL_STATE(3704)] = 139058, + [SMALL_STATE(3705)] = 139080, + [SMALL_STATE(3706)] = 139102, + [SMALL_STATE(3707)] = 139124, + [SMALL_STATE(3708)] = 139138, + [SMALL_STATE(3709)] = 139160, + [SMALL_STATE(3710)] = 139186, + [SMALL_STATE(3711)] = 139208, + [SMALL_STATE(3712)] = 139228, + [SMALL_STATE(3713)] = 139250, + [SMALL_STATE(3714)] = 139266, + [SMALL_STATE(3715)] = 139284, + [SMALL_STATE(3716)] = 139306, + [SMALL_STATE(3717)] = 139332, + [SMALL_STATE(3718)] = 139358, + [SMALL_STATE(3719)] = 139380, + [SMALL_STATE(3720)] = 139406, + [SMALL_STATE(3721)] = 139432, + [SMALL_STATE(3722)] = 139454, + [SMALL_STATE(3723)] = 139470, + [SMALL_STATE(3724)] = 139496, + [SMALL_STATE(3725)] = 139518, + [SMALL_STATE(3726)] = 139540, + [SMALL_STATE(3727)] = 139562, + [SMALL_STATE(3728)] = 139584, + [SMALL_STATE(3729)] = 139606, + [SMALL_STATE(3730)] = 139628, + [SMALL_STATE(3731)] = 139648, + [SMALL_STATE(3732)] = 139668, + [SMALL_STATE(3733)] = 139688, + [SMALL_STATE(3734)] = 139708, + [SMALL_STATE(3735)] = 139730, + [SMALL_STATE(3736)] = 139752, + [SMALL_STATE(3737)] = 139774, + [SMALL_STATE(3738)] = 139796, + [SMALL_STATE(3739)] = 139818, + [SMALL_STATE(3740)] = 139844, + [SMALL_STATE(3741)] = 139858, + [SMALL_STATE(3742)] = 139880, + [SMALL_STATE(3743)] = 139898, + [SMALL_STATE(3744)] = 139912, + [SMALL_STATE(3745)] = 139938, + [SMALL_STATE(3746)] = 139960, + [SMALL_STATE(3747)] = 139982, + [SMALL_STATE(3748)] = 140004, + [SMALL_STATE(3749)] = 140026, + [SMALL_STATE(3750)] = 140044, + [SMALL_STATE(3751)] = 140061, + [SMALL_STATE(3752)] = 140078, + [SMALL_STATE(3753)] = 140101, + [SMALL_STATE(3754)] = 140124, + [SMALL_STATE(3755)] = 140141, + [SMALL_STATE(3756)] = 140164, + [SMALL_STATE(3757)] = 140181, + [SMALL_STATE(3758)] = 140198, + [SMALL_STATE(3759)] = 140217, + [SMALL_STATE(3760)] = 140234, + [SMALL_STATE(3761)] = 140247, + [SMALL_STATE(3762)] = 140270, + [SMALL_STATE(3763)] = 140283, + [SMALL_STATE(3764)] = 140302, + [SMALL_STATE(3765)] = 140321, + [SMALL_STATE(3766)] = 140338, + [SMALL_STATE(3767)] = 140357, + [SMALL_STATE(3768)] = 140372, + [SMALL_STATE(3769)] = 140395, + [SMALL_STATE(3770)] = 140414, + [SMALL_STATE(3771)] = 140431, + [SMALL_STATE(3772)] = 140446, + [SMALL_STATE(3773)] = 140459, + [SMALL_STATE(3774)] = 140480, + [SMALL_STATE(3775)] = 140503, + [SMALL_STATE(3776)] = 140526, + [SMALL_STATE(3777)] = 140539, + [SMALL_STATE(3778)] = 140556, + [SMALL_STATE(3779)] = 140577, + [SMALL_STATE(3780)] = 140590, + [SMALL_STATE(3781)] = 140613, + [SMALL_STATE(3782)] = 140636, + [SMALL_STATE(3783)] = 140659, + [SMALL_STATE(3784)] = 140676, + [SMALL_STATE(3785)] = 140699, + [SMALL_STATE(3786)] = 140718, + [SMALL_STATE(3787)] = 140735, + [SMALL_STATE(3788)] = 140758, + [SMALL_STATE(3789)] = 140781, + [SMALL_STATE(3790)] = 140794, + [SMALL_STATE(3791)] = 140811, + [SMALL_STATE(3792)] = 140830, + [SMALL_STATE(3793)] = 140847, + [SMALL_STATE(3794)] = 140864, + [SMALL_STATE(3795)] = 140881, + [SMALL_STATE(3796)] = 140896, + [SMALL_STATE(3797)] = 140913, + [SMALL_STATE(3798)] = 140930, + [SMALL_STATE(3799)] = 140953, + [SMALL_STATE(3800)] = 140970, + [SMALL_STATE(3801)] = 140987, + [SMALL_STATE(3802)] = 141004, + [SMALL_STATE(3803)] = 141027, + [SMALL_STATE(3804)] = 141044, + [SMALL_STATE(3805)] = 141067, + [SMALL_STATE(3806)] = 141080, + [SMALL_STATE(3807)] = 141097, + [SMALL_STATE(3808)] = 141114, + [SMALL_STATE(3809)] = 141131, + [SMALL_STATE(3810)] = 141148, + [SMALL_STATE(3811)] = 141165, + [SMALL_STATE(3812)] = 141178, + [SMALL_STATE(3813)] = 141201, + [SMALL_STATE(3814)] = 141218, + [SMALL_STATE(3815)] = 141235, + [SMALL_STATE(3816)] = 141252, + [SMALL_STATE(3817)] = 141275, + [SMALL_STATE(3818)] = 141294, + [SMALL_STATE(3819)] = 141317, + [SMALL_STATE(3820)] = 141334, + [SMALL_STATE(3821)] = 141351, + [SMALL_STATE(3822)] = 141374, + [SMALL_STATE(3823)] = 141397, + [SMALL_STATE(3824)] = 141420, + [SMALL_STATE(3825)] = 141439, + [SMALL_STATE(3826)] = 141452, + [SMALL_STATE(3827)] = 141475, + [SMALL_STATE(3828)] = 141494, + [SMALL_STATE(3829)] = 141517, + [SMALL_STATE(3830)] = 141536, + [SMALL_STATE(3831)] = 141559, + [SMALL_STATE(3832)] = 141582, + [SMALL_STATE(3833)] = 141601, + [SMALL_STATE(3834)] = 141624, + [SMALL_STATE(3835)] = 141641, + [SMALL_STATE(3836)] = 141660, + [SMALL_STATE(3837)] = 141683, + [SMALL_STATE(3838)] = 141706, + [SMALL_STATE(3839)] = 141725, + [SMALL_STATE(3840)] = 141742, + [SMALL_STATE(3841)] = 141765, + [SMALL_STATE(3842)] = 141788, + [SMALL_STATE(3843)] = 141811, + [SMALL_STATE(3844)] = 141834, + [SMALL_STATE(3845)] = 141851, + [SMALL_STATE(3846)] = 141874, + [SMALL_STATE(3847)] = 141897, + [SMALL_STATE(3848)] = 141914, + [SMALL_STATE(3849)] = 141931, + [SMALL_STATE(3850)] = 141950, + [SMALL_STATE(3851)] = 141965, + [SMALL_STATE(3852)] = 141988, + [SMALL_STATE(3853)] = 142007, + [SMALL_STATE(3854)] = 142030, + [SMALL_STATE(3855)] = 142053, + [SMALL_STATE(3856)] = 142070, + [SMALL_STATE(3857)] = 142093, + [SMALL_STATE(3858)] = 142112, + [SMALL_STATE(3859)] = 142135, + [SMALL_STATE(3860)] = 142158, + [SMALL_STATE(3861)] = 142181, + [SMALL_STATE(3862)] = 142200, + [SMALL_STATE(3863)] = 142213, + [SMALL_STATE(3864)] = 142236, + [SMALL_STATE(3865)] = 142253, + [SMALL_STATE(3866)] = 142276, + [SMALL_STATE(3867)] = 142299, + [SMALL_STATE(3868)] = 142322, + [SMALL_STATE(3869)] = 142339, + [SMALL_STATE(3870)] = 142360, + [SMALL_STATE(3871)] = 142377, + [SMALL_STATE(3872)] = 142400, + [SMALL_STATE(3873)] = 142423, + [SMALL_STATE(3874)] = 142446, + [SMALL_STATE(3875)] = 142469, + [SMALL_STATE(3876)] = 142486, + [SMALL_STATE(3877)] = 142499, + [SMALL_STATE(3878)] = 142518, + [SMALL_STATE(3879)] = 142541, + [SMALL_STATE(3880)] = 142558, + [SMALL_STATE(3881)] = 142581, + [SMALL_STATE(3882)] = 142594, + [SMALL_STATE(3883)] = 142617, + [SMALL_STATE(3884)] = 142640, + [SMALL_STATE(3885)] = 142657, + [SMALL_STATE(3886)] = 142674, + [SMALL_STATE(3887)] = 142687, + [SMALL_STATE(3888)] = 142704, + [SMALL_STATE(3889)] = 142727, + [SMALL_STATE(3890)] = 142744, + [SMALL_STATE(3891)] = 142767, + [SMALL_STATE(3892)] = 142784, + [SMALL_STATE(3893)] = 142797, + [SMALL_STATE(3894)] = 142814, + [SMALL_STATE(3895)] = 142837, + [SMALL_STATE(3896)] = 142854, + [SMALL_STATE(3897)] = 142871, + [SMALL_STATE(3898)] = 142894, + [SMALL_STATE(3899)] = 142917, + [SMALL_STATE(3900)] = 142936, + [SMALL_STATE(3901)] = 142953, + [SMALL_STATE(3902)] = 142971, + [SMALL_STATE(3903)] = 142987, + [SMALL_STATE(3904)] = 143005, + [SMALL_STATE(3905)] = 143021, + [SMALL_STATE(3906)] = 143037, + [SMALL_STATE(3907)] = 143057, + [SMALL_STATE(3908)] = 143073, + [SMALL_STATE(3909)] = 143089, + [SMALL_STATE(3910)] = 143105, + [SMALL_STATE(3911)] = 143117, + [SMALL_STATE(3912)] = 143133, + [SMALL_STATE(3913)] = 143149, + [SMALL_STATE(3914)] = 143165, + [SMALL_STATE(3915)] = 143177, + [SMALL_STATE(3916)] = 143193, + [SMALL_STATE(3917)] = 143209, + [SMALL_STATE(3918)] = 143221, + [SMALL_STATE(3919)] = 143233, + [SMALL_STATE(3920)] = 143245, + [SMALL_STATE(3921)] = 143257, + [SMALL_STATE(3922)] = 143269, + [SMALL_STATE(3923)] = 143281, + [SMALL_STATE(3924)] = 143299, + [SMALL_STATE(3925)] = 143311, + [SMALL_STATE(3926)] = 143323, + [SMALL_STATE(3927)] = 143335, + [SMALL_STATE(3928)] = 143347, + [SMALL_STATE(3929)] = 143359, + [SMALL_STATE(3930)] = 143371, + [SMALL_STATE(3931)] = 143383, + [SMALL_STATE(3932)] = 143395, + [SMALL_STATE(3933)] = 143407, + [SMALL_STATE(3934)] = 143419, + [SMALL_STATE(3935)] = 143431, + [SMALL_STATE(3936)] = 143443, + [SMALL_STATE(3937)] = 143459, + [SMALL_STATE(3938)] = 143475, + [SMALL_STATE(3939)] = 143491, + [SMALL_STATE(3940)] = 143511, + [SMALL_STATE(3941)] = 143527, + [SMALL_STATE(3942)] = 143539, + [SMALL_STATE(3943)] = 143555, + [SMALL_STATE(3944)] = 143567, + [SMALL_STATE(3945)] = 143587, + [SMALL_STATE(3946)] = 143599, + [SMALL_STATE(3947)] = 143611, + [SMALL_STATE(3948)] = 143627, + [SMALL_STATE(3949)] = 143643, + [SMALL_STATE(3950)] = 143659, + [SMALL_STATE(3951)] = 143675, + [SMALL_STATE(3952)] = 143695, + [SMALL_STATE(3953)] = 143711, + [SMALL_STATE(3954)] = 143723, + [SMALL_STATE(3955)] = 143735, + [SMALL_STATE(3956)] = 143747, + [SMALL_STATE(3957)] = 143763, + [SMALL_STATE(3958)] = 143779, + [SMALL_STATE(3959)] = 143795, + [SMALL_STATE(3960)] = 143811, + [SMALL_STATE(3961)] = 143827, + [SMALL_STATE(3962)] = 143847, + [SMALL_STATE(3963)] = 143865, + [SMALL_STATE(3964)] = 143881, + [SMALL_STATE(3965)] = 143901, + [SMALL_STATE(3966)] = 143917, + [SMALL_STATE(3967)] = 143933, + [SMALL_STATE(3968)] = 143949, + [SMALL_STATE(3969)] = 143965, + [SMALL_STATE(3970)] = 143981, + [SMALL_STATE(3971)] = 143997, + [SMALL_STATE(3972)] = 144013, + [SMALL_STATE(3973)] = 144029, + [SMALL_STATE(3974)] = 144045, + [SMALL_STATE(3975)] = 144061, + [SMALL_STATE(3976)] = 144077, + [SMALL_STATE(3977)] = 144097, + [SMALL_STATE(3978)] = 144113, + [SMALL_STATE(3979)] = 144129, + [SMALL_STATE(3980)] = 144141, + [SMALL_STATE(3981)] = 144161, + [SMALL_STATE(3982)] = 144175, + [SMALL_STATE(3983)] = 144187, + [SMALL_STATE(3984)] = 144205, + [SMALL_STATE(3985)] = 144217, + [SMALL_STATE(3986)] = 144229, + [SMALL_STATE(3987)] = 144249, + [SMALL_STATE(3988)] = 144269, + [SMALL_STATE(3989)] = 144285, + [SMALL_STATE(3990)] = 144301, + [SMALL_STATE(3991)] = 144317, + [SMALL_STATE(3992)] = 144333, + [SMALL_STATE(3993)] = 144345, + [SMALL_STATE(3994)] = 144361, + [SMALL_STATE(3995)] = 144373, + [SMALL_STATE(3996)] = 144385, + [SMALL_STATE(3997)] = 144397, + [SMALL_STATE(3998)] = 144411, + [SMALL_STATE(3999)] = 144425, + [SMALL_STATE(4000)] = 144437, + [SMALL_STATE(4001)] = 144449, + [SMALL_STATE(4002)] = 144469, + [SMALL_STATE(4003)] = 144481, + [SMALL_STATE(4004)] = 144497, + [SMALL_STATE(4005)] = 144509, + [SMALL_STATE(4006)] = 144527, + [SMALL_STATE(4007)] = 144543, + [SMALL_STATE(4008)] = 144557, + [SMALL_STATE(4009)] = 144573, + [SMALL_STATE(4010)] = 144593, + [SMALL_STATE(4011)] = 144613, + [SMALL_STATE(4012)] = 144625, + [SMALL_STATE(4013)] = 144645, + [SMALL_STATE(4014)] = 144665, + [SMALL_STATE(4015)] = 144681, + [SMALL_STATE(4016)] = 144697, + [SMALL_STATE(4017)] = 144709, + [SMALL_STATE(4018)] = 144721, + [SMALL_STATE(4019)] = 144733, + [SMALL_STATE(4020)] = 144749, + [SMALL_STATE(4021)] = 144761, + [SMALL_STATE(4022)] = 144777, + [SMALL_STATE(4023)] = 144793, + [SMALL_STATE(4024)] = 144805, + [SMALL_STATE(4025)] = 144825, + [SMALL_STATE(4026)] = 144837, + [SMALL_STATE(4027)] = 144849, + [SMALL_STATE(4028)] = 144861, + [SMALL_STATE(4029)] = 144877, + [SMALL_STATE(4030)] = 144889, + [SMALL_STATE(4031)] = 144901, + [SMALL_STATE(4032)] = 144921, + [SMALL_STATE(4033)] = 144933, + [SMALL_STATE(4034)] = 144945, + [SMALL_STATE(4035)] = 144957, + [SMALL_STATE(4036)] = 144969, + [SMALL_STATE(4037)] = 144981, + [SMALL_STATE(4038)] = 144993, + [SMALL_STATE(4039)] = 145013, + [SMALL_STATE(4040)] = 145033, + [SMALL_STATE(4041)] = 145045, + [SMALL_STATE(4042)] = 145057, + [SMALL_STATE(4043)] = 145077, + [SMALL_STATE(4044)] = 145089, + [SMALL_STATE(4045)] = 145101, + [SMALL_STATE(4046)] = 145113, + [SMALL_STATE(4047)] = 145131, + [SMALL_STATE(4048)] = 145143, + [SMALL_STATE(4049)] = 145155, + [SMALL_STATE(4050)] = 145171, + [SMALL_STATE(4051)] = 145183, + [SMALL_STATE(4052)] = 145195, + [SMALL_STATE(4053)] = 145207, + [SMALL_STATE(4054)] = 145227, + [SMALL_STATE(4055)] = 145243, + [SMALL_STATE(4056)] = 145255, + [SMALL_STATE(4057)] = 145271, + [SMALL_STATE(4058)] = 145289, + [SMALL_STATE(4059)] = 145301, + [SMALL_STATE(4060)] = 145317, + [SMALL_STATE(4061)] = 145333, + [SMALL_STATE(4062)] = 145345, + [SMALL_STATE(4063)] = 145365, + [SMALL_STATE(4064)] = 145377, + [SMALL_STATE(4065)] = 145393, + [SMALL_STATE(4066)] = 145409, + [SMALL_STATE(4067)] = 145425, + [SMALL_STATE(4068)] = 145437, + [SMALL_STATE(4069)] = 145449, + [SMALL_STATE(4070)] = 145461, + [SMALL_STATE(4071)] = 145473, + [SMALL_STATE(4072)] = 145485, + [SMALL_STATE(4073)] = 145497, + [SMALL_STATE(4074)] = 145509, + [SMALL_STATE(4075)] = 145521, + [SMALL_STATE(4076)] = 145537, + [SMALL_STATE(4077)] = 145549, + [SMALL_STATE(4078)] = 145565, + [SMALL_STATE(4079)] = 145577, + [SMALL_STATE(4080)] = 145593, + [SMALL_STATE(4081)] = 145609, + [SMALL_STATE(4082)] = 145625, + [SMALL_STATE(4083)] = 145641, + [SMALL_STATE(4084)] = 145653, + [SMALL_STATE(4085)] = 145665, + [SMALL_STATE(4086)] = 145683, + [SMALL_STATE(4087)] = 145699, + [SMALL_STATE(4088)] = 145715, + [SMALL_STATE(4089)] = 145727, + [SMALL_STATE(4090)] = 145739, + [SMALL_STATE(4091)] = 145751, + [SMALL_STATE(4092)] = 145763, + [SMALL_STATE(4093)] = 145781, + [SMALL_STATE(4094)] = 145797, + [SMALL_STATE(4095)] = 145817, + [SMALL_STATE(4096)] = 145833, + [SMALL_STATE(4097)] = 145849, + [SMALL_STATE(4098)] = 145865, + [SMALL_STATE(4099)] = 145881, + [SMALL_STATE(4100)] = 145897, + [SMALL_STATE(4101)] = 145913, + [SMALL_STATE(4102)] = 145929, + [SMALL_STATE(4103)] = 145945, + [SMALL_STATE(4104)] = 145961, + [SMALL_STATE(4105)] = 145979, + [SMALL_STATE(4106)] = 145995, + [SMALL_STATE(4107)] = 146011, + [SMALL_STATE(4108)] = 146029, + [SMALL_STATE(4109)] = 146047, + [SMALL_STATE(4110)] = 146063, + [SMALL_STATE(4111)] = 146079, + [SMALL_STATE(4112)] = 146095, + [SMALL_STATE(4113)] = 146113, + [SMALL_STATE(4114)] = 146129, + [SMALL_STATE(4115)] = 146145, + [SMALL_STATE(4116)] = 146161, + [SMALL_STATE(4117)] = 146177, + [SMALL_STATE(4118)] = 146193, + [SMALL_STATE(4119)] = 146209, + [SMALL_STATE(4120)] = 146225, + [SMALL_STATE(4121)] = 146241, + [SMALL_STATE(4122)] = 146257, + [SMALL_STATE(4123)] = 146273, + [SMALL_STATE(4124)] = 146289, + [SMALL_STATE(4125)] = 146305, + [SMALL_STATE(4126)] = 146321, + [SMALL_STATE(4127)] = 146337, + [SMALL_STATE(4128)] = 146353, + [SMALL_STATE(4129)] = 146369, + [SMALL_STATE(4130)] = 146387, + [SMALL_STATE(4131)] = 146403, + [SMALL_STATE(4132)] = 146419, + [SMALL_STATE(4133)] = 146437, + [SMALL_STATE(4134)] = 146453, + [SMALL_STATE(4135)] = 146469, + [SMALL_STATE(4136)] = 146485, + [SMALL_STATE(4137)] = 146503, + [SMALL_STATE(4138)] = 146521, + [SMALL_STATE(4139)] = 146537, + [SMALL_STATE(4140)] = 146553, + [SMALL_STATE(4141)] = 146569, + [SMALL_STATE(4142)] = 146585, + [SMALL_STATE(4143)] = 146601, + [SMALL_STATE(4144)] = 146619, + [SMALL_STATE(4145)] = 146635, + [SMALL_STATE(4146)] = 146651, + [SMALL_STATE(4147)] = 146667, + [SMALL_STATE(4148)] = 146687, + [SMALL_STATE(4149)] = 146699, + [SMALL_STATE(4150)] = 146715, + [SMALL_STATE(4151)] = 146735, + [SMALL_STATE(4152)] = 146755, + [SMALL_STATE(4153)] = 146771, + [SMALL_STATE(4154)] = 146791, + [SMALL_STATE(4155)] = 146811, + [SMALL_STATE(4156)] = 146827, + [SMALL_STATE(4157)] = 146843, + [SMALL_STATE(4158)] = 146863, + [SMALL_STATE(4159)] = 146879, + [SMALL_STATE(4160)] = 146895, + [SMALL_STATE(4161)] = 146915, + [SMALL_STATE(4162)] = 146935, + [SMALL_STATE(4163)] = 146951, + [SMALL_STATE(4164)] = 146969, + [SMALL_STATE(4165)] = 146981, + [SMALL_STATE(4166)] = 146997, + [SMALL_STATE(4167)] = 147013, + [SMALL_STATE(4168)] = 147029, + [SMALL_STATE(4169)] = 147045, + [SMALL_STATE(4170)] = 147061, + [SMALL_STATE(4171)] = 147077, + [SMALL_STATE(4172)] = 147097, + [SMALL_STATE(4173)] = 147117, + [SMALL_STATE(4174)] = 147137, + [SMALL_STATE(4175)] = 147157, + [SMALL_STATE(4176)] = 147177, + [SMALL_STATE(4177)] = 147197, + [SMALL_STATE(4178)] = 147209, + [SMALL_STATE(4179)] = 147229, + [SMALL_STATE(4180)] = 147241, + [SMALL_STATE(4181)] = 147259, + [SMALL_STATE(4182)] = 147271, + [SMALL_STATE(4183)] = 147283, + [SMALL_STATE(4184)] = 147299, + [SMALL_STATE(4185)] = 147319, + [SMALL_STATE(4186)] = 147339, + [SMALL_STATE(4187)] = 147351, + [SMALL_STATE(4188)] = 147363, + [SMALL_STATE(4189)] = 147379, + [SMALL_STATE(4190)] = 147399, + [SMALL_STATE(4191)] = 147419, + [SMALL_STATE(4192)] = 147439, + [SMALL_STATE(4193)] = 147455, + [SMALL_STATE(4194)] = 147475, + [SMALL_STATE(4195)] = 147491, + [SMALL_STATE(4196)] = 147507, + [SMALL_STATE(4197)] = 147527, + [SMALL_STATE(4198)] = 147547, + [SMALL_STATE(4199)] = 147563, + [SMALL_STATE(4200)] = 147579, + [SMALL_STATE(4201)] = 147599, + [SMALL_STATE(4202)] = 147619, + [SMALL_STATE(4203)] = 147637, + [SMALL_STATE(4204)] = 147657, + [SMALL_STATE(4205)] = 147673, + [SMALL_STATE(4206)] = 147689, + [SMALL_STATE(4207)] = 147705, + [SMALL_STATE(4208)] = 147725, + [SMALL_STATE(4209)] = 147745, + [SMALL_STATE(4210)] = 147761, + [SMALL_STATE(4211)] = 147775, + [SMALL_STATE(4212)] = 147791, + [SMALL_STATE(4213)] = 147807, + [SMALL_STATE(4214)] = 147823, + [SMALL_STATE(4215)] = 147839, + [SMALL_STATE(4216)] = 147855, + [SMALL_STATE(4217)] = 147871, + [SMALL_STATE(4218)] = 147891, + [SMALL_STATE(4219)] = 147909, + [SMALL_STATE(4220)] = 147925, + [SMALL_STATE(4221)] = 147937, + [SMALL_STATE(4222)] = 147953, + [SMALL_STATE(4223)] = 147973, + [SMALL_STATE(4224)] = 147985, + [SMALL_STATE(4225)] = 148005, + [SMALL_STATE(4226)] = 148025, + [SMALL_STATE(4227)] = 148037, + [SMALL_STATE(4228)] = 148049, + [SMALL_STATE(4229)] = 148069, + [SMALL_STATE(4230)] = 148089, + [SMALL_STATE(4231)] = 148105, + [SMALL_STATE(4232)] = 148121, + [SMALL_STATE(4233)] = 148137, + [SMALL_STATE(4234)] = 148153, + [SMALL_STATE(4235)] = 148169, + [SMALL_STATE(4236)] = 148185, + [SMALL_STATE(4237)] = 148201, + [SMALL_STATE(4238)] = 148217, + [SMALL_STATE(4239)] = 148233, + [SMALL_STATE(4240)] = 148249, + [SMALL_STATE(4241)] = 148265, + [SMALL_STATE(4242)] = 148281, + [SMALL_STATE(4243)] = 148297, + [SMALL_STATE(4244)] = 148313, + [SMALL_STATE(4245)] = 148329, + [SMALL_STATE(4246)] = 148345, + [SMALL_STATE(4247)] = 148361, + [SMALL_STATE(4248)] = 148379, + [SMALL_STATE(4249)] = 148399, + [SMALL_STATE(4250)] = 148419, + [SMALL_STATE(4251)] = 148439, + [SMALL_STATE(4252)] = 148451, + [SMALL_STATE(4253)] = 148463, + [SMALL_STATE(4254)] = 148483, + [SMALL_STATE(4255)] = 148501, + [SMALL_STATE(4256)] = 148513, + [SMALL_STATE(4257)] = 148533, + [SMALL_STATE(4258)] = 148545, + [SMALL_STATE(4259)] = 148565, + [SMALL_STATE(4260)] = 148577, + [SMALL_STATE(4261)] = 148597, + [SMALL_STATE(4262)] = 148609, + [SMALL_STATE(4263)] = 148621, + [SMALL_STATE(4264)] = 148637, + [SMALL_STATE(4265)] = 148653, + [SMALL_STATE(4266)] = 148665, + [SMALL_STATE(4267)] = 148677, + [SMALL_STATE(4268)] = 148689, + [SMALL_STATE(4269)] = 148705, + [SMALL_STATE(4270)] = 148721, + [SMALL_STATE(4271)] = 148733, + [SMALL_STATE(4272)] = 148745, + [SMALL_STATE(4273)] = 148757, + [SMALL_STATE(4274)] = 148777, + [SMALL_STATE(4275)] = 148789, + [SMALL_STATE(4276)] = 148801, + [SMALL_STATE(4277)] = 148815, + [SMALL_STATE(4278)] = 148831, + [SMALL_STATE(4279)] = 148843, + [SMALL_STATE(4280)] = 148863, + [SMALL_STATE(4281)] = 148875, + [SMALL_STATE(4282)] = 148887, + [SMALL_STATE(4283)] = 148899, + [SMALL_STATE(4284)] = 148911, + [SMALL_STATE(4285)] = 148923, + [SMALL_STATE(4286)] = 148935, + [SMALL_STATE(4287)] = 148947, + [SMALL_STATE(4288)] = 148959, + [SMALL_STATE(4289)] = 148971, + [SMALL_STATE(4290)] = 148989, + [SMALL_STATE(4291)] = 149007, + [SMALL_STATE(4292)] = 149027, + [SMALL_STATE(4293)] = 149047, + [SMALL_STATE(4294)] = 149067, + [SMALL_STATE(4295)] = 149079, + [SMALL_STATE(4296)] = 149095, + [SMALL_STATE(4297)] = 149113, + [SMALL_STATE(4298)] = 149129, + [SMALL_STATE(4299)] = 149149, + [SMALL_STATE(4300)] = 149165, + [SMALL_STATE(4301)] = 149181, + [SMALL_STATE(4302)] = 149201, + [SMALL_STATE(4303)] = 149217, + [SMALL_STATE(4304)] = 149229, + [SMALL_STATE(4305)] = 149249, + [SMALL_STATE(4306)] = 149269, + [SMALL_STATE(4307)] = 149289, + [SMALL_STATE(4308)] = 149301, + [SMALL_STATE(4309)] = 149321, + [SMALL_STATE(4310)] = 149335, + [SMALL_STATE(4311)] = 149347, + [SMALL_STATE(4312)] = 149359, + [SMALL_STATE(4313)] = 149371, + [SMALL_STATE(4314)] = 149387, + [SMALL_STATE(4315)] = 149403, + [SMALL_STATE(4316)] = 149415, + [SMALL_STATE(4317)] = 149427, + [SMALL_STATE(4318)] = 149443, + [SMALL_STATE(4319)] = 149455, + [SMALL_STATE(4320)] = 149475, + [SMALL_STATE(4321)] = 149495, + [SMALL_STATE(4322)] = 149511, + [SMALL_STATE(4323)] = 149527, + [SMALL_STATE(4324)] = 149547, + [SMALL_STATE(4325)] = 149559, + [SMALL_STATE(4326)] = 149575, + [SMALL_STATE(4327)] = 149591, + [SMALL_STATE(4328)] = 149603, + [SMALL_STATE(4329)] = 149619, + [SMALL_STATE(4330)] = 149639, + [SMALL_STATE(4331)] = 149651, + [SMALL_STATE(4332)] = 149667, + [SMALL_STATE(4333)] = 149683, + [SMALL_STATE(4334)] = 149699, + [SMALL_STATE(4335)] = 149715, + [SMALL_STATE(4336)] = 149735, + [SMALL_STATE(4337)] = 149751, + [SMALL_STATE(4338)] = 149767, + [SMALL_STATE(4339)] = 149783, + [SMALL_STATE(4340)] = 149795, + [SMALL_STATE(4341)] = 149807, + [SMALL_STATE(4342)] = 149819, + [SMALL_STATE(4343)] = 149831, + [SMALL_STATE(4344)] = 149843, + [SMALL_STATE(4345)] = 149859, + [SMALL_STATE(4346)] = 149875, + [SMALL_STATE(4347)] = 149891, + [SMALL_STATE(4348)] = 149907, + [SMALL_STATE(4349)] = 149927, + [SMALL_STATE(4350)] = 149943, + [SMALL_STATE(4351)] = 149959, + [SMALL_STATE(4352)] = 149975, + [SMALL_STATE(4353)] = 149991, + [SMALL_STATE(4354)] = 150007, + [SMALL_STATE(4355)] = 150027, + [SMALL_STATE(4356)] = 150047, + [SMALL_STATE(4357)] = 150063, + [SMALL_STATE(4358)] = 150079, + [SMALL_STATE(4359)] = 150095, + [SMALL_STATE(4360)] = 150115, + [SMALL_STATE(4361)] = 150131, + [SMALL_STATE(4362)] = 150147, + [SMALL_STATE(4363)] = 150163, + [SMALL_STATE(4364)] = 150179, + [SMALL_STATE(4365)] = 150195, + [SMALL_STATE(4366)] = 150211, + [SMALL_STATE(4367)] = 150227, + [SMALL_STATE(4368)] = 150243, + [SMALL_STATE(4369)] = 150259, + [SMALL_STATE(4370)] = 150275, + [SMALL_STATE(4371)] = 150291, + [SMALL_STATE(4372)] = 150303, + [SMALL_STATE(4373)] = 150319, + [SMALL_STATE(4374)] = 150335, + [SMALL_STATE(4375)] = 150347, + [SMALL_STATE(4376)] = 150359, + [SMALL_STATE(4377)] = 150375, + [SMALL_STATE(4378)] = 150391, + [SMALL_STATE(4379)] = 150407, + [SMALL_STATE(4380)] = 150423, + [SMALL_STATE(4381)] = 150440, + [SMALL_STATE(4382)] = 150457, + [SMALL_STATE(4383)] = 150474, + [SMALL_STATE(4384)] = 150489, + [SMALL_STATE(4385)] = 150506, + [SMALL_STATE(4386)] = 150521, + [SMALL_STATE(4387)] = 150538, + [SMALL_STATE(4388)] = 150555, + [SMALL_STATE(4389)] = 150572, + [SMALL_STATE(4390)] = 150585, + [SMALL_STATE(4391)] = 150602, + [SMALL_STATE(4392)] = 150619, + [SMALL_STATE(4393)] = 150636, + [SMALL_STATE(4394)] = 150653, + [SMALL_STATE(4395)] = 150670, + [SMALL_STATE(4396)] = 150687, + [SMALL_STATE(4397)] = 150704, + [SMALL_STATE(4398)] = 150721, + [SMALL_STATE(4399)] = 150738, + [SMALL_STATE(4400)] = 150755, + [SMALL_STATE(4401)] = 150772, + [SMALL_STATE(4402)] = 150789, + [SMALL_STATE(4403)] = 150806, + [SMALL_STATE(4404)] = 150819, + [SMALL_STATE(4405)] = 150836, + [SMALL_STATE(4406)] = 150853, + [SMALL_STATE(4407)] = 150870, + [SMALL_STATE(4408)] = 150887, + [SMALL_STATE(4409)] = 150904, + [SMALL_STATE(4410)] = 150921, + [SMALL_STATE(4411)] = 150938, + [SMALL_STATE(4412)] = 150955, + [SMALL_STATE(4413)] = 150972, + [SMALL_STATE(4414)] = 150989, + [SMALL_STATE(4415)] = 151004, + [SMALL_STATE(4416)] = 151021, + [SMALL_STATE(4417)] = 151036, + [SMALL_STATE(4418)] = 151051, + [SMALL_STATE(4419)] = 151066, + [SMALL_STATE(4420)] = 151081, + [SMALL_STATE(4421)] = 151098, + [SMALL_STATE(4422)] = 151111, + [SMALL_STATE(4423)] = 151128, + [SMALL_STATE(4424)] = 151143, + [SMALL_STATE(4425)] = 151160, + [SMALL_STATE(4426)] = 151173, + [SMALL_STATE(4427)] = 151188, + [SMALL_STATE(4428)] = 151203, + [SMALL_STATE(4429)] = 151220, + [SMALL_STATE(4430)] = 151237, + [SMALL_STATE(4431)] = 151254, + [SMALL_STATE(4432)] = 151269, + [SMALL_STATE(4433)] = 151286, + [SMALL_STATE(4434)] = 151303, + [SMALL_STATE(4435)] = 151320, + [SMALL_STATE(4436)] = 151337, + [SMALL_STATE(4437)] = 151354, + [SMALL_STATE(4438)] = 151371, + [SMALL_STATE(4439)] = 151388, + [SMALL_STATE(4440)] = 151405, + [SMALL_STATE(4441)] = 151416, + [SMALL_STATE(4442)] = 151433, + [SMALL_STATE(4443)] = 151450, + [SMALL_STATE(4444)] = 151467, + [SMALL_STATE(4445)] = 151484, + [SMALL_STATE(4446)] = 151495, + [SMALL_STATE(4447)] = 151510, + [SMALL_STATE(4448)] = 151527, + [SMALL_STATE(4449)] = 151544, + [SMALL_STATE(4450)] = 151561, + [SMALL_STATE(4451)] = 151576, + [SMALL_STATE(4452)] = 151591, + [SMALL_STATE(4453)] = 151608, + [SMALL_STATE(4454)] = 151625, + [SMALL_STATE(4455)] = 151642, + [SMALL_STATE(4456)] = 151657, + [SMALL_STATE(4457)] = 151674, + [SMALL_STATE(4458)] = 151689, + [SMALL_STATE(4459)] = 151704, + [SMALL_STATE(4460)] = 151719, + [SMALL_STATE(4461)] = 151734, + [SMALL_STATE(4462)] = 151751, + [SMALL_STATE(4463)] = 151766, + [SMALL_STATE(4464)] = 151783, + [SMALL_STATE(4465)] = 151798, + [SMALL_STATE(4466)] = 151815, + [SMALL_STATE(4467)] = 151832, + [SMALL_STATE(4468)] = 151843, + [SMALL_STATE(4469)] = 151860, + [SMALL_STATE(4470)] = 151871, + [SMALL_STATE(4471)] = 151888, + [SMALL_STATE(4472)] = 151905, + [SMALL_STATE(4473)] = 151922, + [SMALL_STATE(4474)] = 151939, + [SMALL_STATE(4475)] = 151956, + [SMALL_STATE(4476)] = 151973, + [SMALL_STATE(4477)] = 151990, + [SMALL_STATE(4478)] = 152007, + [SMALL_STATE(4479)] = 152024, + [SMALL_STATE(4480)] = 152041, + [SMALL_STATE(4481)] = 152056, + [SMALL_STATE(4482)] = 152073, + [SMALL_STATE(4483)] = 152090, + [SMALL_STATE(4484)] = 152103, + [SMALL_STATE(4485)] = 152120, + [SMALL_STATE(4486)] = 152137, + [SMALL_STATE(4487)] = 152154, + [SMALL_STATE(4488)] = 152167, + [SMALL_STATE(4489)] = 152180, + [SMALL_STATE(4490)] = 152197, + [SMALL_STATE(4491)] = 152214, + [SMALL_STATE(4492)] = 152229, + [SMALL_STATE(4493)] = 152246, + [SMALL_STATE(4494)] = 152263, + [SMALL_STATE(4495)] = 152280, + [SMALL_STATE(4496)] = 152297, + [SMALL_STATE(4497)] = 152314, + [SMALL_STATE(4498)] = 152331, + [SMALL_STATE(4499)] = 152348, + [SMALL_STATE(4500)] = 152363, + [SMALL_STATE(4501)] = 152380, + [SMALL_STATE(4502)] = 152397, + [SMALL_STATE(4503)] = 152414, + [SMALL_STATE(4504)] = 152431, + [SMALL_STATE(4505)] = 152448, + [SMALL_STATE(4506)] = 152463, + [SMALL_STATE(4507)] = 152478, + [SMALL_STATE(4508)] = 152495, + [SMALL_STATE(4509)] = 152512, + [SMALL_STATE(4510)] = 152529, + [SMALL_STATE(4511)] = 152546, + [SMALL_STATE(4512)] = 152563, + [SMALL_STATE(4513)] = 152580, + [SMALL_STATE(4514)] = 152597, + [SMALL_STATE(4515)] = 152614, + [SMALL_STATE(4516)] = 152629, + [SMALL_STATE(4517)] = 152639, + [SMALL_STATE(4518)] = 152649, + [SMALL_STATE(4519)] = 152659, + [SMALL_STATE(4520)] = 152669, + [SMALL_STATE(4521)] = 152679, + [SMALL_STATE(4522)] = 152689, + [SMALL_STATE(4523)] = 152699, + [SMALL_STATE(4524)] = 152711, + [SMALL_STATE(4525)] = 152725, + [SMALL_STATE(4526)] = 152735, + [SMALL_STATE(4527)] = 152745, + [SMALL_STATE(4528)] = 152755, + [SMALL_STATE(4529)] = 152765, + [SMALL_STATE(4530)] = 152775, + [SMALL_STATE(4531)] = 152785, + [SMALL_STATE(4532)] = 152799, + [SMALL_STATE(4533)] = 152809, + [SMALL_STATE(4534)] = 152823, + [SMALL_STATE(4535)] = 152833, + [SMALL_STATE(4536)] = 152843, + [SMALL_STATE(4537)] = 152853, + [SMALL_STATE(4538)] = 152867, + [SMALL_STATE(4539)] = 152877, + [SMALL_STATE(4540)] = 152887, + [SMALL_STATE(4541)] = 152901, + [SMALL_STATE(4542)] = 152915, + [SMALL_STATE(4543)] = 152929, + [SMALL_STATE(4544)] = 152943, + [SMALL_STATE(4545)] = 152957, + [SMALL_STATE(4546)] = 152971, + [SMALL_STATE(4547)] = 152981, + [SMALL_STATE(4548)] = 152991, + [SMALL_STATE(4549)] = 153001, + [SMALL_STATE(4550)] = 153011, + [SMALL_STATE(4551)] = 153021, + [SMALL_STATE(4552)] = 153031, + [SMALL_STATE(4553)] = 153045, + [SMALL_STATE(4554)] = 153059, + [SMALL_STATE(4555)] = 153073, + [SMALL_STATE(4556)] = 153087, + [SMALL_STATE(4557)] = 153097, + [SMALL_STATE(4558)] = 153107, + [SMALL_STATE(4559)] = 153117, + [SMALL_STATE(4560)] = 153127, + [SMALL_STATE(4561)] = 153137, + [SMALL_STATE(4562)] = 153147, + [SMALL_STATE(4563)] = 153157, + [SMALL_STATE(4564)] = 153167, + [SMALL_STATE(4565)] = 153179, + [SMALL_STATE(4566)] = 153189, + [SMALL_STATE(4567)] = 153201, + [SMALL_STATE(4568)] = 153211, + [SMALL_STATE(4569)] = 153225, + [SMALL_STATE(4570)] = 153235, + [SMALL_STATE(4571)] = 153245, + [SMALL_STATE(4572)] = 153255, + [SMALL_STATE(4573)] = 153265, + [SMALL_STATE(4574)] = 153275, + [SMALL_STATE(4575)] = 153285, + [SMALL_STATE(4576)] = 153295, + [SMALL_STATE(4577)] = 153309, + [SMALL_STATE(4578)] = 153319, + [SMALL_STATE(4579)] = 153333, + [SMALL_STATE(4580)] = 153343, + [SMALL_STATE(4581)] = 153353, + [SMALL_STATE(4582)] = 153363, + [SMALL_STATE(4583)] = 153373, + [SMALL_STATE(4584)] = 153383, + [SMALL_STATE(4585)] = 153393, + [SMALL_STATE(4586)] = 153403, + [SMALL_STATE(4587)] = 153417, + [SMALL_STATE(4588)] = 153431, + [SMALL_STATE(4589)] = 153445, + [SMALL_STATE(4590)] = 153455, + [SMALL_STATE(4591)] = 153469, + [SMALL_STATE(4592)] = 153483, + [SMALL_STATE(4593)] = 153493, + [SMALL_STATE(4594)] = 153503, + [SMALL_STATE(4595)] = 153517, + [SMALL_STATE(4596)] = 153531, + [SMALL_STATE(4597)] = 153545, + [SMALL_STATE(4598)] = 153559, + [SMALL_STATE(4599)] = 153569, + [SMALL_STATE(4600)] = 153583, + [SMALL_STATE(4601)] = 153593, + [SMALL_STATE(4602)] = 153603, + [SMALL_STATE(4603)] = 153617, + [SMALL_STATE(4604)] = 153627, + [SMALL_STATE(4605)] = 153637, + [SMALL_STATE(4606)] = 153647, + [SMALL_STATE(4607)] = 153657, + [SMALL_STATE(4608)] = 153667, + [SMALL_STATE(4609)] = 153677, + [SMALL_STATE(4610)] = 153687, + [SMALL_STATE(4611)] = 153697, + [SMALL_STATE(4612)] = 153707, + [SMALL_STATE(4613)] = 153717, + [SMALL_STATE(4614)] = 153727, + [SMALL_STATE(4615)] = 153737, + [SMALL_STATE(4616)] = 153747, + [SMALL_STATE(4617)] = 153757, + [SMALL_STATE(4618)] = 153767, + [SMALL_STATE(4619)] = 153777, + [SMALL_STATE(4620)] = 153787, + [SMALL_STATE(4621)] = 153801, + [SMALL_STATE(4622)] = 153815, + [SMALL_STATE(4623)] = 153829, + [SMALL_STATE(4624)] = 153839, + [SMALL_STATE(4625)] = 153849, + [SMALL_STATE(4626)] = 153859, + [SMALL_STATE(4627)] = 153869, + [SMALL_STATE(4628)] = 153879, + [SMALL_STATE(4629)] = 153889, + [SMALL_STATE(4630)] = 153899, + [SMALL_STATE(4631)] = 153909, + [SMALL_STATE(4632)] = 153919, + [SMALL_STATE(4633)] = 153929, + [SMALL_STATE(4634)] = 153939, + [SMALL_STATE(4635)] = 153949, + [SMALL_STATE(4636)] = 153959, + [SMALL_STATE(4637)] = 153973, + [SMALL_STATE(4638)] = 153983, + [SMALL_STATE(4639)] = 153997, + [SMALL_STATE(4640)] = 154011, + [SMALL_STATE(4641)] = 154021, + [SMALL_STATE(4642)] = 154031, + [SMALL_STATE(4643)] = 154041, + [SMALL_STATE(4644)] = 154055, + [SMALL_STATE(4645)] = 154069, + [SMALL_STATE(4646)] = 154079, + [SMALL_STATE(4647)] = 154093, + [SMALL_STATE(4648)] = 154107, + [SMALL_STATE(4649)] = 154117, + [SMALL_STATE(4650)] = 154131, + [SMALL_STATE(4651)] = 154145, + [SMALL_STATE(4652)] = 154157, + [SMALL_STATE(4653)] = 154167, + [SMALL_STATE(4654)] = 154181, + [SMALL_STATE(4655)] = 154195, + [SMALL_STATE(4656)] = 154205, + [SMALL_STATE(4657)] = 154219, + [SMALL_STATE(4658)] = 154229, + [SMALL_STATE(4659)] = 154239, + [SMALL_STATE(4660)] = 154249, + [SMALL_STATE(4661)] = 154259, + [SMALL_STATE(4662)] = 154273, + [SMALL_STATE(4663)] = 154283, + [SMALL_STATE(4664)] = 154297, + [SMALL_STATE(4665)] = 154307, + [SMALL_STATE(4666)] = 154317, + [SMALL_STATE(4667)] = 154327, + [SMALL_STATE(4668)] = 154337, + [SMALL_STATE(4669)] = 154351, + [SMALL_STATE(4670)] = 154361, + [SMALL_STATE(4671)] = 154371, + [SMALL_STATE(4672)] = 154385, + [SMALL_STATE(4673)] = 154399, + [SMALL_STATE(4674)] = 154409, + [SMALL_STATE(4675)] = 154419, + [SMALL_STATE(4676)] = 154429, + [SMALL_STATE(4677)] = 154439, + [SMALL_STATE(4678)] = 154449, + [SMALL_STATE(4679)] = 154463, + [SMALL_STATE(4680)] = 154473, + [SMALL_STATE(4681)] = 154483, + [SMALL_STATE(4682)] = 154497, + [SMALL_STATE(4683)] = 154507, + [SMALL_STATE(4684)] = 154519, + [SMALL_STATE(4685)] = 154533, + [SMALL_STATE(4686)] = 154547, + [SMALL_STATE(4687)] = 154561, + [SMALL_STATE(4688)] = 154575, + [SMALL_STATE(4689)] = 154589, + [SMALL_STATE(4690)] = 154599, + [SMALL_STATE(4691)] = 154609, + [SMALL_STATE(4692)] = 154619, + [SMALL_STATE(4693)] = 154633, + [SMALL_STATE(4694)] = 154647, + [SMALL_STATE(4695)] = 154657, + [SMALL_STATE(4696)] = 154667, + [SMALL_STATE(4697)] = 154677, + [SMALL_STATE(4698)] = 154691, + [SMALL_STATE(4699)] = 154705, + [SMALL_STATE(4700)] = 154715, + [SMALL_STATE(4701)] = 154729, + [SMALL_STATE(4702)] = 154739, + [SMALL_STATE(4703)] = 154749, + [SMALL_STATE(4704)] = 154759, + [SMALL_STATE(4705)] = 154769, + [SMALL_STATE(4706)] = 154779, + [SMALL_STATE(4707)] = 154789, + [SMALL_STATE(4708)] = 154799, + [SMALL_STATE(4709)] = 154813, + [SMALL_STATE(4710)] = 154823, + [SMALL_STATE(4711)] = 154833, + [SMALL_STATE(4712)] = 154843, + [SMALL_STATE(4713)] = 154857, + [SMALL_STATE(4714)] = 154871, + [SMALL_STATE(4715)] = 154885, + [SMALL_STATE(4716)] = 154895, + [SMALL_STATE(4717)] = 154909, + [SMALL_STATE(4718)] = 154919, + [SMALL_STATE(4719)] = 154929, + [SMALL_STATE(4720)] = 154939, + [SMALL_STATE(4721)] = 154949, + [SMALL_STATE(4722)] = 154963, + [SMALL_STATE(4723)] = 154973, + [SMALL_STATE(4724)] = 154983, + [SMALL_STATE(4725)] = 154993, + [SMALL_STATE(4726)] = 155003, + [SMALL_STATE(4727)] = 155013, + [SMALL_STATE(4728)] = 155023, + [SMALL_STATE(4729)] = 155033, + [SMALL_STATE(4730)] = 155043, + [SMALL_STATE(4731)] = 155057, + [SMALL_STATE(4732)] = 155067, + [SMALL_STATE(4733)] = 155077, + [SMALL_STATE(4734)] = 155091, + [SMALL_STATE(4735)] = 155105, + [SMALL_STATE(4736)] = 155117, + [SMALL_STATE(4737)] = 155131, + [SMALL_STATE(4738)] = 155141, + [SMALL_STATE(4739)] = 155151, + [SMALL_STATE(4740)] = 155161, + [SMALL_STATE(4741)] = 155175, + [SMALL_STATE(4742)] = 155185, + [SMALL_STATE(4743)] = 155195, + [SMALL_STATE(4744)] = 155205, + [SMALL_STATE(4745)] = 155219, + [SMALL_STATE(4746)] = 155233, + [SMALL_STATE(4747)] = 155247, + [SMALL_STATE(4748)] = 155257, + [SMALL_STATE(4749)] = 155267, + [SMALL_STATE(4750)] = 155277, + [SMALL_STATE(4751)] = 155287, + [SMALL_STATE(4752)] = 155297, + [SMALL_STATE(4753)] = 155307, + [SMALL_STATE(4754)] = 155317, + [SMALL_STATE(4755)] = 155327, + [SMALL_STATE(4756)] = 155337, + [SMALL_STATE(4757)] = 155347, + [SMALL_STATE(4758)] = 155357, + [SMALL_STATE(4759)] = 155367, + [SMALL_STATE(4760)] = 155377, + [SMALL_STATE(4761)] = 155387, + [SMALL_STATE(4762)] = 155397, + [SMALL_STATE(4763)] = 155407, + [SMALL_STATE(4764)] = 155417, + [SMALL_STATE(4765)] = 155427, + [SMALL_STATE(4766)] = 155437, + [SMALL_STATE(4767)] = 155447, + [SMALL_STATE(4768)] = 155457, + [SMALL_STATE(4769)] = 155467, + [SMALL_STATE(4770)] = 155477, + [SMALL_STATE(4771)] = 155487, + [SMALL_STATE(4772)] = 155497, + [SMALL_STATE(4773)] = 155507, + [SMALL_STATE(4774)] = 155517, + [SMALL_STATE(4775)] = 155527, + [SMALL_STATE(4776)] = 155537, + [SMALL_STATE(4777)] = 155547, + [SMALL_STATE(4778)] = 155557, + [SMALL_STATE(4779)] = 155567, + [SMALL_STATE(4780)] = 155577, + [SMALL_STATE(4781)] = 155591, + [SMALL_STATE(4782)] = 155601, + [SMALL_STATE(4783)] = 155611, + [SMALL_STATE(4784)] = 155625, + [SMALL_STATE(4785)] = 155639, + [SMALL_STATE(4786)] = 155653, + [SMALL_STATE(4787)] = 155663, + [SMALL_STATE(4788)] = 155677, + [SMALL_STATE(4789)] = 155687, + [SMALL_STATE(4790)] = 155701, + [SMALL_STATE(4791)] = 155715, + [SMALL_STATE(4792)] = 155725, + [SMALL_STATE(4793)] = 155739, + [SMALL_STATE(4794)] = 155749, + [SMALL_STATE(4795)] = 155759, + [SMALL_STATE(4796)] = 155769, + [SMALL_STATE(4797)] = 155779, + [SMALL_STATE(4798)] = 155793, + [SMALL_STATE(4799)] = 155803, + [SMALL_STATE(4800)] = 155813, + [SMALL_STATE(4801)] = 155823, + [SMALL_STATE(4802)] = 155833, + [SMALL_STATE(4803)] = 155847, + [SMALL_STATE(4804)] = 155857, + [SMALL_STATE(4805)] = 155867, + [SMALL_STATE(4806)] = 155877, + [SMALL_STATE(4807)] = 155891, + [SMALL_STATE(4808)] = 155901, + [SMALL_STATE(4809)] = 155915, + [SMALL_STATE(4810)] = 155925, + [SMALL_STATE(4811)] = 155939, + [SMALL_STATE(4812)] = 155949, + [SMALL_STATE(4813)] = 155963, + [SMALL_STATE(4814)] = 155975, + [SMALL_STATE(4815)] = 155985, + [SMALL_STATE(4816)] = 155999, + [SMALL_STATE(4817)] = 156009, + [SMALL_STATE(4818)] = 156019, + [SMALL_STATE(4819)] = 156029, + [SMALL_STATE(4820)] = 156039, + [SMALL_STATE(4821)] = 156049, + [SMALL_STATE(4822)] = 156059, + [SMALL_STATE(4823)] = 156069, + [SMALL_STATE(4824)] = 156079, + [SMALL_STATE(4825)] = 156089, + [SMALL_STATE(4826)] = 156099, + [SMALL_STATE(4827)] = 156109, + [SMALL_STATE(4828)] = 156119, + [SMALL_STATE(4829)] = 156129, + [SMALL_STATE(4830)] = 156143, + [SMALL_STATE(4831)] = 156153, + [SMALL_STATE(4832)] = 156163, + [SMALL_STATE(4833)] = 156173, + [SMALL_STATE(4834)] = 156183, + [SMALL_STATE(4835)] = 156193, + [SMALL_STATE(4836)] = 156203, + [SMALL_STATE(4837)] = 156213, + [SMALL_STATE(4838)] = 156223, + [SMALL_STATE(4839)] = 156233, + [SMALL_STATE(4840)] = 156243, + [SMALL_STATE(4841)] = 156253, + [SMALL_STATE(4842)] = 156263, + [SMALL_STATE(4843)] = 156273, + [SMALL_STATE(4844)] = 156283, + [SMALL_STATE(4845)] = 156293, + [SMALL_STATE(4846)] = 156303, + [SMALL_STATE(4847)] = 156313, + [SMALL_STATE(4848)] = 156323, + [SMALL_STATE(4849)] = 156333, + [SMALL_STATE(4850)] = 156343, + [SMALL_STATE(4851)] = 156353, + [SMALL_STATE(4852)] = 156363, + [SMALL_STATE(4853)] = 156373, + [SMALL_STATE(4854)] = 156383, + [SMALL_STATE(4855)] = 156393, + [SMALL_STATE(4856)] = 156403, + [SMALL_STATE(4857)] = 156413, + [SMALL_STATE(4858)] = 156423, + [SMALL_STATE(4859)] = 156433, + [SMALL_STATE(4860)] = 156443, + [SMALL_STATE(4861)] = 156453, + [SMALL_STATE(4862)] = 156463, + [SMALL_STATE(4863)] = 156473, + [SMALL_STATE(4864)] = 156483, + [SMALL_STATE(4865)] = 156493, + [SMALL_STATE(4866)] = 156503, + [SMALL_STATE(4867)] = 156513, + [SMALL_STATE(4868)] = 156523, + [SMALL_STATE(4869)] = 156533, + [SMALL_STATE(4870)] = 156547, + [SMALL_STATE(4871)] = 156557, + [SMALL_STATE(4872)] = 156567, + [SMALL_STATE(4873)] = 156577, + [SMALL_STATE(4874)] = 156587, + [SMALL_STATE(4875)] = 156597, + [SMALL_STATE(4876)] = 156607, + [SMALL_STATE(4877)] = 156617, + [SMALL_STATE(4878)] = 156627, + [SMALL_STATE(4879)] = 156641, + [SMALL_STATE(4880)] = 156655, + [SMALL_STATE(4881)] = 156665, + [SMALL_STATE(4882)] = 156677, + [SMALL_STATE(4883)] = 156687, + [SMALL_STATE(4884)] = 156697, + [SMALL_STATE(4885)] = 156707, + [SMALL_STATE(4886)] = 156717, + [SMALL_STATE(4887)] = 156727, + [SMALL_STATE(4888)] = 156741, + [SMALL_STATE(4889)] = 156751, + [SMALL_STATE(4890)] = 156761, + [SMALL_STATE(4891)] = 156775, + [SMALL_STATE(4892)] = 156787, + [SMALL_STATE(4893)] = 156797, + [SMALL_STATE(4894)] = 156807, + [SMALL_STATE(4895)] = 156817, + [SMALL_STATE(4896)] = 156827, + [SMALL_STATE(4897)] = 156841, + [SMALL_STATE(4898)] = 156855, + [SMALL_STATE(4899)] = 156865, + [SMALL_STATE(4900)] = 156879, + [SMALL_STATE(4901)] = 156889, + [SMALL_STATE(4902)] = 156899, + [SMALL_STATE(4903)] = 156909, + [SMALL_STATE(4904)] = 156919, + [SMALL_STATE(4905)] = 156929, + [SMALL_STATE(4906)] = 156943, + [SMALL_STATE(4907)] = 156953, + [SMALL_STATE(4908)] = 156963, + [SMALL_STATE(4909)] = 156977, + [SMALL_STATE(4910)] = 156987, + [SMALL_STATE(4911)] = 157001, + [SMALL_STATE(4912)] = 157011, + [SMALL_STATE(4913)] = 157021, + [SMALL_STATE(4914)] = 157031, + [SMALL_STATE(4915)] = 157041, + [SMALL_STATE(4916)] = 157051, + [SMALL_STATE(4917)] = 157061, + [SMALL_STATE(4918)] = 157071, + [SMALL_STATE(4919)] = 157081, + [SMALL_STATE(4920)] = 157091, + [SMALL_STATE(4921)] = 157101, + [SMALL_STATE(4922)] = 157111, + [SMALL_STATE(4923)] = 157121, + [SMALL_STATE(4924)] = 157131, + [SMALL_STATE(4925)] = 157141, + [SMALL_STATE(4926)] = 157155, + [SMALL_STATE(4927)] = 157165, + [SMALL_STATE(4928)] = 157179, + [SMALL_STATE(4929)] = 157189, + [SMALL_STATE(4930)] = 157199, + [SMALL_STATE(4931)] = 157211, + [SMALL_STATE(4932)] = 157221, + [SMALL_STATE(4933)] = 157231, + [SMALL_STATE(4934)] = 157241, + [SMALL_STATE(4935)] = 157251, + [SMALL_STATE(4936)] = 157261, + [SMALL_STATE(4937)] = 157271, + [SMALL_STATE(4938)] = 157281, + [SMALL_STATE(4939)] = 157291, + [SMALL_STATE(4940)] = 157305, + [SMALL_STATE(4941)] = 157315, + [SMALL_STATE(4942)] = 157325, + [SMALL_STATE(4943)] = 157335, + [SMALL_STATE(4944)] = 157345, + [SMALL_STATE(4945)] = 157355, + [SMALL_STATE(4946)] = 157365, + [SMALL_STATE(4947)] = 157379, + [SMALL_STATE(4948)] = 157389, + [SMALL_STATE(4949)] = 157399, + [SMALL_STATE(4950)] = 157413, + [SMALL_STATE(4951)] = 157427, + [SMALL_STATE(4952)] = 157437, + [SMALL_STATE(4953)] = 157447, + [SMALL_STATE(4954)] = 157457, + [SMALL_STATE(4955)] = 157467, + [SMALL_STATE(4956)] = 157481, + [SMALL_STATE(4957)] = 157495, + [SMALL_STATE(4958)] = 157505, + [SMALL_STATE(4959)] = 157519, + [SMALL_STATE(4960)] = 157533, + [SMALL_STATE(4961)] = 157547, + [SMALL_STATE(4962)] = 157561, + [SMALL_STATE(4963)] = 157575, + [SMALL_STATE(4964)] = 157585, + [SMALL_STATE(4965)] = 157599, + [SMALL_STATE(4966)] = 157613, + [SMALL_STATE(4967)] = 157627, + [SMALL_STATE(4968)] = 157641, + [SMALL_STATE(4969)] = 157651, + [SMALL_STATE(4970)] = 157665, + [SMALL_STATE(4971)] = 157675, + [SMALL_STATE(4972)] = 157689, + [SMALL_STATE(4973)] = 157703, + [SMALL_STATE(4974)] = 157717, + [SMALL_STATE(4975)] = 157731, + [SMALL_STATE(4976)] = 157745, + [SMALL_STATE(4977)] = 157755, + [SMALL_STATE(4978)] = 157769, + [SMALL_STATE(4979)] = 157779, + [SMALL_STATE(4980)] = 157789, + [SMALL_STATE(4981)] = 157799, + [SMALL_STATE(4982)] = 157813, + [SMALL_STATE(4983)] = 157825, + [SMALL_STATE(4984)] = 157835, + [SMALL_STATE(4985)] = 157847, + [SMALL_STATE(4986)] = 157857, + [SMALL_STATE(4987)] = 157867, + [SMALL_STATE(4988)] = 157881, + [SMALL_STATE(4989)] = 157891, + [SMALL_STATE(4990)] = 157903, + [SMALL_STATE(4991)] = 157917, + [SMALL_STATE(4992)] = 157927, + [SMALL_STATE(4993)] = 157937, + [SMALL_STATE(4994)] = 157949, + [SMALL_STATE(4995)] = 157963, + [SMALL_STATE(4996)] = 157973, + [SMALL_STATE(4997)] = 157987, + [SMALL_STATE(4998)] = 158001, + [SMALL_STATE(4999)] = 158015, + [SMALL_STATE(5000)] = 158029, + [SMALL_STATE(5001)] = 158043, + [SMALL_STATE(5002)] = 158057, + [SMALL_STATE(5003)] = 158067, + [SMALL_STATE(5004)] = 158079, + [SMALL_STATE(5005)] = 158091, + [SMALL_STATE(5006)] = 158105, + [SMALL_STATE(5007)] = 158119, + [SMALL_STATE(5008)] = 158129, + [SMALL_STATE(5009)] = 158143, + [SMALL_STATE(5010)] = 158155, + [SMALL_STATE(5011)] = 158165, + [SMALL_STATE(5012)] = 158179, + [SMALL_STATE(5013)] = 158189, + [SMALL_STATE(5014)] = 158199, + [SMALL_STATE(5015)] = 158213, + [SMALL_STATE(5016)] = 158223, + [SMALL_STATE(5017)] = 158237, + [SMALL_STATE(5018)] = 158247, + [SMALL_STATE(5019)] = 158261, + [SMALL_STATE(5020)] = 158273, + [SMALL_STATE(5021)] = 158287, + [SMALL_STATE(5022)] = 158297, + [SMALL_STATE(5023)] = 158311, + [SMALL_STATE(5024)] = 158325, + [SMALL_STATE(5025)] = 158335, + [SMALL_STATE(5026)] = 158345, + [SMALL_STATE(5027)] = 158359, + [SMALL_STATE(5028)] = 158373, + [SMALL_STATE(5029)] = 158383, + [SMALL_STATE(5030)] = 158397, + [SMALL_STATE(5031)] = 158411, + [SMALL_STATE(5032)] = 158421, + [SMALL_STATE(5033)] = 158435, + [SMALL_STATE(5034)] = 158449, + [SMALL_STATE(5035)] = 158459, + [SMALL_STATE(5036)] = 158469, + [SMALL_STATE(5037)] = 158479, + [SMALL_STATE(5038)] = 158489, + [SMALL_STATE(5039)] = 158503, + [SMALL_STATE(5040)] = 158515, + [SMALL_STATE(5041)] = 158525, + [SMALL_STATE(5042)] = 158537, + [SMALL_STATE(5043)] = 158547, + [SMALL_STATE(5044)] = 158557, + [SMALL_STATE(5045)] = 158567, + [SMALL_STATE(5046)] = 158577, + [SMALL_STATE(5047)] = 158587, + [SMALL_STATE(5048)] = 158597, + [SMALL_STATE(5049)] = 158607, + [SMALL_STATE(5050)] = 158617, + [SMALL_STATE(5051)] = 158627, + [SMALL_STATE(5052)] = 158637, + [SMALL_STATE(5053)] = 158651, + [SMALL_STATE(5054)] = 158661, + [SMALL_STATE(5055)] = 158671, + [SMALL_STATE(5056)] = 158681, + [SMALL_STATE(5057)] = 158691, + [SMALL_STATE(5058)] = 158701, + [SMALL_STATE(5059)] = 158711, + [SMALL_STATE(5060)] = 158721, + [SMALL_STATE(5061)] = 158731, + [SMALL_STATE(5062)] = 158741, + [SMALL_STATE(5063)] = 158755, + [SMALL_STATE(5064)] = 158765, + [SMALL_STATE(5065)] = 158775, + [SMALL_STATE(5066)] = 158785, + [SMALL_STATE(5067)] = 158795, + [SMALL_STATE(5068)] = 158805, + [SMALL_STATE(5069)] = 158815, + [SMALL_STATE(5070)] = 158825, + [SMALL_STATE(5071)] = 158835, + [SMALL_STATE(5072)] = 158845, + [SMALL_STATE(5073)] = 158855, + [SMALL_STATE(5074)] = 158865, + [SMALL_STATE(5075)] = 158875, + [SMALL_STATE(5076)] = 158887, + [SMALL_STATE(5077)] = 158899, + [SMALL_STATE(5078)] = 158909, + [SMALL_STATE(5079)] = 158919, + [SMALL_STATE(5080)] = 158929, + [SMALL_STATE(5081)] = 158943, + [SMALL_STATE(5082)] = 158953, + [SMALL_STATE(5083)] = 158963, + [SMALL_STATE(5084)] = 158973, + [SMALL_STATE(5085)] = 158983, + [SMALL_STATE(5086)] = 158993, + [SMALL_STATE(5087)] = 159003, + [SMALL_STATE(5088)] = 159013, + [SMALL_STATE(5089)] = 159023, + [SMALL_STATE(5090)] = 159033, + [SMALL_STATE(5091)] = 159043, + [SMALL_STATE(5092)] = 159053, + [SMALL_STATE(5093)] = 159063, + [SMALL_STATE(5094)] = 159073, + [SMALL_STATE(5095)] = 159083, + [SMALL_STATE(5096)] = 159093, + [SMALL_STATE(5097)] = 159105, + [SMALL_STATE(5098)] = 159115, + [SMALL_STATE(5099)] = 159125, + [SMALL_STATE(5100)] = 159135, + [SMALL_STATE(5101)] = 159145, + [SMALL_STATE(5102)] = 159155, + [SMALL_STATE(5103)] = 159165, + [SMALL_STATE(5104)] = 159175, + [SMALL_STATE(5105)] = 159185, + [SMALL_STATE(5106)] = 159195, + [SMALL_STATE(5107)] = 159207, + [SMALL_STATE(5108)] = 159217, + [SMALL_STATE(5109)] = 159231, + [SMALL_STATE(5110)] = 159241, + [SMALL_STATE(5111)] = 159251, + [SMALL_STATE(5112)] = 159261, + [SMALL_STATE(5113)] = 159271, + [SMALL_STATE(5114)] = 159281, + [SMALL_STATE(5115)] = 159291, + [SMALL_STATE(5116)] = 159305, + [SMALL_STATE(5117)] = 159319, + [SMALL_STATE(5118)] = 159329, + [SMALL_STATE(5119)] = 159339, + [SMALL_STATE(5120)] = 159349, + [SMALL_STATE(5121)] = 159359, + [SMALL_STATE(5122)] = 159373, + [SMALL_STATE(5123)] = 159383, + [SMALL_STATE(5124)] = 159393, + [SMALL_STATE(5125)] = 159403, + [SMALL_STATE(5126)] = 159413, + [SMALL_STATE(5127)] = 159422, + [SMALL_STATE(5128)] = 159433, + [SMALL_STATE(5129)] = 159444, + [SMALL_STATE(5130)] = 159453, + [SMALL_STATE(5131)] = 159464, + [SMALL_STATE(5132)] = 159475, + [SMALL_STATE(5133)] = 159484, + [SMALL_STATE(5134)] = 159495, + [SMALL_STATE(5135)] = 159504, + [SMALL_STATE(5136)] = 159515, + [SMALL_STATE(5137)] = 159526, + [SMALL_STATE(5138)] = 159537, + [SMALL_STATE(5139)] = 159548, + [SMALL_STATE(5140)] = 159559, + [SMALL_STATE(5141)] = 159568, + [SMALL_STATE(5142)] = 159579, + [SMALL_STATE(5143)] = 159590, + [SMALL_STATE(5144)] = 159601, + [SMALL_STATE(5145)] = 159612, + [SMALL_STATE(5146)] = 159623, + [SMALL_STATE(5147)] = 159634, + [SMALL_STATE(5148)] = 159643, + [SMALL_STATE(5149)] = 159654, + [SMALL_STATE(5150)] = 159665, + [SMALL_STATE(5151)] = 159676, + [SMALL_STATE(5152)] = 159687, + [SMALL_STATE(5153)] = 159696, + [SMALL_STATE(5154)] = 159707, + [SMALL_STATE(5155)] = 159718, + [SMALL_STATE(5156)] = 159729, + [SMALL_STATE(5157)] = 159740, + [SMALL_STATE(5158)] = 159751, + [SMALL_STATE(5159)] = 159762, + [SMALL_STATE(5160)] = 159771, + [SMALL_STATE(5161)] = 159780, + [SMALL_STATE(5162)] = 159791, + [SMALL_STATE(5163)] = 159802, + [SMALL_STATE(5164)] = 159813, + [SMALL_STATE(5165)] = 159824, + [SMALL_STATE(5166)] = 159835, + [SMALL_STATE(5167)] = 159846, + [SMALL_STATE(5168)] = 159857, + [SMALL_STATE(5169)] = 159868, + [SMALL_STATE(5170)] = 159877, + [SMALL_STATE(5171)] = 159888, + [SMALL_STATE(5172)] = 159899, + [SMALL_STATE(5173)] = 159908, + [SMALL_STATE(5174)] = 159919, + [SMALL_STATE(5175)] = 159930, + [SMALL_STATE(5176)] = 159941, + [SMALL_STATE(5177)] = 159952, + [SMALL_STATE(5178)] = 159963, + [SMALL_STATE(5179)] = 159972, + [SMALL_STATE(5180)] = 159983, + [SMALL_STATE(5181)] = 159994, + [SMALL_STATE(5182)] = 160005, + [SMALL_STATE(5183)] = 160016, + [SMALL_STATE(5184)] = 160027, + [SMALL_STATE(5185)] = 160038, + [SMALL_STATE(5186)] = 160049, + [SMALL_STATE(5187)] = 160060, + [SMALL_STATE(5188)] = 160071, + [SMALL_STATE(5189)] = 160082, + [SMALL_STATE(5190)] = 160093, + [SMALL_STATE(5191)] = 160104, + [SMALL_STATE(5192)] = 160115, + [SMALL_STATE(5193)] = 160126, + [SMALL_STATE(5194)] = 160135, + [SMALL_STATE(5195)] = 160144, + [SMALL_STATE(5196)] = 160153, + [SMALL_STATE(5197)] = 160162, + [SMALL_STATE(5198)] = 160173, + [SMALL_STATE(5199)] = 160184, + [SMALL_STATE(5200)] = 160193, + [SMALL_STATE(5201)] = 160204, + [SMALL_STATE(5202)] = 160215, + [SMALL_STATE(5203)] = 160226, + [SMALL_STATE(5204)] = 160237, + [SMALL_STATE(5205)] = 160248, + [SMALL_STATE(5206)] = 160259, + [SMALL_STATE(5207)] = 160270, + [SMALL_STATE(5208)] = 160279, + [SMALL_STATE(5209)] = 160290, + [SMALL_STATE(5210)] = 160301, + [SMALL_STATE(5211)] = 160312, + [SMALL_STATE(5212)] = 160323, + [SMALL_STATE(5213)] = 160334, + [SMALL_STATE(5214)] = 160345, + [SMALL_STATE(5215)] = 160354, + [SMALL_STATE(5216)] = 160365, + [SMALL_STATE(5217)] = 160376, + [SMALL_STATE(5218)] = 160387, + [SMALL_STATE(5219)] = 160398, + [SMALL_STATE(5220)] = 160409, + [SMALL_STATE(5221)] = 160420, + [SMALL_STATE(5222)] = 160429, + [SMALL_STATE(5223)] = 160440, + [SMALL_STATE(5224)] = 160451, + [SMALL_STATE(5225)] = 160462, + [SMALL_STATE(5226)] = 160471, + [SMALL_STATE(5227)] = 160482, + [SMALL_STATE(5228)] = 160493, + [SMALL_STATE(5229)] = 160504, + [SMALL_STATE(5230)] = 160515, + [SMALL_STATE(5231)] = 160524, + [SMALL_STATE(5232)] = 160535, + [SMALL_STATE(5233)] = 160546, + [SMALL_STATE(5234)] = 160557, + [SMALL_STATE(5235)] = 160568, + [SMALL_STATE(5236)] = 160579, + [SMALL_STATE(5237)] = 160590, + [SMALL_STATE(5238)] = 160601, + [SMALL_STATE(5239)] = 160610, + [SMALL_STATE(5240)] = 160621, + [SMALL_STATE(5241)] = 160632, + [SMALL_STATE(5242)] = 160643, + [SMALL_STATE(5243)] = 160654, + [SMALL_STATE(5244)] = 160665, + [SMALL_STATE(5245)] = 160674, + [SMALL_STATE(5246)] = 160683, + [SMALL_STATE(5247)] = 160694, + [SMALL_STATE(5248)] = 160705, + [SMALL_STATE(5249)] = 160716, + [SMALL_STATE(5250)] = 160727, + [SMALL_STATE(5251)] = 160738, + [SMALL_STATE(5252)] = 160749, + [SMALL_STATE(5253)] = 160760, + [SMALL_STATE(5254)] = 160771, + [SMALL_STATE(5255)] = 160782, + [SMALL_STATE(5256)] = 160793, + [SMALL_STATE(5257)] = 160804, + [SMALL_STATE(5258)] = 160815, + [SMALL_STATE(5259)] = 160826, + [SMALL_STATE(5260)] = 160835, + [SMALL_STATE(5261)] = 160844, + [SMALL_STATE(5262)] = 160855, + [SMALL_STATE(5263)] = 160864, + [SMALL_STATE(5264)] = 160873, + [SMALL_STATE(5265)] = 160884, + [SMALL_STATE(5266)] = 160895, + [SMALL_STATE(5267)] = 160906, + [SMALL_STATE(5268)] = 160917, + [SMALL_STATE(5269)] = 160928, + [SMALL_STATE(5270)] = 160939, + [SMALL_STATE(5271)] = 160950, + [SMALL_STATE(5272)] = 160961, + [SMALL_STATE(5273)] = 160970, + [SMALL_STATE(5274)] = 160981, + [SMALL_STATE(5275)] = 160992, + [SMALL_STATE(5276)] = 161003, + [SMALL_STATE(5277)] = 161014, + [SMALL_STATE(5278)] = 161023, + [SMALL_STATE(5279)] = 161032, + [SMALL_STATE(5280)] = 161043, + [SMALL_STATE(5281)] = 161054, + [SMALL_STATE(5282)] = 161065, + [SMALL_STATE(5283)] = 161076, + [SMALL_STATE(5284)] = 161087, + [SMALL_STATE(5285)] = 161096, + [SMALL_STATE(5286)] = 161105, + [SMALL_STATE(5287)] = 161116, + [SMALL_STATE(5288)] = 161127, + [SMALL_STATE(5289)] = 161138, + [SMALL_STATE(5290)] = 161149, + [SMALL_STATE(5291)] = 161158, + [SMALL_STATE(5292)] = 161169, + [SMALL_STATE(5293)] = 161180, + [SMALL_STATE(5294)] = 161191, + [SMALL_STATE(5295)] = 161202, + [SMALL_STATE(5296)] = 161213, + [SMALL_STATE(5297)] = 161224, + [SMALL_STATE(5298)] = 161233, + [SMALL_STATE(5299)] = 161244, + [SMALL_STATE(5300)] = 161255, + [SMALL_STATE(5301)] = 161266, + [SMALL_STATE(5302)] = 161277, + [SMALL_STATE(5303)] = 161288, + [SMALL_STATE(5304)] = 161299, + [SMALL_STATE(5305)] = 161310, + [SMALL_STATE(5306)] = 161319, + [SMALL_STATE(5307)] = 161328, + [SMALL_STATE(5308)] = 161337, + [SMALL_STATE(5309)] = 161348, + [SMALL_STATE(5310)] = 161357, + [SMALL_STATE(5311)] = 161368, + [SMALL_STATE(5312)] = 161379, + [SMALL_STATE(5313)] = 161390, + [SMALL_STATE(5314)] = 161399, + [SMALL_STATE(5315)] = 161408, + [SMALL_STATE(5316)] = 161419, + [SMALL_STATE(5317)] = 161428, + [SMALL_STATE(5318)] = 161439, + [SMALL_STATE(5319)] = 161450, + [SMALL_STATE(5320)] = 161459, + [SMALL_STATE(5321)] = 161470, + [SMALL_STATE(5322)] = 161481, + [SMALL_STATE(5323)] = 161492, + [SMALL_STATE(5324)] = 161503, + [SMALL_STATE(5325)] = 161514, + [SMALL_STATE(5326)] = 161525, + [SMALL_STATE(5327)] = 161536, + [SMALL_STATE(5328)] = 161547, + [SMALL_STATE(5329)] = 161558, + [SMALL_STATE(5330)] = 161567, + [SMALL_STATE(5331)] = 161576, + [SMALL_STATE(5332)] = 161585, + [SMALL_STATE(5333)] = 161596, + [SMALL_STATE(5334)] = 161605, + [SMALL_STATE(5335)] = 161614, + [SMALL_STATE(5336)] = 161625, + [SMALL_STATE(5337)] = 161636, + [SMALL_STATE(5338)] = 161647, + [SMALL_STATE(5339)] = 161658, + [SMALL_STATE(5340)] = 161669, + [SMALL_STATE(5341)] = 161680, + [SMALL_STATE(5342)] = 161691, + [SMALL_STATE(5343)] = 161702, + [SMALL_STATE(5344)] = 161713, + [SMALL_STATE(5345)] = 161724, + [SMALL_STATE(5346)] = 161733, + [SMALL_STATE(5347)] = 161744, + [SMALL_STATE(5348)] = 161755, + [SMALL_STATE(5349)] = 161764, + [SMALL_STATE(5350)] = 161775, + [SMALL_STATE(5351)] = 161786, + [SMALL_STATE(5352)] = 161797, + [SMALL_STATE(5353)] = 161808, + [SMALL_STATE(5354)] = 161819, + [SMALL_STATE(5355)] = 161830, + [SMALL_STATE(5356)] = 161839, + [SMALL_STATE(5357)] = 161848, + [SMALL_STATE(5358)] = 161859, + [SMALL_STATE(5359)] = 161870, + [SMALL_STATE(5360)] = 161879, + [SMALL_STATE(5361)] = 161890, + [SMALL_STATE(5362)] = 161901, + [SMALL_STATE(5363)] = 161912, + [SMALL_STATE(5364)] = 161923, + [SMALL_STATE(5365)] = 161934, + [SMALL_STATE(5366)] = 161945, + [SMALL_STATE(5367)] = 161956, + [SMALL_STATE(5368)] = 161967, + [SMALL_STATE(5369)] = 161976, + [SMALL_STATE(5370)] = 161987, + [SMALL_STATE(5371)] = 161998, + [SMALL_STATE(5372)] = 162009, + [SMALL_STATE(5373)] = 162020, + [SMALL_STATE(5374)] = 162031, + [SMALL_STATE(5375)] = 162042, + [SMALL_STATE(5376)] = 162053, + [SMALL_STATE(5377)] = 162064, + [SMALL_STATE(5378)] = 162075, + [SMALL_STATE(5379)] = 162086, + [SMALL_STATE(5380)] = 162095, + [SMALL_STATE(5381)] = 162106, + [SMALL_STATE(5382)] = 162117, + [SMALL_STATE(5383)] = 162128, + [SMALL_STATE(5384)] = 162137, + [SMALL_STATE(5385)] = 162146, + [SMALL_STATE(5386)] = 162155, + [SMALL_STATE(5387)] = 162166, + [SMALL_STATE(5388)] = 162177, + [SMALL_STATE(5389)] = 162188, + [SMALL_STATE(5390)] = 162197, + [SMALL_STATE(5391)] = 162208, + [SMALL_STATE(5392)] = 162219, + [SMALL_STATE(5393)] = 162228, + [SMALL_STATE(5394)] = 162239, + [SMALL_STATE(5395)] = 162250, + [SMALL_STATE(5396)] = 162261, + [SMALL_STATE(5397)] = 162272, + [SMALL_STATE(5398)] = 162283, + [SMALL_STATE(5399)] = 162294, + [SMALL_STATE(5400)] = 162305, + [SMALL_STATE(5401)] = 162314, + [SMALL_STATE(5402)] = 162325, + [SMALL_STATE(5403)] = 162336, + [SMALL_STATE(5404)] = 162347, + [SMALL_STATE(5405)] = 162358, + [SMALL_STATE(5406)] = 162369, + [SMALL_STATE(5407)] = 162380, + [SMALL_STATE(5408)] = 162391, + [SMALL_STATE(5409)] = 162402, + [SMALL_STATE(5410)] = 162413, + [SMALL_STATE(5411)] = 162424, + [SMALL_STATE(5412)] = 162435, + [SMALL_STATE(5413)] = 162446, + [SMALL_STATE(5414)] = 162455, + [SMALL_STATE(5415)] = 162466, + [SMALL_STATE(5416)] = 162477, + [SMALL_STATE(5417)] = 162486, + [SMALL_STATE(5418)] = 162495, + [SMALL_STATE(5419)] = 162506, + [SMALL_STATE(5420)] = 162515, + [SMALL_STATE(5421)] = 162524, + [SMALL_STATE(5422)] = 162535, + [SMALL_STATE(5423)] = 162546, + [SMALL_STATE(5424)] = 162557, + [SMALL_STATE(5425)] = 162568, + [SMALL_STATE(5426)] = 162579, + [SMALL_STATE(5427)] = 162590, + [SMALL_STATE(5428)] = 162601, + [SMALL_STATE(5429)] = 162612, + [SMALL_STATE(5430)] = 162623, + [SMALL_STATE(5431)] = 162634, + [SMALL_STATE(5432)] = 162645, + [SMALL_STATE(5433)] = 162656, + [SMALL_STATE(5434)] = 162665, + [SMALL_STATE(5435)] = 162674, + [SMALL_STATE(5436)] = 162685, + [SMALL_STATE(5437)] = 162696, + [SMALL_STATE(5438)] = 162705, + [SMALL_STATE(5439)] = 162716, + [SMALL_STATE(5440)] = 162727, + [SMALL_STATE(5441)] = 162738, + [SMALL_STATE(5442)] = 162747, + [SMALL_STATE(5443)] = 162758, + [SMALL_STATE(5444)] = 162769, + [SMALL_STATE(5445)] = 162780, + [SMALL_STATE(5446)] = 162791, + [SMALL_STATE(5447)] = 162802, + [SMALL_STATE(5448)] = 162813, + [SMALL_STATE(5449)] = 162824, + [SMALL_STATE(5450)] = 162835, + [SMALL_STATE(5451)] = 162846, + [SMALL_STATE(5452)] = 162857, + [SMALL_STATE(5453)] = 162868, + [SMALL_STATE(5454)] = 162879, + [SMALL_STATE(5455)] = 162890, + [SMALL_STATE(5456)] = 162901, + [SMALL_STATE(5457)] = 162912, + [SMALL_STATE(5458)] = 162923, + [SMALL_STATE(5459)] = 162934, + [SMALL_STATE(5460)] = 162945, + [SMALL_STATE(5461)] = 162956, + [SMALL_STATE(5462)] = 162967, + [SMALL_STATE(5463)] = 162976, + [SMALL_STATE(5464)] = 162985, + [SMALL_STATE(5465)] = 162994, + [SMALL_STATE(5466)] = 163003, + [SMALL_STATE(5467)] = 163011, + [SMALL_STATE(5468)] = 163019, + [SMALL_STATE(5469)] = 163027, + [SMALL_STATE(5470)] = 163035, + [SMALL_STATE(5471)] = 163043, + [SMALL_STATE(5472)] = 163051, + [SMALL_STATE(5473)] = 163059, + [SMALL_STATE(5474)] = 163067, + [SMALL_STATE(5475)] = 163075, + [SMALL_STATE(5476)] = 163083, + [SMALL_STATE(5477)] = 163091, + [SMALL_STATE(5478)] = 163099, + [SMALL_STATE(5479)] = 163107, + [SMALL_STATE(5480)] = 163115, + [SMALL_STATE(5481)] = 163123, + [SMALL_STATE(5482)] = 163131, + [SMALL_STATE(5483)] = 163141, + [SMALL_STATE(5484)] = 163149, + [SMALL_STATE(5485)] = 163157, + [SMALL_STATE(5486)] = 163165, + [SMALL_STATE(5487)] = 163173, + [SMALL_STATE(5488)] = 163181, + [SMALL_STATE(5489)] = 163189, + [SMALL_STATE(5490)] = 163197, + [SMALL_STATE(5491)] = 163205, + [SMALL_STATE(5492)] = 163213, + [SMALL_STATE(5493)] = 163221, + [SMALL_STATE(5494)] = 163229, + [SMALL_STATE(5495)] = 163239, + [SMALL_STATE(5496)] = 163247, + [SMALL_STATE(5497)] = 163255, + [SMALL_STATE(5498)] = 163263, + [SMALL_STATE(5499)] = 163271, + [SMALL_STATE(5500)] = 163279, + [SMALL_STATE(5501)] = 163287, + [SMALL_STATE(5502)] = 163295, + [SMALL_STATE(5503)] = 163303, + [SMALL_STATE(5504)] = 163311, + [SMALL_STATE(5505)] = 163319, + [SMALL_STATE(5506)] = 163327, + [SMALL_STATE(5507)] = 163335, + [SMALL_STATE(5508)] = 163343, + [SMALL_STATE(5509)] = 163351, + [SMALL_STATE(5510)] = 163359, + [SMALL_STATE(5511)] = 163367, + [SMALL_STATE(5512)] = 163375, + [SMALL_STATE(5513)] = 163383, + [SMALL_STATE(5514)] = 163391, + [SMALL_STATE(5515)] = 163399, + [SMALL_STATE(5516)] = 163407, + [SMALL_STATE(5517)] = 163415, + [SMALL_STATE(5518)] = 163423, + [SMALL_STATE(5519)] = 163431, + [SMALL_STATE(5520)] = 163439, + [SMALL_STATE(5521)] = 163447, + [SMALL_STATE(5522)] = 163455, + [SMALL_STATE(5523)] = 163463, + [SMALL_STATE(5524)] = 163471, + [SMALL_STATE(5525)] = 163479, + [SMALL_STATE(5526)] = 163487, + [SMALL_STATE(5527)] = 163495, + [SMALL_STATE(5528)] = 163503, + [SMALL_STATE(5529)] = 163511, + [SMALL_STATE(5530)] = 163519, + [SMALL_STATE(5531)] = 163527, + [SMALL_STATE(5532)] = 163535, + [SMALL_STATE(5533)] = 163543, + [SMALL_STATE(5534)] = 163551, + [SMALL_STATE(5535)] = 163559, + [SMALL_STATE(5536)] = 163567, + [SMALL_STATE(5537)] = 163575, + [SMALL_STATE(5538)] = 163583, + [SMALL_STATE(5539)] = 163591, + [SMALL_STATE(5540)] = 163599, + [SMALL_STATE(5541)] = 163607, + [SMALL_STATE(5542)] = 163615, + [SMALL_STATE(5543)] = 163623, + [SMALL_STATE(5544)] = 163631, + [SMALL_STATE(5545)] = 163639, + [SMALL_STATE(5546)] = 163647, + [SMALL_STATE(5547)] = 163655, + [SMALL_STATE(5548)] = 163663, + [SMALL_STATE(5549)] = 163671, + [SMALL_STATE(5550)] = 163679, + [SMALL_STATE(5551)] = 163687, + [SMALL_STATE(5552)] = 163695, + [SMALL_STATE(5553)] = 163703, + [SMALL_STATE(5554)] = 163713, + [SMALL_STATE(5555)] = 163721, + [SMALL_STATE(5556)] = 163729, + [SMALL_STATE(5557)] = 163737, + [SMALL_STATE(5558)] = 163745, + [SMALL_STATE(5559)] = 163753, + [SMALL_STATE(5560)] = 163761, + [SMALL_STATE(5561)] = 163769, + [SMALL_STATE(5562)] = 163777, + [SMALL_STATE(5563)] = 163785, + [SMALL_STATE(5564)] = 163793, + [SMALL_STATE(5565)] = 163801, + [SMALL_STATE(5566)] = 163809, + [SMALL_STATE(5567)] = 163817, + [SMALL_STATE(5568)] = 163825, + [SMALL_STATE(5569)] = 163833, + [SMALL_STATE(5570)] = 163841, + [SMALL_STATE(5571)] = 163849, + [SMALL_STATE(5572)] = 163857, + [SMALL_STATE(5573)] = 163865, + [SMALL_STATE(5574)] = 163873, + [SMALL_STATE(5575)] = 163881, + [SMALL_STATE(5576)] = 163889, + [SMALL_STATE(5577)] = 163897, + [SMALL_STATE(5578)] = 163905, + [SMALL_STATE(5579)] = 163913, + [SMALL_STATE(5580)] = 163921, + [SMALL_STATE(5581)] = 163929, + [SMALL_STATE(5582)] = 163937, + [SMALL_STATE(5583)] = 163945, + [SMALL_STATE(5584)] = 163953, + [SMALL_STATE(5585)] = 163961, + [SMALL_STATE(5586)] = 163969, + [SMALL_STATE(5587)] = 163977, + [SMALL_STATE(5588)] = 163985, + [SMALL_STATE(5589)] = 163993, + [SMALL_STATE(5590)] = 164001, + [SMALL_STATE(5591)] = 164009, + [SMALL_STATE(5592)] = 164017, + [SMALL_STATE(5593)] = 164025, + [SMALL_STATE(5594)] = 164033, + [SMALL_STATE(5595)] = 164041, + [SMALL_STATE(5596)] = 164049, + [SMALL_STATE(5597)] = 164057, + [SMALL_STATE(5598)] = 164065, + [SMALL_STATE(5599)] = 164073, + [SMALL_STATE(5600)] = 164081, + [SMALL_STATE(5601)] = 164089, + [SMALL_STATE(5602)] = 164097, + [SMALL_STATE(5603)] = 164105, + [SMALL_STATE(5604)] = 164113, + [SMALL_STATE(5605)] = 164121, + [SMALL_STATE(5606)] = 164129, + [SMALL_STATE(5607)] = 164137, + [SMALL_STATE(5608)] = 164145, + [SMALL_STATE(5609)] = 164153, + [SMALL_STATE(5610)] = 164161, + [SMALL_STATE(5611)] = 164169, + [SMALL_STATE(5612)] = 164177, + [SMALL_STATE(5613)] = 164185, + [SMALL_STATE(5614)] = 164193, + [SMALL_STATE(5615)] = 164201, + [SMALL_STATE(5616)] = 164209, + [SMALL_STATE(5617)] = 164217, + [SMALL_STATE(5618)] = 164225, + [SMALL_STATE(5619)] = 164233, + [SMALL_STATE(5620)] = 164241, + [SMALL_STATE(5621)] = 164249, + [SMALL_STATE(5622)] = 164257, + [SMALL_STATE(5623)] = 164265, + [SMALL_STATE(5624)] = 164273, + [SMALL_STATE(5625)] = 164281, + [SMALL_STATE(5626)] = 164289, + [SMALL_STATE(5627)] = 164297, + [SMALL_STATE(5628)] = 164307, + [SMALL_STATE(5629)] = 164315, + [SMALL_STATE(5630)] = 164323, + [SMALL_STATE(5631)] = 164331, + [SMALL_STATE(5632)] = 164339, + [SMALL_STATE(5633)] = 164347, + [SMALL_STATE(5634)] = 164355, + [SMALL_STATE(5635)] = 164363, + [SMALL_STATE(5636)] = 164371, + [SMALL_STATE(5637)] = 164379, + [SMALL_STATE(5638)] = 164387, + [SMALL_STATE(5639)] = 164395, + [SMALL_STATE(5640)] = 164403, + [SMALL_STATE(5641)] = 164411, + [SMALL_STATE(5642)] = 164419, + [SMALL_STATE(5643)] = 164427, + [SMALL_STATE(5644)] = 164435, + [SMALL_STATE(5645)] = 164443, + [SMALL_STATE(5646)] = 164451, + [SMALL_STATE(5647)] = 164459, + [SMALL_STATE(5648)] = 164467, + [SMALL_STATE(5649)] = 164475, + [SMALL_STATE(5650)] = 164485, + [SMALL_STATE(5651)] = 164493, + [SMALL_STATE(5652)] = 164501, + [SMALL_STATE(5653)] = 164509, + [SMALL_STATE(5654)] = 164517, + [SMALL_STATE(5655)] = 164525, + [SMALL_STATE(5656)] = 164535, + [SMALL_STATE(5657)] = 164543, + [SMALL_STATE(5658)] = 164551, + [SMALL_STATE(5659)] = 164559, + [SMALL_STATE(5660)] = 164567, + [SMALL_STATE(5661)] = 164575, + [SMALL_STATE(5662)] = 164583, + [SMALL_STATE(5663)] = 164593, + [SMALL_STATE(5664)] = 164601, + [SMALL_STATE(5665)] = 164609, + [SMALL_STATE(5666)] = 164617, + [SMALL_STATE(5667)] = 164625, + [SMALL_STATE(5668)] = 164633, + [SMALL_STATE(5669)] = 164643, + [SMALL_STATE(5670)] = 164651, + [SMALL_STATE(5671)] = 164659, + [SMALL_STATE(5672)] = 164667, + [SMALL_STATE(5673)] = 164675, + [SMALL_STATE(5674)] = 164683, + [SMALL_STATE(5675)] = 164691, + [SMALL_STATE(5676)] = 164699, + [SMALL_STATE(5677)] = 164707, + [SMALL_STATE(5678)] = 164715, + [SMALL_STATE(5679)] = 164723, + [SMALL_STATE(5680)] = 164731, + [SMALL_STATE(5681)] = 164739, + [SMALL_STATE(5682)] = 164747, + [SMALL_STATE(5683)] = 164755, + [SMALL_STATE(5684)] = 164765, + [SMALL_STATE(5685)] = 164773, + [SMALL_STATE(5686)] = 164781, + [SMALL_STATE(5687)] = 164789, + [SMALL_STATE(5688)] = 164797, + [SMALL_STATE(5689)] = 164805, + [SMALL_STATE(5690)] = 164813, + [SMALL_STATE(5691)] = 164821, + [SMALL_STATE(5692)] = 164829, + [SMALL_STATE(5693)] = 164837, + [SMALL_STATE(5694)] = 164845, + [SMALL_STATE(5695)] = 164853, + [SMALL_STATE(5696)] = 164861, + [SMALL_STATE(5697)] = 164869, + [SMALL_STATE(5698)] = 164877, + [SMALL_STATE(5699)] = 164885, + [SMALL_STATE(5700)] = 164893, + [SMALL_STATE(5701)] = 164901, + [SMALL_STATE(5702)] = 164909, + [SMALL_STATE(5703)] = 164917, + [SMALL_STATE(5704)] = 164925, + [SMALL_STATE(5705)] = 164933, + [SMALL_STATE(5706)] = 164941, + [SMALL_STATE(5707)] = 164949, + [SMALL_STATE(5708)] = 164957, + [SMALL_STATE(5709)] = 164965, + [SMALL_STATE(5710)] = 164973, + [SMALL_STATE(5711)] = 164981, + [SMALL_STATE(5712)] = 164989, + [SMALL_STATE(5713)] = 164997, + [SMALL_STATE(5714)] = 165005, + [SMALL_STATE(5715)] = 165013, + [SMALL_STATE(5716)] = 165021, + [SMALL_STATE(5717)] = 165029, + [SMALL_STATE(5718)] = 165037, + [SMALL_STATE(5719)] = 165045, + [SMALL_STATE(5720)] = 165053, + [SMALL_STATE(5721)] = 165061, + [SMALL_STATE(5722)] = 165069, + [SMALL_STATE(5723)] = 165077, + [SMALL_STATE(5724)] = 165085, + [SMALL_STATE(5725)] = 165093, + [SMALL_STATE(5726)] = 165101, + [SMALL_STATE(5727)] = 165109, + [SMALL_STATE(5728)] = 165117, + [SMALL_STATE(5729)] = 165125, + [SMALL_STATE(5730)] = 165133, + [SMALL_STATE(5731)] = 165141, + [SMALL_STATE(5732)] = 165149, + [SMALL_STATE(5733)] = 165157, + [SMALL_STATE(5734)] = 165165, + [SMALL_STATE(5735)] = 165173, + [SMALL_STATE(5736)] = 165181, + [SMALL_STATE(5737)] = 165189, + [SMALL_STATE(5738)] = 165197, + [SMALL_STATE(5739)] = 165205, + [SMALL_STATE(5740)] = 165213, + [SMALL_STATE(5741)] = 165221, + [SMALL_STATE(5742)] = 165229, + [SMALL_STATE(5743)] = 165237, + [SMALL_STATE(5744)] = 165245, + [SMALL_STATE(5745)] = 165253, + [SMALL_STATE(5746)] = 165261, + [SMALL_STATE(5747)] = 165269, + [SMALL_STATE(5748)] = 165277, + [SMALL_STATE(5749)] = 165285, + [SMALL_STATE(5750)] = 165293, + [SMALL_STATE(5751)] = 165301, + [SMALL_STATE(5752)] = 165309, + [SMALL_STATE(5753)] = 165317, + [SMALL_STATE(5754)] = 165325, + [SMALL_STATE(5755)] = 165333, + [SMALL_STATE(5756)] = 165341, + [SMALL_STATE(5757)] = 165349, + [SMALL_STATE(5758)] = 165357, + [SMALL_STATE(5759)] = 165365, + [SMALL_STATE(5760)] = 165373, + [SMALL_STATE(5761)] = 165381, + [SMALL_STATE(5762)] = 165389, + [SMALL_STATE(5763)] = 165397, + [SMALL_STATE(5764)] = 165405, + [SMALL_STATE(5765)] = 165413, + [SMALL_STATE(5766)] = 165421, + [SMALL_STATE(5767)] = 165429, + [SMALL_STATE(5768)] = 165437, + [SMALL_STATE(5769)] = 165445, + [SMALL_STATE(5770)] = 165453, + [SMALL_STATE(5771)] = 165461, + [SMALL_STATE(5772)] = 165469, + [SMALL_STATE(5773)] = 165477, + [SMALL_STATE(5774)] = 165485, + [SMALL_STATE(5775)] = 165493, + [SMALL_STATE(5776)] = 165501, + [SMALL_STATE(5777)] = 165509, + [SMALL_STATE(5778)] = 165517, + [SMALL_STATE(5779)] = 165525, + [SMALL_STATE(5780)] = 165533, + [SMALL_STATE(5781)] = 165541, + [SMALL_STATE(5782)] = 165549, + [SMALL_STATE(5783)] = 165557, + [SMALL_STATE(5784)] = 165565, + [SMALL_STATE(5785)] = 165573, + [SMALL_STATE(5786)] = 165581, + [SMALL_STATE(5787)] = 165589, + [SMALL_STATE(5788)] = 165597, + [SMALL_STATE(5789)] = 165605, + [SMALL_STATE(5790)] = 165613, + [SMALL_STATE(5791)] = 165621, + [SMALL_STATE(5792)] = 165629, + [SMALL_STATE(5793)] = 165637, + [SMALL_STATE(5794)] = 165645, + [SMALL_STATE(5795)] = 165653, + [SMALL_STATE(5796)] = 165661, + [SMALL_STATE(5797)] = 165669, + [SMALL_STATE(5798)] = 165677, + [SMALL_STATE(5799)] = 165685, + [SMALL_STATE(5800)] = 165693, + [SMALL_STATE(5801)] = 165701, + [SMALL_STATE(5802)] = 165711, + [SMALL_STATE(5803)] = 165719, + [SMALL_STATE(5804)] = 165727, + [SMALL_STATE(5805)] = 165735, + [SMALL_STATE(5806)] = 165743, + [SMALL_STATE(5807)] = 165751, + [SMALL_STATE(5808)] = 165759, + [SMALL_STATE(5809)] = 165767, + [SMALL_STATE(5810)] = 165775, + [SMALL_STATE(5811)] = 165783, + [SMALL_STATE(5812)] = 165791, + [SMALL_STATE(5813)] = 165799, + [SMALL_STATE(5814)] = 165807, + [SMALL_STATE(5815)] = 165815, + [SMALL_STATE(5816)] = 165823, + [SMALL_STATE(5817)] = 165831, + [SMALL_STATE(5818)] = 165839, + [SMALL_STATE(5819)] = 165847, + [SMALL_STATE(5820)] = 165855, + [SMALL_STATE(5821)] = 165863, + [SMALL_STATE(5822)] = 165871, + [SMALL_STATE(5823)] = 165879, + [SMALL_STATE(5824)] = 165887, + [SMALL_STATE(5825)] = 165895, + [SMALL_STATE(5826)] = 165903, + [SMALL_STATE(5827)] = 165911, + [SMALL_STATE(5828)] = 165919, + [SMALL_STATE(5829)] = 165927, + [SMALL_STATE(5830)] = 165935, + [SMALL_STATE(5831)] = 165943, + [SMALL_STATE(5832)] = 165951, + [SMALL_STATE(5833)] = 165959, + [SMALL_STATE(5834)] = 165967, + [SMALL_STATE(5835)] = 165975, + [SMALL_STATE(5836)] = 165983, + [SMALL_STATE(5837)] = 165991, + [SMALL_STATE(5838)] = 165999, + [SMALL_STATE(5839)] = 166007, + [SMALL_STATE(5840)] = 166015, + [SMALL_STATE(5841)] = 166023, + [SMALL_STATE(5842)] = 166031, + [SMALL_STATE(5843)] = 166039, + [SMALL_STATE(5844)] = 166047, + [SMALL_STATE(5845)] = 166055, + [SMALL_STATE(5846)] = 166063, + [SMALL_STATE(5847)] = 166071, + [SMALL_STATE(5848)] = 166079, + [SMALL_STATE(5849)] = 166087, + [SMALL_STATE(5850)] = 166095, + [SMALL_STATE(5851)] = 166103, + [SMALL_STATE(5852)] = 166111, + [SMALL_STATE(5853)] = 166119, + [SMALL_STATE(5854)] = 166127, + [SMALL_STATE(5855)] = 166135, + [SMALL_STATE(5856)] = 166143, + [SMALL_STATE(5857)] = 166151, + [SMALL_STATE(5858)] = 166159, + [SMALL_STATE(5859)] = 166167, + [SMALL_STATE(5860)] = 166175, + [SMALL_STATE(5861)] = 166183, + [SMALL_STATE(5862)] = 166191, + [SMALL_STATE(5863)] = 166199, + [SMALL_STATE(5864)] = 166207, + [SMALL_STATE(5865)] = 166215, + [SMALL_STATE(5866)] = 166223, + [SMALL_STATE(5867)] = 166231, + [SMALL_STATE(5868)] = 166239, + [SMALL_STATE(5869)] = 166247, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -279785,4673 +277643,4655 @@ 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(1322), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(538), - [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(558), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5517), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(481), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(636), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(639), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [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(284), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(560), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5668), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(483), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(540), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1282), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5358), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5416), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5451), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4724), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5322), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5356), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4834), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4536), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5186), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4879), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4474), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(992), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5833), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2340), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5881), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5707), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 238), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 95), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 95), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(50), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(194), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(215), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(992), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3870), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(483), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 33), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(618), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 173), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 173), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 112), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 112), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 219), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 219), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1942] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3263), - [1946] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3017), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2850), - [2331] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(201), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(414), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [2344] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4524), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(201), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4524), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 276), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 276), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 39), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 39), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 274), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 274), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 87), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 87), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 88), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 88), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 153), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 153), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 275), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 275), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 300), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 300), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 172), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 172), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 190), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 190), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 201), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 201), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 153), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 153), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 153), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 153), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 85), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 85), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 26), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 26), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 149), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 149), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 271), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 239), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 200), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 272), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 272), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 199), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 199), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(486), - [3546] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5537), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1083), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5199), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5546), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1006), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(253), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3320), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(3910), - [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(540), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [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(1342), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [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(1285), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [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(482), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5444), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5232), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4687), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [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(5009), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5400), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(728), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4404), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3861), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5634), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4290), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5602), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5490), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 236), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 93), + [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, 52), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 52), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(52), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(195), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(241), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(981), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3852), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 32), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 32), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(621), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 32), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(485), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 29), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 29), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 49), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 49), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 75), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1959] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3001), + [1963] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3260), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2817), + [2324] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(199), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(417), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [2333] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4996), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(199), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4996), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 38), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 38), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 239), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 239), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 33), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 33), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 271), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 271), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 34), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 34), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 33), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 33), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 272), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 272), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 37), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 37), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 49), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 49), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 298), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 298), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 48), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 48), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 37), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 37), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 39), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 39), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 171), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 87), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 228), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 73), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 73), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 74), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 74), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 48), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 48), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 40), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 40), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 25), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 25), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 27), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 27), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 45), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 45), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 197), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 198), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 269), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 269), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 237), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 270), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 270), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5593), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1098), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(488), + [3553] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5156), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5587), + [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1001), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(245), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3662] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_rest_pattern, 2, 0, 0), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3678] = {.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, 33), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(620), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(328), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1523), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1727), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1798), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1707), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3236), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2827), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1485), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(334), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4466), - [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4469), - [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2226), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(5720), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3059), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), - [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1725), - [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1928), - [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2467), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1773), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1962), - [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2427), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2783), - [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2863), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2066), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2435), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4071] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 181), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 181), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [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__type_query_subscript_expression, 4, 0, 224), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 266), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 266), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), - [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 137), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 137), - [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 297), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 297), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 21), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 21), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 81), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 81), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 82), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 82), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 86), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 86), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 31), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 31), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 148), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 148), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 152), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 152), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 32), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 151), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 151), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5162), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(160), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 187), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(160), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(160), - [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(160), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 32), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(162), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 42), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 42), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(155), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(155), - [4972] = {.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), - [4976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), - [4996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), - [4999] = {.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), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), - [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(156), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(156), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 95), - [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(516), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(156), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(156), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 27), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 72), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), REDUCE(sym_assignment_expression, 3, 0, 72), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5115] = {.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, 16), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), REDUCE(sym__parameter_name, 2, 0, 42), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(158), - [5213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(158), - [5216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(158), - [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(158), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 72), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(152), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), - [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), - [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), - [5574] = {.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), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(542), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(4290), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3638] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), REDUCE(sym_rest_pattern, 2, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT(3294), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3669] = {.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, 32), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(328), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(623), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1520), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2511), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3227), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2867), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1485), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(334), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2268), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(5625), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4393), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4396), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3062), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3903), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1725), + [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1929), + [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2401), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1728), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1933), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2451), + [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2774), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2824), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2064), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1797), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1706), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1726), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [4074] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 16), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 16), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 67), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 67), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 15), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 18), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 18), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 68), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 68), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 66), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 66), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 66), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 66), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 19), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 19), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 295), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 295), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 63), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 63), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 21), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 21), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 20), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 20), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 28), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 28), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [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_function_expression, 3, 0, 54), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 54), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 71), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 71), + [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), + [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 80), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 80), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), + [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 30), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 30), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), + [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 31), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5360), + [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 26), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 70), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 72), + [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), + [4764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(153), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 72), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 31), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(160), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(160), + [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(160), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(161), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(161), + [4961] = {.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), + [4965] = {.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), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [4981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(161), + [4984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(161), + [4987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(160), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(518), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(154), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154), + [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 26), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 70), + [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), REDUCE(sym_assignment_expression, 3, 0, 70), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5097] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 15), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 41), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 41), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 41), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 15), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(162), + [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), + [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), + [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 70), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(158), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 50), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(158), + [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(158), + [5390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(158), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 44), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 44), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5423] = {.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), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(157), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(159), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(151), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(159), - [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(159), - [5723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), - [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), - [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), - [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(155), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(157), + [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(157), + [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(157), + [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), + [5685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(155), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(161), - [5796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(161), - [5799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(161), - [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(161), - [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(159), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), - [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(153), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 115), - [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(648), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 298), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 298), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), SHIFT_REPEAT(2718), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 219), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 219), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), - [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 173), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 173), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), - [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 318), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 318), - [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 334), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 334), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 156), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 156), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2722), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), - [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), - [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), - [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 111), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1030), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 161), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 111), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 211), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 166), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5199), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 296), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5154), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 15), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), - [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 128), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 165), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 203), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 172), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 281), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 282), - [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), - [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 322), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 327), - [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 336), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 175), - [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 176), - [7220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 289), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(540), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [7297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5498), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [7388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), - [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4028), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), - [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(972), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [7597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1056), - [7600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(970), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1061), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), - [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 261), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 279), - [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1090), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(969), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 320), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), - [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 168), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 163), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(964), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), - [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [7782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1003), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 285), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 204), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 205), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(960), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1041), - [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(976), - [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1048), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [7932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [7934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), - [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4436), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(4418), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(486), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 278), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 116), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), - [8062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), SHIFT_REPEAT(355), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 341), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [8248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4613), - [8256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 281), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 282), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), - [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [8420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), - [8427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(2814), - [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), - [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [8512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2324), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 172), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 203), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(620), - [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 157), - [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 159), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), - [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 179), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 195), - [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 195), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 154), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [8938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9370] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(151), + [5786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), + [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), + [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(152), + [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(651), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), + [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), + [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), + [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), + [5874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), + [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [5920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 268), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 268), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), + [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 296), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 296), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 297), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 297), + [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 316), + [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 316), + [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 317), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 317), + [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 332), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 332), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 267), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 267), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(2720), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2716), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 52), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 52), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(3903), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(1056), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), + [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5156), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5140), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 31), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), + [7137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), + [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279), + [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 299), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 300), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 320), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 334), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(542), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5845), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3832), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 57), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(946), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1053), + [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(964), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1059), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 302), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 303), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 36), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(953), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [7649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1096), + [7652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(973), + [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [7668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [7673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 305), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 318), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 319), + [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), + [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1002), + [7750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 259), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), + [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(962), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), + [7802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1037), + [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(967), + [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1043), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(488), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 51), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 33), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(355), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(4398), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), + [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4495), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 65), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [8240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4958), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), + [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), + [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 51), + [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 333), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 339), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), + [8455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2429), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(2794), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), + [8465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 299), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(623), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), + [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 36), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 35), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9235] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test-parsers/tree-sitter-typescript/typescript/src/tree_sitter/alloc.h b/test-parsers/tree-sitter-typescript/typescript/src/tree_sitter/alloc.h index 1f4466d7..1abdd120 100644 --- a/test-parsers/tree-sitter-typescript/typescript/src/tree_sitter/alloc.h +++ b/test-parsers/tree-sitter-typescript/typescript/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +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 diff --git a/tsconfig.json b/tsconfig.json index d35ee6a8..8867d3a9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { "compilerOptions": { "module": "commonjs", - "target": "ES2020", + "target": "ES2022", "outDir": "out", "lib": [ - "ES2020", + "ES2022", "DOM" ], "sourceMap": true, diff --git a/yarn.lock b/yarn.lock index 272e4152..55f048d5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,127 +2,147 @@ # yarn lockfile v1 -"@esbuild/android-arm64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" - integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== - -"@esbuild/android-arm@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" - integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== - -"@esbuild/android-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" - integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== - -"@esbuild/darwin-arm64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" - integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== - -"@esbuild/darwin-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" - integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== - -"@esbuild/freebsd-arm64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" - integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== - -"@esbuild/freebsd-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" - integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== - -"@esbuild/linux-arm64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" - integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== - -"@esbuild/linux-arm@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" - integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== - -"@esbuild/linux-ia32@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" - integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== - -"@esbuild/linux-loong64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" - integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== - -"@esbuild/linux-mips64el@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" - integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== - -"@esbuild/linux-ppc64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" - integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== - -"@esbuild/linux-riscv64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" - integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== - -"@esbuild/linux-s390x@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" - integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== - -"@esbuild/linux-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" - integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== - -"@esbuild/netbsd-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" - integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== - -"@esbuild/openbsd-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" - integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== - -"@esbuild/sunos-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" - integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== - -"@esbuild/win32-arm64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" - integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== - -"@esbuild/win32-ia32@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" - integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== - -"@esbuild/win32-x64@0.18.20": - version "0.18.20" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" - integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== +"@esbuild/aix-ppc64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz#2ae33300598132cc4cf580dbbb28d30fed3c5c49" + integrity sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg== + +"@esbuild/android-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz#927708b3db5d739d6cb7709136924cc81bec9b03" + integrity sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ== + +"@esbuild/android-arm@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.11.tgz#571f94e7f4068957ec4c2cfb907deae3d01b55ae" + integrity sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg== + +"@esbuild/android-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.11.tgz#8a3bf5cae6c560c7ececa3150b2bde76e0fb81e6" + integrity sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g== + +"@esbuild/darwin-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz#0a678c4ac4bf8717e67481e1a797e6c152f93c84" + integrity sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w== + +"@esbuild/darwin-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz#70f5e925a30c8309f1294d407a5e5e002e0315fe" + integrity sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ== + +"@esbuild/freebsd-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz#4ec1db687c5b2b78b44148025da9632397553e8a" + integrity sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA== + +"@esbuild/freebsd-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz#4c81abd1b142f1e9acfef8c5153d438ca53f44bb" + integrity sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw== + +"@esbuild/linux-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz#69517a111acfc2b93aa0fb5eaeb834c0202ccda5" + integrity sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA== + +"@esbuild/linux-arm@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz#58dac26eae2dba0fac5405052b9002dac088d38f" + integrity sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw== + +"@esbuild/linux-ia32@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz#b89d4efe9bdad46ba944f0f3b8ddd40834268c2b" + integrity sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw== + +"@esbuild/linux-loong64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz#11f603cb60ad14392c3f5c94d64b3cc8b630fbeb" + integrity sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw== + +"@esbuild/linux-mips64el@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz#b7d447ff0676b8ab247d69dac40a5cf08e5eeaf5" + integrity sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ== + +"@esbuild/linux-ppc64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz#b3a28ed7cc252a61b07ff7c8fd8a984ffd3a2f74" + integrity sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw== + +"@esbuild/linux-riscv64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz#ce75b08f7d871a75edcf4d2125f50b21dc9dc273" + integrity sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww== + +"@esbuild/linux-s390x@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz#cd08f6c73b6b6ff9ccdaabbd3ff6ad3dca99c263" + integrity sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw== + +"@esbuild/linux-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz#3c3718af31a95d8946ebd3c32bb1e699bdf74910" + integrity sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ== + +"@esbuild/netbsd-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz#b4c767082401e3a4e8595fe53c47cd7f097c8077" + integrity sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg== + +"@esbuild/netbsd-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz#f2a930458ed2941d1f11ebc34b9c7d61f7a4d034" + integrity sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A== + +"@esbuild/openbsd-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz#b4ae93c75aec48bc1e8a0154957a05f0641f2dad" + integrity sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg== + +"@esbuild/openbsd-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz#b42863959c8dcf9b01581522e40012d2c70045e2" + integrity sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw== + +"@esbuild/openharmony-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz#b2e717141c8fdf6bddd4010f0912e6b39e1640f1" + integrity sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ== + +"@esbuild/sunos-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz#9fbea1febe8778927804828883ec0f6dd80eb244" + integrity sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA== + +"@esbuild/win32-arm64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz#501539cedb24468336073383989a7323005a8935" + integrity sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q== + +"@esbuild/win32-ia32@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz#8ac7229aa82cef8f16ffb58f1176a973a7a15343" + integrity sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA== + +"@esbuild/win32-x64@0.25.11": + version "0.25.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz#5ecda6f3fe138b7e456f4e429edde33c823f392f" + integrity sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA== "@eslint-community/eslint-utils@^4.2.0": - version "4.4.1" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" - integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + version "4.9.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz#7308df158e064f0dd8b8fdb58aa14fa2a7f913b3" + integrity sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g== dependencies: eslint-visitor-keys "^3.4.3" "@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": - version "4.12.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" - integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== + version "4.12.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz#bccdf615bcf7b6e8db830ec0b8d21c9a25de597b" + integrity sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew== "@eslint/eslintrc@^2.1.4": version "2.1.4" @@ -163,6 +183,25 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + +"@isaacs/fs-minipass@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32" + integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== + dependencies: + minipass "^7.0.4" + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -184,15 +223,28 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@types/chai@^4.3.5": - version "4.3.20" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.20.tgz#cb291577ed342ca92600430841a00329ba05cecc" - integrity sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ== +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@types/glob@^8.0.1": - version "8.1.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.1.0.tgz#b63e70155391b0584dce44e7ea25190bbc38f2fc" - integrity sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w== +"@types/chai@5.2.3": + version "5.2.3" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-5.2.3.tgz#8e9cd9e1c3581fa6b341a5aed5588eb285be0b4a" + integrity sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA== + dependencies: + "@types/deep-eql" "*" + assertion-error "^2.0.1" + +"@types/deep-eql@*": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/deep-eql/-/deep-eql-4.0.2.tgz#334311971d3a07121e7eb91b684a605e7eea9cbd" + integrity sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== + +"@types/glob@8.0.1": + version "8.0.1" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.0.1.tgz#6e3041640148b7764adf21ce5c7138ad454725b0" + integrity sha512-8bVUjXZvJacUFkJXHdyZ9iH1Eaj5V7I8c4NdH5sQJsdXkqT4CA5Dhb4yb4VE/3asyx4L9ayZr1NIhTsWHczmMw== dependencies: "@types/minimatch" "^5.1.2" "@types/node" "*" @@ -207,31 +259,24 @@ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== -"@types/mocha@^10.0.1": - version "10.0.9" - resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.9.tgz#101e9da88d2c02e5ac8952982c23b224524d662a" - integrity sha512-sicdRoWtYevwxjOHNMPTl3vSfJM6oyW8o1wXeI7uww6b6xHg8eBznQDNSGBCDJmsE8UMxP05JgZRtsKbTqt//Q== +"@types/mocha@10.0.10": + version "10.0.10" + resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.10.tgz#91f62905e8d23cbd66225312f239454a23bebfa0" + integrity sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q== -"@types/node@*": - version "22.8.6" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.8.6.tgz#e8a0c0871623283d8b3ef7d7b9b1bfdfd3028e22" - integrity sha512-tosuJYKrIqjQIlVCM4PEGxOmyg3FCPa/fViuJChnGeEIhjA46oy8FMVoF9su1/v8PNs2a8Q0iFNyOx0uOF91nw== +"@types/node@*", "@types/node@24.9.2": + version "24.9.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-24.9.2.tgz#90ded2422dbfcafcf72080f28975adc21366148d" + integrity sha512-uWN8YqxXxqFMX2RqGOrumsKeti4LlmIMIyV0lgut4jx7KQBcBiW6vkDtIBvHnHIquwNfJhk8v2OtmO8zXWHfPA== dependencies: - undici-types "~6.19.8" - -"@types/node@^20.3.3": - version "20.17.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.17.5.tgz#b7a1d8619ced7ce1da901b07a47c61107272449a" - integrity sha512-n8FYY/pRxu496441gIcAQFZPKXbhsd6VZygcq+PTSZ75eMh/Ke0hCAROdUa21qiFqKNsPPYic46yXDO1JGiPBQ== - dependencies: - undici-types "~6.19.2" + undici-types "~7.16.0" "@types/semver@^7.3.12": - version "7.5.8" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e" - integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== + version "7.7.1" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.7.1.tgz#3ce3af1a5524ef327d2da9e4fd8b6d95c8d70528" + integrity sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA== -"@types/tar@^6.1.5": +"@types/tar@6.1.13": version "6.1.13" resolved "https://registry.yarnpkg.com/@types/tar/-/tar-6.1.13.tgz#9b5801c02175344101b4b91086ab2bbc8e93a9b6" integrity sha512-IznnlmU5f4WcGTh2ltRu/Ijpmk8wiWXfF0VA4s+HPjHZgvFggk1YaIkbo5krX/zUCzWF8N/l4+W/LNxnvAJ8nw== @@ -239,12 +284,12 @@ "@types/node" "*" minipass "^4.0.0" -"@types/vscode@^1.79.0": - version "1.95.0" - resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.95.0.tgz#484aee82c69fa2d73e29d4bf2a91191e570dbc70" - integrity sha512-0LBD8TEiNbet3NvWsmn59zLzOFu/txSlGxnv5yAFHCrhG9WvAnR3IvfHzMOs2aeWqgvNjq9pO99IUw8d3n+unw== +"@types/vscode@1.105.0": + version "1.105.0" + resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.105.0.tgz#774c54cdb62409afeb0cb2a96f75c2e06ef3f97a" + integrity sha512-Lotk3CTFlGZN8ray4VxJE7axIyLZZETQJVWi/lYoUVQuqfRxlQhVOfoejsD2V3dVXPSbS15ov5ZyowMAzgUqcw== -"@types/which@^3.0.0": +"@types/which@3.0.4": version "3.0.4" resolved "https://registry.yarnpkg.com/@types/which/-/which-3.0.4.tgz#2c3a89be70c56a84a6957a7264639f39ae4340a1" integrity sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w== @@ -334,19 +379,19 @@ eslint-visitor-keys "^3.3.0" "@ungap/structured-clone@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" - integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + version "1.3.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8" + integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g== -"@vscode/test-electron@^2.2.2": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@vscode/test-electron/-/test-electron-2.4.1.tgz#5c2760640bf692efbdaa18bafcd35fb519688941" - integrity sha512-Gc6EdaLANdktQ1t+zozoBVRynfIsMKMc94Svu1QreOBC8y76x4tvaK32TljrLi1LI2+PK58sDVbL7ALdqf3VRQ== +"@vscode/test-electron@2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@vscode/test-electron/-/test-electron-2.5.2.tgz#f7d4078e8230ce9c94322f2a29cc16c17954085d" + integrity sha512-8ukpxv4wYe0iWMRQU18jhzJOHkeGKbnw7xWRX3Zw1WJA4cEKbHcmmLPdPrPtL6rhDcrlCZN+xKRpv09n4gRHYg== dependencies: http-proxy-agent "^7.0.2" https-proxy-agent "^7.0.5" jszip "^3.10.1" - ora "^7.0.1" + ora "^8.1.0" semver "^7.6.2" acorn-jsx@^5.3.2: @@ -355,16 +400,14 @@ acorn-jsx@^5.3.2: integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn@^8.9.0: - version "8.14.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" - integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== + version "8.15.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816" + integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg== -agent-base@^7.0.2, agent-base@^7.1.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" - integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== - dependencies: - debug "^4.3.4" +agent-base@^7.1.0, agent-base@^7.1.2: + version "7.1.4" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz#e3cd76d4c548ee895d3c3fd8dc1f6c5b9032e7a8" + integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== ajv@^6.12.4: version "6.12.6" @@ -376,20 +419,15 @@ ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ansi-colors@^4.1.3: - version "4.1.3" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" - integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== - ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" - integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== + version "6.2.2" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1" + integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" @@ -398,13 +436,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" +ansi-styles@^6.1.0: + version "6.2.3" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz#c044d5dcc521a076413472597a1acb1f103c4041" + integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== argparse@^2.0.1: version "2.0.1" @@ -416,51 +451,32 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -assertion-error@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" - integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== +assertion-error@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-2.0.1.tgz#f641a196b335690b1070bf00b6e7593fec190bf7" + integrity sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA== balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -binary-extensions@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" - integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== - -bl@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-5.1.0.tgz#183715f678c7188ecef9fe475d90209400624273" - integrity sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ== - dependencies: - buffer "^6.0.3" - inherits "^2.0.4" - readable-stream "^3.4.0" - brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + version "1.1.12" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843" + integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + version "2.0.2" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7" + integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== dependencies: balanced-match "^1.0.0" -braces@^3.0.3, braces@~3.0.2: +braces@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== @@ -472,14 +488,6 @@ browser-stdout@^1.3.1: resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== -buffer@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -490,18 +498,10 @@ camelcase@^6.0.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -chai@^4.3.7: - version "4.5.0" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.5.0.tgz#707e49923afdd9b13a8b0b47d33d732d13812fd8" - integrity sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw== - dependencies: - assertion-error "^1.1.0" - check-error "^1.0.3" - deep-eql "^4.1.3" - get-func-name "^2.0.2" - loupe "^2.3.6" - pathval "^1.1.1" - type-detect "^4.1.0" +chai@6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/chai/-/chai-6.2.0.tgz#181bca6a219cddb99c3eeefb82483800ffa550ce" + integrity sha512-aUTnJc/JipRzJrNADXVvpVqi6CO0dn3nx4EVPxijri+fj3LUUDyZQOgVeW54Ob3Y1Xh9Iz8f+CgaCl8v0mn9bA== chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" @@ -511,57 +511,42 @@ chalk@^4.0.0, chalk@^4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^5.0.0, chalk@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" - integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== +chalk@^5.3.0: + version "5.6.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.6.2.tgz#b1238b6e23ea337af71c7f8a295db5af0c158aea" + integrity sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA== -check-error@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.3.tgz#a6502e4312a7ee969f646e83bb3ddd56281bd694" - integrity sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg== - dependencies: - get-func-name "^2.0.2" - -chokidar@^3.5.3: - version "3.6.0" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" - integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" +chokidar@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30" + integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== + dependencies: + readdirp "^4.0.1" -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== +chownr@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4" + integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== -cli-cursor@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-4.0.0.tgz#3cecfe3734bf4fe02a8361cbdc0f6fe28c6a57ea" - integrity sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg== +cli-cursor@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz#24a4831ecf5a6b01ddeb32fb71a4b2088b0dce38" + integrity sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw== dependencies: - restore-cursor "^4.0.0" + restore-cursor "^5.0.0" -cli-spinners@^2.9.0: +cli-spinners@^2.9.2: version "2.9.2" resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== dependencies: string-width "^4.2.0" - strip-ansi "^6.0.0" + strip-ansi "^6.0.1" wrap-ansi "^7.0.0" color-convert@^2.0.1: @@ -586,19 +571,19 @@ core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== -cross-spawn@^7.0.2: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== +cross-spawn@^7.0.2, cross-spawn@^7.0.6: + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" which "^2.0.1" debug@4, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5: - version "4.3.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + version "4.4.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" + integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" @@ -607,22 +592,15 @@ decamelize@^4.0.0: resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== -deep-eql@^4.1.3: - version "4.1.4" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.4.tgz#d0d3912865911bb8fac5afb4e3acfa6a28dc72b7" - integrity sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg== - dependencies: - type-detect "^4.0.0" - deep-is@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -diff@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531" - integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A== +diff@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-7.0.0.tgz#3fb34d387cd76d803f6eebea67b921dab0182a9a" + integrity sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw== dir-glob@^3.0.1: version "3.0.1" @@ -643,43 +621,52 @@ eastasianwidth@^0.2.0: resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== -emoji-regex@^10.2.1: - version "10.4.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.4.0.tgz#03553afea80b3975749cfcb36f776ca268e413d4" - integrity sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw== +emoji-regex@^10.3.0: + version "10.6.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz#bf3d6e8f7f8fd22a65d9703475bc0147357a6b0d" + integrity sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A== emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -esbuild@^0.18.11: - version "0.18.20" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" - integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +esbuild@0.25.11: + version "0.25.11" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.11.tgz#0f31b82f335652580f75ef6897bba81962d9ae3d" + integrity sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q== optionalDependencies: - "@esbuild/android-arm" "0.18.20" - "@esbuild/android-arm64" "0.18.20" - "@esbuild/android-x64" "0.18.20" - "@esbuild/darwin-arm64" "0.18.20" - "@esbuild/darwin-x64" "0.18.20" - "@esbuild/freebsd-arm64" "0.18.20" - "@esbuild/freebsd-x64" "0.18.20" - "@esbuild/linux-arm" "0.18.20" - "@esbuild/linux-arm64" "0.18.20" - "@esbuild/linux-ia32" "0.18.20" - "@esbuild/linux-loong64" "0.18.20" - "@esbuild/linux-mips64el" "0.18.20" - "@esbuild/linux-ppc64" "0.18.20" - "@esbuild/linux-riscv64" "0.18.20" - "@esbuild/linux-s390x" "0.18.20" - "@esbuild/linux-x64" "0.18.20" - "@esbuild/netbsd-x64" "0.18.20" - "@esbuild/openbsd-x64" "0.18.20" - "@esbuild/sunos-x64" "0.18.20" - "@esbuild/win32-arm64" "0.18.20" - "@esbuild/win32-ia32" "0.18.20" - "@esbuild/win32-x64" "0.18.20" + "@esbuild/aix-ppc64" "0.25.11" + "@esbuild/android-arm" "0.25.11" + "@esbuild/android-arm64" "0.25.11" + "@esbuild/android-x64" "0.25.11" + "@esbuild/darwin-arm64" "0.25.11" + "@esbuild/darwin-x64" "0.25.11" + "@esbuild/freebsd-arm64" "0.25.11" + "@esbuild/freebsd-x64" "0.25.11" + "@esbuild/linux-arm" "0.25.11" + "@esbuild/linux-arm64" "0.25.11" + "@esbuild/linux-ia32" "0.25.11" + "@esbuild/linux-loong64" "0.25.11" + "@esbuild/linux-mips64el" "0.25.11" + "@esbuild/linux-ppc64" "0.25.11" + "@esbuild/linux-riscv64" "0.25.11" + "@esbuild/linux-s390x" "0.25.11" + "@esbuild/linux-x64" "0.25.11" + "@esbuild/netbsd-arm64" "0.25.11" + "@esbuild/netbsd-x64" "0.25.11" + "@esbuild/openbsd-arm64" "0.25.11" + "@esbuild/openbsd-x64" "0.25.11" + "@esbuild/openharmony-arm64" "0.25.11" + "@esbuild/sunos-x64" "0.25.11" + "@esbuild/win32-arm64" "0.25.11" + "@esbuild/win32-ia32" "0.25.11" + "@esbuild/win32-x64" "0.25.11" escalade@^3.1.1: version "3.2.0" @@ -800,15 +787,15 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.9: - version "3.3.2" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" - integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + version "3.3.3" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818" + integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" glob-parent "^5.1.2" merge2 "^1.3.0" - micromatch "^4.0.4" + micromatch "^4.0.8" fast-json-stable-stringify@^2.0.0: version "2.1.0" @@ -821,9 +808,9 @@ fast-levenshtein@^2.0.6: integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fastq@^1.6.0: - version "1.17.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" - integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + version "1.19.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5" + integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ== dependencies: reusify "^1.0.4" @@ -864,38 +851,34 @@ flat@^5.0.2: integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== flatted@^3.2.9: - version "3.3.1" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" - integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + version "3.3.3" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.3.tgz#67c8fad95454a7c7abebf74bb78ee74a44023358" + integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg== -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== +foreground-child@^3.1.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f" + integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw== dependencies: - minipass "^3.0.0" + cross-spawn "^7.0.6" + signal-exit "^4.0.1" fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-func-name@^2.0.1, get-func-name@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" - integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== +get-east-asian-width@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz#9bc4caa131702b4b61729cb7e42735bc550c9ee6" + integrity sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q== -glob-parent@^5.1.2, glob-parent@~5.1.2: +glob-parent@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -909,28 +892,40 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@^7.1.3: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== +glob@8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" - minimatch "^3.1.1" + minimatch "^5.0.1" once "^1.3.0" - path-is-absolute "^1.0.0" -glob@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== +glob@^10.4.5: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" - minimatch "^5.0.1" + minimatch "^3.1.1" once "^1.3.0" + path-is-absolute "^1.0.0" globals@^13.19.0: version "13.24.0" @@ -975,18 +970,13 @@ http-proxy-agent@^7.0.2: debug "^4.3.4" https-proxy-agent@^7.0.5: - version "7.0.5" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" - integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== + version "7.0.6" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" + integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== dependencies: - agent-base "^7.0.2" + agent-base "^7.1.2" debug "4" -ieee754@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - ignore@^5.2.0: version "5.3.2" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" @@ -998,9 +988,9 @@ immediate@~3.0.5: integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + version "3.3.1" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf" + integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -1018,18 +1008,11 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: +inherits@2, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -1040,7 +1023,7 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== @@ -1072,11 +1055,16 @@ is-unicode-supported@^0.1.0: resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== -is-unicode-supported@^1.1.0, is-unicode-supported@^1.3.0: +is-unicode-supported@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz#d824984b616c292a2e198207d4a609983842f714" integrity sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ== +is-unicode-supported@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz#09f0ab0de6d3744d48d265ebb98f65d11f2a9b3a" + integrity sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ== + isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -1087,6 +1075,20 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isexe@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d" + integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ== + +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -1161,27 +1163,25 @@ log-symbols@^4.1.0: chalk "^4.1.0" is-unicode-supported "^0.1.0" -log-symbols@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-5.1.0.tgz#a20e3b9a5f53fac6aeb8e2bb22c07cf2c8f16d93" - integrity sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA== +log-symbols@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-6.0.0.tgz#bb95e5f05322651cac30c0feb6404f9f2a8a9439" + integrity sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw== dependencies: - chalk "^5.0.0" - is-unicode-supported "^1.1.0" + chalk "^5.3.0" + is-unicode-supported "^1.3.0" -loupe@^2.3.6: - version "2.3.7" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.7.tgz#6e69b7d4db7d3ab436328013d37d1c8c3540c697" - integrity sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA== - dependencies: - get-func-name "^2.0.1" +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -micromatch@^4.0.4: +micromatch@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -1189,10 +1189,10 @@ micromatch@^4.0.4: braces "^3.0.3" picomatch "^2.3.1" -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +mimic-function@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz#acbe2b3349f99b9deaca7fb70e48b83e94e67076" + integrity sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA== minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" @@ -1201,67 +1201,62 @@ minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: dependencies: brace-expansion "^1.1.7" -minimatch@^5.0.1, minimatch@^5.1.6: +minimatch@^5.0.1: version "5.1.6" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== dependencies: brace-expansion "^2.0.1" -minipass@^3.0.0: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== +minimatch@^9.0.4, minimatch@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== dependencies: - yallist "^4.0.0" + brace-expansion "^2.0.1" minipass@^4.0.0: version "4.2.8" resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.8.tgz#f0010f64393ecfc1d1ccb5f582bcaf45f48e1a3a" integrity sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ== -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4, minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== -minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== +minizlib@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz#6ad76c3a8f10227c9b51d1c9ac8e30b27f5a251c" + integrity sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw== dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + minipass "^7.1.2" -mocha@^10.2.0: - version "10.8.2" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.8.2.tgz#8d8342d016ed411b12a429eb731b825f961afb96" - integrity sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg== +mocha@11.7.4: + version "11.7.4" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-11.7.4.tgz#f161b17aeccb0762484b33bdb3f7ab9410ba5c82" + integrity sha512-1jYAaY8x0kAZ0XszLWu14pzsf4KV740Gld4HXkhNTXwcHx4AUEDkPzgEHg9CM5dVcW+zv036tjpsEbLraPJj4w== dependencies: - ansi-colors "^4.1.3" browser-stdout "^1.3.1" - chokidar "^3.5.3" + chokidar "^4.0.1" debug "^4.3.5" - diff "^5.2.0" + diff "^7.0.0" escape-string-regexp "^4.0.0" find-up "^5.0.0" - glob "^8.1.0" + glob "^10.4.5" he "^1.2.0" + is-path-inside "^3.0.3" js-yaml "^4.1.0" log-symbols "^4.1.0" - minimatch "^5.1.6" + minimatch "^9.0.5" ms "^2.1.3" + picocolors "^1.1.1" serialize-javascript "^6.0.2" strip-json-comments "^3.1.1" supports-color "^8.1.1" - workerpool "^6.5.1" - yargs "^16.2.0" - yargs-parser "^20.2.9" + workerpool "^9.2.0" + yargs "^17.7.2" + yargs-parser "^21.1.1" yargs-unparser "^2.0.0" ms@^2.1.3: @@ -1279,20 +1274,15 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -node-addon-api@^8.2.1: - version "8.2.1" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-8.2.1.tgz#43a993f110b88e22ba48bcd65e16b92165a6b002" - integrity sha512-vmEOvxwiH8tlOcv4SyE8RH34rI5/nWVaigUeAUPawC6f0+HoDthwI0vkMu4tbtsZrXq6QXFfrkhjofzKEs5tpA== - -node-gyp-build@^4.8.2: - version "4.8.2" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.2.tgz#4f802b71c1ab2ca16af830e6c1ea7dd1ad9496fa" - integrity sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw== +node-addon-api@^8.3.0: + version "8.5.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-8.5.0.tgz#c91b2d7682fa457d2e1c388150f0dff9aafb8f3f" + integrity sha512-/bRZty2mXUIFY/xU5HLvveNHlswNJej+RnxBjOMkidWfwZzgTbPG1E3K5TOxRLOR+5hX7bSofy8yf1hZevMS8A== -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +node-gyp-build@^4.8.4: + version "4.8.4" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.4.tgz#8a70ee85464ae52327772a90d66c6077a900cfc8" + integrity sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ== once@^1.3.0: version "1.4.0" @@ -1301,12 +1291,12 @@ once@^1.3.0: dependencies: wrappy "1" -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== +onetime@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz#9f16c92d8c9ef5120e3acd9dd9957cceecc1ab60" + integrity sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ== dependencies: - mimic-fn "^2.1.0" + mimic-function "^5.0.0" optionator@^0.9.3: version "0.9.4" @@ -1320,19 +1310,19 @@ optionator@^0.9.3: type-check "^0.4.0" word-wrap "^1.2.5" -ora@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-7.0.1.tgz#cdd530ecd865fe39e451a0e7697865669cb11930" - integrity sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw== +ora@^8.1.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/ora/-/ora-8.2.0.tgz#8fbbb7151afe33b540dd153f171ffa8bd38e9861" + integrity sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw== dependencies: chalk "^5.3.0" - cli-cursor "^4.0.0" - cli-spinners "^2.9.0" + cli-cursor "^5.0.0" + cli-spinners "^2.9.2" is-interactive "^2.0.0" - is-unicode-supported "^1.3.0" - log-symbols "^5.1.0" - stdin-discarder "^0.1.0" - string-width "^6.1.0" + is-unicode-supported "^2.0.0" + log-symbols "^6.0.0" + stdin-discarder "^0.2.2" + string-width "^7.2.0" strip-ansi "^7.1.0" p-limit@^3.0.2: @@ -1349,6 +1339,11 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +package-json-from-dist@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + pako@~1.0.2: version "1.0.11" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" @@ -1376,17 +1371,25 @@ path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pathval@^1.1.1: +picocolors@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" - integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: +picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -1418,15 +1421,6 @@ randombytes@^2.1.0: dependencies: safe-buffer "^5.1.0" -readable-stream@^3.4.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - readable-stream@~2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" @@ -1440,12 +1434,10 @@ readable-stream@~2.3.6: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" +readdirp@^4.0.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.2.tgz#eb85801435fbf2a7ee58f19e0921b068fc69948d" + integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg== require-directory@^2.1.1: version "2.1.1" @@ -1457,18 +1449,18 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -restore-cursor@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-4.0.0.tgz#519560a4318975096def6e609d44100edaa4ccb9" - integrity sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg== +restore-cursor@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz#0766d95699efacb14150993f55baf0953ea1ebe7" + integrity sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA== dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" + onetime "^7.0.0" + signal-exit "^4.1.0" reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + version "1.1.0" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f" + integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw== rimraf@^3.0.2: version "3.0.2" @@ -1484,7 +1476,7 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -safe-buffer@^5.1.0, safe-buffer@~5.2.0: +safe-buffer@^5.1.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -1495,9 +1487,9 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== semver@^7.3.7, semver@^7.6.2: - version "7.6.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" - integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + version "7.7.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946" + integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== serialize-javascript@^6.0.2: version "6.0.2" @@ -1523,24 +1515,31 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -signal-exit@^3.0.2: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.0.1, signal-exit@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -stdin-discarder@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/stdin-discarder/-/stdin-discarder-0.1.0.tgz#22b3e400393a8e28ebf53f9958f3880622efde21" - integrity sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ== +stdin-discarder@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/stdin-discarder/-/stdin-discarder-0.2.2.tgz#390037f44c4ae1a1ae535c5fe38dc3aba8d997be" + integrity sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ== + +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: - bl "^5.0.0" + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" -string-width@^4.1.0, string-width@^4.2.0: +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -1549,21 +1548,23 @@ string-width@^4.1.0, string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-6.1.0.tgz#96488d6ed23f9ad5d82d13522af9e4c4c3fd7518" - integrity sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ== +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: eastasianwidth "^0.2.0" - emoji-regex "^10.2.1" + emoji-regex "^9.2.2" strip-ansi "^7.0.1" -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== +string-width@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz#b5bb8e2165ce275d4d43476dd2700ad9091db6dc" + integrity sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ== dependencies: - safe-buffer "~5.2.0" + emoji-regex "^10.3.0" + get-east-asian-width "^1.0.0" + strip-ansi "^7.1.0" string_decoder@~1.1.1: version "1.1.1" @@ -1572,6 +1573,13 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -1580,9 +1588,9 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: ansi-regex "^5.0.1" strip-ansi@^7.0.1, strip-ansi@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + version "7.1.2" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba" + integrity sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA== dependencies: ansi-regex "^6.0.1" @@ -1605,17 +1613,16 @@ supports-color@^8.1.1: dependencies: has-flag "^4.0.0" -tar@^6.1.15: - version "6.2.1" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" - integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== +tar@7.5.2: + version "7.5.2" + resolved "https://registry.yarnpkg.com/tar/-/tar-7.5.2.tgz#115c061495ec51ff3c6745ff8f6d0871c5b1dedc" + integrity sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg== dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" + "@isaacs/fs-minipass" "^4.0.0" + chownr "^3.0.0" + minipass "^7.1.2" + minizlib "^3.1.0" + yallist "^5.0.0" text-table@^0.2.0: version "0.2.0" @@ -1629,13 +1636,13 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tree-sitter@^0.22.0: - version "0.22.0" - resolved "https://registry.yarnpkg.com/tree-sitter/-/tree-sitter-0.22.0.tgz#89edb2742b439c9dcb96817722ee48a29b2818ca" - integrity sha512-tjRAT4tlIXrRw0zgqkA6j9z526icVDas6g/0whwlllu2hF3j6HuMI3WDUfcxTkf1oTbpd+kwJE/0owNJMN73QA== +tree-sitter@0.25.0: + version "0.25.0" + resolved "https://registry.yarnpkg.com/tree-sitter/-/tree-sitter-0.25.0.tgz#d9d94ba00b501df49826c10c0f74037b890788eb" + integrity sha512-PGZZzFW63eElZJDe/b/R/LbsjDDYJa5UEjLZJB59RQsMX+fo0j54fqBPn1MGKav/QNa0JR0zBiVaikYDWCj5KQ== dependencies: - node-addon-api "^8.2.1" - node-gyp-build "^4.8.2" + node-addon-api "^8.3.0" + node-gyp-build "^4.8.4" tslib@^1.8.1: version "1.14.1" @@ -1656,25 +1663,20 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" -type-detect@^4.0.0, type-detect@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.1.0.tgz#deb2453e8f08dcae7ae98c626b13dddb0155906c" - integrity sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw== - type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== -typescript@^5.1.6: - version "5.6.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b" - integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== +typescript@5.9.3: + version "5.9.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f" + integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw== -undici-types@~6.19.2, undici-types@~6.19.8: - version "6.19.8" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" - integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== +undici-types@~7.16.0: + version "7.16.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46" + integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== uri-js@^4.2.2: version "4.4.1" @@ -1683,11 +1685,18 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" -util-deprecate@^1.0.1, util-deprecate@~1.0.1: +util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== +which@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6" + integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ== + dependencies: + isexe "^3.1.1" + which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -1695,22 +1704,24 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -which@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/which/-/which-3.0.1.tgz#89f1cd0c23f629a8105ffe69b8172791c87b4be1" - integrity sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg== - dependencies: - isexe "^2.0.0" - word-wrap@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== -workerpool@^6.5.1: - version "6.5.1" - resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544" - integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA== +workerpool@^9.2.0: + version "9.3.4" + resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-9.3.4.tgz#f6c92395b2141afd78e2a889e80cb338fe9fca41" + integrity sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg== + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" wrap-ansi@^7.0.0: version "7.0.0" @@ -1721,6 +1732,15 @@ wrap-ansi@^7.0.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" @@ -1731,15 +1751,15 @@ y18n@^5.0.5: resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yallist@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533" + integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== -yargs-parser@^20.2.2, yargs-parser@^20.2.9: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== yargs-unparser@^2.0.0: version "2.0.0" @@ -1751,18 +1771,18 @@ yargs-unparser@^2.0.0: flat "^5.0.2" is-plain-obj "^2.1.0" -yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== +yargs@^17.7.2: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: - cliui "^7.0.2" + cliui "^8.0.1" escalade "^3.1.1" get-caller-file "^2.0.5" require-directory "^2.1.1" - string-width "^4.2.0" + string-width "^4.2.3" y18n "^5.0.5" - yargs-parser "^20.2.2" + yargs-parser "^21.1.1" yocto-queue@^0.1.0: version "0.1.0"